From 6242567aff9cf3c1281ac7cf785df30d135800a2 Mon Sep 17 00:00:00 2001 From: ElectroJr Date: Sun, 22 Dec 2024 15:13:10 +1300 Subject: [PATCH 001/313] Refactor map loading & saving --- .../Tests/Body/LungTest.cs | 24 +- .../Tests/Body/SaveLoadReparentTest.cs | 11 +- .../Minds/MindTest.DeleteAllThenGhost.cs | 7 +- .../Tests/PostMapInitTest.cs | 80 +++--- Content.IntegrationTests/Tests/SalvageTest.cs | 15 +- .../Tests/SaveLoadMapTest.cs | 15 +- .../Tests/SaveLoadSaveTest.cs | 110 +++++---- .../Tests/Shuttle/DockTest.cs | 7 +- .../Commands/LoadGameMapCommand.cs | 44 ++-- .../Commands/PersistenceSaveCommand.cs | 1 + .../Systems/AdminTestArenaSystem.cs | 40 ++- .../GameTicking/GameTicker.RoundFlow.cs | 230 ++++++++++++++---- Content.Server/GameTicking/GameTicker.cs | 4 +- .../Rules/Components/LoadMapRuleComponent.cs | 8 +- .../GameTicking/Rules/LoadMapRuleSystem.cs | 50 +++- .../GridPreloader/GridPreloaderSystem.cs | 20 +- Content.Server/Mapping/MappingCommand.cs | 10 +- Content.Server/Mapping/MappingManager.cs | 10 +- Content.Server/Mapping/MappingSystem.cs | 6 +- Content.Server/Maps/GameMapPrototype.cs | 5 + Content.Server/Maps/MapMigrationSystem.cs | 2 +- Content.Server/Maps/ResaveCommand.cs | 62 +++-- Content.Server/Procedural/DungeonSystem.cs | 21 +- .../Salvage/SalvageSystem.Magnet.cs | 12 +- Content.Server/Salvage/SalvageSystem.cs | 19 +- .../Shuttles/Systems/ArrivalsSystem.cs | 24 +- .../Systems/EmergencyShuttleSystem.cs | 24 +- .../Systems/ShuttleSystem.GridFill.cs | 45 ++-- .../Shuttles/Systems/ShuttleSystem.cs | 1 + .../Systems/SharedMoverController.Input.cs | 3 +- Resources/Prototypes/GameRules/events.yml | 2 +- Resources/Prototypes/Maps/centcomm.yml | 1 + RobustToolbox | 2 +- 33 files changed, 553 insertions(+), 362 deletions(-) diff --git a/Content.IntegrationTests/Tests/Body/LungTest.cs b/Content.IntegrationTests/Tests/Body/LungTest.cs index 9b5ee431f1..8ac3a3021f 100644 --- a/Content.IntegrationTests/Tests/Body/LungTest.cs +++ b/Content.IntegrationTests/Tests/Body/LungTest.cs @@ -11,6 +11,8 @@ using Robust.Shared.Map; using Robust.Shared.Map.Components; using System.Linq; using System.Numerics; +using Robust.Shared.EntitySerialization.Systems; +using Robust.Shared.Utility; namespace Content.IntegrationTests.Tests.Body { @@ -57,7 +59,6 @@ namespace Content.IntegrationTests.Tests.Body await server.WaitIdleAsync(); - var mapManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); var mapLoader = entityManager.System(); var mapSys = entityManager.System(); @@ -69,17 +70,13 @@ namespace Content.IntegrationTests.Tests.Body GridAtmosphereComponent relevantAtmos = default; var startingMoles = 0.0f; - var testMapName = "Maps/Test/Breathing/3by3-20oxy-80nit.yml"; + var testMapName = new ResPath("Maps/Test/Breathing/3by3-20oxy-80nit.yml"); await server.WaitPost(() => { mapSys.CreateMap(out var mapId); - Assert.That(mapLoader.TryLoad(mapId, testMapName, out var roots)); - - var query = entityManager.GetEntityQuery(); - var grids = roots.Where(x => query.HasComponent(x)); - Assert.That(grids, Is.Not.Empty); - grid = grids.First(); + Assert.That(mapLoader.TryLoadGrid(mapId, testMapName, out var gridEnt)); + grid = gridEnt!.Value.Owner; }); Assert.That(grid, Is.Not.Null, $"Test blueprint {testMapName} not found."); @@ -148,18 +145,13 @@ namespace Content.IntegrationTests.Tests.Body RespiratorComponent respirator = null; EntityUid human = default; - var testMapName = "Maps/Test/Breathing/3by3-20oxy-80nit.yml"; + var testMapName = new ResPath("Maps/Test/Breathing/3by3-20oxy-80nit.yml"); await server.WaitPost(() => { mapSys.CreateMap(out var mapId); - - Assert.That(mapLoader.TryLoad(mapId, testMapName, out var ents), Is.True); - var query = entityManager.GetEntityQuery(); - grid = ents - .Select(x => x) - .FirstOrDefault((uid) => uid.HasValue && query.HasComponent(uid.Value), null); - Assert.That(grid, Is.Not.Null); + Assert.That(mapLoader.TryLoadGrid(mapId, testMapName, out var gridEnt)); + grid = gridEnt!.Value.Owner; }); Assert.That(grid, Is.Not.Null, $"Test blueprint {testMapName} not found."); diff --git a/Content.IntegrationTests/Tests/Body/SaveLoadReparentTest.cs b/Content.IntegrationTests/Tests/Body/SaveLoadReparentTest.cs index 01482ba8ee..f56b5c2850 100644 --- a/Content.IntegrationTests/Tests/Body/SaveLoadReparentTest.cs +++ b/Content.IntegrationTests/Tests/Body/SaveLoadReparentTest.cs @@ -4,8 +4,10 @@ using Content.Shared.Body.Components; using Content.Shared.Body.Systems; using Robust.Server.GameObjects; using Robust.Shared.Containers; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.GameObjects; using Robust.Shared.Map; +using Robust.Shared.Utility; namespace Content.IntegrationTests.Tests.Body; @@ -111,13 +113,12 @@ public sealed class SaveLoadReparentTest Is.Not.Empty ); - const string mapPath = $"/{nameof(SaveLoadReparentTest)}{nameof(Test)}map.yml"; + var mapPath = new ResPath($"/{nameof(SaveLoadReparentTest)}{nameof(Test)}map.yml"); mapLoader.SaveMap(mapId, mapPath); - maps.DeleteMap(mapId); + mapSys.DeleteMap(mapId); - mapSys.CreateMap(out mapId); - Assert.That(mapLoader.TryLoad(mapId, mapPath, out _), Is.True); + Assert.That(mapLoader.TryLoadMap(mapPath, out var map, out _), Is.True); var query = EnumerateQueryEnumerator( entities.EntityQueryEnumerator() @@ -173,7 +174,7 @@ public sealed class SaveLoadReparentTest }); } - maps.DeleteMap(mapId); + entities.DeleteEntity(map); } }); diff --git a/Content.IntegrationTests/Tests/Minds/MindTest.DeleteAllThenGhost.cs b/Content.IntegrationTests/Tests/Minds/MindTest.DeleteAllThenGhost.cs index 7bc62dfe2b..ad4ddc2612 100644 --- a/Content.IntegrationTests/Tests/Minds/MindTest.DeleteAllThenGhost.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTest.DeleteAllThenGhost.cs @@ -1,5 +1,6 @@ #nullable enable using Robust.Shared.Console; +using Robust.Shared.GameObjects; using Robust.Shared.Map; namespace Content.IntegrationTests.Tests.Minds; @@ -37,8 +38,8 @@ public sealed partial class MindTests Assert.That(pair.Client.EntMan.EntityCount, Is.EqualTo(0)); // Create a new map. - int mapId = 1; - await pair.Server.WaitPost(() => conHost.ExecuteCommand($"addmap {mapId}")); + MapId mapId = default; + await pair.Server.WaitPost(() => pair.Server.System().CreateMap(out mapId)); await pair.RunTicksSync(5); // Client is not attached to anything @@ -54,7 +55,7 @@ public sealed partial class MindTests Assert.That(pair.Client.EntMan.EntityExists(pair.Client.AttachedEntity)); Assert.That(pair.Server.EntMan.EntityExists(pair.PlayerData?.Mind)); var xform = pair.Client.Transform(pair.Client.AttachedEntity!.Value); - Assert.That(xform.MapID, Is.EqualTo(new MapId(mapId))); + Assert.That(xform.MapID, Is.EqualTo(mapId)); await pair.CleanReturnAsync(); } diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index 635a9dbe0f..f7562d934d 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -9,7 +9,6 @@ using Content.Server.Spawners.Components; using Content.Server.Station.Components; using Content.Shared.CCVar; using Content.Shared.Roles; -using Robust.Server.GameObjects; using Robust.Shared.Configuration; using Robust.Shared.ContentPack; using Robust.Shared.GameObjects; @@ -17,7 +16,8 @@ using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Prototypes; using Content.Shared.Station.Components; -using FastAccessors; +using Robust.Shared.EntitySerialization; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Utility; using YamlDotNet.RepresentationModel; @@ -66,7 +66,7 @@ namespace Content.IntegrationTests.Tests "Amber", "Loop" - + }; /// @@ -81,33 +81,23 @@ namespace Content.IntegrationTests.Tests var entManager = server.ResolveDependency(); var mapLoader = entManager.System(); var mapSystem = entManager.System(); - var mapManager = server.ResolveDependency(); var cfg = server.ResolveDependency(); Assert.That(cfg.GetCVar(CCVars.GridFill), Is.False); + var path = new ResPath(mapFile); await server.WaitPost(() => { mapSystem.CreateMap(out var mapId); try { -#pragma warning disable NUnit2045 - Assert.That(mapLoader.TryLoad(mapId, mapFile, out var roots)); - Assert.That(roots.Where(uid => entManager.HasComponent(uid)), Is.Not.Empty); -#pragma warning restore NUnit2045 + Assert.That(mapLoader.TryLoadGrid(mapId, path, out var grid)); } catch (Exception ex) { throw new Exception($"Failed to load map {mapFile}, was it saved as a map instead of a grid?", ex); } - try - { - mapManager.DeleteMap(mapId); - } - catch (Exception ex) - { - throw new Exception($"Failed to delete map {mapFile}", ex); - } + mapSystem.DeleteMap(mapId); }); await server.WaitRunTicks(1); @@ -172,16 +162,16 @@ namespace Content.IntegrationTests.Tests var protoManager = server.ResolveDependency(); var ticker = entManager.EntitySysManager.GetEntitySystem(); var shuttleSystem = entManager.EntitySysManager.GetEntitySystem(); - var xformQuery = entManager.GetEntityQuery(); var cfg = server.ResolveDependency(); Assert.That(cfg.GetCVar(CCVars.GridFill), Is.False); await server.WaitPost(() => { - mapSystem.CreateMap(out var mapId); + MapId mapId; try { - ticker.LoadGameMap(protoManager.Index(mapProto), mapId, null); + var opts = DeserializationOptions.Default with {InitializeMaps = true}; + ticker.LoadGameMap(protoManager.Index(mapProto), out mapId, opts); } catch (Exception ex) { @@ -218,21 +208,17 @@ namespace Content.IntegrationTests.Tests if (entManager.TryGetComponent(station, out var stationEvac)) { var shuttlePath = stationEvac.EmergencyShuttlePath; -#pragma warning disable NUnit2045 - Assert.That(mapLoader.TryLoad(shuttleMap, shuttlePath.ToString(), out var roots)); - EntityUid shuttle = default!; - Assert.DoesNotThrow(() => - { - shuttle = roots.First(uid => entManager.HasComponent(uid)); - }, $"Failed to load {shuttlePath}"); + Assert.That(mapLoader.TryLoadGrid(shuttleMap, shuttlePath, out var shuttle), + $"Failed to load {shuttlePath}"); + Assert.That( - shuttleSystem.TryFTLDock(shuttle, - entManager.GetComponent(shuttle), targetGrid.Value), + shuttleSystem.TryFTLDock(shuttle!.Value.Owner, + entManager.GetComponent(shuttle!.Value.Owner), + targetGrid.Value), $"Unable to dock {shuttlePath} to {mapProto}"); -#pragma warning restore NUnit2045 } - mapManager.DeleteMap(shuttleMap); + mapSystem.DeleteMap(shuttleMap); if (entManager.HasComponent(station)) { @@ -269,7 +255,7 @@ namespace Content.IntegrationTests.Tests try { - mapManager.DeleteMap(mapId); + mapSystem.DeleteMap(mapId); } catch (Exception ex) { @@ -333,11 +319,9 @@ namespace Content.IntegrationTests.Tests var server = pair.Server; var mapLoader = server.ResolveDependency().GetEntitySystem(); - var mapManager = server.ResolveDependency(); var resourceManager = server.ResolveDependency(); var protoManager = server.ResolveDependency(); var cfg = server.ResolveDependency(); - var mapSystem = server.System(); Assert.That(cfg.GetCVar(CCVars.GridFill), Is.False); var gameMaps = protoManager.EnumeratePrototypes().Select(o => o.MapPath).ToHashSet(); @@ -348,7 +332,7 @@ namespace Content.IntegrationTests.Tests .Where(filePath => filePath.Extension == "yml" && !filePath.Filename.StartsWith(".", StringComparison.Ordinal)) .ToArray(); - var mapNames = new List(); + var mapPaths = new List(); foreach (var map in maps) { if (gameMaps.Contains(map)) @@ -359,32 +343,46 @@ namespace Content.IntegrationTests.Tests { continue; } - mapNames.Add(rootedPath.ToString()); + mapPaths.Add(rootedPath); } await server.WaitPost(() => { Assert.Multiple(() => { - foreach (var mapName in mapNames) + // This bunch of files contains a random mixture of both map and grid files. + // TODO MAPPING organize files + var opts = MapLoadOptions.Default with + { + DeserializationOptions = DeserializationOptions.Default with + { + InitializeMaps = true, + LogOrphanedGrids = false + } + }; + + HashSet> maps; + foreach (var path in mapPaths) { - mapSystem.CreateMap(out var mapId); try { - Assert.That(mapLoader.TryLoad(mapId, mapName, out _)); + Assert.That(mapLoader.TryLoadEntities(path, out maps, out _, opts)); } catch (Exception ex) { - throw new Exception($"Failed to load map {mapName}", ex); + throw new Exception($"Failed to load map {path}", ex); } try { - mapManager.DeleteMap(mapId); + foreach (var map in maps) + { + server.EntMan.DeleteEntity(map); + } } catch (Exception ex) { - throw new Exception($"Failed to delete map {mapName}", ex); + throw new Exception($"Failed to delete map {path}", ex); } } }); diff --git a/Content.IntegrationTests/Tests/SalvageTest.cs b/Content.IntegrationTests/Tests/SalvageTest.cs index 5dfba82308..0059db6292 100644 --- a/Content.IntegrationTests/Tests/SalvageTest.cs +++ b/Content.IntegrationTests/Tests/SalvageTest.cs @@ -1,11 +1,8 @@ -using System.Linq; -using Content.Shared.CCVar; +using Content.Shared.CCVar; using Content.Shared.Salvage; -using Robust.Server.GameObjects; using Robust.Shared.Configuration; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.GameObjects; -using Robust.Shared.Map; -using Robust.Shared.Map.Components; using Robust.Shared.Prototypes; namespace Content.IntegrationTests.Tests; @@ -24,7 +21,6 @@ public sealed class SalvageTest var entManager = server.ResolveDependency(); var mapLoader = entManager.System(); - var mapManager = server.ResolveDependency(); var prototypeManager = server.ResolveDependency(); var cfg = server.ResolveDependency(); var mapSystem = entManager.System(); @@ -34,13 +30,10 @@ public sealed class SalvageTest { foreach (var salvage in prototypeManager.EnumeratePrototypes()) { - var mapFile = salvage.MapPath; - mapSystem.CreateMap(out var mapId); try { - Assert.That(mapLoader.TryLoad(mapId, mapFile.ToString(), out var roots)); - Assert.That(roots.Where(uid => entManager.HasComponent(uid)), Is.Not.Empty); + Assert.That(mapLoader.TryLoadGrid(mapId, salvage.MapPath, out var grid)); } catch (Exception ex) { @@ -49,7 +42,7 @@ public sealed class SalvageTest try { - mapManager.DeleteMap(mapId); + mapSystem.DeleteMap(mapId); } catch (Exception ex) { diff --git a/Content.IntegrationTests/Tests/SaveLoadMapTest.cs b/Content.IntegrationTests/Tests/SaveLoadMapTest.cs index 213da5d786..b1f6dd8433 100644 --- a/Content.IntegrationTests/Tests/SaveLoadMapTest.cs +++ b/Content.IntegrationTests/Tests/SaveLoadMapTest.cs @@ -3,6 +3,7 @@ using Content.Shared.CCVar; using Robust.Server.GameObjects; using Robust.Shared.Configuration; using Robust.Shared.ContentPack; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.GameObjects; using Robust.Shared.Map; using Robust.Shared.Maths; @@ -16,7 +17,7 @@ namespace Content.IntegrationTests.Tests [Test] public async Task SaveLoadMultiGridMap() { - const string mapPath = @"/Maps/Test/TestMap.yml"; + var mapPath = new ResPath("/Maps/Test/TestMap.yml"); await using var pair = await PoolManager.GetServerClient(); var server = pair.Server; @@ -31,7 +32,7 @@ namespace Content.IntegrationTests.Tests await server.WaitAssertion(() => { - var dir = new ResPath(mapPath).Directory; + var dir = mapPath.Directory; resManager.UserData.CreateDir(dir); mapSystem.CreateMap(out var mapId); @@ -48,14 +49,16 @@ namespace Content.IntegrationTests.Tests } Assert.Multiple(() => mapLoader.SaveMap(mapId, mapPath)); - Assert.Multiple(() => mapManager.DeleteMap(mapId)); + Assert.Multiple(() => mapSystem.DeleteMap(mapId)); }); await server.WaitIdleAsync(); + MapId newMap = default; await server.WaitAssertion(() => { - Assert.That(mapLoader.TryLoad(new MapId(10), mapPath, out _)); + Assert.That(mapLoader.TryLoadMap(mapPath, out var map, out _)); + newMap = map!.Value.Comp.MapId; }); await server.WaitIdleAsync(); @@ -63,7 +66,7 @@ namespace Content.IntegrationTests.Tests await server.WaitAssertion(() => { { - if (!mapManager.TryFindGridAt(new MapId(10), new Vector2(10, 10), out var gridUid, out var mapGrid) || + if (!mapManager.TryFindGridAt(newMap, new Vector2(10, 10), out var gridUid, out var mapGrid) || !sEntities.TryGetComponent(gridUid, out var gridXform)) { Assert.Fail(); @@ -77,7 +80,7 @@ namespace Content.IntegrationTests.Tests }); } { - if (!mapManager.TryFindGridAt(new MapId(10), new Vector2(-8, -8), out var gridUid, out var mapGrid) || + if (!mapManager.TryFindGridAt(newMap, new Vector2(-8, -8), out var gridUid, out var mapGrid) || !sEntities.TryGetComponent(gridUid, out var gridXform)) { Assert.Fail(); diff --git a/Content.IntegrationTests/Tests/SaveLoadSaveTest.cs b/Content.IntegrationTests/Tests/SaveLoadSaveTest.cs index 4facd5ee40..a398b55919 100644 --- a/Content.IntegrationTests/Tests/SaveLoadSaveTest.cs +++ b/Content.IntegrationTests/Tests/SaveLoadSaveTest.cs @@ -1,25 +1,25 @@ using System.IO; using System.Linq; using Content.Shared.CCVar; -using Robust.Server.GameObjects; -using Robust.Server.Maps; using Robust.Shared.Configuration; using Robust.Shared.ContentPack; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.GameObjects; using Robust.Shared.Map; -using Robust.Shared.Map.Components; +using Robust.Shared.Map.Events; +using Robust.Shared.Serialization.Markdown.Mapping; using Robust.Shared.Utility; namespace Content.IntegrationTests.Tests { /// - /// Tests that a map's yaml does not change when saved consecutively. + /// Tests that a grid's yaml does not change when saved consecutively. /// [TestFixture] public sealed class SaveLoadSaveTest { [Test] - public async Task SaveLoadSave() + public async Task CreateSaveLoadSaveGrid() { await using var pair = await PoolManager.GetServerClient(); var server = pair.Server; @@ -30,22 +30,21 @@ namespace Content.IntegrationTests.Tests var cfg = server.ResolveDependency(); Assert.That(cfg.GetCVar(CCVars.GridFill), Is.False); + var testSystem = server.System(); + testSystem.Enabled = true; + + var rp1 = new ResPath("/save load save 1.yml"); + var rp2 = new ResPath("/save load save 2.yml"); + await server.WaitPost(() => { mapSystem.CreateMap(out var mapId0); - // TODO: Properly find the "main" station grid. var grid0 = mapManager.CreateGridEntity(mapId0); - mapLoader.Save(grid0.Owner, "save load save 1.yml"); + entManager.RunMapInit(grid0.Owner, entManager.GetComponent(grid0)); + mapLoader.SaveGrid(grid0.Owner, rp1); mapSystem.CreateMap(out var mapId1); - EntityUid grid1 = default!; -#pragma warning disable NUnit2045 - Assert.That(mapLoader.TryLoad(mapId1, "save load save 1.yml", out var roots, new MapLoadOptions() { LoadMap = false }), $"Failed to load test map {TestMap}"); - Assert.DoesNotThrow(() => - { - grid1 = roots.First(uid => entManager.HasComponent(uid)); - }); -#pragma warning restore NUnit2045 - mapLoader.Save(grid1, "save load save 2.yml"); + Assert.That(mapLoader.TryLoadGrid(mapId1, rp1, out var grid1)); + mapLoader.SaveGrid(grid1!.Value, rp2); }); await server.WaitIdleAsync(); @@ -54,14 +53,12 @@ namespace Content.IntegrationTests.Tests string one; string two; - var rp1 = new ResPath("/save load save 1.yml"); await using (var stream = userData.Open(rp1, FileMode.Open)) using (var reader = new StreamReader(stream)) { one = await reader.ReadToEndAsync(); } - var rp2 = new ResPath("/save load save 2.yml"); await using (var stream = userData.Open(rp2, FileMode.Open)) using (var reader = new StreamReader(stream)) { @@ -87,6 +84,7 @@ namespace Content.IntegrationTests.Tests TestContext.Error.WriteLine(twoTmp); } }); + testSystem.Enabled = false; await pair.CleanReturnAsync(); } @@ -101,8 +99,12 @@ namespace Content.IntegrationTests.Tests await using var pair = await PoolManager.GetServerClient(); var server = pair.Server; var mapLoader = server.ResolveDependency().GetEntitySystem(); - var mapManager = server.ResolveDependency(); - var mapSystem = server.System(); + var mapSys = server.System(); + var testSystem = server.System(); + testSystem.Enabled = true; + + var rp1 = new ResPath("/load save ticks save 1.yml"); + var rp2 = new ResPath("/load save ticks save 2.yml"); MapId mapId = default; var cfg = server.ResolveDependency(); @@ -111,10 +113,10 @@ namespace Content.IntegrationTests.Tests // Load bagel.yml as uninitialized map, and save it to ensure it's up to date. server.Post(() => { - mapSystem.CreateMap(out mapId, runMapInit: false); - mapManager.SetMapPaused(mapId, true); - Assert.That(mapLoader.TryLoad(mapId, TestMap, out _), $"Failed to load test map {TestMap}"); - mapLoader.SaveMap(mapId, "load save ticks save 1.yml"); + var path = new ResPath(TestMap); + Assert.That(mapLoader.TryLoadMap(path, out var map, out _), $"Failed to load test map {TestMap}"); + mapId = map!.Value.Comp.MapId; + mapLoader.SaveMap(mapId, rp1); }); // Run 5 ticks. @@ -122,7 +124,7 @@ namespace Content.IntegrationTests.Tests await server.WaitPost(() => { - mapLoader.SaveMap(mapId, "/load save ticks save 2.yml"); + mapLoader.SaveMap(mapId, rp2); }); await server.WaitIdleAsync(); @@ -131,13 +133,13 @@ namespace Content.IntegrationTests.Tests string one; string two; - await using (var stream = userData.Open(new ResPath("/load save ticks save 1.yml"), FileMode.Open)) + await using (var stream = userData.Open(rp1, FileMode.Open)) using (var reader = new StreamReader(stream)) { one = await reader.ReadToEndAsync(); } - await using (var stream = userData.Open(new ResPath("/load save ticks save 2.yml"), FileMode.Open)) + await using (var stream = userData.Open(rp2, FileMode.Open)) using (var reader = new StreamReader(stream)) { two = await reader.ReadToEndAsync(); @@ -163,7 +165,8 @@ namespace Content.IntegrationTests.Tests } }); - await server.WaitPost(() => mapManager.DeleteMap(mapId)); + testSystem.Enabled = false; + await server.WaitPost(() => mapSys.DeleteMap(mapId)); await pair.CleanReturnAsync(); } @@ -184,13 +187,15 @@ namespace Content.IntegrationTests.Tests var server = pair.Server; var mapLoader = server.System(); - var mapSystem = server.System(); - var mapManager = server.ResolveDependency(); + var mapSys = server.System(); var userData = server.ResolveDependency().UserData; var cfg = server.ResolveDependency(); Assert.That(cfg.GetCVar(CCVars.GridFill), Is.False); + var testSystem = server.System(); + testSystem.Enabled = true; - MapId mapId = default; + MapId mapId1 = default; + MapId mapId2 = default; const string fileA = "/load tick load a.yml"; const string fileB = "/load tick load b.yml"; string yamlA; @@ -199,10 +204,10 @@ namespace Content.IntegrationTests.Tests // Load & save the first map server.Post(() => { - mapSystem.CreateMap(out mapId, runMapInit: false); - mapManager.SetMapPaused(mapId, true); - Assert.That(mapLoader.TryLoad(mapId, TestMap, out _), $"Failed to load test map {TestMap}"); - mapLoader.SaveMap(mapId, fileA); + var path = new ResPath(TestMap); + Assert.That(mapLoader.TryLoadMap(path, out var map, out _), $"Failed to load test map {TestMap}"); + mapId1 = map!.Value.Comp.MapId; + mapLoader.SaveMap(mapId1, fileA); }); await server.WaitIdleAsync(); @@ -217,11 +222,10 @@ namespace Content.IntegrationTests.Tests // Load & save the second map server.Post(() => { - mapManager.DeleteMap(mapId); - mapSystem.CreateMap(out mapId, runMapInit: false); - mapManager.SetMapPaused(mapId, true); - Assert.That(mapLoader.TryLoad(mapId, TestMap, out _), $"Failed to load test map {TestMap}"); - mapLoader.SaveMap(mapId, fileB); + var path = new ResPath(TestMap); + Assert.That(mapLoader.TryLoadMap(path, out var map, out _), $"Failed to load test map {TestMap}"); + mapId2 = map!.Value.Comp.MapId; + mapLoader.SaveMap(mapId2, fileB); }); await server.WaitIdleAsync(); @@ -234,8 +238,32 @@ namespace Content.IntegrationTests.Tests Assert.That(yamlA, Is.EqualTo(yamlB)); - await server.WaitPost(() => mapManager.DeleteMap(mapId)); + testSystem.Enabled = false; + await server.WaitPost(() => mapSys.DeleteMap(mapId1)); + await server.WaitPost(() => mapSys.DeleteMap(mapId2)); await pair.CleanReturnAsync(); } + + /// + /// Simple system that modifies the data saved to a yaml file by removing the timestamp. + /// Required by some tests that validate that re-saving a map does not modify it. + /// + private sealed class SaveLoadSaveTestSystem : EntitySystem + { + public bool Enabled; + public override void Initialize() + { + SubscribeLocalEvent(OnAfterSave); + } + + private void OnAfterSave(AfterSaveEvent ev) + { + if (!Enabled) + return; + + // Remove timestamp. + ((MappingDataNode)ev.Node["meta"]).Remove("time"); + } + } } } diff --git a/Content.IntegrationTests/Tests/Shuttle/DockTest.cs b/Content.IntegrationTests/Tests/Shuttle/DockTest.cs index f6e99596e9..ab82a3d2f9 100644 --- a/Content.IntegrationTests/Tests/Shuttle/DockTest.cs +++ b/Content.IntegrationTests/Tests/Shuttle/DockTest.cs @@ -4,10 +4,12 @@ using System.Numerics; using Content.Server.Shuttles.Systems; using Content.Tests; using Robust.Server.GameObjects; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.GameObjects; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Maths; +using Robust.Shared.Utility; namespace Content.IntegrationTests.Tests.Shuttle; @@ -106,8 +108,9 @@ public sealed class DockTest : ContentUnitTest { mapGrid = entManager.AddComponent(map.MapUid); entManager.DeleteEntity(map.Grid); - Assert.That(entManager.System().TryLoad(otherMap.MapId, "/Maps/Shuttles/emergency.yml", out var rootUids)); - shuttle = rootUids[0]; + var path = new ResPath("/Maps/Shuttles/emergency.yml"); + Assert.That(entManager.System().TryLoadGrid(otherMap.MapId, path, out var grid)); + shuttle = grid!.Value.Owner; var dockingConfig = dockingSystem.GetDockingConfig(shuttle, map.MapUid); Assert.That(dockingConfig, Is.EqualTo(null)); diff --git a/Content.Server/Administration/Commands/LoadGameMapCommand.cs b/Content.Server/Administration/Commands/LoadGameMapCommand.cs index ea31c1ecb1..034b50a9c5 100644 --- a/Content.Server/Administration/Commands/LoadGameMapCommand.cs +++ b/Content.Server/Administration/Commands/LoadGameMapCommand.cs @@ -1,11 +1,9 @@ -using System.Linq; using System.Numerics; using Content.Server.GameTicking; using Content.Server.Maps; using Content.Shared.Administration; -using Robust.Server.Maps; using Robust.Shared.Console; -using Robust.Shared.ContentPack; +using Robust.Shared.EntitySerialization; using Robust.Shared.Map; using Robust.Shared.Prototypes; @@ -25,6 +23,7 @@ namespace Content.Server.Administration.Commands var prototypeManager = IoCManager.Resolve(); var entityManager = IoCManager.Resolve(); var gameTicker = entityManager.EntitySysManager.GetEntitySystem(); + var mapSys = entityManager.EntitySysManager.GetEntitySystem(); if (args.Length is not (2 or 4 or 5)) { @@ -32,29 +31,28 @@ namespace Content.Server.Administration.Commands return; } - if (prototypeManager.TryIndex(args[1], out var gameMap)) - { - if (!int.TryParse(args[0], out var mapId)) - return; - - var loadOptions = new MapLoadOptions() - { - LoadMap = false, - }; - - var stationName = args.Length == 5 ? args[4] : null; - - if (args.Length >= 4 && int.TryParse(args[2], out var x) && int.TryParse(args[3], out var y)) - { - loadOptions.Offset = new Vector2(x, y); - } - var grids = gameTicker.LoadGameMap(gameMap, new MapId(mapId), loadOptions, stationName); - shell.WriteLine($"Loaded {grids.Count} grids."); - } - else + if (!prototypeManager.TryIndex(args[1], out var gameMap)) { shell.WriteError($"The given map prototype {args[0]} is invalid."); + return; } + + if (!int.TryParse(args[0], out var mapId)) + return; + + var stationName = args.Length == 5 ? args[4] : null; + + Vector2? offset = null; + if (args.Length >= 4) + offset = new Vector2(int.Parse(args[2]), int.Parse(args[3])); + + var id = new MapId(mapId); + + var grids = mapSys.MapExists(id) + ? gameTicker.MergeGameMap(gameMap, id, stationName: stationName, offset: offset) + : gameTicker.LoadGameMapWithId(gameMap, id, stationName: stationName, offset: offset); + + shell.WriteLine($"Loaded {grids.Count} grids."); } public CompletionResult GetCompletion(IConsoleShell shell, string[] args) diff --git a/Content.Server/Administration/Commands/PersistenceSaveCommand.cs b/Content.Server/Administration/Commands/PersistenceSaveCommand.cs index 7ef1932c56..dffe1eff7f 100644 --- a/Content.Server/Administration/Commands/PersistenceSaveCommand.cs +++ b/Content.Server/Administration/Commands/PersistenceSaveCommand.cs @@ -5,6 +5,7 @@ using Robust.Shared.Configuration; using Robust.Shared.Console; using Robust.Shared.Map; using System.Linq; +using Robust.Shared.EntitySerialization.Systems; namespace Content.Server.Administration.Commands; diff --git a/Content.Server/Administration/Systems/AdminTestArenaSystem.cs b/Content.Server/Administration/Systems/AdminTestArenaSystem.cs index e3671bcdfb..12bf0eba64 100644 --- a/Content.Server/Administration/Systems/AdminTestArenaSystem.cs +++ b/Content.Server/Administration/Systems/AdminTestArenaSystem.cs @@ -1,8 +1,7 @@ -using Robust.Server.GameObjects; -using Robust.Shared.Map; -using Robust.Shared.Map.Components; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Network; using Robust.Shared.Player; +using Robust.Shared.Utility; namespace Content.Server.Administration.Systems; @@ -11,8 +10,7 @@ namespace Content.Server.Administration.Systems; /// public sealed class AdminTestArenaSystem : EntitySystem { - [Dependency] private readonly IMapManager _mapManager = default!; - [Dependency] private readonly MapLoaderSystem _map = default!; + [Dependency] private readonly MapLoaderSystem _loader = default!; [Dependency] private readonly MetaDataSystem _metaDataSystem = default!; public const string ArenaMapPath = "/Maps/Test/admin_test_arena.yml"; @@ -28,26 +26,24 @@ public sealed class AdminTestArenaSystem : EntitySystem { return (arenaMap, arenaGrid); } - else - { - ArenaGrid[admin.UserId] = null; - return (arenaMap, null); - } - } - ArenaMap[admin.UserId] = _mapManager.GetMapEntityId(_mapManager.CreateMap()); - _metaDataSystem.SetEntityName(ArenaMap[admin.UserId], $"ATAM-{admin.Name}"); - var grids = _map.LoadMap(Comp(ArenaMap[admin.UserId]).MapId, ArenaMapPath); - if (grids.Count != 0) - { - _metaDataSystem.SetEntityName(grids[0], $"ATAG-{admin.Name}"); - ArenaGrid[admin.UserId] = grids[0]; - } - else - { + ArenaGrid[admin.UserId] = null; + return (arenaMap, null); } - return (ArenaMap[admin.UserId], ArenaGrid[admin.UserId]); + var path = new ResPath(ArenaMapPath); + if (!_loader.TryLoadMap(path, out var map, out var grids)) + throw new Exception($"Failed to load admin arena"); + + ArenaMap[admin.UserId] = map.Value.Owner; + _metaDataSystem.SetEntityName(map.Value.Owner, $"ATAM-{admin.Name}"); + + var grid = grids.FirstOrNull(); + ArenaGrid[admin.UserId] = grid?.Owner; + if (grid != null) + _metaDataSystem.SetEntityName(grid.Value.Owner, $"ATAG-{admin.Name}"); + + return (map.Value.Owner, grid?.Owner); } } diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs index a7dd5d6ab6..37e7a4e1ce 100644 --- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs +++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs @@ -1,4 +1,5 @@ using System.Linq; +using System.Numerics; using Content.Server.Announcements; using Content.Server.Discord; using Content.Server.GameTicking.Events; @@ -13,10 +14,12 @@ using Content.Shared.Players; using Content.Shared.Preferences; using JetBrains.Annotations; using Prometheus; -using Robust.Server.Maps; using Robust.Shared.Asynchronous; using Robust.Shared.Audio; +using Robust.Shared.EntitySerialization; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Map; +using Robust.Shared.Map.Components; using Robust.Shared.Network; using Robust.Shared.Player; using Robust.Shared.Random; @@ -92,9 +95,6 @@ namespace Content.Server.GameTicking AddGamePresetRules(); - DefaultMap = _mapManager.CreateMap(); - _mapManager.AddUninitializedMap(DefaultMap); - var maps = new List(); // the map might have been force-set by something @@ -132,52 +132,203 @@ namespace Content.Server.GameTicking // Let game rules dictate what maps we should load. RaiseLocalEvent(new LoadingMapsEvent(maps)); - foreach (var map in maps) + if (maps.Count == 0) { - var toLoad = DefaultMap; - if (maps[0] != map) - { - // Create other maps for the others since we need to. - toLoad = _mapManager.CreateMap(); - _mapManager.AddUninitializedMap(toLoad); - } + _map.CreateMap(out var mapId, runMapInit: false); + DefaultMap = mapId; + return; + } - LoadGameMap(map, toLoad, null); + for (var i = 0; i < maps.Count; i++) + { + LoadGameMap(maps[i], out var mapId); + DebugTools.Assert(!_map.IsInitialized(mapId)); + + if (i == 0) + DefaultMap = mapId; } } + public PreGameMapLoad RaisePreLoad( + GameMapPrototype proto, + DeserializationOptions? opts = null, + Vector2? offset = null, + Angle? rot = null) + { + offset ??= proto.MaxRandomOffset != 0f + ? _robustRandom.NextVector2(proto.MaxRandomOffset) + : Vector2.Zero; + + rot ??= proto.RandomRotation + ? _robustRandom.NextAngle() + : Angle.Zero; + + opts ??= DeserializationOptions.Default; + var ev = new PreGameMapLoad(proto, opts.Value, offset.Value, rot.Value); + RaiseLocalEvent(ev); + return ev; + } /// /// Loads a new map, allowing systems interested in it to handle loading events. /// In the base game, this is required to be used if you want to load a station. + /// This does not initialze maps, unles specified via the . /// - /// Game map prototype to load in. - /// Map to load into. - /// Map loading options, includes offset. + /// + /// This is basically a wrapper around a method that auto generate + /// some using information in a prototype, and raise some events to allow content + /// to modify the options and react to the map creation. + /// + /// Game map prototype to load in. + /// The id of the map that was loaded. + /// Entity loading options, including whether the maps should be initialized. /// Name to assign to the loaded station. /// All loaded entities and grids. - public IReadOnlyList LoadGameMap(GameMapPrototype map, MapId targetMapId, MapLoadOptions? loadOptions, string? stationName = null) + public IReadOnlyList LoadGameMap( + GameMapPrototype proto, + out MapId mapId, + DeserializationOptions? options = null, + string? stationName = null, + Vector2? offset = null, + Angle? rot = null) { - // Okay I specifically didn't set LoadMap here because this is typically called onto a new map. - // whereas the command can also be used on an existing map. - var loadOpts = loadOptions ?? new MapLoadOptions(); + var ev = RaisePreLoad(proto, options, offset, rot); - if (map.MaxRandomOffset != 0f) - loadOpts.Offset = _robustRandom.NextVector2(map.MaxRandomOffset); + if (ev.GameMap.IsGrid) + { + var mapUid = _map.CreateMap(out mapId); + if (!_loader.TryLoadGrid(mapId, + ev.GameMap.MapPath, + out var grid, + ev.Options, + ev.Offset, + ev.Rotation)) + { + throw new Exception($"Failed to load game-map grid {ev.GameMap.ID}"); + } - if (map.RandomRotation) - loadOpts.Rotation = _robustRandom.NextAngle(); + _metaData.SetEntityName(mapUid, proto.MapName); + var g = new List {grid.Value.Owner}; + RaiseLocalEvent(new PostGameMapLoad(proto, mapId, g, stationName)); + return g; + } - var ev = new PreGameMapLoad(targetMapId, map, loadOpts); - RaiseLocalEvent(ev); + if (!_loader.TryLoadMap(ev.GameMap.MapPath, + out var map, + out var grids, + ev.Options, + ev.Offset, + ev.Rotation)) + { + throw new Exception($"Failed to load game map {ev.GameMap.ID}"); + } - var gridIds = _map.LoadMap(targetMapId, ev.GameMap.MapPath.ToString(), ev.Options); + mapId = map.Value.Comp.MapId; + _metaData.SetEntityName(map.Value.Owner, proto.MapName); + var gridUids = grids.Select(x => x.Owner).ToList(); + RaiseLocalEvent(new PostGameMapLoad(proto, mapId, gridUids, stationName)); + return gridUids; + } - _metaData.SetEntityName(_mapManager.GetMapEntityId(targetMapId), map.MapName); + /// + /// Variant of that attempts to assign the provided to the + /// loaded map. + /// + public IReadOnlyList LoadGameMapWithId( + GameMapPrototype proto, + MapId mapId, + DeserializationOptions? opts = null, + string? stationName = null, + Vector2? offset = null, + Angle? rot = null) + { + var ev = RaisePreLoad(proto, opts, offset, rot); - var gridUids = gridIds.ToList(); - RaiseLocalEvent(new PostGameMapLoad(map, targetMapId, gridUids, stationName)); + if (ev.GameMap.IsGrid) + { + var mapUid = _map.CreateMap(mapId); + if (!_loader.TryLoadGrid(mapId, + ev.GameMap.MapPath, + out var grid, + ev.Options, + ev.Offset, + ev.Rotation)) + { + throw new Exception($"Failed to load game-map grid {ev.GameMap.ID}"); + } + _metaData.SetEntityName(mapUid, proto.MapName); + var g = new List {grid.Value.Owner}; + RaiseLocalEvent(new PostGameMapLoad(proto, mapId, g, stationName)); + return g; + } + + if (!_loader.TryLoadMapWithId( + mapId, + ev.GameMap.MapPath, + out var map, + out var grids, + ev.Options, + ev.Offset, + ev.Rotation)) + { + throw new Exception($"Failed to load map"); + } + + _metaData.SetEntityName(map.Value.Owner, proto.MapName); + var gridUids = grids.Select(x => x.Owner).ToList(); + RaiseLocalEvent(new PostGameMapLoad(proto, mapId, gridUids, stationName)); + return gridUids; + } + + /// + /// Variant of that loads and then merges a game map onto an existing map. + /// + public IReadOnlyList MergeGameMap( + GameMapPrototype proto, + MapId targetMap, + DeserializationOptions? opts = null, + string? stationName = null, + Vector2? offset = null, + Angle? rot = null) + { + // TODO MAP LOADING use a new event? + // This is quite different from the other methods, which will actually create a **new** map. + var ev = RaisePreLoad(proto, opts, offset, rot); + + if (ev.GameMap.IsGrid) + { + if (!_loader.TryLoadGrid(targetMap, + ev.GameMap.MapPath, + out var grid, + ev.Options, + ev.Offset, + ev.Rotation)) + { + throw new Exception($"Failed to load game-map grid {ev.GameMap.ID}"); + } + + var g = new List {grid.Value.Owner}; + // TODO MAP LOADING use a new event? + RaiseLocalEvent(new PostGameMapLoad(proto, targetMap, g, stationName)); + return g; + } + + if (!_loader.TryMergeMap(targetMap, + ev.GameMap.MapPath, + out var map, + out var grids, + ev.Options, + ev.Offset, + ev.Rotation)) + { + throw new Exception($"Failed to load map"); + } + + var gridUids = grids.Select(x => x.Owner).ToList(); + + // TODO MAP LOADING use a new event? + RaiseLocalEvent(new PostGameMapLoad(proto, targetMap, gridUids, stationName)); return gridUids; } @@ -274,7 +425,7 @@ namespace Content.Server.GameTicking } // MapInitialize *before* spawning players, our codebase is too shit to do it afterwards... - _mapManager.DoMapInitialize(DefaultMap); + _map.InitializeMap(DefaultMap); SpawnPlayers(readyPlayers, readyPlayerProfiles, force); @@ -714,21 +865,14 @@ namespace Content.Server.GameTicking /// You likely want to subscribe to this after StationSystem. /// [PublicAPI] - public sealed class PreGameMapLoad : EntityEventArgs + public sealed class PreGameMapLoad(GameMapPrototype gameMap, DeserializationOptions options, Vector2 offset, Angle rotation) : EntityEventArgs { - public readonly MapId Map; - public GameMapPrototype GameMap; - public MapLoadOptions Options; - - public PreGameMapLoad(MapId map, GameMapPrototype gameMap, MapLoadOptions options) - { - Map = map; - GameMap = gameMap; - Options = options; - } + public readonly GameMapPrototype GameMap = gameMap; + public DeserializationOptions Options = options; + public Vector2 Offset = offset; + public Angle Rotation = rotation; } - /// /// Event raised after the game loads a given map. /// diff --git a/Content.Server/GameTicking/GameTicker.cs b/Content.Server/GameTicking/GameTicker.cs index f8ba7e1d7d..d286fd641e 100644 --- a/Content.Server/GameTicking/GameTicker.cs +++ b/Content.Server/GameTicking/GameTicker.cs @@ -18,6 +18,7 @@ using Robust.Server.GameObjects; using Robust.Server.GameStates; using Robust.Shared.Audio.Systems; using Robust.Shared.Console; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Map; using Robust.Shared.Prototypes; using Robust.Shared.Random; @@ -48,7 +49,8 @@ namespace Content.Server.GameTicking [Dependency] private readonly IServerPreferencesManager _prefsManager = default!; [Dependency] private readonly IServerDbManager _db = default!; [Dependency] private readonly ChatSystem _chatSystem = default!; - [Dependency] private readonly MapLoaderSystem _map = default!; + [Dependency] private readonly MapLoaderSystem _loader = default!; + [Dependency] private readonly SharedMapSystem _map = default!; [Dependency] private readonly GhostSystem _ghost = default!; [Dependency] private readonly SharedMindSystem _mind = default!; [Dependency] private readonly PlayTimeTrackingSystem _playTimeTrackings = default!; diff --git a/Content.Server/GameTicking/Rules/Components/LoadMapRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/LoadMapRuleComponent.cs index 1f0505c60f..f09fff5eaf 100644 --- a/Content.Server/GameTicking/Rules/Components/LoadMapRuleComponent.cs +++ b/Content.Server/GameTicking/Rules/Components/LoadMapRuleComponent.cs @@ -20,11 +20,17 @@ public sealed partial class LoadMapRuleComponent : Component public ProtoId? GameMap; /// - /// A map path to load on a new map. + /// A map to load. /// [DataField] public ResPath? MapPath; + /// + /// A grid to load on a new map. + /// + [DataField] + public ResPath? GridPath; + /// /// A to move to a new map. /// If there are no instances left nothing is done. diff --git a/Content.Server/GameTicking/Rules/LoadMapRuleSystem.cs b/Content.Server/GameTicking/Rules/LoadMapRuleSystem.cs index f18115d3cf..003a74ef4b 100644 --- a/Content.Server/GameTicking/Rules/LoadMapRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/LoadMapRuleSystem.cs @@ -1,10 +1,14 @@ +using System.Linq; using Content.Server.GameTicking.Rules.Components; using Content.Server.GridPreloader; using Content.Server.StationEvents.Events; using Content.Shared.GameTicking.Components; using Robust.Server.GameObjects; -using Robust.Server.Maps; +using Robust.Shared.EntitySerialization; +using Robust.Shared.EntitySerialization.Systems; +using Robust.Shared.Map; using Robust.Shared.Prototypes; +using Robust.Shared.Utility; namespace Content.Server.GameTicking.Rules; @@ -26,29 +30,50 @@ public sealed class LoadMapRuleSystem : StationEventSystem return; } - // grid preloading needs map to init after moving it - var mapUid = _map.CreateMap(out var mapId, runMapInit: comp.PreloadedGrid == null); - - Log.Info($"Created map {mapId} for {ToPrettyString(uid):rule}"); - + MapId mapId; IReadOnlyList grids; if (comp.GameMap != null) { + // Component has one of three modes, only one of the three fields should ever be populated. + DebugTools.AssertNull(comp.MapPath); + DebugTools.AssertNull(comp.GridPath); + DebugTools.AssertNull(comp.PreloadedGrid); + var gameMap = _prototypeManager.Index(comp.GameMap.Value); - grids = GameTicker.LoadGameMap(gameMap, mapId, new MapLoadOptions()); + grids = GameTicker.LoadGameMap(gameMap, out mapId, null); + Log.Info($"Created map {mapId} for {ToPrettyString(uid):rule}"); } else if (comp.MapPath is {} path) { - var options = new MapLoadOptions { LoadMap = true }; - if (!_mapLoader.TryLoad(mapId, path.ToString(), out var roots, options)) + DebugTools.AssertNull(comp.GridPath); + DebugTools.AssertNull(comp.PreloadedGrid); + + var opts = DeserializationOptions.Default with {InitializeMaps = true}; + if (!_mapLoader.TryLoadMap(path, out var map, out var gridSet, opts)) { Log.Error($"Failed to load map from {path}!"); - Del(mapUid); ForceEndSelf(uid, rule); return; } - grids = roots; + grids = gridSet.Select( x => x.Owner).ToList(); + mapId = map.Value.Comp.MapId; + } + else if (comp.GridPath is { } gPath) + { + DebugTools.AssertNull(comp.PreloadedGrid); + + // I fucking love it when "map paths" choses to ar + _map.CreateMap(out mapId); + var opts = DeserializationOptions.Default with {InitializeMaps = true}; + if (!_mapLoader.TryLoadGrid(mapId, gPath, out var grid, opts)) + { + Log.Error($"Failed to load grid from {gPath}!"); + ForceEndSelf(uid, rule); + return; + } + + grids = new List {grid.Value.Owner}; } else if (comp.PreloadedGrid is {} preloaded) { @@ -56,11 +81,11 @@ public sealed class LoadMapRuleSystem : StationEventSystem if (!_gridPreloader.TryGetPreloadedGrid(preloaded, out var loadedShuttle)) { Log.Error($"Failed to get a preloaded grid with {preloaded}!"); - Del(mapUid); ForceEndSelf(uid, rule); return; } + var mapUid = _map.CreateMap(out mapId, runMapInit: false); _transform.SetParent(loadedShuttle.Value, mapUid); grids = new List() { loadedShuttle.Value }; _map.InitializeMap(mapUid); @@ -68,7 +93,6 @@ public sealed class LoadMapRuleSystem : StationEventSystem else { Log.Error($"No valid map prototype or map path associated with the rule {ToPrettyString(uid)}"); - Del(mapUid); ForceEndSelf(uid, rule); return; } diff --git a/Content.Server/GridPreloader/GridPreloaderSystem.cs b/Content.Server/GridPreloader/GridPreloaderSystem.cs index e12ce41a31..d648acbb06 100644 --- a/Content.Server/GridPreloader/GridPreloaderSystem.cs +++ b/Content.Server/GridPreloader/GridPreloaderSystem.cs @@ -3,7 +3,6 @@ using Content.Shared.CCVar; using Content.Shared.GridPreloader.Prototypes; using Content.Shared.GridPreloader.Systems; using Robust.Server.GameObjects; -using Robust.Server.Maps; using Robust.Shared.Configuration; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -13,6 +12,7 @@ using System.Numerics; using Content.Server.GameTicking; using Content.Shared.GameTicking; using JetBrains.Annotations; +using Robust.Shared.EntitySerialization.Systems; namespace Content.Server.GridPreloader; public sealed class GridPreloaderSystem : SharedGridPreloaderSystem @@ -72,23 +72,13 @@ public sealed class GridPreloaderSystem : SharedGridPreloaderSystem { for (var i = 0; i < proto.Copies; i++) { - var options = new MapLoadOptions + if (!_mapLoader.TryLoadGrid(mapId, proto.Path, out var grid)) { - LoadMap = false, - }; - - if (!_mapLoader.TryLoad(mapId, proto.Path.ToString(), out var roots, options)) + Log.Error($"Failed to preload grid prototype {proto.ID}"); continue; + } - // only supports loading maps with one grid. - if (roots.Count != 1) - continue; - - var gridUid = roots[0]; - - // gets grid + also confirms that the root we loaded is actually a grid - if (!TryComp(gridUid, out var mapGrid)) - continue; + var (gridUid, mapGrid) = grid.Value; if (!TryComp(gridUid, out var physics)) continue; diff --git a/Content.Server/Mapping/MappingCommand.cs b/Content.Server/Mapping/MappingCommand.cs index 70647d3281..b85b0953dd 100644 --- a/Content.Server/Mapping/MappingCommand.cs +++ b/Content.Server/Mapping/MappingCommand.cs @@ -3,12 +3,13 @@ using Content.Server.Administration; using Content.Server.GameTicking; using Content.Shared.Administration; using Content.Shared.CCVar; -using Robust.Server.GameObjects; -using Robust.Server.Maps; using Robust.Shared.Configuration; using Robust.Shared.Console; using Robust.Shared.ContentPack; +using Robust.Shared.EntitySerialization; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Map; +using Robust.Shared.Utility; namespace Content.Server.Mapping { @@ -91,8 +92,9 @@ namespace Content.Server.Mapping } else { - var loadOptions = new MapLoadOptions {StoreMapUids = true}; - _entities.System().TryLoad(mapId, args[1], out _, loadOptions); + var path = new ResPath(args[1]); + var opts = new DeserializationOptions {StoreYamlUids = true}; + _entities.System().TryLoadMapWithId(mapId, path, out _, out _, opts); } // was the map actually created or did it fail somehow? diff --git a/Content.Server/Mapping/MappingManager.cs b/Content.Server/Mapping/MappingManager.cs index e8c6eca204..be6f503bf0 100644 --- a/Content.Server/Mapping/MappingManager.cs +++ b/Content.Server/Mapping/MappingManager.cs @@ -4,6 +4,8 @@ using Content.Shared.Administration; using Content.Shared.Mapping; using Robust.Server.GameObjects; using Robust.Server.Player; +using Robust.Shared.EntitySerialization; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Map; using Robust.Shared.Network; using Robust.Shared.Serialization; @@ -21,6 +23,7 @@ public sealed class MappingManager : IPostInjectInit [Dependency] private readonly IServerNetManager _net = default!; [Dependency] private readonly IPlayerManager _players = default!; [Dependency] private readonly IEntitySystemManager _systems = default!; + [Dependency] private readonly IEntityManager _ent = default!; private ISawmill _sawmill = default!; private ZStdCompressionContext _zstd = default!; @@ -45,14 +48,13 @@ public sealed class MappingManager : IPostInjectInit if (!_players.TryGetSessionByChannel(message.MsgChannel, out var session) || !_admin.IsAdmin(session, true) || !_admin.HasAdminFlag(session, AdminFlags.Host) || - session.AttachedEntity is not { } player) + !_ent.TryGetComponent(session.AttachedEntity, out TransformComponent? xform) || + xform.MapUid is not {} mapUid) { return; } - var mapId = _systems.GetEntitySystem().GetMapCoordinates(player).MapId; - var mapEntity = _map.GetMapEntityIdOrThrow(mapId); - var data = _systems.GetEntitySystem().GetSaveData(mapEntity); + var data = _systems.GetEntitySystem().SerializeEntityRecursive(mapUid).Node; var document = new YamlDocument(data.ToYaml()); var stream = new YamlStream { document }; var writer = new StringWriter(); diff --git a/Content.Server/Mapping/MappingSystem.cs b/Content.Server/Mapping/MappingSystem.cs index 28bb3afbe1..ecdbbe081c 100644 --- a/Content.Server/Mapping/MappingSystem.cs +++ b/Content.Server/Mapping/MappingSystem.cs @@ -3,10 +3,10 @@ using Content.Server.Administration; using Content.Shared.Administration; using Content.Shared.CCVar; using Robust.Server.GameObjects; -using Robust.Server.Maps; using Robust.Shared.Configuration; using Robust.Shared.Console; using Robust.Shared.ContentPack; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Map; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -23,7 +23,7 @@ public sealed class MappingSystem : EntitySystem [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IResourceManager _resMan = default!; - [Dependency] private readonly MapLoaderSystem _map = default!; + [Dependency] private readonly MapLoaderSystem _loader = default!; // Not a comp because I don't want to deal with this getting saved onto maps ever /// @@ -78,7 +78,7 @@ public sealed class MappingSystem : EntitySystem var path = Path.Combine(saveDir, $"{DateTime.Now.ToString("yyyy-M-dd_HH.mm.ss")}-AUTO.yml"); _currentlyAutosaving[map] = (CalculateNextTime(), name); Log.Info($"Autosaving map {name} ({map}) to {path}. Next save in {ReadableTimeLeft(map)} seconds."); - _map.SaveMap(map, path); + _loader.SaveMap(map, path); } } diff --git a/Content.Server/Maps/GameMapPrototype.cs b/Content.Server/Maps/GameMapPrototype.cs index 5942a9930e..c39ca348da 100644 --- a/Content.Server/Maps/GameMapPrototype.cs +++ b/Content.Server/Maps/GameMapPrototype.cs @@ -25,6 +25,11 @@ public sealed partial class GameMapPrototype : IPrototype [DataField] public float MaxRandomOffset = 1000f; + /// + /// Turns out some of the map files are actually secretly grids. Excellent. I love map loading code. + /// + [DataField] public bool IsGrid; + [DataField] public bool RandomRotation = true; diff --git a/Content.Server/Maps/MapMigrationSystem.cs b/Content.Server/Maps/MapMigrationSystem.cs index 83c2abc5e3..3341034a35 100644 --- a/Content.Server/Maps/MapMigrationSystem.cs +++ b/Content.Server/Maps/MapMigrationSystem.cs @@ -2,8 +2,8 @@ using System.IO; using System.Linq; using Robust.Server.GameObjects; -using Robust.Server.Maps; using Robust.Shared.ContentPack; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Map.Events; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.Markdown; diff --git a/Content.Server/Maps/ResaveCommand.cs b/Content.Server/Maps/ResaveCommand.cs index cc4d13dded..0d48f946be 100644 --- a/Content.Server/Maps/ResaveCommand.cs +++ b/Content.Server/Maps/ResaveCommand.cs @@ -1,11 +1,11 @@ using System.Linq; using Content.Server.Administration; using Content.Shared.Administration; -using Robust.Server.GameObjects; -using Robust.Server.Maps; using Robust.Shared.Console; using Robust.Shared.ContentPack; -using Robust.Shared.Map; +using Robust.Shared.EntitySerialization; +using Robust.Shared.EntitySerialization.Components; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Utility; namespace Content.Server.Maps; @@ -17,8 +17,8 @@ namespace Content.Server.Maps; public sealed class ResaveCommand : LocalizedCommands { [Dependency] private readonly IEntityManager _entManager = default!; - [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IResourceManager _res = default!; + [Dependency] private readonly ILogManager _log = default!; public override string Command => "resave"; @@ -26,32 +26,56 @@ public sealed class ResaveCommand : LocalizedCommands { var loader = _entManager.System(); - foreach (var fn in _res.ContentFindFiles(new ResPath("/Maps/"))) + var opts = MapLoadOptions.Default with { - var mapId = _mapManager.CreateMap(); - _mapManager.AddUninitializedMap(mapId); - loader.Load(mapId, fn.ToString(), new MapLoadOptions() + + DeserializationOptions = DeserializationOptions.Default with { - StoreMapUids = true, - LoadMap = true, - }); + StoreYamlUids = true, + LogOrphanedGrids = false + } + }; + + var log = _log.GetSawmill(Command); + var files = _res.ContentFindFiles(new ResPath("/Maps/")).ToList(); + + for (var i = 0; i < files.Count; i++) + { + var fn = files[i]; + log.Info($"Re-saving file {i}/{files.Count} : {fn}"); + + if (!loader.TryLoadEntities(fn, out var result, opts)) + continue; + + if (result.Maps.Count != 1) + { + shell.WriteError( + $"Multi-map or multi-grid files like {fn} are not yet supported by the {Command} command"); + loader.Delete(result); + continue; + } + + var map = result.Maps.First(); // Process deferred component removals. _entManager.CullRemovedComponents(); - var mapUid = _mapManager.GetMapEntityId(mapId); - var mapXform = _entManager.GetComponent(mapUid); - - if (_entManager.HasComponent(mapUid) || mapXform.ChildCount != 1) + if (_entManager.HasComponent(map)) { - loader.SaveMap(mapId, fn.ToString()); + loader.SaveMap(map.Comp.MapId, fn); } - else if (mapXform.ChildEnumerator.MoveNext(out var child)) + else if (result.Grids.Count == 1) { - loader.Save(child, fn.ToString()); + loader.SaveGrid(result.Grids.First(), fn); + } + else + { + shell.WriteError($"Failed to resave {fn}"); } - _mapManager.DeleteMap(mapId); + loader.Delete(result); } + + shell.WriteLine($"Resaved all maps"); } } diff --git a/Content.Server/Procedural/DungeonSystem.cs b/Content.Server/Procedural/DungeonSystem.cs index 706f63ffd7..75cdb69130 100644 --- a/Content.Server/Procedural/DungeonSystem.cs +++ b/Content.Server/Procedural/DungeonSystem.cs @@ -15,10 +15,13 @@ using Robust.Server.GameObjects; using Robust.Shared.Collections; using Robust.Shared.Configuration; using Robust.Shared.Console; +using Robust.Shared.EntitySerialization; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Prototypes; using Robust.Shared.Random; +using Robust.Shared.Utility; namespace Content.Server.Procedural; @@ -173,14 +176,18 @@ public sealed partial class DungeonSystem : SharedDungeonSystem return Transform(uid).MapID; } - var mapId = _mapManager.CreateMap(); - _mapManager.AddUninitializedMap(mapId); - _loader.Load(mapId, proto.AtlasPath.ToString()); - var mapUid = _mapManager.GetMapEntityId(mapId); - _mapManager.SetMapPaused(mapId, true); - comp = AddComp(mapUid); + var opts = new MapLoadOptions + { + DeserializationOptions = DeserializationOptions.Default with {PauseMaps = true}, + ExpectedCategory = FileCategory.Map + }; + + if (!_loader.TryLoadEntities(proto.AtlasPath, out var res, opts) || !res.Maps.TryFirstOrNull(out var map)) + throw new Exception($"Failed to load dungeon template."); + + comp = AddComp(map.Value.Owner); comp.Path = proto.AtlasPath; - return mapId; + return map.Value.Comp.MapId; } /// diff --git a/Content.Server/Salvage/SalvageSystem.Magnet.cs b/Content.Server/Salvage/SalvageSystem.Magnet.cs index 81db78fb20..f0520b6dc6 100644 --- a/Content.Server/Salvage/SalvageSystem.Magnet.cs +++ b/Content.Server/Salvage/SalvageSystem.Magnet.cs @@ -2,14 +2,11 @@ using System.Linq; using System.Numerics; using System.Threading.Tasks; using Content.Server.Salvage.Magnet; -using Content.Shared.Humanoid; using Content.Shared.Mobs.Components; using Content.Shared.Procedural; using Content.Shared.Radio; using Content.Shared.Salvage.Magnet; -using Robust.Server.Maps; using Robust.Shared.Map; -using Robust.Shared.Map.Components; namespace Content.Server.Salvage; @@ -278,15 +275,10 @@ public sealed partial class SalvageSystem case SalvageOffering wreck: var salvageProto = wreck.SalvageMap; - var opts = new MapLoadOptions - { - Offset = new Vector2(0, 0) - }; - - if (!_map.TryLoad(salvMapXform.MapID, salvageProto.MapPath.ToString(), out _, opts)) + if (!_loader.TryLoadGrid(salvMapXform.MapID, salvageProto.MapPath, out _)) { Report(magnet, MagnetChannel, "salvage-system-announcement-spawn-debris-disintegrated"); - _mapManager.DeleteMap(salvMapXform.MapID); + _mapSystem.DeleteMap(salvMapXform.MapID); return; } diff --git a/Content.Server/Salvage/SalvageSystem.cs b/Content.Server/Salvage/SalvageSystem.cs index eb5719c892..9115c60536 100644 --- a/Content.Server/Salvage/SalvageSystem.cs +++ b/Content.Server/Salvage/SalvageSystem.cs @@ -1,38 +1,23 @@ -using System.Linq; -using System.Numerics; -using Content.Server.Cargo.Systems; -using Content.Server.Construction; -using Content.Server.GameTicking; using Content.Server.Radio.EntitySystems; -using Content.Shared.Examine; -using Content.Shared.Interaction; -using Content.Shared.Popups; using Content.Shared.Radio; using Content.Shared.Salvage; using Robust.Server.GameObjects; using Robust.Shared.Configuration; using Robust.Shared.Map; -using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; -using Robust.Shared.Utility; using Content.Server.Chat.Managers; using Content.Server.Gravity; using Content.Server.Parallax; using Content.Server.Procedural; using Content.Server.Shuttles.Systems; using Content.Server.Station.Systems; -using Content.Shared.CCVar; using Content.Shared.Construction.EntitySystems; -using Content.Shared.Random; -using Content.Shared.Random.Helpers; -using Content.Shared.Tools.Components; -using Robust.Server.Maps; -using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Map.Components; using Robust.Shared.Timing; using Content.Server.Labels; +using Robust.Shared.EntitySerialization.Systems; namespace Content.Server.Salvage { @@ -50,7 +35,7 @@ namespace Content.Server.Salvage [Dependency] private readonly DungeonSystem _dungeon = default!; [Dependency] private readonly GravitySystem _gravity = default!; [Dependency] private readonly LabelSystem _labelSystem = default!; - [Dependency] private readonly MapLoaderSystem _map = default!; + [Dependency] private readonly MapLoaderSystem _loader = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly RadioSystem _radioSystem = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; diff --git a/Content.Server/Shuttles/Systems/ArrivalsSystem.cs b/Content.Server/Shuttles/Systems/ArrivalsSystem.cs index 1f972d9675..708f5a7a1c 100644 --- a/Content.Server/Shuttles/Systems/ArrivalsSystem.cs +++ b/Content.Server/Shuttles/Systems/ArrivalsSystem.cs @@ -30,11 +30,13 @@ using Robust.Server.GameObjects; using Robust.Shared.Collections; using Robust.Shared.Configuration; using Robust.Shared.Console; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Map; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; +using Robust.Shared.Utility; using TimedDespawnComponent = Robust.Shared.Spawners.TimedDespawnComponent; namespace Content.Server.Shuttles.Systems; @@ -512,15 +514,13 @@ public sealed class ArrivalsSystem : EntitySystem private void SetupArrivalsStation() { - var mapUid = _mapSystem.CreateMap(out var mapId, false); - _metaData.SetEntityName(mapUid, Loc.GetString("map-name-terminal")); - - if (!_loader.TryLoad(mapId, _cfgManager.GetCVar(CCVars.ArrivalsMap), out var uids)) - { + var path = new ResPath(_cfgManager.GetCVar(CCVars.ArrivalsMap)); + if (!_loader.TryLoadMap(path, out var map, out var grids)) return; - } - foreach (var id in uids) + _metaData.SetEntityName(map.Value, Loc.GetString("map-name-terminal")); + + foreach (var id in grids) { EnsureComp(id); EnsureComp(id); @@ -531,15 +531,15 @@ public sealed class ArrivalsSystem : EntitySystem if (_cfgManager.GetCVar(CCVars.ArrivalsPlanet)) { var template = _random.Pick(_arrivalsBiomeOptions); - _biomes.EnsurePlanet(mapUid, _protoManager.Index(template)); + _biomes.EnsurePlanet(map.Value, _protoManager.Index(template)); var restricted = new RestrictedRangeComponent { Range = 32f }; - AddComp(mapUid, restricted); + AddComp(map.Value, restricted); } - _mapSystem.InitializeMap(mapId); + _mapSystem.InitializeMap(map.Value.Comp.MapId); // Handle roundstart stations. var query = AllEntityQuery(); @@ -600,9 +600,9 @@ public sealed class ArrivalsSystem : EntitySystem var dummpMapEntity = _mapSystem.CreateMap(out var dummyMapId); if (TryGetArrivals(out var arrivals) && - _loader.TryLoad(dummyMapId, component.ShuttlePath.ToString(), out var shuttleUids)) + _loader.TryLoadGrid(dummyMapId, component.ShuttlePath, out var shuttle)) { - component.Shuttle = shuttleUids[0]; + component.Shuttle = shuttle.Value; var shuttleComp = Comp(component.Shuttle); var arrivalsComp = EnsureComp(component.Shuttle); arrivalsComp.Station = uid; diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs index 6c4bdc0814..afa77421bd 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs @@ -29,10 +29,9 @@ using Content.Shared.Shuttles.Events; using Content.Shared.Tag; using Content.Shared.Tiles; using Robust.Server.GameObjects; -using Robust.Server.Maps; using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; -using Robust.Shared.Map; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Map.Components; using Robust.Shared.Player; using Robust.Shared.Random; @@ -60,7 +59,7 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem [Dependency] private readonly DockingSystem _dock = default!; [Dependency] private readonly IdCardSystem _idSystem = default!; [Dependency] private readonly NavMapSystem _navMap = default!; - [Dependency] private readonly MapLoaderSystem _map = default!; + [Dependency] private readonly MapLoaderSystem _loader = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly RoundEndSystem _roundEnd = default!; @@ -531,10 +530,11 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem } var map = _mapSystem.CreateMap(out var mapId); - var grid = _map.LoadGrid(mapId, component.Map.ToString(), new MapLoadOptions() + if (!_loader.TryLoadGrid(mapId, component.Map, out var grid)) { - LoadMap = false, - }); + Log.Error($"Failed to set up centcomm grid!"); + return; + } if (!Exists(map)) { @@ -608,15 +608,11 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem // Load escape shuttle var shuttlePath = ent.Comp1.EmergencyShuttlePath; - var shuttle = _map.LoadGrid(map.MapId, shuttlePath.ToString(), new MapLoadOptions() - { + if (!_loader.TryLoadGrid(map.MapId, + shuttlePath, + out var shuttle, // Should be far enough... right? I'm too lazy to bounds check CentCom rn. - Offset = new Vector2(500f + ent.Comp2.ShuttleIndex, 0f), - // fun fact: if you just fucking yeet centcomm into nullspace anytime you try to spawn the shuttle, then any distance is far enough. so lets not do that - LoadMap = false, - }); - - if (shuttle == null) + offset: new Vector2(500f + ent.Comp2.ShuttleIndex, 0f))) { Log.Error($"Unable to spawn emergency shuttle {shuttlePath} for {ToPrettyString(ent)}"); return; diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs index de0593b26f..6123f348ec 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs @@ -72,17 +72,15 @@ public sealed partial class ShuttleSystem _mapSystem.CreateMap(out var mapId); - if (_loader.TryLoad(mapId, component.Path.ToString(), out var ent) && ent.Count > 0) + if (_loader.TryLoadGrid(mapId, component.Path, out var ent)) { - if (HasComp(ent[0])) - { - TryFTLProximity(ent[0], targetGrid.Value); - } + if (HasComp(ent)) + TryFTLProximity(ent.Value, targetGrid.Value); - _station.AddGridToStation(uid, ent[0]); + _station.AddGridToStation(uid, ent.Value); } - _mapManager.DeleteMap(mapId); + _mapSystem.DeleteMap(mapId); } private bool TryDungeonSpawn(Entity targetGrid, DungeonSpawnGroup group, out EntityUid spawned) @@ -143,20 +141,18 @@ public sealed partial class ShuttleSystem var path = paths[^1]; paths.RemoveAt(paths.Count - 1); - if (_loader.TryLoad(mapId, path.ToString(), out var ent) && ent.Count == 1) + if (_loader.TryLoadGrid(mapId, path, out var grid)) { - if (HasComp(ent[0])) - { - TryFTLProximity(ent[0], targetGrid); - } + if (HasComp(grid)) + TryFTLProximity(grid.Value, targetGrid); if (group.NameGrid) { var name = path.FilenameWithoutExtension; - _metadata.SetEntityName(ent[0], name); + _metadata.SetEntityName(grid.Value, name); } - spawned = ent[0]; + spawned = grid.Value; return true; } @@ -227,7 +223,7 @@ public sealed partial class ShuttleSystem } } - _mapManager.DeleteMap(mapId); + _mapSystem.DeleteMap(mapId); } private void OnGridFillMapInit(EntityUid uid, GridFillComponent component, MapInitEvent args) @@ -246,23 +242,22 @@ public sealed partial class ShuttleSystem _mapSystem.CreateMap(out var mapId); var valid = false; - if (_loader.TryLoad(mapId, component.Path.ToString(), out var ent) && - ent.Count == 1 && - TryComp(ent[0], out TransformComponent? shuttleXform)) + if (_loader.TryLoadGrid(mapId, component.Path, out var grid)) { - var escape = GetSingleDock(ent[0]); + var escape = GetSingleDock(grid.Value); if (escape != null) { - var config = _dockSystem.GetDockingConfig(ent[0], xform.GridUid.Value, escape.Value.Entity, escape.Value.Component, uid, dock); + var config = _dockSystem.GetDockingConfig(grid.Value, xform.GridUid.Value, escape.Value.Entity, escape.Value.Component, uid, dock); if (config != null) { - FTLDock((ent[0], shuttleXform), config); + var shuttleXform = Transform(grid.Value); + FTLDock((grid.Value, shuttleXform), config); if (TryComp(xform.GridUid, out var stationMember)) { - _station.AddGridToStation(stationMember.Station, ent[0]); + _station.AddGridToStation(stationMember.Station, grid.Value); } valid = true; @@ -273,11 +268,11 @@ public sealed partial class ShuttleSystem { var compType = compReg.Component.GetType(); - if (HasComp(ent[0], compType)) + if (HasComp(grid.Value, compType)) continue; var comp = _factory.GetComponent(compType); - AddComp(ent[0], comp, true); + AddComp(grid.Value, comp, true); } } @@ -286,7 +281,7 @@ public sealed partial class ShuttleSystem Log.Error($"Error loading gridfill dock for {ToPrettyString(uid)} / {component.Path}"); } - _mapManager.DeleteMap(mapId); + _mapSystem.DeleteMap(mapId); } private (EntityUid Entity, DockingComponent Component)? GetSingleDock(EntityUid uid) diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.cs index 6e8c1a9e20..f2c58d103c 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.cs @@ -17,6 +17,7 @@ using Robust.Server.GameStates; using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Physics; diff --git a/Content.Shared/Movement/Systems/SharedMoverController.Input.cs b/Content.Shared/Movement/Systems/SharedMoverController.Input.cs index 6f508d9038..14c8036287 100644 --- a/Content.Shared/Movement/Systems/SharedMoverController.Input.cs +++ b/Content.Shared/Movement/Systems/SharedMoverController.Input.cs @@ -8,6 +8,7 @@ using Content.Shared.Movement.Events; using Robust.Shared.GameStates; using Robust.Shared.Input; using Robust.Shared.Input.Binding; +using Robust.Shared.Map.Components; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; @@ -207,7 +208,7 @@ namespace Content.Shared.Movement.Systems } // If we went from grid -> map we'll preserve our worldrotation - if (relative != null && _mapManager.IsMap(relative.Value)) + if (relative != null && HasComp(relative.Value)) { targetRotation = currentRotation.FlipPositive().Reduced(); } diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 2051c24be8..9a4ca97210 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -454,7 +454,7 @@ duration: 1 - type: RuleGrids - type: LoadMapRule - mapPath: /Maps/Shuttles/ShuttleEvent/striker.yml + gridPath: /Maps/Shuttles/ShuttleEvent/striker.yml - type: NukeopsRule roundEndBehavior: Nothing - type: AntagSelection diff --git a/Resources/Prototypes/Maps/centcomm.yml b/Resources/Prototypes/Maps/centcomm.yml index 47dc5ca1f3..007da851d0 100644 --- a/Resources/Prototypes/Maps/centcomm.yml +++ b/Resources/Prototypes/Maps/centcomm.yml @@ -1,5 +1,6 @@ - type: gameMap id: CentComm + isGrid: true # Did you know that centcomm is the only "game map" that isn't actually a map? Send help. mapName: 'Central Command' mapPath: /Maps/centcomm.yml minPlayers: 10 diff --git a/RobustToolbox b/RobustToolbox index 5e97db435c..3cccf5be02 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 5e97db435c05b4c188184ef90e5d77b0500403d0 +Subproject commit 3cccf5be028be75242ffc86877b4e78a72b8cafe From 37c843328f964233a5e6690468729928eb05c0b4 Mon Sep 17 00:00:00 2001 From: ElectroJr Date: Mon, 23 Dec 2024 14:22:27 +1300 Subject: [PATCH 002/313] Fix NoSavedPostMapInitTest --- .../Tests/PostMapInitTest.cs | 36 ++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index f7562d934d..0a48730d54 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -111,12 +111,15 @@ namespace Content.IntegrationTests.Tests var server = pair.Server; var resourceManager = server.ResolveDependency(); + var loader = server.System(); + var mapFolder = new ResPath("/Maps"); var maps = resourceManager .ContentFindFiles(mapFolder) .Where(filePath => filePath.Extension == "yml" && !filePath.Filename.StartsWith(".", StringComparison.Ordinal)) .ToArray(); + var v7Maps = new List(); foreach (var map in maps) { var rootedPath = map.ToRootedPath(); @@ -139,10 +142,41 @@ namespace Content.IntegrationTests.Tests var root = yamlStream.Documents[0].RootNode; var meta = root["meta"]; - var postMapInit = meta["postmapinit"].AsBool(); + var version = meta["format"].AsInt(); + if (version >= 7) + { + v7Maps.Add(map); + continue; + } + + var postMapInit = meta["postmapinit"].AsBool(); Assert.That(postMapInit, Is.False, $"Map {map.Filename} was saved postmapinit"); } + + var deps = server.ResolveDependency().DependencyCollection; + foreach (var map in v7Maps) + { + if (!loader.TryReadFile(map, out var data)) + { + Assert.Fail($"Failed to read {map}"); + continue; + } + + var reader = new EntityDeserializer(deps, data, DeserializationOptions.Default); + if (!reader.TryProcessData()) + { + Assert.Fail($"Failed to process {map}"); + continue; + } + + foreach (var mapId in reader.MapYamlIds) + { + var mapData = reader.YamlEntities[mapId]; + Assert.That(!mapData.PostInit, $"Map {map.Filename} contains a postmapinit map with yaml id: {mapId}"); + } + } + await pair.CleanReturnAsync(); } From d47e72d7c2c6290563bf8519b2f6bb3a3c82f995 Mon Sep 17 00:00:00 2001 From: ElectroJr Date: Mon, 23 Dec 2024 16:38:05 +1300 Subject: [PATCH 003/313] oops --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index 3cccf5be02..5e97db435c 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 3cccf5be028be75242ffc86877b4e78a72b8cafe +Subproject commit 5e97db435c05b4c188184ef90e5d77b0500403d0 From 43e6fd57d4e7136747bd372e5af1d1f3dfed57a6 Mon Sep 17 00:00:00 2001 From: ElectroJr Date: Mon, 23 Dec 2024 18:02:46 +1300 Subject: [PATCH 004/313] Fix MapLoadBenchmark --- Content.Benchmarks/MapLoadBenchmark.cs | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/Content.Benchmarks/MapLoadBenchmark.cs b/Content.Benchmarks/MapLoadBenchmark.cs index 8c04d9a40d..abf99f9836 100644 --- a/Content.Benchmarks/MapLoadBenchmark.cs +++ b/Content.Benchmarks/MapLoadBenchmark.cs @@ -6,12 +6,13 @@ using BenchmarkDotNet.Attributes; using Content.IntegrationTests; using Content.IntegrationTests.Pair; using Content.Server.Maps; -using Robust.Server.GameObjects; using Robust.Shared; using Robust.Shared.Analyzers; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.GameObjects; using Robust.Shared.Map; using Robust.Shared.Prototypes; +using Robust.Shared.Utility; namespace Content.Benchmarks; @@ -20,7 +21,7 @@ public class MapLoadBenchmark { private TestPair _pair = default!; private MapLoaderSystem _mapLoader = default!; - private IMapManager _mapManager = default!; + private SharedMapSystem _mapSys = default!; [GlobalSetup] public void Setup() @@ -36,7 +37,7 @@ public class MapLoadBenchmark .ToDictionary(x => x.ID, x => x.MapPath.ToString()); _mapLoader = server.ResolveDependency().GetEntitySystem(); - _mapManager = server.ResolveDependency(); + _mapSys = server.ResolveDependency().GetEntitySystem(); } [GlobalCleanup] @@ -52,17 +53,19 @@ public class MapLoadBenchmark public string Map; public Dictionary Paths; + private MapId _mapId; [Benchmark] public async Task LoadMap() { - var mapPath = Paths[Map]; + var mapPath = new ResPath(Paths[Map]); var server = _pair.Server; await server.WaitPost(() => { - var success = _mapLoader.TryLoad(new MapId(10), mapPath, out _); + var success = _mapLoader.TryLoadMap(mapPath, out var map, out _); if (!success) throw new Exception("Map load failed"); + _mapId = map.Value.Comp.MapId; }); } @@ -70,9 +73,7 @@ public class MapLoadBenchmark public void IterationCleanup() { var server = _pair.Server; - server.WaitPost(() => - { - _mapManager.DeleteMap(new MapId(10)); - }).Wait(); + server.WaitPost(() => _mapSys.DeleteMap(_mapId)) + .Wait(); } } From ef3d7396d496374b639c949da4d9a5bb8153e057 Mon Sep 17 00:00:00 2001 From: ElectroJr Date: Mon, 23 Dec 2024 18:13:49 +1300 Subject: [PATCH 005/313] fix other benchmarks --- Content.Benchmarks/ComponentQueryBenchmark.cs | 12 ++++++------ Content.Benchmarks/PvsBenchmark.cs | 11 ++++++----- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/Content.Benchmarks/ComponentQueryBenchmark.cs b/Content.Benchmarks/ComponentQueryBenchmark.cs index 11c7ab9d5f..49e9984c09 100644 --- a/Content.Benchmarks/ComponentQueryBenchmark.cs +++ b/Content.Benchmarks/ComponentQueryBenchmark.cs @@ -9,13 +9,14 @@ using Content.IntegrationTests.Pair; using Content.Shared.Clothing.Components; using Content.Shared.Doors.Components; using Content.Shared.Item; -using Robust.Server.GameObjects; using Robust.Shared; using Robust.Shared.Analyzers; +using Robust.Shared.EntitySerialization; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.GameObjects; -using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Random; +using Robust.Shared.Utility; namespace Content.Benchmarks; @@ -32,7 +33,6 @@ public class ComponentQueryBenchmark private TestPair _pair = default!; private IEntityManager _entMan = default!; - private MapId _mapId = new(10); private EntityQuery _itemQuery; private EntityQuery _clothingQuery; private EntityQuery _mapQuery; @@ -54,10 +54,10 @@ public class ComponentQueryBenchmark _pair.Server.ResolveDependency().SetSeed(42); _pair.Server.WaitPost(() => { - var success = _entMan.System().TryLoad(_mapId, Map, out _); - if (!success) + var map = new ResPath(Map); + var opts = DeserializationOptions.Default with {InitializeMaps = true}; + if (!_entMan.System().TryLoadMap(map, out _, out _, opts)) throw new Exception("Map load failed"); - _pair.Server.MapMan.DoMapInitialize(_mapId); }).GetAwaiter().GetResult(); _items = new EntityUid[_entMan.Count()]; diff --git a/Content.Benchmarks/PvsBenchmark.cs b/Content.Benchmarks/PvsBenchmark.cs index fa7f9d4542..2f87545426 100644 --- a/Content.Benchmarks/PvsBenchmark.cs +++ b/Content.Benchmarks/PvsBenchmark.cs @@ -7,13 +7,15 @@ using Content.IntegrationTests; using Content.IntegrationTests.Pair; using Content.Server.Mind; using Content.Server.Warps; -using Robust.Server.GameObjects; using Robust.Shared; using Robust.Shared.Analyzers; +using Robust.Shared.EntitySerialization; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.GameObjects; using Robust.Shared.Map; using Robust.Shared.Player; using Robust.Shared.Random; +using Robust.Shared.Utility; namespace Content.Benchmarks; @@ -34,7 +36,6 @@ public class PvsBenchmark private TestPair _pair = default!; private IEntityManager _entMan = default!; - private MapId _mapId = new(10); private ICommonSession[] _players = default!; private EntityCoordinates[] _spawns = default!; public int _cycleOffset = 0; @@ -65,10 +66,10 @@ public class PvsBenchmark _pair.Server.ResolveDependency().SetSeed(42); await _pair.Server.WaitPost(() => { - var success = _entMan.System().TryLoad(_mapId, Map, out _); - if (!success) + var path = new ResPath(Map); + var opts = DeserializationOptions.Default with {InitializeMaps = true}; + if (!_entMan.System().TryLoadMap(path, out _, out _, opts)) throw new Exception("Map load failed"); - _pair.Server.MapMan.DoMapInitialize(_mapId); }); // Get list of ghost warp positions From f58baf042850680f9a03714976a3b33c48ca5ddf Mon Sep 17 00:00:00 2001 From: ElectroJr Date: Tue, 24 Dec 2024 03:37:31 +1300 Subject: [PATCH 006/313] Update permissions for engine toolshed PR --- Resources/toolshedEngineCommandPerms.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/toolshedEngineCommandPerms.yml b/Resources/toolshedEngineCommandPerms.yml index b9911e9468..ae02339c1a 100644 --- a/Resources/toolshedEngineCommandPerms.yml +++ b/Resources/toolshedEngineCommandPerms.yml @@ -74,7 +74,7 @@ - '%' - '%/' - '&~' - - '|~' + - bitornot - '^~' - '~' - '<' @@ -88,7 +88,7 @@ - '*/' - '//' - '&' - - '|' + - bitor - '^' - neg - abs From 9d05ea9f57dcb0931f820dab19648d6e6c7c30b9 Mon Sep 17 00:00:00 2001 From: ElectroJr Date: Tue, 24 Dec 2024 04:01:17 +1300 Subject: [PATCH 007/313] Poke tests From eef7d02e11c8bcf88fbee50ad87717d239ec1c48 Mon Sep 17 00:00:00 2001 From: ElectroJr Date: Tue, 24 Dec 2024 12:27:33 +1300 Subject: [PATCH 008/313] Improve NoSavedPostMapInitTest --- .../Tests/PostMapInitTest.cs | 62 +++++++++++++------ 1 file changed, 44 insertions(+), 18 deletions(-) diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index 0a48730d54..80e8e7b318 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -18,6 +18,7 @@ using Robust.Shared.Prototypes; using Content.Shared.Station.Components; using Robust.Shared.EntitySerialization; using Robust.Shared.EntitySerialization.Systems; +using Robust.Shared.IoC; using Robust.Shared.Utility; using YamlDotNet.RepresentationModel; @@ -157,29 +158,54 @@ namespace Content.IntegrationTests.Tests var deps = server.ResolveDependency().DependencyCollection; foreach (var map in v7Maps) { - if (!loader.TryReadFile(map, out var data)) - { - Assert.Fail($"Failed to read {map}"); - continue; - } - - var reader = new EntityDeserializer(deps, data, DeserializationOptions.Default); - if (!reader.TryProcessData()) - { - Assert.Fail($"Failed to process {map}"); - continue; - } - - foreach (var mapId in reader.MapYamlIds) - { - var mapData = reader.YamlEntities[mapId]; - Assert.That(!mapData.PostInit, $"Map {map.Filename} contains a postmapinit map with yaml id: {mapId}"); - } + Assert.That(IsPreInit(map, loader, deps)); } + // Check that the test actually does manage to catch post-init maps and isn't just blindly passing everything. + // To that end, create a new post-init map and try verify it. + var mapSys = server.System(); + MapId id = default; + await server.WaitPost(() => mapSys.CreateMap(out id, runMapInit: false)); + await server.WaitPost(() => server.EntMan.Spawn(null, new MapCoordinates(0, 0, id))); + + // First check that a pre-init version passes + var path = new ResPath($"{nameof(NoSavedPostMapInitTest)}.yml"); + loader.SaveMap(id, path); + Assert.That(IsPreInit(path, loader, deps)); + + // and the post-init version fails. + await server.WaitPost(() => mapSys.InitializeMap(id)); + loader.SaveMap(id, path); + Assert.That(IsPreInit(path, loader, deps), Is.False); + await pair.CleanReturnAsync(); } + private bool IsPreInit(ResPath map, MapLoaderSystem loader, IDependencyCollection deps) + { + if (!loader.TryReadFile(map, out var data)) + { + Assert.Fail($"Failed to read {map}"); + return false; + } + + var reader = new EntityDeserializer(deps, data, DeserializationOptions.Default); + if (!reader.TryProcessData()) + { + Assert.Fail($"Failed to process {map}"); + return false; + } + + foreach (var mapId in reader.MapYamlIds) + { + var mapData = reader.YamlEntities[mapId]; + if (mapData.PostInit) + return false; + } + + return true; + } + [Test, TestCaseSource(nameof(GameMaps))] public async Task GameMapsLoadableTest(string mapProto) { From a8cc0397c2634a085fbb424c7bdc2c951bb4cd72 Mon Sep 17 00:00:00 2001 From: ElectroJr Date: Tue, 24 Dec 2024 18:57:52 +1300 Subject: [PATCH 009/313] Moar engine changes --- .../Tests/Body/SaveLoadReparentTest.cs | 3 +-- .../Tests/PostMapInitTest.cs | 4 ++-- .../Tests/SaveLoadMapTest.cs | 4 ++-- .../Tests/SaveLoadSaveTest.cs | 24 +++++++++---------- .../Commands/PersistenceSaveCommand.cs | 5 ++-- .../DeviceNetwork/Systems/DeviceListSystem.cs | 4 ++-- .../Systems/NetworkConfiguratorSystem.cs | 4 ++-- Content.Server/Mapping/MappingSystem.cs | 2 +- Content.Server/Maps/ResaveCommand.cs | 4 ++-- Content.Shared/Follower/FollowerSystem.cs | 4 ++-- 10 files changed, 28 insertions(+), 30 deletions(-) diff --git a/Content.IntegrationTests/Tests/Body/SaveLoadReparentTest.cs b/Content.IntegrationTests/Tests/Body/SaveLoadReparentTest.cs index f56b5c2850..67163d0796 100644 --- a/Content.IntegrationTests/Tests/Body/SaveLoadReparentTest.cs +++ b/Content.IntegrationTests/Tests/Body/SaveLoadReparentTest.cs @@ -2,7 +2,6 @@ using System.Linq; using Content.Shared.Body.Components; using Content.Shared.Body.Systems; -using Robust.Server.GameObjects; using Robust.Shared.Containers; using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.GameObjects; @@ -115,7 +114,7 @@ public sealed class SaveLoadReparentTest var mapPath = new ResPath($"/{nameof(SaveLoadReparentTest)}{nameof(Test)}map.yml"); - mapLoader.SaveMap(mapId, mapPath); + Assert.That(mapLoader.TrySaveMap(mapId, mapPath)); mapSys.DeleteMap(mapId); Assert.That(mapLoader.TryLoadMap(mapPath, out var map, out _), Is.True); diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index 80e8e7b318..9e908371df 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -170,12 +170,12 @@ namespace Content.IntegrationTests.Tests // First check that a pre-init version passes var path = new ResPath($"{nameof(NoSavedPostMapInitTest)}.yml"); - loader.SaveMap(id, path); + Assert.That(loader.TrySaveMap(id, path)); Assert.That(IsPreInit(path, loader, deps)); // and the post-init version fails. await server.WaitPost(() => mapSys.InitializeMap(id)); - loader.SaveMap(id, path); + Assert.That(loader.TrySaveMap(id, path)); Assert.That(IsPreInit(path, loader, deps), Is.False); await pair.CleanReturnAsync(); diff --git a/Content.IntegrationTests/Tests/SaveLoadMapTest.cs b/Content.IntegrationTests/Tests/SaveLoadMapTest.cs index b1f6dd8433..b96fbe5767 100644 --- a/Content.IntegrationTests/Tests/SaveLoadMapTest.cs +++ b/Content.IntegrationTests/Tests/SaveLoadMapTest.cs @@ -48,8 +48,8 @@ namespace Content.IntegrationTests.Tests mapSystem.SetTile(mapGrid, new Vector2i(0, 0), new Tile(2, (TileRenderFlag) 1, 254)); } - Assert.Multiple(() => mapLoader.SaveMap(mapId, mapPath)); - Assert.Multiple(() => mapSystem.DeleteMap(mapId)); + Assert.That(mapLoader.TrySaveMap(mapId, mapPath)); + mapSystem.DeleteMap(mapId); }); await server.WaitIdleAsync(); diff --git a/Content.IntegrationTests/Tests/SaveLoadSaveTest.cs b/Content.IntegrationTests/Tests/SaveLoadSaveTest.cs index a398b55919..b41aa0bf2f 100644 --- a/Content.IntegrationTests/Tests/SaveLoadSaveTest.cs +++ b/Content.IntegrationTests/Tests/SaveLoadSaveTest.cs @@ -41,10 +41,10 @@ namespace Content.IntegrationTests.Tests mapSystem.CreateMap(out var mapId0); var grid0 = mapManager.CreateGridEntity(mapId0); entManager.RunMapInit(grid0.Owner, entManager.GetComponent(grid0)); - mapLoader.SaveGrid(grid0.Owner, rp1); + Assert.That(mapLoader.TrySaveGrid(grid0.Owner, rp1)); mapSystem.CreateMap(out var mapId1); Assert.That(mapLoader.TryLoadGrid(mapId1, rp1, out var grid1)); - mapLoader.SaveGrid(grid1!.Value, rp2); + Assert.That(mapLoader.TrySaveGrid(grid1!.Value, rp2)); }); await server.WaitIdleAsync(); @@ -116,7 +116,7 @@ namespace Content.IntegrationTests.Tests var path = new ResPath(TestMap); Assert.That(mapLoader.TryLoadMap(path, out var map, out _), $"Failed to load test map {TestMap}"); mapId = map!.Value.Comp.MapId; - mapLoader.SaveMap(mapId, rp1); + Assert.That(mapLoader.TrySaveMap(mapId, rp1)); }); // Run 5 ticks. @@ -124,7 +124,7 @@ namespace Content.IntegrationTests.Tests await server.WaitPost(() => { - mapLoader.SaveMap(mapId, rp2); + Assert.That(mapLoader.TrySaveMap(mapId, rp2)); }); await server.WaitIdleAsync(); @@ -196,8 +196,8 @@ namespace Content.IntegrationTests.Tests MapId mapId1 = default; MapId mapId2 = default; - const string fileA = "/load tick load a.yml"; - const string fileB = "/load tick load b.yml"; + var fileA = new ResPath("/load tick load a.yml"); + var fileB = new ResPath("/load tick load b.yml"); string yamlA; string yamlB; @@ -207,11 +207,11 @@ namespace Content.IntegrationTests.Tests var path = new ResPath(TestMap); Assert.That(mapLoader.TryLoadMap(path, out var map, out _), $"Failed to load test map {TestMap}"); mapId1 = map!.Value.Comp.MapId; - mapLoader.SaveMap(mapId1, fileA); + Assert.That(mapLoader.TrySaveMap(mapId1, fileA)); }); await server.WaitIdleAsync(); - await using (var stream = userData.Open(new ResPath(fileA), FileMode.Open)) + await using (var stream = userData.Open(fileA, FileMode.Open)) using (var reader = new StreamReader(stream)) { yamlA = await reader.ReadToEndAsync(); @@ -225,12 +225,12 @@ namespace Content.IntegrationTests.Tests var path = new ResPath(TestMap); Assert.That(mapLoader.TryLoadMap(path, out var map, out _), $"Failed to load test map {TestMap}"); mapId2 = map!.Value.Comp.MapId; - mapLoader.SaveMap(mapId2, fileB); + Assert.That(mapLoader.TrySaveMap(mapId2, fileB)); }); await server.WaitIdleAsync(); - await using (var stream = userData.Open(new ResPath(fileB), FileMode.Open)) + await using (var stream = userData.Open(fileB, FileMode.Open)) using (var reader = new StreamReader(stream)) { yamlB = await reader.ReadToEndAsync(); @@ -253,10 +253,10 @@ namespace Content.IntegrationTests.Tests public bool Enabled; public override void Initialize() { - SubscribeLocalEvent(OnAfterSave); + SubscribeLocalEvent(OnAfterSave); } - private void OnAfterSave(AfterSaveEvent ev) + private void OnAfterSave(AfterSerializationEvent ev) { if (!Enabled) return; diff --git a/Content.Server/Administration/Commands/PersistenceSaveCommand.cs b/Content.Server/Administration/Commands/PersistenceSaveCommand.cs index dffe1eff7f..cae507f6d8 100644 --- a/Content.Server/Administration/Commands/PersistenceSaveCommand.cs +++ b/Content.Server/Administration/Commands/PersistenceSaveCommand.cs @@ -1,11 +1,10 @@ using Content.Shared.Administration; using Content.Shared.CCVar; -using Robust.Server.GameObjects; using Robust.Shared.Configuration; using Robust.Shared.Console; using Robust.Shared.Map; -using System.Linq; using Robust.Shared.EntitySerialization.Systems; +using Robust.Shared.Utility; namespace Content.Server.Administration.Commands; @@ -49,7 +48,7 @@ public sealed class PersistenceSave : IConsoleCommand } var mapLoader = _system.GetEntitySystem(); - mapLoader.SaveMap(mapId, saveFilePath); + mapLoader.TrySaveMap(mapId, new ResPath(saveFilePath)); shell.WriteLine(Loc.GetString("cmd-savemap-success")); } } diff --git a/Content.Server/DeviceNetwork/Systems/DeviceListSystem.cs b/Content.Server/DeviceNetwork/Systems/DeviceListSystem.cs index a8d40882c4..4defec0aab 100644 --- a/Content.Server/DeviceNetwork/Systems/DeviceListSystem.cs +++ b/Content.Server/DeviceNetwork/Systems/DeviceListSystem.cs @@ -20,7 +20,7 @@ public sealed class DeviceListSystem : SharedDeviceListSystem SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnBeforeBroadcast); SubscribeLocalEvent(OnBeforePacketSent); - SubscribeLocalEvent(OnMapSave); + SubscribeLocalEvent(OnMapSave); } private void OnShutdown(EntityUid uid, DeviceListComponent component, ComponentShutdown args) @@ -124,7 +124,7 @@ public sealed class DeviceListSystem : SharedDeviceListSystem Dirty(list); } - private void OnMapSave(BeforeSaveEvent ev) + private void OnMapSave(BeforeSerializationEvent ev) { List toRemove = new(); var query = GetEntityQuery(); diff --git a/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs b/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs index efaf568094..7e6452d955 100644 --- a/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs +++ b/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs @@ -67,10 +67,10 @@ public sealed class NetworkConfiguratorSystem : SharedNetworkConfiguratorSystem SubscribeLocalEvent(OnComponentRemoved); - SubscribeLocalEvent(OnMapSave); + SubscribeLocalEvent(OnMapSave); } - private void OnMapSave(BeforeSaveEvent ev) + private void OnMapSave(BeforeSerializationEvent ev) { var enumerator = AllEntityQuery(); while (enumerator.MoveNext(out var uid, out var conf)) diff --git a/Content.Server/Mapping/MappingSystem.cs b/Content.Server/Mapping/MappingSystem.cs index ecdbbe081c..1ef6944924 100644 --- a/Content.Server/Mapping/MappingSystem.cs +++ b/Content.Server/Mapping/MappingSystem.cs @@ -78,7 +78,7 @@ public sealed class MappingSystem : EntitySystem var path = Path.Combine(saveDir, $"{DateTime.Now.ToString("yyyy-M-dd_HH.mm.ss")}-AUTO.yml"); _currentlyAutosaving[map] = (CalculateNextTime(), name); Log.Info($"Autosaving map {name} ({map}) to {path}. Next save in {ReadableTimeLeft(map)} seconds."); - _loader.SaveMap(map, path); + _loader.TrySaveMap(map, new ResPath(path)); } } diff --git a/Content.Server/Maps/ResaveCommand.cs b/Content.Server/Maps/ResaveCommand.cs index 0d48f946be..39507c850f 100644 --- a/Content.Server/Maps/ResaveCommand.cs +++ b/Content.Server/Maps/ResaveCommand.cs @@ -62,11 +62,11 @@ public sealed class ResaveCommand : LocalizedCommands if (_entManager.HasComponent(map)) { - loader.SaveMap(map.Comp.MapId, fn); + loader.TrySaveMap(map.Comp.MapId, fn); } else if (result.Grids.Count == 1) { - loader.SaveGrid(result.Grids.First(), fn); + loader.TrySaveGrid(result.Grids.First(), fn); } else { diff --git a/Content.Shared/Follower/FollowerSystem.cs b/Content.Shared/Follower/FollowerSystem.cs index 0c7bc99c46..ec13a4f7c2 100644 --- a/Content.Shared/Follower/FollowerSystem.cs +++ b/Content.Shared/Follower/FollowerSystem.cs @@ -42,7 +42,7 @@ public sealed class FollowerSystem : EntitySystem SubscribeLocalEvent(OnFollowedAttempt); SubscribeLocalEvent(OnGotEquippedHand); SubscribeLocalEvent(OnFollowedTerminating); - SubscribeLocalEvent(OnBeforeSave); + SubscribeLocalEvent(OnBeforeSave); } private void OnFollowedAttempt(Entity ent, ref ComponentGetStateAttemptEvent args) @@ -60,7 +60,7 @@ public sealed class FollowerSystem : EntitySystem } } - private void OnBeforeSave(BeforeSaveEvent ev) + private void OnBeforeSave(BeforeSerializationEvent ev) { // Some followers will not be map savable. This ensures that maps don't get saved with empty/invalid // followers, but just stopping any following on the map being saved. From b555a6049ee6faa15ca03759f16ab32b7eaff6a3 Mon Sep 17 00:00:00 2001 From: ElectroJr Date: Tue, 24 Dec 2024 21:00:53 +1300 Subject: [PATCH 010/313] Even more engine changes --- Content.IntegrationTests/Tests/PostMapInitTest.cs | 2 +- .../DeviceNetwork/Systems/DeviceListSystem.cs | 7 +++++-- .../Systems/NetworkConfiguratorSystem.cs | 8 ++++++-- Content.Server/Mapping/MappingManager.cs | 3 ++- Content.Server/Maps/ResaveCommand.cs | 2 +- Content.Server/Procedural/DungeonSystem.cs | 2 +- Content.Shared/Follower/FollowerSystem.cs | 13 ++++++++++--- 7 files changed, 26 insertions(+), 11 deletions(-) diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index 9e908371df..f07d1e4996 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -426,7 +426,7 @@ namespace Content.IntegrationTests.Tests { try { - Assert.That(mapLoader.TryLoadEntities(path, out maps, out _, opts)); + Assert.That(mapLoader.TryLoadGeneric(path, out maps, out _, opts)); } catch (Exception ex) { diff --git a/Content.Server/DeviceNetwork/Systems/DeviceListSystem.cs b/Content.Server/DeviceNetwork/Systems/DeviceListSystem.cs index 4defec0aab..1988a07cea 100644 --- a/Content.Server/DeviceNetwork/Systems/DeviceListSystem.cs +++ b/Content.Server/DeviceNetwork/Systems/DeviceListSystem.cs @@ -131,7 +131,7 @@ public sealed class DeviceListSystem : SharedDeviceListSystem var enumerator = AllEntityQuery(); while (enumerator.MoveNext(out var uid, out var device, out var xform)) { - if (xform.MapUid != ev.Map) + if (!ev.MapIds.Contains(xform.MapID)) continue; foreach (var ent in device.Devices) @@ -144,7 +144,10 @@ public sealed class DeviceListSystem : SharedDeviceListSystem continue; } - if (linkedXform.MapUid == ev.Map) + // This is assuming that **all** of the map is getting saved. + // Which is not necessarily true. + // AAAAAAAAAAAAAA + if (ev.MapIds.Contains(linkedXform.MapID)) continue; toRemove.Add(ent); diff --git a/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs b/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs index 7e6452d955..645d28f6d2 100644 --- a/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs +++ b/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs @@ -75,7 +75,10 @@ public sealed class NetworkConfiguratorSystem : SharedNetworkConfiguratorSystem var enumerator = AllEntityQuery(); while (enumerator.MoveNext(out var uid, out var conf)) { - if (CompOrNull(conf.ActiveDeviceList)?.MapUid != ev.Map) + if (!TryComp(conf.ActiveDeviceList, out TransformComponent? listXform)) + continue; + + if (!ev.MapIds.Contains(listXform.MapID)) continue; // The linked device list is (probably) being saved. Make sure that the configurator is also being saved @@ -83,9 +86,10 @@ public sealed class NetworkConfiguratorSystem : SharedNetworkConfiguratorSystem // containing a set of all entities that are about to be saved, which would make checking this much easier. // This is a shitty bandaid, and will force close the UI during auto-saves. // TODO Map serialization refactor + // I'm refactoring it now and I still dont know what to do var xform = Transform(uid); - if (xform.MapUid == ev.Map && IsSaveable(uid)) + if (ev.MapIds.Contains(xform.MapID) && IsSaveable(uid)) continue; _uiSystem.CloseUi(uid, NetworkConfiguratorUiKey.Configure); diff --git a/Content.Server/Mapping/MappingManager.cs b/Content.Server/Mapping/MappingManager.cs index be6f503bf0..0097df2e55 100644 --- a/Content.Server/Mapping/MappingManager.cs +++ b/Content.Server/Mapping/MappingManager.cs @@ -54,7 +54,8 @@ public sealed class MappingManager : IPostInjectInit return; } - var data = _systems.GetEntitySystem().SerializeEntityRecursive(mapUid).Node; + var sys = _systems.GetEntitySystem(); + var data = sys.SerializeEntitiesRecursive([mapUid]).Node; var document = new YamlDocument(data.ToYaml()); var stream = new YamlStream { document }; var writer = new StringWriter(); diff --git a/Content.Server/Maps/ResaveCommand.cs b/Content.Server/Maps/ResaveCommand.cs index 39507c850f..c48c02c1f7 100644 --- a/Content.Server/Maps/ResaveCommand.cs +++ b/Content.Server/Maps/ResaveCommand.cs @@ -44,7 +44,7 @@ public sealed class ResaveCommand : LocalizedCommands var fn = files[i]; log.Info($"Re-saving file {i}/{files.Count} : {fn}"); - if (!loader.TryLoadEntities(fn, out var result, opts)) + if (!loader.TryLoadGeneric(fn, out var result, opts)) continue; if (result.Maps.Count != 1) diff --git a/Content.Server/Procedural/DungeonSystem.cs b/Content.Server/Procedural/DungeonSystem.cs index 75cdb69130..521ebed7ec 100644 --- a/Content.Server/Procedural/DungeonSystem.cs +++ b/Content.Server/Procedural/DungeonSystem.cs @@ -182,7 +182,7 @@ public sealed partial class DungeonSystem : SharedDungeonSystem ExpectedCategory = FileCategory.Map }; - if (!_loader.TryLoadEntities(proto.AtlasPath, out var res, opts) || !res.Maps.TryFirstOrNull(out var map)) + if (!_loader.TryLoadGeneric(proto.AtlasPath, out var res, opts) || !res.Maps.TryFirstOrNull(out var map)) throw new Exception($"Failed to load dungeon template."); comp = AddComp(map.Value.Owner); diff --git a/Content.Shared/Follower/FollowerSystem.cs b/Content.Shared/Follower/FollowerSystem.cs index ec13a4f7c2..feea40fb2f 100644 --- a/Content.Shared/Follower/FollowerSystem.cs +++ b/Content.Shared/Follower/FollowerSystem.cs @@ -1,3 +1,4 @@ +using System.Linq; using System.Numerics; using Content.Shared.Administration.Managers; using Content.Shared.Database; @@ -62,8 +63,14 @@ public sealed class FollowerSystem : EntitySystem private void OnBeforeSave(BeforeSerializationEvent ev) { - // Some followers will not be map savable. This ensures that maps don't get saved with empty/invalid - // followers, but just stopping any following on the map being saved. + // Some followers will not be map savable. This ensures that maps don't get saved with some entities that have + // empty/invalid followers, by just stopping any following happening on the map being saved. + // I hate this so much. + // TODO WeakEntityReference + // We need some way to store entity references in a way that doesn't imply that the entity still exists. + // Then we wouldn't have to deal with this shit. + + var maps = ev.Entities.Select(x => Transform(x).MapUid).ToHashSet(); var query = AllEntityQuery(); while (query.MoveNext(out var uid, out var follower, out var xform, out var meta)) @@ -71,7 +78,7 @@ public sealed class FollowerSystem : EntitySystem if (meta.EntityPrototype == null || meta.EntityPrototype.MapSavable) continue; - if (xform.MapUid != ev.Map) + if (!maps.Contains(xform.MapUid)) continue; StopFollowingEntity(uid, follower.Following); From ad317f79b184e5122d91c478cb2d1b23e5a15fdc Mon Sep 17 00:00:00 2001 From: ElectroJr Date: Wed, 25 Dec 2024 16:26:38 +1300 Subject: [PATCH 011/313] Poke engine tests From 74deed794e196e4a0c609b4c512450755c01ba98 Mon Sep 17 00:00:00 2001 From: ElectroJr Date: Fri, 27 Dec 2024 15:47:32 +1300 Subject: [PATCH 012/313] Eng changes --- Content.Server/GameTicking/GameTicker.RoundFlow.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs index 37e7a4e1ce..40e3303c2d 100644 --- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs +++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs @@ -316,7 +316,6 @@ namespace Content.Server.GameTicking if (!_loader.TryMergeMap(targetMap, ev.GameMap.MapPath, - out var map, out var grids, ev.Options, ev.Offset, From f95fb450fd936a4d5e73a34f4fd641c9a4dc4fcc Mon Sep 17 00:00:00 2001 From: ElectroJr Date: Thu, 2 Jan 2025 17:00:13 +1300 Subject: [PATCH 013/313] obsolete --- Content.Server/Commands/CommandUtils.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Content.Server/Commands/CommandUtils.cs b/Content.Server/Commands/CommandUtils.cs index 30ea41b7c9..fde52d18e1 100644 --- a/Content.Server/Commands/CommandUtils.cs +++ b/Content.Server/Commands/CommandUtils.cs @@ -4,6 +4,7 @@ using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Network; using Robust.Shared.Player; +using Robust.Shared.Toolshed.Commands.Generic; namespace Content.Server.Commands { @@ -51,6 +52,7 @@ namespace Content.Server.Commands return true; } + [Obsolete($"Use toolshed's {nameof(EmplaceCommand)}")] public static string SubstituteEntityDetails(IConsoleShell shell, EntityUid ent, string ruleString) { var entMan = IoCManager.Resolve(); From 48c13b32f43be057775acb8a87aa950dbd92adf5 Mon Sep 17 00:00:00 2001 From: ElectroJr Date: Thu, 2 Jan 2025 17:00:45 +1300 Subject: [PATCH 014/313] Remove unused helper. Use EmplaceCommand instead --- Content.Server/Commands/CommandUtils.cs | 41 ------------------------- 1 file changed, 41 deletions(-) diff --git a/Content.Server/Commands/CommandUtils.cs b/Content.Server/Commands/CommandUtils.cs index fde52d18e1..502c3ae024 100644 --- a/Content.Server/Commands/CommandUtils.cs +++ b/Content.Server/Commands/CommandUtils.cs @@ -51,46 +51,5 @@ namespace Content.Server.Commands attachedEntity = session.AttachedEntity.Value; return true; } - - [Obsolete($"Use toolshed's {nameof(EmplaceCommand)}")] - public static string SubstituteEntityDetails(IConsoleShell shell, EntityUid ent, string ruleString) - { - var entMan = IoCManager.Resolve(); - var transform = entMan.GetComponent(ent); - var transformSystem = entMan.System(); - var worldPosition = transformSystem.GetWorldPosition(transform); - - // gross, is there a better way to do this? - ruleString = ruleString.Replace("$ID", ent.ToString()); - ruleString = ruleString.Replace("$WX", - worldPosition.X.ToString(CultureInfo.InvariantCulture)); - ruleString = ruleString.Replace("$WY", - worldPosition.Y.ToString(CultureInfo.InvariantCulture)); - ruleString = ruleString.Replace("$LX", - transform.LocalPosition.X.ToString(CultureInfo.InvariantCulture)); - ruleString = ruleString.Replace("$LY", - transform.LocalPosition.Y.ToString(CultureInfo.InvariantCulture)); - ruleString = ruleString.Replace("$NAME", entMan.GetComponent(ent).EntityName); - - if (shell.Player is { } player) - { - if (player.AttachedEntity is {Valid: true} p) - { - var pTransform = entMan.GetComponent(p); - var pWorldPosition = transformSystem.GetWorldPosition(pTransform); - - ruleString = ruleString.Replace("$PID", ent.ToString()); - ruleString = ruleString.Replace("$PWX", - pWorldPosition.X.ToString(CultureInfo.InvariantCulture)); - ruleString = ruleString.Replace("$PWY", - pWorldPosition.Y.ToString(CultureInfo.InvariantCulture)); - ruleString = ruleString.Replace("$PLX", - pTransform.LocalPosition.X.ToString(CultureInfo.InvariantCulture)); - ruleString = ruleString.Replace("$PLY", - pTransform.LocalPosition.Y.ToString(CultureInfo.InvariantCulture)); - } - } - return ruleString; - } } } From e5468982f5806dbf0066be3dd671f5da949414b6 Mon Sep 17 00:00:00 2001 From: ElectroJr Date: Fri, 3 Jan 2025 18:45:02 +1300 Subject: [PATCH 015/313] Fix mark verb --- Content.Server/Administration/Systems/AdminVerbSystem.cs | 2 +- Content.Server/Administration/Toolshed/MarkedCommand.cs | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.cs b/Content.Server/Administration/Systems/AdminVerbSystem.cs index 0640537f57..43b6007583 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.cs @@ -105,7 +105,7 @@ namespace Content.Server.Administration.Systems mark.Text = Loc.GetString("toolshed-verb-mark"); mark.Message = Loc.GetString("toolshed-verb-mark-description"); mark.Category = VerbCategory.Admin; - mark.Act = () => _toolshed.InvokeCommand(player, "=> $marked", Enumerable.Repeat(args.Target, 1), out _); + mark.Act = () => _toolshed.InvokeCommand(player, "=> $marked", new List {args.Target}, out _); mark.Impact = LogImpact.Low; args.Verbs.Add(mark); diff --git a/Content.Server/Administration/Toolshed/MarkedCommand.cs b/Content.Server/Administration/Toolshed/MarkedCommand.cs index 54d45a352d..c2b9ecf79a 100644 --- a/Content.Server/Administration/Toolshed/MarkedCommand.cs +++ b/Content.Server/Administration/Toolshed/MarkedCommand.cs @@ -9,8 +9,7 @@ public sealed class MarkedCommand : ToolshedCommand [CommandImplementation] public IEnumerable Marked(IInvocationContext ctx) { - var res = (IEnumerable?)ctx.ReadVar("marked"); - res ??= Array.Empty(); - return res; + var marked = ctx.ReadVar("marked") as IEnumerable; + return marked ?? Array.Empty(); } } From 0d8d50de921adc9d821ec89ceb7801505a3eb7de Mon Sep 17 00:00:00 2001 From: ElectroJr Date: Sat, 18 Jan 2025 16:29:21 +1300 Subject: [PATCH 016/313] Fix elk and add new test --- .../Tests/PostMapInitTest.cs | 54 +++++++++++++++++-- .../Maps/Shuttles/emergency_elkridge.yml | 14 +---- 2 files changed, 51 insertions(+), 17 deletions(-) diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index b47416ec82..fac5569970 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -38,10 +38,7 @@ namespace Content.IntegrationTests.Tests private static readonly string[] Grids = { - "/Maps/centcomm.yml", - "/Maps/Shuttles/cargo.yml", - "/Maps/Shuttles/emergency.yml", - "/Maps/Shuttles/infiltrator.yml", + "/Maps/centcomm.yml" }; private static readonly string[] GameMaps = @@ -105,6 +102,55 @@ namespace Content.IntegrationTests.Tests await pair.CleanReturnAsync(); } + /// + /// Asserts that shuttles are loadable and have been saved as grids and not maps. + /// + [Test] + public async Task ShuttlesLoadableTest() + { + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + + var entManager = server.ResolveDependency(); + var resMan = server.ResolveDependency(); + var mapLoader = entManager.System(); + var mapSystem = entManager.System(); + var cfg = server.ResolveDependency(); + Assert.That(cfg.GetCVar(CCVars.GridFill), Is.False); + + var shuttleFolder = new ResPath("/Maps/Shuttles"); + var shuttles = resMan + .ContentFindFiles(shuttleFolder) + .Where(filePath => + filePath.Extension == "yml" && !filePath.Filename.StartsWith(".", StringComparison.Ordinal)) + .ToArray(); + + await server.WaitPost(() => + { + Assert.Multiple(() => + { + foreach (var path in shuttles) + { + mapSystem.CreateMap(out var mapId); + try + { + Assert.That(mapLoader.TryLoadGrid(mapId, path, out _), + $"Failed to load shuttle {path}, was it saved as a map instead of a grid?"); + } + catch (Exception ex) + { + throw new Exception($"Failed to load shuttle {path}, was it saved as a map instead of a grid?", + ex); + } + mapSystem.DeleteMap(mapId); + } + }); + }); + await server.WaitRunTicks(1); + + await pair.CleanReturnAsync(); + } + [Test] public async Task NoSavedPostMapInitTest() { diff --git a/Resources/Maps/Shuttles/emergency_elkridge.yml b/Resources/Maps/Shuttles/emergency_elkridge.yml index efeba6844b..4dafdee84a 100644 --- a/Resources/Maps/Shuttles/emergency_elkridge.yml +++ b/Resources/Maps/Shuttles/emergency_elkridge.yml @@ -18,7 +18,7 @@ entities: name: NT Evac Log - type: Transform pos: -0.42093527,-0.86894274 - parent: 637 + parent: invalid - type: MapGrid chunks: 0,0: @@ -804,18 +804,6 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - - uid: 637 - components: - - type: MetaData - name: Map Entity - - type: Transform - - type: Map - mapPaused: True - - type: PhysicsMap - - type: GridTree - - type: MovedGrids - - type: Broadphase - - type: OccluderTree - proto: AirAlarm entities: - uid: 577 From b13ccfefd6fd42005928280249a81b4fde9b599a Mon Sep 17 00:00:00 2001 From: ElectroJr Date: Sat, 18 Jan 2025 16:50:50 +1300 Subject: [PATCH 017/313] poke tests From 02f7dad6f3ce7c4008e3c98d28718d9ed2cbcaf2 Mon Sep 17 00:00:00 2001 From: Killerqu00 Date: Tue, 28 Jan 2025 17:42:17 +0100 Subject: [PATCH 018/313] Thou shall not map items with "do not map" suffix --- .../Tests/PostMapInitTest.cs | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index 9ebd32a40a..d1420bc492 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -42,6 +42,11 @@ namespace Content.IntegrationTests.Tests "/Maps/Shuttles/infiltrator.yml", }; + private static readonly string[] DoNotMapWhitelist = + { + "/Maps/centcomm.yml", + }; + private static readonly string[] GameMaps = { "Dev", @@ -120,6 +125,7 @@ namespace Content.IntegrationTests.Tests var server = pair.Server; var resourceManager = server.ResolveDependency(); + var protoManager = server.ResolveDependency(); var mapFolder = new ResPath("/Maps"); var maps = resourceManager .ContentFindFiles(mapFolder) @@ -151,6 +157,21 @@ namespace Content.IntegrationTests.Tests var postMapInit = meta["postmapinit"].AsBool(); Assert.That(postMapInit, Is.False, $"Map {map.Filename} was saved postmapinit"); + + // testing that maps have nothing with the "DO NOT MAP" suffix + // I do it here because it's basically copy-paste code for the most part + var yamlEntities = root["entities"]; + foreach (var yamlEntity in (YamlSequenceNode)yamlEntities) + { + var protoId = yamlEntity["proto"].AsString(); + protoManager.TryIndex(protoId, out var proto, false); + if (proto is null || proto.EditorSuffix is null) + continue; + if (proto.EditorSuffix.ToUpper().Contains("DO NOT MAP") && !DoNotMapWhitelist.Contains(map.ToString())) + { + Assert.Fail($"\nMap {map} has the DO NOT MAP prototype {proto}"); + } + } } await pair.CleanReturnAsync(); } From d15a770078af35858857078199042eeb84c835ae Mon Sep 17 00:00:00 2001 From: Killerqu00 Date: Wed, 29 Jan 2025 12:22:38 +0100 Subject: [PATCH 019/313] convert it to entity category --- .../Tests/PostMapInitTest.cs | 6 ++-- Resources/Locale/en-US/entity-categories.ftl | 3 ++ .../Catalog/Fills/Lockers/service.yml | 1 + .../Clothing/Head/hardsuit-helmets.yml | 1 + .../Entities/Clothing/Head/helmets.yml | 2 +- .../Entities/Clothing/Head/misc.yml | 5 +-- .../Clothing/OuterClothing/hardsuits.yml | 1 + .../Entities/Clothing/OuterClothing/suits.yml | 3 +- .../Entities/Mobs/Player/silicon.yml | 9 ++--- .../Devices/Circuitboards/Machine/cannons.yml | 5 +++ .../Entities/Objects/Fun/bike_horn.yml | 2 +- .../Prototypes/Entities/Objects/Fun/toys.yml | 2 +- .../Entities/Objects/Misc/paper.yml | 4 +-- .../Entities/Objects/Misc/rubber_stamp.yml | 36 +++++++++---------- .../Medical/handheld_crew_monitor.yml | 2 +- .../Objects/Specific/Medical/healing.yml | 2 +- .../Objects/Specific/Research/disk.yml | 1 + .../Objects/Weapons/Melee/baseball_bat.yml | 2 +- .../Objects/Weapons/Melee/weapon_toolbox.yml | 2 +- .../Machines/Computers/computers.yml | 1 + .../Entities/Structures/Machines/holopad.yml | 3 +- .../Entities/Structures/Shuttles/cannons.yml | 10 +++--- .../Structures/Storage/Closets/closets.yml | 2 +- Resources/Prototypes/Entities/categories.yml | 5 +++ 24 files changed, 64 insertions(+), 46 deletions(-) diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index d1420bc492..906b96ebf0 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -161,15 +161,17 @@ namespace Content.IntegrationTests.Tests // testing that maps have nothing with the "DO NOT MAP" suffix // I do it here because it's basically copy-paste code for the most part var yamlEntities = root["entities"]; + if (!protoManager.TryIndex("DoNotMap", out var dnmCategory)) + return; foreach (var yamlEntity in (YamlSequenceNode)yamlEntities) { var protoId = yamlEntity["proto"].AsString(); protoManager.TryIndex(protoId, out var proto, false); if (proto is null || proto.EditorSuffix is null) continue; - if (proto.EditorSuffix.ToUpper().Contains("DO NOT MAP") && !DoNotMapWhitelist.Contains(map.ToString())) + if (proto.Categories.Contains(dnmCategory) && !DoNotMapWhitelist.Contains(map.ToString())) { - Assert.Fail($"\nMap {map} has the DO NOT MAP prototype {proto}"); + Assert.Fail($"\nMap {map} has the DO NOT MAP prototype {proto.Name}"); } } } diff --git a/Resources/Locale/en-US/entity-categories.ftl b/Resources/Locale/en-US/entity-categories.ftl index 4b6cf87942..a5ed66dd01 100644 --- a/Resources/Locale/en-US/entity-categories.ftl +++ b/Resources/Locale/en-US/entity-categories.ftl @@ -3,3 +3,6 @@ entity-category-name-game-rules = Game Rules entity-category-name-objectives = Objectives entity-category-name-roles = Mind Roles entity-category-name-mapping = Mapping +entity-category-name-donotmap = Do not map + +entity-category-suffix-donotmap = DO NOT MAP diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml index 2d564e0eb0..55b2165dff 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml @@ -133,6 +133,7 @@ id: ClosetJanitorBombFilled parent: ClosetJanitorBomb suffix: DO NOT MAP, Filled + categories: [ DoNotMap ] components: - type: StorageFill contents: diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml index b97df840a7..0c2ffa423d 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml @@ -330,6 +330,7 @@ id: ClothingHeadHelmetHardsuitLuxury #DO NOT MAP - https://github.com/space-wizards/space-station-14/pull/19738#issuecomment-1703486738 name: luxury mining hardsuit helmet description: A refurbished mining hardsuit helmet, fitted with satin cushioning and an extra (non-functioning) antenna, because you're that extra. + categories: [ DoNotMap ] components: - type: Sprite sprite: Clothing/Head/Hardsuits/luxury.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index 65ad2d523e..5fc6dd5a56 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -137,7 +137,7 @@ id: ClothingHeadHelmetJanitorBombSuit name: janitorial bombsuit helmet description: A heavy helmet designed to withstand explosions formed from reactions between chemicals. - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Sprite sprite: Clothing/Head/Helmets/janitor_bombsuit.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Head/misc.yml b/Resources/Prototypes/Entities/Clothing/Head/misc.yml index 254eaf37c8..28fe46e0fa 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/misc.yml @@ -176,7 +176,7 @@ id: ClothingHeadHatCatEars name: cat ears description: "NYAH!" - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Tag tags: [] # ignore "WhitelistChameleon" tag @@ -191,6 +191,7 @@ parent: [ClothingHeadHatCatEars, BaseToggleClothing] id: ClothingHeadHatCatEarsValid suffix: Valid, DO NOT MAP + categories: [ DoNotMap ] components: - type: ToggleClothing action: ActionBecomeValid @@ -222,7 +223,7 @@ id: ClothingHeadHatDogEars name: doggy ears description: Only for good boys. - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Sprite sprite: Clothing/Head/Hats/dogears.rsi diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml index 0e84fca06d..dd51be6be9 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml @@ -447,6 +447,7 @@ id: ClothingOuterHardsuitLuxury #DO NOT MAP - https://github.com/space-wizards/space-station-14/pull/19738#issuecomment-1703486738 name: luxury mining hardsuit description: A refurbished mining hardsuit, fashioned after the Quartermaster's colors. Graphene lining provides less protection, but is much easier to move. + categories: [ DoNotMap ] components: - type: Sprite sprite: Clothing/OuterClothing/Hardsuits/luxury.rsi diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml index f78694a0fa..e6550dc01b 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml @@ -33,7 +33,7 @@ id: ClothingOuterSuitJanitorBomb name: janitorial bomb suit description: A heavy helmet designed to withstand explosions formed from reactions between chemicals. - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Sprite sprite: Clothing/OuterClothing/Suits/janitor_bombsuit.rsi @@ -289,6 +289,7 @@ parent: ClothingOuterSuitCarp id: ClothingOuterHardsuitCarp suffix: Hardsuit, DO NOT MAP + categories: [ DoNotMap ] components: - type: PressureProtection highPressureMultiplier: 0.6 diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 9bb793e47a..5a32e57c42 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -406,8 +406,7 @@ - type: entity id: StationAiBrain parent: PositronicBrain - categories: [ HideSpawnMenu ] - suffix: DO NOT MAP + categories: [ HideSpawnMenu, DoNotMap ] components: - type: Sprite # Once it's in a core it's pretty much an abstract entity at that point. @@ -454,8 +453,7 @@ id: StationAiHolo name: AI eye description: The AI's viewer. - categories: [ HideSpawnMenu ] - suffix: DO NOT MAP + categories: [ HideSpawnMenu, DoNotMap ] components: - type: NoFTL - type: WarpPoint @@ -476,8 +474,7 @@ id: StationAiHoloLocal name: AI hologram description: A holographic representation of an AI. - categories: [ HideSpawnMenu ] - suffix: DO NOT MAP + categories: [ HideSpawnMenu, DoNotMap ] components: - type: Transform anchored: true diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/cannons.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/cannons.yml index 4b7a0ee55a..6c6190c01a 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/cannons.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/cannons.yml @@ -6,6 +6,7 @@ name: LSE-400c "Svalinn machine gun" machine board description: A machine printed circuit board for an LSE-400c "Svalinn machine gun". suffix: DO NOT MAP, Machine Board + categories: [ DoNotMap ] components: - type: Sprite state: security @@ -23,6 +24,7 @@ name: LSE-1200c "Perforator" machine board description: A machine printed circuit board for an LSE-1200c "Perforator". suffix: DO NOT MAP, Machine Board + categories: [ DoNotMap ] components: - type: Sprite state: security @@ -40,6 +42,7 @@ name: EXP-320g "Friendship" machine board description: A machine printed circuit board for an EXP-320g "Friendship". suffix: DO NOT MAP, Machine Board + categories: [ DoNotMap ] components: - type: Sprite state: security @@ -57,6 +60,7 @@ name: EXP-2100g "Duster" machine board description: A machine printed circuit board for an EXP-2100g "Duster". suffix: DO NOT MAP, Machine Board + categories: [ DoNotMap ] components: - type: Sprite state: security @@ -75,6 +79,7 @@ name: PTK-800 "Matter Dematerializer" machine board description: A machine printed circuit board for an PTK-800 "Matter Dematerializer". suffix: DO NOT MAP, Machine Board + categories: [ DoNotMap ] components: - type: Sprite state: security diff --git a/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml b/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml index 7c69aa0901..3e05c0e8ff 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml @@ -91,7 +91,7 @@ parent: BikeHorn id: GoldenBikeHorn name: golden honker - suffix: No mapping + categories: [ DoNotMap ] description: A happy honk prize, pray to the gods for your reward. components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index c5e17c54d3..818cad7774 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -131,7 +131,7 @@ parent: PlushieGhost id: PlushieGhostRevenant name: revenant soft toy - suffix: DO NOT MAP + categories: [ DoNotMap ] description: So soft it almost makes you want to take a nap... components: - type: Item diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index e0862b8842..a1b287b8a7 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -447,7 +447,7 @@ id: BoxFolderCentCom name: CentComm folder parent: BoxFolderBase - suffix: DO NOT MAP + categories: [ DoNotMap ] description: CentComm's miserable little pile of secrets! components: - type: Sprite @@ -609,7 +609,7 @@ id: TraitorCodePaper name: syndicate codeword description: A leaked codeword to possibly get in touch with the Syndicate. - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: TraitorCodePaper diff --git a/Resources/Prototypes/Entities/Objects/Misc/rubber_stamp.yml b/Resources/Prototypes/Entities/Objects/Misc/rubber_stamp.yml index 8707e6fca8..df038d3e2e 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/rubber_stamp.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/rubber_stamp.yml @@ -41,7 +41,7 @@ name: captain's rubber stamp parent: [RubberStampBase, BaseCommandContraband] id: RubberStampCaptain - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-captain @@ -54,7 +54,7 @@ name: CentComm rubber stamp parent: RubberStampBase id: RubberStampCentcom - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-centcom @@ -67,7 +67,7 @@ name: chaplain's rubber stamp parent: RubberStampBase id: RubberStampChaplain - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-chaplain @@ -80,7 +80,7 @@ name: lawyer's rubber stamp parent: RubberStampBase id: RubberStampLawyer - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-lawyer @@ -93,7 +93,7 @@ name: clown's rubber stamp parent: RubberStampBase id: RubberStampClown - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-clown @@ -109,7 +109,7 @@ name: chief engineer's rubber stamp parent: [RubberStampBase, BaseCommandContraband] id: RubberStampCE - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-ce @@ -122,7 +122,7 @@ name: chief medical officer's rubber stamp parent: [RubberStampBase, BaseCommandContraband] id: RubberStampCMO - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-cmo @@ -135,7 +135,7 @@ name: head of personnel's rubber stamp parent: [RubberStampBase, BaseCommandContraband] id: RubberStampHop - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-hop @@ -148,7 +148,7 @@ name: head of security's rubber stamp parent: [RubberStampBase, BaseCommandContraband] id: RubberStampHos - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-hos @@ -161,7 +161,7 @@ name: mime's rubber stamp parent: RubberStampBase id: RubberStampMime - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-mime @@ -175,7 +175,7 @@ name: quartermaster's rubber stamp parent: [RubberStampBase, BaseCommandContraband] id: RubberStampQm - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-qm @@ -188,7 +188,7 @@ name: research director's rubber stamp parent: [RubberStampBase, BaseCommandContraband] id: RubberStampRd - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-rd @@ -213,7 +213,7 @@ name: syndicate rubber stamp parent: [RubberStampBase, BaseSyndicateContraband] id: RubberStampSyndicate - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-syndicate @@ -226,7 +226,7 @@ name: warden's rubber stamp parent: [RubberStampBase, BaseRestrictedContraband] id: RubberStampWarden - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-warden @@ -263,7 +263,7 @@ name: detective's rubber stamp parent: [RubberStampBase, BaseRestrictedContraband] id: RubberStampDetective - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-detective @@ -289,12 +289,12 @@ name: psychologist's rubber stamp parent: RubberStampBase id: RubberStampPsychologist - suffix: DO NOT MAP + categories: [ DoNotMap ] description: A rubber stamp for stamping important documents. Prescribe those treatments! components: - type: Stamp - stampedName: stamp-component-stamped-name-psychologist + stampedName: stamp-component-stamped-name-psychologist stampedColor: "#5B97BC" stampState: "paper_stamp-psychologist" - type: Sprite - state: stamp-psychologist \ No newline at end of file + state: stamp-psychologist diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml index d7a362d725..fc252fd9f5 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml @@ -1,6 +1,6 @@ - type: entity name: handheld crew monitor - suffix: DO NOT MAP + categories: [ DoNotMap ] parent: [ BaseHandheldComputer, BaseGrandTheftContraband ] # CMO-only bud, don't add more. id: HandheldCrewMonitor diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml index 46410a0164..a69d2a1587 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml @@ -324,7 +324,7 @@ id: HealingToolbox name: healing toolbox description: A powerful toolbox imbued with robust energy. It can heal your wounds and fill you with murderous intent. - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Sprite sprite: Objects/Specific/Medical/healing_toolbox.rsi diff --git a/Resources/Prototypes/Entities/Objects/Specific/Research/disk.yml b/Resources/Prototypes/Entities/Objects/Specific/Research/disk.yml index 0cb605cee6..dd556d75f2 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Research/disk.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Research/disk.yml @@ -35,6 +35,7 @@ id: ResearchDiskDebug name: research point disk suffix: DEBUG, DO NOT MAP + categories: [ DoNotMap ] description: A disk for the R&D server containing all the points you could ever need. components: - type: ResearchDisk diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml index 551fedfd90..7aee3e5876 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml @@ -63,7 +63,7 @@ parent: BaseBallBat id: WeaponMeleeKnockbackStick description: And then he spleefed all over. - suffix: Do not map + categories: [ DoNotMap ] components: - type: MeleeThrowOnHit - type: MeleeWeapon diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/weapon_toolbox.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/weapon_toolbox.yml index 240a17a0a4..003967d33d 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/weapon_toolbox.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/weapon_toolbox.yml @@ -3,7 +3,7 @@ id: WeaponMeleeToolboxRobust name: robust toolbox description: A tider's weapon. - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Sprite sprite: Objects/Tools/Toolboxes/toolbox_red.rsi diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index 1180b37096..fd8090a369 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -1192,6 +1192,7 @@ # Putting this as "DO NOT MAP" until the performance issues are fixed. # And it's more fleshed out. suffix: TESTING, DO NOT MAP + categories: [ DoNotMap ] components: - type: Sprite layers: diff --git a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml index c95609c55a..de7cfe3e27 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml @@ -150,8 +150,7 @@ - type: entity id: HolopadHologram name: hologram - categories: [ HideSpawnMenu ] - suffix: DO NOT MAP + categories: [ HideSpawnMenu, DoNotMap ] components: - type: Transform anchored: true diff --git a/Resources/Prototypes/Entities/Structures/Shuttles/cannons.yml b/Resources/Prototypes/Entities/Structures/Shuttles/cannons.yml index 47ac2ae7c9..030be38a91 100644 --- a/Resources/Prototypes/Entities/Structures/Shuttles/cannons.yml +++ b/Resources/Prototypes/Entities/Structures/Shuttles/cannons.yml @@ -61,7 +61,7 @@ parent: [ ShuttleGunBase, ConstructibleMachine] name: LSE-400c "Svalinn machine gun" description: Basic stationary laser unit. Effective against live targets and electronics. Uses regular power cells to fire, and has an extremely high rate of fire. - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Sprite sprite: Objects/Weapons/Guns/Shuttles/laser.rsi @@ -115,7 +115,7 @@ parent: [ ShuttleGunBase, ConstructibleMachine] name: LSE-1200c "Perforator" description: Advanced stationary laser unit. Annihilates electronics and is extremely dangerous to health! Uses the power cage to fire. - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Sprite sprite: Objects/Weapons/Guns/Shuttles/laser.rsi @@ -171,7 +171,7 @@ parent: [ShuttleGunBase, ConstructibleMachine] name: EXP-320g "Friendship" description: A small stationary grenade launcher that holds 2 grenades. - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Sprite sprite: Objects/Weapons/Guns/Shuttles/launcher.rsi @@ -225,7 +225,7 @@ parent: [ShuttleGunBase, ConstructibleMachine] name: EXP-2100g "Duster" description: A powerful stationary grenade launcher. A cartridge is required for use. - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Sprite sprite: Objects/Weapons/Guns/Shuttles/launcher.rsi @@ -323,7 +323,7 @@ parent: [ ShuttleGunBase, ConstructibleMachine] name: PTK-800 "Matter Dematerializer" description: Salvage stationary mining turret. Gradually accumulates charges on its own, extremely effective for asteroid excavation. - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Sprite sprite: Objects/Weapons/Guns/Shuttles/kinetic.rsi diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml index 8c8c493aa3..778c80e6fb 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml @@ -82,7 +82,7 @@ name: janitorial bomb suit closet parent: ClosetSteelBase description: It's a storage unit for janitorial explosion-protective suits. - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Appearance - type: EntityStorageVisuals diff --git a/Resources/Prototypes/Entities/categories.yml b/Resources/Prototypes/Entities/categories.yml index dffc6b6aaf..5b8e794309 100644 --- a/Resources/Prototypes/Entities/categories.yml +++ b/Resources/Prototypes/Entities/categories.yml @@ -22,3 +22,8 @@ - type: entityCategory id: Mapping name: entity-category-name-mapping + +- type: entityCategory + id: DoNotMap + name: entity-category-name-donotmap + suffix: entity-category-suffix-donotmap From 32f7ea6c29228a65a07341537c4ec7df3eeb299a Mon Sep 17 00:00:00 2001 From: Killerqu00 Date: Wed, 29 Jan 2025 13:24:14 +0100 Subject: [PATCH 020/313] slight text adjustment --- Content.IntegrationTests/Tests/PostMapInitTest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index 906b96ebf0..e18271af53 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -158,7 +158,7 @@ namespace Content.IntegrationTests.Tests Assert.That(postMapInit, Is.False, $"Map {map.Filename} was saved postmapinit"); - // testing that maps have nothing with the "DO NOT MAP" suffix + // testing that maps have nothing with the DoNotMap entity category // I do it here because it's basically copy-paste code for the most part var yamlEntities = root["entities"]; if (!protoManager.TryIndex("DoNotMap", out var dnmCategory)) @@ -171,7 +171,7 @@ namespace Content.IntegrationTests.Tests continue; if (proto.Categories.Contains(dnmCategory) && !DoNotMapWhitelist.Contains(map.ToString())) { - Assert.Fail($"\nMap {map} has the DO NOT MAP prototype {proto.Name}"); + Assert.Fail($"\nMap {map} has the DO NOT MAP category in prototype {proto.Name}"); } } } From abcd68273b1be39aa576813771d873a1294ac309 Mon Sep 17 00:00:00 2001 From: Zachary Higgs Date: Thu, 30 Jan 2025 15:14:53 -0400 Subject: [PATCH 021/313] Fake Mindshield Implant cleans itself up on draw (#34718) * Implant cleans itself up on draw - add an event to relay to an implant that it's being drawn, to tell it to clean itself up - Give Fake mindshield a cleanup method, to remove the component added fixing a problem where the icon persists after implant draw * Remove extra whitespace * CR Switch to using ContainerRemovedMessage --- .../FakeMindShield/SharedFakeMindShieldImplantSystem.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindShieldImplantSystem.cs b/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindShieldImplantSystem.cs index 8887025e3a..cb48ef6997 100644 --- a/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindShieldImplantSystem.cs +++ b/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindShieldImplantSystem.cs @@ -2,6 +2,7 @@ using Content.Shared.Implants; using Content.Shared.Implants.Components; using Content.Shared.Mindshield.Components; +using Robust.Shared.Containers; namespace Content.Shared.Mindshield.FakeMindShield; @@ -13,7 +14,9 @@ public sealed class SharedFakeMindShieldImplantSystem : EntitySystem base.Initialize(); SubscribeLocalEvent(OnFakeMindShieldToggle); SubscribeLocalEvent(ImplantCheck); + SubscribeLocalEvent(ImplantDraw); } + /// /// Raise the Action of a Implanted user toggling their implant to the FakeMindshieldComponent on their entity /// @@ -33,4 +36,9 @@ public sealed class SharedFakeMindShieldImplantSystem : EntitySystem if (ev.Implanted != null) EnsureComp(ev.Implanted.Value); } + + private void ImplantDraw(Entity ent, ref EntGotRemovedFromContainerMessage ev) + { + RemComp(ev.Container.Owner); + } } From 6565ba52b2ef3ec4f890f74606aa83c888b30229 Mon Sep 17 00:00:00 2001 From: keronshb <54602815+keronshb@users.noreply.github.com> Date: Thu, 30 Jan 2025 19:10:35 -0500 Subject: [PATCH 022/313] Void's Applause (#34591) * Adds single clap emote * Adds missing single clap loc * Adds void blink effects, sound, and sprite * Adds VoidApplauseEvent and implements it into the Magic System and Grimoire * Removes commented Spawn code in Shared Magic System. Adds comments to replace pointlight with a negative light in the future. * Makes spells Mono * Changes to swap positions. * Makes Void Applause target body only * Update Content.Shared/Magic/Events/VoidApplauseSpellEvent.cs Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * Update Content.Client/Magic/MagicSystem.cs Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * Update Resources/Audio/Effects/Emotes/attributions.yml Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * Update Resources/Prototypes/SoundCollections/emotes.yml Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * Update Content.Shared/Magic/Events/VoidApplauseSpellEvent.cs Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * Removes duplicate effect spawning from server * Puts Void Applause effect on server, lets lizards hear clap * Adds single clap to diona --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Content.Client/Magic/MagicSystem.cs | 5 +++- Content.Server/Magic/MagicSystem.cs | 13 +++++++++ .../Magic/Events/VoidApplauseSpellEvent.cs | 24 ++++++++++++++++ Content.Shared/Magic/SharedMagicSystem.cs | 15 ++++++++-- .../Audio/Effects/Emotes/attributions.yml | 5 ++++ .../Audio/Effects/Emotes/clap-single.ogg | Bin 0 -> 18370 bytes Resources/Audio/Magic/Eldritch/voidblink.ogg | Bin 0 -> 63313 bytes Resources/Audio/Magic/attributions.yml | 6 ++++ Resources/Locale/en-US/chat/emotes.ftl | 2 ++ .../Locale/en-US/store/spellbook-catalog.ftl | 3 ++ .../Prototypes/Catalog/spellbook_catalog.yml | 14 +++++++++ .../Prototypes/Entities/Effects/eldritch.yml | 25 ++++++++++++++++ .../Prototypes/Magic/teleport_spells.yml | 25 ++++++++++++++++ .../Prototypes/SoundCollections/emotes.yml | 5 ++++ .../Prototypes/Voice/speech_emote_sounds.yml | 7 +++++ Resources/Prototypes/Voice/speech_emotes.yml | 17 ++++++++++- .../Eldritch/eldritch_actions.rsi/meta.json | 27 ++++++++++++++++++ .../eldritch_actions.rsi/voidblink.png | Bin 0 -> 1699 bytes 18 files changed, 189 insertions(+), 4 deletions(-) create mode 100644 Content.Shared/Magic/Events/VoidApplauseSpellEvent.cs create mode 100644 Resources/Audio/Effects/Emotes/clap-single.ogg create mode 100644 Resources/Audio/Magic/Eldritch/voidblink.ogg create mode 100644 Resources/Prototypes/Entities/Effects/eldritch.yml create mode 100644 Resources/Textures/Objects/Magic/Eldritch/eldritch_actions.rsi/meta.json create mode 100644 Resources/Textures/Objects/Magic/Eldritch/eldritch_actions.rsi/voidblink.png diff --git a/Content.Client/Magic/MagicSystem.cs b/Content.Client/Magic/MagicSystem.cs index 03aa9eb56d..086a0f7b42 100644 --- a/Content.Client/Magic/MagicSystem.cs +++ b/Content.Client/Magic/MagicSystem.cs @@ -1,5 +1,8 @@ using Content.Shared.Magic; +using Content.Shared.Magic.Events; namespace Content.Client.Magic; -public sealed class MagicSystem : SharedMagicSystem; +public sealed class MagicSystem : SharedMagicSystem +{ +} diff --git a/Content.Server/Magic/MagicSystem.cs b/Content.Server/Magic/MagicSystem.cs index 2cf5136b42..a7e5e96786 100644 --- a/Content.Server/Magic/MagicSystem.cs +++ b/Content.Server/Magic/MagicSystem.cs @@ -19,4 +19,17 @@ public sealed class MagicSystem : SharedMagicSystem { _chat.TrySendInGameICMessage(args.Performer, Loc.GetString(args.Speech), InGameICChatType.Speak, false); } + + public override void OnVoidApplause(VoidApplauseSpellEvent ev) + { + base.OnVoidApplause(ev); + + _chat.TryEmoteWithChat(ev.Performer, ev.Emote); + + var perfXForm = Transform(ev.Performer); + var targetXForm = Transform(ev.Target); + + Spawn(ev.Effect, perfXForm.Coordinates); + Spawn(ev.Effect, targetXForm.Coordinates); + } } diff --git a/Content.Shared/Magic/Events/VoidApplauseSpellEvent.cs b/Content.Shared/Magic/Events/VoidApplauseSpellEvent.cs new file mode 100644 index 0000000000..c134790da8 --- /dev/null +++ b/Content.Shared/Magic/Events/VoidApplauseSpellEvent.cs @@ -0,0 +1,24 @@ +using Content.Shared.Actions; +using Content.Shared.Chat.Prototypes; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.Magic.Events; + +public sealed partial class VoidApplauseSpellEvent : EntityTargetActionEvent, ISpeakSpell +{ + [DataField] + public string? Speech { get; private set; } + + /// + /// Emote to use. + /// + [DataField] + public ProtoId Emote = "ClapSingle"; + + /// + /// Visual effect entity that is spawned at both the user's and the target's location. + /// + [DataField] + public EntProtoId Effect = "EffectVoidBlink"; +} diff --git a/Content.Shared/Magic/SharedMagicSystem.cs b/Content.Shared/Magic/SharedMagicSystem.cs index acedaf05f6..fe033f2498 100644 --- a/Content.Shared/Magic/SharedMagicSystem.cs +++ b/Content.Shared/Magic/SharedMagicSystem.cs @@ -80,6 +80,7 @@ public abstract class SharedMagicSystem : EntitySystem SubscribeLocalEvent(OnChargeSpell); SubscribeLocalEvent(OnRandomGlobalSpawnSpell); SubscribeLocalEvent(OnMindSwapSpell); + SubscribeLocalEvent(OnVoidApplause); // Spell wishlist // A wishlish of spells that I'd like to implement or planning on implementing in a future PR @@ -402,8 +403,7 @@ public abstract class SharedMagicSystem : EntitySystem return; var transform = Transform(args.Performer); - - if (transform.MapID != args.Target.GetMapId(EntityManager) || !_interaction.InRangeUnobstructed(args.Performer, args.Target, range: 1000F, collisionMask: CollisionGroup.Opaque, popup: true)) + if (transform.MapID != _transform.GetMapId(args.Target) || !_interaction.InRangeUnobstructed(args.Performer, args.Target, range: 1000F, collisionMask: CollisionGroup.Opaque, popup: true)) return; _transform.SetCoordinates(args.Performer, args.Target); @@ -411,6 +411,17 @@ public abstract class SharedMagicSystem : EntitySystem Speak(args); args.Handled = true; } + + public virtual void OnVoidApplause(VoidApplauseSpellEvent ev) + { + if (ev.Handled || !PassesSpellPrerequisites(ev.Action, ev.Performer)) + return; + + ev.Handled = true; + Speak(ev); + + _transform.SwapPositions(ev.Performer, ev.Target); + } // End Teleport Spells #endregion #region Spell Helpers diff --git a/Resources/Audio/Effects/Emotes/attributions.yml b/Resources/Audio/Effects/Emotes/attributions.yml index 0c62b48366..6b580a930b 100644 --- a/Resources/Audio/Effects/Emotes/attributions.yml +++ b/Resources/Audio/Effects/Emotes/attributions.yml @@ -6,6 +6,11 @@ license: "CC-BY-SA-3.0" copyright: "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432" source: "https://github.com/tgstation/tgstation" +- files: + - clap-single.ogg + license: "CC-BY-SA-3.0" + copyright: "Taken from Citadel Station at https://github.com/Citadel-Station-13/Citadel-Station-13/commit/e145bdafe83e2cf38d148c39f073da5e7b0cb456" + source: "https://github.com/Citadel-Station-13/Citadel-Station-13" - files: - snap1.ogg - snap2.ogg diff --git a/Resources/Audio/Effects/Emotes/clap-single.ogg b/Resources/Audio/Effects/Emotes/clap-single.ogg new file mode 100644 index 0000000000000000000000000000000000000000..94d8b10107eef87a4c35b7b284e86a7eca82cc7b GIT binary patch literal 18370 zcmb?@bzGFs*XV*MAp+7ZD7Ey`or2QR4bri6Hwp+M-Q67v(hVxIbazX4m-Kzm?=RlZ z{o}rW+=pQ}Gv~~iIXUwT3kqgt${z7qJwX4ij3_va@jxIXkO-YLcD1pRtTfn!;!U{2 zD(~AK+B~{9XokzYn}TP?P`UivRc$$GFg40E&Bq`>MItDa0a!|JDL>)@Pjub_C;QR%gpXz|lw)s~q3eX2YOi*Veu2cnS?=Y#tG1VY8lOm4b zD7(ZchukQqwW_PLs=D*I8cQKl?sSrsic{&1)9J0z zdG;?OJeVB>62aljG3R8Q7izt?Zt=86P0@=ry`OSgFwH z4!RF#t)0M?Ybj9s{t!O0jgj)9L?%-(_Yjrr4ih z4Kp!N!9NgDPVAx7e^@<0J%8Ot1O)nEKS39i9kc0WALx(|eoG%q<76A1v&!2ItDZ}> z`N3O|qC9Z9n(FBHM{)`f=)b*K=`&>@p+gtAAkzleh$~l{t3re!!MAHOn)pf@LvP}6FCz0xSdg?Qqfd0m5lu(zziG;r>_T3 zRR-})hViWj&#Z>ebrjB26!27)Idw->A3|na)kM|Bdbakzi^+dQPV`G~^h@6GSG>_k z{}nlOUzT~oS2d!kEu!g?;w>AJcem1+x3e++XXL#99BBSI+&nm$?o0OnuKYU){~bAR z9H=^#7=g&?_#ct;4MHjoL{lZB%qYj;i2xv`BCf=!iX7g58vuwLMcm#BQmGL@?_`RA z>anR6aX10W|3v{58wUarfk3EmLZeVfbd`n?rqJ6SUR2lx1vn75dd@RHRutV5Bi~W_ zIa0+`th5Ard!{E#6x$O+h@>h8xVwW;TZyja!FWg@MIhY7K0|&I8up2HQM?X?pb!Oo zhCHG49}-2O{-nZ&LK*i?=_jFoB!CTw6_X+hcqjcf4{&x6GVuL0YbX*AK_nFf%8qpW z0zttu!s0_Ia>9}>21fAGQafTu(^2PPNlOC=woWSJ0V!1KTwH0XBL7Gwy1cx1($YmW zgv!!PE?7!vc>uzKDGyg$8Vm+&;Q~rb@`X5#g2upD7gjVRo@c`;RU3We1W@}q!1DQN+# ziq{H(X-&z)GYJLy0Dq7wssVP| zRL2MQH50rWfBN$BCiph~^icz<-XMKg!2`4dKw@C(yfLkitNzgC}cQKIjb4vX=4#^w6gT1Aq23Lo>0b) zDbj&JyMTIkzlqUt7*m5HkwG9ZpvO>1ek`B{IN-^EmW@Kec@J?3k2M6UKMRe@xgWg79}fpObftbNxvq49Y|#QG3G!CVtBJM@9tDw}12@qRWbZ9(y%9LSg%|jDd8uTGS08umfuyDARHyI_kK1;=ELU><5pI2XbAWijpN$Z69EvxM(01xL^ZK zK&_=UK(2#6NC6`Qg5wJlAjKZQ1@O-aEl0pEfV7+&sp8`Y+u-=QLm~|BL`q^qzD|Bd*wAZgTp(Sblif9&}@4&ShVNS*xSD>NdSzwx#7u>Jir zYcLQUf4NcpYvjL}|3|35>-?+He+l~kuP+N!*o%(*Z4;HmOhbx~f%F;kpBTgkBCb8r zF%;OM^5V6iiGINR)VYyLRyCZ`q9|EF_61^vkbRRbPX)-i;~LO#qQBV^9|)aJ3^4}q z!}d|Lo(@IM%8geFflVZOmI(q0T88Od!?PbqL85fv8hmJZ&4m^egZd$j3SQ^{J{T0O z70NlG13hTDSdanIP@>Tu06Fdf#75x_>kFO$0^ca~0V)R&o>l;7=->l%&`?7N9Ta?k zfTm$-!^DCk0Hu3I)BxW74@n&%@IDBTJT#wzy29*0B08+mk$k;hM?RA%e8c((wcRzYRe4mT7gn%O0GOoZWG~nLEAtpcQndH?n zI1M>lL7+>|pA7k!;^-)}SZ=wP-f*L<3Ey;?@T?P_RwLWWEPpYHc=G+!%z^+^jns|e z^={{5|4<8JWm5->C-R7=5gttGH3&Cp8} zb+Lr#9^MU44p7)&saS0tXJu2=6HklT=B}>pGt$3`+#oG=h!oy|Z2~@Sc?i`;x{9=PCX2B5~HbjKCM(N;q;qcZ|cVi|4GZ` zxea1HKGtm7O^r_4D5MX`V6A&$H_8Fk(Ra3=5+6R^7+)_d=D+KkS!=Xp*o#sx>II)$j(T^z@_Q9r9d=K;!DGSkofn@M5Com6{#BtbXeAHTQ zk~m79;rjFh<>N;THbe%lF;C4JGS>irpEHdE`k356I{N`ZG4Q} zj?*uy#`-d!fAm`3<45Ak1Wq8xbz({5TEAgk(YlbtiYL}pIWzd00|aca@k z&(K>u+xr+aDBXM?uyJ`b8h=MQ*k+F(?OH>|Jtp5(A^6+E^aa7ENSV-@gJ<1Yv03D^ z-9(M1KGkKA6tbhi%iYtVUw$EbJsiL0fs`Ff-heQ04dY+-yiBikZxA|2PS`0SlH>RN z9oFVEQI&od-%`0yW_#~JakXG%R4=??P#1GORP!1#t2*Yv?S*Q=iUFTUkk2X@2+cQYBbSynQEmIq%-lp+pARKCAI|L_PeR$NzRHxx!Vc{U$e!Po_e;n z@S2(IdHy-e0{tPoU<3j3d7P|X{YAe=ttZ@_le<2xrX3CJpRUF;(#znnYe9QWeXGra zXXj(rcIyI6jxz@XliQ{{g{El8EJxFRCU8Tq zY(b}c@8XQjt+uLKwK>Sed-OC~wAu*Br<5ya zIFD%fp|vBFr1muFI)WP^g7o``5g2Uk@l{oyYDzY;Y#m|uFgf8~nOs5;i0^F2v_4`Q z6B7q-rA~jcvuMG$=gnP_V8Wzi(CnqVutE;%8FsQ(IqgJx{J6pHq_ip138o{2iraX+ zcv`T|BGqaj=Y{6AsSKv_eY1mnLp!HXBY7dGyvK{O%F6B?yOy@xL6XUx?-u97U691O zu~T!e%bCGgWzSj8)XHZKHuq@(P&SSDQmDG%>_>h4-|cVRSpb{0+g zGnR7O^(dcTbO*b}RW>~VUvihVnw4X1Y`(}-aXZi>Qp_F_agy|`<}=y3Yd?j>{eXDR zE(o36@wJ-6g3UbF*E90tf-ZN?p(r60G8ESym99kC{^wN~tFN9fI{ezY9vF_ZuQt0A z@{sb>*?U|myRuxOY(&3f@^~t(rKhd45Lvx(MW}upHRbH|VvdZjH1U4d$J75ADy8LV z63_IVi074(3E3&0bZYvopkz_mIgJVrU;YXAnDru2P3dLE*RWi4e4!^>?T!l9ziAII ztp5^FRvGh#Za;(`YscmlJS)FX2 z+tmvsn1ZEaCuZEyyABe^*35=SnD;CmD=;f{UC_rIeb2UP1@Fx3VMOq6TynPgLVMP^ zilayE8^+!~cDA;2zWCM`kWRnPc`xBnKg`SrK@J=GmQ~O6YIf!njlxOLhq_G)5L>S% zQyW#gm#7Tf7UEX18H5``XYH@OEbmm7J$Ql-kZDpHD?V=%2AO0M2St0Fl}0tN8T}w^ zRuCAx`s&IrH7WMzaSs!)MZSr ze6w*^N8Vqfb@tv#RB=1^>Rg!I&MR>u=y<1L<$JJs&6jZHl&)3ETHqAZT*@bhBoS(% zVb-nFi-5j1qoJ9`VZKFUHn3H6qm51Sr0SRN5nR_&P;*%R+|u&BEDQ2JPdx>cMZ@br zWQG3sX68XtHj?6R?|iXQGiiNY3c5@tci!5$)IHw*z+x>SBm2{9<;mIwRb!_Y4kZkH zT7K{}s;`}>dabw8c-ib5RrP{cv2MG*p}L;Sr7<}>P1YCZwn4$3GYN@lFKzo`_qx)* zk+^oEdp5%?tU4j53r@267JS+E#>Aby6mpwQU%LXHDu_+T??)_+))UF!(@Q2vG5JU? z9N3v`S>hE1LNS~m_;d?z& ze1K&+N_q{$K3#jORN5=Loz=<}*hH&-32uno^5~}8V&N2&owkj2AguFbhmMz+M%}%e zxjQhaKE{DF&fu8J)ycJ0cdmRPNH58MlE0{UC+&TzN437Ej13jHA1`rtqbW|!fEjAA z^m(+!TVu3?tHx+yn&_jR$d)^9?-MbeL2Lc#{@SXE3ix=59QqEbOr%xm%BQbe-^35N z0^$Qxv@sjvHFyiZm)zvR7YbOS^&Y$0@S}NgYA^8GK^`;W0CGK{5NqS#~vk?zJI~k8~=Qzv#7NTh5 z{myOQQ@(PO(0b=pZnmNvRaC(jzUS!6jL2<5c&FO3zjPq~{%xhFaN<>X=VuBP zLu1lfiQ%C=R${XX2)jz!jzH#|atwaO$Q?b(4_9q8j_%0Ra_A;K>uYOo&H1#x6#~W= zW7#~lH-e$+!)-!>P9HYPZcRz)^H9-x1PcjYT?UD5C%&9FD-OO@_53vt`-p925r5PQqG# zcSp7{QL=12DX)?u-dl-csg>K2sf!S=@4SGH!M@)zgSlnoOoog!G_%G5qm}5Z(Rf zT9uWM?P%r^CSF_{x5@9)yBaRrqs=wB64z1T+GsZhtFS?7WgF5w_~%1=AtQXh1g=*~ zw~tj~JP(hG+SZ04;9$=6=m?%E3%LHYgLy_-PsI&pG0x<1+lq2?&UpJTGx`YU=)}sg zz_!k3yo2U(RIzFLG1BUa-k`l=fN+6t@i_2n|1kk~2e;*XZO0SnyLu>Q$vBsne+s`){dHN>91(*m zL;)pW2AOcZyHsR%;FIDA_{%C$Uw<$6G44ub26=PlI~_D^p6FTcn5_?2uUulD&hsxU zOFXr*o8-cz>uq9yT+MUv#vF4fZ!3X7PZp|oln7(WkZV8I4nbKX4A>e=@4Iyz#82M7 zpdo1EQV%vRJ;^#+tu*RxrNOaJP5nVy86WAE82v@Xnuc-xiY5wHz7*4W1v4iKW{4I% zEhr0U@Bb7^9!P3fG#$9Iu(}kDU0GDeD7K);Dj!Z8J*=Tg1AV~|hQ{t06MkzY=&-gQ z0U<~!IUg#IGoJ6=`q*`BX%qXqNA7H4hDu-{yv2=GQ$`$jrDoinmmk z6qN|aqxW7M>a-V?$7#6M?CLJC@sk4>wle{;uc7An8pE8zckCae+RAtY{Y2yQ!+Sng zYV;GVw=;`RCiRBPe2r;u!w!WHY|Q1->uxm8vGhr$q@-=- zU~E4xN5B4MkkUL6o#^SbP^r(nwz55PCF#OF9WU3S4<8TS(X_5A`3hhYH5A)FgKaaP9%8gvQY!MZT6AbT+JSx% zc<=3K{+2(1hm`3<;%|3PAJL>4``>9>j!#OhY>Gi&J}>&w{pp3junP0c*II@piL`fG z7d$(cWAh0?QZ2dz{h?`@rky{dQP#!kw&;V;{cR ztFna{xhS;>qo+6Lxu?K2BTMtgtBL-LzM5h2N?g}u8THUR&D!rvWT##hSEPu@2*`tW zzR2p5f=ByxUk~d-2k%B~EtGko(yp`_VHo(z3%9To1uKPXv$H9aW}yq=m8Pc~t8muk zjV36o`|SNX?vTASw`zJfChy?|%=Mn-t{!}N`)YUSM|^HLk>p0wM9giF95qi+0>w{fT* z69@cOcY@)ln2bKwZGiK2n(3Oc%dc!9&&2x8q*XOk1x78wtzyhhIjjxS5kY1yxzd-} zBe{=V$C^hkXnMmvBc=J;$t+4esbB5vHWxM#2EfvYkJrlFB2!8`jzXgty5IUe`mktH zs106;1Zy$t+SE+BL4{$^qMbWL+q25$`JAoGjbC1awWHC)s!$k%I`rHU(^k|lUHgE& zmVdJU$w3+{yDp+AyV~32&vgWX$m{=HM?3;RGUJ|ooZkD6`}X^~`_lW0`-c0kz*qg3 zA6F{Rx|9oo?gx!Nzds%!d7*b6U;e_T#jMj2lSBHY^{SU{9p29r&74Z{DOpTH;-|S} z#$KIm@44SeIJ<>CTN+Q(Z!PdsE1q$~7is&{aH+rAs<#-nmXxu0M8(%27{*)GEQD}U z6{F&NW4bUX>@sIiapoqN_;_zR#K^3vxBwajS#-Ys+@~&ezW9s=|MUGp`TZS_>*Yur zWF-CkG<#w)LbVMlV5nzyQFx$?G5dx2cUZfb+u`e2pLf{uycdT%rSJU0pUO6 z(J%~09Oa%#*GZBhQdK)IH)EcZ982?GvX-(cfTXRYG&N`FWVG4DB=NjrAGFTM=zeNH zZ=5VEMc?W*$3?|3naIY|7(Za@-9E*e&Y7E#_gG@9eRoY%ZJ*|o|Lj@!pd2%Je&wvc z;cWFt*1p!?`VAH7Oz2H4*dQ#%c`x*K!a+q+x-%VWE#x|MIqfA`?#nb>9ML{bj+Tg-2F5>^_+huQE3FJ|U`cY*{Nn^=G;tGjRFCToz%Ee?;xcKo^6}fNS_1)ED zhjy^c?F%1X+uB6-b|>%KSpIJbC>!vZBbIm3cnHNVa$Z}mzTNInk~^z=(GR9Zg%g|#sLVKVV$S&o!<7r$0qiR zoX+`6%Wq|YkS_Yi462JYhB1QYN1atceM-u|r3ei#uZvRp<(PQl{ie^UJ`jiWFM0M% zNrn=H+T=efYb7%%KvZm#>fo`8klrfbMItb-eX|Jlty3A1FwxT#j+;KayE*gp=xFnv zP@iMi+DZ$h7aQ9|(hqezl5=rZbL>^oXtB?P&{&v*L3-6y{?wYt`2EOCG!4wAY6-Wr zA0aIE6j@v`9zJRFr~$@ap`$J};tIJeuand)T9QgGyn|e#>V5CFq9@nTHG79*B-RJk zvlNsrlw-9fOJtJebr_@%bvh7M;suM~P0jJ-YQZ^lMgFvnr6)Li7>;nBl+23|0ysr}$J|CIrlYZo%&M>xO*}u6k>ybNNjVCdK>0hlb6rbpJ)Q`+p6^xlr zV*CiTt^9QtKj__1R2=M|`e_$_(%^dN;5{^wyfAz#bBB8FOpwOm8#DgoD?9CuQH^oK z_VOfm4&qhfDet!Qby>nf)ERyj( zB%@_bF3o8<%j%`JFhls_5=f}JDwf)mSFPj0f-XNz{q&oNs~VbJ>*%dcS*N(K_bYVw zFl&_)>}zs%91Wmw=RyR@rkJ1DH8(ull<}#Gj71S0l=CwgDIXq+-`-eTsKAJzgfDTV(I!?7Vza^``2=2By8T1j$a;<`~0tNv&^W zzzTlGXE07oEVfzNFnK|*)@&#~B9BZQfDAfx!nu;uw-ngg&RH#WZq9RP#adyD5q77n z6i9%QG0&c-)s&Rv9KDuuRGJufjtsy!XO2kCRJv(YEC&O*(EgkNf_}|1DVDYm#%5yaVRE7A7mbTKF7+1z9dhGSkb_j8T*|5Rc#2FMsdCAgx%2x69a2;1Mk|%x5!AezknO3^y*jNmHKM^*Tvt3 z1SeP%dN8jq`LFykNZpMJP?mcwU~rqBeR&(43=VDh%F}^3m%1eWs-{|U^ml%c&zhD? zoK^S$dF{GUaky!SW;dUK`@!^SJnZa1KJ=u}zjgH@i8DmrOMtKB8LOn6+*_TQn~z27 z7p}o)RMBw;Lo``qh^%^Bo?RW?or-T8N}JD+wmuV3R`ZC&>?%s=#xFf$di>$MB{*Wa z{`ex+>`u2HCv3HBIz55JY7H~}^@;-5z)^5t?veg*4|Lx5r7{NdiyIPQGDq0wlF~+3 z1;vGPil@PE_lMGTK;+s_6Q{n`LleHJYkkL?53EfoY!sOsj}lP6hmudWi#q4(xLe^e%+KmJi;zKXyP9`fJ3UWIe=gPh-JmQ#0I=GaBAUWCJM zWF>c2PSS3g(h7*e?Y=kF|I(UHwPK=+OSo#(vX4!1k4IDAn6%z+5RogzCqTb*EZ88A zY1kD1gub}o1$`E$?=R+YJ~S{})+S0gS5$a>JMl{1M#035`R?KydL2(|@;)mbdY`tzxa64NVUSE%2o&t6a6l>X&JiekUh3vgoMKjPBi&Nc-@d zy={B+9cZ+;Ydo(OPwat>L66rvwi zmOr@5*BTc~a}lGhgG+l1D*01;t_>-|q9(>%ndg}>Bh+W@m)GjIbZmAb-WY|k_B+%6 zToCI>%~cRDbZt5J%JX=`5fI*zGS6X?$RuXFuE7_twb|RFk)ph{)l`Th^7uKZ{@F}6 zFJDmczL;)!y=OM|@D_;ykL7+A0_M>SGwqaqQ?s|MIH!E&jb4MwLX>ToFx93FlMlV^ zJVRq1ciXh=*8QYwk5SFp$<9%FdPQh0go?lw@6C$&!N5UNgRl8M2M@Byz1!XoKQ(?= z^Z_+WV+Vz$Z&QjUgDh3O@Aj%V`}|2P&J!rfZ90EfKD$@G!<1oE3Q^ms@2e@hYaE|+ z91YTq$GZI#b%Y~2s$<50cbQZpdH93SEbp$(arhYJ^qcCNiVswBJR+M54C00bLX5pz ziNjRSW2)Fmi4Te~{JPZ13P)Yv?(dp_x#VWeY!-I&*tVG3`>k;@QRv_;k|!Xa>PNrF zs^s1$n^$yk&i#y`N`Poy`!`gVGV8;*kWqFF@;6W#pmCmLWpG;mc@4HS$iVr}D{Lq1 z82gG-3xPdWn|Hjum;U2j$5-P0`yM_o?gc7sI}Mrp&(YyrUkQ1&Mw)xejGw+4e;*(r zSlL&GjiWe`>n^LkPIiB2vJw>$1Q z_8)C+OsalI5GfehOyHcklR;sak}K~p>SHcgNiG@o{l#kiJBoF#NObHjbfIaGZnkAJ zIjb&82dcc@X18L;m6LKh8yEJaCGC#%#{KoV=Q1OTgtC1BtYk7zbw~QF%yPx`m6ObN z$aCvWTbtj}TsN#jcQ=z5Z3Q|rqYc>ydYVD8WpGFui5b+8)HgX+xpN%;OKu?D|Hd~cYAmZ3roHTajg5 zibkZ0;w4%V&qfrg&e_$tq!^N|UZG8xyfi&u(6CV}S+!qR+_$19I$<(eA9}ySr(Zew zLVV*L?~C6MPR52!-IFJtN-+r~gbQs_Mg5zSRwZ*ey!M#(CGn{!_+`)btlw&16>6sC zrj!)HF0ZKE+4R)DtMXDKXmWfUKur*^KzgPG)o;}Pbl5CjvS9+V?v&{{lnSvHKc%L5 zSrsl=DWMf)CY=q{e}Y{S-$k_DRNJUE;XiG&kOvwf(kb+5T+nb>{G~bOOi6ArU{zjO z^j?y5t|7Y9J2(@6w+}Cd1%K{_vCrEsSElj4o@L}PtVMvtb|LZTETeh1pNO=Hkkp8~ z^}^$;rBCoYX35leT!`ux*=r74C+c(Zm{yzP9WLpJaBufr8!MX8BB3(LX$0d0rkgSS zj&HM@j2+wV(FXl7{xpShCuj<=TkAj=achhJ^O8|HO@SM;i#GY*HXi#VGI!yE=E7Cd zDws|_i{`>_v#K1v(~Z~u4h7-Ts}t4kUArETM!&-8m(B{himbF3M{@+}mg(g_n0dIW zm^Y3WmwXa6s&C&eoEE>0R3i>=kjZ8#C#41s9PFmxN`F$>I)lC6-JEskVmxtph8i+= zlAGPm4#Z`ZAvGKGgte2#uk3qhmSO}nbv2Fj!bZnn{&oBOr>n5A+svd*> zGYHf{xnH+`5XSfW@T%X+I~&~HeOc_xPhr_J99rrVe&wKVIU%yn?7-kXXMXXn_8v7Ut$I}KclkDqD5yp4$~*~{Ls4stBx$rf}3%I*mgFvj|SHSfR8o& z^H~S;|6DF00bmKkbS}<)?S0dI6;OY@F9yCUfjb7FYIZ{@OTVcC>c}j-OkEI^_q&9I&ap_ zb91)((ES6KW0&b@A9l)^KAzg;%IL=K zd2Uq$iMRzXPrOGqmS;-FfTe z``O{8_9<@sj$z-(b^WTB=fzFP887@bI;V9AlfFbLA1W`ED{mT7cvLG! znq5nwoxrWv!234!v<|IXsi-&ws6Jfl#;VjMDySy=UjG@L`WDCB8$`ywH2mqK&55rq zvwi4s9`^&nvdxD_c*)CrF*vS**Z2D@d}@y3=&ukB?;Eon*mcmKX>DnoT_U?3;K$5W zMv$pT%rvXnlvcWzN&W`oy{u8SU~f||Jy!7c9{7Dz%P254v*v~OlGjvn);VuXAQzh2 zHv8OzZbvIi$8(f|>ef06hP815A`aR+ z&|TH2hZHeNesKKb?zp}k2(-C=?EQK)7~V|@ma(kt6h5tGP^j;FbWnCZt12iu!)n~f z>@FoPm@b^CB7aNVj8SBaGa56-MYT56vbKDdO_I}oh%D1Ys3q5O{4;E!5z;<`g6Fru zVy*9m%3rdib~}OQeD6@IsNh5sTzn>7POFd~2wzyqT43SU9^mKRw_oS-91K(&d^X)w zw4j?3t7USls7+pOAuabK6b%DZNG%d|b*nl77u3JMljQ3;vUzcl;}H&RT7%RX3>LX< z?Dxc(B2uCw-0JE3$JH>JCqRKG#<_SB;vXqFJ(jh3R>Nm_C?P#5lwy=&oF=REBjec zIiEh{3jAZdsWC{OiEb{d#JNRja?uZ3x5rRWGv>o_u+b}HvXq7{x+lBw`7Y{{^f%*7PV6F>PoGZq#W_@3l@i$?J5cp$bx6~co7@VT6njUrsu4d5 z9MYpjimq8|=rHa*+$rEm_H!i0X9%_Ox7hC}-r++wN0>9{CNk4P8 z7%rt>I(6+Eefc^<*M?nDs&HV8MQ?An0W$_|@_We&i(DTjMz|sClz5YKFWYY!7^h|e zstoz;R%_V7paVBUOYG!;mph5=i1e)OO6sl0%~}vGL*A_}q>VORo6OBc_M9`!`x62OF5S|dUx_lLsAQ|_Bu!EPlm$W0nP-%GXYWk#V=}oLZ?#v$+^(6 zal8rgK~*K%>6Y%;OMTiLlSAxUCW5kvFlP?!^KNmtu6=geSFQ14Svk~V?$Y-)t))@P zTsYdFa-O}?S*xx)f?$OWdu^D;*Pk;8H*qlD*0V9B@t|7nHqUMe zaeR+J&jaFc=VJMl*+zO4wo+kdV!be}Q*d&IXO~~~cEgg<+VRjMo%!~(#(aRAIrf>) zWk4iB^Y@Z3bIp~^4Ed}ld$z?}nYeB#8X49Y`Lr30U&%*Wx!S{Et}-DTbKWLg*xsH& zt`|2pF1KggZa(Edr&HW7bY5~!%jr6)KjvBCne@p?FIX}C&M#4d*Vj~{?d;cvc_wr3MoQ0;7pkkenehy7CG(Zf#}_$R7XsWqb6TE&} zsi1K@Pa{oO<<<9701*N&22l4ND+=>V4YZn&H)V5Op&NC?C#E!zI`c&g+zp&FNcwAr z;NFzsXp8IxzmFW=F3hV)4MZv0VwG3U?A=AR4tAplnYufX+8t$UyWe%(xW@le4hWGmmhoptiO0v>1k050UHrRFk z4TXlqDNBeY81swk1^A_naoSEks7{1(3rKS3> zTarTpDg;z#=X$6S%Q>`B?#9)`1x~P0jAkhWl}{oBdmD7tSdK)fDGl>acHT-s*=X%# z3Ax@p7qUVh-^kT{eeF*U?#jm2?UsAS#*NZ>B$D;Wr&?R~8P@wu6RHNKS!y`EwZTWb zF2BOTv^c9k8BXiIwKV3_7C&A=dRdU1m@+9SR8Bq{exvO>75|1DF@6d%*(m-J?BzQ$@uo#NJaDt#US{dPAPFKQurhnLG~ zR@&UmP`|!BPQCr7fM1E+Z;n%GT6Dh2Qfx_XaporWcAf6F8ZRFq)A-t)p6@Fo2d)*W z21i%1{DJ4Hn9Vz6m6FcWs4gN_>qRAUEHvz+KSDg=@tNGXQf{Vg?WFf@yoH5H?tK%V zI(qD{LR*euPm_tWnC)(wv(>-EAMZZxbH6v5{umuI7oGUw2Q_IgT^};1bFQ??iFlMC zDD>kilNh3)vu+c*A)&yOM_v2{?;;1{7>b1ilf<4ZGng9_w3SEV;{$j9B+f~8Na)p! z(v@#$byx<2lP(gesH!NZNVS*W1;J4#j2*B`)k!EV77Q(~4?S+&6HJZgwE`zbw+q)$ zP%A510=^rx9WNJO?~9uoJ&p-bh>pj^^IxoXO*h>8Ri(`ju<80ek^lWFj+p3eT@8p)_L#S1v!K5 zRf&%A2*Jr0Z{H?=k2}FJqyx2dYdg;s;WQq_o^{NPH^ZH_r^3lJldwmOA6W<`QP(np z$Er`7T6>EuylI;?#(Gn|f4*S0j$?6e>W{Ey3@RdKXsLFUQ7m9eb2^CYFP=#=TXS4y zO-iNVC8qMP^HNP*yE2x49*tg97Oz@kZCx;J*C+tR1VV161eEn^rLhu6*X zebitWq(!xiRxvRDO<)wy>qn-yQVTxkTp67Z1kAPG=VKX2yI9?K{AO|QdtZLIla<*) z5de?R97w+%mtA{{II5=XvTDzfHKwPuFzW54o)C>i`Z(X@OAFR%5b1%ok}1o$MJ^IZ z=Z~SD`GZE)dNmx<1a+9kgQjX_Q#|8sh%lhWOzTm@h8&fe7ru_{D+iN8ElIQn<}&-{ z+%_9>6G!UTINy_9f5rHw?958oBwDn_=hu$s4W?zj^0$T0ouz3_$cUMi^(xlFo7Ebl zHr?0#P*l;7XT`FoUXaX|x>(8_x12Bz^_(k!)<$7sX16^G%%}y@UKrdPA z*OTlhfT3#2vU#@UwUsl&;3u|i<6If^*89ivi_-U^h&?B&&adCD(CDaFI zgbC>4c2JEvBoracrNzU_?rE}C58LIxgEwOuJdYhb>e>#1e1$dByvE~R-^GuP3lY2= zfB9%0qhANPUwyYTd2PPoN$O$?&GC41%&_#LEK97Vq0Rw+i}`7RUgPxr8rGX5DmK#l zu5WEDWNMmjiqTh|Zlv3lYW35>Xc+=4cd;?_>MIF(+|O`{jEv@XNMUg=Qmh4n^Kaoy z)um3sPlO|VM5b_V;}0uDfZvR!h@$y{NcNUvMt4=nhY#m63y^rjm;3fE`3U5<4_T?2 ziyNbQO}UkYFE4-IluU2jjN;qwh>pkUnJEj56<+h6-d;2NK5q;RbN!UaFW#QQw@97*DN5|6 z57&*{)~6lEU3x(ny;8>gJAA$|UFYm3$htNA>qQN{e0h1x%=VZ2`w80M$mz+a)uV!a z37rcat4y{kyrzh@>R;{b7h2{A;Nmqju4}7<6?7a;Yi_fbF*nz}&fWLW!W10R8~ZpN zy^BNpU3-Sa`;4R!XbE{JgCmKkI7uH!=ib>Q`#3!4HtDC?73!;8W;AyG;wXg+$?&%8&6&tliK-Hq|HW8d;N~GCY|`g=G2~}K*rbm zPRaYnS4i5?JR8BN(?a}Q(7jcoe&@_Bn|C6fBWyaNe`7Ge_$EY2s=X7&-gtU+%6n}& zsw(ORqVo*%PGZlH#!oJF54z4JRBhsFpmM%@8wN=-z1lWqJbzvgr*;yP6eg4WY+JS! zW6kg;J3VFVw~bq)c=wX)HPt=E>+p?FW}4oe-hVC`9=mz`=aK>V`!~>wB3e3>HsG@h z)%P%_K3o)J;nWcKSC2>*%PSf0t?~z(I%iV4Y>tn;7V4hBhtO7HNE zPzEP1;ttD>x-Y_#eAicbPt1%UrnUQRGd4<`NZx9bC!%1&QieBTo+AorrKKWl;M{?3 z8TH)ak}vZ*;wN=4E+v@=BKD_KQ))`$dlXd3bMqcmZmA|GP;X3#)=V>u?sfQ^xBvbj z#letX)1g*17Pl(WsQ!$uu-?v5lgQR(|KjP+;qr3npdS$`D_z% zBn+J(#Q;+mGiYUf-VK$-w-GzqI7yPbOV-;yx;u+=z0|-C57Jt?b;Q}-d?&UOp{4CR zNUt1-Q)Qt^uA+9T{OY^UZfgOx@}Q$TyWA_^AB8xM*#}gOn%`v{M)9~DbM)dDX-{O> zOViE{MU4)zod~F#F5R|MOp}wdhc|z=&V;~nJOxIo4Dz2OJo?7ox;#Z6X%>Gx;#8RDDm+bER*=H@t1!zqIkXa*C$>xY1r@-+FJKYr0;wj{5C~Z>~=8IBhe= zbL|Q~dcoCoDkt=cQ9-q0k40C{=U%ofnfi&e-m~2!4Nm6HpXIm@!#ehUOxx_cSO`#_(E|&`+Si;+ALd%Y<70&croz4L zHb4HJdQ!eRo@i?R)UjvfP(Z;@!?%J>Kv_X=3hq5Wsh(Q;Y?NQ#Ra&DmcAGD}RySMY zK%2vIyb0Rdn_PZ{Jez|#(x^j-3^#S#ZJ4p1yF4?}(azfxI8V!tl2LaX&({jrzKr;AFTN78Agy$ zMfN72+;96vA7ghn_E_9kuX%24w6jnt5V<loWeYw@FoxS`*31#kD!QWT^EdQTY|uNueLbfPTQ?)U`LjoA9Ku?-c= z^Cop}N8_50D|1BEKoTqp{A&%NYW{0ckd?Ot0=o#TmX=_%hllTMjNQ?>hLS^=*LizY zC0f${xR0niWP*!|IX<{y_`Sn+61!>42L%PWn0kkCSOi)%TKmO)r!Ls39BJOzkOniTC%g4sU+}mGx zoB4EiS(K{ZP2E;bUC))teKwVHmJBPTTI1}YdH%YMb~NkcCQSXqrSiiyRn;&hkA$czv8+_ zw{i-NS~IK|&tAKMl+sORbYcL_c-<%}iomJHckH=i`1kK(glsF41+8<4PTehjx+F*=tZ!94656?6yINm)t-9<+OIJuf_f7i~dC0RSMt g004k*zy0>xZ@*Ol)=4KtV4ZZ*Nhh6@1)Ml30v-!@t^fc4 literal 0 HcmV?d00001 diff --git a/Resources/Audio/Magic/Eldritch/voidblink.ogg b/Resources/Audio/Magic/Eldritch/voidblink.ogg new file mode 100644 index 0000000000000000000000000000000000000000..84855918d1ef6200b8f661f0f6bee903093b4203 GIT binary patch literal 63313 zcmb@u2|QHo`#5}`nK1@KV~Md;hY&S1glIh^A(gb*s>zl;(XQoKl1e2>iX=rT3Psun zS&FEXv`KqCO8ctvzwR@7p6C1hz3=Due?Oo1%A9lW%eCFtecktI+QNl15DWFeAx~N0 z+tkvh#6V)%qG-R67@R~n79rFNfVx@CyONlOYyJ(mCIPY1Ln)tCC*qR-f^%$HO9P;Q zXGm1A`LyVTWO#_*Y^HtEg|rllEyW`(M&cGU;0JA!eVG>KV$vxjazQvDCu?Mw!-Uxc z;z213HVZ}J~_rssG3h0jz2T>-j zY9|9c++0lq$w^zIpV~QJ8Io@@Nzw1I-OI6`1Hz^h9DM3C#nse^r|cz%07Vo}KT+V} ztiN7^dH5yk7i9WfF+G$WeZ{n%OyFBKkO^*i{A=(PhSxe{aS~{m<>D=4@@%Nx2 zf|)u=pxnWBdmfwS`RN>cJnD#CVp0(c1z?oqD&*)7%`*7Qb*owrQGJ?d+6e1eGse!EX?<(P*jqDa{a-*F!!Ixq zVsB7pD9sy@=Eb0ehGqqE{26>%Pf);l`%}Y>X*)bz?f7Z6hK1=6TB)&PlJ#ZbKV-xq ze%dn=Cf6k;t=6Q_1D8wRF~s_EJB0ek4duL2(}tM6(t(i6)-#Fd?e=YCzrl}cS{~($^V(bjy=UIVsGM3)ShyVum*|p~0 zsipTS);wt6^3ZnclYjmB|1CMl0c4U9$8^6<7B6xW1P-P$0{2PI#Kju*+x1-13@4X~ zuHJwitfqZ(Z22^^rGMac&4`xI;n%r>A(qmVR{-5H^$_q=|UWBym3%703ZBsnQKd28^- zJtmv-{_p<&7Q(+JXHv9by@v=Sr}jT2M{1!r0i>x+G`ZEP<>MHb=5&pTtuv?e|2F|Z za;9rEmg>3O0K5;F4yac%nyzjQCI2t}0I@p}(nd(3PUxRvk#@q zjg$9d3)1cRp(+J2uBx2U_H@^Y{F>a@;oB{_eilx%R7@||3Vl3G&STa2GTLbf~TFBY{At}xMt5YT0hg0r@zzP<~P9b5(^y1P2(1G6J}_$lqb zmfD}7vJuKljoD+dfZ#VcGQa6JMw?1mV{sJNOK3GS})`+?WP z^3!ixzBst#n#(IPUClM5F#U!%G{t1V`eIhl=ErB6!Wp5a6>Z)rxbqj#xxGUEN$A`( zW~zg{{?2B55Z^Xe)55@J+|&(wSQc)0o936psEl^DIhYpaxB0mh<_le2ie(u$y;F+I zg`;_<>pi?-R2klzE%G(}P4dg3bEx4RW>JAVKRHu2s!+4KHt!-l!7vLLRZ3}{o_~>b zzJ`COX&p3WR&m!a<@BGKyO@t)(ZWL z%FEkBU2z{Jo5gcIAXsRzhpR zj={~Bx7od5((?1$M!jIti~!Xy^zaC9s0%_4rbhWUy*KYq1T}4xpW(OJ0z#0M4oJ_K z>EVirv$?bm`ZdjOgS5Im-k}(0fMxF)IE2%@!@!P_SAjLg>6(kv&WY{8)$8SR8I}d( zh8FnoEt2&7RV?LIWB8-E1EQOO$pZwVob`9|9h~*kH7x4MB?2r00uQc!`pxMk2)zdM zzLq+eSOplNRC$C<0govb1?hl>I^bl$vVV$cK9SX# z$ICxB)8ct%45l6A^7bFR=?%F8SLecVl~KHWAXeC3h=LRXM}s7Jgjpm3N&#tp!%P9g zVa2tcfK9;M=2C>-apX}hOLz7pTT>k+5i>^uNwM^E_5B4{$-@K2Da7Lx@8@gil&K+S zu*y=W0~>%mn%2t3g1G{7iY$tW&qSHA05i9bl10suFlzw1l=Y!-Xlbn{=9G57qH-LC zp@m@u0a9}t54_GhrdbY=RSwh8lI53^gzfWa$52 zLQM>D?4D!d)Mds@1@@0)BZ}T)kfol&>5u2g15&3fXtJxvlRA(Nd~9O0GeajoJ3$R| zbOz|U{Fxr1W))39p`B@<3YMus6wq2!4!SN3&!Tt$2*)Nfn8h1t1^BbgI|k?iv$cMa zJ;AiFT+{!m^$TC9h9`Rd1(2?^ZBJPD*u&6@_3fOPw_~A5vGt4lvG3$i<``Q<8MWKi zxZd!36dc9i;XXo6rXXc1eU$3&4`Pai2@`H8!*Vhb>IeKQ!=V8)R$oTqwSQ_jDC~!f zmn3drKRo_!$^lg6-!;+&t_loa;D?ERx<_B<5OOuimv!zgGo<>;$t)H%rW_Q(Q6pKo zK06J@(pLjiG&6b+Sp!&0;m&2{a0BjtEW3YaFavT`_)`v{YYaVAcWU|_(w;LgZm^=Z zu}r=m;pMNd*Nq?@vepd$)cn)K&$Hgw^QS zufD*88`8W}tlNCU-k$&3F&WfQrvDoV#k_&S{##E!?}&vAP5%@eIu04J;m~qe3l6tC z@;s!8#g+syChNTYi!B`70Re3S(`ScodCy4VMc?oXGaA9M3n@LBs(nDOw#}m<)lc9P zR_O0)7iLzWX8GKtHal#Xemd|6kA?V-4Q`}6lH*#UPNZ+Ih)hJ{C44P{IGvcnN~pGY zl)dCGY~1uMCm0%NCR|Dk%{`o{f;6>+9|&@S|KK-|S!eiB_FBsa@br21JioL>EC5Asn&G-3WaWU%w=XS#m`CPN1 zz43uA2Jf?qx}A)_>iz6mH00hcc>|rT_YD0j%?&fTJOo~0J^mYYYO zKH;68^$ICB)&w<|YFt>qB7#cElkt zh$NHmj!k!3^}SK5mn+wR3q#q&YKSkJY2SPJBH0G)*aVqWXU`QhpB^zu^H6&D7H>8m6 ziG~_}qPg-&FwRu{?7czlSzaxko6d1v(7=Oi$#%n@S4)>Q7RE@7H0Glcz1eT299aktx5&61FQOW9W(qQvlm)l^CFYz5$a=-dH-&}H9IZDVul9jx4 z^0H4@*o33Y#)a-!A$fD<=C=`7HmI%ZF6kM$@2A^w|&`gQ;|gDae+>l9C&&JNQ_W5T{klB5C^B`A^wVZ z6a{vlIz&+-B9+_`%|kR`i9=>g6sQx$ko$>IjRQ1`2&1PxH36KLK1X&_g{@N;(@_R7vw_Hlxc*05NY~sMb8nr}r^Y0lY zO6OL~jZ2?!Nwjiy{e&f_%!9s|4j4K-PYE6QlJm;!h*f0vChz;7Ypuj&Ki}6P+QMAx zXsu#YSIFqSes`#tTO+PiN4g<8BKCbx-CtwlS8S__Uw|@KhX{4gc33>>Oq$*D@>1pP zZNCCb{eni&4wbqa2dHJ9qaz z*+_B{9YBB6bug`E{*DYfbi^tjIV=QLEfycPv$kBliImluQSxAbK z`79wDb-D{<=`@Kj)ey4KbpaCa;mt)zQ3@!;X&CzOEsMaDO*!CH%+rEEiU4%8DV93o z(U3~}%-M;-Jr@Ck%?T)+n31cdU{~xKK~afAoM!uqwn>yA5R8y~h9*I$|E`_*Ucy#dPVw5qT^@Vx)CkA72_9ZLEjrG9|ewa5~4Iq4n-W}z3WJDu7)T|T>#kn z8>ESVC?0aY_a{XH`o|t|4d{uGu^kyt1Qpf?VvxMQfrmCpXUbYiwFJ%B%2$`VXhb^$)jX3ZS{cLJqS6vY~?@CsN!!fUAJ^4ZfbYaJ^vVz-I zk<-H0kggYz==7N0>XO$t%W?*uncf`z(^_5HNtb?Yix_6JtEMXSL9B4#C2>zl%z^Bz z$syToWo7vTgp$3+_gq^Ws~KEFPxV^>z7>s-EL} z&y3&vaR0ZR?;f#z5`=H`B;ga{$tx#0vtcEsV@KmT(>otm4kL7`b*5SM{HguC^E?P${^$rRy{BZ4m_aVKY&}|lRA006)4UU zAan_d{h@%s3Is?7xljfw>u4eoP5|a$U<(^b_u8@=;SY1 zcVXtf3XXxrJoM!ITGz?eSvS`9oHUdk|JqHnDem3FweEdLTSeXC!hAW>&&^j+H+9*{*=XWGbi8Ii3{_b zVR>4q2*xNG4kH$P+c{*$GkSdCD>)tHdoG?sC4lnzc?jl{g_qy{C4fNsgu*pmaw@E_ zBc@_DMN&L*D&Wo6(fNSCxITUDE`j8DTPOhU>v6!*s%ZqdK$r}LWvZ8{46*+LXC(P2 zM^$P`2Mb8>c7T#GMm&m^2?Q39!wLfAE~6J@llYX6GSr74&F!NM4G|2sCX-k7hMp=i z2BaT3JU6J9IP2@2((ifHo)1Px9NgC(2~B)dIby5)m+oiMXLN1+`Wc5rzC}NE2KJWu z&w1WaY1XlJ+PoVxhPx@XosXg$PmE)Q50_L$mx>3by!oWZS9d}wfka!fk3-G4WBMPG zj};jV6z}#^8jL(2p>8igu5ZScx$=d>T2D=wGFZ($X#GkP$|h1VZzPOu*|%mBc*Su$ zCa)iU%I(&|Ej~PYK;;da6$EXD^mvvE7#j_!dNXy9pzJF+l=96I^u&Q!k!iwjMA*ud z&?t(6<#>%eDgj07aLuOY7}WU#s+1siB9dep6MQ!4V9FT?qDTO~+%RnfY66leNhmgf zC?MpS3}R+6FC80L&uDHUAcY0u4=VG@)=LPpUIye*0W`HsA1N<&y%%$ z-OdwID;wmgsUBVse(HdIkh^-@lhzWg5_;q11=@+PSmMgk*n>xJ6%X>3w;U-v`lv?( zW$ZPjtGbhKMD9LgZQk|d>FWEot_hdod(1}OFPJyD=ttfV_mWYgZdoE!8A#+{4(a(u z9C`5j?ZMf5&+ZxbI$=*gm>(oRf!#Ysr~!{g)k=USP%tz$0y}kdSD;Ry2C0DTnRD)iuC7(%5n5@W4SsO66h1Df)Xv z2oTMy9sE^y^NkF2IZf`IL}BchL0en0-?^{4u`0bb@j)z+u4G;}VlchZ?(~`x^scn( zRQ0oTxhIG#t-SvT71i&^S1;aNC08+8zEiS3w$js1uSnWaQ~c~^(t2@QcxSzL>wv)Z zp+)JoLXnRyk|w5HRT8!LKI?kDB_}<ydvETikt`s8-hZD(oPaF zS{3YaoG$}MuRsPoCf z9L!=;joYJ#erv6~+qpY;L>Hb0efQ}g7{5Y#DG(x;xRKD1x23-oq{E&S2`~dYY6J%- zbMSgcv8G!Q4XiOLVE*44iQ1($i>d)ds#t@7VG>X3ECr#MK8a?*7NH>zoE#K#7Q!w7 zXOo-6NLCOcbQ}-C+G2n+0FuFBkeP0nmV{^%&vX~)7^LW5gt3IJLpDMp!18}W0~baO z%~ScmnoOkfNYa4GWFmJVpzEgT0H;L)QQQ~9v}(D{{M(bhJk>STuNZaz^7L7ak6zbu zG|hK3HV#?yz+AehB4I3w@)A3h%#|qrO7ME#`~B^dol2eYawYM~S~Wq}q-AU=*_gIo zcW8*eFva-Xy~q@4!;fE8rl0k%+4Zjuov~1Vbcro!mTJpj{@pKsO)off2T?Ekhd9w- zgvkx_d>at~1EtuL%Ct&M4iNnX$y{pzvWcR(S_B%$hIyqbn=mY#vnaO zJ6?d?D2F4k)MDcP0~(i@C4iv=VnWTKt4vb9E)G6G^uucaAo$vCW=vY$>^1a#mO&5lK{3 z_AI=!X5Kl4qTHZdZJvFCY_GPRd zhCb-i1d>DSc69-HDIRbak4oML!zARTY-EV1!GUZZ2Uz~K+-Ryoj&wMxK%rdV!c-*1 z9HnM3@sC9UF{yksFrCLHT=Q>`G9i+}ltFkSM0kmCQd#atxbj?@*XL?I&)Oa-EcxL>5PEAgQlwt>B8T3+R|ek!mo^RPwdA7u#)|fRn1NLsn6r1&FASr!Ig13y^n0tv*8DF^NTs zn@36`r6W5XkR*c8SXxOBrWj1Xt_4Wro2kf}$uVR&71~0^E)<}LBcWJKAr2@Gl0a&? zKr;YHW2+*v28R`4>x41sNKmr-U!ZqkRDiarg9^ClZlt=-!)rtEk_wH3A&IjvlxXK7 znn`4$vWFE@vy<60Nlma-gX@3_ciOc&V6kAzG`lU1@xx2fh86xS8-FQ$+i|(b>*sE6 zT#%{cE47?2(Yqs7E{QJn?H(>4cI8>cXU*`!>h#kujPD6HO?@7doe|L!WMO7gvR_Yh zLNlQ0%C;+D@k>%lEL5hB)I2)Mck~WDUO?HF^T%m)pWFmr|g%McqdTq+%fS8D*W3ix;}B^CXGWm{gv+lsIv zpm8!%LGJji!g+^dRMVeUmV=#yK{~z{1g5uh{I_jlP4xSFzuyVtRS-CX*8S-1U5A`- zna+hyNci_!y5c+31Wi&gwY=qwAf@C=A!n-LtJ?jBqw9|H&7B@TZ)^1b>+b$3(Qo7A zR7&1Q@R7LGZ`G=!k)pFdFM0X*K0h?pdxjR0r+W@v9KYqkF0GPsUyp(UhC|dpYgt8yKPOwlccccteLydC}qOTRJ3Bv zHGw}$^mq2}JTS#*=4f>8*+2w%Id=tyZc8Hfnq8rVB4jHXcoRFZMj;7dqlBm-Dtb@( z3xr5bZ2^>{U`@4F4wpy%;5)Bz%_Xp1or#hKqU))!Y|$J`0jzcmkQ0S@`gT!JN5T?G zfk06#b!S+J8Ni7DZ!qn{ISCn9M`0nr&r~t!G<#Y`VjA#Eae5tb#!XpLyX=J!5Cm(I zFOPpXFCDWaGK_j!Fjy;P#Eq|~5-y&ZHuTs1B@4Cnc8uSVG` z8_{r!kD9Y6U;p#m#sx+3^T#DVxi2O@Em>mVg@kipkTh*HVe7O~TRFw}nde`N!7r6u z$s?ulIw-0$)*<1J6zgqdNTBTo2t7W+%j}d*pO%0nj}!=7FoDDzce(`KEI3!M+Rw`eb zmrnDSF4=9Q_ECKK+S69o9l`V1b64+-l~_x{qN^+;yKN>l)mmlLJd()KS}L){vC|fN z>8p3HUo2>~YI@LGn?3hfmDMES9QW5>M@D9a^6woxFXfdGn=ijusjQ9?RGs|qcZ_U& zw6?FDBpcvqa2y@%%oy#!MF9>pR+E>q58LYCiORed(85Fm@=|% zW#^)V!3}O#d5A!H6Qc=5zu31Fl!z-JY)Ax02*K*M3x5_(i5!m%2+VsF2XRycY)`>q z9+Weo2>Mk&SOiJJW<&9I$hSwFKZ5QEXP5w{8{yOh#K}OpO3-Hq=3=!1Z5f7OQUfR! zfXihg6nBx)S|EoALJ{^zOun88az=kU3S>3#Q%6?&_xIirAi=;{SbL&z0bM!G<+~#$ zE%dqNV)(N*-(gC}qHX?*&QGqJT{!psl?#KEg{Sm7-&r9^&HAWi%S(T&aNGT&d!h(Q z_u`#VMYGK}oY#ud7p!=4E+3C8` zbu(^+ylG%v+P$mrvZlE6GAaG5o+p_Sa|<>SjfIUJn*kTfYhz~?x9itFSctAwz`716 z7I1?Z(G%D_3cD8Ngox)z6J%88Sy)O#3RpBsWl(6~{FA$*Ww;)SX3^EKkE98HfGWs5 z0L`JDC*T00^PIf^xfrB|a*W1CC_wd^p)Bn`pR^3S95@6bC`6;Jz@{W6p#NQpk{ARs zagrB0;#(_oBJ(Go)`w2NN#C(2FcLElSo@gozVZaW((TSav^FTVrrLJImXB8DU7oh> zjQfI8^UTdv(e#Puds*R+eEMfboPQmpGrL20ebs}Y#*BFXfsyRlw(pik##EjkI>JA^ zkQbtLZhXa^EtSK5reE#(^wN9$;K)t2KIJPkoMi;M%~C;+XEXgL#5%EmX6sbo_* zEC%RX4j=((jk9`}S;yAH42dx$#aXb=4*+E!ygfrgvUw~jQHHwQK&*t2K`ws&FCfAB z$&6yB!AC>lCNi$>e}2-px*2qD<6p>d4nZk}oyVwP!cnD*s5 z=kBs)m7z^Dq8HbWV* zrGynob=3U>qR!m&bsBN@!?E2?>U_!SMd7>FZ+R8ebs=NM+o`KZRQt!KuZt=@cY0~n zqI2Uk!rm*{i2$yeBTTiSH+);Y;VCtR?Bks@Jc%#mx8o2aR>pKB@zPv?oE5Ga@(Ix0U^G)ZK=&g>3aE(*3m(T@pvd2<+a1O4O=b}& z3y8QM5Xq53E{UYLEP(A*1aSu558%Dq_H$kDc!>Q}g+~$}BN;%tVHbYEzNhc{LOhNl zguM;8ozAZ)|Uef9$fOK^M|??H%ZBczV*5f)JlIDnd_ z^$t6*A%;Im)f)LkTDCmd{KtXRSTA*3P&XXZ4Lit^Ds5m{Yj<}0o>wW`4gTn7*n+F& zzI2d7lo)TU4;CL*KniYfsz8calnp@>0S0*!`G_^&mR!ODL<1P4?4bUDrdi_jqT zPl*7G`t4jgZNZ)~k_i|`b7^xg;5IPY)bE3D}MVRrPQC+;hIG4L6o3#^kTA-J(^=PW^+MU)1-ExD+Z?|qZc)E=r$o9aA;G4OEEzY@c7y#1bd}C} z2xE~h1o;)5eo{K-l*+L?VVo_`yil$N;suA&NIwFYBw4IS<(a6N;9=)Re1j=(1Wps@ z{*idubU-agps-jL!_NX|Phe_ZMj){KAHy2fihl}_5M+)4Q^ARafK>rNQZP8$7u4*B zh%}ajC7m;MMA9A;yg8t*f!h5~p!+V7Ajt@s40Y~H!6HcSi?etL=VHLpzqe|}iUth+ zDV}Wj+(KM%AuC)brM~K=$(=@H@qp8)v9Wa-p<6V1FfG@4GeWeyq-0r@bM{$>vRm3y z5*|pGoE6>MZqziQcz@tRW6tlNFCs?QzM9$QIA_YBC+6w{CN*DaN?)Ej|6)%P8`eM- z`O$~YEc2Kqo)?twJYvbKpH8s*m97G0vHD#YxjuWHTm7s$mhCPD53dwPzXzs3t6F%%g>CqLNR6)3)%;07G>*{WPP73DDo-=UgU zbRY?b`p7Q`TXGyQ1d(POSTGHiG~kRSz+RNU!4S|bLpGB{^S%f);7Sry$B>rDLNa{; zBO+lnCO69+qnIoNz6dx3T~`Ma8Yz{jqn|(&h)zzzi|Oxxu8ygJW!p`ru5dQo{?xpv z^zx164}P_%Ww~Zu)mbs)p<9EWdI6)Ug{-#jw#IHtkboG4%~s&%LQ+T*BU;2*%p~lkpab~`J}=K$K&0XrMwmdKN1KQV9#a~(Y_b!N zG9#v4W#s{PZX01@tW0Il^qh;=2YL47NWV?sRfU zN_|$(s{qf^i1uBV8!{_JT%obNt?xZnO5@G@WMx;Y`uMvB!;R`s&)MBN$h7BOgcg1nBF$*H8g$=?}rY>j&HmIDWb zpLs#npT*xE0Tj3T2SmY(V0Bz)A<2sm1Qxk+V5Y8YQNDZtM#DSliWDkju9J-`uELNSF$DkVQ zLl*_g0CE}g5Z)5F7Q+C(7m!S1iexfzX$ryFxSOQ>k-fcO^Th3Nazep*69}Pzj%ON! zWd%;Epc(-Aa>w#>37Qb87=H-UPqwQ>@+0n$4$jHhIp3@d97SXr-0xjz7rM@FyB?TuYz1x(v{_D#n z`xY^(6}?$z>s!gu~3-{9RPWp3q8BQ|Ie zR1H=lqyz!y5gd2mY=6YHr|=9(2bjC2KF^rF0__<6DQgfi?yg<1Uxo{0$)~|WlmR=9 z1x_rakO#QJCZSYjx`VyQN6{x6IbIaDu_*`Awnan!lICoS0v_ zE#cI%@Oz;#WA2{TCKA}b<9q;o0pA=3Gr0tQdW=Li)TWqx{>rpoo>X z#ad64oCh_X5eA5YVKnBuX7mEi6AOwzKMYrs4-_vQvZ&`57gncSg@y1T#S1oVI*LS& zw4A_^MH1Qt1Tv5dCetWa9v2xJg58ebFixE&*aWkIoJx~&g2xJI1(^yvcTy7$HlUY2 zpfOuxoc}+AM`Exy#{l#Ubr5kjf_;7sCB>OIfX@+3LI9d47y@YZ!eI%1{JB}NnGqK% z?9QV>ghYgXe%yz81Ni>GWz`=3w1s_8U{^(6_D$BLZJO-kn^)|g{McN7XXL19KC_%h zwY(LUh*uD+k-6CWOAbqXNQqmwtU3Pj)Q)RK@ejVVn*MB<+P`?{pmuAPu9#O+lCo;c zO7)EfBOV-l?H9an+!JY(Tiuqg2??;WPuLjnt|xnUU`@c+q>$>ez__tj0_3)7CGVNkRdrg(^5dH^mwO^^{Mr!Z&^F^@{#ab$D%EOFHGToHLb~f5~ za)#~dO5FLd_Q*W1uxB0%^JW!kvPI#Zr}=xHbHg-ty)}BfuIS+*-3zro$9HU4J2>#i z;0U)jMpauby7|7ny8row;@M4OE?zvKTuzOf7Blh4GtdXEjb2}2)D`{0kKT`!xbF># z?-<8(pdiV2D^WF2o<);lPN&$;ie5mn1ai{_Bo8GFK&~q=CRi+_!V?dsIR@3$Y!j4X zfmBi^JjsTApVRbZ}0tbb;66_J8$>A z`eix$%>$O7jYb!rg(RZZsw%tURrkJ5JGncn1fTvbN7xEcFHSGKAHQbbrPD;L95^t5 zIov_rM$rR+gC!IP^((s?X{18y;5iFGqua;{QditVL{1#RM*>q6AFd#I)%0s%E;$i2 zwir*^(D|S~Y)ELHi6WK8o2ZXhus=XGQi&6F3|xSrB|3~d9p_M#My`~DXeo36p21b~ z*$`inx78CzQPc|Nb<=G-es>axjp|rGHl4saA6n=#d?bDOI97Ws__*Oh9oy681zTTZ#6MdHSs4Z^cq&rb0{-6q+g0lMUu(y$ z^ikfb74|!PVoHs}kjtg5k&>MsXk-m`lc;G>lIRqo&gs(qh6 z9;INUKIly}&;hck{@d4kp%I1#4v50`H^zl6O~qmE;lPhrK@)V65j{ALXAg(Dv|(}q zq%xrCg87d>L(OG7@FxS(G$3Ff^j)balSQ$UgV6!14X3pt7_Y`sxKI%azeRAVVg>wz zBme&ZkQo>t`m^LBN0$QoOEBUwI2Fz|ux$zsHw@zKCb9r9KyJG>qDy;8e{F`Y=-s2S zkoT?w)+>4-jrXCQx^-erSYwZwmoD5ZSw(LDG~9D#PwlLUS9sv?LMW;`z;~7 z`o`|Fn%U*jXBT(s-nlhD;X&p5M0F`*OV&+!U*%>p{nPZINiIo0N_I|o_;o7CXg326!VW0H2eyD-h3F&D2ZN$Sa*u#!wy8lM-MTI|IoA1sR5bNerRd z-^z)yw{&p;u>|~Y#AV_16rKh&U=Z{TKHEc_TrZdc29R@r93=hq9CN(Z3cja8N`QD#DBmin8uJuMf{t$rNyy<$-J zDZi^n%UiCxW?c!m$7**3FV7Rr)@A-Htq_KkGg^zbkUa^k8(*kBNbW#v z@Ft&q`gg2jO0=#_* z|KU@d29OI4^Z~5Ta3Hh^xEVlHoyJ(}#;_CcW0)Uru>b@sqT+I;j&2f`JdY(YfD}Jm zuMcSO;ZuE0UK#l2DTIeTw$R z2baB0^qje;KI|)Xe&_AuuI*2%-s&DrdeI(zROidJ$u>*AyA1stL_GQY_HFuNMPzfY zN;Sw<%)WZ99>h}m;w|1-T#Gvt^;GT|`*o{rMC*^3M@l0%(8k~sw;*_Adlwkm^ZKDS z4)dJ~vUDUQEV$DN-(}3>|@{QP0>2?&DctK z^W!wQmxvST@fM6H0SSL4O^4%(^<5QPGYi$dVouu+jXoN-jSQEx@$<5C_y(>(~hXw2{STW4!o6vE!K%F=Vb4-Dl!fBv{%^Ha)S z>6`nG+^BH>C~hZ| z{Q9Bm6TS#G!lf%k%e^v2Wv2YkgIPlHb(H^C;8CEl9T}V@%L)7D4m7PVd2QxwmT+KWzr82&38B1b{)zi%|~Z zRfYD$-0JlB;W^c+6m;I@w+7eA=be|<)~pP)E8{%7*dvTitVR*O z1KNO+T-*n%EufJV2&}M#aW>_$kQH|Gr@}{TsLVtKZu?Ah6$lnkPT5igcXbM3ZfCVx z0W%>I8JKO7TWcu6l$Hr5r+$4}JK&EB-MN zMZ#vIqnCP)6p-P6O<(AJe*Eu+Pp^DwUVD48!tB>$&ZtDpe))FQ3Wce+hjxq^zBFvW zgDX=!CVF{Zc=6&v+UN^z_1w4UL~f=ot??-59Z2gn-L{CTZa>x7@m8G*RRh_e7$iU0 zh>F78fE-o%&O4kSpd?184#%0o*+u6d$@^YZ$tFQvccOP-D|7w#Bqye&nasd7C_}Z! zSAa(qB%nX_scJO^XGCt)h~u$USq6@2hG2>T{rZ45VF5$`H&9I1V1key8mSYhG@45p zxTvx47hhJ4gy1te20&1ZnZ*ysu+;(dG#NcP5C^#Yhi|X|{CYO`EiN;jec*Rsms3OF zI6bSeYA(HHb2kM0zDT+(f2(fUi+#UFUAgdZv08%esN~w{d7YB;p60%lwGl_3U3i<4 z)8rXrJK)X0$g!ylo^XEUUM7i)lQwEj2AF;eL6} zkQG)2Z@mU!oGpAe{s7s^UZFKYP;#rG0olgCIBSwTSW2skFR}?YKzw{ z($z8CM_ofYa%>(cFmz{65s-$+WEB{J6sT>u5{oSX6)ObJ>J4~Wim4`PMpaUcihMZF}JrqKZ=(00QI^B#l-`slJP!M~5BXd4i~nAeyUKnXdeEU2rz5{# zA9ZeixBrIGv0*B$AGai#T_)$s4DHnRO z0M6gFbAA_%P0 zo+eS}JKeC?v0|8Nnn|@-Kv3?mYiD%=?;+*9W{kqt5SGBvMVN{T00juH>cdyLSm!X1 z8s^Bn865F}l}&LW+auYTS=^^xuJ|RQC*iF?eu?U`Qm)S5`WFQD|>FB zU;@pMc-5^mhmU(E*9?2^cxQe(3m(h~g)r;Xu zj-NdW1z+CbolhcCw3oAxKphwr?zz~~nO{1q)UcI70j91YDez+^p>rSv&)wF~85tPE zw?9Zyrzc&)y2Qb$6xR5lu6{fAaV!(X=A;P|A_)>yX$2u9JCkEbLnRKKh?wet zcSi+S6Z)(rD21W@Y&jRd-$hEXo!I&N12iseNnv#??fMecJcfUN)zhRWDhUJaR{6fo z$&Xxp?yp<1y*aUE^GD z=dq*9PE@cTv!qX96c*KtO!w5E`sm3u-BV5oVc5l$`r#z{|gw5LC5fMZd^UG%GN&AL@|DvX~ee>bo_X_g)p}QZG?a$L~suA7dYT^m8CSDIsvb+_!>Wg-3|C?;f81f z;yO}^j!_6cLzGSa|I3r1Ee-Amd>YMEbaYM%^vaWH8WX7Wu!1{yGxsAB{?YIcKn$yp zlm)ViKg9s~X)jz?E&H-w*NLe=PRwCwO!fN&4brN0tZ`quW*-{UJe1nh?}LF+T1RcA z@7!q_ar{Xklk`FIATA6ZSywuy*ptW0f*e z+JOIn(>n%rLIMIp)5{@{izA4JgLL%meTrPpmoBI2S7s`_Om(hobo%9Mb)i5fe~9MZ zuLZRw0ms8G?|v@V-E!*Q%9VBzW7qfBJo>pVt?uj8Cwr9Z=_p z+OyJzDn;LAMK;vAl&SLh*V`RR+<&t4rVe_Xw7X($OWD}0;PruT=e|YtVy89tcJ;Ij zoqQpErM%ap6cn(#WL};#>*yO(gdUt&wypfwalS{;j_{6Ut4RXY+iR+d>8p~(YA8_y zFqNFjV}n`YeBF`DQ)+dj72pU5*}{AT?R->iOSH4->z$`oa(?I3N+1=KGW;xMN*Qd& z-}W&OLU&sg8pGq5z?% zNbX)Fy0*;6i*8YQX9#!GS*SAiStJ_;yS8mjnMlI52iaTa#tJXy4#1?!Rr`zZC*w;}F z?E*_9cc00(;vQ`|q{lIdUQskNkBZ1j>hOjuxkGFJPNPfb4bjC28ud609e^e1E0F{t zqtgF$jt}zUaNP*ku(u$0N6)1*51q6`%Z0Udw4<^!m2Z;@EEZDb%`U5Esecp)w*J2X z$ylWbY?VjDjC++LA^8hcfNT=zmP4>yun>cIO3T>M9K?`BaZBKq!^2FB_q%D>0v!Y+ z4-hlM66BZ)!VUZ^1o*G=X=uM15|r%wS|twDKM*L(v&GY@ad*8jv0jJ2bU&*+@>myF zM>Q}_FkF3U|CiCn4f(G;dwTX{#-G|2Xn1$8ndjo8s_Wm#=@pu*4V|6qe>!*A-=!4s zyOdg8y}j#S^VhjhnVj_lRSrXIOvGom)~z$Gc^DWITI@Ifjcejvc(O!w@#Y(QhQ3Br zt*U&yVL#ny=fsEEqgfh;>q>(@mE~T&7Ez`%O>cvM=G?brDbUg7`}dyhT$uCr(%P7S z*0M#Q8W)aaV2H8kHeE2SZQR#O$`5%%Z3m&&$}|?$8i6>8F6m&}lT|_2CM({KsKMNW zw+Lw$BMKKt8#pz~MV<$dbbxozKxr|Y+#Adpu(mV> z7>o=O48AVe@Q85g*f##-vq@f_Nypa@*RFZ@jIK&NYpr!4X0d(liSJED3zF^}Nbkrh zo%-0L%+bam<7@7fKyuryK?<^dd0< zs9I9{hPnqn(H5$|HjJ93NFndLBjgtf=u}|IK@Gu)2=P&uCD0hb3wHpHKAXWIF*DT? ztpo|aP{|6LLOKgd=rNEYiSB@pM!qT1k>AMyQ5w#vp}G}NIu%}rtm&})1ek)~zkx5j zgqbKp965yZnXZFyWO(&b;e?8!z*}ZBz5;+00_zj$os-?cvd$blDWJRjh=8ov%KOON z_)|AgM(mo6b`1=V2|BBS@lu`vcvaGS3$C^8dvvsM$Wl|+Ns!;Ze5K#v6HJ-vOU0JQ zGdDUUC%z3FxNJ^2l{};bYp6Ncd?*TBz0e`x0d--4`iHKZ zhL)ij!qe6us0)#dNEZ&^?0*LnEf8>UL&4YrRs{mM;%jP$fv89#w8ar*6!7`z2cc{d zxh)J~Y7hdLVSria2z{*XzWF#a_SWnw*};}!!5{Pipd$6*5B6*Nn>KVtOp`xY%E^4B zu;A>Rh`^SMXS`z!MlYtjeB1T-mA_!R5?Q6MrxY;DF)GN@Kp{ihQJ-Cyv(PPI+_kDt zO3ff)n~8=(h=dUi zBz2ba#9+2AfPhY&Vq>g`aB3W}@XxL_TLnvr!$0<^v0;0A&cY4woNOLo}lzzv3-b!VssvW&;+oBGy zIMH`oWzE&$(xE1W%DLRXV&c1N(tYl%{V>?QmNlDbJ3mo+mha}%`<9-VBp%PQR~Wp5 zxp4A%bDO5TE(y9!YfCA$K`&umWRV4pqKRE@(FMkPEm&LQkx9&4(7ecX0^WU!O$FhT z)Ht1OXd|7$vy_iUKVBfm?yKAUote#a$HU`+8dAVV{(pc_cEOaZTZx~-5>B)RTvQ=x z(wJcf4Bku*@f6YR*ieulQ#rU02F}uY9gtTL_-&bk9ACxe_nKD%?F(VoH~BKj$z(-6 z7T!^6RPbE*3+9yl6ZK?Hb^C}F>DPIe@G|!-w9yK2jB?yQVT!!?b(2I@x_ENcx4NF~ zbI3ccGD-D|X1^+3x?@s!k{?TB zg8!fvd=o=^a==S|pU$X-u9W&Tl7E;lj{I9M=ul8B3FO?1^bqn{NH}3*n9k%;8n07T z#RoC4AkGn06(BPqXs&Nvj385N;8D+g+1xwbkw)XxNj#s!!Qv-+gt@wubz|(N&lB zOw~B}A;?wI>tWPu`|ck-SwnLl8qHF*x4B&6oj^qvYmzzkH4i4<+P2YV_PYBqgv_@x@DRe|TK z*$k2F0}~!PPf=Hb1~})rdBI8_l31+yYt08~{W8yx#IF$fpkNuVEbDc;(he}n*fG8b z3^Vpa@JxKY6I@VmF?fe0?80%mi3URhv;nYp2+QzapiX490m?Jd5<>XkehVP!3V)42 z&B7ZV82*VM@so@?{OM40=FIZDEJ!1X#c&*%hW0D|->O^+{n zQayB}ctg7*T^#0~k6#35{uQFay|QnHTJRQyf(gOBv1(sdt2Gb9$JOYYHXRv`3J!Qi zb8v$xxyc4s#YJ0(wc6U#<`js^L@;0Sr5Y<) z%F&PliQ?A$LNyr$<_BR)`?q_ks>A4pmr_`N<{EIE7v8d~>sfdTJO!26e3AEPgHtZA?}rO3aq10@Lq8waouh}(l;`i~;0O2`L< zXH5#*(iQ054=OjPjMhd%ZE!uQ)>?pXnEY59;gRs4Fdt}85-|i?9D=iqcU+hyB2a8E z0Ah=%aH{Yk6$Dx=zR)?`hhB;tYt|B1Xf&9IB9=4{RtuzXEC3#i1^BPnpa#*i*dhl5 zXHjJu4VL)OVAS~F(I`BD1%o6Y{982g9HCw~L-O1HYtm|^ALDlaJbQQLW4rF2Wzy;L z!^hg)=S*%_andV1dP+(=b?yQ0x?7{QE1ySD(OzHgoH8{(i|Nb4kKHM|KdbpzXY=dF z`Z6gw!~XC2rPVi=UO3t{cj#GNKYw2#8lHwR1&Su>HCfZ&~sAoLfZ zE7H&oU~k0IWC|jvJPP9A+c@qrO$HBvgm}RP!Uo!bLuf$(k`p>-6$#ESseM+iP&(Ix)||~*UwION4$e$K z7yWe@V8_2q6N>Z9!EO?01k7X5Akq1}L%L&h>`3sQq6<_~>IH#@1+32J$hqLd-+weH z(yZRbJsGFS>b69EjW`a&?s+V06FmQXXyLPd@MX4YKPOOSIlWX~I}1TIejmqy5ffTXz8 z{|=V_;MoFPj5QV16TlBh2=byyLwc|v04HGX*lHt1hZOx;Fz3d9+0I9r56(E8b$8U6AB%Z*%?Xv!HdqLRh$6rI2H z$wz_NW@E4QrLkC{slByzok7fN#Ykcb1Ww+Fk}qxa=}J!sMsD6AD{7iXgRYiHJ-Omj zozZ^C)TU-z$%dN47N(xu__z1&Rakuw2sHfW_jSOsYj%KIaFsf5k()#12iApfDJ1af z?^rqUacJ_Bxsx1=Ppn@S(S0XMPahj zJ0pKt1_ub3l}b=3;<4oUchTn=Bybfl8u%l-QO=gAl1Y+e38(yr!_cu zX8UAh*1I5f3ftZI$D`tXZM)cN1Gbs5pA+kgDvnG1xuKt~ogHh6*xfa()u-S6S6IqMhYO2#%&fErdq{NCb(DH^I6j;CHv2aCz(^GEwS=#NV^a9KH7~~D=8vv1Le&LFC zc$LyKd#En~sKaX!S~wRYkj94yf^kS`Geo48!%i}Ec}&LKQ0qmS5_Tj)DFi5hARTxY zxFW%cKbO+!Ut>p7Ad}J=jhX(e^gh$eErhczi~&mJa&=dQpb(&H4{YSOgAdpECb&i~puq3!k1 zv6d|^1H;ePa<`au>&WO#jhbKt6rX$h7+ z>9{G#)H;=zId!JJwV}3NOh|wvpz;3+7yfJNKgyAt!3qTKaK6DjpOkIMQVBb{ zbJcsj=3Tu$|4rFh$HKn%8}5|UhKPH6XXLl7I=Ag<`IpK7#Ti>1{oM|>-^fYSMylDt zPNqFOH@&=-G&{2@uJsHx4@Q6XQn#}}HrY)98L>gt3(fQ>ee(95wz3)D5B9T3_(u53 z=;^T%i2IOD=Ub@NVcT_rN4ph+vSpETCxk>pHYU(GhO}7(cNL=W>ET4K&m$7;CP8GR z@F;-tDiob7T&#n5-|#|70UThk1l0X^(4vXfqqIcX6jCjfp~B(Gp!dRr%PncYpBp+ycn64!;fps&A;IpxjXmc>t0ut z$9=$4ILehqdy)~~o6XltFMc$0R))FF%oc|~7BU>aM%eh00iI8WW|#ZUjcb}SIJaSGBhawCR9qm-Vv~VFV8VxW7 zLL`{uQP4_F4`2+ejn9KYEmDhwzL27U@jyX&%ORSo2pPgiuMcq#fFJN6Ou7FR_`*~< z!AYQAZ3>1-rC?=PG&-S1A&HZuc4e7Tl@TGDX$*7llJlnBF+C2i_@ z{$M?wJ(0gVY_lsV(KF99cS>vz5xz}Q{A%@(>jFoYYg_Kmje2?I;F~g8sVAn!ZH-SW z*1A2o?cOqeEU-lN&e6SXxi@aT+x&T{obM*%pF<1Zj>x@tkSpJ{D0s_4$L@QRJ}mYU zH;IwNqK1z-^xJ~9O&8{j4f8!~jC*8d>kjhfhyO)EZx@r|C>qOypbP%QApH^Dm!MIw z_8Wsdv|3_>h6Lq;a~Q5!L_2)!%EjeW za$q%vqLpc@>}bArcU^BAWwh74^hZo3K3Lj>A`XM)krV+K5op1xDIfeA0ZkGVlhkFa z6n`lVOhv7NEi7;!`M&?zYNdVSB=~Xc74E!&6$U%T_d(}8u3gWc`>k|QKy$u>Iq!J7$L4>IpQ-ILZI0wu;evH4^``P%13%HV% zeXD}tYRp)y#e}sI5Z7kH5HMP*ET|v$gwpDlyQ_3>^!XeTJ4h=^E&e*^NsdY3?&cW@ zmn{<(FW=axQd7}W&{)wwZCB(d)uFy`lG5=4>Gel;m%NOZt$p zty1x&f-AwE`h~WWR-UPJJ>aYV=hwky_AN(MU)Qdwx~^C@QD#d0&)f~BOqAVF`4k4O zjQYo&Q%kFU$gYUDzj$nY&dVEH^ntykZ}5X<1=N<7fu7l^wnRupcYf7q-6hdVh48&5 zlWEbw(j#3QXqpqTZpB(lMeLpm*U-^NUlo%$!8wlN7?~DnFv>`vom36vPT7PoiwEE# zL7LvbIt&XG21ru_TF_1lH$6=TjHeK-PHCzYE=>MjZRO&-WvgiVNN_OBi!=l4WdH#U ziE$9x2Ez_Yg?nBBlSc)$AL1~zN2mQb0hVQ8ln^`S0!h2>bWTOL-js^gEGI2Md-({x zKw~{KrW+U^=4?osa8PSdtVwaiDg3N5oB7GVs$pKP+L6LhwR;=Ozh00xYAdKc>y{Wx zPoxJF*6T&)gn4)paiz=V6g+1 z2O@KK5hrBnF3+{Tizp_bW`>PY@Usk3K}=u?MmBf|p*%zutALNu5Fh6OW5ORoAc|xj zfu;x;=>k}u6lN^IOF}uzbLR7?l~s?-`LW4*;-({h6QCAfvY=~bUtD~=wtry| zfl?1Vbq#JD37epx?=UEPxbb@$b)wxoW+mazO-CHTNxq^5qE{OznK9{cSS{QZUTU$J z%8^kIj*-D*?JvL+D=l^pkgBgbiA zpK_ktikvxZR)@EJRz802)QOdG1G9aevDa6IHYYt=&|kUbt(qXI%W=wD*DVd_xQ2*7 zuVhxJgAtJGQ-+2;FVhE{DLv9*0Et*NY{hmp0do$C^S?#)&}t=?1<)Tw3` zt*J}l9lJo|C(_8{e7QsdPrMF6bO?-G<3p{X5+gmI>n(>i`}6hbYLI3PKOtxWhtZ@} zX>u@H0kk+my$*xEvXh6$o<*7<4F3W-0d7$_jCh1N%b0RB3J6E}#=rApN6jF(<9$$H zVs#~AOM$robiB@5!y(&P4_etbIxI3w9*=^EcQ8|fE>Py82s%wcRFE5dr-0PJWCE$f zHx}uCbF|u86lWbVb61MprAu-A{Cm!-PX>%~{5!wZD+$=`u0|WOx5M(quo^NjQ#0cS zd*?Z~a(6vdsqrEqFu7a&xmnLXNJwT#D5?7C*YDaY^@nWtd`)ldYf+~nH+o*!u3gf0 zdqF|TbVKW<154NQ)8DMxHoUxJu1?FIu2RKD>m4wkfsJqa;Y&N~1>;EYE~Gpw(3{~h zvZ~0~Z;^oD15=5l(Ar4hClgREd$tdMfn#_rGIcvlaQWFp5|a-C5~6VqDG^*50r8_l zALGvs^JeBjY>X|^0Kw@OfU%S4YU*(=GWnefrD2i_)7(7E7Zg8xdcqVQR{Y{$T(D7NZE0yq z3#&=UVi5_#1Y&_4FI1x=2Ahi_)wUopuCQ)EOF+Rujk|z4nG}_9eN39rCLA6gS^(i$ zE=Q0lhT1CJ+t{~5DNP5FqMl(t9xUx6H?P7tB;s^pa3-)D>qJX} z3-fN!oC*KXuV;ATfOGImwWtAc^S0y2(*0vqXiz#Gq#9*PxGebUQ}*t<4@N}`xsrnl zs4QXiye+wb>rCdGm>je$y4w6#jNG$tYr@rDH}9Y387y-SVyw$J+CGid6Mx@MeNyL| z&FrYTnGoLSdzMf#L+tbl4;VhOs7ghSegUHi;`JjN$_w=Nl>YmJv(eAtmI=^;m;n2*sL(UUaR_eXD zU$&&(CFray!&*8FVZ$7!eDmabUs=sy04G9S4)E6e16+b5N%} zY3PLo6-yq4vs_Ck^oj6ejm;STKY)g`?joKMwB<6aj)d-^%K`CKK2DRf83C?S;TMOy zj|hMZ{R?RMlQ8Om(Ez_1p|c6AF$UU89oQ`k3nZXO-T_SzqBaHQy2DfE<=1)nfk0!q zD{19w)f>9y?<5zuw^x=-tsgyIQSWT_c(s#Wpscu5)M}-xV&9DoXBF|={n(LWGvZe( ztv9$&U0-v!`nHM2>iLOk$ggbR^`|ydHNEU3ML{mcpB`19R_@`x9floS3(s53NI$*t znJT$P-sN=&`+K_Heb)oAD&(xhm+K0HR@VbE3~Z?=HTnI%TdFd&&%P%+wkoD~OOfH7 zuBCqhPAwT>)<>Weuku$tqs?Qt@sJyHh#(~?VFD0EwXoye+fD*x?8tJt+W`z1{xF&_ zXu^+2#|=ngE>UwzKr_maH51PhVK6o>*0Mrrl;mqQUT`qxy&}ZFO|n>}K9{_UqlJ6eYG= zVR+;mvx`C3!`#5`cIl6EE+E{5Tc7h!LFsg`@O=tc_UQmdh^x|KSTHtRrK z9<0B{(}@6_fR;ioT7DVjc!bdXhIB!e!s5aM;E1$7#tX9)3M5=6I4Ov{(MX|bABRXK z6oI4j&@M^X*_VtHJ!vBxTy5|TCl!Ak3x4GD4fBz<2Cqv*?2&SO8d!m-3W6c8KUI7W zutA|x?b=391fEj%Ym!e?@WGh))-=wJ#a_FEO%^R!6n6Vg+kw9A4V8h5r+sMJe?LyT zd({gMa*h}KiQ~%W^nQJDsoC6WcjZtYzmSGyQJ2his%EM|)KjH!=FF<)v50@q_`o*h z!V=Yp6{jVpNM?T4_fa?d8hyA=UC#9SnA%^h`K=cR8m`HDRgS7`0J4j{ai&XqsJ45c zqoOxGlv?nD%A!y>P-7Q7u2piGcIYk=x6EA6RA6TW3UP&~GZ3}Xn)B;s{q zoWFF|(6d>#^@F?4xrSZ)Q2*V{MvZpcih;_)A)kffm==hqiMuk@u9IoUsnWbc&Qyc?~G({69{ObP>yhuW*vgT1h zI}!oQ1yD@54<$lJ*vN1i1$PsU6po`RgdPYj{tp=GIR`7`=&a|A>03_6=bUzUHER#; zYnt-vky~bB@^jw(-MTi%M|y_OhYjE2wk$s){@3M+dU`P)*T1@^RCL8RI_o8@MK(;U z+!d$$BG$ckP4YS1d{|et$)d@9+KFT9%6V_p=WE@FI#Km>S7vF~`P-*z(hcouOzNK9 zlMMF@DcqU1!y&glUUdgb-W;k@KRGk=f-JO>|Id(H`)&OL+`{Vz<}DQ)mO+z%GTA&H z1$r=Vf;@`G+ls+N2-7mHx6xc7l5=O84$yWd$q`nLhsmDD3avdr-z=&vDLO%jJ;0DP zs^fu`vJl`+LV!)lcvz0N)+A^gNP)M5Z6H?WShJ(Kxcdp>7z7vzz#qr9IkU)Z+?To9Nq$Q1wdKGjhOAZf%8qIKD{r?zWCsr{KEi; zW$Q9~YP@0#rp4=B{E{ytJ5feS%3oHTc_K!vQ)zH_-Wv#G*oD-TxQ?bq>o>l)leys% zw6-AEFgk~=W>8X5l2LlUdfr4e=YV3L{*Sspy;>Z*_mndopGLd4o!`-;em{TTWOcn- zrSqH>KVR;(IjDBW#T_uniXePqHom-Z_p5EnAVdDy3zg!&R5v-FFU1lz*`Ubc0GgFl zY13dEK7t3Io()WBD@-?G%O+eC4uq-ZBTRQBb0}(ds4u-lBy($_W8?)(EU{pw6D^O@ ztf>+YNbO~q{Qp+~kzV8m%cICEElE;bB1zBF!5RqwYdmokt!c540)!P|u@t>ip$e(E z50D(uw3d%2S)fug23ej-bWRoFJXXv(Xmz;JH-l%cC2{P@u@7F@)i&RIzr5sjTX5l3 z1(%z_DSj%3Sk;O7`Xj)%rsnU1R=4J)sxNjwx>RTsdIhGrPPqYF_%z zf$g3C^_2%oYc>R(ICCLnpI>Wo+Ly80%@g(yop{`TS~4?DvViXqTz230gGA8&%s>1J z9iC~;owv17<_c_Sh)|)gFCeYG)w+2mquO2~DB0UiPT=k4iQ;_YU@JREVK8e5Sjbt6 zqAllRMVES%EGdEBSAw36AQw{$zC}Sa6h#RgWM!&LA)iP5Y|Wk+MdyG7V}Wc~vW4k0fTt4QP?3!K)Ixv1zE$Qi3wuq45R}>JrNzM z!hoflS@4Xur-X3t`E{Pwmbsk}byh?A zX+@^^`fxe7!0!ti*=jD0X3t-DMfTf-l;@4nOD-15EVyR7(@fA=A>b3Hyg99Fe;koO z+1xYgv9GszpKNi>8e4EZ&SF;Ep%rU;OT=fw*Mxl4P`VQIBxUbMqX;iag}jq=-_cju zIs2e0{@^X24cZeW0@hT(V3^BW0cT#IOPGMEuJ67do#tkT+{E(@+tkmt|wfaBf(O+Y$>hH`3Cbts7MiH-j-Fi6;r z2_$kf4EbSHmblZ6eSltQAjpFg3BUgbu*+s}gi~O!dBD%%SCH~R{kjy+Ap}i<7L(db zAk7ks?|^d-9C<>;5nKqljgSvQI_5msIuQUCR?fw`K!SSV>Ujxw{!X-+@oBoP=IB|Y zh(9#8od3&xlj)pL>F(_#KU-T{vmIxO3mloV>Ytk?1Wr|V%n(#+$9AU{+xThJ1s=$e zY2T)7cqwD&Qw^6`)tbsCC$`%7jr-X@PkrTI*u(ofK-v3K(Lu(b@#7U!>hAk(^}Jp; zcf+Hsr?*$UD4y38u`%`Hw&YV{FbzV^J|HxrP^+yu$9P>Imw4Qh;R>8hPP{`DF<9*Y z8qenQ0Bzem#Hq*$Chr1gl-)(-Wz69aaV`gOD?t5m7YF3n^L$E(jVS}-C-Q4?g^{%! zgq0OuK`1!U`M(}@7vW@}bquLk%);s#KKM&;X`Bj1!q=h~ViAm(jy>-L{cN(+joUTY~>n&{WOp-HLyuR-}MlXjMNJ>eRyZJgOKkp1Sv z-)p2gVKzMiDgFlsT$hNCbLo}aG(2NZpX2M!e zGzZeb>IPFV%+=9^qH1O<(PYetspte|K=Q&)=0Pj)<+Q*sy8(*eifaKDg}V|mk%YB! zmBCT4J-Phr zPGf_e<)?YOuXR{ON6ovExG9OT$UH%5M4dpLGP??V-Pkt^JXPIN&Rf^7EP0?U2U6Q3 ziV=Z0Ja4`vANfOnM_^z%4Lwy+qOzX|VoyJ0z!FIlU=+h!DNK5#1c#=^=@6&DjTC55 zNO?fdGh~6Y*s;+pjxOwain)XcI7BMaKZdV$7n#^lgrtl|JghpfsRq74gXiYD8Dg5P z3lq>nL3BZS0&<;kOjf8KN{!z@P67=*DK6E{1bvYZETt$oD3jaxm-``chJ#1J+#Yf^ z?wcJ6jB2W+3@K(*3&Os+8tBhDnG@`V2{;uPTMCs;dL}(P=^JzA@Smf*7o>Lh^LJW@hMAxYq$7Nh`fMB6nW5!QKBih)g;j|!0-PB;IqlQ z%Y%a2I2laJ6@=t}Nx>2jZ@EGow@51F*qHotz=m#UVdqT<&W%<4j?DyRI%~`KO2BzA zlz{L-V^t7bNc~dx+`HW46}?LKhZPR)ew>_f#HYDFZL5pjhX+-uoBi8*lnM=^0%pgr zztpRa^qe~T_@*~JUp_mq_N#4>%!!~o{U*e&-MinvtA9PTL9b9oiT>p1GX;se4ec|_ zqpEV9R}Kz0>-~{ef43&=<)fj(bc45V!gt>{o^fRKn>JV8Snc)-iNrIY(96149sfGt z!z1-m!IhB6>`fj_MS1YQvE;*-o+n6<6i%yip=+O5LV!Ov%=r;#6Ehm)38gwAx!e7KVqr;)Q zIex9!bccL-34g;mvyxM^kJh})9M^fe&biVdvitA^n}+%`0a9pJac};*><70tu9r@J zl%2nDWaN8#R8Ko~=ZV^|3E8e)&A!=s!B>knFLrO%W?v0hP`YER)9<>+&Ch4YzO<{Y zF0N>ZJacmUZ2sNG>1z)^=rGE#ZK%lF%-vu`dQ6aryVrALf|X<*C<6F~_n^ijtKGJ| zn4WeDG2AXsp^;?mEBNdOLt3yb2Q~o2p|o%TO-C{t#mpucw=Pe5fOv>ckhr?mS`dZ; z(NGEMz2Zl1pC4LDoaJZ$np|-1f5I;f!f~Kp0IWg4BjWPKVecjejt7oMg7zQ~f3Us z<4}D7J_C%A5eZ-ZL(U47Et%1;GrGpc?S0&nuCS?@J+>h)_BIU(FTysz2B&@3f4UoEr2nT48e)7+ZZCqHj=X?yuK z>ix-j4gSnM?SJX|pLPsRj(cX3x%%bT70^{3#b;v%u-A}8>lB?_YtP@7b*#T(#rhr?4kl_R9tU=BosBhKJVZQ|Ml9&rNRHcjK!LSa zNZbq_VQEiOWF+Al)_Ja?%Cug~?l$B>MS+#U+zhMZ4Liai zxoDKOOenUn^njwpEQP%QFfJ^O;%L^#AY6SYES=!q1kKKXQiy;-8lN$c@T;RdxZ)x( z!M8}z;R{*7fs}CwBCwVx6R=?jXc9bT$b6l%c8S}1nxx_NPY14r-`W?sEO3hZlAw&9 z$k4B^x3A51HgG_nJvOPW;6F8brlREbneX5F!fVLyb$&tqfj?(vs*y2`SyTtT$E$}! zZs|?@@Y=uCJKxD~lEVmJQ$5`Edqcy?Gs%uyhMtq13%fItVrNHgaQx_}l=;qi@5!Ns zJB<7)`6;3flzKt+789+{VU3;&Nb1Ns#Ud_UJeP?zJIS%3=@%4J&elkt^VQ z)?>!|cB7IMi}#c1R~GGlzr^9jv<0)--Q@wZAw35 zPDEK$YuMJC?61ocO#kZqvwj9|ukyd=?+3 zFaEby46FRuzruMH@0QmA9tGyC{(KS2;^4Gc3phS^Pz-G%++v0cR9|2t9w?Iu zNwb~>AKN%5%?h+D)(LZQAqTnXlbyCQ9oE=t6 z&HA=Hv-wZXLE5g=cUO;Oej7jJemP>QbEI#Hp}|a_#P#bp|M;8keCqy`+dc}qZOI^Xfr&R|cqephX)c@A6p zD%w}v(!aLUrK2|_+;ir3q#7WNT2=nY2hpMP@mi?5V2ONJ$ZT%VLJ4Vukn5E}+iaBU zA~}c{1WRgn5=K~{RvQ=$AkH$4glHhJ+%cE&Yyw(DqxUuOoVKnoB$8nHRGZTh?U6~J&MU0aNA{z_jTg-OdH!}1rY~-Rtd*pK4N0t2mr-s z9Uf9UryKui^w;8}w>rdUo!qh|G55@YTar0vZ2#Ks>Nm4HH)raJ_Ki0BFFqt}uoh>= zdzfr`N?Y&d_Sq%yd49iVY1Z7z?*W^dGF`HiyVp3KvHcR8^XSaeW8d#SJ4&W{?7UGM zIPz3oCpld$=xggP)%JmkXFKclr#4Y`_WgP@o?vo>5wKMkCrrU=;S=W74eIPqI zB3kujw2**6L{SaD`W7<#-sKV5{H`mijWkts$uJ0V|n$I5Jn;;7^_8_hEE$G=3*0}wu1-nv(Npa)n^fDlqb%pcy9Ktp-?T@aDGpamGuz6L zEiIUDu6sH1prklrhkDE_o4xqxHmB;5U1sx6J>9yx@p4xUcsVv$->tp&bNF^~6D#Gy zNS~FPTvX)($?iqo?;pVQ9i?v8#x=5$<3pWk)@-^a^0J%ZHg{vb3QCQvK(}d_ni+JU zQsH#e%zsz1szv`IS4~Lx55OV({t@3PjlluBKW1b}Id;Jd_W%-`m&?=ON(8VtH9>L} z$pOZ0X~74iF;Xl{ByDIUTPFyCW(nanbtoEJaJ3mf!VQDfqUe+Rtw!9<@H)=E61|^cdw0qC~)`w zlv{4+$NppUSnhG-yTO7(En9LN`%N>0=ZJk6dz>}v(xyzKrq!mdjgy9--%fu%WuDQr z7lVgyZtu7nuX|%y#(iV&&rfgj{=A%%y!gaRx`Hv(uS{&2noj?|v?q#orZ<&ln|t;; z#KW!>bV5KNA89OcTaph*BCj-PF%PRFITJ-wbuhlcYyw*rz$ukL^N=iJf%m?dB#47N z=^dm5s08r(8?X&)K$lQc0OdK5^xptaQpr$jz>_rijqnyhnS&%vi^OFm;rL-{W@}|@I))=H-WV0} z7x)*aP{@z!&dz$}=aNE8FRff#*uy^GSSRCrAjtFUx6+%Z->W8$+ft2Wt70=y_hhJGO-6xOzcT;rRyDN$^U8U{DX{g2rX5uZ>l7c|_FLj_ z&UOcT9zAOssAYK;HkKOejw6T;Kc6G41#njlx-=J4CdxxzhYx`43Hvr;RPbqL8mI~1 z0>35W!Sf6_5N!APFM|` zyVjy5_gBZ#5TokpQ>N4gnye^@)$Xq866nA5yv>%8((W!2k5wZ-4+%>Fy-l6RCVZ%&8=lW!w>ic6nd=|r zYBe_NujXVXJ1QN2xOrez%{*e74Sb^SDSN}5DG%nBEZ5)sm3Tu?Y@!hdz3P<){5jeg z6U(u&0FA|y=Ry4>`E*=)OAdtti=lAEg+UXoCNB6M&XE_Q1=8T9@Po%llFp4o5+_)+ z7_QbLtY7EZ<0H0@gbS>pV9 zd-Le^-1BG3oolq|2}|yJ&YjotknL1+Lhq349_NfQ|2Mf48*~L?tKGW&r4y?9!Z)b; z47fy41)RjEr*_CI%?Q>noSCr6@42&*+x(}|ug-In-_X zh2oG=Td8ALU>)~IG8a(b>Pm|Y+^yW#s_rj<7%TA^u)(F3QEWxXcuy|2iJS3&H zCQllcf3OtCUB(Nmi1e9A!s-+my499JydbGQBs_>@Ns>m=5UmbyFc?cEqf-orBZr^` zph@6AL|^5@Geq1}HuyDIfEF0G$;O#H8gQH=1PPa5aBay*bSqeT z7I4AGmN(!uPT?s|#oK`*9!gmSN8w*W0+^%W*1(V|Y$#|Y;hpHfr|$Z_`zLl{1Hftu z%pon$`E@CcZxeb>Yy;hdk1zm3C}=Hqba+k)TbO&MrrG#S{=yaPDOK&w)g{~C#JPJu zf4rJ?wNb{wpv}S7f7k1)f#0s|QqJ}{Tu;o14==TCD|6DDD3zjDZ&n@Au*QCdLE)UA z&+m3A)qwM^)BBezRc{^+>G<}1^y^2Pn9D1J8uP05WjuSKziMmg zk<;5_{_JVn6SGRteaz5QTk2xU6y>3%&Q~PV<%7ewPncDdDu&nrC>xfh?5J^BQCnLC zowk2Swih8m>&AI30l}e-9ei+*$`MA*pdqd!xejc5qrY*EpVW|u!&L?P=D9yuh)L4F zbDkMXwg#h_iW|oScHt9t4&=_K!-)Kn3D|+2CPZ7bCg72P9YhfgU;c;Ik_KH$*j}*d zsI~@VZ$;Bze|#%B(W{l0uW|l5vtC-fzHfb@S&)pw+46nt6$RWQR^Qn#>vbR3 z4);#Yb2tP=`i-6~&@e}wK*=ym~aUcx0mOLd5h*6W|W;KFV2&V;G#=o8XjgDOv0KbvoFDryE_&6x5 z1p5=s*wK9IdV$Pas!aToA6%Qil;0K4b^7L<*><1gO$t&<{yCJK5ER1YnD-m%H2s4#zlW1k~m*PbbPaq5v-$A;WW z-@JD{eA1yYJ}jyH($n?>r{=`-=5y1Q*zVmj51n|;W`JS%K8(%>j4y9>_8wqtpW47l zp75r1m82>as4;Z~RMZK+pU<|&Q9=pW9g#9El|W*b7*(+id@Z(;hNxDpcv1s$eDV|? z_p#X~NX&+QPGFxlj9yHNpfvo=350k54+qiy&jbf{=oXe{(1>F+K`2GU;2|j*r?0{Y z{w3rb7ytly2;EdHgzeO5ZL;$KPK6K z?_O^+fv?P^tc3N!_sx8B))_bPt`%7Yc(0p-9w(UZqmi3GKkZ+;ROy2=|6*MGhG$~s ziWkppE*SP$HxM~&ol)`k`P=iB$kjToeE1Eh!gYr(-0QPmQ?mIvlF4N2Dg#oH z0LB}C=IgWHRGTio;WK{7)~df-^^;bCr2N;PASu8A0-=-+bY{AyaJq;MB1wsl*>eVF z5b-?8NXUIa(hy@G&^9TBks&^$>H}0x(pVhm5MXVC@Wc^=C5pj+^A|{SL@j}DwMcLT zfrsz{30P0UgqYuHi8El~z~;841z>mW((q z34acMh!F5gg+NM=d349z%|0~vV2f?)t-Ik#PnLQ(%}A>`>vZSKo|4MB&l0Un`yv|W zCKFoEk!pBn3hS!V^-Rdo)aiz>^*d%cJ8EuzVR@VGwZ*(e?j*qY8=hA-l3kV>Jq|bV+o_Ff>S2yF# zx*0{B_xI+XN`H1Qvn64%*NVv9n(4)p?k}9bGduq^c_606h&nOt!2*|W@1GsvPFj)O zp6k4Da_4rbP9#N-eY(8;j`QgQLE-6!8{$1m*m~VHZ#;YVEbkusPJJp(^`5k&xMIii zd+*s5(+9%zCEFGnCQqtTj zAh|++gXYFR2u>6yuw2nB%*RRa2CT>s0ZF_3>xybuTp2qTIeXlg7x^k(Hzs4L^Dxyd zzj1eS?d%6r8oXZppTgb*oT~3@96$HExW;6jyM{!OTbZJ`LK!nlrMjk)c}PUVG0#!S zkOm<`$e1C?rBI~NJVlbqSVATGt#kGHyx;fx{-5W+JnlJXpL6!vd#$zCUVH7e*XCRj z*=txm_^VV(b!PWmL*b+1ADk~bm3l{fzf^U#9Tj0)5|ll@c;!d;)QgjUoOBGDUwkF2 zm;L$0U(o6mF&(F0+h;pFq_E(3QT6_Q-XcDO;5w%XG20~xIozW-V~490i{cAhnFx*l ziou<8`I_3wucg=n8I#P1Gz1ZSycI|ieT1eRk7%L@>I~yb7?h&xo5B`(@v<$*E*iGn z4uB@9x7LsaBQb|j{=&CLAT^-z|J#hA`{brS`kz1Of874h^uOnHlb9~4jlz#L4&>Du zTeDn}1YED3!#;u}co=Ytn6=~O>F=?^+y_11A0MF)`7!4?yW)ur<3={pi%2v>ajX88 zO*-X{E^!{#EKh02KH)oCCCc5$lHVS56jiMXOWC2!9>$2~U2OC{pnpZtM1UeH98&&=_hE3!^#yOw;6Arn(M5%BOXl9J#$RVtbc7aa3MW0A79FJy=%fjD zA74Hl_VrM{x})=Ezk#a$0QN=G2Q0Xp3o-G0P$Ea9R0n#<{i473dVl0IQ$m;F#EHyHto&SdwA(!a0fn6UTuX>;ZWAO>*}>lc^OLlLIiw1WT&FrUceZb_8zO&oPi$`B)nR+{y?n_( zP}OAM^nKtC(R`$$&Bnn@zf?j5{8120RA70TiKYXrTI8_FoUlrDQ*|ZqDDbnOS)o# z`$C`*xL8mFi|q)Bg2TqHmm~Es?c@I|WE@s5444oK{YVLyLmp#HZ!QhPUj&K0jAOY1 zJLtkvDS#vgGz~jq%Kkqf0~Rv`at96}K@tCjkvJsZmIU*Y(5<#B^t_(Uqxz$)D{Y2F8)q~POK>F;;jKka6qotiuE>L8z1DQ;qKS6%DRN^2U$ z+o{nC!WMkn@xjHV@lTdSF01!cyx-jEbI2g@e5En($jyo~9;)jamRDNdy_oi}S4t_W zCP;B4)n=j4Btn#!Xx>@W%^b zItu_QkLRaQ_LQn&IRMyThdl#G>1~|+Z8IW5m$;a>2ek!_Ub9zXkNr2~=o?~5e;N6| z@4~e%YZ4d2n}m6OtbGU}2`OV5&Go;UKZ5>`zCwe_U_&P?4d9gwxCz9R#p93`ESR4u z+T2upB>x|?!I!oCFtY*n`SRhwc7AYd@Phwfh}Vez{fqc>O5C~P!Rr%;+T#K*IV9_c zGiN_i%`4biapx zO8|I^To~2prOo!9tu7nw|7b?Ypc(W<>@qPyAYU?u?)a$DhIkJEcUJr_=!1?0lLT>OhHos5g|DG+&;3_e_-ze zfL9Z|4YN>bh#Cdy`%m_z-~V4fRPJaB-9HLa>3Tc`cFN!Falufk`d%;2oo6YouzcnmG38i*O&e!oL;$dBIB^%T%f<~rg$BXL`yec z(d71mxbX*!X^|{xb{7@UWAdhvhsn5jHph_m#jo=!TF7gf7q z)HM{9E|AgQ?7)x_ZzR-QzhD$UQ1PwLO`z%Gk5#hG!BK{-HMJ{>TlTQd7_Ybaa?eQm z;q3ym=@w}~eht%8{o(K2v_ER2GAf^o_-G7>C}`UKQeX$JJBU*QGr%C?;YSQvBxFK} zZVn&-^s@R;pFm`8gwgI58%jmEFqg;DOsFM2XgLDGNTmVs=wGgehv~S-qmeEMj)EsO zAz9e1ztn@s(P^AKD7=e-B)mn_h2>Bv$QD$RgaD(HAl(dF1qSq-U{w}!@iufTf(T|N z9$_F8(9{hu^@OcV`!sr!6ZwSo5SU)y@`~Ag%QyU>hGREzzE|_8#gQJhvU3$feOG!; zG|nj46|-IW%tT{kdr5u#)`lVNULVa#Tk$4qTeN7ah^64}_CsYg>!gxfsCVwCSFfwL zD4N&$on-S^Fis1{Hlulg@%bI|&HQgfTF@hDMh_dWN`N@@UiWSq+^%#pZ+~&AZnuul z-qqs4^lKGo4@>Xl5or+1lywFhlTep_gbGLitYM7Af>N>Bn{a00Ee50rj}Y-(aEXAP zs0;FYWJZ53s?KXu0zDD11QuU_NE||f{`xtIpLCp^1s;}<;o|tq%OvQ9F~0j3Nc2}Q zQ-a>w8KMi5v)jQ>`R^m>Kc20$H4#VuMP*~L+iOkeufu}b-xugND8$t7M#Dt4J;>3k zQd75Y{n(fNSx(kp%tEoxdi&=|_b&wl5^n4j+n!zP@>HW0@3@t?lX^d`R7|Ln(ppt~ zOqyA3@KNbfit};D>u&M4I89^a&oeAIKN4O1HI#A;?Fzlx>@GPnK6z?a|BylP>J9y} z+@VkMart4o9|DYNu*b~ONmG@RTFu^>dGg!`!_u+nKr`oYr4i=HYZ1SrJtOD2iZZTR zbA1w{ATK&eG&N>o$TOTP5sA*$jgY{&3)#c+ySc|L^gSLWVr#ol%=s5Mi4MJs6e~9_ zS^wmc9se*kwt+%BeRC{#Yr_Hr?#wKpOdxC$r(c{?2eqR)*5_t{r%$b<7NlJqFklk zOn28WQ&a7mT9wQ0n*>;ErIbJA{KEU@q|%r6+q@&bF$ z13RVngt|F@>42brnOK~D59A3Qz#k0&&I|cTZR(J90F93vZ&q%t4Bjj5fpKWNOO=8g5G83U%kptS}QzFFdmQ^C4qbz22k3_fo%c`BNeZy;!-kq1MN8 zoev5~g*aZLIr+bM{)W#x49yE+Xv9Pf6+tP*#Z19|*tm+Q&tsV3z5{lrhXu!gJZ`iK z2Yn}n0mkaMQoh40_L#h-5SUA8@4%lP0}6$M%>e?>@H3$AvM8lk`@x306nbPd1a)a5 zVF|_%0|)HK#Z09T^jH}#DUirXKoLDS0uRG*i3&#w0XFyo(+rkIhmo}dNFdA3{rwXWV_>p&naVWH{MUqa(c}L+8uQIhwQdmoJwOe%p2G zY9C>YNkfKNgvwNNUEP11t;3m^;CB@bY=UQmR6Wajf`0sv$`A-_WJTJ$KfHHH`>5u8 zFwIke-Qga&B%tGl1HyLLu>=)Bb}Ao5EmLSZ4(bl-oKs7-0PefqQbSMAB7kdJeW{H0ZmGo z5J{S%EfcDanJys!D@tc`IEAhvPY527gtm~21tZ27UJlllV`qPXK|jldV#Ey#+_G|6 z93YW`&{51lmZrBaU;z^Ln(jX@Ak;M-=I=G_23D~Pcq%BBy0~^L36_<|nh`pB&Qmok zrn^QO1*5)*Ubl&jDQVg)`uXE{kkGoS$l7$f-d~<>-`ieX{h08%v`o3x*%4QoI*?X; zYH!EUrC8-W{vE0(eyw(nJ2VH?CPXN#YubG}@7Uc#+q3U$`lW95ZQbrzUvvrgLbTY; z#%AV4`0$O()mw6SLt^h|`Hm4kA85pM;u|laU{poWBTtgs& zB?EmZo`n>a#&S&zO0Jcl$gl$fWr3teXck0}E-;RT5hdt4*xC_j_#oE-FZzUs7srpf zv77O7bt2~>5F84j{H?+_VtoK91f0j3z&e9H{};HCN+JoABVC9nn)^>8Me?6BID&x) zJXQ4sUvb4;!$^%|g-#yi${NrxT9B|VAMy}{F`En`hW-zEA@v6|V2qw5B$A@kVJZ}I z2hqGb7Ta>QJ5RB2G$fPl%a=|IPx8VAOEw`fe9SByD(p6s1b&_NRB}0O7djX$58Y=qN z#onc!`yew`i3`=k>qE&g@h%H$4T{f{j3#o!-WQ16U;@J!msn;93F<^yvn|4d2#&2k z;m;o#aO;EmV{(V8ZqNOSjG+o>mBRwY156#<5ep+-?5;&*$UidVZ}573UyP);v?t&4;BEs;zwtr^3vRb0aV$a)UjxedWK}*8fqGzjYT7PLZ zG`okp=PtQx*>Mg6I%Y~{O$YFH=z#aj;Q^aTp{Rk}L&Z^t?Q9<(zvoxi$1Gua&bIva z%yIKC#&r*B)vjDX$3LD_5c<$RfP_{+)4;tTpmHm;UlJ7f}s-$ zvbrt_)uyqd@;C&ovSoY`vNk{dPpz>dI21&~Zxbw6z~)mSxB|9$mn2Gp&?|&;V&i{4 z3+Gt70g!=h@UU(Gw{{7?AarD7;cK8Mz<=l3_hH;ZPXe3VKQm$26aNCt-01&|Ap2H$ zz*v{Qhyvy`>2J`z6R`0?jpoJ@{y$-0VhDn`j?rLb@Q1TAn6Y6sc`Pn(dxKYt!}mlq zhx-gQXyCY#ec9qG;wRnmf_X0!GoGr{1V$T66)G27Dub=*!F}@8Aq?L3p6s3+7jLNu zarh|-6gI>6PS*sUDZ`y`6#r_b^-Q+64(qatjhx?< z($Wu~JzHL9$&XM&#%l%@-mvew>%8eOjj@-_j>hVZd$?A)MLaZ{%#hl?L?!EuOMi|q zhHcH5I5mqSA!k1zL^49)k_LW5&%pErlH4Zs$&{p@;6>jB44U0k0%X$ROv2GZS=`3n z>w~#3M`%rC#33{k`uYD28=(pi!Vg@}kmyo^G%WbX?n8t4Zz$DWLoNvq8Z9(}69@&< z(Ev!UcyQ@iyGu`S#k^ARDAr`KMuq_i1$rX+3vHre(HRmpA@;~BNGiXMrRi;t2Kl=T zHO&r$xw4jVrJUZaFhA3%s~{t&c<`bk=MwK07Y zFC_?!gvdG%V$J*P#{lRUkjMtu>EP_dSB=|VSqT;IQ1B1n#!R=u@E>{v0kK$ge?MsN zh5qW9{F%z&7zxZhaFC86P$Gqr+Yl=5S~E7$0hc@m4>p1c8WZYN$RJuWX$=ATfObhp zz*zaeffsfer+bgX^JJ4N*qjLr73izO-}34}Bu!3e&j89$+HK&z&5kcmlc#lqK3Bwo zwJ7p`h#~|F`SKT_+xQ=NMSXi`@N(gv1}BkcjE|Bn)lJhE$6mb;YudQW>7ti%m66w7 z%P9rI7@0Ts0j<4kdFVKfAK&g0^IbYK zqyDocs{Nmr&$$dn1tcn~dgTTOY4PoS=2ZCE!~j-LjlLH<>Cv5)d@|%!gN~S6=+yw~ylg#WVOe=sj9O<$<9@eMW;13t$X!@|}s zFm9vo*9$cHPb@(PfU!n2$TU26(qCMfagk`i#VDRY0P6(Y1v3ym=jV=`p9a|n7ZkuvEw^V>1)?fpH9j={xI=wf4rW1;eF@w zfnKh(w3e7NHwCGJ=$Yq@{J(@_=Zgj8BYjGnz|OXd;g&}YLTwZryxja;O+`0xbk3o> z{UWYC#JTUijQ@K|rsh1eSe0NLj@^OWDyUQSA-1{vgDCHJv^aXyRwpZ_9MMjx?HE{jkpINHM@Cwgi!)ByT}~EnS8{cm&`TM_Ec2OTo1^0f-j1@qP1>>gUR206 zq4?yEl)Rhe*UJwTiEc>=enBp!P5Y$p;qFlPuJuQ1;_bw*4SY^{mi{UAb%sHDYWnn; zeSFch)mWa&06+6qM0CU($69wL@9ppUBdMm5$#FAJd;A}7lQ9?a|2nw+=7fq-{-)$e zYRB;1;IH?R?Ck;RG`2I?MpS1tQ2bo@HiWjPhr?y|a>IsZ1AxjNT$vQc5u{=o zP>{q3W@n^V9!%!YB`71K$HF&qGyP91kCxPJ;-$R4HgvJ`iH!uiAl33Pd;oYFz61LM z1BJIqZ@i4kz%~OIX8sS*aSe|W5Ip9}Mv*oEpPuk%vaGs59kYGBC?>%%RC6OdnGpAe z4Ee$ydA9#%l!TqpQ{f071Ud*HM0#sg0__Q9_G;{&Jtd)OWZdVa2(Ay0lEc2dGVOLu z+HAO`W<=e`$*Gmwv|*_7*ulfu&l`c4Z{n)U?c%FGym`>fSQK!9V9QAhs(R4c;&Gv^ zLFA_R%`IWH2iF~D*%WQqn90bN|$e21gd-B{cbuo%F+==!DBew8Y*6;lJ6er=0vDC3O{I|m#!i?3Ku8vcym>aYmMO6?642ASpGO>H;6U3rD zbiYa*?mj0I@>aJ(oA(K5jV60QLBiA}I=~u5y70*aoHG5>w@(8p?>!=q7L6t96hfk6F4ASZ58cT69e}8YS>@;YdKYmyZ$mGnB#C?89}Q z=^Ne#`|U5nozDpy9la7~y2SncHiHk&^vqU~a~{KY5;THtuI zj{BDSmK}vf<71%;WKZ&aO~%rmP#ie92v!8^C%HyBpZW5^$Q&CRYQd%3RYF_7>Ri*%nBvF~&%6^j5|vDtxed`U!A#0YUbITIrRrNl8g; z-8fDN)x>AuMigQgD7wJA&`qlC9pmCH-3fJr(Eqkz{4*wiAwv`eRQwC1M@zMA1x$1n z{5SFc?*v0DXfj~rfqzUx0fRn9Y9Jac`~z6Kp!}6SB)Crx83v>x0iob+1nwdG_reR{ zHH}d5D1^pCiS*#FL>X*Apw8Pkv{eP*rS_0z|3=aZ$_CNC|&^|)w_(#F|Z&ih_< zA6nO-&#{~Hig=++dR2A-b+jDM&x87GTW4EC9ra%FXvd)p8$z0Wzce}TM14N_Q<8R{ z`ut*lOLHlNeDz4zaGBX|oT4xkJknzOWLewkglWHrjLIe+)tsX#w8=($p*X$pm+N;3 zwfBs6n9yYUtoMW>;jj`Zg$ruzBWV|P)2>}*LHD=QyaAj{H*|46kR^L&Qoge7B(D` z_OO*c*^ki*+?>!o7~;6#LLX1YGWRCq1ZBfqtpKnl0Fmr4 z8UU=*L1@XuKpI=7^S)jcXRr3giY;BI?q4!5@QvC28PA4@=Zw`AJ-e5oGpX2E5Y5V& zJh)EA!N>PRX3*fNhSR3x#ehCqvjdKkzg-RAQf_~3tem!+T3;$&dh-FtuH71L;}8G} zzBm5Bqmh+1n!J#*klgH0Z>PC|Gc|#OoLg#JS7B}FP3kH!`ema!)aEa(;5Vzry3%(r zWvI{oep84=bDrmua}&i;f|Om2QbcpuAM(kWjdP#!qq0%r$tYQs*Np6QumVNpEyDHW zFauJx?kfZ)g66GCbwz&6p5g*s6NBEHI7~Eip1uCETl#eHIusk*0H7d(0!@ob&K{^!nq=Nf-dcMi7YE9crZ#x9h4*Fc9M&_3F9kTIKblMGh z3uaD02h5(6LWB_}{k1t+6;{+Gyj6fma)i6Uc$t_z6C5{@${v}wJlGs!5+vizc7VS> zZzzZ`0wo93cYPd)lm7vnIa8889_xPp0uAg1IVb@>6$5R8poasCs54|7OTv-EpmT?k z@G>B4LtrMlxIsWaqO&`~O|{1!plJ!szr^rPW{r=y0L=kgG26y^^77sXKi8kWXjf{f zX)k=j*w7qgyiSC((^yLTomzanm3Zg8$|2=<@-l%c>zjss9KA&!re#kbZ<`*pUbG2X zNJ@BJhWB=@JS4wqS7LL{!r1Y54mH|3^`aJDf2zkj8RH@t@@#GW9Pc-N3qJV7J4khF zMcI=H)-m4SM{T69q|oZGga-2*p3druuu3Y3rbPq?!mgEWd16pv6caWhQ}#6J(9|$b#&MIQwQFNB|#ZzDFu^C zP%@ajQGgAcVcbRm*@mf((U1pMCjDK?Km9QYyTt|#hSnkijSNNAwE6TY&xspJ0+Xsa z%u(~7=L{P1h(i&Pe2>=$Waf(eV~W_nR!q#}0kgo5yT9`m`V;pj3jRhD@Dn3mQp&R$O|N^H{YlZbZedD8=NZk<8gai0fgpGn> z3-*g_W!S|{KchLItv#-XQC#0?4UlkvzxUAtNq!h#Lqu$eAGDpcPa6rk_(9pKRq~VT`xo#T`wS(oi_EE2>P8 z>uK02-5u-J-RkHJ>WZ4yx!X(~`><#~JL-!%Cow)xI4H~6Wpcw`-gX^goUWnfA|~c5 z_uZ4F>DLFo?=QC<`Donb{&wo_{I!5Pqk)^1H!O_LZ@PySjX*^5Szy5tbi@qE73`5UAqPBw0hgW- z6Hp5wFp(*6NkRx4vHQ?hBb!3CPXi@!s4KOR85S*Z;qEb2j>{vSP-L7m2sU!5xh>|o z3iEC7;#073UzZzD3NCRfTHP5>4nl514>G@fwk-FSOvtTB-t5-`4{fg}>Ns9idm#K! z`e2n*>FaGB51kS#FIMmEVPx~JZLh!jT69zesvW1$!=|W$*wiq3m%;>&SJ|Uo&7)OU zJ<_%)%xqnd<{65td(eGv*-iFBQ0u+*OW6nT;uZ-KHFZDqh00={{E~fgM^aS5h>2UG zL|-T(3o14z23s1H%J{i2dxT`(xO7OyDuNPHGJWw-2HqS8PA32qCs=@tSu0tve&9A} zuy|BOC9Fk+M!;?(F6_ceoCpPh{+f%+jF|O!hDdBtVxT&}y=a;?o&+sGm;(9W5gkZ! z5=59H4M^r_B*v;-1j2sUReo)x%Z2Ggn5?9mljtEyV0Ux+ThLpxpv0%LEL=1^bmk;U z$eR^$2BRnxzzkjkJKr_T~*g~ zjUXJ&8DpJPc{#mv>yAYnYYjRzu2}rNO3Ouq#pBD6WXaq5qcY4}m-@0Tw0Z{6Fvbzz z+G@P_UY@Ye-_-95+wFC4Qxqs1cK6Y3#2O4C_Xjk$iJND1wB58q!mKuC;?F z7POy=y|tGY7%LTsTc8Hx)YyH|*QdAb^V_zceT$%`(p1&Yb&gBQekKo#5`DUEyp3@b zIN&v#vv26v!1SGDzlGyR7KEr#zJ2uy!VbJK)F`WU{`nz8bW6cw82o>O+JX)d9&M zrm4s)*-#Q^UJMh$$SK_dh@)j`Bd*7J!Fip_08iRO21!hX9YA3OEd6)Pm4q{}kj6v< z1}Fhxg8%;lFjxO20YZr8Nuv>P@W9BaHI&0?KFf0wMl41o8JloG(y;p|UNBk~GNiw` zmM4^u0qoLFcpL@E736+mGW_}1@Q3mpWz!{mEFgv)Z{+T~>v-;@eTc?mO=rv5EWpT^dY>X~2QwSWSR*Rm!#EPkm>kAf7%|X& zI4Y0xbg=-LT%F&Y6n@6*-vqtQNlU3-<% z^;a`>lUU54+`YJ9Z0s!&Qy9SC9B)g2*t8giVRjxKL@0aU2kz6+Pr}4MVg|i8y$!4f zSuTm`+X(cuh$MvyO$kL`hZ6BINOUeoyF&_rjAAPq(D4v@_LUHc< zrJ0|yA?^++4!Oy-ovU=R`1eCOl|5dDD>;G8!2cQ!e{wAobHh!4BDX>kM!)xe+Fs`q z>ZlUzFmGz_SI)DXu!Xa>bK8m3si!fsyjqcCzx%G7P*N>NQV;i>IE=Ez7@3>7qsEzt zIpoH@m6hO*2^1J3Y()UGBa8@mQL@pP5X__|LKwl*wxV!`jQl}OEHL>|Iy_NS@zs%o z78BxfD}UGMZ6cLX#z56hcVOosLN0%#^EO!ujgwcJ)GW*)iu16{y~@bXgeSFiOUkoF z$QPcNuM&IJy!%MdDp0br!zI=clp2KKHwUUxftKMTgpL7W>rM${4^Tfe^i~hv{Qa@ z+OSHrenrggD-p+t;M(K*PKvvR%64Y8+9)*D9Z|1)D&_mtwB&48b$7ekR>e|1jVHrx z;+pk%HH9PQf$BF7Cy+1QUrLIZnPch!y01@VymgcCwkuYoPs}>v$yT)Rpxw za4R07?fYv7)V^sqb^|f8Dtsqv0*CX+Sget+rb3=qP$_4Swb(ASQr~bicbFd6V3Px#za&2 z)hl(y(;S>>vU$QGaeJ%RkNSR6GhxX4-h5Zb^7-MKXU>MK{8HwZUE78)^2yt7_!`%o z(S7ykzT^Wk#MR!{Syn5I)^_qLx5oEORXj32O1a8C5HIV)SAE;E)Cy6--V&70~@TYSJhhwrk({yaTU9{cnuf7jM{7%C^lViC$0U(gTA}s&0<5|HGzc} z*b%giw`h;?`$gV`UXLG-4gGGPTiw#|Zt32^NK^SLtC9h)qq~nz7#dk0-;7UDpO=j2 zsS}<|_;~Hn{sx2Vg1#}ycQ1X|nOjkt&M@ye{$Avm@!RtGBZ*)7`(jP1)2fz!$rjbB zEn|GU2B@p<^XmPg5$hbe1#Qgp>b%(>w_dRk)el?vC?#&bv6V4mB5rGTEAQ+(t?x`9 z%SH{u{Zc)oiz=>)-i@mzNve5qa~T`1;$8 z9K{5et4&sVdzJO_MUtNp4VB4cm&Y_2dvzncG?gN~3$HHent3{hQ^CMcs^sLkpaF*X ze1Tz&idQ$Wp$i7+0h_%)^0gvQk3W17F&li#te?kYa^-x+=47SRxQd7On)#H2wQ4_Y z%Gtwt(K4&C-Hr8Ry2sIM5p(V1DGW~z&{8GN2b@)36s;&(t#8S|8Et4)SMkXHN~xG1 zzoJ%GTX-vvbMV5O)ts_3NB#oILzK zRuFxl(`g`4Z5Md`F7>^FXWx_9C)Wc|zO5DBr?@=c_Uz((*N`Z8es7)~==Vc3vE050JCtkZTTq z#7$7(IK{A41%L5Z*tIQD^=jAOiHHv0o1ptnFhVa*CmCk2z$O-!W~=H1y|@$|`M`MGehvSIs_!?R-?$YucEcQWCF^-J7Nc9KrZ2df-}mPj|9%>0 zdZ={APwHDUmDYjE#g>3RTq7)E6Hl)5m`?D{^h^%kCYK-^y&MwEY(8+V-PPxw^{6c; z^Idi+*E>Jtsvm58cyZl8)$_A#Zg*^TYzMDtJKfmK_JfgNH=4yL!b#$d4LhP|Cx=5n z2?|rJEs!dIg#~I|9n%FC74f#ZGmowvT9hX=HQiVFbVRd@sUW07OQl;?qVFM#{8rP! z!hJdyzOo&7b4Zw_&?WPb+i?H8TYDCN0z6BoI7odfOV^4(1)$Vj+S=$oCsr9E0dzJ2;KH~q)vf}gF+ zN}j#visxdC`n&C~Rc=Lfu1jkj_nvr1O5Gn(IwUb>SGU5kQ)J*o+RRO|;%`kyar0~A z#X2%a_VMbUyiR#>ywtqz#_$%K{x!5?zo!L$nHV4Wz!kRF?UYD_3#0jmy>5IAHcF42 z7!th;M{YOOXe+*0%smC8>^&CJKBu2tN_=yB*4LwzTjD!s%xx=79R1|LbtWVa#d(%k zF}Ld3$+Af@KW@1t&{(i#P-H3m+Z95xFRx8zTt%(xtB8P_AX>{l6RfpKDH)G zr=i`$hbTk7oos*>kr%~Ve`Q3TNXVf9AH|Op|5>>&;&0#S;V;HgvKpepfX`rlV6@=` zU)%Ya`|1}Id)6&^1>Cc#e|(|qsLKQD{=TBjVp->( zwyt;Ci=WwV^{y~$|DF?ym$DR3y(pMZ-qf)F)W^r~4d59Kq;K0kT?;H2xa2zfJkvWLxnTFlJ-Bu0{ z85M5ONSq4XXCp3MhsARdlO7%o$r^dJ2OnNV7XNseC-8Rb(zfnBJ8eBqn*gIYS$>Hbz4+{+s zhgaGD&T-HgS=W(sF+OncQR}-DlfAz6dXqn6sz2Uc$gyb7%IgVOK6Js=^LMf6Poo1o zGb`TNCkaJfy7lX&j`MS!elR|fwt8F$I@MtJab{7n`HY2L$8FomrHrG4QB86Y&1Rwc zCu4&`Ln~9C`X6&%t~|FF{>5r7Z-Bo zn#`^4S`{i?$G=i(D|xEhCtnRfxWkg*AVvA1ECgVqzw+nmR;Jk^pL2aLLa;FF z$#*xGRngHcz84kAM@P?@ZMgP#eKUr5T5)%Fcz^cq)fLLus0^$8Z*>=*m_65aPGsBh zdj3UnwDUl!#@64q3W5X23`wS=b4NOk^6e|$$qpTA@wmts<%VpYmBEwj-$y1NUAN#@ zkMB-!-_dB3px!hgOj%JE1Eduj&D}zdnT1MZ+WIN?8LK2Sus~+ zA~T%gZ_9Qae17l}XXJ$qU6C~vKQCI|5pE&IxEWY_p+%N%MpbP5I<%`fH2cGDSLGfq z9w>A5=fJalaG@ka+Yr^n{s z)b8!ktN(-l(BXfHEa$au`s?8LAm#^xMXa7n!(1(HiQnC^At44M7Xp??nXWjT-O~8U zyxZ{j_X!E-l24(H>4TK|_iskEKc_y`+$ME18ivjKOqGuXx8Wr*gij~pG${z0uw;`j}Gn&8tB`=`W$mdTq_NAW3J?zgdtTD21IISn;ONRGZ2cbB8^ z23YZGaK`FHRmt6@67bTDW(UgsUd{)c*9^Ty?VUqiTMxPL8TiKsm{a=44vUo8GRFuR z=3lqo9a#C5)u7X)Cii>rLyf>gQT_Ylu2k0cQgnNds~k{m)(>I3!fjQeBdxc$)^y6z zsM~bsPF8fwq`O}Gy>##6vs-@8mMhFQ4`fZ={t?F+ao^-j$aND}@@|*g>cooZ=}p-O z+r?eLh!(|X)#DLR9m=qJc(vJmEa|+o*K)l_N=s_rx3<078x>!x;-WGPMklIeKDZt0 z_o=U)@wE|uvtz}(qId(IdsPGN87rUO|2hBRXT!^@1sA_`K2&V# z%+z^x-c%SfMEnD*>DAU8_$KMQ!3<(`%=IY(6PpHio$ETK%wNdbKY3+O2Dz#!NQ@7| z{LcjT%mMvA2gX4k7Bkyv1_@-T_lwHLEfI&JY8g&Elaozh+a>tK(sW%m^T3nM64HB{ zgeRWpOWq3_Rm5+t8X*!NK7p@pRL>t_M~AfPwfoNBCNRxrYUZsU55)ZK)x`K`N@&Z%Ue&mPS? zvX{(06nSy0+m?IJLeRD!){;GQzFUyj(^*O%-~ROZq3R;lWjgTFwgg;?{=%({)tXNx zi}?-~v*M9?D^a&+N2_1fPb+rLE=X=U6MEuv&t^p?twrhhlMjNrZ9eCy?o2p;+eh}< z(ZagO^I*6G*<3`I%{D^Z7Fhw+Cu6-o|G2)~9;?0CwJBi#y#sY#sz$5_9vvg>RIjo#u86RI6cx+85iT*YUOxTX-a zIljyu*tX+dUEarMA#cSO?Ca}C6_fotlZA4gUg>&vfZWTW@-Fb2#>F}AxyrG#&Ic;4 zD_tMDT)9o}diQCX>0?z_EmJEwD~nZ{YFki|Gy27|;mbt8v9FcpxTm3y%<|?hWRwJo zh)w?PQ|)&4>@1EOZ>jlRg>vN?ByQ$geEi zA^+CA4tF+sT5coH-AftrbtT*-d!Jttqt-`VNl<3A9%;CpdF69dAG8Tnll9;-1dVCx^xUbsI@a=zP+7AjVw2+eQvApv$uEr4;>N_A}ZZADJi~FKYE}*erm)X zHh+(hH+my0V|o_%Z!Q3Gb25+MXVxR4v_^5teJiBjrdpmP zgdXkukUuQQRt{{8c6T{2zb#y`+UCPZdRBL0Ok|*k zRnFstQ^S4R`0sc)i9A-l!ag;k8^`UZS+gapK(M69@D_6blfhAH>w&AooWca)~&E#3MQHV1zO*qsZ_7dfMe&+J>~O#P@bdUAN1Vv%(!@1#k{d-#oHp= z9OY;4vhLd+ZTMT-PS&HWGS0xMT4QBINx#qbY;1+ zR&QEc|E-aOVS0z0PZrub-VgOO48Ik0YC~8^FFMrz$I$R~S6jnYhk#9n8u#8Ah~a2H z8fsHg9oMcoXYXhW+OYiDH@IeVk8z;B$FY3rzJccbWEHR6G*K;l!e2x#mtRVnH^?>1bwPzsZhoOmj|W;Fa>1nj zY}CigKeE|+7fzE$W;cyKjEW9-VfVYYBxEqAPRjT(rE>T7=4{!CiY^IzCFK7BVOogj literal 0 HcmV?d00001 diff --git a/Resources/Audio/Magic/attributions.yml b/Resources/Audio/Magic/attributions.yml index bfbe4d6ec2..92a4ae3c45 100644 --- a/Resources/Audio/Magic/attributions.yml +++ b/Resources/Audio/Magic/attributions.yml @@ -22,3 +22,9 @@ copyright: '"forcewall.ogg", "knock.ogg", "blink.ogg", "ethereal_enter.ogg", and "ethereal_exit.ogg" by Citadel Station 13' license: CC-BY-SA-3.0 source: https://github.com/Citadel-Station-13/Citadel-Station-13/commit/35a1723e98a60f375df590ca572cc90f1bb80bd5 + +- files: + - voidblink.ogg + copyright: '"voidblink.ogg" by Citadel Station 13' + license: CC-BY-SA-3.0 + source: https://github.com/Citadel-Station-13/Citadel-Station-13/commit/e145bdafe83e2cf38d148c39f073da5e7b0cb456 diff --git a/Resources/Locale/en-US/chat/emotes.ftl b/Resources/Locale/en-US/chat/emotes.ftl index 479e9daab4..74e669b507 100644 --- a/Resources/Locale/en-US/chat/emotes.ftl +++ b/Resources/Locale/en-US/chat/emotes.ftl @@ -11,6 +11,7 @@ chat-emote-name-squeak = Squeak chat-emote-name-thump = Thump Tail chat-emote-name-click = Click chat-emote-name-clap = Clap +chat-emote-name-clap-single = Single Clap chat-emote-name-snap = Snap chat-emote-name-salute = Salute chat-emote-name-gasp = Gasp @@ -45,6 +46,7 @@ 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-clap-single = claps their hands together. chat-emote-msg-snap = snaps {POSS-ADJ($entity)} fingers. chat-emote-msg-salute = salutes. chat-emote-msg-gasp = gasps. diff --git a/Resources/Locale/en-US/store/spellbook-catalog.ftl b/Resources/Locale/en-US/store/spellbook-catalog.ftl index 1450cc8608..98d19817c6 100644 --- a/Resources/Locale/en-US/store/spellbook-catalog.ftl +++ b/Resources/Locale/en-US/store/spellbook-catalog.ftl @@ -5,6 +5,9 @@ spellbook-fireball-desc = Get most crew exploding with rage when they see this f spellbook-blink-name = Blink spellbook-blink-desc = Don't blink or you'll miss yourself teleporting away. +spellbook-voidapplause-name = Void Applause +spellbook-voidapplause-desc = Swap places with the target, doesn't it make you want to do the boogie? + spellbook-force-wall-name = Force Wall spellbook-force-wall-desc = Make three walls of pure force that you can pass through, but other's can't. diff --git a/Resources/Prototypes/Catalog/spellbook_catalog.yml b/Resources/Prototypes/Catalog/spellbook_catalog.yml index d5a9b0f1b9..3246117e71 100644 --- a/Resources/Prototypes/Catalog/spellbook_catalog.yml +++ b/Resources/Prototypes/Catalog/spellbook_catalog.yml @@ -64,6 +64,20 @@ - !type:ListingLimitedStockCondition stock: 1 +# Taking an Eldritch spell, good proof of concept and a way to celebrate everything magic. +- type: listing + id: SpellbookVoidApplause + name: spellbook-voidapplause-name + description: spellbook-voidapplause-desc + productAction: ActionVoidApplause + cost: + WizCoin: 1 + categories: + - SpellbookUtility + conditions: + - !type:ListingLimitedStockCondition + stock: 1 + - type: listing id: SpellbookCharge name: spellbook-charge-name diff --git a/Resources/Prototypes/Entities/Effects/eldritch.yml b/Resources/Prototypes/Entities/Effects/eldritch.yml new file mode 100644 index 0000000000..196fe288e7 --- /dev/null +++ b/Resources/Prototypes/Entities/Effects/eldritch.yml @@ -0,0 +1,25 @@ +- type: entity + id: EffectVoidBlink + name: void blink + categories: [ HideSpawnMenu ] + save: false + components: + # TODO: PointLight is temp until I can make a shader & overlay for negative light or until this can support it + - type: PointLight + radius: 3 + energy: 1 + softness: 10 + color: "#301934" + - type: Transform + noRot: true + - type: Sprite + sprite: Objects/Magic/Eldritch/eldritch_actions.rsi + drawdepth: Effects + noRot: true + layers: + - state: "voidblink" + - type: TimedDespawn + lifetime: 1 + - type: Tag + tags: + - HideContextMenu diff --git a/Resources/Prototypes/Magic/teleport_spells.yml b/Resources/Prototypes/Magic/teleport_spells.yml index 6f1ed9a6e4..6e359cc611 100644 --- a/Resources/Prototypes/Magic/teleport_spells.yml +++ b/Resources/Prototypes/Magic/teleport_spells.yml @@ -16,3 +16,28 @@ sprite: Objects/Magic/magicactions.rsi state: blink event: !type:TeleportSpellEvent + +# TODO: Second level upgrade sometime that allows swapping with all objects +- type: entity + id: ActionVoidApplause + name: Void Applause + description: Clap your hands and swap places with the target. + components: + - type: EntityTargetAction + useDelay: 15 + range: 16 + sound: !type:SoundPathSpecifier + path: /Audio/Magic/Eldritch/voidblink.ogg + itemIconStyle: BigAction + whitelist: + components: + - Body + canTargetSelf: false + interactOnMiss: false + checkCanAccess: false + repeat: false + icon: + sprite: Objects/Magic/Eldritch/eldritch_actions.rsi + state: voidblink + event: !type:VoidApplauseSpellEvent + effect: EffectVoidBlink diff --git a/Resources/Prototypes/SoundCollections/emotes.yml b/Resources/Prototypes/SoundCollections/emotes.yml index 04d2b3b2e8..c93a46572b 100644 --- a/Resources/Prototypes/SoundCollections/emotes.yml +++ b/Resources/Prototypes/SoundCollections/emotes.yml @@ -30,6 +30,11 @@ - /Audio/Effects/Emotes/clap3.ogg - /Audio/Effects/Emotes/clap4.ogg +- type: soundCollection + id: ClapSingle + files: + - /Audio/Effects/Emotes/clap-single.ogg + - type: soundCollection id: Snaps files: diff --git a/Resources/Prototypes/Voice/speech_emote_sounds.yml b/Resources/Prototypes/Voice/speech_emote_sounds.yml index 9fab1aeed8..82b4b40574 100644 --- a/Resources/Prototypes/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/Voice/speech_emote_sounds.yml @@ -438,6 +438,8 @@ sounds: Clap: collection: Claps + ClapSingle: + collection: ClapSingle Snap: collection: Snaps params: @@ -450,6 +452,9 @@ sounds: Clap: path: /Audio/Voice/Diona/diona_clap.ogg + # TODO: Replace this with a similar wood themed single clap + ClapSingle: + collection: ClapSingle Snap: path: /Audio/Voice/Diona/diona_snap.ogg params: @@ -468,6 +473,8 @@ variation: 0.125 Clap: collection: Claps + ClapSingle: + collection: ClapSingle Snap: collection: Snaps params: diff --git a/Resources/Prototypes/Voice/speech_emotes.yml b/Resources/Prototypes/Voice/speech_emotes.yml index 9de4bb2b70..a346f86148 100644 --- a/Resources/Prototypes/Voice/speech_emotes.yml +++ b/Resources/Prototypes/Voice/speech_emotes.yml @@ -214,11 +214,26 @@ - BorgChassis chatMessages: ["chat-emote-msg-clap"] chatTriggers: - - clap - claps - clapping - clapped +- type: emote + id: ClapSingle + name: chat-emote-name-clap-single + category: Hands + icon: Interface/Emotes/clap.png #TODO: Needs a sprite that distinguishes it better from clap + whitelist: + components: + - Hands + blacklist: + components: + - BorgChassis + chatMessages: [ "chat-emote-msg-clap-single" ] + chatTriggers: + - clap + - claps their hands together + - type: emote id: Snap name: chat-emote-name-snap diff --git a/Resources/Textures/Objects/Magic/Eldritch/eldritch_actions.rsi/meta.json b/Resources/Textures/Objects/Magic/Eldritch/eldritch_actions.rsi/meta.json new file mode 100644 index 0000000000..8dddb61e05 --- /dev/null +++ b/Resources/Textures/Objects/Magic/Eldritch/eldritch_actions.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Taken from and modified by kiwedespars on Citadel Station at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/e145bdafe83e2cf38d148c39f073da5e7b0cb456", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "voidblink", + "delays": [ + [ + 0.1, + 0.3, + 0.1, + 0.3, + 0.1, + 0.3, + 0.1, + 0.3, + 0.3 + ] + ] + } + ] +} diff --git a/Resources/Textures/Objects/Magic/Eldritch/eldritch_actions.rsi/voidblink.png b/Resources/Textures/Objects/Magic/Eldritch/eldritch_actions.rsi/voidblink.png new file mode 100644 index 0000000000000000000000000000000000000000..c44f8890acd84e2de839b89a760deb59faf40132 GIT binary patch literal 1699 zcmV;U23+}xP)-rAP6;8d;crD)9H{Qv>!mg*ppYam2_f6LHVh( z|I&l0cmyyRRszUB|F-l%49gi1Erg8jX9$1qZ~npd18pT*0pv6nx$rwe2ta42|6=}V z8&m>#(FLKS`>0Wv8_!+a0DZmk{VfRXB#;VVr;LfA`v{c)Bk!b*?~}6-4tmwuuTe)* z0c?m+vy3My1Hc`%88Ffol?saNG$ozd_Q$nh$LP+5=W5y#0bC4F1rd^|wPC6oto4Q@ z0^n5cZ3r{tUAQ0`W}yq|4B(dYV8U$rO#`fT0(t_N?e7Dm?XVQW>3OvbFnXSmP3X3x zCjj_Z!vOsK2(*L1d?s*J%~6gO8+gxvX?ocL;BIpnUkFb3pQ+J*t_|pUKdtXZU@-vH zZ2;!eYn2#!hXTYQ6?E2@bn3`b4R8m6cCb|I;xK!l*n zZ{KmTP!&YWusi`KByOk)3VEjLOekp@PGHs&0FHcb}xG9sI8c_;1LP`C2VvCNHJoB zOU(W@BaD$zfVE$L7=PKNfy*WbBV1EAYT`o7UJ)zWJenUOspu{&R8Xm5)=ZeWBKEGZ zY-}@OxM(%(1xY%ZqLnAIOv25^g~@buk8aVCWJ4v-d+(%(qEoD2$z+#6?13?s7QpD% z@H=2c09f}=V*+>}(SpF9&y@24*!MmBVRr_=h|k)n$FLprw^j%m0etlT@Djp=@Ve41 zAW`b5Cj5xKp(p*){ugf{6h_^C9Z3Ud+feI&#QA`eSm}NSX3)3nzc?LTQ^DTHl+N`% z;}a^Ila54Lb^#9(LRr4Y1%*DU7a??$&K-U1^GcwO(F zE9xH5kOn+ZZgdt*o*8fh%yvN|&^;eOQVgu!ah7Qbi4bsE3j>Vn(->i^ zIAG@f{C8!7Gz65j^nN_Q8B#%!iy;TS4?)zPrA43?fS1qT0>?A59Q{35bpF;x7^Acx zLm9B5=d_FfI3qi9^jl#W0hAb9Q%T!jumRDKxT0wxn5~E%1>Cl#NL^8D`jS+{SFMQE z8qgAm^;&?`uuFu%o&l};yk~uj0o>T&t{6QZ(0gZs+Gv93rT3OD ztE{`;8OzQ98Ue3LU%NSXKMe>f7#^n-b5H~5liy)Nu%xd#A3%x2eFP6^=YejN5UlB| z&j-L2XlCX9cqwt50x#SzM_(iW>{^#bK?+hqnDz|&Z%JRQg3yZ7<#BoskdXcPB@+4f z4<@<6gT7b*twoUt9b95U1oOS=K#wyLaez2F3nJ)O1%UHC*z>G41U=g{)3yaL?!9`s zdhXc!nF*jqbes;we$#q2a7*d@DX%*FrQ=WJnfJdeNiM#2wk2d_tcyL5>LZJ2%hv= tff!T Date: Fri, 31 Jan 2025 00:11:43 +0000 Subject: [PATCH 023/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index d9d4a87fbb..d2a6cd06ec 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: drakewill-CRL - changes: - - message: Produce harvested from sentient plants are no longer sentient themselves. - type: Fix - id: 7381 - time: '2024-09-16T00:04:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32192 - author: DrSmugleaf changes: - message: Fixed examine sometimes flickering and closing until you examine something @@ -3908,3 +3901,11 @@ id: 7880 time: '2025-01-30T17:48:11.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34557 +- author: keronshb + changes: + - message: Added Void's Applause! A Wizard Spell that switches your location with + the target. + type: Add + id: 7881 + time: '2025-01-31T00:10:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34591 From aa71ace43f14492893b24c704a85a333e6171181 Mon Sep 17 00:00:00 2001 From: Nox Date: Thu, 30 Jan 2025 23:22:52 -0800 Subject: [PATCH 024/313] Meta Station - Armory restock + fixes (#34717) * Initial commit * Updated * Finished changes * made the minefield signs outside sec much more visible to stop your skill issue. --- Resources/Maps/meta.yml | 8925 ++++++++++++++++++---------- Resources/Prototypes/Maps/meta.yml | 33 +- 2 files changed, 5677 insertions(+), 3281 deletions(-) diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index b5f9dbeb76..8751b9c704 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -235,7 +235,7 @@ entities: version: 6 1,3: ind: 1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABHQAAAAADHQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADLwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACLwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACLwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABLwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABHQAAAAADHQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADCQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACCQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACCQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABCQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,3: ind: 0,3 @@ -247,19 +247,19 @@ entities: version: 6 3,1: ind: 3,1 - tiles: WQAAAAADWQAAAAACTAAAAAAATAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAWQAAAAADTAAAAAAATAAAAAAAWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACHQAAAAAAaQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABeQAAAAAAAAAAAAAAeAAAAAAAaQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAaQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAaQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAACWQAAAAABHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: WQAAAAADWQAAAAACTAAAAAAATAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAWQAAAAADTAAAAAAATAAAAAAAWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACHQAAAAAAaQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAaQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAaQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAaQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAACWQAAAAABHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 2,2: ind: 2,2 - tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACHQAAAAAAHQAAAAACeQAAAAAADAAAAAACeQAAAAAAeQAAAAAAeQAAAAAADAAAAAACeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACDAAAAAAADAAAAAABDAAAAAADDAAAAAABDAAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAADAAAAAABDAAAAAACDAAAAAABDAAAAAABDAAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAACDAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADDAAAAAAADAAAAAAADAAAAAABDAAAAAAADAAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABWQAAAAADWQAAAAABWQAAAAAAeQAAAAAADAAAAAADDAAAAAADDAAAAAADDAAAAAABDAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAADAAAAAADDAAAAAADDAAAAAACDAAAAAACDAAAAAACeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAACDAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACHQAAAAAAHQAAAAACeQAAAAAADAAAAAACeQAAAAAAeQAAAAAAeQAAAAAADAAAAAACeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACDAAAAAAADAAAAAABDAAAAAADDAAAAAABDAAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAADAAAAAABDAAAAAACDAAAAAABDAAAAAABDAAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAACDAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADDAAAAAAADAAAAAAADAAAAAABDAAAAAAADAAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABWQAAAAADWQAAAAABWQAAAAAAeQAAAAAADAAAAAADDAAAAAADDAAAAAADDAAAAAABDAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAADAAAAAADDAAAAAADDAAAAAACDAAAAAACDAAAAAACeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAACDAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 - tiles: WQAAAAACWQAAAAADWQAAAAADeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAHQAAAAACHQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAACWQAAAAADWQAAAAADeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,0: ind: 4,0 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -3,2: ind: -3,2 @@ -271,11 +271,11 @@ entities: version: 6 0,-3: ind: 0,-3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAaQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABTAAAAAADTAAAAAADTAAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAACWQAAAAACHQAAAAADHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACaQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAWQAAAAACHQAAAAABHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABaQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAABWQAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADaQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAaQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABTAAAAAADTAAAAAADTAAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAACWQAAAAACHQAAAAADHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACaQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAWQAAAAACHQAAAAABHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABaQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAABWQAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADaQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: HQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAdgAAAAACdgAAAAABeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAAAbAAAAAABWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAABWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACEQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAeQAAAAAAeQAAAAAA + tiles: HQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAdgAAAAACdgAAAAABeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAaQAAAAAAHQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAAAbAAAAAABWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAABWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACEQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAeQAAAAAAeQAAAAAA version: 6 -3,4: ind: -3,4 @@ -311,19 +311,19 @@ entities: version: 6 3,2: ind: 3,2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAADWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAADWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA version: 6 4,2: ind: 4,2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA version: 6 4,1: ind: 4,1 - tiles: AAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,3: ind: 3,3 - tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-3: ind: -2,-3 @@ -331,11 +331,11 @@ entities: version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAaAAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABAAAAAAABAAAAAAABAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAAB version: 6 0,-4: ind: 0,-4 - tiles: eQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAaQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAbAAAAAAAbAAAAAAATAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAbAAAAAAAbAAAAAAATAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAAAbAAAAAAAbAAAAAAATAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAaQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAA + tiles: eQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAaQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAbAAAAAAAbAAAAAAATAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAbAAAAAAAbAAAAAAATAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAAAbAAAAAAAbAAAAAAATAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAaQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAA version: 6 -1,-4: ind: -1,-4 @@ -347,15 +347,15 @@ entities: version: 6 -3,-4: ind: -3,-4 - tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAABdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAABdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: eAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-3: ind: -5,-3 @@ -363,7 +363,7 @@ entities: version: 6 -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -2,-5: ind: -2,-5 @@ -371,15 +371,15 @@ entities: version: 6 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA version: 6 4,3: ind: 4,3 - tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACaQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACaQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,-5: ind: -1,-5 @@ -387,7 +387,7 @@ entities: version: 6 0,-5: ind: 0,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA version: 6 2,-4: ind: 2,-4 @@ -395,19 +395,15 @@ entities: version: 6 2,-5: ind: 2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA version: 6 2,-6: ind: 2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-5: ind: 1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA - version: 6 - 1,-6: - ind: 1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA version: 6 5,-1: ind: 5,-1 @@ -447,7 +443,7 @@ entities: version: 6 5,1: ind: 5,1 - tiles: eAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-2: ind: 5,-2 @@ -520,6 +516,7 @@ entities: 6416: 62,6 6417: 62,5 6418: 62,4 + 6548: 71,20 - node: color: '#FFFFFFFF' id: Arrows @@ -529,6 +526,7 @@ entities: 4324: -33.008163,30.019304 4339: -28.994226,4.423004 6060: 71,-35 + 6545: 70,21 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -537,6 +535,7 @@ entities: 6413: 64,6 6414: 64,5 6415: 64,4 + 6546: 69,20 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -545,6 +544,7 @@ entities: 4325: -32,33 5105: -42,6 6061: 69,-37 + 6547: 70,19 - node: color: '#FFFFFFFF' id: Bot @@ -679,7 +679,6 @@ entities: 5997: 13,-35 5999: 11,-36 6339: 48,18 - 6409: 70,6 6410: 57,9 6411: 61,9 6412: 65,9 @@ -687,6 +686,8 @@ entities: 6482: 54,7 6483: 55,7 6492: 49,11 + 6493: -4,42 + 6516: 74,3 - node: zIndex: 1 color: '#FFFFFFFF' @@ -777,6 +778,14 @@ entities: 3985: -15,-39 4531: 22,-31 5744: 24,-33 + 6549: -19,-16 + 6550: -19,-17 + 6551: -19,-11 + 6552: -19,-12 + 6553: -15,-11 + 6554: -15,-12 + 6556: -15,-15 + 6557: -15,-13 - node: color: '#FFFFFFFF' id: BotRightGreyscale @@ -787,10 +796,6 @@ entities: color: '#FFFFFFFF' id: Box decals: - 3189: 76,26 - 3190: 64,26 - 3191: 64,14 - 3192: 76,14 3529: 76,-33 3530: 76,-34 3531: 76,-35 @@ -811,6 +816,14 @@ entities: 6223: 46,19 6404: 56,30 6405: 55,30 + 6527: 69,28 + 6528: 71,28 + 6529: 71,12 + 6530: 69,12 + 6532: 66,16 + 6533: 66,24 + 6534: 74,24 + 6535: 74,16 - node: color: '#DE3A3A96' id: BrickCornerOverlayNE @@ -1626,7 +1639,6 @@ entities: 5841: 6,-41 5842: 5,-41 5843: 4,-41 - 5844: 2,-41 5845: 1,-41 5846: 0,-41 5859: 28,-41 @@ -1643,6 +1655,7 @@ entities: 5945: 24,-44 5946: 25,-44 5975: 17,-32 + 6517: 3,-41 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS @@ -4926,14 +4939,14 @@ entities: 3544: 74,-33 3824: 101,4 5264: -7,39 - 6155: 76,5 + 6513: 73,6 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: 3825: 107,4 5265: -9,39 - 6153: 69,5 + 6509: 69,6 - node: color: '#FFFFFFFF' id: WarnCornerSE @@ -4942,7 +4955,7 @@ entities: 3822: 101,12 3826: 102,2 5263: -7,37 - 6154: 76,3 + 6512: 73,3 - node: color: '#FFFFFFFF' id: WarnCornerSW @@ -4950,7 +4963,7 @@ entities: 3823: 107,12 3827: 106,2 5258: -9,37 - 6156: 69,3 + 6508: 69,3 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE @@ -5033,7 +5046,6 @@ entities: color: '#D381C996' id: WarnFullGreyscale decals: - 5754: 23,-37 5978: 15,-31 - node: color: '#DE3A3A96' @@ -5100,7 +5112,6 @@ entities: 5955: 16,-60 6080: 64,-24 6081: 64,-25 - 6157: 76,4 6182: 42,18 6183: 42,17 6184: 42,16 @@ -5112,6 +5123,8 @@ entities: 6341: 56,11 6397: 56,29 6438: 53,20 + 6514: 73,5 + 6515: 73,4 - node: color: '#334E6DC8' id: WarnLineGreyscaleE @@ -5251,12 +5264,12 @@ entities: decals: 4530: 14,-46 5664: 6,-27 - 5871: 3,-41 5875: 24,-41 5876: 29,-41 5877: 16,-41 5878: 10,-41 5879: 8,-41 + 6518: 2,-41 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS @@ -5396,18 +5409,19 @@ entities: 6076: 47,-29 6077: 46,-29 6100: 45,-29 - 6164: 70,3 6165: 71,3 6166: 72,3 - 6167: 73,3 - 6168: 74,3 - 6169: 75,3 6252: 44,19 6253: 43,19 6254: 42,19 6370: 72,-28 6371: 71,-28 6372: 70,-28 + 6511: 70,3 + 6521: -43,-46 + 6522: -42,-46 + 6523: 40,48 + 6524: 39,48 - node: zIndex: 1 color: '#FFFFFFFF' @@ -5461,7 +5475,6 @@ entities: 5995: 15,-35 6082: 64,-24 6083: 64,-25 - 6170: 69,4 6177: 44,14 6178: 44,15 6179: 44,16 @@ -5470,6 +5483,8 @@ entities: 6208: 49,22 6209: 49,23 6210: 49,24 + 6506: 69,4 + 6507: 69,5 - node: color: '#DE3A3A96' id: WarnLineW @@ -5542,12 +5557,6 @@ entities: 5437: -1,34 5440: -11,52 5898: 18,-39 - 6158: 70,5 - 6159: 71,5 - 6160: 72,5 - 6161: 73,5 - 6162: 74,5 - 6163: 75,5 6248: 44,13 6249: 43,13 6250: 42,13 @@ -5555,6 +5564,13 @@ entities: 6419: 64,9 6420: 63,9 6421: 62,9 + 6498: 71,6 + 6499: 72,6 + 6510: 70,6 + 6519: -43,-48 + 6520: -42,-48 + 6525: 40,46 + 6526: 39,46 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -5896,15 +5912,22 @@ entities: 4,-1: 0: 48127 -4,-4: - 0: 47547 + 0: 39321 + 2: 2 + 3: 8224 -4,-5: - 0: 47359 + 0: 39167 + 2: 8192 -5,-4: - 0: 61166 + 0: 61164 + 2: 2 -4,-3: - 0: 63931 + 0: 63897 + 2: 34 -5,-3: - 0: 62702 + 0: 62668 + 4: 2 + 5: 32 -4,-2: 0: 36863 -5,-2: @@ -5973,7 +5996,8 @@ entities: -6,-5: 0: 61167 -5,-5: - 0: 59647 + 2: 8192 + 0: 51455 -9,0: 0: 60943 -8,1: @@ -6197,7 +6221,8 @@ entities: -5,-9: 0: 7677 4,-9: - 0: 28791 + 0: 20599 + 3: 8192 5,-7: 0: 58621 5,-6: @@ -6230,19 +6255,19 @@ entities: 0: 65263 8,-5: 0: 1279 - 2: 57344 + 6: 57344 8,-4: - 2: 3822 + 6: 3822 0: 16384 9,-4: - 2: 7 + 6: 7 0: 58888 9,-2: 0: 30711 9,-1: 0: 61559 9,-5: - 2: 28672 + 6: 28672 0: 239 9,-3: 0: 12014 @@ -6329,13 +6354,13 @@ entities: 1: 2184 11,-8: 0: 61440 - 3: 238 + 7: 238 11,-7: 0: 65535 11,-6: 0: 65520 11,-9: - 3: 57344 + 7: 57344 1: 31 12,-6: 0: 65262 @@ -6429,7 +6454,7 @@ entities: 0: 57471 -13,7: 0: 32768 - 3: 30576 + 7: 30576 1: 7 -12,4: 0: 35852 @@ -6531,7 +6556,8 @@ entities: 0,8: 0: 10239 1,5: - 0: 58623 + 0: 25855 + 8: 32768 1,6: 0: 65262 1,7: @@ -6646,15 +6672,15 @@ entities: 1: 3840 12,-8: 1: 8738 - 4: 34944 + 9: 34944 12,-7: 1: 226 0: 57344 12,-9: 1: 58103 13,-8: - 4: 13104 - 5: 34944 + 9: 13104 + 10: 34944 13,-7: 1: 240 0: 61440 @@ -6667,8 +6693,8 @@ entities: 13,-4: 0: 62327 14,-8: - 5: 13104 - 3: 34944 + 10: 13104 + 7: 34944 14,-7: 1: 240 0: 61440 @@ -6681,7 +6707,7 @@ entities: 14,-4: 0: 65279 15,-8: - 3: 13104 + 7: 13104 1: 34952 15,-7: 1: 248 @@ -6728,7 +6754,7 @@ entities: 15,0: 0: 57463 16,-1: - 3: 240 + 7: 240 1: 62222 12,1: 0: 58606 @@ -6756,12 +6782,12 @@ entities: 0: 65262 15,2: 0: 4335 - 3: 57344 + 7: 57344 15,3: - 3: 9838 + 7: 9838 1: 34944 15,4: - 3: 2 + 7: 2 1: 34952 0: 4352 16,0: @@ -6771,9 +6797,9 @@ entities: 0: 64443 16,2: 0: 63 - 3: 63488 + 7: 63488 16,3: - 3: 287 + 7: 287 1: 3584 -12,-8: 0: 62583 @@ -6903,7 +6929,8 @@ entities: 0: 52425 1: 256 -3,9: - 0: 56797 + 0: 56789 + 2: 8 -3,10: 0: 56605 -3,11: @@ -6914,10 +6941,12 @@ entities: -2,9: 0: 63351 -2,10: - 0: 30465 - 6: 6 + 0: 29953 + 3: 512 + 2: 6 -2,11: - 0: 1919 + 0: 895 + 8: 1024 -2,12: 1: 207 0: 61696 @@ -7077,30 +7106,30 @@ entities: 1: 36761 -8,13: 1: 240 - 3: 3598 + 7: 3598 -9,13: 1: 35064 - 3: 771 + 7: 771 -8,14: 1: 240 - 3: 3598 + 7: 3598 -9,14: 1: 35064 - 3: 771 + 7: 771 -8,15: 1: 240 - 3: 3598 + 7: 3598 -9,15: 1: 35064 - 3: 771 + 7: 771 -7,13: - 3: 1799 + 7: 1799 1: 240 -7,14: - 3: 1799 + 7: 1799 1: 240 -7,15: - 3: 1799 + 7: 1799 1: 240 -6,13: 1: 4369 @@ -7130,18 +7159,18 @@ entities: 1: 3857 -10,13: 1: 240 - 3: 3855 + 7: 3855 -10,14: 1: 240 - 3: 3855 + 7: 3855 -10,15: 1: 240 - 3: 3855 + 7: 3855 -10,11: 1: 4369 -9,16: 1: 35064 - 3: 771 + 7: 771 5,13: 1: 17600 5,14: @@ -7192,15 +7221,21 @@ entities: 9,7: 0: 26383 10,5: - 0: 56785 + 0: 39377 + 3: 1024 + 11: 16384 10,6: 0: 7645 10,7: 0: 65535 11,5: - 0: 65520 + 0: 65328 + 12: 192 11,6: - 0: 4095 + 0: 831 + 3: 192 + 13: 1024 + 12: 2048 11,7: 0: 30549 11,8: @@ -7234,19 +7269,19 @@ entities: 1: 34956 15,7: 0: 32784 - 3: 750 + 7: 750 15,6: - 3: 26210 + 7: 26210 1: 34952 15,8: 0: 51711 16,5: 1: 17487 16,6: - 3: 256 + 7: 256 1: 3596 16,7: - 3: 2303 + 7: 2303 0: 12288 9,8: 0: 48048 @@ -7299,17 +7334,17 @@ entities: 1: 61441 17,0: 1: 223 - 3: 32 + 7: 32 0: 57344 17,2: 0: 15 - 3: 65280 + 7: 65280 17,3: - 3: 15 + 7: 15 1: 20288 17,-1: 1: 53389 - 3: 11826 + 7: 11826 17,1: 0: 61166 17,4: @@ -7320,46 +7355,48 @@ entities: 18,1: 0: 65535 18,2: - 0: 15 - 3: 65280 + 14: 1 + 7: 65280 + 0: 14 18,3: - 3: 15 + 7: 15 1: 3840 18,-1: 1: 61610 - 3: 3840 + 7: 3840 19,0: 1: 255 0: 4096 - 3: 3072 + 7: 3072 19,1: - 0: 4369 + 11: 1 + 3: 16 + 0: 4352 19,2: 0: 1 - 3: 4352 + 7: 4352 1: 3276 19,3: - 3: 1011 + 7: 1011 1: 8192 19,-1: 1: 61474 - 3: 3840 + 7: 3840 19,4: 1: 8738 - 3: 51328 + 7: 51328 20,0: 1: 255 - 3: 3840 + 7: 3840 20,2: 1: 7951 20,3: 1: 261 - 3: 46320 + 7: 46320 -13,8: 0: 8 1: 12032 - 3: 7 - 7: 112 + 7: 119 -12,9: 0: 2 1: 65408 @@ -7446,7 +7483,7 @@ entities: 0: 53759 2,-13: 0: 61952 - 3: 119 + 7: 119 3,-12: 0: 65359 3,-11: @@ -7471,7 +7508,7 @@ entities: 0: 36863 5,-13: 0: 63761 - 3: 204 + 7: 204 6,-12: 0: 32628 6,-11: @@ -7480,7 +7517,7 @@ entities: 0: 33791 6,-13: 0: 56512 - 3: 17 + 7: 17 7,-12: 0: 1904 7,-11: @@ -7499,7 +7536,7 @@ entities: 1: 127 -10,16: 1: 240 - 3: 3855 + 7: 3855 -10,17: 1: 15 -9,17: @@ -7508,13 +7545,13 @@ entities: 1: 14 -8,16: 1: 240 - 3: 3598 + 7: 3598 -8,17: 1: 9006 -8,18: 1: 3 -7,16: - 3: 1799 + 7: 1799 1: 240 -7,17: 1: 15 @@ -7524,58 +7561,58 @@ entities: 1: 61440 16,-4: 1: 8738 - 8: 2184 + 15: 2184 16,-3: 1: 8738 - 3: 2184 + 7: 2184 16,-2: 1: 8738 - 3: 2184 + 7: 2184 16,-5: 1: 8738 - 3: 2184 + 7: 2184 17,-4: - 8: 819 - 3: 2176 + 15: 819 + 7: 2176 1: 32768 17,-3: - 3: 819 + 7: 819 1: 34952 17,-2: - 3: 819 + 7: 819 1: 34952 17,-5: - 3: 35635 + 7: 35635 1: 136 18,-4: - 3: 3975 + 7: 3975 1: 40992 18,-3: 1: 43770 18,-5: 1: 8362 - 3: 36608 + 7: 36608 18,-2: 1: 43690 19,-4: - 3: 3975 + 7: 3975 1: 40992 19,-3: 1: 57906 19,-5: 1: 8354 - 3: 36608 + 7: 36608 19,-2: 1: 8930 20,-4: - 3: 3975 + 7: 3975 1: 32768 20,-3: 1: 61440 20,-2: 1: 240 20,-1: - 3: 3840 + 7: 3840 1: 61440 16,-9: 1: 4369 @@ -7615,7 +7652,7 @@ entities: 20,-6: 1: 1879 20,-5: - 3: 36608 + 7: 36608 1: 128 12,-10: 1: 62192 @@ -7637,32 +7674,32 @@ entities: 1: 65023 16,-11: 1: 4353 - 3: 52416 + 7: 52416 16,-10: 1: 4353 0: 52416 20,4: 1: 5377 - 3: 244 + 7: 244 21,0: 1: 33023 - 3: 3840 + 7: 3840 21,2: 1: 3887 21,3: - 3: 46320 + 7: 46320 1: 4 21,-1: 1: 61440 - 3: 3840 + 7: 3840 21,1: 1: 17608 21,4: - 3: 244 + 7: 244 1: 1024 22,0: 1: 2167 - 3: 58112 + 7: 58112 0: 136 22,1: 1: 3634 @@ -7670,19 +7707,19 @@ entities: 22,2: 1: 3855 22,3: - 3: 46320 + 7: 46320 1: 4 22,-1: 1: 28704 0: 32768 - 3: 3840 + 7: 3840 22,4: - 3: 180 + 7: 180 1: 1088 23,0: 0: 17663 1: 35328 - 3: 8192 + 7: 8192 23,1: 0: 35959 1: 29320 @@ -7690,16 +7727,16 @@ entities: 1: 26471 0: 34952 23,3: - 3: 61552 + 7: 61552 1: 3590 0: 136 23,-1: 0: 62532 1: 2235 - 3: 512 + 7: 512 23,4: 1: 19468 - 3: 240 + 7: 240 24,0: 0: 3295 1: 256 @@ -7710,13 +7747,13 @@ entities: 24,3: 1: 609 0: 4368 - 3: 59392 + 7: 59392 16,-13: 1: 12032 17,-12: 1: 65023 17,-11: - 3: 13104 + 7: 13104 1: 34952 17,-10: 0: 65520 @@ -7785,7 +7822,7 @@ entities: 15,10: 1: 30481 0: 8 - 3: 34944 + 7: 34944 14,11: 1: 34952 14,12: @@ -7797,18 +7834,18 @@ entities: 0: 17 1: 34952 15,11: - 3: 34952 + 7: 34952 16,10: 1: 63630 15,12: - 3: 34952 + 7: 34952 1: 28672 16,11: - 3: 26112 + 7: 26112 1: 34952 16,12: 1: 34959 - 3: 1632 + 7: 1632 17,8: 0: 17 1: 19532 @@ -7816,12 +7853,12 @@ entities: 1: 244 17,10: 1: 45056 - 3: 16384 + 7: 16384 17,11: - 3: 65348 + 7: 65348 17,12: 1: 17487 - 3: 2992 + 7: 2992 18,8: 1: 8495 18,9: @@ -7829,13 +7866,13 @@ entities: 18,10: 1: 61440 18,11: - 3: 56576 + 7: 56576 1: 8738 18,12: 1: 8751 - 3: 3536 + 7: 3536 18,7: - 3: 36863 + 7: 36863 19,8: 1: 1 19,10: @@ -7843,7 +7880,7 @@ entities: 19,11: 1: 21845 19,7: - 3: 4371 + 7: 4371 19,12: 1: 21847 16,4: @@ -7853,19 +7890,19 @@ entities: 17,6: 1: 20303 17,7: - 3: 4095 + 7: 4095 18,4: 1: 17479 18,5: 1: 17487 18,6: 1: 3847 - 3: 32768 + 7: 32768 19,5: 1: 8739 - 3: 34824 + 7: 34824 19,6: - 3: 61804 + 7: 61804 1: 2 20,5: 1: 4371 @@ -7881,17 +7918,17 @@ entities: 1: 34952 15,14: 1: 28672 - 3: 34952 + 7: 34952 15,15: 1: 3754 15,13: - 3: 34952 + 7: 34952 16,13: 1: 36744 - 3: 24678 + 7: 24678 16,14: 1: 63624 - 3: 6 + 7: 6 16,15: 1: 1860 -8,-12: @@ -7975,10 +8012,10 @@ entities: 0: 65399 2,-14: 1: 240 - 3: 28672 + 7: 28672 2,-17: 0: 4096 - 3: 1 + 7: 1 1: 30 3,-16: 0: 28672 @@ -7989,7 +8026,7 @@ entities: 0: 65166 3,-17: 1: 17475 - 3: 4 + 7: 4 4,-16: 0: 30496 4,-15: @@ -8066,16 +8103,16 @@ entities: 0: 65535 -12,-16: 1: 17231 - 3: 1184 + 7: 1184 -13,-16: 1: 2895 - 3: 1184 + 7: 1184 -12,-15: 1: 3908 -13,-15: 1: 3840 -12,-17: - 3: 43690 + 7: 43690 1: 17476 -11,-16: 1: 1 @@ -8107,7 +8144,7 @@ entities: 0: 19648 1: 4368 -16,-10: - 3: 16 + 7: 16 1: 44 -15,-11: 1: 65280 @@ -8122,53 +8159,53 @@ entities: 0: 26212 -16,-16: 1: 39321 - 3: 4 + 7: 4 -16,-17: 1: 7953 -16,-15: 1: 3869 -15,-16: 1: 18511 - 3: 1184 + 7: 1184 -15,-15: 1: 3911 -15,-17: - 3: 43690 + 7: 43690 1: 17732 -14,-16: 1: 2895 - 3: 1184 + 7: 1184 -14,-15: 1: 3840 -14,-17: - 3: 43690 + 7: 43690 1: 17476 -13,-17: - 3: 43690 + 7: 43690 1: 17476 -18,-10: 1: 4 - 3: 8 + 7: 8 -17,-10: - 3: 7 + 7: 7 -12,-19: 1: 43947 - 3: 1092 + 7: 1092 -13,-19: 1: 44590 - 3: 273 + 7: 273 -12,-18: 1: 17498 - 3: 43684 + 7: 43684 -13,-18: - 3: 43684 + 7: 43684 1: 17498 -12,-20: 1: 17408 -11,-19: 1: 3983 -10,-19: - 3: 4369 + 7: 4369 1: 57568 -10,-20: 1: 4352 @@ -8214,30 +8251,30 @@ entities: 1: 5905 -15,-19: 1: 43963 - 3: 1092 + 7: 1092 -15,-18: 1: 17738 - 3: 43684 + 7: 43684 -15,-20: 1: 17408 -14,-19: 1: 44943 -14,-18: 1: 17498 - 3: 43684 + 7: 43684 -13,-20: 1: 4352 17,13: - 3: 45243 + 7: 45243 1: 20292 17,14: - 3: 11 + 7: 11 1: 62532 18,13: - 3: 53469 + 7: 53469 1: 12066 18,14: - 3: 13 + 7: 13 1: 61986 19,13: 1: 22357 @@ -8251,10 +8288,10 @@ entities: 5,-14: 0: 4096 1: 224 - 3: 49152 + 7: 49152 5,-17: 1: 4382 - 3: 1 + 7: 1 6,-16: 1: 3186 0: 4096 @@ -8262,11 +8299,11 @@ entities: 0: 61917 6,-14: 1: 16 - 3: 4096 + 7: 4096 0: 52428 6,-17: 1: 8749 - 3: 2 + 7: 2 7,-16: 1: 3976 7,-15: @@ -8302,11 +8339,11 @@ entities: 1,-18: 1: 60962 2,-18: - 3: 4352 + 7: 4352 1: 60945 3,-18: 1: 13124 - 3: 17408 + 7: 17408 9,-13: 0: 1911 9,-16: @@ -8317,7 +8354,7 @@ entities: 0: 26342 9,-17: 0: 16384 - 3: 1 + 7: 1 1: 1092 10,-14: 0: 48 @@ -8330,41 +8367,41 @@ entities: 1: 17476 8,-20: 1: 53248 - 3: 11264 + 7: 11264 7,-20: 1: 32768 8,-18: 1: 53248 - 3: 11276 + 7: 11276 7,-18: 1: 65416 8,-19: - 3: 11276 + 7: 11276 1: 49152 8,-17: - 3: 12 + 7: 12 9,-20: - 3: 260 + 7: 260 1: 62538 9,-19: - 3: 257 + 7: 257 1: 62532 9,-18: - 3: 257 + 7: 257 1: 62532 9,-21: 1: 17412 10,-20: 1: 28672 - 3: 34560 + 7: 34560 10,-19: 1: 28672 - 3: 34567 + 7: 34567 10,-18: 1: 28672 - 3: 34567 + 7: 34567 10,-17: - 3: 7 + 7: 7 11,-20: 1: 29764 11,-18: @@ -8385,30 +8422,30 @@ entities: 1: 12288 5,-18: 1: 60945 - 3: 4352 + 7: 4352 6,-18: 1: 56576 - 3: 8704 + 7: 8704 7,-19: 1: 34952 21,-4: - 3: 3975 + 7: 3975 1: 32768 21,-3: 1: 61440 21,-2: 1: 240 21,-5: - 3: 36608 + 7: 36608 1: 128 22,-4: - 3: 3855 + 7: 3855 22,-3: 1: 61440 22,-2: 1: 240 23,-4: - 3: 3855 + 7: 3855 1: 49344 23,-3: 1: 64716 @@ -8417,10 +8454,10 @@ entities: 0: 49152 23,-5: 1: 49348 - 3: 3840 + 7: 3840 24,-4: 0: 4369 - 3: 142 + 7: 142 1: 8736 24,-3: 0: 4369 @@ -8434,7 +8471,7 @@ entities: 24,4: 0: 3857 1: 61538 - 3: 136 + 7: 136 25,0: 0: 3551 25,2: @@ -8483,7 +8520,7 @@ entities: 24,-5: 0: 4592 1: 9743 - 3: 34816 + 7: 34816 25,-3: 0: 32766 25,-2: @@ -8576,7 +8613,7 @@ entities: 1: 34800 0: 28672 22,-5: - 3: 3840 + 7: 3840 20,-13: 1: 22272 -16,8: @@ -8589,22 +8626,21 @@ entities: 0: 546 -15,8: 0: 256 - 3: 238 + 7: 238 1: 36352 -15,7: 0: 4096 - 3: 61152 + 7: 61152 1: 15 -15,9: 1: 12 -14,8: - 3: 191 - 7: 64 + 7: 255 1: 20224 -14,9: 1: 15 -14,7: - 3: 65520 + 7: 65520 1: 15 -17,7: 0: 34816 @@ -8651,6 +8687,66 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.823984 + - 82.09976 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 235 moles: @@ -8681,6 +8777,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.813705 + - 82.06108 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -8712,7 +8823,22 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.14975 + temperature: 293.14948 + moles: + - 18.472576 + - 69.49208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.1495 moles: - 20.078888 - 75.53487 @@ -8727,8 +8853,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 147.92499 + temperature: 293.14975 moles: + - 21.824879 + - 82.10312 - 0 - 0 - 0 @@ -8739,6 +8867,19 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 23.57087 + - 88.67137 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - 0 - 0 - volume: 2500 @@ -8773,8 +8914,8 @@ entities: id: docking31405 localAnchorB: 0.49999997,0 localAnchorA: -62.5,39 - damping: 77.55165 - stiffness: 696.102 + damping: 77.5519 + stiffness: 696.1043 - uid: 28213 components: - type: MetaData @@ -8851,22 +8992,6 @@ entities: - type: Transform pos: -42.541283,-55.258762 parent: 5350 -- proto: ActionToggleBlock - entities: - - uid: 6512 - components: - - type: Transform - parent: 6511 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 6511 - - uid: 7540 - components: - - type: Transform - parent: 7539 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 7539 - proto: ActionToggleInternals entities: - uid: 4778 @@ -8890,6 +9015,20 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 9284 + - uid: 15198 + components: + - type: Transform + parent: 15120 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 15120 + - uid: 15592 + components: + - type: Transform + parent: 15483 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 15483 - uid: 16296 components: - type: Transform @@ -8904,6 +9043,13 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 16297 + - uid: 18711 + components: + - type: Transform + parent: 18691 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 18691 - proto: ActionToggleJetpack entities: - uid: 7200 @@ -8913,6 +9059,27 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 7614 + - uid: 15196 + components: + - type: Transform + parent: 15120 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 15120 + - uid: 15521 + components: + - type: Transform + parent: 15483 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 15483 + - uid: 18692 + components: + - type: Transform + parent: 18691 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 18691 - proto: ActionToggleLight entities: - uid: 7435 @@ -9017,6 +9184,19 @@ entities: - 9292 - 9239 - 24322 + - uid: 872 + components: + - type: MetaData + name: Restrooms East Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,6.5 + parent: 5350 + - type: DeviceList + devices: + - 21141 + - 12104 + - 21143 - uid: 928 components: - type: Transform @@ -9031,7 +9211,7 @@ entities: - uid: 1072 components: - type: MetaData - name: SE Loop Air Alarm + name: Main Loop - SE Air Alarm - type: Transform pos: 14.5,-17.5 parent: 5350 @@ -9122,7 +9302,7 @@ entities: - uid: 3141 components: - type: MetaData - name: SW Loop Air Alarm + name: Main Loop SW Air Alarm - type: Transform pos: -19.5,-17.5 parent: 5350 @@ -9315,7 +9495,6 @@ entities: - 9640 - 22391 - 22390 - - 28218 - uid: 6405 components: - type: MetaData @@ -9365,7 +9544,6 @@ entities: - type: DeviceList devices: - 6946 - - 28218 - 6806 - 7773 - 7791 @@ -9387,6 +9565,8 @@ entities: - 7075 - uid: 7196 components: + - type: MetaData + name: North Corridor Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: -0.5,18.5 @@ -9855,7 +10035,7 @@ entities: - uid: 16587 components: - type: MetaData - name: South Loop Air Alarm + name: Main Loop South Air Alarm - type: Transform pos: -0.5,-17.5 parent: 5350 @@ -10411,6 +10591,8 @@ entities: - 27078 - uid: 23602 components: + - type: MetaData + name: AME Air Alarm - type: Transform pos: 74.5,9.5 parent: 5350 @@ -10421,19 +10603,19 @@ entities: - 12383 - 12382 - 12371 - - uid: 23906 + - uid: 23651 components: - type: MetaData name: Secure Storage Air Alarm - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,21.5 + pos: 41.5,25.5 parent: 5350 - type: DeviceList devices: - - 26311 - - 23909 - - 23380 + - 23613 + - 19405 + - 16670 - uid: 23907 components: - type: MetaData @@ -10513,6 +10695,8 @@ entities: - 8379 - uid: 24340 components: + - type: MetaData + name: Main Loop - North Air Alarm - type: Transform pos: -7.5,12.5 parent: 5350 @@ -10536,6 +10720,8 @@ entities: - 11929 - uid: 24343 components: + - type: MetaData + name: AI Upload Air Alarm - type: Transform pos: -9.5,20.5 parent: 5350 @@ -10781,6 +10967,8 @@ entities: - 11218 - uid: 24451 components: + - type: MetaData + name: Captain's Office Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-2.5 @@ -10805,7 +10993,7 @@ entities: - uid: 24458 components: - type: MetaData - name: Loop East Air Alarm + name: Main Loop - East Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-5.5 @@ -11286,7 +11474,7 @@ entities: - uid: 25987 components: - type: MetaData - name: NW Loop Air Alarm + name: Main Loop - NW Air Alarm - type: Transform rot: 3.141592653589793 rad pos: -17.5,7.5 @@ -11403,24 +11591,6 @@ entities: - type: DeviceList devices: - 27127 - - uid: 27662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,7.5 - parent: 5350 - - type: DeviceList - devices: - - 2125 - - 2127 - - 2126 - - 15021 - - 15179 - - 21875 - - 15169 - - 5667 - - 5666 - - 5665 - uid: 28012 components: - type: MetaData @@ -11485,19 +11655,6 @@ entities: - 28425 - 28426 - 28427 -- proto: AirAlarmVox - entities: - - uid: 27680 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,6.5 - parent: 5350 - - type: DeviceList - devices: - - 21141 - - 12104 - - 21143 - proto: AirCanister entities: - uid: 2431 @@ -11622,6 +11779,8 @@ entities: parent: 5350 - uid: 10406 components: + - type: MetaData + name: Restroom - type: Transform pos: 5.5,-55.5 parent: 5350 @@ -12497,7 +12656,7 @@ entities: - uid: 22414 components: - type: MetaData - name: South East Solars + name: SE Solars - type: Transform pos: 38.5,-57.5 parent: 5350 @@ -12610,6 +12769,14 @@ entities: - DoorStatus: DoorBolt - proto: AirlockExternalGlass entities: + - uid: 1485 + components: + - type: MetaData + name: SW Escape Pod + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-46.5 + parent: 5350 - uid: 5079 components: - type: MetaData @@ -12680,6 +12847,14 @@ entities: - type: Transform pos: -0.5,-73.5 parent: 5350 + - uid: 22350 + components: + - type: MetaData + name: Escape Pod + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-58.5 + parent: 5350 - proto: AirlockExternalGlassAtmosphericsLocked entities: - uid: 11257 @@ -12984,7 +13159,7 @@ entities: - uid: 13922 components: - type: MetaData - name: North East Airlock + name: NE Airlock - type: Transform pos: 48.5,38.5 parent: 5350 @@ -13049,7 +13224,7 @@ entities: - uid: 20029 components: - type: MetaData - name: South East Solars Airlock + name: SE Solars Airlock - type: Transform pos: 38.5,-64.5 parent: 5350 @@ -13062,7 +13237,7 @@ entities: - uid: 20030 components: - type: MetaData - name: South East Solars Airlock + name: SE Solars Airlock - type: Transform pos: 38.5,-61.5 parent: 5350 @@ -13146,14 +13321,10 @@ entities: radarColor: '#990000FF' - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 504 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-46.5 - parent: 5350 - uid: 5080 components: + - type: MetaData + name: North Escape Pod - type: Transform rot: 1.5707963267948966 rad pos: 41.5,47.5 @@ -13164,8 +13335,18 @@ entities: rot: -1.5707963267948966 rad pos: -64.5,-13.5 parent: 5350 + - uid: 7048 + components: + - type: MetaData + name: SW Escape Pod + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-46.5 + parent: 5350 - uid: 22330 components: + - type: MetaData + name: Escape Pod - type: Transform pos: 17.5,-62.5 parent: 5350 @@ -13226,7 +13407,7 @@ entities: - uid: 13921 components: - type: MetaData - name: North East Airlock + name: NE Airlock - type: Transform pos: 49.5,39.5 parent: 5350 @@ -13288,6 +13469,14 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,20.5 parent: 5350 + - uid: 1486 + components: + - type: MetaData + name: North Corridor + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,12.5 + parent: 5350 - uid: 1554 components: - type: Transform @@ -13408,14 +13597,11 @@ entities: parent: 5350 - uid: 5870 components: + - type: MetaData + name: North Corridor - type: Transform pos: -3.5,12.5 parent: 5350 - - uid: 5872 - components: - - type: Transform - pos: -1.5,12.5 - parent: 5350 - uid: 6710 components: - type: MetaData @@ -13535,6 +13721,8 @@ entities: parent: 5350 - uid: 12601 components: + - type: MetaData + name: North Corridor - type: Transform rot: 1.5707963267948966 rad pos: -2.5,12.5 @@ -14456,6 +14644,13 @@ entities: - - Security - proto: AirlockMedicalLocked entities: + - uid: 1517 + components: + - type: MetaData + name: Morgue + - type: Transform + pos: -18.5,-48.5 + parent: 5350 - uid: 15278 components: - type: MetaData @@ -14493,13 +14688,6 @@ entities: - type: Transform pos: -17.5,26.5 parent: 5350 - - uid: 1749 - components: - - type: MetaData - name: Morgue - - type: Transform - pos: -18.5,-48.5 - parent: 5350 - proto: AirlockQuartermasterGlassLocked entities: - uid: 4309 @@ -14519,7 +14707,7 @@ entities: pos: -29.5,15.5 parent: 5350 - type: Door - secondsUntilStateChange: -240799.38 + secondsUntilStateChange: -252063.2 state: Opening - type: DeviceLinkSource lastSignals: @@ -14583,6 +14771,13 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-38.5 parent: 5350 + - uid: 1488 + components: + - type: MetaData + name: Breakroom + - type: Transform + pos: 2.5,-41.5 + parent: 5350 - uid: 4708 components: - type: MetaData @@ -14631,6 +14826,8 @@ entities: - - Security - uid: 17554 components: + - type: MetaData + name: R&D - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-34.5 @@ -14643,20 +14840,15 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-46.5 parent: 5350 -- proto: AirlockScienceLocked - entities: - - uid: 2187 + - uid: 23758 components: - type: MetaData - name: Breakroom - - type: Transform - pos: 2.5,-41.5 - parent: 5350 - - uid: 14149 - components: + name: Anomaly Lab - type: Transform pos: 23.5,-36.5 parent: 5350 +- proto: AirlockScienceLocked + entities: - uid: 14186 components: - type: MetaData @@ -14681,6 +14873,8 @@ entities: - DoorStatus: DoorBolt - uid: 15115 components: + - type: MetaData + name: Server Room - type: Transform pos: 28.5,-37.5 parent: 5350 @@ -14689,8 +14883,10 @@ entities: - type: Transform pos: 21.5,-48.5 parent: 5350 - - uid: 15592 + - uid: 18714 components: + - type: MetaData + name: XenoArch - type: Transform pos: 16.5,-41.5 parent: 5350 @@ -14775,7 +14971,7 @@ entities: pos: -4.5,53.5 parent: 5350 - type: Door - secondsUntilStateChange: -95453.125 + secondsUntilStateChange: -106716.95 state: Opening - type: DeviceLinkSink invokeCounter: 2 @@ -15545,7 +15741,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 27680 + - 872 - uid: 12371 components: - type: Transform @@ -15647,7 +15843,6 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 27662 - 24342 - 24443 - 20627 @@ -15862,6 +16057,14 @@ entities: - type: DeviceNetwork deviceLists: - 15738 + - uid: 19405 + components: + - type: Transform + pos: 45.5,23.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 23651 - uid: 19630 components: - type: Transform @@ -16004,14 +16207,6 @@ entities: deviceLists: - 22592 - 22543 - - uid: 23909 - components: - - type: Transform - pos: 44.5,22.5 - parent: 5350 - - type: DeviceNetwork - deviceLists: - - 23906 - uid: 23910 components: - type: Transform @@ -16378,16 +16573,6 @@ entities: - type: DeviceNetwork deviceLists: - 28012 - - uid: 28218 - components: - - type: Transform - pos: -7.5,37.5 - parent: 5350 - - type: DeviceNetwork - deviceLists: - - 6384 - - 7810 - - 6735 - uid: 28347 components: - type: Transform @@ -16441,99 +16626,94 @@ entities: parent: 5350 - proto: AmeController entities: - - uid: 21812 + - uid: 1749 components: - type: Transform - pos: 71.5,8.5 + pos: 76.5,5.5 parent: 5350 - proto: AmeJar entities: - - uid: 23812 + - uid: 28642 components: - type: Transform - pos: 73.68355,8.538181 - parent: 5350 - - uid: 28194 - components: - - type: Transform - pos: 73.29292,8.538181 + pos: 76.515335,7.632393 parent: 5350 - proto: AmePartFlatpack entities: - uid: 14093 components: - type: Transform - parent: 21813 + parent: 17029 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 15326 components: - type: Transform - parent: 21813 + parent: 17029 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 16554 components: - type: Transform - parent: 21813 + parent: 17029 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 23357 components: - type: Transform - parent: 21813 + parent: 17029 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 23358 components: - type: Transform - parent: 21813 + parent: 17029 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 23359 components: - type: Transform - parent: 21813 + parent: 17029 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 23504 components: - type: Transform - parent: 21813 + parent: 17029 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 23505 components: - type: Transform - parent: 21813 + parent: 17029 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 23506 components: - type: Transform - parent: 21813 + parent: 17029 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 23507 components: - type: Transform - parent: 21813 + parent: 17029 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 23508 components: - type: Transform - parent: 21813 + parent: 17029 - type: Physics canCollide: False - type: InsideEntityStorage @@ -16561,7 +16741,7 @@ entities: - uid: 143 components: - type: MetaData - name: Main Loop West APC + name: Main Loop - West APC - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-0.5 @@ -16661,7 +16841,7 @@ entities: - uid: 2050 components: - type: MetaData - name: South Loop APC + name: Main Loop South APC - type: Transform pos: -8.5,-17.5 parent: 5350 @@ -17119,7 +17299,7 @@ entities: - uid: 21373 components: - type: MetaData - name: SE Solars APC + name: Solars SE APC - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-60.5 @@ -17263,6 +17443,18 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,4.5 parent: 5350 +- proto: APCElectronics + entities: + - uid: 23176 + components: + - type: Transform + pos: 37.664337,6.747689 + parent: 5350 + - uid: 23750 + components: + - type: Transform + pos: 37.539337,6.482064 + parent: 5350 - proto: APCHighCapacity entities: - uid: 913 @@ -17429,12 +17621,6 @@ entities: - type: Transform pos: -70.5,4.5 parent: 5350 - - uid: 15521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-46.5 - parent: 5350 - uid: 21071 components: - type: Transform @@ -18987,8 +19173,9 @@ entities: - uid: 26644 components: - type: Transform - pos: -57.5,-71.5 - parent: 5350 + anchored: False + pos: -55.22899,-73.91482 + parent: 951 - uid: 26648 components: - type: Transform @@ -19117,18 +19304,21 @@ entities: - uid: 26689 components: - type: Transform - pos: -53.5,-71.5 - parent: 5350 + anchored: False + pos: -51.22899,-73.91482 + parent: 951 - uid: 26691 components: - type: Transform - pos: -49.5,-71.5 - parent: 5350 + anchored: False + pos: -47.22899,-73.91482 + parent: 951 - uid: 26694 components: - type: Transform - pos: -45.5,-71.5 - parent: 5350 + anchored: False + pos: -43.22899,-73.91482 + parent: 951 - uid: 26695 components: - type: Transform @@ -21644,10 +21834,10 @@ entities: - type: Transform pos: 0.5,-34.5 parent: 5350 - - uid: 28412 + - uid: 19901 components: - type: Transform - pos: 52.5,5.5 + pos: 54.5,5.5 parent: 5350 - proto: BagpipeInstrument entities: @@ -21916,6 +22106,8 @@ entities: entities: - uid: 1740 components: + - type: MetaData + desc: Defintely not a relabeled brigmedic bedsheet, nope. - type: Transform pos: -1.5,40.5 parent: 5350 @@ -22288,6 +22480,8 @@ entities: parent: 5350 - uid: 22904 components: + - type: MetaData + name: Secure Armory Blast Doors - type: Transform pos: -7.5,41.5 parent: 5350 @@ -22296,6 +22490,8 @@ entities: - type: Transform pos: 48.5,23.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 27135 components: - type: Transform @@ -22315,11 +22511,15 @@ entities: - type: Transform pos: 48.5,22.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 28382 components: - type: Transform pos: 48.5,24.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 - proto: BlastDoorExterior1Open entities: - uid: 24634 @@ -22611,10 +22811,10 @@ entities: parent: 5350 - proto: BookSpaceLaw entities: - - uid: 1972 + - uid: 1376 components: - type: Transform - pos: -3.3350391,37.558666 + pos: -3.484253,37.5611 parent: 5350 - proto: BoozeDispenser entities: @@ -22821,7 +23021,7 @@ entities: - uid: 8085 components: - type: Transform - pos: -19.498852,40.61381 + pos: -19.518959,40.53281 parent: 5350 - proto: BoxEncryptionKeySecurity entities: @@ -23009,7 +23209,7 @@ entities: - uid: 11174 components: - type: Transform - pos: -7.919447,-27.326408 + pos: -7.767823,-27.351887 parent: 5350 - uid: 16240 components: @@ -23018,11 +23218,6 @@ entities: parent: 5350 - proto: BoxFolderYellow entities: - - uid: 3939 - components: - - type: Transform - pos: -27.494276,8.585135 - parent: 5350 - uid: 17784 components: - type: Transform @@ -23033,6 +23228,13 @@ entities: - type: Transform pos: -30.686172,13.643055 parent: 5350 +- proto: BoxHandcuff + entities: + - uid: 19932 + components: + - type: Transform + pos: 8.583343,28.732727 + parent: 5350 - proto: BoxHeadset entities: - uid: 6801 @@ -23054,21 +23256,13 @@ entities: parent: 5350 - proto: BoxLethalshot entities: - - uid: 6527 + - uid: 3056 components: - type: Transform - pos: -8.326942,36.34994 - parent: 5350 - - uid: 7537 - components: - - type: Transform - pos: -8.691526,36.32911 - parent: 5350 - - uid: 28210 - components: - - type: Transform - pos: -3.7100391,37.57429 - parent: 5350 + parent: 11588 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: BoxLightbulb entities: - uid: 3949 @@ -23124,18 +23318,6 @@ entities: - type: Transform pos: -15.658107,48.604027 parent: 5350 -- proto: BoxShotgunSlug - entities: - - uid: 1913 - components: - - type: Transform - pos: -8.308382,36.69452 - parent: 5350 - - uid: 15205 - components: - - type: Transform - pos: -8.714632,36.678894 - parent: 5350 - proto: BoxSterileMask entities: - uid: 14952 @@ -23324,6 +23506,12 @@ entities: - type: Transform pos: -35.5,36.5 parent: 5350 + - uid: 5095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,21.5 + parent: 5350 - uid: 5405 components: - type: Transform @@ -23372,12 +23560,6 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,7.5 parent: 5350 - - uid: 16457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-58.5 - parent: 5350 - uid: 16494 components: - type: Transform @@ -23436,18 +23618,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-4.5 parent: 5350 - - uid: 28401 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,21.5 - parent: 5350 - - uid: 28402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,21.5 - parent: 5350 - proto: ButtonFrameCautionSecurity entities: - uid: 6560 @@ -23456,11 +23626,11 @@ entities: rot: 3.141592653589793 rad pos: 0.5,41.5 parent: 5350 - - uid: 14858 + - uid: 7538 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,35.5 + pos: -7.2534924,35.495472 parent: 5350 - uid: 22351 components: @@ -23468,6 +23638,12 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,45.5 parent: 5350 + - uid: 22612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.763909,35.495472 + parent: 5350 - proto: ButtonFrameExit entities: - uid: 7125 @@ -23488,12 +23664,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-28.5 parent: 5350 - - uid: 21681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-59.5 - parent: 5350 - proto: ButtonFrameGrey entities: - uid: 3005 @@ -24422,6 +24592,16 @@ entities: - type: Transform pos: 8.5,32.5 parent: 5350 + - uid: 1525 + components: + - type: Transform + pos: 72.5,5.5 + parent: 5350 + - uid: 1527 + components: + - type: Transform + pos: 74.5,5.5 + parent: 5350 - uid: 1544 components: - type: Transform @@ -25562,11 +25742,6 @@ entities: - type: Transform pos: 32.5,-45.5 parent: 5350 - - uid: 2999 - components: - - type: Transform - pos: 72.5,6.5 - parent: 5350 - uid: 3001 components: - type: Transform @@ -25712,11 +25887,6 @@ entities: - type: Transform pos: 36.5,-60.5 parent: 5350 - - uid: 3056 - components: - - type: Transform - pos: 69.5,6.5 - parent: 5350 - uid: 3068 components: - type: Transform @@ -26757,6 +26927,11 @@ entities: - type: Transform pos: 60.5,-19.5 parent: 5350 + - uid: 5329 + components: + - type: Transform + pos: 70.5,5.5 + parent: 5350 - uid: 5334 components: - type: Transform @@ -27707,6 +27882,11 @@ entities: - type: Transform pos: -8.5,41.5 parent: 5350 + - uid: 6762 + components: + - type: Transform + pos: 45.5,25.5 + parent: 5350 - uid: 6779 components: - type: Transform @@ -27722,6 +27902,11 @@ entities: - type: Transform pos: 8.5,-61.5 parent: 5350 + - uid: 6818 + components: + - type: Transform + pos: 45.5,26.5 + parent: 5350 - uid: 6863 components: - type: Transform @@ -28402,6 +28587,11 @@ entities: - type: Transform pos: 9.5,47.5 parent: 5350 + - uid: 7730 + components: + - type: Transform + pos: -50.5,2.5 + parent: 5350 - uid: 7731 components: - type: Transform @@ -28497,6 +28687,11 @@ entities: - type: Transform pos: 60.5,-14.5 parent: 5350 + - uid: 7940 + components: + - type: Transform + pos: 75.5,5.5 + parent: 5350 - uid: 7941 components: - type: Transform @@ -28547,11 +28742,6 @@ entities: - type: Transform pos: 53.5,-11.5 parent: 5350 - - uid: 8311 - components: - - type: Transform - pos: 71.5,6.5 - parent: 5350 - uid: 8351 components: - type: Transform @@ -38367,16 +38557,6 @@ entities: - type: Transform pos: 45.5,24.5 parent: 5350 - - uid: 23222 - components: - - type: Transform - pos: 47.5,24.5 - parent: 5350 - - uid: 23229 - components: - - type: Transform - pos: 46.5,24.5 - parent: 5350 - uid: 23234 components: - type: Transform @@ -38392,16 +38572,6 @@ entities: - type: Transform pos: 45.5,21.5 parent: 5350 - - uid: 23239 - components: - - type: Transform - pos: 47.5,23.5 - parent: 5350 - - uid: 23240 - components: - - type: Transform - pos: 47.5,22.5 - parent: 5350 - uid: 23242 components: - type: Transform @@ -38752,11 +38922,6 @@ entities: - type: Transform pos: 104.5,-13.5 parent: 5350 - - uid: 23356 - components: - - type: Transform - pos: 76.5,6.5 - parent: 5350 - uid: 23364 components: - type: Transform @@ -38942,6 +39107,16 @@ entities: - type: Transform pos: 31.5,37.5 parent: 5350 + - uid: 23612 + components: + - type: Transform + pos: 71.5,5.5 + parent: 5350 + - uid: 23615 + components: + - type: Transform + pos: 73.5,5.5 + parent: 5350 - uid: 23813 components: - type: Transform @@ -38987,11 +39162,6 @@ entities: - type: Transform pos: -60.5,-15.5 parent: 5350 - - uid: 23973 - components: - - type: Transform - pos: 73.5,6.5 - parent: 5350 - uid: 23991 components: - type: Transform @@ -39192,6 +39362,11 @@ entities: - type: Transform pos: -25.5,-56.5 parent: 5350 + - uid: 24594 + components: + - type: Transform + pos: 17.5,-61.5 + parent: 5350 - uid: 24637 components: - type: Transform @@ -40252,11 +40427,6 @@ entities: - type: Transform pos: 10.5,-14.5 parent: 5350 - - uid: 26842 - components: - - type: Transform - pos: 74.5,6.5 - parent: 5350 - uid: 26980 components: - type: Transform @@ -40947,11 +41117,6 @@ entities: - type: Transform pos: 7.5,-26.5 parent: 5350 - - uid: 28216 - components: - - type: Transform - pos: 75.5,6.5 - parent: 5350 - uid: 28247 components: - type: Transform @@ -41456,6 +41621,11 @@ entities: - type: Transform pos: 15.5,9.5 parent: 5350 + - uid: 2565 + components: + - type: Transform + pos: -54.5,-62.5 + parent: 5350 - uid: 2710 components: - type: Transform @@ -41531,6 +41701,16 @@ entities: - type: Transform pos: -27.5,23.5 parent: 5350 + - uid: 3602 + components: + - type: Transform + pos: -54.5,-60.5 + parent: 5350 + - uid: 3763 + components: + - type: Transform + pos: -54.5,-61.5 + parent: 5350 - uid: 3835 components: - type: Transform @@ -42911,11 +43091,6 @@ entities: - type: Transform pos: -16.5,35.5 parent: 5350 - - uid: 6690 - components: - - type: Transform - pos: 73.5,4.5 - parent: 5350 - uid: 6693 components: - type: Transform @@ -42956,6 +43131,11 @@ entities: - type: Transform pos: -16.5,34.5 parent: 5350 + - uid: 7047 + components: + - type: Transform + pos: 69.5,54.5 + parent: 5350 - uid: 7129 components: - type: Transform @@ -43026,6 +43206,11 @@ entities: - type: Transform pos: -25.5,52.5 parent: 5350 + - uid: 8087 + components: + - type: Transform + pos: -54.5,-59.5 + parent: 5350 - uid: 8089 components: - type: Transform @@ -43041,15 +43226,10 @@ entities: - type: Transform pos: -25.5,54.5 parent: 5350 - - uid: 8244 + - uid: 8311 components: - type: Transform - pos: 74.5,4.5 - parent: 5350 - - uid: 8253 - components: - - type: Transform - pos: 75.5,4.5 + pos: 63.5,29.5 parent: 5350 - uid: 8369 components: @@ -43066,6 +43246,11 @@ entities: - type: Transform pos: -30.5,60.5 parent: 5350 + - uid: 8575 + components: + - type: Transform + pos: 70.5,12.5 + parent: 5350 - uid: 8589 components: - type: Transform @@ -43081,6 +43266,26 @@ entities: - type: Transform pos: 25.5,46.5 parent: 5350 + - uid: 8598 + components: + - type: Transform + pos: 70.5,11.5 + parent: 5350 + - uid: 8599 + components: + - type: Transform + pos: 65.5,29.5 + parent: 5350 + - uid: 8600 + components: + - type: Transform + pos: 67.5,29.5 + parent: 5350 + - uid: 8601 + components: + - type: Transform + pos: 69.5,29.5 + parent: 5350 - uid: 8621 components: - type: Transform @@ -43281,6 +43486,46 @@ entities: - type: Transform pos: 56.5,8.5 parent: 5350 + - uid: 9189 + components: + - type: Transform + pos: 70.5,28.5 + parent: 5350 + - uid: 9190 + components: + - type: Transform + pos: 70.5,29.5 + parent: 5350 + - uid: 9194 + components: + - type: Transform + pos: 67.5,49.5 + parent: 5350 + - uid: 9195 + components: + - type: Transform + pos: 67.5,46.5 + parent: 5350 + - uid: 9198 + components: + - type: Transform + pos: 67.5,55.5 + parent: 5350 + - uid: 9202 + components: + - type: Transform + pos: 67.5,56.5 + parent: 5350 + - uid: 9203 + components: + - type: Transform + pos: 73.5,56.5 + parent: 5350 + - uid: 9204 + components: + - type: Transform + pos: 67.5,47.5 + parent: 5350 - uid: 9290 components: - type: Transform @@ -43376,6 +43621,11 @@ entities: - type: Transform pos: 17.5,-56.5 parent: 5350 + - uid: 9537 + components: + - type: Transform + pos: 73.5,46.5 + parent: 5350 - uid: 9549 components: - type: Transform @@ -43411,6 +43661,11 @@ entities: - type: Transform pos: -21.5,33.5 parent: 5350 + - uid: 10131 + components: + - type: Transform + pos: 73.5,47.5 + parent: 5350 - uid: 10137 components: - type: Transform @@ -43506,6 +43761,11 @@ entities: - type: Transform pos: -26.5,62.5 parent: 5350 + - uid: 10416 + components: + - type: Transform + pos: 73.5,49.5 + parent: 5350 - uid: 10432 components: - type: Transform @@ -43996,10 +44256,15 @@ entities: - type: Transform pos: 44.5,14.5 parent: 5350 + - uid: 11646 + components: + - type: Transform + pos: -44.5,-63.5 + parent: 5350 - uid: 11665 components: - type: Transform - pos: 71.5,4.5 + pos: 73.5,53.5 parent: 5350 - uid: 11753 components: @@ -44206,6 +44471,11 @@ entities: - type: Transform pos: 44.5,16.5 parent: 5350 + - uid: 11952 + components: + - type: Transform + pos: 73.5,55.5 + parent: 5350 - uid: 12043 components: - type: Transform @@ -44236,6 +44506,11 @@ entities: - type: Transform pos: 16.5,5.5 parent: 5350 + - uid: 12297 + components: + - type: Transform + pos: -52.5,-60.5 + parent: 5350 - uid: 12364 components: - type: Transform @@ -44301,6 +44576,11 @@ entities: - type: Transform pos: 48.5,3.5 parent: 5350 + - uid: 12411 + components: + - type: Transform + pos: 73.5,52.5 + parent: 5350 - uid: 12420 components: - type: Transform @@ -44421,6 +44701,11 @@ entities: - type: Transform pos: 68.5,-29.5 parent: 5350 + - uid: 12449 + components: + - type: Transform + pos: 67.5,53.5 + parent: 5350 - uid: 12465 components: - type: Transform @@ -44606,6 +44891,16 @@ entities: - type: Transform pos: 51.5,17.5 parent: 5350 + - uid: 12541 + components: + - type: Transform + pos: 67.5,52.5 + parent: 5350 + - uid: 12666 + components: + - type: Transform + pos: 67.5,50.5 + parent: 5350 - uid: 13118 components: - type: Transform @@ -45421,6 +45716,11 @@ entities: - type: Transform pos: 8.5,-62.5 parent: 5350 + - uid: 14728 + components: + - type: Transform + pos: -58.5,-64.5 + parent: 5350 - uid: 15073 components: - type: Transform @@ -45431,6 +45731,11 @@ entities: - type: Transform pos: -29.5,30.5 parent: 5350 + - uid: 15132 + components: + - type: Transform + pos: -54.5,-64.5 + parent: 5350 - uid: 15341 components: - type: Transform @@ -45576,6 +45881,11 @@ entities: - type: Transform pos: 29.5,-49.5 parent: 5350 + - uid: 16263 + components: + - type: Transform + pos: -50.5,-64.5 + parent: 5350 - uid: 16284 components: - type: Transform @@ -45631,6 +45941,21 @@ entities: - type: Transform pos: 6.5,-62.5 parent: 5350 + - uid: 16730 + components: + - type: Transform + pos: -58.5,-59.5 + parent: 5350 + - uid: 16931 + components: + - type: Transform + pos: -58.5,-61.5 + parent: 5350 + - uid: 16938 + components: + - type: Transform + pos: -43.5,-63.5 + parent: 5350 - uid: 16958 components: - type: Transform @@ -45661,11 +45986,6 @@ entities: - type: Transform pos: -58.5,-65.5 parent: 5350 - - uid: 16964 - components: - - type: Transform - pos: -58.5,-64.5 - parent: 5350 - uid: 16965 components: - type: Transform @@ -45696,20 +46016,10 @@ entities: - type: Transform pos: -56.5,-65.5 parent: 5350 - - uid: 16971 - components: - - type: Transform - pos: -56.5,-64.5 - parent: 5350 - - uid: 16972 - components: - - type: Transform - pos: -57.5,-71.5 - parent: 5350 - uid: 16973 components: - type: Transform - pos: -53.5,-71.5 + pos: -59.5,-63.5 parent: 5350 - uid: 16974 components: @@ -45741,11 +46051,6 @@ entities: - type: Transform pos: -54.5,-65.5 parent: 5350 - - uid: 16980 - components: - - type: Transform - pos: -54.5,-64.5 - parent: 5350 - uid: 16981 components: - type: Transform @@ -45776,11 +46081,6 @@ entities: - type: Transform pos: -52.5,-65.5 parent: 5350 - - uid: 16987 - components: - - type: Transform - pos: -52.5,-64.5 - parent: 5350 - uid: 16988 components: - type: Transform @@ -45811,15 +46111,10 @@ entities: - type: Transform pos: -50.5,-65.5 parent: 5350 - - uid: 16994 - components: - - type: Transform - pos: -50.5,-64.5 - parent: 5350 - uid: 16995 components: - type: Transform - pos: -49.5,-71.5 + pos: -44.5,-64.5 parent: 5350 - uid: 16996 components: @@ -45854,7 +46149,7 @@ entities: - uid: 17002 components: - type: Transform - pos: -48.5,-64.5 + pos: -46.5,-64.5 parent: 5350 - uid: 17003 components: @@ -45889,7 +46184,7 @@ entities: - uid: 17009 components: - type: Transform - pos: -46.5,-64.5 + pos: -56.5,-62.5 parent: 5350 - uid: 17010 components: @@ -45924,92 +46219,7 @@ entities: - uid: 17016 components: - type: Transform - pos: -44.5,-64.5 - parent: 5350 - - uid: 17017 - components: - - type: Transform - pos: -45.5,-71.5 - parent: 5350 - - uid: 17018 - components: - - type: Transform - pos: -46.5,-62.5 - parent: 5350 - - uid: 17019 - components: - - type: Transform - pos: -45.5,-61.5 - parent: 5350 - - uid: 17020 - components: - - type: Transform - pos: -44.5,-62.5 - parent: 5350 - - uid: 17021 - components: - - type: Transform - pos: -45.5,-62.5 - parent: 5350 - - uid: 17022 - components: - - type: Transform - pos: -48.5,-62.5 - parent: 5350 - - uid: 17023 - components: - - type: Transform - pos: -49.5,-62.5 - parent: 5350 - - uid: 17024 - components: - - type: Transform - pos: -50.5,-62.5 - parent: 5350 - - uid: 17025 - components: - - type: Transform - pos: -49.5,-61.5 - parent: 5350 - - uid: 17026 - components: - - type: Transform - pos: -52.5,-62.5 - parent: 5350 - - uid: 17027 - components: - - type: Transform - pos: -53.5,-62.5 - parent: 5350 - - uid: 17028 - components: - - type: Transform - pos: -54.5,-62.5 - parent: 5350 - - uid: 17029 - components: - - type: Transform - pos: -53.5,-61.5 - parent: 5350 - - uid: 17030 - components: - - type: Transform - pos: -56.5,-62.5 - parent: 5350 - - uid: 17031 - components: - - type: Transform - pos: -57.5,-62.5 - parent: 5350 - - uid: 17032 - components: - - type: Transform - pos: -58.5,-62.5 - parent: 5350 - - uid: 17033 - components: - - type: Transform - pos: -57.5,-61.5 + pos: 38.5,-77.5 parent: 5350 - uid: 17034 components: @@ -46031,26 +46241,6 @@ entities: - type: Transform pos: -45.5,-70.5 parent: 5350 - - uid: 17038 - components: - - type: Transform - pos: -57.5,-64.5 - parent: 5350 - - uid: 17039 - components: - - type: Transform - pos: -53.5,-64.5 - parent: 5350 - - uid: 17040 - components: - - type: Transform - pos: -49.5,-64.5 - parent: 5350 - - uid: 17041 - components: - - type: Transform - pos: -45.5,-64.5 - parent: 5350 - uid: 17042 components: - type: Transform @@ -46061,6 +46251,126 @@ entities: - type: Transform pos: -61.5,-63.5 parent: 5350 + - uid: 17065 + components: + - type: Transform + pos: -52.5,-62.5 + parent: 5350 + - uid: 17066 + components: + - type: Transform + pos: -58.5,-62.5 + parent: 5350 + - uid: 17067 + components: + - type: Transform + pos: -56.5,-61.5 + parent: 5350 + - uid: 17068 + components: + - type: Transform + pos: -56.5,-59.5 + parent: 5350 + - uid: 17069 + components: + - type: Transform + pos: -56.5,-60.5 + parent: 5350 + - uid: 17070 + components: + - type: Transform + pos: -48.5,-62.5 + parent: 5350 + - uid: 17071 + components: + - type: Transform + pos: -48.5,-61.5 + parent: 5350 + - uid: 17078 + components: + - type: Transform + pos: -48.5,-59.5 + parent: 5350 + - uid: 17079 + components: + - type: Transform + pos: -48.5,-60.5 + parent: 5350 + - uid: 17092 + components: + - type: Transform + pos: -44.5,-59.5 + parent: 5350 + - uid: 17093 + components: + - type: Transform + pos: -44.5,-61.5 + parent: 5350 + - uid: 17106 + components: + - type: Transform + pos: -44.5,-62.5 + parent: 5350 + - uid: 17107 + components: + - type: Transform + pos: -46.5,-61.5 + parent: 5350 + - uid: 17114 + components: + - type: Transform + pos: -46.5,-62.5 + parent: 5350 + - uid: 17115 + components: + - type: Transform + pos: -46.5,-60.5 + parent: 5350 + - uid: 17116 + components: + - type: Transform + pos: -46.5,-59.5 + parent: 5350 + - uid: 17123 + components: + - type: Transform + pos: -50.5,-62.5 + parent: 5350 + - uid: 17125 + components: + - type: Transform + pos: -58.5,-63.5 + parent: 5350 + - uid: 17132 + components: + - type: Transform + pos: -50.5,-61.5 + parent: 5350 + - uid: 17134 + components: + - type: Transform + pos: -50.5,-59.5 + parent: 5350 + - uid: 17150 + components: + - type: Transform + pos: -50.5,-60.5 + parent: 5350 + - uid: 17151 + components: + - type: Transform + pos: 38.5,-76.5 + parent: 5350 + - uid: 17166 + components: + - type: Transform + pos: 38.5,-66.5 + parent: 5350 + - uid: 17167 + components: + - type: Transform + pos: 38.5,-72.5 + parent: 5350 - uid: 17173 components: - type: Transform @@ -46104,7 +46414,7 @@ entities: - uid: 17206 components: - type: Transform - pos: -43.5,-63.5 + pos: 38.5,-71.5 parent: 5350 - uid: 17347 components: @@ -47156,26 +47466,6 @@ entities: - type: Transform pos: 63.5,44.5 parent: 5350 - - uid: 18856 - components: - - type: Transform - pos: 63.5,45.5 - parent: 5350 - - uid: 18857 - components: - - type: Transform - pos: 63.5,46.5 - parent: 5350 - - uid: 18858 - components: - - type: Transform - pos: 63.5,47.5 - parent: 5350 - - uid: 18859 - components: - - type: Transform - pos: 63.5,48.5 - parent: 5350 - uid: 18860 components: - type: Transform @@ -47246,6 +47536,11 @@ entities: - type: Transform pos: -29.5,24.5 parent: 5350 + - uid: 19851 + components: + - type: Transform + pos: -44.5,-60.5 + parent: 5350 - uid: 19887 components: - type: Transform @@ -47261,11 +47556,6 @@ entities: - type: Transform pos: 34.5,-69.5 parent: 5350 - - uid: 19890 - components: - - type: Transform - pos: 33.5,-68.5 - parent: 5350 - uid: 19891 components: - type: Transform @@ -47296,11 +47586,6 @@ entities: - type: Transform pos: 42.5,-69.5 parent: 5350 - - uid: 19897 - components: - - type: Transform - pos: 43.5,-68.5 - parent: 5350 - uid: 19898 components: - type: Transform @@ -47316,16 +47601,6 @@ entities: - type: Transform pos: 40.5,-67.5 parent: 5350 - - uid: 19901 - components: - - type: Transform - pos: 42.5,-68.5 - parent: 5350 - - uid: 19902 - components: - - type: Transform - pos: 34.5,-68.5 - parent: 5350 - uid: 19903 components: - type: Transform @@ -47361,16 +47636,6 @@ entities: - type: Transform pos: 42.5,-73.5 parent: 5350 - - uid: 19910 - components: - - type: Transform - pos: 42.5,-72.5 - parent: 5350 - - uid: 19911 - components: - - type: Transform - pos: 43.5,-72.5 - parent: 5350 - uid: 19912 components: - type: Transform @@ -47421,16 +47686,6 @@ entities: - type: Transform pos: 34.5,-73.5 parent: 5350 - - uid: 19922 - components: - - type: Transform - pos: 34.5,-72.5 - parent: 5350 - - uid: 19923 - components: - - type: Transform - pos: 33.5,-72.5 - parent: 5350 - uid: 19924 components: - type: Transform @@ -47471,16 +47726,6 @@ entities: - type: Transform pos: 34.5,-77.5 parent: 5350 - - uid: 19932 - components: - - type: Transform - pos: 34.5,-76.5 - parent: 5350 - - uid: 19933 - components: - - type: Transform - pos: 33.5,-76.5 - parent: 5350 - uid: 19934 components: - type: Transform @@ -47521,16 +47766,6 @@ entities: - type: Transform pos: 42.5,-75.5 parent: 5350 - - uid: 19942 - components: - - type: Transform - pos: 42.5,-76.5 - parent: 5350 - - uid: 19943 - components: - - type: Transform - pos: 43.5,-76.5 - parent: 5350 - uid: 19944 components: - type: Transform @@ -47616,6 +47851,16 @@ entities: - type: Transform pos: 38.5,-56.5 parent: 5350 + - uid: 19985 + components: + - type: Transform + pos: -58.5,-60.5 + parent: 5350 + - uid: 19999 + components: + - type: Transform + pos: -57.5,-63.5 + parent: 5350 - uid: 20023 components: - type: Transform @@ -47651,6 +47896,11 @@ entities: - type: Transform pos: -2.5,1.5 parent: 5350 + - uid: 21164 + components: + - type: Transform + pos: -48.5,-64.5 + parent: 5350 - uid: 21277 components: - type: Transform @@ -48171,11 +48421,26 @@ entities: - type: Transform pos: 95.5,0.5 parent: 5350 + - uid: 23069 + components: + - type: Transform + pos: -52.5,-64.5 + parent: 5350 - uid: 23129 components: - type: Transform pos: 96.5,0.5 parent: 5350 + - uid: 23145 + components: + - type: Transform + pos: -56.5,-64.5 + parent: 5350 + - uid: 23385 + components: + - type: Transform + pos: 70.5,48.5 + parent: 5350 - uid: 23565 components: - type: Transform @@ -48266,36 +48531,6 @@ entities: - type: Transform pos: 69.5,11.5 parent: 5350 - - uid: 23635 - components: - - type: Transform - pos: 71.5,28.5 - parent: 5350 - - uid: 23636 - components: - - type: Transform - pos: 70.5,12.5 - parent: 5350 - - uid: 23637 - components: - - type: Transform - pos: 69.5,12.5 - parent: 5350 - - uid: 23638 - components: - - type: Transform - pos: 71.5,12.5 - parent: 5350 - - uid: 23639 - components: - - type: Transform - pos: 70.5,28.5 - parent: 5350 - - uid: 23640 - components: - - type: Transform - pos: 69.5,28.5 - parent: 5350 - uid: 23642 components: - type: Transform @@ -48341,31 +48576,6 @@ entities: - type: Transform pos: 63.5,28.5 parent: 5350 - - uid: 23651 - components: - - type: Transform - pos: 67.5,28.5 - parent: 5350 - - uid: 23652 - components: - - type: Transform - pos: 66.5,28.5 - parent: 5350 - - uid: 23653 - components: - - type: Transform - pos: 65.5,28.5 - parent: 5350 - - uid: 23654 - components: - - type: Transform - pos: 68.5,28.5 - parent: 5350 - - uid: 23655 - components: - - type: Transform - pos: 64.5,28.5 - parent: 5350 - uid: 23656 components: - type: Transform @@ -48426,6 +48636,16 @@ entities: - type: Transform pos: 56.5,30.5 parent: 5350 + - uid: 23733 + components: + - type: Transform + pos: 64.5,54.5 + parent: 5350 + - uid: 23760 + components: + - type: Transform + pos: 71.5,48.5 + parent: 5350 - uid: 23794 components: - type: Transform @@ -48506,6 +48726,21 @@ entities: - type: Transform pos: 54.5,29.5 parent: 5350 + - uid: 23906 + components: + - type: Transform + pos: 64.5,29.5 + parent: 5350 + - uid: 23908 + components: + - type: Transform + pos: 66.5,29.5 + parent: 5350 + - uid: 23909 + components: + - type: Transform + pos: 68.5,29.5 + parent: 5350 - uid: 24059 components: - type: Transform @@ -48966,11 +49201,6 @@ entities: - type: Transform pos: 52.5,18.5 parent: 5350 - - uid: 28217 - components: - - type: Transform - pos: 72.5,4.5 - parent: 5350 - uid: 28403 components: - type: Transform @@ -49011,6 +49241,176 @@ entities: - type: Transform pos: 55.5,-0.5 parent: 5350 + - uid: 28495 + components: + - type: Transform + pos: 73.5,50.5 + parent: 5350 + - uid: 28499 + components: + - type: Transform + pos: 69.5,48.5 + parent: 5350 + - uid: 28503 + components: + - type: Transform + pos: 65.5,54.5 + parent: 5350 + - uid: 28513 + components: + - type: Transform + pos: -52.5,-59.5 + parent: 5350 + - uid: 28514 + components: + - type: Transform + pos: -52.5,-61.5 + parent: 5350 + - uid: 28532 + components: + - type: Transform + pos: 38.5,-75.5 + parent: 5350 + - uid: 28548 + components: + - type: Transform + pos: 33.5,-71.5 + parent: 5350 + - uid: 28549 + components: + - type: Transform + pos: 32.5,-71.5 + parent: 5350 + - uid: 28550 + components: + - type: Transform + pos: 32.5,-73.5 + parent: 5350 + - uid: 28551 + components: + - type: Transform + pos: 33.5,-73.5 + parent: 5350 + - uid: 28552 + components: + - type: Transform + pos: 33.5,-77.5 + parent: 5350 + - uid: 28553 + components: + - type: Transform + pos: 32.5,-77.5 + parent: 5350 + - uid: 28554 + components: + - type: Transform + pos: 33.5,-75.5 + parent: 5350 + - uid: 28555 + components: + - type: Transform + pos: 32.5,-75.5 + parent: 5350 + - uid: 28556 + components: + - type: Transform + pos: 33.5,-67.5 + parent: 5350 + - uid: 28557 + components: + - type: Transform + pos: 32.5,-67.5 + parent: 5350 + - uid: 28558 + components: + - type: Transform + pos: 33.5,-69.5 + parent: 5350 + - uid: 28559 + components: + - type: Transform + pos: 32.5,-69.5 + parent: 5350 + - uid: 28561 + components: + - type: Transform + pos: 43.5,-67.5 + parent: 5350 + - uid: 28562 + components: + - type: Transform + pos: 44.5,-67.5 + parent: 5350 + - uid: 28563 + components: + - type: Transform + pos: 44.5,-69.5 + parent: 5350 + - uid: 28564 + components: + - type: Transform + pos: 43.5,-69.5 + parent: 5350 + - uid: 28565 + components: + - type: Transform + pos: 44.5,-73.5 + parent: 5350 + - uid: 28566 + components: + - type: Transform + pos: 43.5,-73.5 + parent: 5350 + - uid: 28567 + components: + - type: Transform + pos: 44.5,-71.5 + parent: 5350 + - uid: 28568 + components: + - type: Transform + pos: 43.5,-71.5 + parent: 5350 + - uid: 28569 + components: + - type: Transform + pos: 44.5,-77.5 + parent: 5350 + - uid: 28570 + components: + - type: Transform + pos: 43.5,-77.5 + parent: 5350 + - uid: 28571 + components: + - type: Transform + pos: 44.5,-75.5 + parent: 5350 + - uid: 28572 + components: + - type: Transform + pos: 43.5,-75.5 + parent: 5350 + - uid: 28593 + components: + - type: Transform + pos: -52.5,-63.5 + parent: 5350 + - uid: 28594 + components: + - type: Transform + pos: -53.5,-63.5 + parent: 5350 + - uid: 28595 + components: + - type: Transform + pos: -54.5,-63.5 + parent: 5350 + - uid: 28596 + components: + - type: Transform + pos: -51.5,-63.5 + parent: 5350 - proto: CableHVStack entities: - uid: 1551 @@ -52595,6 +52995,16 @@ entities: - type: Transform pos: -18.5,26.5 parent: 5350 + - uid: 9192 + components: + - type: Transform + pos: 48.5,24.5 + parent: 5350 + - uid: 9193 + components: + - type: Transform + pos: 49.5,24.5 + parent: 5350 - uid: 9213 components: - type: Transform @@ -56940,21 +57350,6 @@ entities: - type: Transform pos: 47.5,24.5 parent: 5350 - - uid: 24048 - components: - - type: Transform - pos: 47.5,23.5 - parent: 5350 - - uid: 24049 - components: - - type: Transform - pos: 48.5,23.5 - parent: 5350 - - uid: 24050 - components: - - type: Transform - pos: 49.5,23.5 - parent: 5350 - uid: 24061 components: - type: Transform @@ -57345,6 +57740,31 @@ entities: - type: Transform pos: 2.5,-42.5 parent: 5350 + - uid: 28490 + components: + - type: Transform + pos: -8.5,45.5 + parent: 5350 + - uid: 28491 + components: + - type: Transform + pos: -8.5,46.5 + parent: 5350 + - uid: 28492 + components: + - type: Transform + pos: -8.5,47.5 + parent: 5350 + - uid: 28493 + components: + - type: Transform + pos: -7.5,47.5 + parent: 5350 + - uid: 28494 + components: + - type: Transform + pos: -6.5,47.5 + parent: 5350 - proto: CableMVStack entities: - uid: 1548 @@ -59434,6 +59854,12 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,-26.5 parent: 5350 + - uid: 3760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-61.5 + parent: 5350 - uid: 3821 components: - type: Transform @@ -59569,11 +59995,23 @@ entities: rot: 3.141592653589793 rad pos: 49.5,-35.5 parent: 5350 + - uid: 6531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-62.5 + parent: 5350 - uid: 6598 components: - type: Transform pos: -38.5,-57.5 parent: 5350 + - uid: 6700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-60.5 + parent: 5350 - uid: 6711 components: - type: Transform @@ -60495,6 +60933,12 @@ entities: - type: Transform pos: -25.5,53.5 parent: 5350 + - uid: 12354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-61.5 + parent: 5350 - uid: 12442 components: - type: Transform @@ -60587,6 +61031,12 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-33.5 parent: 5350 + - uid: 14064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-62.5 + parent: 5350 - uid: 14141 components: - type: Transform @@ -60688,6 +61138,12 @@ entities: - type: Transform pos: 68.5,0.5 parent: 5350 + - uid: 15009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-59.5 + parent: 5350 - uid: 15010 components: - type: Transform @@ -60771,12 +61227,24 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-49.5 parent: 5350 + - uid: 16262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-59.5 + parent: 5350 - uid: 16291 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-55.5 parent: 5350 + - uid: 16311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-61.5 + parent: 5350 - uid: 16410 components: - type: Transform @@ -60797,6 +61265,12 @@ entities: - type: Transform pos: -42.5,-53.5 parent: 5350 + - uid: 16677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-60.5 + parent: 5350 - uid: 16838 components: - type: Transform @@ -60862,6 +61336,90 @@ entities: - type: Transform pos: -39.5,-77.5 parent: 5350 + - uid: 16930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-62.5 + parent: 5350 + - uid: 16933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-64.5 + parent: 5350 + - uid: 16934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-64.5 + parent: 5350 + - uid: 16935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-64.5 + parent: 5350 + - uid: 16936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-64.5 + parent: 5350 + - uid: 16943 + components: + - type: Transform + pos: 45.5,-68.5 + parent: 5350 + - uid: 16944 + components: + - type: Transform + pos: 44.5,-72.5 + parent: 5350 + - uid: 16964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-62.5 + parent: 5350 + - uid: 16971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-59.5 + parent: 5350 + - uid: 16987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-60.5 + parent: 5350 + - uid: 16994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-60.5 + parent: 5350 + - uid: 17018 + components: + - type: Transform + pos: 41.5,-76.5 + parent: 5350 + - uid: 17020 + components: + - type: Transform + pos: 45.5,-72.5 + parent: 5350 + - uid: 17025 + components: + - type: Transform + pos: 43.5,-68.5 + parent: 5350 + - uid: 17026 + components: + - type: Transform + pos: 44.5,-68.5 + parent: 5350 - uid: 17117 components: - type: Transform @@ -60892,21 +61450,11 @@ entities: - type: Transform pos: -53.5,-65.5 parent: 5350 - - uid: 17123 - components: - - type: Transform - pos: -53.5,-64.5 - parent: 5350 - uid: 17124 components: - type: Transform pos: -53.5,-63.5 parent: 5350 - - uid: 17125 - components: - - type: Transform - pos: -53.5,-62.5 - parent: 5350 - uid: 17126 components: - type: Transform @@ -60937,21 +61485,11 @@ entities: - type: Transform pos: -57.5,-65.5 parent: 5350 - - uid: 17132 - components: - - type: Transform - pos: -57.5,-64.5 - parent: 5350 - uid: 17133 components: - type: Transform pos: -57.5,-63.5 parent: 5350 - - uid: 17134 - components: - - type: Transform - pos: -57.5,-62.5 - parent: 5350 - uid: 17135 components: - type: Transform @@ -61027,25 +61565,10 @@ entities: - type: Transform pos: -44.5,-63.5 parent: 5350 - - uid: 17150 - components: - - type: Transform - pos: -43.5,-63.5 - parent: 5350 - - uid: 17151 - components: - - type: Transform - pos: -45.5,-62.5 - parent: 5350 - uid: 17152 components: - type: Transform - pos: -49.5,-62.5 - parent: 5350 - - uid: 17153 - components: - - type: Transform - pos: -49.5,-64.5 + pos: 37.5,-76.5 parent: 5350 - uid: 17154 components: @@ -61107,16 +61630,6 @@ entities: - type: Transform pos: -45.5,-65.5 parent: 5350 - - uid: 17166 - components: - - type: Transform - pos: -45.5,-64.5 - parent: 5350 - - uid: 17167 - components: - - type: Transform - pos: -63.5,-74.5 - parent: 5350 - uid: 17517 components: - type: Transform @@ -61327,11 +61840,6 @@ entities: - type: Transform pos: 76.5,49.5 parent: 5350 - - uid: 18684 - components: - - type: Transform - pos: 73.5,49.5 - parent: 5350 - uid: 18685 components: - type: Transform @@ -61342,31 +61850,11 @@ entities: - type: Transform pos: 70.5,46.5 parent: 5350 - - uid: 18687 - components: - - type: Transform - pos: 73.5,50.5 - parent: 5350 - uid: 18688 components: - type: Transform pos: 67.5,48.5 parent: 5350 - - uid: 18689 - components: - - type: Transform - pos: 67.5,47.5 - parent: 5350 - - uid: 18691 - components: - - type: Transform - pos: 67.5,49.5 - parent: 5350 - - uid: 18692 - components: - - type: Transform - pos: 67.5,50.5 - parent: 5350 - uid: 18693 components: - type: Transform @@ -61457,26 +61945,6 @@ entities: - type: Transform pos: 76.5,56.5 parent: 5350 - - uid: 18711 - components: - - type: Transform - pos: 73.5,52.5 - parent: 5350 - - uid: 18712 - components: - - type: Transform - pos: 73.5,53.5 - parent: 5350 - - uid: 18713 - components: - - type: Transform - pos: 73.5,55.5 - parent: 5350 - - uid: 18714 - components: - - type: Transform - pos: 73.5,56.5 - parent: 5350 - uid: 18715 components: - type: Transform @@ -61497,26 +61965,6 @@ entities: - type: Transform pos: 70.5,56.5 parent: 5350 - - uid: 18719 - components: - - type: Transform - pos: 67.5,52.5 - parent: 5350 - - uid: 18720 - components: - - type: Transform - pos: 67.5,53.5 - parent: 5350 - - uid: 18721 - components: - - type: Transform - pos: 67.5,55.5 - parent: 5350 - - uid: 18722 - components: - - type: Transform - pos: 67.5,56.5 - parent: 5350 - uid: 18864 components: - type: Transform @@ -61686,11 +62134,6 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-26.5 parent: 5350 - - uid: 19792 - components: - - type: Transform - pos: 37.5,-76.5 - parent: 5350 - uid: 19793 components: - type: Transform @@ -61701,11 +62144,6 @@ entities: - type: Transform pos: 35.5,-76.5 parent: 5350 - - uid: 19795 - components: - - type: Transform - pos: 34.5,-76.5 - parent: 5350 - uid: 19796 components: - type: Transform @@ -61716,21 +62154,6 @@ entities: - type: Transform pos: 40.5,-76.5 parent: 5350 - - uid: 19798 - components: - - type: Transform - pos: 41.5,-76.5 - parent: 5350 - - uid: 19799 - components: - - type: Transform - pos: 42.5,-76.5 - parent: 5350 - - uid: 19800 - components: - - type: Transform - pos: 42.5,-72.5 - parent: 5350 - uid: 19801 components: - type: Transform @@ -61761,16 +62184,6 @@ entities: - type: Transform pos: 35.5,-72.5 parent: 5350 - - uid: 19807 - components: - - type: Transform - pos: 34.5,-72.5 - parent: 5350 - - uid: 19808 - components: - - type: Transform - pos: 34.5,-68.5 - parent: 5350 - uid: 19809 components: - type: Transform @@ -61801,16 +62214,6 @@ entities: - type: Transform pos: 41.5,-68.5 parent: 5350 - - uid: 19815 - components: - - type: Transform - pos: 42.5,-68.5 - parent: 5350 - - uid: 19816 - components: - - type: Transform - pos: 44.5,-68.5 - parent: 5350 - uid: 19817 components: - type: Transform @@ -61821,16 +62224,6 @@ entities: - type: Transform pos: 31.5,-68.5 parent: 5350 - - uid: 19819 - components: - - type: Transform - pos: 32.5,-76.5 - parent: 5350 - - uid: 19820 - components: - - type: Transform - pos: 31.5,-76.5 - parent: 5350 - uid: 19821 components: - type: Transform @@ -61892,6 +62285,17 @@ entities: - type: Transform pos: 24.5,-68.5 parent: 5350 + - uid: 19850 + components: + - type: Transform + pos: 34.5,-68.5 + parent: 5350 + - uid: 19971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-61.5 + parent: 5350 - uid: 20039 components: - type: Transform @@ -62318,6 +62722,11 @@ entities: rot: 3.141592653589793 rad pos: 70.5,32.5 parent: 5350 + - uid: 23381 + components: + - type: Transform + pos: -43.5,-63.5 + parent: 5350 - uid: 23570 components: - type: Transform @@ -62616,11 +63025,6 @@ entities: - type: Transform pos: -26.5,19.5 parent: 5350 - - uid: 24594 - components: - - type: Transform - pos: 67.5,46.5 - parent: 5350 - uid: 24595 components: - type: Transform @@ -62636,16 +63040,6 @@ entities: - type: Transform pos: 70.5,50.5 parent: 5350 - - uid: 24610 - components: - - type: Transform - pos: 73.5,47.5 - parent: 5350 - - uid: 24611 - components: - - type: Transform - pos: 73.5,46.5 - parent: 5350 - uid: 24614 components: - type: Transform @@ -63100,6 +63494,12 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,18.5 parent: 5350 + - uid: 28412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-59.5 + parent: 5350 - uid: 28430 components: - type: Transform @@ -63136,6 +63536,76 @@ entities: rot: 1.5707963267948966 rad pos: 69.5,-23.5 parent: 5350 + - uid: 28517 + components: + - type: Transform + pos: 43.5,-72.5 + parent: 5350 + - uid: 28535 + components: + - type: Transform + pos: 42.5,-68.5 + parent: 5350 + - uid: 28536 + components: + - type: Transform + pos: 42.5,-72.5 + parent: 5350 + - uid: 28537 + components: + - type: Transform + pos: 43.5,-76.5 + parent: 5350 + - uid: 28538 + components: + - type: Transform + pos: 42.5,-76.5 + parent: 5350 + - uid: 28539 + components: + - type: Transform + pos: 44.5,-76.5 + parent: 5350 + - uid: 28540 + components: + - type: Transform + pos: 45.5,-76.5 + parent: 5350 + - uid: 28541 + components: + - type: Transform + pos: 34.5,-76.5 + parent: 5350 + - uid: 28542 + components: + - type: Transform + pos: 33.5,-76.5 + parent: 5350 + - uid: 28543 + components: + - type: Transform + pos: 32.5,-76.5 + parent: 5350 + - uid: 28544 + components: + - type: Transform + pos: 32.5,-72.5 + parent: 5350 + - uid: 28545 + components: + - type: Transform + pos: 33.5,-72.5 + parent: 5350 + - uid: 28546 + components: + - type: Transform + pos: 34.5,-72.5 + parent: 5350 + - uid: 28547 + components: + - type: Transform + pos: 33.5,-68.5 + parent: 5350 - proto: Chair entities: - uid: 347 @@ -64417,6 +64887,12 @@ entities: rot: 3.141592653589793 rad pos: 0.5209484,3.569162 parent: 5350 + - uid: 8003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5012307,38.59284 + parent: 5350 - uid: 8092 components: - type: Transform @@ -65771,6 +66247,11 @@ entities: - 0 - 0 - 0 + - uid: 3939 + components: + - type: Transform + pos: 16.5,-59.5 + parent: 5350 - uid: 6051 components: - type: Transform @@ -65845,11 +66326,6 @@ entities: - 0 - 0 - 0 - - uid: 15120 - components: - - type: Transform - pos: 18.5,-59.5 - parent: 5350 - uid: 15608 components: - type: Transform @@ -66537,18 +67013,6 @@ entities: - type: Transform pos: 18.503342,-32.294178 parent: 5350 -- proto: ClothingBackpackElectropack - entities: - - uid: 6514 - components: - - type: Transform - pos: 8.451111,28.676104 - parent: 5350 - - uid: 6519 - components: - - type: Transform - pos: 8.701111,28.676104 - parent: 5350 - proto: ClothingBeltChampion entities: - uid: 1952 @@ -66604,6 +67068,11 @@ entities: - type: Transform pos: 5.489552,-48.32825 parent: 5350 + - uid: 18713 + components: + - type: Transform + pos: 5.6363497,-48.51322 + parent: 5350 - uid: 22343 components: - type: Transform @@ -67076,25 +67545,25 @@ entities: parent: 5350 - proto: ClothingHeadHelmetBasic entities: + - uid: 6490 + components: + - type: Transform + pos: -8.654011,44.395737 + parent: 5350 + - uid: 7368 + components: + - type: Transform + pos: -8.654011,44.614487 + parent: 5350 - uid: 7377 components: - type: Transform - pos: -8.675636,44.33661 + pos: -8.664427,44.718655 parent: 5350 - - uid: 7380 + - uid: 7517 components: - type: Transform - pos: -8.660011,44.477234 - parent: 5350 - - uid: 7382 - components: - - type: Transform - pos: -8.675636,44.602234 - parent: 5350 - - uid: 7383 - components: - - type: Transform - pos: -8.675636,44.68036 + pos: -8.654011,44.510323 parent: 5350 - proto: ClothingHeadHelmetEVA entities: @@ -67110,25 +67579,11 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 7940 - components: - - type: Transform - parent: 7801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 11097 components: - type: Transform pos: -18.29037,-13.4859085 parent: 5350 - - uid: 15196 - components: - - type: Transform - parent: 15195 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 15200 components: - type: Transform @@ -67139,21 +67594,21 @@ entities: - uid: 22229 components: - type: Transform - parent: 1488 + parent: 24610 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 22348 components: - type: Transform - parent: 1488 + parent: 13159 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 23051 components: - type: Transform - parent: 1489 + parent: 24328 - type: Physics canCollide: False - type: InsideEntityStorage @@ -67164,13 +67619,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 23407 - components: - - type: Transform - parent: 4104 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 23472 components: - type: Transform @@ -67178,13 +67626,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 23712 - components: - - type: Transform - parent: 7165 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 23905 components: - type: Transform @@ -67192,13 +67633,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 24056 - components: - - type: Transform - parent: 2617 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 24057 components: - type: Transform @@ -67206,13 +67640,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 24248 - components: - - type: Transform - parent: 11032 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 24266 components: - type: Transform @@ -67222,15 +67649,25 @@ entities: - type: InsideEntityStorage - proto: ClothingHeadHelmetRiot entities: - - uid: 4927 + - uid: 7240 components: - type: Transform - pos: -9.348304,39.80468 + pos: -9.364234,39.538868 parent: 5350 - - uid: 7958 + - uid: 7366 components: - type: Transform - pos: -9.317054,39.414055 + pos: -9.364234,39.830536 + parent: 5350 + - uid: 7367 + components: + - type: Transform + pos: -9.364234,39.6847 + parent: 5350 + - uid: 28482 + components: + - type: Transform + pos: -9.364234,39.393036 parent: 5350 - proto: ClothingHeadPyjamaSyndicatePink entities: @@ -67241,16 +67678,6 @@ entities: parent: 5350 - proto: ClothingMaskBreath entities: - - uid: 1524 - components: - - type: Transform - pos: -18.64687,-14.272686 - parent: 5350 - - uid: 1525 - components: - - type: Transform - pos: -18.39687,-14.132061 - parent: 5350 - uid: 13522 components: - type: Transform @@ -67285,16 +67712,6 @@ entities: parent: 5350 - proto: ClothingMaskGas entities: - - uid: 1526 - components: - - type: Transform - pos: -18.506245,-14.538311 - parent: 5350 - - uid: 1527 - components: - - type: Transform - pos: -18.30312,-14.413311 - parent: 5350 - uid: 9091 components: - type: Transform @@ -67490,32 +67907,42 @@ entities: parent: 5350 - proto: ClothingOuterArmorBasic entities: - - uid: 7240 + - uid: 1174 components: - type: Transform - pos: -8.269386,44.352234 + pos: -8.268594,44.541573 parent: 5350 - - uid: 7366 + - uid: 2149 components: - type: Transform - pos: -8.269386,44.477234 + pos: -8.268594,44.624905 parent: 5350 - - uid: 7367 + - uid: 4235 components: - type: Transform - pos: -8.269386,44.570984 + pos: -8.279011,44.718655 parent: 5350 - - uid: 7368 + - uid: 7380 components: - type: Transform - pos: -8.285011,44.64911 + pos: -8.268594,44.437405 parent: 5350 - proto: ClothingOuterArmorBulletproof entities: + - uid: 1913 + components: + - type: Transform + pos: -9.325962,40.419777 + parent: 5350 - uid: 2509 components: - type: Transform - pos: -9.317054,40.351555 + pos: -9.31901,40.5081 + parent: 5350 + - uid: 6426 + components: + - type: Transform + pos: -9.315545,40.336445 parent: 5350 - uid: 6958 components: @@ -67524,27 +67951,37 @@ entities: parent: 5350 - proto: ClothingOuterArmorReflective entities: + - uid: 1972 + components: + - type: Transform + pos: -9.711378,40.37811 + parent: 5350 - uid: 6778 components: - type: Transform pos: -9.707679,40.570305 parent: 5350 - - uid: 7206 - components: - - type: Transform - pos: -9.723304,40.39843 - parent: 5350 - proto: ClothingOuterArmorRiot entities: + - uid: 7383 + components: + - type: Transform + pos: -9.762751,39.630295 + parent: 5350 - uid: 7514 components: - type: Transform - pos: -9.754554,39.382805 + pos: -9.762751,39.51571 parent: 5350 - - uid: 7517 + - uid: 8001 components: - type: Transform - pos: -9.723304,39.789055 + pos: -9.773169,39.71948 + parent: 5350 + - uid: 28484 + components: + - type: Transform + pos: -9.762751,39.401127 parent: 5350 - proto: ClothingOuterCardborg entities: @@ -67593,14 +68030,7 @@ entities: - uid: 8883 components: - type: Transform - parent: 7801 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15198 - components: - - type: Transform - parent: 15195 + parent: 24328 - type: Physics canCollide: False - type: InsideEntityStorage @@ -67614,14 +68044,14 @@ entities: - uid: 22167 components: - type: Transform - parent: 1488 + parent: 13159 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 22168 components: - type: Transform - parent: 1488 + parent: 24610 - type: Physics canCollide: False - type: InsideEntityStorage @@ -67632,20 +68062,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 23099 - components: - - type: Transform - parent: 1489 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23284 - components: - - type: Transform - parent: 4104 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 23406 components: - type: Transform @@ -67660,13 +68076,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 23964 - components: - - type: Transform - parent: 7165 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 24058 components: - type: Transform @@ -67674,13 +68083,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 24244 - components: - - type: Transform - parent: 2617 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 24321 components: - type: Transform @@ -67688,43 +68090,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 24328 - components: - - type: Transform - parent: 11032 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitSecurity - entities: - - uid: 14074 - components: - - type: Transform - parent: 5663 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14095 - components: - - type: Transform - parent: 5776 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14107 - components: - - type: Transform - parent: 10975 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14110 - components: - - type: Transform - parent: 17674 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingOuterHoodieBlack entities: - uid: 24527 @@ -69245,26 +69610,6 @@ entities: - type: Transform pos: 74.5,16.5 parent: 5350 - - uid: 9193 - components: - - type: Transform - pos: 42.5,26.5 - parent: 5350 - - uid: 9194 - components: - - type: Transform - pos: 42.5,25.5 - parent: 5350 - - uid: 9195 - components: - - type: Transform - pos: 43.5,26.5 - parent: 5350 - - uid: 9198 - components: - - type: Transform - pos: 43.5,25.5 - parent: 5350 - uid: 23603 components: - type: Transform @@ -69280,6 +69625,29 @@ entities: - type: Transform pos: 66.5,16.5 parent: 5350 +- proto: ContainmentFieldGeneratorFlatpack + entities: + - uid: 19882 + components: + - type: Transform + parent: 19881 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19890 + components: + - type: Transform + parent: 19881 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19897 + components: + - type: Transform + parent: 19881 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ConveyorBelt entities: - uid: 849 @@ -69790,8 +70158,11 @@ entities: - uid: 1706 components: - type: Transform + anchored: True pos: -1.5,38.5 parent: 5350 + - type: Physics + bodyType: Static - proto: CrateEmptySpawner entities: - uid: 3564 @@ -69834,12 +70205,15 @@ entities: - type: Transform pos: -38.5,17.5 parent: 5350 -- proto: CrateEngineeringAMEShielding +- proto: CrateEngineering entities: - - uid: 21813 + - uid: 28639 components: + - type: MetaData + desc: Contains a shuttle console circuit board. + name: shuttle control crate - type: Transform - pos: 72.5,8.5 + pos: 46.5,25.5 parent: 5350 - type: EntityStorage air: @@ -69859,6 +70233,49 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 28640 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringAMEJar + entities: + - uid: 1524 + components: + - type: Transform + pos: 76.5,3.5 + parent: 5350 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 17029 + components: + - type: Transform + pos: 76.5,4.5 + parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1462 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -69867,15 +70284,15 @@ entities: ents: - 14093 - 15326 - - 16554 - - 23357 - 23358 - 23359 + - 16554 + - 23357 + - 23507 + - 23508 - 23504 - 23505 - 23506 - - 23507 - - 23508 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -69905,11 +70322,6 @@ entities: - 0 - 0 - 0 - - uid: 12449 - components: - - type: Transform - pos: 45.5,25.5 - parent: 5350 - uid: 12480 components: - type: Transform @@ -69943,6 +70355,11 @@ entities: - type: Transform pos: 42.5,-0.5 parent: 5350 + - uid: 28476 + components: + - type: Transform + pos: 45.5,26.5 + parent: 5350 - proto: CrateEngineeringCableHV entities: - uid: 17216 @@ -70016,13 +70433,192 @@ entities: - 0 - 0 - 0 -- proto: CrateEngineeringSecure +- proto: CrateEngineeringGyroscope entities: - - uid: 9203 + - uid: 28530 components: - type: Transform - pos: 42.5,22.5 + pos: 47.5,25.5 parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateEngineeringSecure + entities: + - uid: 26688 + components: + - type: MetaData + desc: Contains 30 sheets of uranium and plasma for powering portable generators. + name: Portable Generator Fuel Crate + - type: Transform + pos: 42.5,23.5 + parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1462 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26784 + - 26783 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringShuttle + entities: + - uid: 17030 + components: + - type: Transform + pos: 46.5,26.5 + parent: 5350 +- proto: CrateEngineeringSingularityContainment + entities: + - uid: 19881 + components: + - type: Transform + pos: 46.5,21.5 + parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + 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: + - 19882 + - 19890 + - 19897 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringSingularityEmitter + entities: + - uid: 19864 + components: + - type: Transform + pos: 47.5,21.5 + parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + 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: + - 19865 + - 19866 + - 19880 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringThruster + entities: + - uid: 17031 + components: + - type: Transform + pos: 47.5,26.5 + parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + 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: + - 17038 + - 17033 + - 17032 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateFilledSpawner entities: - uid: 3641 @@ -70087,6 +70683,35 @@ entities: - type: Transform pos: 17.5,-32.5 parent: 5350 + - 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: + - 17039 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateFunArtSupplies entities: - uid: 27889 @@ -70258,8 +70883,11 @@ entities: - uid: 28265 components: - type: Transform + anchored: True pos: -6.5,44.5 parent: 5350 + - type: Physics + bodyType: Static - proto: CrateServiceBox entities: - uid: 22020 @@ -70359,11 +70987,6 @@ entities: - type: Transform pos: 17.541042,-24.457052 parent: 5350 - - uid: 6700 - components: - - type: Transform - pos: -3.5133927,38.61675 - parent: 5350 - uid: 10811 components: - type: Transform @@ -70410,11 +71033,6 @@ entities: parent: 5350 - proto: CrowbarRed entities: - - uid: 1535 - components: - - type: Transform - pos: -16.465528,-13.795485 - parent: 5350 - uid: 3586 components: - type: Transform @@ -70533,6 +71151,13 @@ entities: - type: Transform pos: 41.470444,-8.386417 parent: 5350 +- proto: DefaultStationBeacon + entities: + - uid: 23614 + components: + - type: Transform + pos: 2.5,-57.5 + parent: 5350 - proto: DefaultStationBeaconAICore entities: - uid: 22160 @@ -70584,13 +71209,18 @@ entities: parent: 5350 - proto: DefaultStationBeaconAtmospherics entities: - - uid: 16730 + - uid: 19923 components: - type: Transform - pos: 58.5,-16.5 + pos: 56.5,-19.5 parent: 5350 - proto: DefaultStationBeaconBar entities: + - uid: 17059 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 5350 - uid: 26668 components: - type: Transform @@ -70603,6 +71233,18 @@ entities: - type: Transform pos: 26.5,-21.5 parent: 5350 +- proto: DefaultStationBeaconBridge + entities: + - uid: 17027 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 5350 + - uid: 17041 + components: + - type: Transform + pos: -2.5,1.5 + parent: 5350 - proto: DefaultStationBeaconBrig entities: - uid: 7623 @@ -70666,6 +71308,11 @@ entities: - type: Transform pos: 4.5,19.5 parent: 5350 + - uid: 28644 + components: + - type: Transform + pos: 4.5,15.5 + parent: 5350 - proto: DefaultStationBeaconCryonics entities: - uid: 26680 @@ -70694,26 +71341,25 @@ entities: - type: Transform pos: -34.5,32.5 parent: 5350 +- proto: DefaultStationBeaconDorms + entities: + - uid: 28645 + components: + - type: Transform + pos: 22.5,16.5 + parent: 5350 + - uid: 28646 + components: + - type: Transform + pos: 32.5,41.5 + parent: 5350 + - uid: 28648 + components: + - type: Transform + pos: 31.5,50.5 + parent: 5350 - proto: DefaultStationBeaconEscapePod entities: - - uid: 872 - components: - - type: Transform - pos: 39.5,47.5 - parent: 5350 - - type: NavMapBeacon - text: NW Pod - - type: WarpPoint - location: NW Pod - - uid: 3634 - components: - - type: Transform - pos: -39.5,-46.5 - parent: 5350 - - type: NavMapBeacon - text: SW Pod - - type: WarpPoint - location: SW Pod - uid: 3927 components: - type: Transform @@ -70732,12 +71378,30 @@ entities: text: NW Pod - type: WarpPoint location: NW Pod -- proto: DefaultStationBeaconEvac - entities: - - uid: 3602 + - uid: 23768 components: - type: Transform - pos: -6.5,-71.5 + pos: 40.5,47.5 + parent: 5350 + - type: NavMapBeacon + text: NW Pod + - type: WarpPoint + location: NW Pod + - uid: 28501 + components: + - type: Transform + pos: -42.5,-46.5 + parent: 5350 + - type: NavMapBeacon + text: SW Pod + - type: WarpPoint + location: SW Pod +- proto: DefaultStationBeaconEvac + entities: + - uid: 28637 + components: + - type: Transform + pos: -6.5,-63.5 parent: 5350 - proto: DefaultStationBeaconEVAStorage entities: @@ -70755,10 +71419,10 @@ entities: parent: 5350 - proto: DefaultStationBeaconHOSRoom entities: - - uid: 1517 + - uid: 28649 components: - type: Transform - pos: 10.5,45.5 + pos: 9.5,46.5 parent: 5350 - proto: DefaultStationBeaconJanitorsCloset entities: @@ -70769,6 +71433,11 @@ entities: parent: 5350 - proto: DefaultStationBeaconKitchen entities: + - uid: 17040 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 5350 - uid: 26690 components: - type: Transform @@ -70790,6 +71459,11 @@ entities: parent: 5350 - proto: DefaultStationBeaconMedbay entities: + - uid: 19902 + components: + - type: Transform + pos: -27.5,-33.5 + parent: 5350 - uid: 26693 components: - type: Transform @@ -70797,10 +71471,10 @@ entities: parent: 5350 - proto: DefaultStationBeaconMorgue entities: - - uid: 14728 + - uid: 19852 components: - type: Transform - pos: -11.5,-49.5 + pos: -13.5,-49.5 parent: 5350 - proto: DefaultStationBeaconPermaBrig entities: @@ -70832,15 +71506,26 @@ entities: parent: 5350 - proto: DefaultStationBeaconSalvage entities: - - uid: 18015 + - uid: 17060 components: - type: Transform - pos: -41.5,29.5 + pos: -62.5,31.5 parent: 5350 - - uid: 21443 + - type: NavMapBeacon + text: Salvage Arm + - type: WarpPoint + location: Salvage Arm +- proto: DefaultStationBeaconSecurity + entities: + - uid: 17052 components: - type: Transform - pos: -61.5,31.5 + pos: -19.5,45.5 + parent: 5350 + - uid: 28647 + components: + - type: Transform + pos: 10.5,38.5 parent: 5350 - proto: DefaultStationBeaconServerRoom entities: @@ -70851,19 +71536,19 @@ entities: parent: 5350 - proto: DefaultStationBeaconSingularity entities: - - uid: 15132 + - uid: 17062 components: - type: Transform - pos: 70.5,15.5 + pos: 70.5,16.5 parent: 5350 - type: NavMapBeacon text: Containment - type: WarpPoint location: Containment - - uid: 16263 + - uid: 17063 components: - type: Transform - pos: 70.5,25.5 + pos: 70.5,24.5 parent: 5350 - type: NavMapBeacon text: Engine @@ -71018,11 +71703,6 @@ entities: - type: Transform pos: 30.787802,-6.3043485 parent: 5350 - - uid: 2064 - components: - - type: Transform - pos: 25.549889,-6.2730985 - parent: 5350 - uid: 4512 components: - type: Transform @@ -71051,6 +71731,11 @@ entities: - type: Transform pos: 3.7344131,-27.320778 parent: 5350 + - uid: 16675 + components: + - type: Transform + pos: 25.517385,-6.2883754 + parent: 5350 - uid: 23329 components: - type: Transform @@ -79912,6 +80597,27 @@ entities: ents: - 6607 - 12703 +- proto: DrinkBeerglass + entities: + - uid: 28509 + components: + - type: Transform + pos: -48.161606,-43.286133 + parent: 5350 +- proto: DrinkBeerGrowler + entities: + - uid: 28507 + components: + - type: Transform + pos: -47.17723,-43.004883 + parent: 5350 +- proto: DrinkBottleBeer + entities: + - uid: 28506 + components: + - type: Transform + pos: -48.83348,-43.176758 + parent: 5350 - proto: DrinkBottleOfNothingFull entities: - uid: 3219 @@ -79965,6 +80671,13 @@ entities: - type: Transform pos: 6.384159,-12.168303 parent: 5350 +- proto: DrinkIcedBeerGlass + entities: + - uid: 28512 + components: + - type: Transform + pos: -49.58348,-43.176758 + parent: 5350 - proto: DrinkLithiumFlask entities: - uid: 5013 @@ -80080,6 +80793,18 @@ entities: - type: Transform pos: 55.458244,13.837877 parent: 5350 + - uid: 28504 + components: + - type: Transform + pos: -45.349106,-43.301758 + parent: 5350 +- proto: DrinkWhiskeyGlass + entities: + - uid: 28505 + components: + - type: Transform + pos: -46.05223,-43.317383 + parent: 5350 - proto: DrinkWineBottleFull entities: - uid: 21260 @@ -80595,49 +81320,86 @@ entities: parent: 5350 - proto: Emitter entities: - - uid: 9189 - components: - - type: Transform - pos: 47.5,25.5 - parent: 5350 - - uid: 9190 - components: - - type: Transform - pos: 47.5,26.5 - parent: 5350 - - uid: 9191 - components: - - type: Transform - pos: 46.5,25.5 - parent: 5350 - - uid: 9192 - components: - - type: Transform - pos: 46.5,26.5 - parent: 5350 - - uid: 14443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,11.5 - parent: 5350 - uid: 15052 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: 61.5,27.5 parent: 5350 - - uid: 15483 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 + - uid: 23376 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,11.5 + anchored: False + rot: 1.5707963267948966 rad + pos: 61.5,26.5 parent: 5350 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 - uid: 23610 components: - type: Transform pos: 74.5,28.5 parent: 5350 + - type: PowerConsumer + drawRate: 1 + - uid: 23973 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: 61.5,13.5 + parent: 5350 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 + - uid: 24048 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: 61.5,14.5 + parent: 5350 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 + - uid: 24049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,13.5 + parent: 5350 +- proto: EmitterFlatpack + entities: + - uid: 19865 + components: + - type: Transform + parent: 19864 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19866 + components: + - type: Transform + parent: 19864 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19880 + components: + - type: Transform + parent: 19864 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: EncryptionKeyCargo entities: - uid: 26443 @@ -80729,8 +81491,38 @@ entities: parent: 5350 - proto: ExplosivesSignMed entities: + - uid: 4927 + components: + - type: MetaData + name: WARNING! Live minefield! + - type: Transform + pos: -25.5,49.5 + parent: 5350 + - uid: 18684 + components: + - type: MetaData + desc: WARNING! Live Minefield! + - type: Transform + pos: 13.5,48.5 + parent: 5350 + - uid: 18687 + components: + - type: MetaData + desc: WARNING! Live minefield! + - type: Transform + pos: -12.5,63.5 + parent: 5350 + - uid: 26311 + components: + - type: MetaData + desc: WARNING! Live minefield! + - type: Transform + pos: 2.5,63.5 + parent: 5350 - uid: 28281 components: + - type: MetaData + desc: WARNING! Anomaly Vessels may explode! - type: Transform pos: 20.5,-32.5 parent: 5350 @@ -80906,7 +81698,7 @@ entities: pos: -41.5,2.5 parent: 5350 - type: FaxMachine - name: Mail Room + name: Mailroom - uid: 5360 components: - type: Transform @@ -80935,6 +81727,13 @@ entities: parent: 5350 - type: FaxMachine name: Law Office + - uid: 7539 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 5350 + - type: FaxMachine + name: Main Corridor - uid: 7750 components: - type: Transform @@ -81022,6 +81821,13 @@ entities: - type: Transform pos: 10.5,-45.5 parent: 5350 + - uid: 28510 + components: + - type: Transform + pos: -41.5,11.5 + parent: 5350 + - type: FaxMachine + name: Cargo Bay - proto: FaxMachineCaptain entities: - uid: 5362 @@ -81399,7 +82205,6 @@ entities: - type: DeviceList devices: - 6946 - - 28218 - 6806 - 7773 - 7791 @@ -82115,16 +82920,6 @@ entities: parent: 5350 - proto: FireExtinguisher entities: - - uid: 1539 - components: - - type: Transform - pos: -16.66095,-13.180607 - parent: 5350 - - uid: 1540 - components: - - type: Transform - pos: -16.395325,-13.102482 - parent: 5350 - uid: 24319 components: - type: Transform @@ -82394,7 +83189,6 @@ entities: deviceLists: - 24342 - 24340 - - 27662 - 11076 - uid: 2126 components: @@ -82405,7 +83199,6 @@ entities: deviceLists: - 24342 - 24340 - - 27662 - 11076 - uid: 2127 components: @@ -82416,7 +83209,6 @@ entities: deviceLists: - 24342 - 24340 - - 27662 - 11076 - uid: 2352 components: @@ -82929,7 +83721,6 @@ entities: deviceLists: - 24342 - 24340 - - 27662 - 1327 - 25987 - uid: 5666 @@ -82941,7 +83732,6 @@ entities: deviceLists: - 24342 - 24340 - - 27662 - 1327 - 25987 - uid: 5667 @@ -82953,7 +83743,6 @@ entities: deviceLists: - 24342 - 24340 - - 27662 - 1327 - 25987 - uid: 5668 @@ -83302,7 +84091,7 @@ entities: pos: 31.5,-33.5 parent: 5350 - type: Door - secondsUntilStateChange: -18292.162 + secondsUntilStateChange: -29555.99 state: Closing - uid: 9615 components: @@ -83926,7 +84715,6 @@ entities: - 24342 - 24340 - 7196 - - 27662 - 2835 - uid: 15079 components: @@ -83948,7 +84736,6 @@ entities: - 24342 - 24340 - 7196 - - 27662 - 2835 - uid: 15185 components: @@ -84404,7 +85191,6 @@ entities: - 24342 - 24340 - 7196 - - 27662 - 2835 - uid: 21954 components: @@ -85177,20 +85963,6 @@ entities: parent: 5350 - type: Fixtures fixtures: {} - - uid: 28463 - components: - - type: Transform - pos: -21.5,-24.5 - parent: 5350 - - type: Fixtures - fixtures: {} - - uid: 28464 - components: - - type: Transform - pos: -15.5,-24.5 - parent: 5350 - - type: Fixtures - fixtures: {} - proto: FloorTileItemEighties entities: - uid: 23023 @@ -85602,7 +86374,7 @@ entities: - uid: 19219 components: - type: MetaData - name: Waste Filter + name: Gas Filter (waste filter) - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-51.5 @@ -85622,7 +86394,7 @@ entities: - uid: 19455 components: - type: MetaData - name: Waste Filter + name: Gas Filter (waste filter) - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-51.5 @@ -87090,6 +87862,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#990000FF' + - uid: 18856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,22.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' - uid: 18968 components: - type: Transform @@ -87161,6 +87941,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#6F2498FF' + - uid: 19278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,24.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 19411 components: - type: Transform @@ -97781,6 +98569,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,24.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9217 components: - type: Transform @@ -100177,14 +100973,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12411 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,24.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12413 components: - type: Transform @@ -105097,6 +105885,54 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#990000FF' + - uid: 18720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,24.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,24.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,24.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,23.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-50.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-50.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 18939 components: - type: Transform @@ -109250,30 +110086,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#990000FF' - - uid: 23376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,23.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23377 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,23.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23378 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,23.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23386 components: - type: Transform @@ -109290,14 +110102,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#990000FF' - - uid: 23388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,23.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23390 components: - type: Transform @@ -113523,14 +114327,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#990000FF' - - uid: 12410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,23.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12412 components: - type: Transform @@ -114135,6 +114931,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#990000FF' + - uid: 18719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,24.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 18967 components: - type: Transform @@ -115013,6 +115817,8 @@ entities: color: '#990000FF' - uid: 19401 components: + - type: MetaData + name: Connector Port (gas input) - type: Transform rot: 3.141592653589793 rad pos: 19.5,-53.5 @@ -115021,6 +115827,8 @@ entities: color: '#6F2498FF' - uid: 19418 components: + - type: MetaData + name: Connector Port (gas output) - type: Transform rot: 3.141592653589793 rad pos: 18.5,-53.5 @@ -115029,6 +115837,8 @@ entities: color: '#6F2498FF' - uid: 19566 components: + - type: MetaData + name: Connector Port (gas input) - type: Transform rot: 3.141592653589793 rad pos: 13.5,-53.5 @@ -115037,6 +115847,8 @@ entities: color: '#6F2498FF' - uid: 19622 components: + - type: MetaData + name: Connector Port (gas output) - type: Transform rot: 3.141592653589793 rad pos: 14.5,-53.5 @@ -115117,14 +115929,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#6F2498FF' - - uid: 15601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-50.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 15637 components: - type: Transform @@ -115155,7 +115959,7 @@ entities: - uid: 19188 components: - type: MetaData - name: Gas Input + name: Gas Pump (gas in) - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-52.5 @@ -115167,6 +115971,26 @@ entities: - type: Transform pos: 71.5,-38.5 parent: 5350 + - uid: 19218 + components: + - type: MetaData + name: Gas Pump (distro in) + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-50.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19263 + components: + - type: MetaData + name: Gas Pump (distro in) + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-50.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 19360 components: - type: MetaData @@ -115177,18 +116001,10 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#6F2498FF' - - uid: 19481 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-50.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 19482 components: - type: MetaData - name: Gas In Pump + name: Gas Pump (gas in) - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-52.5 @@ -115286,13 +116102,19 @@ entities: - uid: 11364 components: - type: Transform + anchored: False pos: 54.5,-18.5 parent: 5350 + - type: Physics + bodyType: Dynamic - uid: 11365 components: - type: Transform + anchored: False pos: 55.5,-18.5 parent: 5350 + - type: Physics + bodyType: Dynamic - uid: 11803 components: - type: Transform @@ -115318,8 +116140,11 @@ entities: - uid: 22353 components: - type: Transform + anchored: False pos: 56.5,-18.5 parent: 5350 + - type: Physics + bodyType: Dynamic - uid: 26312 components: - type: Transform @@ -115341,47 +116166,32 @@ entities: - uid: 28273 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: 58.5,-4.5 parent: 5350 + - type: Physics + bodyType: Dynamic - uid: 28274 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: 58.5,-5.5 parent: 5350 + - type: Physics + bodyType: Dynamic - uid: 28276 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: 58.5,-6.5 parent: 5350 + - type: Physics + bodyType: Dynamic - proto: GasValve entities: - - uid: 19278 - components: - - type: MetaData - name: Distro Release - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-50.5 - parent: 5350 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19405 - components: - - type: MetaData - name: Distro Release - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-50.5 - parent: 5350 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 27085 components: - type: Transform @@ -117001,7 +117811,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 27680 + - 872 - type: AtmosPipeColor color: '#0055CCFF' - uid: 21167 @@ -117208,17 +118018,6 @@ entities: - 24548 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23380 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,23.5 - parent: 5350 - - type: DeviceNetwork - deviceLists: - - 23906 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23510 components: - type: Transform @@ -117230,6 +118029,16 @@ entities: - 23602 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23613 + components: + - type: Transform + pos: 45.5,25.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 23651 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 24302 components: - type: Transform @@ -118612,6 +119421,17 @@ entities: - 23115 - type: AtmosPipeColor color: '#990000FF' + - uid: 16670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,21.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 23651 + - type: AtmosPipeColor + color: '#990000FF' - uid: 17342 components: - type: Transform @@ -118860,7 +119680,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 27680 + - 872 - type: AtmosPipeColor color: '#990000FF' - uid: 21166 @@ -119100,17 +119920,6 @@ entities: - type: Transform pos: 104.5,-13.5 parent: 5350 - - uid: 26311 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,22.5 - parent: 5350 - - type: DeviceNetwork - deviceLists: - - 23906 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26844 components: - type: Transform @@ -119308,18 +120117,6 @@ entities: parent: 5350 - type: PointLight radius: 175.75 -- proto: GrenadeFoamDart - entities: - - uid: 8086 - components: - - type: Transform - pos: -19.655102,40.379436 - parent: 5350 - - uid: 8087 - components: - - type: Transform - pos: -19.264477,40.36381 - parent: 5350 - proto: Grille entities: - uid: 47 @@ -119517,6 +120314,11 @@ entities: - type: Transform pos: -69.5,10.5 parent: 5350 + - uid: 1487 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 5350 - uid: 1497 components: - type: Transform @@ -119722,11 +120524,6 @@ entities: - type: Transform pos: 32.5,-6.5 parent: 5350 - - uid: 2470 - components: - - type: Transform - pos: 16.5,-62.5 - parent: 5350 - uid: 2561 components: - type: Transform @@ -120097,21 +120894,6 @@ entities: - type: Transform pos: 48.5,9.5 parent: 5350 - - uid: 5095 - components: - - type: Transform - pos: 71.5,30.5 - parent: 5350 - - uid: 5096 - components: - - type: Transform - pos: 72.5,30.5 - parent: 5350 - - uid: 5097 - components: - - type: Transform - pos: 70.5,30.5 - parent: 5350 - uid: 5128 components: - type: Transform @@ -120795,6 +121577,11 @@ entities: - type: Transform pos: -2.5,26.5 parent: 5350 + - uid: 7382 + components: + - type: Transform + pos: -17.5,62.5 + parent: 5350 - uid: 7427 components: - type: Transform @@ -121150,6 +121937,12 @@ entities: - type: Transform pos: 19.5,22.5 parent: 5350 + - uid: 8253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,24.5 + parent: 5350 - uid: 8256 components: - type: Transform @@ -121955,11 +122748,6 @@ entities: - type: Transform pos: 60.5,17.5 parent: 5350 - - uid: 12297 - components: - - type: Transform - pos: 59.5,17.5 - parent: 5350 - uid: 12298 components: - type: Transform @@ -122000,11 +122788,6 @@ entities: - type: Transform pos: 60.5,23.5 parent: 5350 - - uid: 12306 - components: - - type: Transform - pos: 59.5,23.5 - parent: 5350 - uid: 12307 components: - type: Transform @@ -122070,26 +122853,6 @@ entities: - type: Transform pos: 38.5,46.5 parent: 5350 - - uid: 12666 - components: - - type: Transform - pos: 39.5,45.5 - parent: 5350 - - uid: 12667 - components: - - type: Transform - pos: 40.5,45.5 - parent: 5350 - - uid: 12668 - components: - - type: Transform - pos: 41.5,46.5 - parent: 5350 - - uid: 12669 - components: - - type: Transform - pos: 41.5,48.5 - parent: 5350 - uid: 12670 components: - type: Transform @@ -123020,11 +123783,6 @@ entities: - type: Transform pos: -54.5,-57.5 parent: 5350 - - uid: 16311 - components: - - type: Transform - pos: -58.5,-57.5 - parent: 5350 - uid: 16312 components: - type: Transform @@ -123070,6 +123828,12 @@ entities: - type: Transform pos: 22.5,-36.5 parent: 5350 + - uid: 16457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-74.5 + parent: 5350 - uid: 16476 components: - type: Transform @@ -123180,21 +123944,6 @@ entities: - type: Transform pos: 82.5,-27.5 parent: 5350 - - uid: 16747 - components: - - type: Transform - pos: -45.5,-42.5 - parent: 5350 - - uid: 16748 - components: - - type: Transform - pos: -46.5,-42.5 - parent: 5350 - - uid: 16749 - components: - - type: Transform - pos: -47.5,-42.5 - parent: 5350 - uid: 16750 components: - type: Transform @@ -123425,105 +124174,16 @@ entities: - type: Transform pos: -59.5,-75.5 parent: 5350 - - uid: 16930 - components: - - type: Transform - pos: -63.5,-73.5 - parent: 5350 - - uid: 16931 - components: - - type: Transform - pos: -63.5,-72.5 - parent: 5350 - uid: 16932 components: - type: Transform - pos: -63.5,-71.5 + rot: 3.141592653589793 rad + pos: -60.5,-70.5 parent: 5350 - - uid: 16933 + - uid: 17153 components: - type: Transform - pos: -63.5,-70.5 - parent: 5350 - - uid: 16934 - components: - - type: Transform - pos: -63.5,-69.5 - parent: 5350 - - uid: 16935 - components: - - type: Transform - pos: -63.5,-68.5 - parent: 5350 - - uid: 16936 - components: - - type: Transform - pos: -63.5,-67.5 - parent: 5350 - - uid: 16938 - components: - - type: Transform - pos: -63.5,-65.5 - parent: 5350 - - uid: 16939 - components: - - type: Transform - pos: -63.5,-64.5 - parent: 5350 - - uid: 16940 - components: - - type: Transform - pos: -63.5,-63.5 - parent: 5350 - - uid: 16941 - components: - - type: Transform - pos: -63.5,-62.5 - parent: 5350 - - uid: 16942 - components: - - type: Transform - pos: -63.5,-61.5 - parent: 5350 - - uid: 16943 - components: - - type: Transform - pos: -63.5,-60.5 - parent: 5350 - - uid: 16944 - components: - - type: Transform - pos: -63.5,-59.5 - parent: 5350 - - uid: 16945 - components: - - type: Transform - pos: -63.5,-58.5 - parent: 5350 - - uid: 16947 - components: - - type: Transform - pos: -59.5,-57.5 - parent: 5350 - - uid: 16948 - components: - - type: Transform - pos: -60.5,-57.5 - parent: 5350 - - uid: 16949 - components: - - type: Transform - pos: -61.5,-57.5 - parent: 5350 - - uid: 16950 - components: - - type: Transform - pos: -62.5,-57.5 - parent: 5350 - - uid: 16951 - components: - - type: Transform - pos: -63.5,-57.5 + pos: 33.5,-79.5 parent: 5350 - uid: 17207 components: @@ -124055,96 +124715,36 @@ entities: - type: Transform pos: 1.5,-47.5 parent: 5350 - - uid: 19849 - components: - - type: Transform - pos: 45.5,-84.5 - parent: 5350 - - uid: 19850 - components: - - type: Transform - pos: 44.5,-84.5 - parent: 5350 - - uid: 19851 - components: - - type: Transform - pos: 43.5,-84.5 - parent: 5350 - - uid: 19852 - components: - - type: Transform - pos: 42.5,-84.5 - parent: 5350 - - uid: 19853 - components: - - type: Transform - pos: 41.5,-84.5 - parent: 5350 - - uid: 19854 - components: - - type: Transform - pos: 40.5,-84.5 - parent: 5350 - - uid: 19855 - components: - - type: Transform - pos: 39.5,-84.5 - parent: 5350 - - uid: 19856 - components: - - type: Transform - pos: 38.5,-84.5 - parent: 5350 - - uid: 19857 - components: - - type: Transform - pos: 37.5,-84.5 - parent: 5350 - - uid: 19858 - components: - - type: Transform - pos: 36.5,-84.5 - parent: 5350 - - uid: 19859 - components: - - type: Transform - pos: 35.5,-84.5 - parent: 5350 - - uid: 19860 - components: - - type: Transform - pos: 34.5,-84.5 - parent: 5350 - - uid: 19861 - components: - - type: Transform - pos: 33.5,-84.5 - parent: 5350 - - uid: 19862 - components: - - type: Transform - pos: 46.5,-83.5 - parent: 5350 - - uid: 19863 - components: - - type: Transform - pos: 46.5,-82.5 - parent: 5350 - - uid: 19864 - components: - - type: Transform - pos: 46.5,-81.5 - parent: 5350 - - uid: 19865 - components: - - type: Transform - pos: 46.5,-80.5 - parent: 5350 - - uid: 19866 + - uid: 19792 components: - type: Transform pos: 46.5,-79.5 parent: 5350 + - uid: 19795 + components: + - type: Transform + pos: 45.5,-79.5 + parent: 5350 + - uid: 19798 + components: + - type: Transform + pos: 44.5,-79.5 + parent: 5350 + - uid: 19799 + components: + - type: Transform + pos: 41.5,-79.5 + parent: 5350 + - uid: 19800 + components: + - type: Transform + pos: 40.5,-79.5 + parent: 5350 + - uid: 19807 + components: + - type: Transform + pos: 40.5,-80.5 + parent: 5350 - uid: 19867 components: - type: Transform @@ -124210,21 +124810,6 @@ entities: - type: Transform pos: 46.5,-66.5 parent: 5350 - - uid: 19880 - components: - - type: Transform - pos: 46.5,-65.5 - parent: 5350 - - uid: 19881 - components: - - type: Transform - pos: 46.5,-64.5 - parent: 5350 - - uid: 19882 - components: - - type: Transform - pos: 46.5,-63.5 - parent: 5350 - uid: 19883 components: - type: Transform @@ -124245,6 +124830,12 @@ entities: - type: Transform pos: 45.5,-60.5 parent: 5350 + - uid: 19992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-69.5 + parent: 5350 - uid: 20004 components: - type: Transform @@ -124580,6 +125171,11 @@ entities: - type: Transform pos: 3.5,-11.5 parent: 5350 + - uid: 20933 + components: + - type: Transform + pos: 41.5,46.5 + parent: 5350 - uid: 20952 components: - type: Transform @@ -124645,6 +125241,12 @@ entities: - type: Transform pos: 44.5,-40.5 parent: 5350 + - uid: 21443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-72.5 + parent: 5350 - uid: 21471 components: - type: Transform @@ -124670,11 +125272,6 @@ entities: - type: Transform pos: 3.5,-10.5 parent: 5350 - - uid: 22350 - components: - - type: Transform - pos: 18.5,-62.5 - parent: 5350 - uid: 22387 components: - type: Transform @@ -124830,11 +125427,29 @@ entities: - type: Transform pos: -2.5,5.5 parent: 5350 + - uid: 23222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-73.5 + parent: 5350 + - uid: 23239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,20.5 + parent: 5350 - uid: 23271 components: - type: Transform pos: -3.5,5.5 parent: 5350 + - uid: 23380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,23.5 + parent: 5350 - uid: 23399 components: - type: Transform @@ -124865,10 +125480,28 @@ entities: - type: Transform pos: 46.5,-38.5 parent: 5350 - - uid: 23720 + - uid: 23594 components: - type: Transform - pos: 69.5,30.5 + rot: 3.141592653589793 rad + pos: -60.5,-74.5 + parent: 5350 + - uid: 23635 + components: + - type: Transform + pos: 41.5,48.5 + parent: 5350 + - uid: 23653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-58.5 + parent: 5350 + - uid: 23654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-58.5 parent: 5350 - uid: 23721 components: @@ -124890,36 +125523,6 @@ entities: - type: Transform pos: -68.5,9.5 parent: 5350 - - uid: 23730 - components: - - type: Transform - pos: 67.5,10.5 - parent: 5350 - - uid: 23731 - components: - - type: Transform - pos: 68.5,10.5 - parent: 5350 - - uid: 23732 - components: - - type: Transform - pos: 69.5,10.5 - parent: 5350 - - uid: 23733 - components: - - type: Transform - pos: 70.5,10.5 - parent: 5350 - - uid: 23734 - components: - - type: Transform - pos: 71.5,10.5 - parent: 5350 - - uid: 23735 - components: - - type: Transform - pos: 72.5,10.5 - parent: 5350 - uid: 23739 components: - type: Transform @@ -124935,50 +125538,11 @@ entities: - type: Transform pos: 76.5,10.5 parent: 5350 - - uid: 23764 + - uid: 23785 components: - type: Transform - pos: 79.5,23.5 - parent: 5350 - - uid: 23772 - components: - - type: Transform - pos: 76.5,31.5 - parent: 5350 - - uid: 23773 - components: - - type: Transform - pos: 75.5,31.5 - parent: 5350 - - uid: 23774 - components: - - type: Transform - pos: 76.5,30.5 - parent: 5350 - - uid: 23775 - components: - - type: Transform - pos: 75.5,30.5 - parent: 5350 - - uid: 23776 - components: - - type: Transform - pos: 74.5,30.5 - parent: 5350 - - uid: 23777 - components: - - type: Transform - pos: 79.5,22.5 - parent: 5350 - - uid: 23778 - components: - - type: Transform - pos: 79.5,17.5 - parent: 5350 - - uid: 23779 - components: - - type: Transform - pos: 79.5,18.5 + rot: 3.141592653589793 rad + pos: 80.5,22.5 parent: 5350 - uid: 23822 components: @@ -126910,6 +127474,186 @@ entities: - type: Transform pos: 52.5,-38.5 parent: 5350 + - uid: 28401 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 5350 + - uid: 28477 + components: + - type: Transform + pos: -17.5,58.5 + parent: 5350 + - uid: 28478 + components: + - type: Transform + pos: -17.5,59.5 + parent: 5350 + - uid: 28481 + components: + - type: Transform + pos: -17.5,60.5 + parent: 5350 + - uid: 28483 + components: + - type: Transform + pos: -17.5,61.5 + parent: 5350 + - uid: 28560 + components: + - type: Transform + pos: 40.5,-81.5 + parent: 5350 + - uid: 28573 + components: + - type: Transform + pos: 39.5,-81.5 + parent: 5350 + - uid: 28574 + components: + - type: Transform + pos: 38.5,-81.5 + parent: 5350 + - uid: 28575 + components: + - type: Transform + pos: 36.5,-81.5 + parent: 5350 + - uid: 28576 + components: + - type: Transform + pos: 37.5,-81.5 + parent: 5350 + - uid: 28577 + components: + - type: Transform + pos: 36.5,-80.5 + parent: 5350 + - uid: 28578 + components: + - type: Transform + pos: 36.5,-79.5 + parent: 5350 + - uid: 28579 + components: + - type: Transform + pos: 35.5,-79.5 + parent: 5350 + - uid: 28580 + components: + - type: Transform + pos: 34.5,-79.5 + parent: 5350 + - uid: 28581 + components: + - type: Transform + pos: 30.5,-74.5 + parent: 5350 + - uid: 28582 + components: + - type: Transform + pos: 30.5,-73.5 + parent: 5350 + - uid: 28584 + components: + - type: Transform + pos: 30.5,-75.5 + parent: 5350 + - uid: 28585 + components: + - type: Transform + pos: 30.5,-76.5 + parent: 5350 + - uid: 28586 + components: + - type: Transform + pos: 30.5,-77.5 + parent: 5350 + - uid: 28587 + components: + - type: Transform + pos: 32.5,-79.5 + parent: 5350 + - uid: 28597 + components: + - type: Transform + pos: -62.5,-65.5 + parent: 5350 + - uid: 28616 + components: + - type: Transform + pos: -60.5,-68.5 + parent: 5350 + - uid: 28617 + components: + - type: Transform + pos: -60.5,-67.5 + parent: 5350 + - uid: 28618 + components: + - type: Transform + pos: -60.5,-66.5 + parent: 5350 + - uid: 28619 + components: + - type: Transform + pos: -60.5,-65.5 + parent: 5350 + - uid: 28620 + components: + - type: Transform + pos: -61.5,-65.5 + parent: 5350 + - uid: 28621 + components: + - type: Transform + pos: -63.5,-65.5 + parent: 5350 + - uid: 28622 + components: + - type: Transform + pos: -63.5,-64.5 + parent: 5350 + - uid: 28623 + components: + - type: Transform + pos: -62.5,-61.5 + parent: 5350 + - uid: 28624 + components: + - type: Transform + pos: -60.5,-58.5 + parent: 5350 + - uid: 28625 + components: + - type: Transform + pos: -63.5,-61.5 + parent: 5350 + - uid: 28626 + components: + - type: Transform + pos: -61.5,-61.5 + parent: 5350 + - uid: 28627 + components: + - type: Transform + pos: -60.5,-61.5 + parent: 5350 + - uid: 28628 + components: + - type: Transform + pos: -60.5,-60.5 + parent: 5350 + - uid: 28629 + components: + - type: Transform + pos: -60.5,-59.5 + parent: 5350 + - uid: 28630 + components: + - type: Transform + pos: -58.5,-57.5 + parent: 5350 - proto: GrilleBroken entities: - uid: 2073 @@ -126945,6 +127689,11 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,34.5 parent: 5350 + - uid: 8244 + components: + - type: Transform + pos: 80.5,25.5 + parent: 5350 - uid: 11459 components: - type: Transform @@ -127023,11 +127772,6 @@ entities: - type: Transform pos: 38.5,57.5 parent: 5350 - - uid: 16262 - components: - - type: Transform - pos: -63.5,-66.5 - parent: 5350 - uid: 16310 components: - type: Transform @@ -127094,6 +127838,17 @@ entities: rot: 3.141592653589793 rad pos: 44.5,-42.5 parent: 5350 + - uid: 19848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-63.5 + parent: 5350 + - uid: 19849 + components: + - type: Transform + pos: 46.5,-65.5 + parent: 5350 - uid: 20222 components: - type: Transform @@ -127128,6 +127883,24 @@ entities: rot: 3.141592653589793 rad pos: -17.5,50.5 parent: 5350 + - uid: 23229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,10.5 + parent: 5350 + - uid: 23377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,19.5 + parent: 5350 + - uid: 23964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,30.5 + parent: 5350 - uid: 26266 components: - type: Transform @@ -127415,6 +128188,74 @@ entities: - type: Transform pos: 44.5,-38.5 parent: 5350 + - uid: 28485 + components: + - type: Transform + pos: -17.5,56.5 + parent: 5350 + - uid: 28486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,57.5 + parent: 5350 + - uid: 28583 + components: + - type: Transform + pos: 30.5,-72.5 + parent: 5350 + - uid: 28588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-78.5 + parent: 5350 + - uid: 28589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-79.5 + parent: 5350 + - uid: 28591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-79.5 + parent: 5350 + - uid: 28592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-79.5 + parent: 5350 + - uid: 28631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-71.5 + parent: 5350 + - uid: 28632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-57.5 + parent: 5350 + - uid: 28633 + components: + - type: Transform + pos: -60.5,-57.5 + parent: 5350 + - uid: 28634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-62.5 + parent: 5350 + - uid: 28635 + components: + - type: Transform + pos: -63.5,-63.5 + parent: 5350 - proto: GroundCannabis entities: - uid: 24640 @@ -127428,29 +128269,25 @@ entities: pos: 31.677748,21.795935 parent: 5350 - proto: GunSafeDisabler - entities: - - uid: 7730 - components: - - type: Transform - anchored: True - pos: -8.5,46.5 - parent: 5350 - - type: Physics - bodyType: Static -- proto: GunSafePistolMk58 entities: - uid: 6369 components: - type: Transform - anchored: True + pos: -8.5,46.5 + parent: 5350 +- proto: GunSafePistolMk58 + entities: + - uid: 6511 + components: + - type: Transform pos: -9.5,46.5 parent: 5350 - - type: Physics - bodyType: Static - proto: GunSafeRifleLecter entities: - uid: 22966 components: + - type: MetaData + desc: Safe containing 3 Lecter combat rifles. - type: Transform anchored: True pos: -6.5,40.5 @@ -127463,8 +128300,93 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 28209 + - 28446 + - 28208 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafeShotgunKammerer + entities: + - uid: 11588 + components: + - type: MetaData + desc: Safe containing 4 Kammerer shotguns. + - type: Transform + anchored: True + pos: -8.5,36.5 + parent: 5350 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3634 + - 3056 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 13851 + components: + - type: MetaData + desc: Safe containing 3 Drozd submachine guns. + - type: Transform + anchored: True + pos: -5.5,40.5 + parent: 5350 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -127488,47 +128410,6 @@ entities: showEnts: False occludes: True ent: null -- proto: GunSafeSubMachineGunDrozd - entities: - - uid: 13851 - components: - - type: Transform - anchored: True - pos: -5.5,40.5 - parent: 5350 - - type: Physics - bodyType: Static - - 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: - - 28208 - - 28209 - - 28446 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: GyroscopeFlatpack entities: - uid: 28452 @@ -127605,11 +128486,6 @@ entities: - type: Transform pos: 55.526382,-6.473477 parent: 5350 - - uid: 15118 - components: - - type: Transform - pos: -3.5133927,38.2105 - parent: 5350 - uid: 15638 components: - type: Transform @@ -127630,6 +128506,11 @@ entities: - type: Transform pos: 10.937332,19.46014 parent: 5350 + - uid: 28500 + components: + - type: Transform + pos: -34.34041,3.3560352 + parent: 5350 - proto: HeatExchanger entities: - uid: 27166 @@ -127652,13 +128533,6 @@ entities: parent: 5350 - proto: HighSecArmoryLocked entities: - - uid: 638 - components: - - type: MetaData - name: Secure Armory - - type: Transform - pos: -6.5,35.5 - parent: 5350 - uid: 7645 components: - type: MetaData @@ -127666,6 +128540,13 @@ entities: - type: Transform pos: -8.5,41.5 parent: 5350 + - uid: 28480 + components: + - type: MetaData + name: Secure Armory + - type: Transform + pos: -6.5,35.5 + parent: 5350 - proto: HighSecCommandLocked entities: - uid: 1668 @@ -127793,10 +128674,10 @@ entities: parent: 5350 - proto: HolopadCargoFront entities: - - uid: 688 + - uid: 28498 components: - type: Transform - pos: -27.5,5.5 + pos: -25.5,5.5 parent: 5350 - proto: HolopadCargoMailroom entities: @@ -128013,6 +128894,18 @@ entities: - type: Transform pos: -20.5,14.5 parent: 5350 +- proto: HolopadMachineCircuitboard + entities: + - uid: 16749 + components: + - type: Transform + pos: 36.586212,6.763314 + parent: 5350 + - uid: 23216 + components: + - type: Transform + pos: 36.429962,6.466439 + parent: 5350 - proto: HolopadMedicalBreakroom entities: - uid: 9751 @@ -128043,10 +128936,10 @@ entities: parent: 5350 - proto: HolopadMedicalMorgue entities: - - uid: 15009 + - uid: 28531 components: - type: Transform - pos: -13.5,-49.5 + pos: -12.5,-49.5 parent: 5350 - proto: HolopadMedicalParamed entities: @@ -128994,6 +129887,22 @@ entities: - type: Transform pos: -43.410835,33.79435 parent: 5350 + - uid: 15120 + components: + - type: Transform + pos: -16.37137,-14.418222 + parent: 5350 + - type: GasTank + toggleActionEntity: 15198 + - type: Jetpack + toggleActionEntity: 15196 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 15196 + - 15198 - uid: 15431 components: - type: Transform @@ -129004,8 +129913,50 @@ entities: - type: Transform pos: 65.554596,3.6015525 parent: 5350 + - uid: 15483 + components: + - type: Transform + pos: -16.55887,-14.105722 + parent: 5350 + - type: GasTank + toggleActionEntity: 15592 + - type: Jetpack + toggleActionEntity: 15521 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 15521 + - 15592 + - uid: 18691 + components: + - type: Transform + pos: -16.540573,-13.293222 + parent: 5350 + - type: GasTank + toggleActionEntity: 18711 + - type: Jetpack + toggleActionEntity: 18692 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 18692 + - 18711 + - uid: 18712 + components: + - type: Transform + pos: -16.40262,-13.636972 + parent: 5350 - proto: JetpackSecurityFilled entities: + - uid: 4742 + components: + - type: Transform + pos: -9.58875,44.44667 + parent: 5350 - uid: 7291 components: - type: Transform @@ -129014,7 +129965,7 @@ entities: - uid: 7614 components: - type: Transform - pos: -9.691261,44.664734 + pos: -9.570677,44.593655 parent: 5350 - type: GasTank toggleActionEntity: 7201 @@ -129249,6 +130200,11 @@ entities: showEnts: False occludes: True ent: null + - uid: 1569 + components: + - type: Transform + pos: -3.6731057,38.90534 + parent: 5350 - uid: 3242 components: - type: Transform @@ -129363,32 +130319,50 @@ entities: - uid: 6595 components: - type: Transform - pos: -16.408737,55.43637 + anchored: True + pos: -16.5,55.5 + parent: 5350 + - uid: 7741 + components: + - type: Transform + anchored: True + pos: 3.5,47.5 parent: 5350 - uid: 8516 components: - type: Transform - pos: 3.54636,68.39265 - parent: 5350 - - uid: 8518 - components: - - type: Transform - pos: -11.473105,67.47077 + anchored: True + pos: 3.5,68.5 parent: 5350 - uid: 17667 components: - type: Transform - pos: 4.4783735,59.307983 + anchored: True + pos: 4.5,59.5 parent: 5350 - uid: 23089 components: - type: Transform - pos: -16.55398,50.45403 + anchored: True + pos: -16.5,50.5 parent: 5350 - uid: 28126 components: - type: Transform - pos: 6.439226,52.45743 + anchored: True + pos: 6.5,52.5 + parent: 5350 + - uid: 28488 + components: + - type: Transform + anchored: True + pos: -4.5,48.5 + parent: 5350 + - uid: 28489 + components: + - type: Transform + anchored: True + pos: -9.5,67.5 parent: 5350 - proto: Lantern entities: @@ -129442,28 +130416,55 @@ entities: parent: 5350 - proto: LockableButtonArmory entities: - - uid: 1174 + - uid: 638 + components: + - type: MetaData + name: Close Armory + - type: Transform + rot: 3.141592653589793 rad + pos: -7.2430754,35.481583 + parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 1876: + - Pressed: Close + 28459: + - Pressed: Close + 6962: + - Pressed: Close + 8868: + - Pressed: Close + 23027: + - Pressed: Close + 22904: + - Pressed: Close + - uid: 23091 components: - type: MetaData name: Open Armory - type: Transform rot: 3.141592653589793 rad - pos: -7.5,35.5 + pos: -7.763909,35.48853 parent: 5350 - type: DeviceLinkSource linkedPorts: - 22904: - - Pressed: Toggle - 6962: - - Pressed: Toggle - 7538: - - Pressed: Toggle 1876: - - Pressed: Toggle + - Pressed: Open + - Pressed: AutoClose + 28459: + - Pressed: Open + - Pressed: AutoClose + 6962: + - Pressed: Open + - Pressed: AutoClose + 22904: + - Pressed: Open 8868: - - Pressed: Toggle + - Pressed: Open + - Pressed: AutoClose 23027: - - Pressed: Toggle + - Pressed: Open + - Pressed: AutoClose - proto: LockableButtonAtmospherics entities: - uid: 18348 @@ -129490,6 +130491,24 @@ entities: linkedPorts: 15941: - Pressed: Toggle +- proto: LockableButtonEngineering + entities: + - uid: 4161 + components: + - type: MetaData + name: Secure Storage + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,21.5 + parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 28365: + - Pressed: Toggle + 23391: + - Pressed: Toggle + 28382: + - Pressed: Toggle - proto: LockableButtonMedical entities: - uid: 1426 @@ -129501,11 +130520,11 @@ entities: parent: 5350 - type: DeviceLinkSource linkedPorts: - 12541: + 23655: - Pressed: Toggle - 20051: + 23712: - Pressed: Toggle - 11952: + 23720: - Pressed: Toggle - uid: 10414 components: @@ -129623,8 +130642,11 @@ entities: - uid: 15807 components: - type: Transform + anchored: True pos: -22.5,-22.5 parent: 5350 + - type: Physics + bodyType: Static - proto: LockerChiefEngineerFilled entities: - uid: 9051 @@ -129888,8 +130910,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -129900,17 +130922,6 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 9632 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerFreezer entities: - uid: 3158 @@ -130004,43 +131015,67 @@ entities: - uid: 16189 components: - type: Transform + anchored: True pos: -24.5,-39.5 parent: 5350 + - type: Physics + bodyType: Static - uid: 16190 components: - type: Transform + anchored: True pos: -25.5,-39.5 parent: 5350 + - type: Physics + bodyType: Static - uid: 16191 components: - type: Transform + anchored: True pos: -26.5,-39.5 parent: 5350 + - type: Physics + bodyType: Static - uid: 16192 components: - type: Transform + anchored: True pos: -27.5,-39.5 parent: 5350 + - type: Physics + bodyType: Static - uid: 16193 components: - type: Transform + anchored: True pos: -24.5,-43.5 parent: 5350 + - type: Physics + bodyType: Static - uid: 16194 components: - type: Transform + anchored: True pos: -25.5,-43.5 parent: 5350 + - type: Physics + bodyType: Static - uid: 16195 components: - type: Transform + anchored: True pos: -26.5,-43.5 parent: 5350 + - type: Physics + bodyType: Static - uid: 16196 components: - type: Transform + anchored: True pos: -27.5,-43.5 parent: 5350 + - type: Physics + bodyType: Static - proto: LockerMedicineFilled entities: - uid: 10336 @@ -130071,8 +131106,11 @@ entities: - uid: 15604 components: - type: Transform + anchored: True pos: -36.5,-30.5 parent: 5350 + - type: Physics + bodyType: Static - uid: 24329 components: - type: Transform @@ -130083,13 +131121,19 @@ entities: - uid: 15898 components: - type: Transform + anchored: True pos: -10.5,-35.5 parent: 5350 + - type: Physics + bodyType: Static - uid: 15899 components: - type: Transform + anchored: True pos: -10.5,-34.5 parent: 5350 + - type: Physics + bodyType: Static - proto: LockerQuarterMasterFilled entities: - uid: 6737 @@ -130229,14 +131273,6 @@ entities: parent: 5350 - type: Physics bodyType: Static - - uid: 7741 - components: - - type: Transform - anchored: True - pos: 0.5,40.5 - parent: 5350 - - type: Physics - bodyType: Static - uid: 7743 components: - type: Transform @@ -130399,6 +131435,11 @@ entities: showEnts: False occludes: True ents: [] + - uid: 23757 + components: + - type: Transform + pos: 20.5,-35.5 + parent: 5350 - uid: 26436 components: - type: Transform @@ -130454,14 +131495,14 @@ entities: - uid: 14878 components: - type: Transform - parent: 22966 + parent: 13851 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 21468 components: - type: Transform - parent: 22966 + parent: 13851 - type: Physics canCollide: False - type: InsideEntityStorage @@ -130498,14 +131539,14 @@ entities: - uid: 28208 components: - type: Transform - parent: 13851 + parent: 22966 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 28209 components: - type: Transform - parent: 13851 + parent: 22966 - type: Physics canCollide: False - type: InsideEntityStorage @@ -130635,11 +131676,6 @@ entities: - type: Transform pos: -45.5,5.5 parent: 5350 - - uid: 9537 - components: - - type: Transform - pos: 18.5,-61.5 - parent: 5350 - uid: 13757 components: - type: Transform @@ -131487,11 +132523,6 @@ entities: - type: Transform pos: -17.668661,19.654816 parent: 5350 - - uid: 4742 - components: - - type: Transform - pos: -3.2946427,38.4605 - parent: 5350 - uid: 12072 components: - type: Transform @@ -131542,6 +132573,11 @@ entities: - type: Transform pos: -46.5,33.5 parent: 5350 + - uid: 1530 + components: + - type: Transform + pos: -41.5,-45.5 + parent: 5350 - uid: 2145 components: - type: Transform @@ -131582,11 +132618,6 @@ entities: - type: Transform pos: -46.5,-39.5 parent: 5350 - - uid: 19218 - components: - - type: Transform - pos: 7.5,-64.5 - parent: 5350 - uid: 19449 components: - type: Transform @@ -131627,6 +132658,20 @@ entities: - type: Transform pos: 46.5,19.5 parent: 5350 + - uid: 28428 + components: + - type: Transform + pos: 13.5,-55.5 + parent: 5350 +- proto: NitrogenTank + entities: + - uid: 14901 + components: + - type: Transform + parent: 11032 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: NitrogenTankFilled entities: - uid: 4789 @@ -131634,6 +132679,55 @@ entities: - type: Transform pos: -36.68396,-36.29682 parent: 5350 + - uid: 12668 + components: + - type: Transform + parent: 7801 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12669 + components: + - type: Transform + parent: 15195 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13496 + components: + - type: Transform + parent: 13159 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13886 + components: + - type: Transform + parent: 1489 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14149 + components: + - type: Transform + parent: 4104 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14443 + components: + - type: Transform + parent: 7165 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14858 + components: + - type: Transform + parent: 2617 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 15237 components: - type: Transform @@ -131657,6 +132751,20 @@ entities: actions: !type:Container ents: - 16296 + - uid: 24449 + components: + - type: Transform + parent: 24328 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24611 + components: + - type: Transform + parent: 24610 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: NitrousOxideCanister entities: - uid: 11825 @@ -131834,11 +132942,6 @@ entities: - type: Transform pos: -47.5,-39.5 parent: 5350 - - uid: 19263 - components: - - type: Transform - pos: 8.5,-64.5 - parent: 5350 - uid: 19544 components: - type: Transform @@ -131864,18 +132967,18 @@ entities: - type: Transform pos: 47.5,19.5 parent: 5350 + - uid: 28487 + components: + - type: Transform + pos: 14.5,-55.5 + parent: 5350 + - uid: 28511 + components: + - type: Transform + pos: -42.5,-45.5 + parent: 5350 - proto: OxygenTankFilled entities: - - uid: 1532 - components: - - type: Transform - pos: -16.506245,-14.460186 - parent: 5350 - - uid: 1533 - components: - - type: Transform - pos: -16.506245,-14.163311 - parent: 5350 - uid: 9284 components: - type: Transform @@ -132374,6 +133477,64 @@ entities: Step 6: Enjoy. NOTE: If you are doing this multiple times, you will need more than one container, otherwise the heated container will automatically form the electrolyzed water into hydroxide. +- proto: PaperBin + entities: + - uid: 1531 + components: + - type: MetaData + name: Paper Bin (cargo forms) + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,8.5 + parent: 5350 + - type: Bin + items: + - 1532 + - 1533 + - 1534 + - 1535 + - 1539 + - 1540 + - 2064 + - 2187 + - 2470 + - 2999 + - 19853 + - 19854 + - 19855 + - 19856 + - 19857 + - 19858 + - 19859 + - 19860 + - 19861 + - 19862 + - type: ContainerContainer + containers: + bin-container: !type:Container + showEnts: False + occludes: True + ents: + - 1532 + - 1533 + - 1534 + - 1535 + - 1539 + - 1540 + - 2064 + - 2187 + - 2470 + - 2999 + - 19853 + - 19854 + - 19855 + - 19856 + - 19857 + - 19858 + - 19859 + - 19860 + - 19861 + - 19862 - proto: PaperBin10 entities: - uid: 15095 @@ -132416,6 +133577,406 @@ entities: parent: 5350 - proto: PaperOffice entities: + - uid: 1532 + components: + - type: Transform + parent: 1531 + - type: Paper + content: >- + [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head] + + █ ▀█     █     Thank you for choosing Cargo[/color] + + ────────────────────────────────────────── + + This form is to place orders for items or resources you require. Please make sure to be detailed and specific. + + + For multiple different orders please fill out multiple forms. + + + Your Name: [color=#002AAF]Sample Person[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Your Order: [color=#002AAF]Sample Order[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Reason (please be detailed): + [color=#002AAF]Sample Reason[/color] + + + + \[ ]Request delivery + + Destination (if applicable): [color=#002AAF]Sample Place[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio. + + CRFs are handled in the order they are received. + + The Quartermaster holds the right to change Cargo Request policies at any time. + + If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE + - type: Physics + canCollide: False + - uid: 1533 + components: + - type: Transform + parent: 1531 + - type: Paper + content: >- + [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head] + + █ ▀█     █     Thank you for choosing Cargo[/color] + + ────────────────────────────────────────── + + This form is to place orders for items or resources you require. Please make sure to be detailed and specific. + + + For multiple different orders please fill out multiple forms. + + + Your Name: [color=#002AAF]Sample Person[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Your Order: [color=#002AAF]Sample Order[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Reason (please be detailed): + [color=#002AAF]Sample Reason[/color] + + + + \[ ]Request delivery + + Destination (if applicable): [color=#002AAF]Sample Place[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio. + + CRFs are handled in the order they are received. + + The Quartermaster holds the right to change Cargo Request policies at any time. + + If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE + - type: Physics + canCollide: False + - uid: 1534 + components: + - type: Transform + parent: 1531 + - type: Paper + content: >- + [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head] + + █ ▀█     █     Thank you for choosing Cargo[/color] + + ────────────────────────────────────────── + + This form is to place orders for items or resources you require. Please make sure to be detailed and specific. + + + For multiple different orders please fill out multiple forms. + + + Your Name: [color=#002AAF]Sample Person[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Your Order: [color=#002AAF]Sample Order[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Reason (please be detailed): + [color=#002AAF]Sample Reason[/color] + + + + \[ ]Request delivery + + Destination (if applicable): [color=#002AAF]Sample Place[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio. + + CRFs are handled in the order they are received. + + The Quartermaster holds the right to change Cargo Request policies at any time. + + If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE + - type: Physics + canCollide: False + - uid: 1535 + components: + - type: Transform + parent: 1531 + - type: Paper + content: >- + [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head] + + █ ▀█     █     Thank you for choosing Cargo[/color] + + ────────────────────────────────────────── + + This form is to place orders for items or resources you require. Please make sure to be detailed and specific. + + + For multiple different orders please fill out multiple forms. + + + Your Name: [color=#002AAF]Sample Person[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Your Order: [color=#002AAF]Sample Order[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Reason (please be detailed): + [color=#002AAF]Sample Reason[/color] + + + + \[ ]Request delivery + + Destination (if applicable): [color=#002AAF]Sample Place[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio. + + CRFs are handled in the order they are received. + + The Quartermaster holds the right to change Cargo Request policies at any time. + + If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE + - type: Physics + canCollide: False + - uid: 1539 + components: + - type: Transform + parent: 1531 + - type: Paper + content: >- + [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head] + + █ ▀█     █     Thank you for choosing Cargo[/color] + + ────────────────────────────────────────── + + This form is to place orders for items or resources you require. Please make sure to be detailed and specific. + + + For multiple different orders please fill out multiple forms. + + + Your Name: [color=#002AAF]Sample Person[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Your Order: [color=#002AAF]Sample Order[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Reason (please be detailed): + [color=#002AAF]Sample Reason[/color] + + + + \[ ]Request delivery + + Destination (if applicable): [color=#002AAF]Sample Place[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio. + + CRFs are handled in the order they are received. + + The Quartermaster holds the right to change Cargo Request policies at any time. + + If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE + - type: Physics + canCollide: False + - uid: 1540 + components: + - type: Transform + parent: 1531 + - type: Paper + content: >- + [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head] + + █ ▀█     █     Thank you for choosing Cargo[/color] + + ────────────────────────────────────────── + + This form is to place orders for items or resources you require. Please make sure to be detailed and specific. + + + For multiple different orders please fill out multiple forms. + + + Your Name: [color=#002AAF]Sample Person[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Your Order: [color=#002AAF]Sample Order[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Reason (please be detailed): + [color=#002AAF]Sample Reason[/color] + + + + \[ ]Request delivery + + Destination (if applicable): [color=#002AAF]Sample Place[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio. + + CRFs are handled in the order they are received. + + The Quartermaster holds the right to change Cargo Request policies at any time. + + If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE + - type: Physics + canCollide: False + - uid: 2064 + components: + - type: Transform + parent: 1531 + - type: Paper + content: >- + [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head] + + █ ▀█     █     Thank you for choosing Cargo[/color] + + ────────────────────────────────────────── + + This form is to place orders for items or resources you require. Please make sure to be detailed and specific. + + + For multiple different orders please fill out multiple forms. + + + Your Name: [color=#002AAF]Sample Person[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Your Order: [color=#002AAF]Sample Order[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Reason (please be detailed): + [color=#002AAF]Sample Reason[/color] + + + + \[ ]Request delivery + + Destination (if applicable): [color=#002AAF]Sample Place[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio. + + CRFs are handled in the order they are received. + + The Quartermaster holds the right to change Cargo Request policies at any time. + + If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE + - type: Physics + canCollide: False + - uid: 2187 + components: + - type: Transform + parent: 1531 + - type: Paper + content: >- + [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head] + + █ ▀█     █     Thank you for choosing Cargo[/color] + + ────────────────────────────────────────── + + This form is to place orders for items or resources you require. Please make sure to be detailed and specific. + + + For multiple different orders please fill out multiple forms. + + + Your Name: [color=#002AAF]Sample Person[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Your Order: [color=#002AAF]Sample Order[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Reason (please be detailed): + [color=#002AAF]Sample Reason[/color] + + + + \[ ]Request delivery + + Destination (if applicable): [color=#002AAF]Sample Place[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio. + + CRFs are handled in the order they are received. + + The Quartermaster holds the right to change Cargo Request policies at any time. + + If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE + - type: Physics + canCollide: False + - uid: 2470 + components: + - type: Transform + parent: 1531 + - type: Paper + content: >- + [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head] + + █ ▀█     █     Thank you for choosing Cargo[/color] + + ────────────────────────────────────────── + + This form is to place orders for items or resources you require. Please make sure to be detailed and specific. + + + For multiple different orders please fill out multiple forms. + + + Your Name: [color=#002AAF]Sample Person[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Your Order: [color=#002AAF]Sample Order[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Reason (please be detailed): + [color=#002AAF]Sample Reason[/color] + + + + \[ ]Request delivery + + Destination (if applicable): [color=#002AAF]Sample Place[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio. + + CRFs are handled in the order they are received. + + The Quartermaster holds the right to change Cargo Request policies at any time. + + If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE + - type: Physics + canCollide: False + - uid: 2999 + components: + - type: Transform + parent: 1531 + - type: Paper + content: >- + [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head] + + █ ▀█     █     Thank you for choosing Cargo[/color] + + ────────────────────────────────────────── + + This form is to place orders for items or resources you require. Please make sure to be detailed and specific. + + + For multiple different orders please fill out multiple forms. + + + Your Name: [color=#002AAF]Sample Person[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Your Order: [color=#002AAF]Sample Order[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Reason (please be detailed): + [color=#002AAF]Sample Reason[/color] + + + + \[ ]Request delivery + + Destination (if applicable): [color=#002AAF]Sample Place[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio. + + CRFs are handled in the order they are received. + + The Quartermaster holds the right to change Cargo Request policies at any time. + + If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE + - type: Physics + canCollide: False - uid: 6607 components: - type: MetaData @@ -132441,6 +134002,432 @@ entities: Just as Central Command Intended. - type: Physics canCollide: False + - uid: 19853 + components: + - type: Transform + parent: 1531 + - type: Paper + content: >- + [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head] + + █ ▀█     █     Thank you for choosing Cargo[/color] + + ────────────────────────────────────────── + + This form is to place orders for items or resources you require. Please make sure to be detailed and specific. + + + For multiple different orders please fill out multiple forms. + + + Your Name: [color=#002AAF]Sample Person[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Your Order: [color=#002AAF]Sample Order[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Reason (please be detailed): + [color=#002AAF]Sample Reason[/color] + + + + \[ ]Request delivery + + Destination (if applicable): [color=#002AAF]Sample Place[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio. + + CRFs are handled in the order they are received. + + The Quartermaster holds the right to change Cargo Request policies at any time. + + If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE + - type: Physics + canCollide: False + - uid: 19854 + components: + - type: Transform + parent: 1531 + - type: Paper + content: >- + [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head] + + █ ▀█     █     Thank you for choosing Cargo[/color] + + ────────────────────────────────────────── + + This form is to place orders for items or resources you require. Please make sure to be detailed and specific. + + + For multiple different orders please fill out multiple forms. + + + Your Name: [color=#002AAF]Sample Person[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Your Order: [color=#002AAF]Sample Order[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Reason (please be detailed): + [color=#002AAF]Sample Reason[/color] + + + + \[ ]Request delivery + + Destination (if applicable): [color=#002AAF]Sample Place[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio. + + CRFs are handled in the order they are received. + + The Quartermaster holds the right to change Cargo Request policies at any time. + + If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE + - type: Physics + canCollide: False + - uid: 19855 + components: + - type: Transform + parent: 1531 + - type: Paper + content: >- + [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head] + + █ ▀█     █     Thank you for choosing Cargo[/color] + + ────────────────────────────────────────── + + This form is to place orders for items or resources you require. Please make sure to be detailed and specific. + + + For multiple different orders please fill out multiple forms. + + + Your Name: [color=#002AAF]Sample Person[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Your Order: [color=#002AAF]Sample Order[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Reason (please be detailed): + [color=#002AAF]Sample Reason[/color] + + + + \[ ]Request delivery + + Destination (if applicable): [color=#002AAF]Sample Place[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio. + + CRFs are handled in the order they are received. + + The Quartermaster holds the right to change Cargo Request policies at any time. + + If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE + - type: Physics + canCollide: False + - uid: 19856 + components: + - type: Transform + parent: 1531 + - type: Paper + content: >- + [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head] + + █ ▀█     █     Thank you for choosing Cargo[/color] + + ────────────────────────────────────────── + + This form is to place orders for items or resources you require. Please make sure to be detailed and specific. + + + For multiple different orders please fill out multiple forms. + + + Your Name: [color=#002AAF]Sample Person[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Your Order: [color=#002AAF]Sample Order[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Reason (please be detailed): + [color=#002AAF]Sample Reason[/color] + + + + \[ ]Request delivery + + Destination (if applicable): [color=#002AAF]Sample Place[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio. + + CRFs are handled in the order they are received. + + The Quartermaster holds the right to change Cargo Request policies at any time. + + If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE + - type: Physics + canCollide: False + - uid: 19857 + components: + - type: Transform + parent: 1531 + - type: Paper + content: >- + [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head] + + █ ▀█     █     Thank you for choosing Cargo[/color] + + ────────────────────────────────────────── + + This form is to place orders for items or resources you require. Please make sure to be detailed and specific. + + + For multiple different orders please fill out multiple forms. + + + Your Name: [color=#002AAF]Sample Person[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Your Order: [color=#002AAF]Sample Order[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Reason (please be detailed): + [color=#002AAF]Sample Reason[/color] + + + + \[ ]Request delivery + + Destination (if applicable): [color=#002AAF]Sample Place[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio. + + CRFs are handled in the order they are received. + + The Quartermaster holds the right to change Cargo Request policies at any time. + + If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE + - type: Physics + canCollide: False + - uid: 19858 + components: + - type: Transform + parent: 1531 + - type: Paper + content: >- + [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head] + + █ ▀█     █     Thank you for choosing Cargo[/color] + + ────────────────────────────────────────── + + This form is to place orders for items or resources you require. Please make sure to be detailed and specific. + + + For multiple different orders please fill out multiple forms. + + + Your Name: [color=#002AAF]Sample Person[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Your Order: [color=#002AAF]Sample Order[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Reason (please be detailed): + [color=#002AAF]Sample Reason[/color] + + + + \[ ]Request delivery + + Destination (if applicable): [color=#002AAF]Sample Place[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio. + + CRFs are handled in the order they are received. + + The Quartermaster holds the right to change Cargo Request policies at any time. + + If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE + - type: Physics + canCollide: False + - uid: 19859 + components: + - type: Transform + parent: 1531 + - type: Paper + content: >- + [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head] + + █ ▀█     █     Thank you for choosing Cargo[/color] + + ────────────────────────────────────────── + + This form is to place orders for items or resources you require. Please make sure to be detailed and specific. + + + For multiple different orders please fill out multiple forms. + + + Your Name: [color=#002AAF]Sample Person[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Your Order: [color=#002AAF]Sample Order[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Reason (please be detailed): + [color=#002AAF]Sample Reason[/color] + + + + \[ ]Request delivery + + Destination (if applicable): [color=#002AAF]Sample Place[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio. + + CRFs are handled in the order they are received. + + The Quartermaster holds the right to change Cargo Request policies at any time. + + If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE + - type: Physics + canCollide: False + - uid: 19860 + components: + - type: Transform + parent: 1531 + - type: Paper + content: >- + [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head] + + █ ▀█     █     Thank you for choosing Cargo[/color] + + ────────────────────────────────────────── + + This form is to place orders for items or resources you require. Please make sure to be detailed and specific. + + + For multiple different orders please fill out multiple forms. + + + Your Name: [color=#002AAF]Sample Person[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Your Order: [color=#002AAF]Sample Order[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Reason (please be detailed): + [color=#002AAF]Sample Reason[/color] + + + + \[ ]Request delivery + + Destination (if applicable): [color=#002AAF]Sample Place[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio. + + CRFs are handled in the order they are received. + + The Quartermaster holds the right to change Cargo Request policies at any time. + + If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE + - type: Physics + canCollide: False + - uid: 19861 + components: + - type: Transform + parent: 1531 + - type: Paper + content: >- + [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head] + + █ ▀█     █     Thank you for choosing Cargo[/color] + + ────────────────────────────────────────── + + This form is to place orders for items or resources you require. Please make sure to be detailed and specific. + + + For multiple different orders please fill out multiple forms. + + + Your Name: [color=#002AAF]Sample Person[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Your Order: [color=#002AAF]Sample Order[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Reason (please be detailed): + [color=#002AAF]Sample Reason[/color] + + + + \[ ]Request delivery + + Destination (if applicable): [color=#002AAF]Sample Place[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio. + + CRFs are handled in the order they are received. + + The Quartermaster holds the right to change Cargo Request policies at any time. + + If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE + - type: Physics + canCollide: False + - uid: 19862 + components: + - type: Transform + parent: 1531 + - type: Paper + content: >- + [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head] + + █ ▀█     █     Thank you for choosing Cargo[/color] + + ────────────────────────────────────────── + + This form is to place orders for items or resources you require. Please make sure to be detailed and specific. + + + For multiple different orders please fill out multiple forms. + + + Your Name: [color=#002AAF]Sample Person[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Your Order: [color=#002AAF]Sample Order[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + Reason (please be detailed): + [color=#002AAF]Sample Reason[/color] + + + + \[ ]Request delivery + + Destination (if applicable): [color=#002AAF]Sample Place[/color] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio. + + CRFs are handled in the order they are received. + + The Quartermaster holds the right to change Cargo Request policies at any time. + + If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE + - type: Physics + canCollide: False + - uid: 28641 + components: + - type: Transform + pos: 76.359085,8.601143 + parent: 5350 + - type: Paper + content: >- + I don't know if you're trained already, so I hope this'll help. + + AME controller needs LV power and an HV wire to output to. Check the area with a crowbar if you aren't sure. + + There should be an empty room next to where you found this, that room's wired for the AME. + + You can put an AME anywhere if you can get the wires to it, though. + + 3x3 grid of AME parts, multitool them to unpack. Be careful not to 'trap' anything. + + AME controller adjacent horizontally or vertically (not diagonally) to any point. + + With only 1 core (what a 3x3 grid will get you), don't turn it up above 2. + + The golden rule is 2 injection for every 1 core. You can go lower to save fuel. + + Higher will burn the engine out and eventually make it explode. Don't. + + Don't forget to refuel it, it tends to stop at the worst possible time. - proto: PaperRolling entities: - uid: 17306 @@ -132556,7 +134543,7 @@ entities: - uid: 3940 components: - type: Transform - pos: -27.259901,8.772635 + pos: -24.633858,8.729532 parent: 5350 - uid: 7549 components: @@ -132703,21 +134690,21 @@ entities: - type: Transform pos: 20.5,-45.5 parent: 5350 - - uid: 23381 + - uid: 19910 components: - type: Transform - pos: 47.5,21.5 - parent: 5350 - - uid: 23383 - components: - - type: Transform - pos: 46.5,21.5 + pos: 43.5,25.5 parent: 5350 - uid: 27089 components: - type: Transform pos: 76.5,-35.5 parent: 5350 + - uid: 28643 + components: + - type: Transform + pos: 42.5,25.5 + parent: 5350 - proto: PlasmaWindoorSecureScienceLocked entities: - uid: 6532 @@ -133130,10 +135117,10 @@ entities: parent: 5350 - proto: PortableGeneratorSuperPacman entities: - - uid: 23572 + - uid: 23753 components: - type: Transform - pos: 44.5,21.5 + pos: 42.5,21.5 parent: 5350 - proto: PortableScrubber entities: @@ -134066,11 +136053,6 @@ entities: parent: 5350 - proto: PowerCellRecharger entities: - - uid: 1534 - components: - - type: Transform - pos: -16.5,-12.5 - parent: 5350 - uid: 2039 components: - type: Transform @@ -134248,17 +136230,11 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,22.5 parent: 5350 - - uid: 23816 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,22.5 - parent: 5350 - - uid: 23908 + - uid: 23735 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,25.5 + pos: 5.5,-66.5 parent: 5350 - uid: 24131 components: @@ -134434,6 +136410,11 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,-30.5 parent: 5350 + - uid: 1526 + components: + - type: Transform + pos: 71.5,8.5 + parent: 5350 - uid: 2102 components: - type: Transform @@ -136386,12 +138367,6 @@ entities: rot: 3.141592653589793 rad pos: 60.5,7.5 parent: 5350 - - uid: 23534 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,5.5 - parent: 5350 - uid: 23535 components: - type: Transform @@ -136706,11 +138681,41 @@ entities: parent: 5350 - proto: PoweredlightExterior entities: + - uid: 6527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,49.5 + parent: 5350 + - uid: 7537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,69.5 + parent: 5350 + - uid: 10668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,63.5 + parent: 5350 + - uid: 10975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,63.5 + parent: 5350 - uid: 11238 components: - type: Transform pos: 76.5,-43.5 parent: 5350 + - uid: 14074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,50.5 + parent: 5350 - uid: 23141 components: - type: Transform @@ -137101,6 +139106,12 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 + - uid: 6690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,25.5 + parent: 5350 - uid: 6819 components: - type: Transform @@ -137113,6 +139124,12 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,28.5 parent: 5350 + - uid: 7046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,21.5 + parent: 5350 - uid: 7063 components: - type: Transform @@ -138006,6 +140023,12 @@ entities: rot: 3.141592653589793 rad pos: 58.5,18.5 parent: 5350 + - uid: 23572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,25.5 + parent: 5350 - uid: 23573 components: - type: Transform @@ -138257,11 +140280,6 @@ entities: parent: 5350 - proto: Rack entities: - - uid: 1569 - components: - - type: Transform - pos: -8.5,36.5 - parent: 5350 - uid: 2081 components: - type: Transform @@ -138396,21 +140414,11 @@ entities: - type: Transform pos: 32.5,8.5 parent: 5350 - - uid: 9202 - components: - - type: Transform - pos: 42.5,23.5 - parent: 5350 - uid: 9485 components: - type: Transform pos: -30.5,30.5 parent: 5350 - - uid: 10416 - components: - - type: Transform - pos: 18.5,-61.5 - parent: 5350 - uid: 10479 components: - type: Transform @@ -138706,12 +140714,6 @@ entities: - type: Transform pos: -37.5,-51.5 parent: 5350 - - uid: 23809 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,8.5 - parent: 5350 - uid: 24078 components: - type: Transform @@ -139788,18 +141790,8 @@ entities: - type: Transform pos: 26.5,40.5 parent: 5350 - - uid: 23594 - components: - - type: Transform - pos: 53.5,5.5 - parent: 5350 - proto: RandomVendingSnacks entities: - - uid: 2565 - components: - - type: Transform - pos: 54.5,5.5 - parent: 5350 - uid: 2736 components: - type: Transform @@ -139888,11 +141880,6 @@ entities: - type: Transform pos: 53.404488,13.638708 parent: 5350 - - uid: 28399 - components: - - type: Transform - pos: 53.732613,13.779333 - parent: 5350 - proto: ReagentContainerFlour entities: - uid: 2240 @@ -141728,26 +143715,6 @@ entities: - type: Transform pos: 40.5,49.5 parent: 5350 - - uid: 8598 - components: - - type: Transform - pos: 39.5,45.5 - parent: 5350 - - uid: 8599 - components: - - type: Transform - pos: 40.5,45.5 - parent: 5350 - - uid: 8600 - components: - - type: Transform - pos: 41.5,46.5 - parent: 5350 - - uid: 8601 - components: - - type: Transform - pos: 41.5,48.5 - parent: 5350 - uid: 8616 components: - type: Transform @@ -141938,11 +143905,6 @@ entities: - type: Transform pos: -30.5,45.5 parent: 5350 - - uid: 9407 - components: - - type: Transform - pos: 59.5,17.5 - parent: 5350 - uid: 9408 components: - type: Transform @@ -142188,11 +144150,6 @@ entities: - type: Transform pos: 60.5,23.5 parent: 5350 - - uid: 12354 - components: - - type: Transform - pos: 59.5,23.5 - parent: 5350 - uid: 12355 components: - type: Transform @@ -142713,21 +144670,6 @@ entities: - type: Transform pos: -58.5,-33.5 parent: 5350 - - uid: 16675 - components: - - type: Transform - pos: -45.5,-42.5 - parent: 5350 - - uid: 16676 - components: - - type: Transform - pos: -46.5,-42.5 - parent: 5350 - - uid: 16677 - components: - - type: Transform - pos: -47.5,-42.5 - parent: 5350 - uid: 16885 components: - type: Transform @@ -143138,11 +145080,6 @@ entities: - type: Transform pos: 37.5,-62.5 parent: 5350 - - uid: 19825 - components: - - type: Transform - pos: 16.5,-62.5 - parent: 5350 - uid: 20248 components: - type: Transform @@ -143188,10 +145125,10 @@ entities: - type: Transform pos: -42.5,40.5 parent: 5350 - - uid: 20933 + - uid: 21477 components: - type: Transform - pos: 18.5,-62.5 + pos: 41.5,48.5 parent: 5350 - uid: 21655 components: @@ -143293,6 +145230,17 @@ entities: - type: Transform pos: -68.5,9.5 parent: 5350 + - uid: 23636 + components: + - type: Transform + pos: 41.5,46.5 + parent: 5350 + - uid: 23719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-58.5 + parent: 5350 - uid: 23810 components: - type: Transform @@ -143453,6 +145401,12 @@ entities: - type: Transform pos: 53.5,6.5 parent: 5350 + - uid: 28502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-58.5 + parent: 5350 - proto: RemoteSignaller entities: - uid: 5855 @@ -143460,16 +145414,6 @@ entities: - type: Transform pos: 45.32724,-24.4376 parent: 5350 - - uid: 6529 - components: - - type: Transform - pos: 8.356756,27.61508 - parent: 5350 - - uid: 6531 - components: - - type: Transform - pos: 8.3523245,27.349798 - parent: 5350 - uid: 28429 components: - type: Transform @@ -143492,56 +145436,70 @@ entities: parent: 5350 - proto: RiotBulletShield entities: - - uid: 4235 + - uid: 28468 components: - type: Transform - pos: -9.815185,38.38895 + pos: -9.773878,38.72186 parent: 5350 - - uid: 6511 + - uid: 28469 components: - type: Transform - pos: -9.799423,38.722095 + pos: -9.773878,38.607277 + parent: 5350 + - uid: 28470 + components: + - type: Transform + pos: -9.784295,38.513527 + parent: 5350 + - uid: 28471 + components: + - type: Transform + pos: -9.784295,38.451027 parent: 5350 - - type: Blocking - blockingToggleActionEntity: 6512 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 6512 - proto: RiotLaserShield entities: - - uid: 8001 + - uid: 28472 components: - type: Transform - pos: -9.377685,38.70145 + pos: -9.294712,38.72186 parent: 5350 - - uid: 8003 + - uid: 28473 components: - type: Transform - pos: -9.377685,38.404575 + pos: -9.294712,38.607277 + parent: 5350 + - uid: 28474 + components: + - type: Transform + pos: -9.294712,38.50311 + parent: 5350 + - uid: 28475 + components: + - type: Transform + pos: -9.294712,38.430195 parent: 5350 - proto: RiotShield entities: - - uid: 6426 + - uid: 28460 components: - type: Transform - pos: -9.596435,38.7327 + pos: -9.503045,38.763527 parent: 5350 - - uid: 7539 + - uid: 28461 components: - type: Transform - pos: -9.549423,38.409595 + pos: -9.503045,38.669777 + parent: 5350 + - uid: 28466 + components: + - type: Transform + pos: -9.503045,38.586445 + parent: 5350 + - uid: 28467 + components: + - type: Transform + pos: -9.503045,38.47186 parent: 5350 - - type: Blocking - blockingToggleActionEntity: 7540 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 7540 - proto: RobocopCircuitBoard entities: - uid: 26934 @@ -143856,11 +145814,6 @@ entities: parent: 5350 - proto: SheetPlasma entities: - - uid: 9204 - components: - - type: Transform - pos: 42.51062,23.483671 - parent: 5350 - uid: 16621 components: - type: Transform @@ -143877,6 +145830,13 @@ entities: - type: Transform pos: 108.52579,-0.4873736 parent: 5350 + - uid: 26783 + components: + - type: Transform + parent: 26688 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: SheetPlasma10 entities: - uid: 15333 @@ -143988,6 +145948,11 @@ entities: - type: Transform pos: 42.50872,-3.4762616 parent: 5350 + - uid: 23409 + components: + - type: Transform + pos: -5.469453,38.61524 + parent: 5350 - uid: 23886 components: - type: Transform @@ -144049,16 +146014,6 @@ entities: count: 4 - proto: SheetSteel10 entities: - - uid: 6645 - components: - - type: Transform - pos: -5.3954077,38.543777 - parent: 5350 - - uid: 11588 - components: - - type: Transform - pos: -5.5672827,38.590652 - parent: 5350 - uid: 16467 components: - type: Transform @@ -144066,11 +146021,13 @@ entities: parent: 5350 - proto: SheetUranium entities: - - uid: 23889 + - uid: 26784 components: - type: Transform - pos: 42.540474,23.51859 - parent: 5350 + parent: 26688 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ShellShotgunBeanbag entities: - uid: 9472 @@ -144159,16 +146116,6 @@ entities: - type: Transform pos: -32.5,28.5 parent: 5350 - - uid: 4161 - components: - - type: Transform - pos: 17.5,-58.5 - parent: 5350 - - uid: 6818 - components: - - type: Transform - pos: 18.5,-58.5 - parent: 5350 - uid: 7323 components: - type: Transform @@ -144179,16 +146126,6 @@ entities: - type: Transform pos: -46.5,-35.5 parent: 5350 - - uid: 11952 - components: - - type: Transform - pos: -4.5,-35.5 - parent: 5350 - - uid: 12541 - components: - - type: Transform - pos: -4.5,-33.5 - parent: 5350 - uid: 14414 components: - type: Transform @@ -144199,11 +146136,6 @@ entities: - type: Transform pos: -18.5,5.5 parent: 5350 - - uid: 15903 - components: - - type: Transform - pos: 16.5,-58.5 - parent: 5350 - uid: 16181 components: - type: Transform @@ -144254,6 +146186,18 @@ entities: - type: Transform pos: -47.5,-32.5 parent: 5350 + - uid: 23655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-35.5 + parent: 5350 + - uid: 23712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-33.5 + parent: 5350 - proto: ShuttersNormalOpen entities: - uid: 2415 @@ -144552,7 +146496,7 @@ entities: parent: 5350 - proto: ShuttersWindow entities: - - uid: 20051 + - uid: 23720 components: - type: Transform rot: 1.5707963267948966 rad @@ -144565,6 +146509,13 @@ entities: - type: Transform pos: -43.58703,33.41721 parent: 5350 + - uid: 28640 + components: + - type: Transform + parent: 28639 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: SignAi entities: - uid: 9089 @@ -144867,46 +146818,6 @@ entities: linkedPorts: 16592: - Pressed: DoorBolt - - uid: 23389 - components: - - type: MetaData - name: signal button (Cold Storage) - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,21.5 - parent: 5350 - - type: DeviceLinkSource - linkedPorts: - 28365: - - Pressed: Toggle - 23391: - - Pressed: Toggle - 28382: - - Pressed: Toggle - - type: Label - currentLabel: Cold Storage - - type: NameModifier - baseName: signal button - - uid: 23395 - components: - - type: MetaData - name: signal button (Cold Storage) - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,21.5 - parent: 5350 - - type: DeviceLinkSource - linkedPorts: - 28365: - - Pressed: Toggle - 23391: - - Pressed: Toggle - 28382: - - Pressed: Toggle - - type: Label - currentLabel: Cold Storage - - type: NameModifier - baseName: signal button - proto: SignalSwitch entities: - uid: 15949 @@ -145271,25 +147182,6 @@ entities: 9630: - On: Open - Off: Close - - uid: 7797 - components: - - type: MetaData - name: Pod Shutters - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-58.5 - parent: 5350 - - type: DeviceLinkSource - linkedPorts: - 6818: - - On: Open - - Off: Close - 4161: - - On: Open - - Off: Close - 15903: - - On: Open - - Off: Close - uid: 9373 components: - type: MetaData @@ -145433,25 +147325,6 @@ entities: 13781: - On: Open - Off: Close - - uid: 14901 - components: - - type: MetaData - name: Pod Shutters - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-59.5 - parent: 5350 - - type: DeviceLinkSource - linkedPorts: - 15903: - - On: Open - - Off: Close - 4161: - - On: Open - - Off: Close - 6818: - - On: Open - - Off: Close - uid: 17321 components: - type: MetaData @@ -146324,16 +148197,16 @@ entities: - type: Transform pos: -63.5,-14.5 parent: 5350 - - uid: 5329 + - uid: 5096 components: - type: Transform - pos: 38.5,45.5 + rot: 3.141592653589793 rad + pos: 16.5,-58.5 parent: 5350 - - uid: 20776 + - uid: 16673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-58.5 + pos: 38.5,46.5 parent: 5350 - proto: SignEVA entities: @@ -146583,11 +148456,6 @@ entities: - type: Transform pos: 55.5,34.5 parent: 5350 - - uid: 14064 - components: - - type: Transform - pos: 56.5,42.5 - parent: 5350 - uid: 23546 components: - type: Transform @@ -146600,11 +148468,6 @@ entities: rot: 3.141592653589793 rad pos: 51.5,10.5 parent: 5350 - - uid: 23780 - components: - - type: Transform - pos: 79.5,21.5 - parent: 5350 - uid: 23781 components: - type: Transform @@ -146623,7 +148486,14 @@ entities: - uid: 23784 components: - type: Transform - pos: 74.5,31.5 + rot: 1.5707963267948966 rad + pos: 75.5,31.5 + parent: 5350 + - uid: 28201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,21.5 parent: 5350 - uid: 28435 components: @@ -146733,18 +148603,6 @@ entities: - type: Transform pos: -0.5,-23.5 parent: 5350 -- proto: SignSecurearea - entities: - - uid: 3760 - components: - - type: Transform - pos: 1.5,-6.5 - parent: 5350 - - uid: 3763 - components: - - type: Transform - pos: -6.5,-6.5 - parent: 5350 - proto: SignSecureMed entities: - uid: 1958 @@ -146782,6 +148640,16 @@ entities: - type: Transform pos: 73.5,34.5 parent: 5350 + - uid: 19942 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 5350 + - uid: 19943 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 5350 - uid: 26809 components: - type: Transform @@ -146831,6 +148699,14 @@ entities: - type: Transform pos: 29.5,-37.5 parent: 5350 +- proto: SignShipDock + entities: + - uid: 28508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-45.5 + parent: 5350 - proto: SignSmoking entities: - uid: 11369 @@ -147011,11 +148887,14 @@ entities: parent: 5350 - proto: SingularityGenerator entities: - - uid: 23385 + - uid: 23407 components: - type: Transform - pos: 42.5,21.5 + anchored: False + pos: 44.5,21.5 parent: 5350 + - type: Physics + bodyType: Dynamic - proto: Sink entities: - uid: 1030 @@ -147183,12 +149062,13 @@ entities: parent: 5350 - proto: Sledgehammer entities: - - uid: 9632 + - uid: 17039 components: - type: MetaData - name: Gavel + desc: The legendary weapon of robotics. + name: Borgmaker - type: Transform - parent: 9631 + parent: 19208 - type: Physics canCollide: False - type: InsideEntityStorage @@ -147259,11 +149139,22 @@ entities: - type: Transform pos: 57.5,34.5 parent: 5350 - - uid: 15347 + - uid: 15903 components: - type: Transform - pos: 44.5,25.5 + anchored: False + pos: 42.5,26.5 parent: 5350 + - type: Physics + bodyType: Dynamic + - uid: 16464 + components: + - type: Transform + anchored: False + pos: 43.5,26.5 + parent: 5350 + - type: Physics + bodyType: Dynamic - uid: 17169 components: - type: MetaData @@ -147278,11 +149169,6 @@ entities: - type: Transform pos: 39.5,-60.5 parent: 5350 - - uid: 24070 - components: - - type: Transform - pos: 44.5,26.5 - parent: 5350 - uid: 25868 components: - type: MetaData @@ -147358,6 +149244,31 @@ entities: parent: 5350 - proto: SolarPanel entities: + - uid: 1521 + components: + - type: Transform + pos: 67.5,52.5 + parent: 5350 + - uid: 6519 + components: + - type: Transform + pos: -50.5,-64.5 + parent: 5350 + - uid: 6529 + components: + - type: Transform + pos: -50.5,-61.5 + parent: 5350 + - uid: 7722 + components: + - type: Transform + pos: -46.5,-60.5 + parent: 5350 + - uid: 7765 + components: + - type: Transform + pos: -48.5,-59.5 + parent: 5350 - uid: 7962 components: - type: Transform @@ -147368,6 +149279,11 @@ entities: - type: Transform pos: -26.5,54.5 parent: 5350 + - uid: 8086 + components: + - type: Transform + pos: -48.5,-61.5 + parent: 5350 - uid: 8163 components: - type: Transform @@ -147388,6 +149304,16 @@ entities: - type: Transform pos: -27.5,54.5 parent: 5350 + - uid: 9407 + components: + - type: Transform + pos: -46.5,-61.5 + parent: 5350 + - uid: 9632 + components: + - type: Transform + pos: -44.5,-59.5 + parent: 5350 - uid: 10172 components: - type: Transform @@ -147838,6 +149764,131 @@ entities: - type: Transform pos: -34.5,64.5 parent: 5350 + - uid: 12306 + components: + - type: Transform + pos: -46.5,-64.5 + parent: 5350 + - uid: 12410 + components: + - type: Transform + pos: 73.5,52.5 + parent: 5350 + - uid: 13782 + components: + - type: Transform + pos: -44.5,-62.5 + parent: 5350 + - uid: 16636 + components: + - type: Transform + pos: 67.5,49.5 + parent: 5350 + - uid: 16676 + components: + - type: Transform + pos: 73.5,49.5 + parent: 5350 + - uid: 16747 + components: + - type: Transform + pos: 73.5,47.5 + parent: 5350 + - uid: 16748 + components: + - type: Transform + pos: 73.5,50.5 + parent: 5350 + - uid: 16939 + components: + - type: Transform + pos: 33.5,-67.5 + parent: 5350 + - uid: 16940 + components: + - type: Transform + pos: 33.5,-75.5 + parent: 5350 + - uid: 16941 + components: + - type: Transform + pos: 32.5,-77.5 + parent: 5350 + - uid: 16942 + components: + - type: Transform + pos: 32.5,-69.5 + parent: 5350 + - uid: 16945 + components: + - type: Transform + pos: 43.5,-73.5 + parent: 5350 + - uid: 16947 + components: + - type: Transform + pos: 32.5,-73.5 + parent: 5350 + - uid: 16948 + components: + - type: Transform + pos: 33.5,-71.5 + parent: 5350 + - uid: 16949 + components: + - type: Transform + pos: 44.5,-71.5 + parent: 5350 + - uid: 16950 + components: + - type: Transform + pos: 43.5,-77.5 + parent: 5350 + - uid: 16951 + components: + - type: Transform + pos: 43.5,-75.5 + parent: 5350 + - uid: 16972 + components: + - type: Transform + pos: -48.5,-64.5 + parent: 5350 + - uid: 16980 + components: + - type: Transform + pos: -44.5,-64.5 + parent: 5350 + - uid: 17017 + components: + - type: Transform + pos: 43.5,-71.5 + parent: 5350 + - uid: 17019 + components: + - type: Transform + pos: 44.5,-77.5 + parent: 5350 + - uid: 17021 + components: + - type: Transform + pos: 32.5,-71.5 + parent: 5350 + - uid: 17022 + components: + - type: Transform + pos: 33.5,-69.5 + parent: 5350 + - uid: 17023 + components: + - type: Transform + pos: 33.5,-77.5 + parent: 5350 + - uid: 17024 + components: + - type: Transform + pos: 32.5,-75.5 + parent: 5350 - uid: 17044 components: - type: Transform @@ -147868,16 +149919,6 @@ entities: - type: Transform pos: -58.5,-65.5 parent: 5350 - - uid: 17051 - components: - - type: Transform - pos: -58.5,-64.5 - parent: 5350 - - uid: 17052 - components: - - type: Transform - pos: -57.5,-71.5 - parent: 5350 - uid: 17053 components: - type: Transform @@ -147908,71 +149949,6 @@ entities: - type: Transform pos: -56.5,-65.5 parent: 5350 - - uid: 17059 - components: - - type: Transform - pos: -56.5,-64.5 - parent: 5350 - - uid: 17060 - components: - - type: Transform - pos: -58.5,-62.5 - parent: 5350 - - uid: 17061 - components: - - type: Transform - pos: -57.5,-61.5 - parent: 5350 - - uid: 17062 - components: - - type: Transform - pos: -56.5,-62.5 - parent: 5350 - - uid: 17063 - components: - - type: Transform - pos: -54.5,-62.5 - parent: 5350 - - uid: 17064 - components: - - type: Transform - pos: -53.5,-61.5 - parent: 5350 - - uid: 17065 - components: - - type: Transform - pos: -52.5,-62.5 - parent: 5350 - - uid: 17066 - components: - - type: Transform - pos: -50.5,-62.5 - parent: 5350 - - uid: 17067 - components: - - type: Transform - pos: -49.5,-61.5 - parent: 5350 - - uid: 17068 - components: - - type: Transform - pos: -48.5,-62.5 - parent: 5350 - - uid: 17069 - components: - - type: Transform - pos: -46.5,-62.5 - parent: 5350 - - uid: 17070 - components: - - type: Transform - pos: -45.5,-61.5 - parent: 5350 - - uid: 17071 - components: - - type: Transform - pos: -44.5,-62.5 - parent: 5350 - uid: 17072 components: - type: Transform @@ -148003,16 +149979,6 @@ entities: - type: Transform pos: -44.5,-65.5 parent: 5350 - - uid: 17078 - components: - - type: Transform - pos: -44.5,-64.5 - parent: 5350 - - uid: 17079 - components: - - type: Transform - pos: -46.5,-64.5 - parent: 5350 - uid: 17080 components: - type: Transform @@ -148073,16 +150039,6 @@ entities: - type: Transform pos: -48.5,-65.5 parent: 5350 - - uid: 17092 - components: - - type: Transform - pos: -48.5,-64.5 - parent: 5350 - - uid: 17093 - components: - - type: Transform - pos: -50.5,-64.5 - parent: 5350 - uid: 17094 components: - type: Transform @@ -148143,16 +150099,6 @@ entities: - type: Transform pos: -52.5,-65.5 parent: 5350 - - uid: 17106 - components: - - type: Transform - pos: -52.5,-64.5 - parent: 5350 - - uid: 17107 - components: - - type: Transform - pos: -54.5,-64.5 - parent: 5350 - uid: 17108 components: - type: Transform @@ -148183,21 +150129,6 @@ entities: - type: Transform pos: -54.5,-70.5 parent: 5350 - - uid: 17114 - components: - - type: Transform - pos: -53.5,-71.5 - parent: 5350 - - uid: 17115 - components: - - type: Transform - pos: -49.5,-71.5 - parent: 5350 - - uid: 17116 - components: - - type: Transform - pos: -45.5,-71.5 - parent: 5350 - uid: 18724 components: - type: Transform @@ -148536,7 +150467,7 @@ entities: - uid: 19964 components: - type: Transform - pos: 33.5,-68.5 + pos: -52.5,-64.5 parent: 5350 - uid: 19965 components: @@ -148568,11 +150499,6 @@ entities: - type: Transform pos: 42.5,-67.5 parent: 5350 - - uid: 19971 - components: - - type: Transform - pos: 43.5,-68.5 - parent: 5350 - uid: 19972 components: - type: Transform @@ -148606,7 +150532,7 @@ entities: - uid: 19978 components: - type: Transform - pos: 43.5,-72.5 + pos: -50.5,-62.5 parent: 5350 - uid: 19979 components: @@ -148638,11 +150564,6 @@ entities: - type: Transform pos: 34.5,-73.5 parent: 5350 - - uid: 19985 - components: - - type: Transform - pos: 33.5,-72.5 - parent: 5350 - uid: 19986 components: - type: Transform @@ -148673,11 +150594,6 @@ entities: - type: Transform pos: 34.5,-77.5 parent: 5350 - - uid: 19992 - components: - - type: Transform - pos: 33.5,-76.5 - parent: 5350 - uid: 19993 components: - type: Transform @@ -148708,11 +150624,6 @@ entities: - type: Transform pos: 42.5,-77.5 parent: 5350 - - uid: 19999 - components: - - type: Transform - pos: 43.5,-76.5 - parent: 5350 - uid: 20000 components: - type: Transform @@ -148728,6 +150639,231 @@ entities: - type: Transform pos: 40.5,-75.5 parent: 5350 + - uid: 20776 + components: + - type: Transform + pos: 67.5,46.5 + parent: 5350 + - uid: 20912 + components: + - type: Transform + pos: 67.5,55.5 + parent: 5350 + - uid: 23383 + components: + - type: Transform + pos: -46.5,-62.5 + parent: 5350 + - uid: 23734 + components: + - type: Transform + pos: 67.5,56.5 + parent: 5350 + - uid: 23754 + components: + - type: Transform + pos: 67.5,50.5 + parent: 5350 + - uid: 23766 + components: + - type: Transform + pos: 73.5,46.5 + parent: 5350 + - uid: 23772 + components: + - type: Transform + pos: 73.5,56.5 + parent: 5350 + - uid: 23774 + components: + - type: Transform + pos: 73.5,55.5 + parent: 5350 + - uid: 23780 + components: + - type: Transform + pos: 73.5,53.5 + parent: 5350 + - uid: 23812 + components: + - type: Transform + pos: 67.5,47.5 + parent: 5350 + - uid: 23872 + components: + - type: Transform + pos: -44.5,-61.5 + parent: 5350 + - uid: 26750 + components: + - type: Transform + pos: -44.5,-60.5 + parent: 5350 + - uid: 26751 + components: + - type: Transform + pos: -46.5,-59.5 + parent: 5350 + - uid: 26796 + components: + - type: Transform + pos: -48.5,-62.5 + parent: 5350 + - uid: 26800 + components: + - type: Transform + pos: -48.5,-60.5 + parent: 5350 + - uid: 27858 + components: + - type: Transform + pos: -50.5,-59.5 + parent: 5350 + - uid: 28399 + components: + - type: Transform + pos: -50.5,-60.5 + parent: 5350 + - uid: 28463 + components: + - type: Transform + pos: 67.5,53.5 + parent: 5350 + - uid: 28515 + components: + - type: Transform + pos: 32.5,-67.5 + parent: 5350 + - uid: 28516 + components: + - type: Transform + pos: 43.5,-67.5 + parent: 5350 + - uid: 28518 + components: + - type: Transform + pos: 33.5,-73.5 + parent: 5350 + - uid: 28519 + components: + - type: Transform + pos: 44.5,-73.5 + parent: 5350 + - uid: 28520 + components: + - type: Transform + pos: 44.5,-75.5 + parent: 5350 + - uid: 28521 + components: + - type: Transform + pos: 44.5,-69.5 + parent: 5350 + - uid: 28522 + components: + - type: Transform + pos: 43.5,-69.5 + parent: 5350 + - uid: 28534 + components: + - type: Transform + pos: 44.5,-67.5 + parent: 5350 + - uid: 28590 + components: + - type: Transform + pos: -54.5,-64.5 + parent: 5350 + - uid: 28598 + components: + - type: Transform + pos: -56.5,-64.5 + parent: 5350 + - uid: 28599 + components: + - type: Transform + pos: -58.5,-64.5 + parent: 5350 + - uid: 28600 + components: + - type: Transform + pos: -56.5,-62.5 + parent: 5350 + - uid: 28601 + components: + - type: Transform + pos: -56.5,-61.5 + parent: 5350 + - uid: 28602 + components: + - type: Transform + pos: -56.5,-60.5 + parent: 5350 + - uid: 28603 + components: + - type: Transform + pos: -56.5,-59.5 + parent: 5350 + - uid: 28604 + components: + - type: Transform + pos: -58.5,-59.5 + parent: 5350 + - uid: 28605 + components: + - type: Transform + pos: -58.5,-60.5 + parent: 5350 + - uid: 28606 + components: + - type: Transform + pos: -58.5,-61.5 + parent: 5350 + - uid: 28607 + components: + - type: Transform + pos: -58.5,-62.5 + parent: 5350 + - uid: 28608 + components: + - type: Transform + pos: -54.5,-61.5 + parent: 5350 + - uid: 28609 + components: + - type: Transform + pos: -54.5,-62.5 + parent: 5350 + - uid: 28610 + components: + - type: Transform + pos: -54.5,-60.5 + parent: 5350 + - uid: 28611 + components: + - type: Transform + pos: -54.5,-59.5 + parent: 5350 + - uid: 28612 + components: + - type: Transform + pos: -52.5,-59.5 + parent: 5350 + - uid: 28613 + components: + - type: Transform + pos: -52.5,-60.5 + parent: 5350 + - uid: 28614 + components: + - type: Transform + pos: -52.5,-61.5 + parent: 5350 + - uid: 28615 + components: + - type: Transform + pos: -52.5,-62.5 + parent: 5350 - proto: SolarTracker entities: - uid: 17046 @@ -149217,15 +151353,15 @@ entities: parent: 5350 - proto: SpawnPointChemist entities: - - uid: 20742 + - uid: 15347 components: - type: Transform - pos: -19.5,-27.5 + pos: -21.5,-25.5 parent: 5350 - - uid: 20912 + - uid: 15601 components: - type: Transform - pos: -20.5,-27.5 + pos: -19.5,-25.5 parent: 5350 - proto: SpawnPointChiefEngineer entities: @@ -149336,11 +151472,6 @@ entities: - type: Transform pos: 11.5,20.5 parent: 5350 - - uid: 10131 - components: - - type: Transform - pos: 13.5,18.5 - parent: 5350 - uid: 16655 components: - type: Transform @@ -149532,16 +151663,21 @@ entities: - type: Transform pos: 37.5,14.5 parent: 5350 - - uid: 23176 + - uid: 23762 components: - type: Transform - pos: 29.5,37.5 + pos: 30.5,36.5 parent: 5350 - - uid: 23177 + - uid: 23763 components: - type: Transform pos: 34.5,45.5 parent: 5350 + - uid: 23764 + components: + - type: Transform + pos: 31.5,52.5 + parent: 5350 - uid: 24117 components: - type: Transform @@ -149562,16 +151698,6 @@ entities: - type: Transform pos: 29.5,32.5 parent: 5350 - - uid: 28226 - components: - - type: Transform - pos: 33.5,50.5 - parent: 5350 - - uid: 28227 - components: - - type: Transform - pos: 29.5,50.5 - parent: 5350 - uid: 28229 components: - type: Transform @@ -149701,11 +151827,6 @@ entities: parent: 5350 - proto: SpawnPointSecurityCadet entities: - - uid: 6762 - components: - - type: Transform - pos: 13.5,39.5 - parent: 5350 - uid: 6866 components: - type: Transform @@ -149726,16 +151847,6 @@ entities: - type: Transform pos: 1.5,39.5 parent: 5350 - - uid: 7048 - components: - - type: Transform - pos: 12.5,36.5 - parent: 5350 - - uid: 8232 - components: - - type: Transform - pos: 1.5,40.5 - parent: 5350 - proto: SpawnPointSecurityOfficer entities: - uid: 6760 @@ -149753,16 +151864,6 @@ entities: - type: Transform pos: -3.5,45.5 parent: 5350 - - uid: 7046 - components: - - type: Transform - pos: 5.5,37.5 - parent: 5350 - - uid: 7047 - components: - - type: Transform - pos: 5.5,39.5 - parent: 5350 - uid: 7171 components: - type: Transform @@ -149773,11 +151874,6 @@ entities: - type: Transform pos: -2.5,45.5 parent: 5350 - - uid: 28219 - components: - - type: Transform - pos: -3.5,28.5 - parent: 5350 - proto: SpawnPointServiceWorker entities: - uid: 2753 @@ -149998,6 +152094,11 @@ entities: - type: Transform pos: 8.5,-6.5 parent: 5350 + - uid: 17028 + components: + - type: Transform + pos: 52.5,6.5 + parent: 5350 - uid: 19460 components: - type: Transform @@ -150422,6 +152523,16 @@ entities: - type: Transform pos: 29.5,-5.5 parent: 5350 + - uid: 5097 + components: + - type: Transform + pos: -49.5,-42.5 + parent: 5350 + - uid: 5872 + components: + - type: Transform + pos: -48.5,-42.5 + parent: 5350 - uid: 9243 components: - type: Transform @@ -150473,6 +152584,11 @@ entities: rot: -1.5707963267948966 rad pos: -53.5,-24.5 parent: 5350 + - uid: 17666 + components: + - type: Transform + pos: -45.5,-42.5 + parent: 5350 - uid: 22870 components: - type: Transform @@ -150488,6 +152604,16 @@ entities: - type: Transform pos: -40.5,-18.5 parent: 5350 + - uid: 23777 + components: + - type: Transform + pos: -46.5,-42.5 + parent: 5350 + - uid: 28496 + components: + - type: Transform + pos: -47.5,-42.5 + parent: 5350 - proto: StorageCanister entities: - uid: 10293 @@ -150697,6 +152823,18 @@ entities: - type: Transform pos: 77.5,-30.5 parent: 5350 +- proto: SubstationMachineCircuitboard + entities: + - uid: 28216 + components: + - type: Transform + pos: 37.117462,6.747689 + parent: 5350 + - uid: 28217 + components: + - type: Transform + pos: 37.039337,6.528939 + parent: 5350 - proto: SuitStorageCaptain entities: - uid: 1204 @@ -150800,10 +152938,12 @@ entities: parent: 5350 - proto: SuitStorageEVA entities: - - uid: 1488 + - uid: 1489 components: + - type: MetaData + name: EVA Suitlocker - type: Transform - pos: -18.5,-10.5 + pos: -14.5,-11.5 parent: 5350 - type: EntityStorage air: @@ -150811,8 +152951,110 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 22911 + - 23098 + - 13886 + - uid: 4104 + components: + - type: MetaData + name: EVA Suitlocker + - type: Transform + pos: -18.5,-11.5 + parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8977377 + - 7.139109 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 23472 + - 14149 + - 23406 + - uid: 7165 + components: + - type: MetaData + name: EVA Suitlocker + - type: Transform + pos: -14.5,-10.5 + parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 14443 + - 23956 + - 23905 + - uid: 13159 + components: + - type: MetaData + name: EVA Suitlocker + - type: Transform + pos: -18.5,-10.5 + parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14697 + moles: + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -150830,147 +153072,14 @@ entities: occludes: True ents: - 22167 - - 22168 - - 22229 + - 13496 - 22348 - - uid: 1489 + - uid: 24328 components: + - type: MetaData + name: EVA Suitlocker - type: Transform - pos: -14.5,-11.5 - parent: 5350 - - 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: - - 23099 - - 23098 - - 23051 - - 22911 - - uid: 4104 - components: - - type: Transform - pos: -18.5,-11.5 - parent: 5350 - - 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: - - 23284 - - 23406 - - 23407 - - 23472 - - uid: 7165 - components: - - type: Transform - pos: -14.5,-10.5 - parent: 5350 - - 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: - - 23712 - - 23905 - - 23956 - - 23964 -- proto: SuitStorageEVAAlternate - entities: - - uid: 2617 - components: - - type: Transform - pos: -14.5,-16.5 - parent: 5350 - - 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: - - 24056 - - 24057 - - 24058 - - 24244 - - uid: 7801 - components: - - type: Transform - pos: -18.5,-16.5 + pos: -14.5,-14.5 parent: 5350 - type: EntityStorage air: @@ -150997,11 +153106,116 @@ entities: occludes: True ents: - 8883 + - 23051 + - 24449 + - uid: 24610 + components: + - type: MetaData + name: EVA Suitlocker + - type: Transform + pos: -14.5,-12.5 + parent: 5350 + - 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: + - 22168 + - 22229 + - 24611 +- proto: SuitStorageEVAAlternate + entities: + - uid: 2617 + components: + - type: MetaData + name: EVA Suitlocker + - type: Transform + pos: -14.5,-16.5 + parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 24058 + - 14858 + - 24057 + - uid: 7801 + components: + - type: MetaData + name: EVA Suitlocker + - type: Transform + pos: -18.5,-16.5 + parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12668 - 8865 - - 7940 - 7808 - uid: 11032 components: + - type: MetaData + name: EVA Suitlocker - type: Transform pos: -14.5,-15.5 parent: 5350 @@ -151011,8 +153225,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -151029,12 +153243,13 @@ entities: showEnts: False occludes: True ents: - - 24248 + - 14901 - 24266 - 24321 - - 24328 - uid: 15195 components: + - type: MetaData + name: EVA Suitlocker - type: Transform pos: -18.5,-15.5 parent: 5350 @@ -151044,8 +153259,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -151062,10 +153277,9 @@ entities: showEnts: False occludes: True ents: - - 15196 - - 15198 - - 15199 - 15200 + - 15199 + - 12669 - proto: SuitStorageEVAPrisoner entities: - uid: 6996 @@ -151154,36 +153368,16 @@ entities: - proto: SuitStorageSec entities: - uid: 5663 + components: + - type: Transform + pos: -5.5,46.5 + parent: 5350 + - uid: 5776 components: - type: Transform pos: -5.5,42.5 parent: 5350 - - 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: - - 14074 - - uid: 5776 + - uid: 6512 components: - type: Transform pos: -6.5,42.5 @@ -151206,80 +153400,39 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 14095 - - uid: 10975 + - uid: 7540 components: - type: Transform pos: -6.5,46.5 parent: 5350 - - 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: - - 14107 - - uid: 17674 - components: - - type: Transform - pos: -5.5,46.5 - parent: 5350 - - 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: - - 14110 - proto: SuitStorageWarden entities: - uid: 6687 components: + - type: MetaData + desc: Contains a special riot hardsuit. + name: Warden's suit locker - type: Transform pos: -9.5,42.5 parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: SurveillanceCameraCommand entities: - uid: 144 @@ -151683,6 +153836,17 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Anchor Room + - uid: 12667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-62.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Solars - SW - uid: 13398 components: - type: Transform @@ -151694,6 +153858,27 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Solars - NW + - uid: 17051 + components: + - type: Transform + pos: 66.5,11.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment - SW + - uid: 17061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,29.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment - NE - uid: 18430 components: - type: Transform @@ -151716,6 +153901,17 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos - South + - uid: 19911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,41.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Gravity Generator 2 - uid: 22213 components: - type: Transform @@ -151727,17 +153923,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Locker Room - - uid: 23069 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,0.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Substation - Service - uid: 23070 components: - type: Transform @@ -151749,16 +153934,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos Lockers - - uid: 23216 - components: - - type: Transform - pos: 60.5,-30.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Air Resevoir - uid: 23218 components: - type: Transform @@ -151792,6 +153967,80 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Engineering Airlock + - uid: 23776 + components: + - type: Transform + pos: 61.5,-30.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Gas Tank - Carbon Dioxide + - uid: 23778 + components: + - type: Transform + pos: 57.5,-30.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Gas Tank - Oxygen + - uid: 23779 + components: + - type: Transform + pos: 53.5,-30.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Gas Tank - Nitrogen + - uid: 23786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-9.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Gas Tank - Waste 1 + - uid: 23787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-5.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Gas Tank - Waste 2 + - uid: 23788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-13.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Gas Tank - Plasma + - uid: 23809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-17.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Gas Tank - Water Vapor - uid: 23866 components: - type: Transform @@ -151846,18 +154095,7 @@ entities: setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Engi Storage - - uid: 23872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,38.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Grav Gen + id: Suit Storage - uid: 23873 components: - type: Transform @@ -151901,17 +154139,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Engineering South - - uid: 23877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,6.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME - uid: 24054 components: - type: Transform @@ -151921,7 +154148,7 @@ entities: setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Grav Gen + id: Gravity Generator 1 - uid: 26699 components: - type: Transform @@ -151941,26 +154168,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos Desk - - uid: 26783 - components: - - type: Transform - pos: 56.5,-30.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Tank Oxy - - uid: 26784 - components: - - type: Transform - pos: 52.5,-30.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Tank Nitro - uid: 26792 components: - type: Transform @@ -151972,17 +154179,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Materials Room - - uid: 26794 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,37.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: NE Solars - uid: 26795 components: - type: Transform @@ -151992,7 +154188,7 @@ entities: setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Grav Gen Exterior + id: Gravity Generator - Exterior - uid: 26849 components: - type: Transform @@ -152002,7 +154198,7 @@ entities: setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Solars SE + id: Solars - SE - uid: 27139 components: - type: MetaData @@ -152037,30 +154233,28 @@ entities: parent: 5350 - type: SurveillanceCamera id: Atmos TEG Exterior south - - uid: 27844 + - uid: 27680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,7.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Antimatter Engine + - uid: 27833 components: - type: Transform rot: 1.5707963267948966 rad - pos: 76.5,29.5 + pos: 78.5,14.5 parent: 5350 - type: SurveillanceCamera - id: Singularity NE - - uid: 27856 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,14.5 - parent: 5350 - - type: SurveillanceCamera - id: Singularity SE - - uid: 27858 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,29.5 - parent: 5350 - - type: SurveillanceCamera - id: Singularity NW + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment - SE - uid: 27859 components: - type: Transform @@ -152075,58 +154269,31 @@ entities: pos: 59.5,11.5 parent: 5350 - type: SurveillanceCamera - id: South Singularity Airlock + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment Airlock - South - uid: 27861 components: - type: Transform pos: 58.5,28.5 parent: 5350 - type: SurveillanceCamera - id: North Singularity Airlock - - uid: 28447 + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment Airlock - North + - uid: 28227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-9.5 + rot: -1.5707963267948966 rad + pos: 62.5,36.5 parent: 5350 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Atmos Waste Tank South - - uid: 28448 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-5.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Waste Tank North - - uid: 28449 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-13.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Plasma Tank - - uid: 28456 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-17.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Water Vapor Tank + id: Solars - NE - uid: 28465 components: - type: Transform @@ -152138,6 +154305,17 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos TEG Secure Storage + - uid: 28636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,29.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment - NW - proto: SurveillanceCameraGeneral entities: - uid: 4385 @@ -152284,7 +154462,7 @@ entities: setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: Main Loop South 2 + id: Main Loop - South 2 - uid: 22939 components: - type: Transform @@ -152426,16 +154604,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Dorms Hall 1 - - uid: 23207 - components: - - type: Transform - pos: 31.5,48.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Garden - uid: 23208 components: - type: Transform @@ -152502,6 +154670,16 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Arrivals + - uid: 23775 + components: + - type: Transform + pos: 33.5,48.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorms - Garden - uid: 26420 components: - type: Transform @@ -152567,28 +154745,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Main Hall Captain - - uid: 26750 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,0.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Cargo - - uid: 26751 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,1.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Arrivals - uid: 26752 components: - type: Transform @@ -152643,17 +154799,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: East Corridor 2 - - uid: 26796 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,47.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Boxing Ring Escape Pod - uid: 26799 components: - type: Transform @@ -152665,17 +154810,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: North Corridor - - uid: 26800 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,6.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bridge Shop - uid: 27196 components: - type: Transform @@ -152686,7 +154820,40 @@ entities: setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: Main Loop South 1 + id: Main Loop - South 1 + - uid: 28525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,0.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: West Corridor 2 + - uid: 28526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,47.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorms - Escape Pod + - uid: 28527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,0.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: West Corridor 1 - proto: SurveillanceCameraMedical entities: - uid: 16656 @@ -153061,6 +155228,8 @@ entities: - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraScience + nameSet: True + id: Anomaly Lab - uid: 20862 components: - type: Transform @@ -153093,17 +155262,6 @@ entities: - SurveillanceCameraScience nameSet: True id: Servers - - uid: 23145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-29.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Robotics Surgery - uid: 28117 components: - type: Transform @@ -153115,6 +155273,16 @@ entities: - SurveillanceCameraScience nameSet: True id: Central Hall + - uid: 28524 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Robotics - Surgery - proto: SurveillanceCameraSecurity entities: - uid: 6549 @@ -153203,17 +155371,17 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Shuttle Dock - - uid: 11646 + - uid: 14095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,37.5 + rot: 1.5707963267948966 rad + pos: -13.5,63.5 parent: 5350 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Secure Armory + id: Security Exterior 2 - uid: 17398 components: - type: Transform @@ -153225,17 +155393,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Perma Entry - - uid: 21164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,38.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden's Office - uid: 22593 components: - type: Transform @@ -153290,17 +155447,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Storage - - uid: 22612 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,44.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - uid: 22613 components: - type: Transform @@ -153322,7 +155468,7 @@ entities: setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Armory 1 + id: Armory - uid: 22617 components: - type: Transform @@ -153365,17 +155511,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Security External 4 - - uid: 22621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,63.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security External 2 - uid: 23058 components: - type: Transform @@ -153415,6 +155550,27 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Evac Security post + - uid: 28528 + components: + - type: Transform + pos: -9.5,36.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory - Secure + - uid: 28529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,39.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Warden's Office - proto: SurveillanceCameraService entities: - uid: 185 @@ -153521,7 +155677,7 @@ entities: setupAvailableNetworks: - SurveillanceCameraService nameSet: True - id: Secondary Janitorial Closet + id: Janitorial Closet 2 - uid: 20916 components: - type: Transform @@ -153853,31 +156009,11 @@ entities: - type: Transform pos: -18.5,-13.5 parent: 5350 - - uid: 1485 - components: - - type: Transform - pos: -18.5,-12.5 - parent: 5350 - - uid: 1487 - components: - - type: Transform - pos: -18.5,-14.5 - parent: 5350 - uid: 1529 components: - type: Transform pos: -16.5,-14.5 parent: 5350 - - uid: 1530 - components: - - type: Transform - pos: -16.5,-13.5 - parent: 5350 - - uid: 1531 - components: - - type: Transform - pos: -16.5,-12.5 - parent: 5350 - uid: 1702 components: - type: Transform @@ -154194,6 +156330,11 @@ entities: - type: Transform pos: -0.5,44.5 parent: 5350 + - uid: 6645 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 5350 - uid: 6663 components: - type: Transform @@ -154946,6 +157087,11 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,-51.5 parent: 5350 + - uid: 16672 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 5350 - uid: 16678 components: - type: Transform @@ -155075,6 +157221,11 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,-47.5 parent: 5350 + - uid: 19863 + components: + - type: Transform + pos: 76.5,8.5 + parent: 5350 - uid: 20049 components: - type: Transform @@ -155290,6 +157441,11 @@ entities: - type: Transform pos: 53.5,23.5 parent: 5350 + - uid: 23889 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 5350 - uid: 23943 components: - type: Transform @@ -155495,6 +157651,11 @@ entities: - type: Transform pos: 0.5,-42.5 parent: 5350 + - uid: 28638 + components: + - type: Transform + pos: 76.5,7.5 + parent: 5350 - proto: TableCarpet entities: - uid: 693 @@ -156369,6 +158530,12 @@ entities: - type: Transform pos: 37.5,34.5 parent: 5350 + - uid: 688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-43.5 + parent: 5350 - uid: 1003 components: - type: Transform @@ -156657,10 +158824,11 @@ entities: - type: Transform pos: 12.5,27.5 parent: 5350 - - uid: 7765 + - uid: 7797 components: - type: Transform - pos: -3.5,37.5 + rot: -1.5707963267948966 rad + pos: -47.5,-43.5 parent: 5350 - uid: 8418 components: @@ -157233,6 +159401,12 @@ entities: - type: Transform pos: 106.5,-5.5 parent: 5350 + - uid: 27662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-43.5 + parent: 5350 - uid: 28000 components: - type: Transform @@ -157268,6 +159442,24 @@ entities: - type: Transform pos: 54.5,14.5 parent: 5350 + - uid: 28464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-43.5 + parent: 5350 + - uid: 28497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-43.5 + parent: 5350 + - uid: 28533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,37.5 + parent: 5350 - proto: TargetClown entities: - uid: 22356 @@ -157520,36 +159712,78 @@ entities: parent: 5350 - proto: TeslaCoil entities: - - uid: 23612 + - uid: 20051 components: - type: Transform - pos: 71.5,28.5 + anchored: False + rot: -1.5707963267948966 rad + pos: 73.5,30.5 parent: 5350 - - uid: 23613 + - type: Physics + bodyType: Dynamic + - uid: 20706 components: - type: Transform - pos: 70.5,28.5 + anchored: False + rot: -1.5707963267948966 rad + pos: 72.5,30.5 parent: 5350 - - uid: 23614 + - type: Physics + bodyType: Dynamic + - uid: 20742 components: - type: Transform - pos: 69.5,28.5 + anchored: False + rot: -1.5707963267948966 rad + pos: 74.5,30.5 parent: 5350 - - uid: 23615 + - type: Physics + bodyType: Dynamic + - uid: 23284 components: - type: Transform - pos: 71.5,12.5 + anchored: False + rot: -1.5707963267948966 rad + pos: 71.5,30.5 parent: 5350 - - uid: 23616 + - type: Physics + bodyType: Dynamic + - uid: 23378 components: - type: Transform - pos: 70.5,12.5 + anchored: False + rot: 3.141592653589793 rad + pos: 78.5,13.5 parent: 5350 - - uid: 23617 + - type: Physics + bodyType: Dynamic + - uid: 27844 components: - type: Transform - pos: 69.5,12.5 + anchored: False + rot: 3.141592653589793 rad + pos: 78.5,16.5 parent: 5350 + - type: Physics + bodyType: Dynamic + - uid: 27856 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: 78.5,15.5 + parent: 5350 + - type: Physics + bodyType: Dynamic + - uid: 28194 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: 78.5,14.5 + parent: 5350 + - type: Physics + bodyType: Dynamic - proto: TeslaGenerator entities: - uid: 23589 @@ -157560,28 +159794,65 @@ entities: parent: 5350 - proto: TeslaGroundingRod entities: - - uid: 23785 + - uid: 8232 components: - type: Transform - pos: 61.5,12.5 + anchored: False + rot: 1.5707963267948966 rad + pos: 69.5,10.5 parent: 5350 - - uid: 23786 + - type: Physics + bodyType: Dynamic + - uid: 23099 components: - type: Transform - pos: 61.5,13.5 + anchored: False + rot: 1.5707963267948966 rad + pos: 70.5,10.5 parent: 5350 - - uid: 23787 + - type: Physics + bodyType: Dynamic + - uid: 23177 components: - type: Transform - pos: 61.5,14.5 + anchored: False + rot: 1.5707963267948966 rad + pos: 68.5,10.5 parent: 5350 - - uid: 23788 + - type: Physics + bodyType: Dynamic + - uid: 23207 components: - type: Transform - pos: 61.5,15.5 + anchored: False + rot: 1.5707963267948966 rad + pos: 67.5,10.5 parent: 5350 + - type: Physics + bodyType: Dynamic - proto: ThrusterFlatpack entities: + - uid: 17032 + components: + - type: Transform + parent: 17031 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17033 + components: + - type: Transform + parent: 17031 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17038 + components: + - type: Transform + parent: 17031 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 28451 components: - type: Transform @@ -157622,11 +159893,6 @@ entities: - type: Transform pos: 15.5,-31.5 parent: 5350 - - uid: 8575 - components: - - type: Transform - pos: 32.5,47.5 - parent: 5350 - uid: 11178 components: - type: Transform @@ -157742,16 +160008,6 @@ entities: - type: Transform pos: 15.5,-29.5 parent: 5350 - - uid: 23288 - components: - - type: Transform - pos: 30.5,47.5 - parent: 5350 - - uid: 24074 - components: - - type: Transform - pos: 31.5,47.5 - parent: 5350 - uid: 24683 components: - type: Transform @@ -157840,11 +160096,6 @@ entities: parent: 5350 - proto: ToolboxElectricalFilled entities: - - uid: 1520 - components: - - type: Transform - pos: -18.599995,-12.350811 - parent: 5350 - uid: 3592 components: - type: Transform @@ -157855,6 +160106,11 @@ entities: - type: Transform pos: 38.4915,6.594829 parent: 5350 + - uid: 24074 + components: + - type: Transform + pos: -16.571823,-12.293222 + parent: 5350 - uid: 26466 components: - type: Transform @@ -157891,11 +160147,6 @@ entities: parent: 5350 - proto: ToolboxMechanicalFilled entities: - - uid: 1521 - components: - - type: Transform - pos: -18.45937,-12.553936 - parent: 5350 - uid: 3635 components: - type: Transform @@ -157921,6 +160172,11 @@ entities: - type: Transform pos: 26.555069,19.506002 parent: 5350 + - uid: 24244 + components: + - type: Transform + pos: -16.321823,-12.808847 + parent: 5350 - uid: 26465 components: - type: Transform @@ -158467,6 +160723,11 @@ entities: - type: Transform pos: -19.5,6.5 parent: 5350 + - uid: 6514 + components: + - type: Transform + pos: 53.5,5.5 + parent: 5350 - uid: 7936 components: - type: MetaData @@ -158541,13 +160802,6 @@ entities: parent: 5350 - proto: VendingMachineCoffee entities: - - uid: 1376 - components: - - type: MetaData - name: Hot drinks machine - - type: Transform - pos: -18.5,-5.5 - parent: 5350 - uid: 4325 components: - type: Transform @@ -158801,6 +161055,11 @@ entities: - type: Transform pos: -3.5,42.5 parent: 5350 + - uid: 8518 + components: + - type: Transform + pos: 0.5,40.5 + parent: 5350 - proto: VendingMachineSecDrobe entities: - uid: 7515 @@ -158855,20 +161114,13 @@ entities: - type: Transform pos: 53.5,19.5 parent: 5350 - - uid: 28428 + - uid: 23730 components: - type: Transform - pos: 42.5,24.5 + pos: 42.5,22.5 parent: 5350 - proto: VendingMachineTankDispenserEVA entities: - - uid: 1486 - components: - - type: MetaData - name: tank dispenser - - type: Transform - pos: -14.5,-12.5 - parent: 5350 - uid: 9181 components: - type: Transform @@ -158889,20 +161141,25 @@ entities: - type: Transform pos: 49.5,11.5 parent: 5350 - - uid: 16464 + - uid: 23388 components: - type: Transform - pos: 18.5,-60.5 + pos: 18.5,-61.5 + parent: 5350 + - uid: 23816 + components: + - type: Transform + pos: -18.5,-12.5 parent: 5350 - uid: 23828 components: - type: Transform pos: -29.5,-48.5 parent: 5350 - - uid: 24449 + - uid: 23877 components: - type: Transform - pos: -14.5,-14.5 + pos: -18.5,-14.5 parent: 5350 - uid: 26140 components: @@ -159422,6 +161679,12 @@ entities: - type: Transform pos: -8.5,3.5 parent: 5350 + - uid: 504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,21.5 + parent: 5350 - uid: 559 components: - type: Transform @@ -159947,11 +162210,6 @@ entities: - type: Transform pos: 26.5,-60.5 parent: 5350 - - uid: 2149 - components: - - type: Transform - pos: -8.5,35.5 - parent: 5350 - uid: 2525 components: - type: Transform @@ -161372,11 +163630,6 @@ entities: - type: Transform pos: -0.5,27.5 parent: 5350 - - uid: 6490 - components: - - type: Transform - pos: -7.5,35.5 - parent: 5350 - uid: 6491 components: - type: Transform @@ -162012,11 +164265,6 @@ entities: - type: Transform pos: -10.5,42.5 parent: 5350 - - uid: 7722 - components: - - type: Transform - pos: 12.5,49.5 - parent: 5350 - uid: 7726 components: - type: Transform @@ -162222,6 +164470,12 @@ entities: - type: Transform pos: 19.5,27.5 parent: 5350 + - uid: 7958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,35.5 + parent: 5350 - uid: 7965 components: - type: Transform @@ -164692,11 +166946,6 @@ entities: - type: Transform pos: 41.5,22.5 parent: 5350 - - uid: 13886 - components: - - type: Transform - pos: 41.5,21.5 - parent: 5350 - uid: 13887 components: - type: Transform @@ -165657,25 +167906,11 @@ entities: - type: Transform pos: -50.5,-41.5 parent: 5350 - - uid: 16670 - components: - - type: Transform - pos: -44.5,-43.5 - parent: 5350 - uid: 16671 components: - type: Transform - pos: -44.5,-42.5 - parent: 5350 - - uid: 16672 - components: - - type: Transform - pos: -48.5,-42.5 - parent: 5350 - - uid: 16673 - components: - - type: Transform - pos: -49.5,-42.5 + rot: 1.5707963267948966 rad + pos: -41.5,-48.5 parent: 5350 - uid: 16674 components: @@ -165762,6 +167997,11 @@ entities: - type: Transform pos: -38.5,-61.5 parent: 5350 + - uid: 17064 + components: + - type: Transform + pos: 59.5,17.5 + parent: 5350 - uid: 17462 components: - type: Transform @@ -165772,10 +168012,10 @@ entities: - type: Transform pos: -0.5,-37.5 parent: 5350 - - uid: 17666 + - uid: 18015 components: - type: Transform - pos: 2.5,63.5 + pos: 19.5,-63.5 parent: 5350 - uid: 18392 components: @@ -165857,6 +168097,11 @@ entities: - type: Transform pos: -8.5,-10.5 parent: 5350 + - uid: 18689 + components: + - type: Transform + pos: 12.5,49.5 + parent: 5350 - uid: 19063 components: - type: Transform @@ -166107,6 +168352,11 @@ entities: - type: Transform pos: 20.5,-53.5 parent: 5350 + - uid: 19481 + components: + - type: Transform + pos: 2.5,63.5 + parent: 5350 - uid: 19489 components: - type: Transform @@ -166502,6 +168752,48 @@ entities: - type: Transform pos: 39.5,-56.5 parent: 5350 + - uid: 19808 + components: + - type: Transform + pos: 15.5,-65.5 + parent: 5350 + - uid: 19815 + components: + - type: Transform + pos: 15.5,-64.5 + parent: 5350 + - uid: 19816 + components: + - type: Transform + pos: 15.5,-63.5 + parent: 5350 + - uid: 19819 + components: + - type: Transform + pos: 19.5,-65.5 + parent: 5350 + - uid: 19820 + components: + - type: Transform + pos: 19.5,-64.5 + parent: 5350 + - uid: 19825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-62.5 + parent: 5350 + - uid: 19922 + components: + - type: Transform + pos: 59.5,23.5 + parent: 5350 + - uid: 19933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,45.5 + parent: 5350 - uid: 20034 components: - type: Transform @@ -166907,6 +169199,24 @@ entities: - type: Transform pos: 40.5,-43.5 parent: 5350 + - uid: 21681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-44.5 + parent: 5350 + - uid: 21812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-44.5 + parent: 5350 + - uid: 21813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-44.5 + parent: 5350 - uid: 22145 components: - type: Transform @@ -167067,6 +169377,12 @@ entities: - type: Transform pos: 47.5,28.5 parent: 5350 + - uid: 23240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,31.5 + parent: 5350 - uid: 23241 components: - type: Transform @@ -167092,11 +169408,23 @@ entities: - type: Transform pos: 43.5,27.5 parent: 5350 + - uid: 23288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,30.5 + parent: 5350 - uid: 23307 components: - type: Transform pos: 45.5,14.5 parent: 5350 + - uid: 23356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,30.5 + parent: 5350 - uid: 23379 components: - type: Transform @@ -167112,6 +169440,12 @@ entities: - type: Transform pos: 44.5,-29.5 parent: 5350 + - uid: 23534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-45.5 + parent: 5350 - uid: 23590 components: - type: Transform @@ -167122,10 +169456,51 @@ entities: - type: Transform pos: 45.5,20.5 parent: 5350 - - uid: 23719 + - uid: 23616 components: - type: Transform - pos: 78.5,17.5 + pos: 40.5,45.5 + parent: 5350 + - uid: 23617 + components: + - type: Transform + pos: 39.5,45.5 + parent: 5350 + - uid: 23637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-44.5 + parent: 5350 + - uid: 23638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-43.5 + parent: 5350 + - uid: 23639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-44.5 + parent: 5350 + - uid: 23640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-62.5 + parent: 5350 + - uid: 23652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-47.5 + parent: 5350 + - uid: 23731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-48.5 parent: 5350 - uid: 23743 components: @@ -167160,12 +169535,8 @@ entities: - uid: 23749 components: - type: Transform - pos: 78.5,14.5 - parent: 5350 - - uid: 23750 - components: - - type: Transform - pos: 78.5,15.5 + rot: 3.141592653589793 rad + pos: 79.5,20.5 parent: 5350 - uid: 23751 components: @@ -167177,81 +169548,31 @@ entities: - type: Transform pos: 79.5,16.5 parent: 5350 - - uid: 23753 - components: - - type: Transform - pos: 78.5,16.5 - parent: 5350 - - uid: 23754 - components: - - type: Transform - pos: 78.5,18.5 - parent: 5350 - uid: 23755 components: - type: Transform pos: 79.5,25.5 parent: 5350 - - uid: 23756 - components: - - type: Transform - pos: 78.5,20.5 - parent: 5350 - - uid: 23757 - components: - - type: Transform - pos: 78.5,21.5 - parent: 5350 - - uid: 23758 - components: - - type: Transform - pos: 78.5,22.5 - parent: 5350 - uid: 23759 components: - type: Transform pos: 79.5,21.5 parent: 5350 - - uid: 23760 - components: - - type: Transform - pos: 78.5,23.5 - parent: 5350 - uid: 23761 components: - type: Transform pos: 79.5,26.5 parent: 5350 - - uid: 23762 - components: - - type: Transform - pos: 78.5,26.5 - parent: 5350 - - uid: 23763 - components: - - type: Transform - pos: 77.5,26.5 - parent: 5350 - uid: 23765 components: - type: Transform pos: 79.5,28.5 parent: 5350 - - uid: 23766 - components: - - type: Transform - pos: 78.5,28.5 - parent: 5350 - uid: 23767 components: - type: Transform pos: 78.5,29.5 parent: 5350 - - uid: 23768 - components: - - type: Transform - pos: 77.5,29.5 - parent: 5350 - uid: 23769 components: - type: Transform @@ -167267,6 +169588,12 @@ entities: - type: Transform pos: 74.5,31.5 parent: 5350 + - uid: 23773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,13.5 + parent: 5350 - uid: 23821 components: - type: Transform @@ -167317,6 +169644,12 @@ entities: - type: Transform pos: 1.5,-9.5 parent: 5350 + - uid: 24248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-48.5 + parent: 5350 - uid: 24299 components: - type: Transform @@ -168442,6 +170775,12 @@ entities: - type: Transform pos: 68.5,-24.5 parent: 5350 + - uid: 27208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-44.5 + parent: 5350 - uid: 27236 components: - type: Transform @@ -168637,6 +170976,41 @@ entities: - type: Transform pos: 45.5,18.5 parent: 5350 + - uid: 28199 + components: + - type: Transform + pos: 79.5,17.5 + parent: 5350 + - uid: 28202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,23.5 + parent: 5350 + - uid: 28203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,22.5 + parent: 5350 + - uid: 28210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,21.5 + parent: 5350 + - uid: 28219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,30.5 + parent: 5350 + - uid: 28226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,29.5 + parent: 5350 - uid: 28243 components: - type: Transform @@ -168652,6 +171026,18 @@ entities: - type: Transform pos: -0.5,-46.5 parent: 5350 + - uid: 28479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,35.5 + parent: 5350 + - uid: 28523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,49.5 + parent: 5350 - proto: WallSolid entities: - uid: 57 @@ -172414,11 +174800,6 @@ entities: - type: Transform pos: -20.5,42.5 parent: 5350 - - uid: 13159 - components: - - type: Transform - pos: 19.5,-58.5 - parent: 5350 - uid: 13314 components: - type: Transform @@ -174701,11 +177082,6 @@ entities: - type: Transform pos: -37.5,-41.5 parent: 5350 - - uid: 19848 - components: - - type: Transform - pos: 46.5,-84.5 - parent: 5350 - uid: 20024 components: - type: Transform @@ -175171,11 +177547,6 @@ entities: - type: Transform pos: 11.5,-42.5 parent: 5350 - - uid: 20706 - components: - - type: Transform - pos: 0.5,-41.5 - parent: 5350 - uid: 20710 components: - type: Transform @@ -175841,6 +178212,12 @@ entities: - type: Transform pos: 33.5,-1.5 parent: 5350 + - uid: 23732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-58.5 + parent: 5350 - uid: 23998 components: - type: Transform @@ -175991,10 +178368,17 @@ entities: - type: Transform pos: 92.5,6.5 parent: 5350 - - uid: 27833 + - uid: 26794 components: - type: Transform - pos: 1.5,-41.5 + rot: -1.5707963267948966 rad + pos: -44.5,-43.5 + parent: 5350 + - uid: 26842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-42.5 parent: 5350 - uid: 28309 components: @@ -176235,23 +178619,17 @@ entities: parent: 5350 - proto: WallWeaponCapacitorRecharger entities: - - uid: 23091 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,43.5 - parent: 5350 - uid: 24478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,46.5 + rot: 1.5707963267948966 rad + pos: -4.5,43.5 parent: 5350 - uid: 24489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,44.5 + rot: 1.5707963267948966 rad + pos: -14.5,46.5 parent: 5350 - uid: 28124 components: @@ -176259,6 +178637,12 @@ entities: rot: 3.141592653589793 rad pos: 8.5,34.5 parent: 5350 + - uid: 28218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,44.5 + parent: 5350 - uid: 28251 components: - type: Transform @@ -176561,6 +178945,8 @@ entities: entities: - uid: 26378 components: + - type: MetaData + name: Nitrogen Tank - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-27.5 @@ -176569,6 +178955,8 @@ entities: entities: - uid: 26369 components: + - type: MetaData + name: Oxygen Tank - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-27.5 @@ -176587,7 +178975,7 @@ entities: - uid: 11115 components: - type: MetaData - name: Water Tank + name: Water Vapor Tank - type: Transform pos: 66.5,-16.5 parent: 5350 @@ -176705,11 +179093,6 @@ entities: - type: Transform pos: -37.5,-38.5 parent: 5350 - - uid: 21477 - components: - - type: Transform - pos: 14.5,-55.5 - parent: 5350 - uid: 22116 components: - type: Transform @@ -176725,6 +179108,11 @@ entities: - type: Transform pos: -25.5,-19.5 parent: 5350 + - uid: 23395 + components: + - type: Transform + pos: 8.5,-64.5 + parent: 5350 - uid: 28113 components: - type: Transform @@ -176882,45 +179270,35 @@ entities: parent: 5350 - proto: WeaponLaserCarbine entities: - - uid: 23409 + - uid: 28447 components: - type: Transform - pos: -5.437482,36.714935 + pos: -5.40834,37.35076 parent: 5350 - - uid: 26688 + - uid: 28448 components: - type: Transform - pos: -5.425219,36.507988 + pos: -5.40834,37.135483 parent: 5350 - - uid: 27208 + - uid: 28449 components: - type: Transform - pos: -5.425219,36.320488 + pos: -5.401396,37.572983 + parent: 5350 + - uid: 28456 + components: + - type: Transform + pos: -5.4152846,36.704926 parent: 5350 - uid: 28457 components: - type: Transform - pos: -5.438532,36.582253 + pos: -5.4152846,36.482704 parent: 5350 - uid: 28458 components: - type: Transform - pos: -5.431587,36.42253 - parent: 5350 - - uid: 28459 - components: - - type: Transform - pos: -5.4246426,36.241974 - parent: 5350 - - uid: 28460 - components: - - type: Transform - pos: -5.431587,36.644753 - parent: 5350 - - uid: 28461 - components: - - type: Transform - pos: -5.438532,36.48503 + pos: -5.422229,36.92715 parent: 5350 - proto: WeaponLaserCarbinePractice entities: @@ -176966,40 +179344,25 @@ entities: - uid: 28446 components: - type: Transform - parent: 13851 + parent: 22966 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: WeaponShotgunEnforcer - entities: - - uid: 28199 - components: - - type: Transform - pos: -3.460195,37.94028 - parent: 5350 - proto: WeaponShotgunKammerer entities: - - uid: 28201 + - uid: 3634 components: - type: Transform - pos: -5.4668856,37.257988 - parent: 5350 - - uid: 28202 - components: - - type: Transform - pos: -5.4668856,37.414238 - parent: 5350 - - uid: 28203 - components: - - type: Transform - pos: -5.4668856,37.570488 - parent: 5350 + parent: 11588 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponSubMachineGunDrozd entities: - uid: 28207 components: - type: Transform - parent: 22966 + parent: 13851 - type: Physics canCollide: False - type: InsideEntityStorage @@ -177069,21 +179432,11 @@ entities: - type: Transform pos: 55.5,-12.5 parent: 5350 - - uid: 13496 - components: - - type: Transform - pos: 45.5,26.5 - parent: 5350 - uid: 15934 components: - type: Transform pos: -36.5,-38.5 parent: 5350 - - uid: 16636 - components: - - type: Transform - pos: 13.5,-55.5 - parent: 5350 - uid: 22648 components: - type: Transform @@ -177094,6 +179447,11 @@ entities: - type: Transform pos: -5.5,-47.5 parent: 5350 + - uid: 23389 + components: + - type: Transform + pos: 7.5,-64.5 + parent: 5350 - uid: 24130 components: - type: Transform @@ -177114,6 +179472,13 @@ entities: - type: Transform pos: 49.5,-3.5 parent: 5350 +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 23756 + components: + - type: Transform + pos: 44.5,26.5 + parent: 5350 - proto: WetFloorSign entities: - uid: 22726 @@ -177448,6 +179813,17 @@ entities: - DoorStatus: Close - proto: WindoorSecure entities: + - uid: 7206 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 987: + - DoorStatus: Close - uid: 15701 components: - type: Transform @@ -177470,6 +179846,8 @@ entities: entities: - uid: 1876 components: + - type: MetaData + name: Armor Safe - type: Transform rot: 1.5707963267948966 rad pos: -9.5,38.5 @@ -177478,22 +179856,18 @@ entities: autoClose: False - uid: 6962 components: + - type: MetaData + name: Armor Safe - type: Transform rot: 1.5707963267948966 rad pos: -9.5,40.5 parent: 5350 - type: Airlock autoClose: False - - uid: 7538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,39.5 - parent: 5350 - - type: Airlock - autoClose: False - uid: 8868 components: + - type: MetaData + name: Laser Safe - type: Transform rot: -1.5707963267948966 rad pos: -5.5,37.5 @@ -177502,12 +179876,24 @@ entities: autoClose: False - uid: 23027 components: + - type: MetaData + name: Laser Safe - type: Transform rot: -1.5707963267948966 rad pos: -5.5,36.5 parent: 5350 - type: Airlock autoClose: False + - uid: 28459 + components: + - type: MetaData + name: Armor Safe + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,39.5 + parent: 5350 + - type: Airlock + autoClose: False - proto: WindoorSecureAtmosphericsLocked entities: - uid: 5236 @@ -177685,21 +180071,10 @@ entities: pos: -12.5,-4.5 parent: 5350 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 3 - type: DeviceLinkSource linkedPorts: - 10668: - - DoorStatus: Close - - uid: 10668 - components: - - type: Transform - pos: -12.5,-4.5 - parent: 5350 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 987: + 7206: - DoorStatus: Close - proto: WindoorSecureMedicalLocked entities: @@ -177845,6 +180220,11 @@ entities: parent: 5350 - proto: Window entities: + - uid: 1520 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 5350 - uid: 2129 components: - type: Transform @@ -178265,6 +180645,26 @@ entities: - type: Transform pos: -0.5,-56.5 parent: 5350 + - uid: 24050 + components: + - type: Transform + pos: 32.5,47.5 + parent: 5350 + - uid: 24056 + components: + - type: Transform + pos: 30.5,47.5 + parent: 5350 + - uid: 24070 + components: + - type: Transform + pos: 31.5,47.5 + parent: 5350 + - uid: 28402 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 5350 - proto: WindowDirectional entities: - uid: 22260 @@ -182278,7 +184678,7 @@ entities: pos: -28.5,-5.5 parent: 5350 - type: Door - secondsUntilStateChange: -24004.066 + secondsUntilStateChange: -35267.9 state: Opening - uid: 17570 components: @@ -182362,11 +184762,6 @@ entities: - type: Transform pos: 27.49365,-58.477535 parent: 5350 - - uid: 13782 - components: - - type: Transform - pos: -3.540452,38.68336 - parent: 5350 - uid: 18439 components: - type: Transform diff --git a/Resources/Prototypes/Maps/meta.yml b/Resources/Prototypes/Maps/meta.yml index c271bf40ce..1932d6651f 100644 --- a/Resources/Prototypes/Maps/meta.yml +++ b/Resources/Prototypes/Maps/meta.yml @@ -3,6 +3,7 @@ mapName: 'Meta Station' mapPath: /Maps/meta.yml minPlayers: 50 + maxPlayers: 80 stations: Meta: stationProto: StandardNanotrasenStation @@ -16,7 +17,7 @@ emergencyShuttlePath: /Maps/Shuttles/emergency_meta.yml - type: StationJobs availableJobs: - #service + #service (18) Captain: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] Bartender: [ 2, 2 ] @@ -27,37 +28,37 @@ Librarian: [ 1, 1 ] ServiceWorker: [ 2, 2 ] Reporter: [ 2, 2 ] - #engineering + #engineering (11) ChiefEngineer: [ 1, 1 ] AtmosphericTechnician: [ 3, 3 ] - StationEngineer: [ 6, 8 ] - TechnicalAssistant: [ 6, 8 ] - #medical + StationEngineer: [ 5, 7 ] + TechnicalAssistant: [ 4, 4 ] + #medical (11) ChiefMedicalOfficer: [ 1, 1 ] - Chemist: [ 2, 3 ] + Chemist: [ 2, 2 ] MedicalDoctor: [ 4, 6 ] - MedicalIntern: [ 4, 6 ] + MedicalIntern: [ 4, 4 ] Paramedic: [ 1, 2 ] - #science + #science (9) ResearchDirector: [ 1, 1 ] - Scientist: [ 5, 7 ] - ResearchAssistant: [ 3, 6 ] - #security + Scientist: [ 6, 8 ] + ResearchAssistant: [ 4, 4 ] + #security (12) HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] - SecurityOfficer: [ 6, 6 ] + SecurityOfficer: [ 7, 7 ] Detective: [ 1, 1 ] SecurityCadet: [ 4, 4 ] Lawyer: [ 2, 2 ] - #supply + #supply (10) Quartermaster: [ 1, 1 ] SalvageSpecialist: [ 3, 3 ] - CargoTechnician: [ 3, 5 ] - #civilian + CargoTechnician: [ 4, 6 ] + #civilian (3+) Passenger: [ -1, -1 ] Clown: [ 1, 1 ] Mime: [ 1, 1 ] Musician: [ 1, 1 ] - #silicon + #silicon (5) StationAi: [ 1, 1 ] Borg: [ 4, 4 ] From ef238200f57f8f3a57a91a19e0fcb14bf8719440 Mon Sep 17 00:00:00 2001 From: Nox Date: Thu, 30 Jan 2025 23:23:03 -0800 Subject: [PATCH 025/313] Box Armory Restock (#34750) * initial commit * Initial commit * fixed some things * Finished changes --- Resources/Maps/box.yml | 3823 ++++++++++++++++------------- Resources/Prototypes/Maps/box.yml | 7 +- 2 files changed, 2109 insertions(+), 1721 deletions(-) diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index ecb16acba7..7fe2a0b80e 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -152,7 +152,7 @@ entities: version: 6 -1,1: ind: -1,1 - tiles: eQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAADdgAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADUAAAAAAAUAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAABeQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAACUAAAAAAAUAAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA + tiles: eQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAADdgAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADUAAAAAAAUAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAABeQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAACUAAAAAAAUAAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA version: 6 1,1: ind: 1,1 @@ -160,15 +160,15 @@ entities: version: 6 -1,2: ind: -1,2 - tiles: HQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABeQAAAAAAWQAAAAACLAAAAAAALAAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACLAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAdgAAAAABdgAAAAACdgAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAACQAAAAAAHQAAAAADCQAAAAAB + tiles: HQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABeQAAAAAAWQAAAAACLAAAAAAALAAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACLAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAdgAAAAABdgAAAAACdgAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAACQAAAAAAHQAAAAADCQAAAAAB version: 6 0,2: ind: 0,2 - tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAHQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAAACQAAAAADHQAAAAABCQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAHQAAAAAAWQAAAAACWQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAaAAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAAACQAAAAADHQAAAAABCQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 - tiles: WQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAdgAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,1: ind: 2,1 @@ -428,7 +428,7 @@ entities: version: 6 -1,3: ind: -1,3 - tiles: dgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAACQAAAAABHQAAAAACCQAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABdgAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: dgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAACQAAAAABHQAAAAACCQAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABdgAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,3: ind: 1,3 @@ -563,7 +563,6 @@ entities: 280: 10,39 281: 10,40 282: 10,41 - 283: 6,41 284: 8,37 285: 8,38 286: 8,39 @@ -681,12 +680,12 @@ entities: 3448: 1,-60 3449: 9,-64 3450: 9,-63 - 3519: -10,31 3520: -7,31 3547: -10,29 3639: 60,-51 3640: 59,-51 3642: 57,-51 + 6270: -7,32 - node: zIndex: 1 color: '#FFFFFFFF' @@ -764,11 +763,6 @@ entities: 6019: -2,-22 6226: -26,-75 6227: -24,-77 - - node: - color: '#FFFFFFFF' - id: Box - decals: - 3546: -7,32 - node: color: '#FFFFFFFF' id: BoxGreyscale @@ -1205,6 +1199,11 @@ entities: id: BrickTileWhiteCornerSe decals: 2247: -15,-51 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 6283: -13,22 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe @@ -1249,7 +1248,7 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 3529: -15,26 + 6284: -15,22 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw @@ -1284,6 +1283,11 @@ entities: id: BrickTileWhiteInnerSe decals: 1521: -10,8 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSe + decals: + 6279: -13,26 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw @@ -1356,6 +1360,9 @@ entities: 3533: -5,31 3534: -5,32 3535: -5,29 + 6280: -13,25 + 6281: -13,24 + 6282: -13,23 - node: color: '#EFB34196' id: BrickTileWhiteLineE @@ -1563,7 +1570,6 @@ entities: 2081: 0,26 2082: -8,26 2083: -12,26 - 2084: -13,26 2085: 1,26 2086: 2,26 2087: 3,26 @@ -1575,6 +1581,7 @@ entities: 3563: -13,34 3564: -14,34 3565: -16,34 + 6286: -14,22 - node: color: '#EFB34196' id: BrickTileWhiteLineS @@ -1666,6 +1673,9 @@ entities: 3543: -6,30 3544: -6,31 3545: -6,32 + 6276: -15,26 + 6277: -15,25 + 6278: -15,24 - node: color: '#EFB34196' id: BrickTileWhiteLineW @@ -3911,7 +3921,6 @@ entities: 4653: -1,32 4654: -5,30 4655: -6,32 - 4656: -9,32 4657: -5,27 4658: -8,27 4659: -12,26 @@ -4798,7 +4807,6 @@ entities: id: HalfTileOverlayGreyscale180 decals: 18: 9,23 - 25: -14,22 55: 9,30 56: 10,30 57: 11,30 @@ -5057,9 +5065,6 @@ entities: id: HalfTileOverlayGreyscale90 decals: 15: 10,23 - 19: -13,24 - 20: -13,23 - 21: -13,22 35: 19,35 36: 19,36 186: -20,-31 @@ -5354,7 +5359,6 @@ entities: decals: 5: 1,28 6: 6,28 - 22: -15,24 28: 4,23 39: 19,36 40: 18,35 @@ -5665,7 +5669,6 @@ entities: decals: 13: 10,24 16: 8,23 - 24: -15,22 29: 6,24 33: 8,30 184: -20,-30 @@ -5983,8 +5986,6 @@ entities: decals: 12: 8,24 17: 10,23 - 23: -15,22 - 26: -13,22 27: 4,24 47: 11,35 51: 6,33 @@ -6865,6 +6866,7 @@ entities: 1536: -13,6 1663: 51,-17 2317: -73,8 + 6275: 2,36 - node: zIndex: 1 color: '#FFFFFFFF' @@ -6942,6 +6944,8 @@ entities: 2477: 8,-48 3510: -13,-62 3514: 23,18 + 6271: 2,34 + 6272: 2,35 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7103,7 +7107,6 @@ entities: 2093: 4,26 3521: -9,34 3522: -8,34 - 3530: -14,26 3566: -15,34 - node: color: '#EFB34196' @@ -7144,6 +7147,11 @@ entities: 6155: -7,-76 6156: -6,-76 6157: -5,-76 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleW + decals: + 6285: -15,23 - node: color: '#EFB34196' id: WarnLineGreyscaleW @@ -7241,6 +7249,8 @@ entities: 2602: -1,-79 2603: -2,-79 2604: -3,-79 + 6273: 4,36 + 6274: 3,36 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7725,7 +7735,8 @@ entities: -5,0: 0: 39864 -4,0: - 0: 43744 + 0: 35552 + 2: 8192 -4,1: 0: 60942 -5,1: @@ -7806,7 +7817,7 @@ entities: 0: 61423 8,-1: 0: 12320 - 2: 34944 + 3: 34944 -8,-4: 0: 30583 -8,-5: @@ -8014,7 +8025,7 @@ entities: -9,3: 0: 15 1: 9472 - 3: 4608 + 4: 4608 -8,4: 0: 13073 -7,1: @@ -8139,7 +8150,7 @@ entities: 0: 45298 3,-13: 0: 61713 - 3: 204 + 4: 204 4,-12: 0: 65535 4,-11: @@ -8148,7 +8159,7 @@ entities: 0: 53744 4,-13: 0: 64716 - 3: 17 + 4: 17 5,-12: 0: 30583 5,-11: @@ -8159,30 +8170,30 @@ entities: 0: 30583 6,-12: 1: 4369 - 4: 204 - 3: 49152 + 5: 204 + 4: 49152 6,-11: 1: 61713 - 3: 204 + 4: 204 6,-10: 0: 29424 6,-13: 1: 4369 - 4: 49152 - 3: 204 + 5: 49152 + 4: 204 7,-12: - 4: 17 - 3: 4096 + 5: 17 + 4: 4096 1: 17476 7,-11: - 3: 17 + 4: 17 1: 29764 7,-10: 0: 61680 7,-13: - 4: 4096 + 5: 4096 1: 17476 - 3: 17 + 4: 17 8,-12: 0: 7647 8,-11: @@ -8218,7 +8229,7 @@ entities: 1: 8704 8,0: 0: 63523 - 2: 8 + 3: 8 8,1: 0: 61440 8,2: @@ -8238,7 +8249,9 @@ entities: -1,7: 0: 61071 0,8: - 0: 63231 + 0: 26367 + 6: 4096 + 2: 32768 1,4: 0: 61680 1,5: @@ -8248,7 +8261,8 @@ entities: 1,7: 0: 64911 1,8: - 0: 53469 + 0: 49373 + 2: 4096 2,5: 0: 28799 2,6: @@ -8291,19 +8305,22 @@ entities: -3,6: 0: 65358 -3,7: - 0: 56793 + 0: 55769 + 6: 1024 -3,8: 0: 65421 -2,5: 0: 57599 -2,6: - 0: 65358 + 0: 65356 + 6: 2 -2,7: 0: 65533 -2,8: 0: 64991 -1,8: - 0: 57582 + 0: 206 + 6: 57376 4,8: 0: 65535 5,4: @@ -8368,19 +8385,24 @@ entities: -2,12: 0: 65535 -1,9: - 0: 61166 + 0: 61038 + 6: 128 -1,10: 1: 60928 - 3: 192 + 4: 192 -1,11: 1: 14 0: 57344 -1,12: 0: 65518 0,9: - 0: 65535 + 0: 32655 + 6: 16 + 2: 32 + 7: 64 + 8: 32768 0,10: - 3: 240 + 4: 240 1: 65280 0,11: 1: 15 @@ -8388,15 +8410,16 @@ entities: 0,12: 0: 65535 1,9: - 0: 56829 + 0: 52733 + 8: 4096 1,10: 1: 53504 - 3: 8192 + 4: 8192 0: 204 1,11: 1: 19549 0: 4096 - 3: 34 + 4: 34 1,12: 0: 4369 1: 17476 @@ -8464,7 +8487,7 @@ entities: 1: 34952 10,7: 1: 33249 - 3: 3598 + 4: 3598 9,8: 1: 34952 10,3: @@ -8476,10 +8499,10 @@ entities: 11,6: 1: 40844 11,7: - 3: 771 + 4: 771 1: 35064 10,8: - 3: 3598 + 4: 3598 1: 33249 11,5: 0: 34956 @@ -8495,29 +8518,29 @@ entities: 1: 20293 12,7: 1: 33008 - 3: 3598 + 4: 3598 11,8: 1: 35064 - 3: 771 + 4: 771 9,0: - 2: 15 + 3: 15 0: 65296 9,1: 0: 47232 9,2: 0: 48955 9,-1: - 2: 65520 + 3: 65520 0: 1 10,0: - 2: 1 + 3: 1 0: 65292 10,1: 0: 56789 10,2: 0: 64961 10,-1: - 2: 4368 + 3: 4368 0: 57548 11,0: 0: 30543 @@ -8643,7 +8666,7 @@ entities: 0: 65520 -10,4: 1: 3 - 3: 8 + 4: 8 0: 60928 -13,4: 0: 61432 @@ -8654,24 +8677,24 @@ entities: -12,6: 1: 44868 -12,7: - 3: 3855 + 4: 3855 1: 16624 -13,7: 1: 17652 - 3: 257 + 4: 257 -12,8: - 3: 3855 + 4: 3855 1: 16624 -11,5: 0: 4095 -11,6: 1: 18210 -11,7: - 3: 257 + 4: 257 1: 18006 -11,8: 1: 18006 - 3: 257 + 4: 257 -10,5: 0: 61182 -10,6: @@ -8702,19 +8725,19 @@ entities: -14,6: 1: 44953 -14,7: - 3: 3855 + 4: 3855 1: 16624 -14,3: 0: 65535 -14,8: - 3: 3855 + 4: 3855 1: 16624 -13,6: 1: 57600 0: 1092 -13,8: 1: 17652 - 3: 257 + 4: 257 -16,0: 0: 55807 -16,-1: @@ -8950,10 +8973,10 @@ entities: 13,6: 1: 40866 13,7: - 3: 771 + 4: 771 1: 36024 12,8: - 3: 3598 + 4: 3598 1: 33008 14,5: 0: 3 @@ -8962,7 +8985,7 @@ entities: 1: 310 13,8: 1: 36028 - 3: 771 + 4: 771 15,5: 1: 304 16,4: @@ -9001,17 +9024,17 @@ entities: 18,3: 0: 15 1: 3840 - 3: 4096 + 4: 4096 19,0: 1: 61455 19,1: 1: 36608 19,2: 1: 742 - 3: 8192 + 4: 8192 19,3: 1: 226 - 3: 32768 + 4: 32768 20,0: 1: 61715 20,1: @@ -9218,9 +9241,9 @@ entities: 3,-14: 0: 4415 1: 192 - 3: 49152 + 4: 49152 3,-17: - 5: 30576 + 9: 30576 4,-16: 1: 240 0: 61440 @@ -9229,7 +9252,7 @@ entities: 4,-14: 0: 52463 1: 16 - 3: 4096 + 4: 4096 8,-13: 0: 56605 9,-12: @@ -9645,7 +9668,7 @@ entities: 0: 15 16,-20: 1: 16 - 3: 52454 + 4: 52454 15,-20: 1: 44719 16,-19: @@ -9660,60 +9683,60 @@ entities: 0: 234 1: 20480 16,-21: - 3: 16384 + 4: 16384 1: 15 17,-20: 1: 144 - 3: 14178 + 4: 14178 17,-19: - 3: 1 + 4: 1 1: 63744 17,-18: 1: 153 0: 61440 17,-21: 1: 8207 - 3: 16384 + 4: 16384 18,-20: 1: 9910 - 3: 2056 + 4: 2056 18,-19: 1: 13990 - 3: 2056 + 4: 2056 18,-18: 0: 4096 1: 17486 18,-21: 1: 9895 - 3: 2056 + 4: 2056 19,-20: - 3: 3855 + 4: 3855 1: 8432 19,-19: - 3: 3855 + 4: 3855 1: 20720 19,-18: 1: 17487 19,-21: 1: 8432 - 3: 3855 + 4: 3855 20,-20: 1: 8946 - 3: 2056 + 4: 2056 20,-19: 1: 8946 - 3: 2056 + 4: 2056 20,-18: 1: 1839 0: 8192 20,-21: 1: 8946 - 3: 2056 + 4: 2056 21,-20: - 3: 3855 + 4: 3855 1: 8432 21,-19: - 3: 3855 + 4: 3855 1: 20720 21,-18: 1: 21855 @@ -9721,7 +9744,7 @@ entities: 1: 5621 21,-21: 1: 8432 - 3: 3855 + 4: 3855 22,-20: 1: 8995 22,-19: @@ -9750,7 +9773,7 @@ entities: 13,-18: 1: 17476 14,-20: - 3: 16 + 4: 16 14,-19: 1: 241 15,-21: @@ -9787,7 +9810,7 @@ entities: 0: 65535 4,-21: 0: 65348 - 3: 1 + 4: 1 3,-20: 0: 65535 4,-19: @@ -9801,7 +9824,7 @@ entities: 0: 255 1: 49152 4,-17: - 6: 30576 + 10: 30576 5,-20: 0: 65535 5,-19: @@ -9813,7 +9836,7 @@ entities: 0: 30576 5,-21: 0: 65280 - 3: 15 + 4: 15 6,-20: 0: 30583 6,-19: @@ -9845,15 +9868,15 @@ entities: 0: 30583 6,-15: 1: 4592 - 3: 49152 + 4: 49152 6,-14: 1: 4369 - 3: 49356 + 4: 49356 7,-15: 1: 17520 - 3: 4096 + 4: 4096 7,-14: - 3: 4113 + 4: 4113 1: 17476 -4,-20: 0: 61440 @@ -9869,28 +9892,28 @@ entities: 0: 57297 -3,-20: 0: 28672 - 3: 76 + 4: 76 -3,-19: 0: 30711 -3,-18: 0: 65520 -3,-21: - 3: 52428 + 4: 52428 1: 4353 -2,-20: - 3: 15 + 4: 15 0: 3840 -2,-19: 0: 65535 -2,-18: 0: 65535 -2,-21: - 3: 61696 + 4: 61696 1: 248 -1,-18: 0: 65534 -1,-21: - 3: 61440 + 4: 61440 1: 2296 -1,-20: 0: 61152 @@ -9898,7 +9921,7 @@ entities: 0: 36590 0,-20: 0: 15152 - 3: 8 + 4: 8 0,-19: 0: 35771 0,-18: @@ -9935,26 +9958,26 @@ entities: 1: 34824 -12,-16: 1: 20292 - 3: 10 + 4: 10 -13,-16: 1: 20292 - 3: 10 + 4: 10 -12,-15: 1: 17732 - 3: 43690 + 4: 43690 -13,-15: - 3: 43690 + 4: 43690 1: 17732 -12,-14: 1: 49060 - 3: 10 + 4: 10 -13,-14: 1: 65444 - 3: 10 + 4: 10 -12,-13: 1: 62 -12,-17: - 3: 43690 + 4: 43690 1: 17732 -11,-16: 1: 8994 @@ -9979,7 +10002,7 @@ entities: -13,-18: 1: 44800 -13,-17: - 3: 43690 + 4: 43690 1: 17732 -11,-18: 1: 8960 @@ -9988,10 +10011,10 @@ entities: -9,-18: 1: 1811 0,-21: - 3: 61440 + 4: 61440 1: 248 1,-20: - 3: 7 + 4: 7 0: 1792 1,-19: 0: 65535 @@ -10000,7 +10023,7 @@ entities: 1,-17: 0: 4095 1,-21: - 3: 64648 + 4: 64648 1: 112 2,-20: 0: 43962 @@ -10009,17 +10032,17 @@ entities: 2,-18: 0: 46011 2,-21: - 3: 13107 + 4: 13107 0: 34816 1: 8 3,-21: 0: 65280 - 3: 14 + 4: 14 0,-24: - 3: 64512 + 4: 64512 1: 136 -1,-24: - 3: 61696 + 4: 61696 1: 136 0,-23: 1: 35064 @@ -10028,32 +10051,32 @@ entities: 0,-22: 1: 35064 -1,-22: - 3: 128 + 4: 128 1: 34936 0,-25: 1: 36744 1,-24: - 3: 62208 + 4: 62208 1: 136 1,-23: 1: 112 - 3: 34956 + 4: 34956 1,-22: 1: 112 - 3: 34952 + 4: 34952 1,-25: 1: 36736 2,-23: - 3: 13073 + 4: 13073 1: 52224 2,-22: - 3: 4369 + 4: 4369 1: 36044 3,-23: 1: 61440 3,-22: 1: 15 - 3: 60928 + 4: 60928 3,-24: 1: 35939 3,-25: @@ -10064,7 +10087,7 @@ entities: 1: 64739 4,-22: 1: 15 - 3: 4352 + 4: 4352 0: 58368 -4,-24: 1: 310 @@ -10081,25 +10104,25 @@ entities: 0: 4 -4,-21: 1: 65295 - 3: 112 + 4: 112 -4,-25: 1: 51200 -3,-23: 1: 4352 - 3: 52462 + 4: 52462 -3,-22: 1: 4112 - 3: 61132 + 4: 61132 -3,-24: - 3: 32768 + 4: 32768 1: 136 -3,-25: 1: 36342 -2,-24: - 3: 63232 + 4: 63232 1: 136 -2,-23: - 3: 1 + 4: 1 1: 35064 -2,-22: 1: 35064 @@ -10111,7 +10134,7 @@ entities: 1: 61459 5,-22: 1: 15 - 3: 65280 + 4: 65280 5,-24: 1: 62432 6,-24: @@ -10148,24 +10171,24 @@ entities: 0: 2184 -15,-16: 1: 23391 - 3: 1024 + 4: 1024 -15,-15: 1: 34959 -15,-17: 1: 34952 -14,-16: 1: 20292 - 3: 10 + 4: 10 -14,-15: 1: 21588 - 3: 43690 + 4: 43690 -15,-14: 1: 2184 -14,-14: 1: 36772 - 3: 10 + 4: 10 -14,-17: - 3: 43690 + 4: 43690 1: 21588 -15,-18: 1: 34816 @@ -10176,23 +10199,23 @@ entities: -15,10: 1: 12 -14,9: - 3: 3855 + 4: 3855 1: 41200 -14,10: 1: 15 -13,9: - 3: 257 + 4: 257 1: 17652 -13,10: 1: 62901 - 3: 64 + 4: 64 -12,9: 1: 41200 - 3: 3855 + 4: 3855 -12,10: 1: 4383 -11,9: - 3: 257 + 4: 257 1: 18006 -11,10: 1: 7 @@ -10210,7 +10233,8 @@ entities: -3,14: 1: 3855 -2,13: - 0: 15 + 11: 1 + 0: 14 1: 11776 -2,14: 1: 1831 @@ -10218,24 +10242,24 @@ entities: 1: 34952 10,9: 1: 16865 - 3: 3598 + 4: 3598 9,10: 1: 8 10,10: 1: 15 11,9: - 3: 771 + 4: 771 1: 39160 11,10: 1: 60011 - 3: 128 + 4: 128 12,9: 1: 16624 - 3: 3598 + 4: 3598 12,10: 1: 12862 13,9: - 3: 771 + 4: 771 1: 40124 13,10: 1: 15 @@ -10253,7 +10277,7 @@ entities: 1: 32768 20,-22: 1: 10970 - 3: 32 + 4: 32 19,-22: 1: 24456 21,-22: @@ -10308,6 +10332,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 235 moles: @@ -10353,6 +10392,51 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14923 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 19.950384 + - 75.051445 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -10383,6 +10467,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 24.680622 + - 92.84615 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: Joint joints: @@ -10392,8 +10491,8 @@ entities: id: docking46345 localAnchorB: -0.5,-1 localAnchorA: -66.5,22 - damping: 42.40074 - stiffness: 380.58823 + damping: 42.400753 + stiffness: 380.5883 - type: OccluderTree - type: Shuttle - type: RadiationGridResistance @@ -11702,7 +11801,6 @@ entities: - 7393 - 7390 - 7146 - - 9262 - 11605 - 11600 - 23935 @@ -11712,6 +11810,7 @@ entities: - 25420 - 25422 - 25421 + - 9291 - uid: 23899 components: - type: MetaData @@ -11731,7 +11830,6 @@ entities: parent: 8364 - type: DeviceList devices: - - 9262 - 11605 - 11600 - 11377 @@ -12411,6 +12509,18 @@ entities: - type: Transform pos: 5.5,31.5 parent: 8364 + - uid: 28244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,34.5 + parent: 8364 + - uid: 28245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,34.5 + parent: 8364 - proto: AirlockAtmosphericsGlassLocked entities: - uid: 18739 @@ -12484,6 +12594,16 @@ entities: parent: 8364 - proto: AirlockBrigGlassLocked entities: + - uid: 389 + components: + - type: Transform + pos: -8.5,28.5 + parent: 8364 + - uid: 3813 + components: + - type: Transform + pos: -7.5,28.5 + parent: 8364 - uid: 8544 components: - type: Transform @@ -12671,6 +12791,15 @@ entities: - type: Transform pos: 38.5,-39.5 parent: 8364 +- proto: AirlockCommandGlass + entities: + - uid: 4214 + components: + - type: MetaData + name: EVA + - type: Transform + pos: -11.5,5.5 + parent: 8364 - proto: AirlockCommandGlassLocked entities: - uid: 5514 @@ -13703,7 +13832,7 @@ entities: pos: 24.5,16.5 parent: 8364 - type: Door - secondsUntilStateChange: -78641.14 + secondsUntilStateChange: -88221.33 state: Opening - type: DeviceLinkSource lastSignals: @@ -14093,15 +14222,6 @@ entities: DockStatus: True - type: Physics canCollide: False -- proto: AirlockHeadOfPersonnelGlassLocked - entities: - - uid: 12024 - components: - - type: MetaData - name: EVA Gear - - type: Transform - pos: -11.5,5.5 - parent: 8364 - proto: AirlockHeadOfPersonnelLocked entities: - uid: 5647 @@ -14830,11 +14950,6 @@ entities: - type: Transform pos: 42.5,-45.5 parent: 8364 - - uid: 12033 - components: - - type: Transform - pos: -13.5,4.5 - parent: 8364 - uid: 15102 components: - type: Transform @@ -15026,11 +15141,6 @@ entities: - type: Transform pos: 56.5,-19.5 parent: 8364 - - uid: 11980 - components: - - type: Transform - pos: -13.5,1.5 - parent: 8364 - uid: 20191 components: - type: MetaData @@ -15175,18 +15285,6 @@ entities: - type: Transform pos: 8.5,34.5 parent: 8364 - - uid: 8589 - components: - - type: Transform - pos: -8.5,28.5 - parent: 8364 - - uid: 8642 - components: - - type: MetaData - name: Evidence Storage - - type: Transform - pos: -13.5,25.5 - parent: 8364 - uid: 8643 components: - type: MetaData @@ -15215,11 +15313,6 @@ entities: - type: Transform pos: -4.5,34.5 parent: 8364 - - uid: 9380 - components: - - type: Transform - pos: -7.5,28.5 - parent: 8364 - uid: 9382 components: - type: Transform @@ -15275,6 +15368,20 @@ entities: - type: Transform pos: -23.5,-30.5 parent: 8364 + - uid: 26257 + components: + - type: MetaData + name: Holding Cell + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,25.5 + parent: 8364 + - type: Door + secondsUntilStateChange: -1477.8262 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True - proto: AirlockSecurityLocked entities: - uid: 971 @@ -15962,6 +16069,9 @@ entities: - type: Transform pos: -8.5,20.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 7797 - uid: 23944 components: - type: Transform @@ -16539,6 +16649,8 @@ entities: parent: 8364 - uid: 8620 components: + - type: MetaData + name: Interrigation APC - type: Transform rot: 1.5707963267948966 rad pos: -16.5,30.5 @@ -16551,16 +16663,12 @@ entities: parent: 8364 - uid: 8622 components: + - type: MetaData + name: HOS Office APC - type: Transform rot: 1.5707963267948966 rad pos: 11.5,39.5 parent: 8364 - - uid: 8623 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,38.5 - parent: 8364 - uid: 8634 components: - type: Transform @@ -16581,15 +16689,6 @@ entities: currentReceiving: 120.00047 currentSupply: 120 supplyRampPosition: -0.00047302246 - - uid: 8822 - components: - - type: MetaData - name: Brig Control APC - - type: Transform - pos: -1.5,34.5 - parent: 8364 - - type: Battery - startingCharge: 12000 - uid: 8944 components: - type: Transform @@ -16685,6 +16784,13 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-18.5 parent: 8364 + - uid: 11965 + components: + - type: MetaData + name: Warden's Office APC + - type: Transform + pos: 3.5,34.5 + parent: 8364 - uid: 12020 components: - type: MetaData @@ -16815,6 +16921,14 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 25 supplyRampPosition: 9.488577 + - uid: 15128 + components: + - type: MetaData + name: Security Lockers APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,36.5 + parent: 8364 - uid: 15812 components: - type: MetaData @@ -18035,11 +18149,6 @@ entities: - type: Transform pos: 44.5,36.5 parent: 8364 - - uid: 4481 - components: - - type: Transform - pos: -0.5,41.5 - parent: 8364 - uid: 4482 components: - type: Transform @@ -18185,21 +18294,11 @@ entities: - type: Transform pos: 41.5,36.5 parent: 8364 - - uid: 4645 - components: - - type: Transform - pos: 1.5,41.5 - parent: 8364 - uid: 4648 components: - type: Transform pos: -47.5,34.5 parent: 8364 - - uid: 4650 - components: - - type: Transform - pos: -1.5,41.5 - parent: 8364 - uid: 4652 components: - type: Transform @@ -18335,11 +18434,6 @@ entities: - type: Transform pos: -43.5,34.5 parent: 8364 - - uid: 6419 - components: - - type: Transform - pos: 5.5,45.5 - parent: 8364 - uid: 6596 components: - type: Transform @@ -18570,21 +18664,6 @@ entities: - type: Transform pos: -48.5,-55.5 parent: 8364 - - uid: 22451 - components: - - type: Transform - pos: 3.5,41.5 - parent: 8364 - - uid: 22452 - components: - - type: Transform - pos: 5.5,43.5 - parent: 8364 - - uid: 22453 - components: - - type: Transform - pos: 5.5,44.5 - parent: 8364 - uid: 22454 components: - type: Transform @@ -18705,11 +18784,6 @@ entities: - type: Transform pos: -46.5,-56.5 parent: 8364 - - uid: 23135 - components: - - type: Transform - pos: 0.5,41.5 - parent: 8364 - uid: 23139 components: - type: Transform @@ -18750,11 +18824,6 @@ entities: - type: Transform pos: 84.5,-75.5 parent: 8364 - - uid: 23537 - components: - - type: Transform - pos: 2.5,41.5 - parent: 8364 - uid: 23538 components: - type: Transform @@ -20384,26 +20453,6 @@ entities: - type: Transform pos: 44.5,-58.5 parent: 8364 - - uid: 8630 - components: - - type: Transform - pos: -10.5,23.5 - parent: 8364 - - uid: 8631 - components: - - type: Transform - pos: -6.5,23.5 - parent: 8364 - - uid: 8632 - components: - - type: Transform - pos: -2.5,23.5 - parent: 8364 - - uid: 9361 - components: - - type: Transform - pos: -6.5,31.5 - parent: 8364 - uid: 10570 components: - type: Transform @@ -20439,16 +20488,16 @@ entities: - type: Transform pos: 71.5,-35.5 parent: 8364 - - uid: 21244 - components: - - type: Transform - pos: 15.5,41.5 - parent: 8364 - uid: 21743 components: - type: Transform pos: -30.5,-74.5 parent: 8364 + - uid: 21784 + components: + - type: Transform + pos: 16.5,41.5 + parent: 8364 - uid: 26349 components: - type: Transform @@ -20469,6 +20518,21 @@ entities: - type: Transform pos: -20.5,48.5 parent: 8364 + - uid: 26546 + components: + - type: Transform + pos: -0.5,23.5 + parent: 8364 + - uid: 26603 + components: + - type: Transform + pos: -4.5,23.5 + parent: 8364 + - uid: 27489 + components: + - type: Transform + pos: -8.5,23.5 + parent: 8364 - proto: BedsheetCaptain entities: - uid: 5315 @@ -20517,10 +20581,10 @@ entities: parent: 8364 - proto: BedsheetHOS entities: - - uid: 21245 + - uid: 9287 components: - type: Transform - pos: 15.5,41.5 + pos: 16.5,41.5 parent: 8364 - proto: BedsheetMedical entities: @@ -20534,6 +20598,11 @@ entities: - type: Transform pos: 30.5,-27.5 parent: 8364 + - uid: 9245 + components: + - type: Transform + pos: -6.5,32.5 + parent: 8364 - uid: 9485 components: - type: Transform @@ -20569,6 +20638,12 @@ entities: parent: 8364 - proto: BedsheetOrange entities: + - uid: 7716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,23.5 + parent: 8364 - uid: 26353 components: - type: Transform @@ -20584,6 +20659,18 @@ entities: - type: Transform pos: -21.5,40.5 parent: 8364 + - uid: 28249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,23.5 + parent: 8364 + - uid: 28252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,23.5 + parent: 8364 - proto: BedsheetQM entities: - uid: 5287 @@ -20652,23 +20739,6 @@ entities: - type: Transform pos: -17.5,48.5 parent: 8364 -- proto: BedsheetWhite - entities: - - uid: 8627 - components: - - type: Transform - pos: -10.5,23.5 - parent: 8364 - - uid: 8628 - components: - - type: Transform - pos: -6.5,23.5 - parent: 8364 - - uid: 8629 - components: - - type: Transform - pos: -2.5,23.5 - parent: 8364 - proto: BigBox entities: - uid: 2277 @@ -20776,7 +20846,7 @@ entities: - type: Transform pos: 5.5,-76.5 parent: 8364 - - uid: 9182 + - uid: 6419 components: - type: Transform pos: 5.5,36.5 @@ -21250,20 +21320,6 @@ entities: parent: 8364 - type: BallisticAmmoProvider unspawnedCount: 12 - - uid: 9381 - components: - - type: Transform - pos: -0.63110375,35.29573 - parent: 8364 - - type: BallisticAmmoProvider - unspawnedCount: 12 - - uid: 9384 - components: - - type: Transform - pos: -0.28735375,35.29573 - parent: 8364 - - type: BallisticAmmoProvider - unspawnedCount: 12 - proto: BoxBodyBag entities: - uid: 2276 @@ -21306,15 +21362,10 @@ entities: parent: 8364 - proto: BoxFlashbang entities: - - uid: 9345 - components: - - type: Transform - pos: 0.32543182,35.35921 - parent: 8364 - uid: 9388 components: - type: Transform - pos: -2.3561149,38.959312 + pos: -2.28955,39.38977 parent: 8364 - uid: 9589 components: @@ -21406,26 +21457,43 @@ entities: - type: Transform pos: -11.686346,32.74469 parent: 8364 - - uid: 9172 + - uid: 9384 components: - type: Transform - pos: -14.5,22.5 - parent: 8364 - - uid: 9173 - components: - - type: Transform - pos: -14.5,22.5 - parent: 8364 - - uid: 9174 - components: - - type: Transform - pos: -14.5,22.5 - parent: 8364 - - uid: 9230 - components: - - type: Transform - pos: -1.4970741,30.587648 + pos: -1.2688226,30.437838 parent: 8364 + - type: Storage + storedItems: + 9390: + position: 0,0 + _rotation: South + 9453: + position: 1,0 + _rotation: South + 9454: + position: 2,0 + _rotation: South + 9507: + position: 3,0 + _rotation: South + 9515: + position: 4,0 + _rotation: South + 9516: + position: 0,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 9390 + - 9453 + - 9454 + - 9507 + - 9515 + - 9516 - uid: 9404 components: - type: Transform @@ -21533,15 +21601,10 @@ entities: - type: Transform pos: 15.418736,30.571737 parent: 8364 - - uid: 9346 - components: - - type: Transform - pos: 0.7629318,35.499836 - parent: 8364 - uid: 9389 components: - type: Transform - pos: -2.7208788,39.167786 + pos: -2.648925,39.67102 parent: 8364 - proto: BoxingBell entities: @@ -21565,13 +21628,26 @@ entities: parent: 8364 - proto: BoxLethalshot entities: - - uid: 8929 + - uid: 4645 components: - type: Transform - pos: -0.3215518,35.63938 + pos: -1.2980705,35.389374 + parent: 8364 + - uid: 8641 + components: + - type: Transform + pos: -1.6730705,35.712288 + parent: 8364 + - uid: 9229 + components: + - type: Transform + pos: -1.7147372,35.399788 + parent: 8364 + - uid: 9233 + components: + - type: Transform + pos: -1.2668205,35.701874 parent: 8364 - - type: BallisticAmmoProvider - unspawnedCount: 12 - proto: BoxLightbulb entities: - uid: 1999 @@ -21636,15 +21712,6 @@ entities: - type: Transform pos: -11.614725,-21.270159 parent: 8364 -- proto: BoxShotgunIncendiary - entities: - - uid: 9178 - components: - - type: Transform - pos: -0.6496768,35.60813 - parent: 8364 - - type: BallisticAmmoProvider - unspawnedCount: 12 - proto: BoxSterileMask entities: - uid: 5467 @@ -21662,7 +21729,7 @@ entities: - uid: 7928 components: - type: Transform - pos: -6.5023327,30.526033 + pos: -6.6457787,30.567604 parent: 8364 - uid: 19263 components: @@ -21737,6 +21804,7 @@ entities: linkedPorts: 8624: - Start: Close + - Timer: AutoClose - Timer: Open - uid: 25829 components: @@ -21747,6 +21815,7 @@ entities: linkedPorts: 8625: - Start: Close + - Timer: AutoClose - Timer: Open - uid: 26575 components: @@ -21757,6 +21826,7 @@ entities: linkedPorts: 8626: - Start: Close + - Timer: AutoClose - Timer: Open - proto: Bucket entities: @@ -21838,6 +21908,26 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-82.5 parent: 8364 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 7677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,23.5 + parent: 8364 + - uid: 7779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.4761214,38.22741 + parent: 8364 + - uid: 25742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.469177,38.803795 + parent: 8364 - proto: ButtonFrameExit entities: - uid: 3810 @@ -21845,6 +21935,24 @@ entities: - type: Transform pos: 24.5,-21.5 parent: 8364 +- proto: ButtonFrameGrey + entities: + - uid: 7721 + components: + - type: Transform + pos: 8.5,42.5 + parent: 8364 + - uid: 8989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,40.5 + parent: 8364 + - uid: 22452 + components: + - type: Transform + pos: 13.5,29.5 + parent: 8364 - proto: CableApcExtension entities: - uid: 49 @@ -24347,6 +24455,16 @@ entities: - type: Transform pos: 18.5,13.5 parent: 8364 + - uid: 7661 + components: + - type: Transform + pos: 10.5,36.5 + parent: 8364 + - uid: 7733 + components: + - type: Transform + pos: 2.5,37.5 + parent: 8364 - uid: 7743 components: - type: Transform @@ -24432,6 +24550,16 @@ entities: - type: Transform pos: 15.5,28.5 parent: 8364 + - uid: 8546 + components: + - type: Transform + pos: 4.5,37.5 + parent: 8364 + - uid: 8547 + components: + - type: Transform + pos: 3.5,33.5 + parent: 8364 - uid: 8557 components: - type: Transform @@ -24492,6 +24620,26 @@ entities: - type: Transform pos: 17.5,20.5 parent: 8364 + - uid: 8589 + components: + - type: Transform + pos: 3.5,32.5 + parent: 8364 + - uid: 8590 + components: + - type: Transform + pos: -0.5,37.5 + parent: 8364 + - uid: 8623 + components: + - type: Transform + pos: -2.5,37.5 + parent: 8364 + - uid: 8630 + components: + - type: Transform + pos: -15.5,52.5 + parent: 8364 - uid: 8636 components: - type: Transform @@ -24842,6 +24990,11 @@ entities: - type: Transform pos: -8.5,22.5 parent: 8364 + - uid: 8751 + components: + - type: Transform + pos: 1.5,37.5 + parent: 8364 - uid: 8762 components: - type: Transform @@ -25167,50 +25320,15 @@ entities: - type: Transform pos: -20.5,23.5 parent: 8364 - - uid: 9283 + - uid: 9268 components: - type: Transform - pos: 4.5,38.5 - parent: 8364 - - uid: 9284 - components: - - type: Transform - pos: 5.5,38.5 - parent: 8364 - - uid: 9285 - components: - - type: Transform - pos: 6.5,38.5 - parent: 8364 - - uid: 9286 - components: - - type: Transform - pos: 3.5,38.5 - parent: 8364 - - uid: 9287 - components: - - type: Transform - pos: 2.5,38.5 + pos: 3.5,34.5 parent: 8364 - uid: 9288 components: - type: Transform - pos: 1.5,38.5 - parent: 8364 - - uid: 9289 - components: - - type: Transform - pos: 0.5,38.5 - parent: 8364 - - uid: 9290 - components: - - type: Transform - pos: -0.5,38.5 - parent: 8364 - - uid: 9291 - components: - - type: Transform - pos: -1.5,38.5 + pos: -3.5,33.5 parent: 8364 - uid: 9292 components: @@ -25227,11 +25345,6 @@ entities: - type: Transform pos: 0.5,37.5 parent: 8364 - - uid: 9295 - components: - - type: Transform - pos: 7.5,38.5 - parent: 8364 - uid: 9296 components: - type: Transform @@ -25382,16 +25495,6 @@ entities: - type: Transform pos: 19.5,35.5 parent: 8364 - - uid: 9334 - components: - - type: Transform - pos: -1.5,34.5 - parent: 8364 - - uid: 9335 - components: - - type: Transform - pos: -1.5,33.5 - parent: 8364 - uid: 9336 components: - type: Transform @@ -26197,51 +26300,6 @@ entities: - type: Transform pos: 8.5,41.5 parent: 8364 - - uid: 10056 - components: - - type: Transform - pos: 7.5,41.5 - parent: 8364 - - uid: 10057 - components: - - type: Transform - pos: 7.5,42.5 - parent: 8364 - - uid: 10058 - components: - - type: Transform - pos: 9.5,41.5 - parent: 8364 - - uid: 10059 - components: - - type: Transform - pos: 9.5,42.5 - parent: 8364 - - uid: 10060 - components: - - type: Transform - pos: 3.5,36.5 - parent: 8364 - - uid: 10061 - components: - - type: Transform - pos: 3.5,35.5 - parent: 8364 - - uid: 10062 - components: - - type: Transform - pos: 3.5,34.5 - parent: 8364 - - uid: 10063 - components: - - type: Transform - pos: 0.5,36.5 - parent: 8364 - - uid: 10064 - components: - - type: Transform - pos: 0.5,35.5 - parent: 8364 - uid: 10065 components: - type: Transform @@ -26342,16 +26400,6 @@ entities: - type: Transform pos: 3.5,22.5 parent: 8364 - - uid: 10086 - components: - - type: Transform - pos: 8.5,25.5 - parent: 8364 - - uid: 10087 - components: - - type: Transform - pos: 10.5,25.5 - parent: 8364 - uid: 10088 components: - type: Transform @@ -42952,26 +43000,6 @@ entities: - type: Transform pos: -11.5,49.5 parent: 8364 - - uid: 25742 - components: - - type: Transform - pos: -11.5,50.5 - parent: 8364 - - uid: 25743 - components: - - type: Transform - pos: -11.5,51.5 - parent: 8364 - - uid: 25744 - components: - - type: Transform - pos: -11.5,52.5 - parent: 8364 - - uid: 25747 - components: - - type: Transform - pos: -11.5,53.5 - parent: 8364 - uid: 25995 components: - type: Transform @@ -42992,11 +43020,6 @@ entities: - type: Transform pos: 9.5,-75.5 parent: 8364 - - uid: 26136 - components: - - type: Transform - pos: -15.5,51.5 - parent: 8364 - uid: 26137 components: - type: Transform @@ -51218,6 +51241,11 @@ entities: - type: Transform pos: -7.5,-61.5 parent: 8364 + - uid: 3898 + components: + - type: Transform + pos: 0.5,40.5 + parent: 8364 - uid: 4030 components: - type: Transform @@ -51298,6 +51326,11 @@ entities: - type: Transform pos: -22.5,-72.5 parent: 8364 + - uid: 5288 + components: + - type: Transform + pos: 1.5,41.5 + parent: 8364 - uid: 5313 components: - type: Transform @@ -52333,6 +52366,11 @@ entities: - type: Transform pos: 26.5,1.5 parent: 8364 + - uid: 7340 + components: + - type: Transform + pos: 10.5,36.5 + parent: 8364 - uid: 7380 components: - type: Transform @@ -52358,6 +52396,11 @@ entities: - type: Transform pos: 17.5,30.5 parent: 8364 + - uid: 7735 + components: + - type: Transform + pos: 1.5,35.5 + parent: 8364 - uid: 7786 components: - type: Transform @@ -52403,6 +52446,11 @@ entities: - type: Transform pos: 11.5,27.5 parent: 8364 + - uid: 8470 + components: + - type: Transform + pos: -15.5,51.5 + parent: 8364 - uid: 8485 components: - type: Transform @@ -52473,6 +52521,61 @@ entities: - type: Transform pos: 12.5,27.5 parent: 8364 + - uid: 8553 + components: + - type: Transform + pos: -15.5,52.5 + parent: 8364 + - uid: 8554 + components: + - type: Transform + pos: -15.5,53.5 + parent: 8364 + - uid: 8555 + components: + - type: Transform + pos: -15.5,54.5 + parent: 8364 + - uid: 8569 + components: + - type: Transform + pos: -11.5,50.5 + parent: 8364 + - uid: 8592 + components: + - type: Transform + pos: 3.5,34.5 + parent: 8364 + - uid: 8597 + components: + - type: Transform + pos: -14.5,54.5 + parent: 8364 + - uid: 8606 + components: + - type: Transform + pos: -12.5,54.5 + parent: 8364 + - uid: 8607 + components: + - type: Transform + pos: -11.5,53.5 + parent: 8364 + - uid: 8610 + components: + - type: Transform + pos: -11.5,54.5 + parent: 8364 + - uid: 8615 + components: + - type: Transform + pos: -11.5,51.5 + parent: 8364 + - uid: 8632 + components: + - type: Transform + pos: 9.5,42.5 + parent: 8364 - uid: 8640 components: - type: Transform @@ -52553,20 +52656,25 @@ entities: - type: Transform pos: -4.5,28.5 parent: 8364 + - uid: 8750 + components: + - type: Transform + pos: 9.5,41.5 + parent: 8364 + - uid: 8822 + components: + - type: Transform + pos: 1.5,36.5 + parent: 8364 - uid: 8823 components: - type: Transform - pos: 7.5,38.5 + pos: 1.5,38.5 parent: 8364 - uid: 8824 components: - type: Transform - pos: 6.5,38.5 - parent: 8364 - - uid: 8825 - components: - - type: Transform - pos: 5.5,38.5 + pos: 1.5,39.5 parent: 8364 - uid: 8826 components: @@ -52723,11 +52831,6 @@ entities: - type: Transform pos: -4.5,34.5 parent: 8364 - - uid: 8858 - components: - - type: Transform - pos: -5.5,34.5 - parent: 8364 - uid: 8859 components: - type: Transform @@ -52828,6 +52931,21 @@ entities: - type: Transform pos: -19.5,22.5 parent: 8364 + - uid: 8929 + components: + - type: Transform + pos: 0.5,34.5 + parent: 8364 + - uid: 9004 + components: + - type: Transform + pos: -0.5,34.5 + parent: 8364 + - uid: 9046 + components: + - type: Transform + pos: -16.5,39.5 + parent: 8364 - uid: 9143 components: - type: Transform @@ -52868,30 +52986,15 @@ entities: - type: Transform pos: -19.5,23.5 parent: 8364 - - uid: 9207 - components: - - type: Transform - pos: 4.5,42.5 - parent: 8364 - - uid: 9208 - components: - - type: Transform - pos: 5.5,42.5 - parent: 8364 - - uid: 9209 - components: - - type: Transform - pos: 6.5,42.5 - parent: 8364 - uid: 9218 components: - type: Transform pos: 7.5,42.5 parent: 8364 - - uid: 9248 + - uid: 9224 components: - type: Transform - pos: 3.5,42.5 + pos: 1.5,37.5 parent: 8364 - uid: 9249 components: @@ -52913,25 +53016,20 @@ entities: - type: Transform pos: 1.5,33.5 parent: 8364 - - uid: 9267 + - uid: 9289 components: - type: Transform - pos: 0.5,33.5 + pos: 3.5,33.5 parent: 8364 - - uid: 9268 + - uid: 9346 components: - type: Transform - pos: -0.5,33.5 + pos: 2.5,40.5 parent: 8364 - - uid: 9269 + - uid: 9381 components: - type: Transform - pos: -1.5,33.5 - parent: 8364 - - uid: 9270 - components: - - type: Transform - pos: -1.5,34.5 + pos: -0.5,40.5 parent: 8364 - uid: 9615 components: @@ -53143,6 +53241,21 @@ entities: - type: Transform pos: 17.5,32.5 parent: 8364 + - uid: 10061 + components: + - type: Transform + pos: 1.5,34.5 + parent: 8364 + - uid: 10063 + components: + - type: Transform + pos: -11.5,52.5 + parent: 8364 + - uid: 10064 + components: + - type: Transform + pos: 9.5,36.5 + parent: 8364 - uid: 10193 components: - type: Transform @@ -58098,11 +58211,6 @@ entities: - type: Transform pos: -7.5,-54.5 parent: 8364 - - uid: 19886 - components: - - type: Transform - pos: -1.5,42.5 - parent: 8364 - uid: 19887 components: - type: Transform @@ -58118,11 +58226,6 @@ entities: - type: Transform pos: 1.5,42.5 parent: 8364 - - uid: 19890 - components: - - type: Transform - pos: -2.5,42.5 - parent: 8364 - uid: 19925 components: - type: Transform @@ -58138,11 +58241,6 @@ entities: - type: Transform pos: 8.5,41.5 parent: 8364 - - uid: 19928 - components: - - type: Transform - pos: 8.5,42.5 - parent: 8364 - uid: 20164 components: - type: Transform @@ -59428,6 +59526,11 @@ entities: - type: Transform pos: -0.5,-19.5 parent: 8364 + - uid: 25005 + components: + - type: Transform + pos: 1.5,40.5 + parent: 8364 - uid: 25089 components: - type: Transform @@ -59983,60 +60086,10 @@ entities: - type: Transform pos: -11.5,49.5 parent: 8364 - - uid: 26251 - components: - - type: Transform - pos: -11.5,50.5 - parent: 8364 - - uid: 26252 - components: - - type: Transform - pos: -11.5,51.5 - parent: 8364 - - uid: 26253 - components: - - type: Transform - pos: -11.5,52.5 - parent: 8364 - - uid: 26254 - components: - - type: Transform - pos: -11.5,53.5 - parent: 8364 - - uid: 26255 - components: - - type: Transform - pos: -11.5,54.5 - parent: 8364 - - uid: 26256 - components: - - type: Transform - pos: -12.5,54.5 - parent: 8364 - - uid: 26257 - components: - - type: Transform - pos: -12.5,53.5 - parent: 8364 - - uid: 26258 - components: - - type: Transform - pos: -13.5,53.5 - parent: 8364 - uid: 26259 components: - type: Transform - pos: -14.5,53.5 - parent: 8364 - - uid: 26260 - components: - - type: Transform - pos: -14.5,54.5 - parent: 8364 - - uid: 26261 - components: - - type: Transform - pos: -15.5,54.5 + pos: -16.5,38.5 parent: 8364 - uid: 26262 components: @@ -60223,6 +60276,11 @@ entities: - type: Transform pos: -9.5,37.5 parent: 8364 + - uid: 26456 + components: + - type: Transform + pos: 7.5,41.5 + parent: 8364 - uid: 26572 components: - type: Transform @@ -61225,7 +61283,7 @@ entities: - type: Transform pos: 12.5,24.5 parent: 8364 - - uid: 8989 + - uid: 8611 components: - type: Transform pos: -15.5,51.5 @@ -66857,6 +66915,12 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,40.5 parent: 8364 + - uid: 7798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,23.5 + parent: 8364 - uid: 7978 components: - type: Transform @@ -66922,6 +66986,12 @@ entities: rot: 3.141592653589793 rad pos: 12.5,22.5 parent: 8364 + - uid: 8436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,23.5 + parent: 8364 - uid: 8617 components: - type: Transform @@ -66967,6 +67037,12 @@ entities: - type: Transform pos: 8.5,21.5 parent: 8364 + - uid: 9248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,23.5 + parent: 8364 - uid: 9414 components: - type: Transform @@ -67410,6 +67486,12 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-63.5 parent: 8364 + - uid: 25714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,41.5 + parent: 8364 - uid: 26133 components: - type: Transform @@ -67456,12 +67538,6 @@ entities: - type: Transform pos: 1.5,50.5 parent: 8364 - - uid: 26577 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,40.5 - parent: 8364 - uid: 26868 components: - type: Transform @@ -68614,8 +68690,11 @@ entities: - uid: 27286 components: - type: Transform + anchored: True pos: 10.5,40.5 parent: 8364 + - type: Physics + bodyType: Static - type: EntityStorage air: volume: 200 @@ -68897,11 +68976,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 9197 - components: - - type: Transform - pos: -17.5,24.5 - parent: 8364 - uid: 9255 components: - type: Transform @@ -69785,29 +69859,6 @@ entities: - type: Transform pos: 63.5,-72.5 parent: 8364 - - uid: 26546 - components: - - type: Transform - pos: -22.5,51.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 27598 components: - type: Transform @@ -69830,6 +69881,11 @@ entities: - type: Transform pos: -3.5,-57.5 parent: 8364 + - uid: 9119 + components: + - type: Transform + pos: -17.5,24.5 + parent: 8364 - uid: 20638 components: - type: Transform @@ -70283,8 +70339,11 @@ entities: - uid: 9261 components: - type: Transform + anchored: True pos: 10.5,41.5 parent: 8364 + - type: Physics + bodyType: Static - type: EntityStorage air: volume: 200 @@ -72126,20 +72185,25 @@ entities: parent: 8364 - proto: ClothingHeadHelmetRiot entities: - - uid: 9366 + - uid: 9190 components: - type: Transform - pos: 2.689872,39.342834 + pos: 2.7655263,39.62697 parent: 8364 - - uid: 9367 + - uid: 9193 components: - type: Transform - pos: 2.689872,39.624084 + pos: 2.7655263,39.512383 parent: 8364 - - uid: 9368 + - uid: 9197 components: - type: Transform - pos: 2.689872,39.51471 + pos: 2.7655263,39.366547 + parent: 8364 + - uid: 10062 + components: + - type: Transform + pos: 2.7551093,39.762383 parent: 8364 - proto: ClothingHeadsetEngineering entities: @@ -72278,23 +72342,6 @@ entities: - type: Transform pos: -44.458595,14.399037 parent: 8364 -- proto: ClothingMaskGasSecurity - entities: - - uid: 9223 - components: - - type: Transform - pos: 4.830586,32.536835 - parent: 8364 - - uid: 9224 - components: - - type: Transform - pos: 4.547027,32.818085 - parent: 8364 - - uid: 9228 - components: - - type: Transform - pos: 4.656402,32.724335 - parent: 8364 - proto: ClothingMaskSterile entities: - uid: 17899 @@ -72423,54 +72470,59 @@ entities: parent: 8364 - proto: ClothingOuterArmorBulletproof entities: - - uid: 9375 + - uid: 9170 components: - type: Transform - pos: 0.54769325,39.79596 + pos: 1.2759427,39.481133 parent: 8364 - - uid: 9376 + - uid: 9178 components: - type: Transform - pos: 0.71956825,39.592834 + pos: 1.2759427,39.59572 parent: 8364 - - uid: 9377 + - uid: 21244 components: - type: Transform - pos: 0.81331825,39.405334 + pos: 1.2759427,39.699883 + parent: 8364 + - uid: 28242 + components: + - type: Transform + pos: 1.2759427,39.37697 parent: 8364 - proto: ClothingOuterArmorReflective entities: - - uid: 9372 + - uid: 9483 components: - type: Transform - pos: 0.3043524,39.56628 + pos: 1.6821928,39.418633 parent: 8364 - - uid: 9373 + - uid: 28240 components: - type: Transform - pos: 0.4762274,39.44128 - parent: 8364 - - uid: 9374 - components: - - type: Transform - pos: 0.6793524,39.28503 + pos: 1.6926093,39.574883 parent: 8364 - proto: ClothingOuterArmorRiot entities: - - uid: 9369 + - uid: 9166 components: - type: Transform - pos: 2.330497,39.530334 + pos: 2.3384428,39.68947 parent: 8364 - - uid: 9370 + - uid: 9167 components: - type: Transform - pos: 2.346122,39.38971 + pos: 2.3384428,39.554047 parent: 8364 - - uid: 9371 + - uid: 9216 components: - type: Transform - pos: 2.314872,39.67096 + pos: 2.3488593,39.481133 + parent: 8364 + - uid: 9223 + components: + - type: Transform + pos: 2.3384428,39.366547 parent: 8364 - proto: ClothingOuterCardborg entities: @@ -72529,32 +72581,6 @@ entities: - type: Transform pos: 66.509186,-76.72045 parent: 8364 -- proto: ClothingOuterHardsuitSecurity - entities: - - uid: 4163 - components: - - type: Transform - pos: 0.37893665,35.52849 - parent: 8364 - - uid: 15129 - components: - - type: Transform - pos: 0.37893665,35.52849 - parent: 8364 - - uid: 20856 - components: - - type: Transform - parent: 11965 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 20857 - components: - - type: Transform - parent: 17151 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingOuterHoodieGrey entities: - uid: 21633 @@ -73365,11 +73391,6 @@ entities: - type: Transform pos: 39.5,-16.5 parent: 8364 - - uid: 8751 - components: - - type: Transform - pos: -9.5,32.5 - parent: 8364 - uid: 20882 components: - type: Transform @@ -73480,16 +73501,16 @@ entities: parent: 8364 - proto: ComputerCriminalRecords entities: - - uid: 9075 - components: - - type: Transform - pos: -1.5,33.5 - parent: 8364 - uid: 9181 components: - type: Transform pos: 13.5,41.5 parent: 8364 + - uid: 9345 + components: + - type: Transform + pos: 4.5,28.5 + parent: 8364 - uid: 9362 components: - type: Transform @@ -73517,6 +73538,11 @@ entities: - type: Transform pos: -8.5,-6.5 parent: 8364 + - uid: 21245 + components: + - type: Transform + pos: 0.5,33.5 + parent: 8364 - proto: ComputerFrame entities: - uid: 19878 @@ -73802,11 +73828,34 @@ entities: - type: Transform pos: -3.5,14.5 parent: 8364 + - uid: 8780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,24.5 + parent: 8364 + - uid: 26251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,24.5 + parent: 8364 + - uid: 26252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,24.5 + parent: 8364 - uid: 27653 components: - type: Transform pos: 10.5,-27.5 parent: 8364 + - uid: 28241 + components: + - type: Transform + pos: 16.5,34.5 + parent: 8364 - proto: ContainmentFieldGenerator entities: - uid: 4552 @@ -74204,10 +74253,10 @@ entities: parent: 8364 - proto: CrateContrabandStorageSecure entities: - - uid: 27489 + - uid: 8629 components: - type: Transform - pos: -2.5,32.5 + pos: 3.5,33.5 parent: 8364 - proto: CrateEmergencyRadiation entities: @@ -74765,6 +74814,24 @@ entities: - type: Transform pos: -9.5,30.5 parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 19237 components: - type: Transform @@ -75099,6 +75166,14 @@ entities: - type: Transform pos: 29.484377,-32.156303 parent: 8364 +- proto: CurtainsRed + entities: + - uid: 4650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,41.5 + parent: 8364 - proto: d20Dice entities: - uid: 6522 @@ -75574,15 +75649,20 @@ entities: parent: 8364 - proto: DeployableBarrier entities: - - uid: 9566 + - uid: 7678 components: - type: Transform - pos: 3.5,35.5 + pos: -13.5,22.5 parent: 8364 - - uid: 9567 + - uid: 7680 components: - type: Transform - pos: 4.5,35.5 + pos: -12.5,22.5 + parent: 8364 + - uid: 25712 + components: + - type: Transform + pos: -14.5,22.5 parent: 8364 - proto: DeskBell entities: @@ -75789,23 +75869,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,32.5 parent: 8364 - - uid: 9515 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,31.5 - parent: 8364 - - uid: 9517 - components: - - type: Transform - pos: 6.5,31.5 - parent: 8364 - - uid: 9518 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,30.5 - parent: 8364 - uid: 9534 components: - type: Transform @@ -76736,6 +76799,12 @@ entities: rot: 3.141592653589793 rad pos: 24.5,5.5 parent: 8364 + - uid: 9284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,30.5 + parent: 8364 - uid: 9499 components: - type: Transform @@ -77904,11 +77973,43 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,26.5 parent: 8364 + - uid: 8819 + components: + - type: Transform + pos: 9.5,33.5 + parent: 8364 + - uid: 8820 + components: + - type: Transform + pos: 9.5,34.5 + parent: 8364 - uid: 9105 components: - type: Transform pos: -26.5,-17.5 parent: 8364 + - uid: 9270 + components: + - type: Transform + pos: 9.5,32.5 + parent: 8364 + - uid: 9283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,30.5 + parent: 8364 + - uid: 9285 + components: + - type: Transform + pos: 9.5,31.5 + parent: 8364 + - uid: 9286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,30.5 + parent: 8364 - uid: 9401 components: - type: Transform @@ -78040,12 +78141,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,30.5 parent: 8364 - - uid: 9507 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,30.5 - parent: 8364 - uid: 9508 components: - type: Transform @@ -78063,12 +78158,6 @@ entities: - type: Transform pos: 18.5,33.5 parent: 8364 - - uid: 9516 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,31.5 - parent: 8364 - uid: 9520 components: - type: Transform @@ -83703,22 +83792,27 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-13.5 parent: 8364 + - uid: 9075 + components: + - type: Transform + pos: 9.5,35.5 + parent: 8364 - uid: 9246 components: - type: Transform pos: -22.5,-15.5 parent: 8364 + - uid: 9269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,30.5 + parent: 8364 - uid: 9481 components: - type: Transform pos: 19.5,36.5 parent: 8364 - - uid: 9483 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,30.5 - parent: 8364 - uid: 9559 components: - type: Transform @@ -84045,6 +84139,11 @@ entities: - type: Transform pos: 4.5,30.5 parent: 8364 + - uid: 9262 + components: + - type: Transform + pos: 9.5,35.5 + parent: 8364 - uid: 9400 components: - type: Transform @@ -84352,10 +84451,10 @@ entities: parent: 8364 - proto: DresserHeadOfSecurityFilled entities: - - uid: 9238 + - uid: 9377 components: - type: Transform - pos: 16.5,40.5 + pos: 15.5,41.5 parent: 8364 - proto: DresserQuarterMasterFilled entities: @@ -84371,6 +84470,13 @@ entities: - type: Transform pos: 71.5,-33.5 parent: 8364 +- proto: DresserWardenFilled + entities: + - uid: 9257 + components: + - type: Transform + pos: -1.5,33.5 + parent: 8364 - proto: DrinkBeerBottleFull entities: - uid: 27600 @@ -84479,6 +84585,11 @@ entities: parent: 8364 - proto: EmergencyLight entities: + - uid: 9135 + components: + - type: Transform + pos: 4.5,33.5 + parent: 8364 - uid: 20300 components: - type: Transform @@ -84548,15 +84659,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 21326 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,32.5 - parent: 8364 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 21409 components: - type: Transform @@ -85217,6 +85319,22 @@ entities: - type: Transform pos: 59.5,-19.5 parent: 8364 +- proto: ExplosivesSignMed + entities: + - uid: 18369 + components: + - type: MetaData + desc: WARNING! Live minefield! + - type: Transform + pos: 5.5,46.5 + parent: 8364 + - uid: 28263 + components: + - type: MetaData + desc: WARNING! Live minefield! + - type: Transform + pos: 25.5,43.5 + parent: 8364 - proto: ExtendedEmergencyOxygenTankFilled entities: - uid: 17647 @@ -85613,7 +85731,7 @@ entities: pos: 12.5,41.5 parent: 8364 - type: FaxMachine - name: HoS + name: HoS Office - uid: 21237 components: - type: Transform @@ -85635,6 +85753,13 @@ entities: parent: 8364 - type: FaxMachine name: Medical + - uid: 28093 + components: + - type: Transform + pos: 4.5,32.5 + parent: 8364 + - type: FaxMachine + name: Warden's Office - proto: FaxMachineCaptain entities: - uid: 21189 @@ -85847,6 +85972,20 @@ entities: - 14149 - 22663 - 19972 + - uid: 7797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,18.5 + parent: 8364 + - type: DeviceList + devices: + - 11605 + - 11600 + - 11377 + - 11603 + - 23940 + - 9291 - uid: 10714 components: - type: Transform @@ -86498,7 +86637,6 @@ entities: - 7393 - 7390 - 7146 - - 9262 - 11605 - 11600 - 23935 @@ -86516,46 +86654,9 @@ entities: - 7393 - 7390 - 7146 - - 9262 - 11605 - 11600 - 23935 - - uid: 23942 - components: - - type: Transform - pos: 0.5,22.5 - parent: 8364 - - type: DeviceList - devices: - - 9262 - - 11605 - - 11600 - - 11377 - - 11603 - - 23940 - - uid: 25233 - components: - - type: Transform - pos: -2.5,34.5 - parent: 8364 - - type: DeviceList - devices: - - 25040 - - 9219 - - 8930 - - 8934 - - uid: 25235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,39.5 - parent: 8364 - - type: DeviceList - devices: - - 8930 - - 8934 - - 25236 - - 19934 - uid: 25807 components: - type: Transform @@ -87485,11 +87586,15 @@ entities: - type: Transform pos: -0.5,29.5 parent: 8364 - - uid: 9262 + - uid: 9291 components: - type: Transform pos: -1.5,18.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 23898 + - 7797 - uid: 9811 components: - type: Transform @@ -87577,6 +87682,9 @@ entities: - type: Transform pos: 1.5,22.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 7797 - uid: 11553 components: - type: Transform @@ -87592,11 +87700,17 @@ entities: - type: Transform pos: 0.5,18.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 7797 - uid: 11603 components: - type: Transform pos: 2.5,22.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 7797 - uid: 11604 components: - type: Transform @@ -87607,6 +87721,9 @@ entities: - type: Transform pos: -0.5,18.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 7797 - uid: 11719 components: - type: Transform @@ -87797,6 +87914,7 @@ entities: - type: Transform pos: 20.5,24.5 parent: 8364 + - type: DeviceNetwork - uid: 13461 components: - type: Transform @@ -87929,7 +88047,7 @@ entities: pos: -34.5,-14.5 parent: 8364 - type: Door - secondsUntilStateChange: -72829.68 + secondsUntilStateChange: -82409.87 state: Closing - uid: 15010 components: @@ -89344,11 +89462,6 @@ entities: - type: Transform pos: 15.5,27.5 parent: 8364 - - uid: 9411 - components: - - type: Transform - pos: 14.5,39.5 - parent: 8364 - proto: FoodBreadBaguette entities: - uid: 6669 @@ -107982,6 +108095,11 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 25233 + components: + - type: Transform + pos: 8.5,24.5 + parent: 8364 - uid: 25247 components: - type: Transform @@ -109588,14 +109706,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25554 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,24.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 25555 components: - type: Transform @@ -122255,12 +122365,12 @@ entities: - uid: 4945 components: - type: Transform - pos: 4.5,42.5 + pos: -1.5,41.5 parent: 8364 - uid: 4946 components: - type: Transform - pos: 3.5,42.5 + pos: 0.5,41.5 parent: 8364 - uid: 4947 components: @@ -122280,12 +122390,7 @@ entities: - uid: 4951 components: - type: Transform - pos: -1.5,42.5 - parent: 8364 - - uid: 4952 - components: - - type: Transform - pos: -2.5,42.5 + pos: 3.5,41.5 parent: 8364 - uid: 4957 components: @@ -122859,6 +122964,11 @@ entities: - type: Transform pos: 29.5,-22.5 parent: 8364 + - uid: 5606 + components: + - type: Transform + pos: 2.5,41.5 + parent: 8364 - uid: 5709 components: - type: Transform @@ -122879,6 +122989,11 @@ entities: - type: Transform pos: -0.5,-79.5 parent: 8364 + - uid: 5791 + components: + - type: Transform + pos: -0.5,41.5 + parent: 8364 - uid: 5913 components: - type: Transform @@ -122894,6 +123009,11 @@ entities: - type: Transform pos: -6.5,-93.5 parent: 8364 + - uid: 6253 + components: + - type: Transform + pos: 1.5,41.5 + parent: 8364 - uid: 6305 components: - type: Transform @@ -123265,11 +123385,6 @@ entities: - type: Transform pos: 6.5,34.5 parent: 8364 - - uid: 7716 - components: - - type: Transform - pos: 3.5,34.5 - parent: 8364 - uid: 7717 components: - type: Transform @@ -123290,11 +123405,6 @@ entities: - type: Transform pos: -0.5,34.5 parent: 8364 - - uid: 7721 - components: - - type: Transform - pos: 3.5,34.5 - parent: 8364 - uid: 7722 components: - type: Transform @@ -123385,11 +123495,6 @@ entities: - type: Transform pos: 8.5,25.5 parent: 8364 - - uid: 7779 - components: - - type: Transform - pos: 10.5,25.5 - parent: 8364 - uid: 7788 components: - type: Transform @@ -123842,6 +123947,11 @@ entities: - type: Transform pos: -6.5,-78.5 parent: 8364 + - uid: 8614 + components: + - type: Transform + pos: -11.5,54.5 + parent: 8364 - uid: 8755 components: - type: Transform @@ -123852,6 +123962,11 @@ entities: - type: Transform pos: -6.5,38.5 parent: 8364 + - uid: 8776 + components: + - type: Transform + pos: -15.5,54.5 + parent: 8364 - uid: 8786 components: - type: Transform @@ -123934,6 +124049,16 @@ entities: - type: Transform pos: -13.5,39.5 parent: 8364 + - uid: 9169 + components: + - type: Transform + pos: 5.5,45.5 + parent: 8364 + - uid: 9230 + components: + - type: Transform + pos: -12.5,54.5 + parent: 8364 - uid: 9332 components: - type: Transform @@ -123969,6 +124094,11 @@ entities: - type: Transform pos: 25.5,42.5 parent: 8364 + - uid: 9567 + components: + - type: Transform + pos: -14.5,54.5 + parent: 8364 - uid: 9569 components: - type: Transform @@ -123984,6 +124114,12 @@ entities: - type: Transform pos: -18.5,21.5 parent: 8364 + - uid: 10057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 8364 - uid: 10082 components: - type: Transform @@ -124065,16 +124201,6 @@ entities: - type: Transform pos: -9.5,2.5 parent: 8364 - - uid: 11607 - components: - - type: Transform - pos: -13.5,3.5 - parent: 8364 - - uid: 11608 - components: - - type: Transform - pos: -13.5,2.5 - parent: 8364 - uid: 11648 components: - type: Transform @@ -125305,6 +125431,11 @@ entities: - type: Transform pos: 0.5,42.5 parent: 8364 + - uid: 25004 + components: + - type: Transform + pos: -3.5,33.5 + parent: 8364 - uid: 25230 components: - type: Transform @@ -125328,31 +125459,11 @@ entities: - type: Transform pos: -6.5,46.5 parent: 8364 - - uid: 25712 - components: - - type: Transform - pos: -14.5,54.5 - parent: 8364 - - uid: 25713 - components: - - type: Transform - pos: -15.5,54.5 - parent: 8364 - - uid: 25714 - components: - - type: Transform - pos: -12.5,54.5 - parent: 8364 - uid: 25721 components: - type: Transform pos: -8.5,46.5 parent: 8364 - - uid: 25726 - components: - - type: Transform - pos: -11.5,54.5 - parent: 8364 - uid: 25860 components: - type: Transform @@ -125919,6 +126030,51 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-24.5 parent: 8364 + - uid: 28262 + components: + - type: Transform + pos: 30.5,43.5 + parent: 8364 + - uid: 28268 + components: + - type: Transform + pos: 30.5,42.5 + parent: 8364 + - uid: 28269 + components: + - type: Transform + pos: 30.5,41.5 + parent: 8364 + - uid: 28270 + components: + - type: Transform + pos: 30.5,40.5 + parent: 8364 + - uid: 28271 + components: + - type: Transform + pos: 30.5,44.5 + parent: 8364 + - uid: 28272 + components: + - type: Transform + pos: 30.5,45.5 + parent: 8364 + - uid: 28273 + components: + - type: Transform + pos: 30.5,39.5 + parent: 8364 + - uid: 28274 + components: + - type: Transform + pos: 27.5,45.5 + parent: 8364 + - uid: 28275 + components: + - type: Transform + pos: 28.5,45.5 + parent: 8364 - proto: GrilleBroken entities: - uid: 453 @@ -126021,6 +126177,17 @@ entities: - type: Transform pos: 88.5,-85.5 parent: 8364 + - uid: 5767 + components: + - type: Transform + pos: 5.5,43.5 + parent: 8364 + - uid: 9361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,44.5 + parent: 8364 - uid: 11161 components: - type: Transform @@ -126153,44 +126320,110 @@ entities: parent: 8364 - proto: GunSafeDisabler entities: - - uid: 6253 - components: - - type: Transform - pos: -0.5,39.5 - parent: 8364 - - uid: 15128 - components: - - type: Transform - pos: 3.5,33.5 - parent: 8364 -- proto: GunSafeLaserCarbine - entities: - - uid: 9236 + - uid: 9207 components: - type: Transform + anchored: True pos: 1.5,37.5 parent: 8364 -- proto: GunSafeRifleLecter + - type: Physics + bodyType: Static +- proto: GunSafePistolMk58 entities: - - uid: 9177 - components: - - type: Transform - pos: 0.5,37.5 - parent: 8364 -- proto: GunSafeShotgunKammerer - entities: - - uid: 9170 - components: - - type: Transform - pos: -0.5,37.5 - parent: 8364 -- proto: GunSafeSubMachineGunDrozd - entities: - - uid: 9235 + - uid: 7751 components: - type: Transform + anchored: True pos: 2.5,37.5 parent: 8364 + - type: Physics + bodyType: Static +- proto: GunSafeRifleLecter + entities: + - uid: 9373 + components: + - type: MetaData + desc: A standard-issue Nanotrasen storage unit, containing 3 Lecter combat rifles. + - type: Transform + anchored: True + pos: -0.5,37.5 + parent: 8364 + - type: Physics + bodyType: Static + - 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: + - 9376 + - 9375 + - 9374 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 9369 + components: + - type: MetaData + desc: A standard-issue Nanotrasen storage unit, containing 3 Drozd submachine guns. + - type: Transform + anchored: True + pos: 0.5,37.5 + parent: 8364 + - type: Physics + bodyType: Static + - 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: + - 9370 + - 9371 + - 9372 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: GyroscopeUnanchored entities: - uid: 25012 @@ -126201,21 +126434,6 @@ entities: parent: 8364 - proto: Handcuffs entities: - - uid: 8571 - components: - - type: Transform - pos: 10.5,24.5 - parent: 8364 - - uid: 8572 - components: - - type: Transform - pos: 10.5,24.5 - parent: 8364 - - uid: 8573 - components: - - type: Transform - pos: 10.5,24.5 - parent: 8364 - uid: 8591 components: - type: Transform @@ -126243,16 +126461,6 @@ entities: - type: Transform pos: 38.4924,-28.821447 parent: 8364 - - uid: 9175 - components: - - type: Transform - pos: -14.5,22.5 - parent: 8364 - - uid: 9229 - components: - - type: Transform - pos: 1.530674,30.52632 - parent: 8364 - uid: 9705 components: - type: Transform @@ -126689,10 +126897,10 @@ entities: parent: 8364 - proto: HolopadSecurityArmory entities: - - uid: 28138 + - uid: 7709 components: - type: Transform - pos: 1.5,38.5 + pos: 3.5,37.5 parent: 8364 - proto: HolopadSecurityArrivalsCheckpoint entities: @@ -126745,10 +126953,10 @@ entities: parent: 8364 - proto: HolopadSecurityFront entities: - - uid: 28093 + - uid: 28247 components: - type: Transform - pos: 1.5,23.5 + pos: 5.5,20.5 parent: 8364 - proto: HolopadSecurityInterrogation entities: @@ -127145,6 +127353,12 @@ entities: parent: 8364 - proto: IntercomAll entities: + - uid: 4481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-15.5 + parent: 8364 - uid: 5526 components: - type: Transform @@ -127157,6 +127371,22 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-19.5 parent: 8364 + - uid: 7752 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 8364 + - uid: 9366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-15.5 + parent: 8364 + - uid: 9367 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 8364 - uid: 27818 components: - type: Transform @@ -127302,11 +127532,6 @@ entities: parent: 8364 - proto: IntercomSecurity entities: - - uid: 9576 - components: - - type: Transform - pos: 4.5,29.5 - parent: 8364 - uid: 21091 components: - type: Transform @@ -127317,6 +127542,11 @@ entities: - type: Transform pos: -10.5,28.5 parent: 8364 + - uid: 26256 + components: + - type: Transform + pos: 0.5,22.5 + parent: 8364 - proto: IntercomSupply entities: - uid: 6438 @@ -127372,6 +127602,18 @@ entities: - type: Transform pos: -12.493954,3.065948 parent: 8364 +- proto: JetpackSecurityFilled + entities: + - uid: 8572 + components: + - type: Transform + pos: -0.68612957,39.73207 + parent: 8364 + - uid: 9182 + components: + - type: Transform + pos: -0.38925457,39.51332 + parent: 8364 - proto: Jukebox entities: - uid: 20632 @@ -127758,14 +128000,22 @@ entities: parent: 8364 - proto: LandMineExplosive entities: + - uid: 9359 + components: + - type: Transform + anchored: True + pos: 4.5,44.5 + parent: 8364 - uid: 27309 components: - type: Transform + anchored: True pos: -0.5,43.5 parent: 8364 - uid: 27313 components: - type: Transform + anchored: True pos: 2.5,43.5 parent: 8364 - proto: LandMineModular @@ -127848,6 +128098,32 @@ entities: - type: Transform pos: -28.5095,-5.350807 parent: 8364 +- proto: LockableButtonArmory + entities: + - uid: 23135 + components: + - type: MetaData + name: Open Armory + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.477743,38.812943 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 6419: + - Pressed: Open + - uid: 25554 + components: + - type: MetaData + name: Close Armory + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.4868402,38.244164 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 6419: + - Pressed: Close - proto: LockableButtonChiefMedicalOfficer entities: - uid: 3809 @@ -128194,75 +128470,6 @@ entities: - type: Transform pos: -14.5,36.5 parent: 8364 - - uid: 8553 - components: - - type: Transform - pos: -12.5,24.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8554 - components: - - type: Transform - pos: -12.5,23.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8555 - components: - - type: Transform - pos: -12.5,22.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 8961 components: - type: Transform @@ -128309,29 +128516,6 @@ entities: - 0 - 0 - 0 - - uid: 9118 - components: - - type: Transform - pos: 6.5,41.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 9356 components: - type: Transform @@ -128524,8 +128708,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 + - 2.146141 + - 8.073578 - 0 - 0 - 0 @@ -128598,8 +128782,11 @@ entities: - uid: 9250 components: - type: Transform + anchored: True pos: 16.5,38.5 parent: 8364 + - type: Physics + bodyType: Static - type: EntityStorage air: volume: 200 @@ -128741,6 +128928,13 @@ entities: - 0 - 0 - 0 + - uid: 25003 + components: + - type: Transform + pos: -9.5,31.5 + parent: 8364 + - type: Lock + locked: False - proto: LockerParamedicFilled entities: - uid: 27687 @@ -128937,18 +129131,27 @@ entities: - uid: 8791 components: - type: Transform + anchored: True pos: 8.5,37.5 parent: 8364 + - type: Physics + bodyType: Static - uid: 8811 components: - type: Transform + anchored: True pos: 8.5,38.5 parent: 8364 + - type: Physics + bodyType: Static - uid: 9256 components: - type: Transform + anchored: True pos: 10.5,37.5 parent: 8364 + - type: Physics + bodyType: Static - type: EntityStorage air: volume: 200 @@ -128984,8 +129187,11 @@ entities: - uid: 9258 components: - type: Transform + anchored: True pos: 10.5,38.5 parent: 8364 + - type: Physics + bodyType: Static - type: EntityStorage air: volume: 200 @@ -129021,8 +129227,11 @@ entities: - uid: 9259 components: - type: Transform + anchored: True pos: 10.5,39.5 parent: 8364 + - type: Physics + bodyType: Static - type: EntityStorage air: volume: 200 @@ -129095,8 +129304,11 @@ entities: - uid: 27287 components: - type: Transform + anchored: True pos: 8.5,40.5 parent: 8364 + - type: Physics + bodyType: Static - type: EntityStorage air: volume: 200 @@ -129118,8 +129330,11 @@ entities: - uid: 27288 components: - type: Transform + anchored: True pos: 8.5,39.5 parent: 8364 + - type: Physics + bodyType: Static - type: EntityStorage air: volume: 200 @@ -129496,22 +129711,54 @@ entities: - type: Transform pos: -43.5,-12.5 parent: 8364 +- proto: MagazinePistolSubMachineGun + entities: + - uid: 9371 + components: + - type: Transform + parent: 9369 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9372 + components: + - type: Transform + parent: 9369 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MagazinePistolSubMachineGunTopMounted entities: - uid: 534 components: - type: Transform - pos: 16.383898,41.80004 + pos: 14.262794,39.806297 parent: 8364 - type: BallisticAmmoProvider unspawnedCount: 30 - uid: 535 components: - type: Transform - pos: 16.383898,41.80004 + pos: 14.247169,39.821922 parent: 8364 - type: BallisticAmmoProvider unspawnedCount: 30 +- proto: MagazineRifle + entities: + - uid: 9374 + components: + - type: Transform + parent: 9373 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9376 + components: + - type: Transform + parent: 9373 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MailingUnit entities: - uid: 8179 @@ -129942,11 +130189,21 @@ entities: - type: Transform pos: 32.5,-36.5 parent: 8364 + - uid: 5594 + components: + - type: Transform + pos: -6.5,31.5 + parent: 8364 - uid: 18648 components: - type: Transform pos: 30.5,-27.5 parent: 8364 + - uid: 19933 + components: + - type: Transform + pos: -6.5,32.5 + parent: 8364 - proto: MedicalTechFab entities: - uid: 27390 @@ -129963,6 +130220,11 @@ entities: parent: 8364 - proto: MedkitBruteFilled entities: + - uid: 9118 + components: + - type: Transform + pos: -6.4267135,29.876205 + parent: 8364 - uid: 21717 components: - type: Transform @@ -129997,11 +130259,6 @@ entities: parent: 8364 - proto: MedkitFilled entities: - - uid: 5606 - components: - - type: Transform - pos: 4.550616,-5.4263577 - parent: 8364 - uid: 6523 components: - type: Transform @@ -130017,11 +130274,6 @@ entities: - type: Transform pos: -6.5648327,29.651033 parent: 8364 - - uid: 9086 - components: - - type: Transform - pos: -2.4584026,39.71956 - parent: 8364 - uid: 12264 components: - type: Transform @@ -130047,7 +130299,7 @@ entities: - uid: 7927 components: - type: Transform - pos: -6.3929577,29.432283 + pos: -6.3642135,29.51683 parent: 8364 - proto: MedkitRadiationFilled entities: @@ -130841,11 +131093,6 @@ entities: - type: Transform pos: 19.5,-32.5 parent: 8364 - - uid: 8750 - components: - - type: Transform - pos: -9.5,31.5 - parent: 8364 - uid: 19015 components: - type: Transform @@ -131231,11 +131478,6 @@ entities: - type: Transform pos: -11.519596,32.598755 parent: 8364 - - uid: 9233 - components: - - type: Transform - pos: -0.5,29.5 - parent: 8364 - uid: 9406 components: - type: Transform @@ -131541,6 +131783,44 @@ entities: - type: Transform pos: 6.5,-56.5 parent: 8364 +- proto: PaperOffice + entities: + - uid: 9390 + components: + - type: Transform + parent: 9384 + - type: Physics + canCollide: False + - uid: 9453 + components: + - type: Transform + parent: 9384 + - type: Physics + canCollide: False + - uid: 9454 + components: + - type: Transform + parent: 9384 + - type: Physics + canCollide: False + - uid: 9507 + components: + - type: Transform + parent: 9384 + - type: Physics + canCollide: False + - uid: 9515 + components: + - type: Transform + parent: 9384 + - type: Physics + canCollide: False + - uid: 9516 + components: + - type: Transform + parent: 9384 + - type: Physics + canCollide: False - proto: ParchisBoard entities: - uid: 11673 @@ -131732,15 +132012,10 @@ entities: - type: Transform pos: -11.650579,32.527164 parent: 8364 - - uid: 9231 - components: - - type: Transform - pos: -1.2001991,30.822023 - parent: 8364 - uid: 9232 components: - type: Transform - pos: -0.5,29.5 + pos: -1.6906976,30.406588 parent: 8364 - uid: 9727 components: @@ -132050,6 +132325,20 @@ entities: - type: Transform pos: 7.5224895,-74.49767 parent: 8364 +- proto: PlasmaWindoorSecureArmoryLocked + entities: + - uid: 9517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,37.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 26255: + - DoorStatus: Close - proto: PlasticFlapsAirtightClear entities: - uid: 3067 @@ -132138,21 +132427,56 @@ entities: parent: 8364 - proto: PortableFlasher entities: - - uid: 9166 + - uid: 9267 components: - type: Transform - pos: -1.5,35.5 + anchored: False + pos: -12.5,25.5 parent: 8364 - - uid: 9167 + - type: TriggerOnProximity + enabled: False + - type: Physics + bodyType: Dynamic + - uid: 9380 components: - type: Transform - pos: -2.5,35.5 + anchored: False + pos: -12.5,23.5 parent: 8364 - - uid: 9169 + - type: TriggerOnProximity + enabled: False + - type: Physics + bodyType: Dynamic + - uid: 9518 components: - type: Transform + anchored: False pos: -2.5,36.5 parent: 8364 + - type: TriggerOnProximity + enabled: False + - type: Physics + bodyType: Dynamic + - uid: 9566 + components: + - type: Transform + anchored: False + pos: -2.5,35.5 + parent: 8364 + - type: TriggerOnProximity + enabled: False + - type: Physics + bodyType: Dynamic + - uid: 25713 + components: + - type: Transform + anchored: False + pos: -12.5,24.5 + parent: 8364 + - type: TriggerOnProximity + enabled: False + - type: Physics + bodyType: Dynamic - proto: PortableGeneratorJrPacman entities: - uid: 6258 @@ -132810,11 +133134,6 @@ entities: - type: Transform pos: 34.5,-51.5 parent: 8364 - - uid: 5599 - components: - - type: Transform - pos: 12.5,37.5 - parent: 8364 - uid: 14510 components: - type: Transform @@ -135848,6 +136167,12 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 + - uid: 9576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,47.5 + parent: 8364 - uid: 10007 components: - type: Transform @@ -135934,6 +136259,18 @@ entities: powerLoad: 0 - proto: PoweredlightLED entities: + - uid: 4952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,41.5 + parent: 8364 + - uid: 9175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,41.5 + parent: 8364 - uid: 14468 components: - type: Transform @@ -135981,22 +136318,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27281 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,41.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 27282 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,41.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - proto: PoweredlightSodium entities: - uid: 21778 @@ -137586,10 +137907,10 @@ entities: - type: Transform pos: 66.5,-64.5 parent: 8364 - - uid: 8570 + - uid: 8779 components: - type: Transform - pos: 10.5,24.5 + pos: 3.5,39.5 parent: 8364 - uid: 9002 components: @@ -137601,11 +137922,6 @@ entities: - type: Transform pos: -8.5,53.5 parent: 8364 - - uid: 9190 - components: - - type: Transform - pos: 0.5,39.5 - parent: 8364 - uid: 9191 components: - type: Transform @@ -137616,15 +137932,10 @@ entities: - type: Transform pos: 2.5,39.5 parent: 8364 - - uid: 9193 + - uid: 9231 components: - type: Transform - pos: 0.5,35.5 - parent: 8364 - - uid: 9194 - components: - - type: Transform - pos: -0.5,35.5 + pos: -0.5,39.5 parent: 8364 - uid: 9364 components: @@ -137651,6 +137962,11 @@ entities: - type: Transform pos: 25.5,25.5 parent: 8364 + - uid: 10086 + components: + - type: Transform + pos: 4.5,39.5 + parent: 8364 - uid: 10274 components: - type: Transform @@ -137666,6 +137982,11 @@ entities: - type: Transform pos: 66.5,6.5 parent: 8364 + - uid: 11608 + components: + - type: Transform + pos: -1.5,35.5 + parent: 8364 - uid: 11680 components: - type: Transform @@ -137961,6 +138282,11 @@ entities: - type: Transform pos: 72.5,-35.5 parent: 8364 + - uid: 21326 + components: + - type: Transform + pos: 0.5,39.5 + parent: 8364 - uid: 21389 components: - type: Transform @@ -138144,11 +138470,6 @@ entities: - type: Transform pos: 9.443931,-54.34355 parent: 8364 - - uid: 8597 - components: - - type: Transform - pos: 3.5,23.5 - parent: 8364 - uid: 15394 components: - type: Transform @@ -139152,11 +139473,6 @@ entities: - type: Transform pos: -12.5,26.5 parent: 8364 - - uid: 9463 - components: - - type: Transform - pos: -1.5,23.5 - parent: 8364 - uid: 9474 components: - type: Transform @@ -139793,6 +140109,11 @@ entities: - type: Transform pos: 44.5,-54.5 parent: 8364 + - uid: 5765 + components: + - type: Transform + pos: 1.5,42.5 + parent: 8364 - uid: 5799 components: - type: Transform @@ -139818,6 +140139,33 @@ entities: - type: Transform pos: -0.5,40.5 parent: 8364 + - uid: 8761 + components: + - type: Transform + pos: 0.5,42.5 + parent: 8364 + - uid: 8775 + components: + - type: Transform + pos: -0.5,42.5 + parent: 8364 + - uid: 10059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,34.5 + parent: 8364 + - uid: 10060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,34.5 + parent: 8364 + - uid: 11607 + components: + - type: Transform + pos: 2.5,42.5 + parent: 8364 - uid: 15138 components: - type: Transform @@ -142750,6 +143098,12 @@ entities: - type: Transform pos: 11.5,40.5 parent: 8364 + - uid: 7706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,33.5 + parent: 8364 - uid: 7724 components: - type: Transform @@ -142790,21 +143144,6 @@ entities: - type: Transform pos: 5.5,32.5 parent: 8364 - - uid: 7733 - components: - - type: Transform - pos: 3.5,34.5 - parent: 8364 - - uid: 7734 - components: - - type: Transform - pos: -0.5,34.5 - parent: 8364 - - uid: 7735 - components: - - type: Transform - pos: 0.5,34.5 - parent: 8364 - uid: 7736 components: - type: Transform @@ -142875,16 +143214,6 @@ entities: - type: Transform pos: 5.5,25.5 parent: 8364 - - uid: 7751 - components: - - type: Transform - pos: 8.5,25.5 - parent: 8364 - - uid: 7752 - components: - - type: Transform - pos: 10.5,25.5 - parent: 8364 - uid: 7753 components: - type: Transform @@ -143347,6 +143676,11 @@ entities: - type: Transform pos: -13.5,39.5 parent: 8364 + - uid: 8631 + components: + - type: Transform + pos: -15.5,54.5 + parent: 8364 - uid: 8656 components: - type: Transform @@ -143402,11 +143736,6 @@ entities: - type: Transform pos: -18.5,39.5 parent: 8364 - - uid: 9046 - components: - - type: Transform - pos: -15.5,54.5 - parent: 8364 - uid: 9047 components: - type: Transform @@ -143447,6 +143776,18 @@ entities: - type: Transform pos: -14.5,39.5 parent: 8364 + - uid: 9236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,25.5 + parent: 8364 + - uid: 9238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 8364 - uid: 9399 components: - type: Transform @@ -143552,21 +143893,11 @@ entities: - type: Transform pos: 67.5,3.5 parent: 8364 - - uid: 11379 - components: - - type: Transform - pos: -13.5,3.5 - parent: 8364 - uid: 11590 components: - type: Transform pos: -9.5,2.5 parent: 8364 - - uid: 11592 - components: - - type: Transform - pos: -13.5,2.5 - parent: 8364 - uid: 11646 components: - type: Transform @@ -144429,17 +144760,71 @@ entities: - type: Transform pos: 51.721848,-23.02736 parent: 8364 +- proto: RiotBulletShield + entities: + - uid: 7681 + components: + - type: Transform + pos: 0.21283889,39.394394 + parent: 8364 + - uid: 9194 + components: + - type: Transform + pos: 0.22672784,39.679115 + parent: 8364 + - uid: 9209 + components: + - type: Transform + pos: 0.2197833,39.57495 + parent: 8364 + - uid: 9383 + components: + - type: Transform + pos: 0.2197833,39.47773 + parent: 8364 +- proto: RiotLaserShield + entities: + - uid: 8627 + components: + - type: Transform + pos: 0.7406167,39.408287 + parent: 8364 + - uid: 9290 + components: + - type: Transform + pos: 0.73367226,39.581894 + parent: 8364 + - uid: 9335 + components: + - type: Transform + pos: 0.73367226,39.69301 + parent: 8364 + - uid: 21786 + components: + - type: Transform + pos: 0.73367226,39.498558 + parent: 8364 - proto: RiotShield entities: - - uid: 9119 + - uid: 9226 components: - type: Transform - pos: 0.2666831,39.43831 + pos: 0.4975611,39.720787 parent: 8364 - - uid: 9135 + - uid: 9228 components: - type: Transform - pos: 0.2510581,39.68831 + pos: 0.4975611,39.616615 + parent: 8364 + - uid: 9334 + components: + - type: Transform + pos: 0.4975611,39.519394 + parent: 8364 + - uid: 10058 + components: + - type: Transform + pos: 0.4975611,39.394394 parent: 8364 - proto: RobocopCircuitBoard entities: @@ -144674,7 +145059,7 @@ entities: parent: 8364 - proto: SecurityTechFab entities: - - uid: 9359 + - uid: 9235 components: - type: Transform pos: -1.5,39.5 @@ -144876,11 +145261,6 @@ entities: - type: Transform pos: 69.50902,-26.620325 parent: 8364 - - uid: 8761 - components: - - type: Transform - pos: -2.4544196,39.606735 - parent: 8364 - uid: 19207 components: - type: Transform @@ -144923,7 +145303,7 @@ entities: - uid: 9316 components: - type: Transform - pos: -2.4700446,39.637985 + pos: -2.430175,38.67102 parent: 8364 - uid: 11753 components: @@ -145192,26 +145572,6 @@ entities: - type: Transform pos: 6.5,-23.5 parent: 8364 - - uid: 8606 - components: - - type: Transform - pos: 3.5,23.5 - parent: 8364 - - uid: 8607 - components: - - type: Transform - pos: 3.5,24.5 - parent: 8364 - - uid: 8614 - components: - - type: Transform - pos: 2.5,22.5 - parent: 8364 - - uid: 8615 - components: - - type: Transform - pos: 1.5,22.5 - parent: 8364 - uid: 9639 components: - type: Transform @@ -145237,6 +145597,27 @@ entities: - type: Transform pos: 10.5,-32.5 parent: 8364 + - uid: 11980 + components: + - type: Transform + pos: -9.5,22.5 + parent: 8364 + - uid: 12024 + components: + - type: Transform + pos: -10.5,22.5 + parent: 8364 + - uid: 12030 + components: + - type: Transform + pos: 3.5,24.5 + parent: 8364 + - uid: 12033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,23.5 + parent: 8364 - uid: 14148 components: - type: Transform @@ -145276,6 +145657,12 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-25.5 parent: 8364 + - uid: 17151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,22.5 + parent: 8364 - uid: 17669 components: - type: Transform @@ -145292,6 +145679,12 @@ entities: - type: Transform pos: -0.5,-65.5 parent: 8364 + - uid: 18370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,22.5 + parent: 8364 - uid: 18406 components: - type: Transform @@ -145312,12 +145705,47 @@ entities: - type: Transform pos: 23.5,-19.5 parent: 8364 + - uid: 19886 + components: + - type: Transform + pos: -0.5,22.5 + parent: 8364 + - uid: 19890 + components: + - type: Transform + pos: -1.5,22.5 + parent: 8364 + - uid: 19931 + components: + - type: Transform + pos: -2.5,22.5 + parent: 8364 + - uid: 19959 + components: + - type: Transform + pos: -4.5,22.5 + parent: 8364 + - uid: 19968 + components: + - type: Transform + pos: -5.5,22.5 + parent: 8364 + - uid: 20152 + components: + - type: Transform + pos: -6.5,22.5 + parent: 8364 - uid: 22014 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-15.5 parent: 8364 + - uid: 22451 + components: + - type: Transform + pos: -8.5,22.5 + parent: 8364 - uid: 22990 components: - type: Transform @@ -145437,51 +145865,6 @@ entities: - type: Transform pos: 12.5,23.5 parent: 8364 - - uid: 8775 - components: - - type: Transform - pos: -10.5,22.5 - parent: 8364 - - uid: 8776 - components: - - type: Transform - pos: -9.5,22.5 - parent: 8364 - - uid: 8777 - components: - - type: Transform - pos: -8.5,22.5 - parent: 8364 - - uid: 8778 - components: - - type: Transform - pos: -6.5,22.5 - parent: 8364 - - uid: 8779 - components: - - type: Transform - pos: -5.5,22.5 - parent: 8364 - - uid: 8780 - components: - - type: Transform - pos: -4.5,22.5 - parent: 8364 - - uid: 8781 - components: - - type: Transform - pos: -2.5,22.5 - parent: 8364 - - uid: 8782 - components: - - type: Transform - pos: -1.5,22.5 - parent: 8364 - - uid: 8783 - components: - - type: Transform - pos: -0.5,22.5 - parent: 8364 - uid: 10454 components: - type: Transform @@ -145822,27 +146205,6 @@ entities: - Pressed: Toggle 10457: - Pressed: Toggle - - uid: 9936 - components: - - type: Transform - pos: 14.5,29.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 8650: - - Pressed: Toggle - 8649: - - Pressed: Toggle - 8648: - - Pressed: Toggle - 8647: - - Pressed: Toggle - 8646: - - Pressed: Toggle - 8645: - - Pressed: Toggle - 8644: - - Pressed: Toggle - uid: 11625 components: - type: Transform @@ -145950,50 +146312,6 @@ entities: - Pressed: Toggle 20180: - Pressed: Toggle - - uid: 19931 - components: - - type: Transform - pos: 0.5,25.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 8783: - - Pressed: Toggle - 8782: - - Pressed: Toggle - 8781: - - Pressed: Toggle - 8780: - - Pressed: Toggle - 8779: - - Pressed: Toggle - 8778: - - Pressed: Toggle - 8777: - - Pressed: Toggle - 8776: - - Pressed: Toggle - 8775: - - Pressed: Toggle - 8615: - - Pressed: Toggle - 8614: - - Pressed: Toggle - 8606: - - Pressed: Toggle - 8607: - - Pressed: Toggle - - uid: 19933 - components: - - type: Transform - pos: -3.5,33.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 19930: - - Pressed: Toggle - 19932: - - Pressed: Toggle - uid: 20896 components: - type: Transform @@ -146144,32 +146462,6 @@ entities: - Pressed: Toggle - proto: SignalButtonDirectional entities: - - uid: 4213 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,36.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 4494: - - Pressed: Toggle - 4495: - - Pressed: Toggle - - uid: 4214 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,36.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 3134: - - Pressed: Toggle - 4212: - - Pressed: Toggle - 6970: - - Pressed: Toggle - uid: 10732 components: - type: MetaData @@ -146256,13 +146548,24 @@ entities: - Pressed: DoorBolt - proto: SignalSwitch entities: - - uid: 8784 + - uid: 9411 components: - type: MetaData - name: brig shutters switch + name: Perma Blast Doors - type: Transform + rot: 3.141592653589793 rad pos: -1.5,30.5 parent: 8364 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 19930: + - On: Open + - Off: Close + 19932: + - On: Open + - Off: Close - uid: 13247 components: - type: MetaData @@ -146270,6 +146573,127 @@ entities: - type: Transform pos: 10.8,3.5 parent: 8364 +- proto: SignalSwitchDirectional + entities: + - uid: 9142 + components: + - type: MetaData + name: Shutters + - type: Transform + pos: 13.5,29.5 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 8650: + - On: Open + - Off: Close + 8649: + - On: Open + - Off: Close + 8648: + - On: Open + - Off: Close + 8647: + - On: Open + - Off: Close + 8646: + - On: Open + - Off: Close + 8645: + - On: Open + - Off: Close + 8644: + - On: Open + - Off: Close + - uid: 9368 + components: + - type: MetaData + name: Window Blast Doors + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,40.5 + parent: 8364 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 6970: + - On: Open + - Off: Close + 4212: + - On: Open + - Off: Close + 3134: + - On: Open + - Off: Close + - uid: 11568 + components: + - type: MetaData + name: Brig Shutters + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,23.5 + parent: 8364 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 12030: + - On: Open + - Off: Close + 12033: + - On: Open + - Off: Close + 17151: + - Off: Close + - On: Open + 18370: + - On: Open + - Off: Close + 19886: + - On: Open + - Off: Close + 19890: + - On: Open + - Off: Close + 19931: + - On: Open + - Off: Close + 19959: + - On: Open + - Off: Close + 19968: + - Off: Close + - On: Open + 20152: + - On: Open + - Off: Close + 22451: + - On: Open + - Off: Close + 11980: + - On: Open + - Off: Close + 12024: + - On: Open + - Off: Close + - uid: 15129 + components: + - type: MetaData + name: Window Blast Doors + - type: Transform + pos: 8.5,42.5 + parent: 8364 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 4495: + - On: Open + - Off: Close + 4494: + - On: Open + - Off: Close - proto: SignAnomaly entities: - uid: 25994 @@ -146757,21 +147181,11 @@ entities: - type: Transform pos: -2.5,-60.5 parent: 8364 - - uid: 26456 - components: - - type: Transform - pos: 5.5,46.5 - parent: 8364 - uid: 26457 components: - type: Transform pos: -3.5,46.5 parent: 8364 - - uid: 26458 - components: - - type: Transform - pos: -25.5,46.5 - parent: 8364 - uid: 26459 components: - type: Transform @@ -147160,21 +147574,6 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-53.5 parent: 8364 - - uid: 8470 - components: - - type: Transform - pos: 11.5,28.5 - parent: 8364 - - uid: 8592 - components: - - type: Transform - pos: 7.5,22.5 - parent: 8364 - - uid: 9004 - components: - - type: Transform - pos: -3.5,43.5 - parent: 8364 - proto: SignSecureMed entities: - uid: 3806 @@ -147203,6 +147602,12 @@ entities: - type: Transform pos: 4.5,-64.5 parent: 8364 + - uid: 19928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,22.5 + parent: 8364 - uid: 20149 components: - type: Transform @@ -147503,11 +147908,6 @@ entities: - type: Transform pos: 31.5,1.5 parent: 8364 - - uid: 7340 - components: - - type: Transform - pos: -6.5,32.5 - parent: 8364 - uid: 13245 components: - type: Transform @@ -149848,33 +150248,28 @@ entities: parent: 8364 - proto: SpawnPointSecurityCadet entities: - - uid: 9453 + - uid: 5599 components: - type: Transform - pos: 7.5,39.5 + pos: 8.5,36.5 parent: 8364 - - uid: 9454 + - uid: 9177 components: - type: Transform - pos: 7.5,38.5 + pos: 7.5,36.5 parent: 8364 - - uid: 11568 + - uid: 9295 components: - type: Transform - pos: 7.5,37.5 + pos: 9.5,36.5 parent: 8364 - - uid: 26603 - components: - - type: Transform - pos: 7.5,40.5 - parent: 8364 -- proto: SpawnPointSecurityOfficer - entities: - - uid: 8590 + - uid: 20856 components: - type: Transform pos: 9.5,40.5 parent: 8364 +- proto: SpawnPointSecurityOfficer + entities: - uid: 8633 components: - type: Transform @@ -149890,6 +150285,26 @@ entities: - type: Transform pos: 9.5,37.5 parent: 8364 + - uid: 19935 + components: + - type: Transform + pos: 7.5,37.5 + parent: 8364 + - uid: 20159 + components: + - type: Transform + pos: 7.5,38.5 + parent: 8364 + - uid: 20174 + components: + - type: Transform + pos: 7.5,39.5 + parent: 8364 + - uid: 20857 + components: + - type: Transform + pos: 7.5,40.5 + parent: 8364 - proto: SpawnPointServiceWorker entities: - uid: 6948 @@ -150139,24 +150554,6 @@ entities: parent: 8364 - proto: SteelBench entities: - - uid: 5765 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,23.5 - parent: 8364 - - uid: 5767 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,23.5 - parent: 8364 - - uid: 5791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,24.5 - parent: 8364 - uid: 7912 components: - type: Transform @@ -150175,6 +150572,30 @@ entities: rot: 3.141592653589793 rad pos: 24.5,32.5 parent: 8364 + - uid: 9174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,24.5 + parent: 8364 + - uid: 9936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,23.5 + parent: 8364 + - uid: 10056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,23.5 + parent: 8364 + - uid: 23942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,24.5 + parent: 8364 - proto: Stool entities: - uid: 377 @@ -150831,24 +151252,12 @@ entities: - type: Transform pos: 72.5,-34.5 parent: 8364 -- proto: SuitStorageEVAAlternate - entities: - - uid: 19959 - components: - - type: Transform - pos: -14.5,2.5 - parent: 8364 - - uid: 19968 - components: - - type: Transform - pos: -14.5,3.5 - parent: 8364 - proto: SuitStorageHOS entities: - - uid: 5288 + - uid: 25002 components: - type: Transform - pos: 13.5,37.5 + pos: 16.5,39.5 parent: 8364 - proto: SuitStorageSalv entities: @@ -150859,76 +151268,31 @@ entities: parent: 8364 - proto: SuitStorageSec entities: - - uid: 3813 + - uid: 4163 components: - type: Transform - pos: 0.5,33.5 + pos: 0.5,35.5 parent: 8364 - - uid: 11965 + - uid: 4213 components: - type: Transform - pos: 3.5,39.5 + pos: -0.5,35.5 + parent: 8364 + - uid: 8783 + components: + - type: Transform + pos: 3.5,35.5 + parent: 8364 + - uid: 8825 + components: + - type: Transform + pos: 4.5,35.5 parent: 8364 - - 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: - - 20856 - uid: 16531 components: - type: Transform pos: -8.5,3.5 parent: 8364 - - uid: 17151 - components: - - type: Transform - pos: 4.5,39.5 - parent: 8364 - - 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: - - 20857 - proto: SuitStorageWarden entities: - uid: 11999 @@ -150936,6 +151300,24 @@ entities: - type: Transform pos: -2.5,33.5 parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: SurveillanceCameraCommand entities: - uid: 296 @@ -152765,17 +153147,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Locker Room - - uid: 389 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,39.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - uid: 394 components: - type: Transform @@ -152875,6 +153246,17 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Security + - uid: 7659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,24.5 + parent: 8364 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Storage - uid: 17694 components: - type: Transform @@ -152908,17 +153290,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Security External West - - uid: 20152 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,24.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Evidence Room - uid: 20860 components: - type: Transform @@ -153026,6 +153397,17 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Perma Entryway + - uid: 28138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,39.5 + parent: 8364 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory - proto: SurveillanceCameraService entities: - uid: 20939 @@ -153496,11 +153878,6 @@ entities: - type: Transform pos: 12.5,19.5 parent: 8364 - - uid: 8641 - components: - - type: Transform - pos: -14.5,22.5 - parent: 8364 - uid: 8785 components: - type: Transform @@ -154696,6 +155073,12 @@ entities: - type: Transform pos: -33.5,-18.5 parent: 8364 + - uid: 25743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,41.5 + parent: 8364 - uid: 25826 components: - type: Transform @@ -155912,11 +156295,6 @@ entities: - type: Transform pos: 14.5,39.5 parent: 8364 - - uid: 9216 - components: - - type: Transform - pos: 16.5,41.5 - parent: 8364 - uid: 9624 components: - type: Transform @@ -157232,17 +157610,6 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - - uid: 19935 - components: - - type: Transform - pos: 4.5,36.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 9182: - - Left: Open - - Right: Open - - Middle: Close - uid: 20027 components: - type: Transform @@ -157437,16 +157804,16 @@ entities: - type: Transform pos: 68.5,-47.5 parent: 8364 - - uid: 5594 - components: - - type: Transform - pos: 16.5,39.5 - parent: 8364 - uid: 5690 components: - type: Transform pos: 5.5,-12.5 parent: 8364 + - uid: 9463 + components: + - type: Transform + pos: 12.5,37.5 + parent: 8364 - uid: 12244 components: - type: Transform @@ -157643,6 +158010,11 @@ entities: - type: Transform pos: 41.5,-31.5 parent: 8364 + - uid: 9391 + components: + - type: Transform + pos: -9.5,32.5 + parent: 8364 - uid: 16753 components: - type: Transform @@ -157702,6 +158074,11 @@ entities: parent: 8364 - proto: VendingMachineSec entities: + - uid: 8777 + components: + - type: Transform + pos: 6.5,40.5 + parent: 8364 - uid: 9074 components: - type: Transform @@ -157714,16 +158091,16 @@ entities: - type: Transform pos: -60.5,5.5 parent: 8364 - - uid: 9142 - components: - - type: Transform - pos: 6.5,39.5 - parent: 8364 - uid: 17677 components: - type: Transform pos: -21.5,-31.5 parent: 8364 + - uid: 25726 + components: + - type: Transform + pos: 6.5,39.5 + parent: 8364 - proto: VendingMachineSeeds entities: - uid: 10713 @@ -164324,21 +164701,11 @@ entities: - type: Transform pos: -3.5,31.5 parent: 8364 - - uid: 7659 - components: - - type: Transform - pos: -1.5,34.5 - parent: 8364 - uid: 7660 components: - type: Transform pos: -2.5,34.5 parent: 8364 - - uid: 7661 - components: - - type: Transform - pos: -3.5,33.5 - parent: 8364 - uid: 7662 components: - type: Transform @@ -164394,31 +164761,11 @@ entities: - type: Transform pos: 4.5,40.5 parent: 8364 - - uid: 7677 - components: - - type: Transform - pos: 5.5,38.5 - parent: 8364 - - uid: 7678 - components: - - type: Transform - pos: 5.5,39.5 - parent: 8364 - uid: 7679 components: - type: Transform pos: 5.5,40.5 parent: 8364 - - uid: 7680 - components: - - type: Transform - pos: 5.5,41.5 - parent: 8364 - - uid: 7681 - components: - - type: Transform - pos: 5.5,42.5 - parent: 8364 - uid: 7682 components: - type: Transform @@ -164484,26 +164831,22 @@ entities: - type: Transform pos: 11.5,39.5 parent: 8364 - - uid: 7706 - components: - - type: Transform - pos: 6.5,42.5 - parent: 8364 - uid: 7707 components: - type: Transform pos: 11.5,42.5 parent: 8364 - - uid: 7709 - components: - - type: Transform - pos: 8.5,42.5 - parent: 8364 - uid: 7726 components: - type: Transform pos: 10.5,42.5 parent: 8364 + - uid: 7734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,38.5 + parent: 8364 - uid: 7755 components: - type: Transform @@ -165405,6 +165748,11 @@ entities: - type: Transform pos: -12.5,-6.5 parent: 8364 + - uid: 8573 + components: + - type: Transform + pos: 4.5,42.5 + parent: 8364 - uid: 8574 components: - type: Transform @@ -165423,6 +165771,11 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,12.5 parent: 8364 + - uid: 8628 + components: + - type: Transform + pos: -1.5,34.5 + parent: 8364 - uid: 8747 components: - type: Transform @@ -165433,11 +165786,29 @@ entities: - type: Transform pos: -20.5,52.5 parent: 8364 + - uid: 8784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,34.5 + parent: 8364 - uid: 8817 components: - type: Transform pos: -18.5,25.5 parent: 8364 + - uid: 8853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,42.5 + parent: 8364 + - uid: 8858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,42.5 + parent: 8364 - uid: 8860 components: - type: Transform @@ -165638,6 +166009,12 @@ entities: - type: Transform pos: -2.5,52.5 parent: 8364 + - uid: 9086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,42.5 + parent: 8364 - uid: 9114 components: - type: Transform @@ -165678,6 +166055,11 @@ entities: - type: Transform pos: 17.5,38.5 parent: 8364 + - uid: 9173 + components: + - type: Transform + pos: 3.5,42.5 + parent: 8364 - uid: 9206 components: - type: Transform @@ -165881,11 +166263,21 @@ entities: - type: Transform pos: 21.5,-70.5 parent: 8364 + - uid: 11379 + components: + - type: Transform + pos: -2.5,42.5 + parent: 8364 - uid: 11571 components: - type: Transform pos: 24.5,-70.5 parent: 8364 + - uid: 11592 + components: + - type: Transform + pos: -1.5,42.5 + parent: 8364 - uid: 11593 components: - type: Transform @@ -166957,6 +167349,12 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-93.5 parent: 8364 + - uid: 25235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,39.5 + parent: 8364 - uid: 25248 components: - type: Transform @@ -167108,6 +167506,11 @@ entities: - type: Transform pos: 38.5,-85.5 parent: 8364 + - uid: 26458 + components: + - type: Transform + pos: -3.5,29.5 + parent: 8364 - uid: 26583 components: - type: Transform @@ -173505,16 +173908,6 @@ entities: - type: Transform pos: -14.5,28.5 parent: 8364 - - uid: 7797 - components: - - type: Transform - pos: -12.5,25.5 - parent: 8364 - - uid: 7798 - components: - - type: Transform - pos: -14.5,25.5 - parent: 8364 - uid: 7803 components: - type: Transform @@ -174175,11 +174568,6 @@ entities: - type: Transform pos: 16.5,29.5 parent: 8364 - - uid: 8853 - components: - - type: Transform - pos: -3.5,29.5 - parent: 8364 - uid: 8904 components: - type: Transform @@ -176134,85 +176522,31 @@ entities: - 0 - proto: WardrobePrisonFilled entities: - - uid: 8546 - components: - - type: Transform - pos: -0.5,23.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8547 - components: - - type: Transform - pos: -4.5,23.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 8760 components: - type: Transform pos: -12.5,36.5 parent: 8364 + - uid: 8781 + components: + - type: Transform + pos: -4.5,24.5 + parent: 8364 + - uid: 8782 + components: + - type: Transform + pos: -8.5,24.5 + parent: 8364 - uid: 9168 components: - type: Transform pos: -11.5,36.5 parent: 8364 - - uid: 9257 + - uid: 26136 components: - type: Transform - pos: -8.5,23.5 + pos: -0.5,24.5 parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 26345 components: - type: Transform @@ -176790,11 +177124,6 @@ entities: - type: Transform pos: 4.5,33.5 parent: 8364 - - uid: 9226 - components: - - type: Transform - pos: 4.5,32.5 - parent: 8364 - uid: 9343 components: - type: Transform @@ -176844,28 +177173,6 @@ entities: - type: Transform pos: -2.5,38.5 parent: 8364 -- proto: WeaponDisabler - entities: - - uid: 8819 - components: - - type: Transform - pos: 1.4993298,39.638985 - parent: 8364 - - uid: 8820 - components: - - type: Transform - pos: 1.4993298,39.52961 - parent: 8364 - - uid: 21784 - components: - - type: Transform - pos: 16.460697,34.505676 - parent: 8364 - - uid: 21786 - components: - - type: Transform - pos: 4.4614744,33.066376 - parent: 8364 - proto: WeaponDisablerPractice entities: - uid: 6611 @@ -176878,6 +177185,28 @@ entities: - type: Transform pos: 25.540077,32.58242 parent: 8364 +- proto: WeaponLaserCarbine + entities: + - uid: 8570 + components: + - type: Transform + pos: 4.4934177,39.504333 + parent: 8364 + - uid: 8571 + components: + - type: Transform + pos: 4.4934177,39.39322 + parent: 8364 + - uid: 9172 + components: + - type: Transform + pos: 4.4934177,39.629333 + parent: 8364 + - uid: 23537 + components: + - type: Transform + pos: 4.4934177,39.747383 + parent: 8364 - proto: WeaponLaserCarbinePractice entities: - uid: 8772 @@ -176885,12 +177214,52 @@ entities: - type: Transform pos: 21.462696,34.988297 parent: 8364 +- proto: WeaponRifleLecter + entities: + - uid: 9375 + components: + - type: Transform + parent: 9373 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponShotgunKammerer + entities: + - uid: 8642 + components: + - type: Transform + pos: 3.5233402,39.390335 + parent: 8364 + - uid: 9208 + components: + - type: Transform + pos: 3.5233402,39.53617 + parent: 8364 + - uid: 10087 + components: + - type: Transform + pos: 3.5233402,39.668114 + parent: 8364 + - uid: 26258 + components: + - type: Transform + pos: 3.5474372,39.816833 + parent: 8364 +- proto: WeaponSubMachineGunDrozd + entities: + - uid: 9370 + components: + - type: Transform + parent: 9369 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponSubMachineGunWt550 entities: - uid: 536 components: - type: Transform - pos: 16.540148,41.51879 + pos: 14.512794,39.540672 parent: 8364 - proto: WeedSpray entities: @@ -177114,6 +177483,14 @@ entities: - type: Transform pos: 2.5,22.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 8605: + - DoorStatus: Close + 8604: + - DoorStatus: Close - uid: 8609 components: - type: MetaData @@ -177121,20 +177498,14 @@ entities: - type: Transform pos: 1.5,22.5 parent: 8364 - - uid: 8610 - components: - - type: MetaData - name: Brig Desk - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,23.5 - parent: 8364 - - uid: 8611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,24.5 - parent: 8364 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 8604: + - DoorStatus: Close + 8605: + - DoorStatus: Close - uid: 9242 components: - type: MetaData @@ -177142,6 +177513,12 @@ entities: - type: Transform pos: -0.5,29.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12663: + - DoorStatus: Close - uid: 9805 components: - type: MetaData @@ -177345,27 +177722,27 @@ entities: parent: 8364 - proto: WindoorSecureArmoryLocked entities: - - uid: 3898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,37.5 - parent: 8364 - uid: 12663 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,29.5 parent: 8364 - - uid: 20159 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9242: + - DoorStatus: Close + - uid: 25744 components: - type: Transform - pos: 2.5,34.5 + pos: 4.5,39.5 parent: 8364 - - uid: 20174 + - uid: 25747 components: - type: Transform - pos: 1.5,34.5 + pos: 3.5,39.5 parent: 8364 - proto: WindoorSecureBrigLocked entities: @@ -177489,6 +177866,20 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-19.5 parent: 8364 +- proto: WindoorSecurePlasma + entities: + - uid: 26255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,37.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9517: + - DoorStatus: Close - proto: WindoorSecureScienceLocked entities: - uid: 2317 @@ -177560,12 +177951,6 @@ entities: - type: Transform pos: 16.5,23.5 parent: 8364 - - uid: 8436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,26.5 - parent: 8364 - uid: 8483 components: - type: MetaData @@ -177582,13 +177967,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,23.5 parent: 8364 - - uid: 8569 - components: - - type: MetaData - name: Holding Cell - - type: Transform - pos: 9.5,25.5 - parent: 8364 - uid: 8604 components: - type: MetaData @@ -177597,6 +177975,14 @@ entities: rot: 3.141592653589793 rad pos: 1.5,22.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 8609: + - DoorStatus: Close + 8608: + - DoorStatus: Close - uid: 8605 components: - type: MetaData @@ -177605,6 +177991,14 @@ entities: rot: 3.141592653589793 rad pos: 2.5,22.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 8608: + - DoorStatus: Close + 8609: + - DoorStatus: Close - uid: 8624 components: - type: MetaData @@ -177631,19 +178025,6 @@ entities: - type: Transform pos: -4.5,40.5 parent: 8364 - - uid: 9245 - components: - - type: MetaData - name: Armory Desk - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,37.5 - parent: 8364 - - uid: 9391 - components: - - type: Transform - pos: 23.5,37.5 - parent: 8364 - uid: 12330 components: - type: MetaData @@ -177658,6 +178039,11 @@ entities: rot: 3.141592653589793 rad pos: -6.5,40.5 parent: 8364 + - uid: 22453 + components: + - type: Transform + pos: 18.5,27.5 + parent: 8364 - uid: 25738 components: - type: Transform @@ -177669,6 +178055,18 @@ entities: - type: Transform pos: 79.5,-4.5 parent: 8364 + - uid: 26253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,24.5 + parent: 8364 + - uid: 26254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,23.5 + parent: 8364 - proto: Window entities: - uid: 526 @@ -178646,15 +179044,11 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,32.5 parent: 8364 - - uid: 9383 + - uid: 8778 components: - type: Transform - pos: 22.5,37.5 - parent: 8364 - - uid: 9390 - components: - - type: Transform - pos: 24.5,37.5 + rot: 1.5707963267948966 rad + pos: 4.5,39.5 parent: 8364 - uid: 9824 components: @@ -178671,11 +179065,6 @@ entities: - type: Transform pos: 50.5,17.5 parent: 8364 - - uid: 12030 - components: - - type: Transform - pos: -14.5,3.5 - parent: 8364 - uid: 12223 components: - type: Transform diff --git a/Resources/Prototypes/Maps/box.yml b/Resources/Prototypes/Maps/box.yml index 37314df130..e74e47eeb1 100644 --- a/Resources/Prototypes/Maps/box.yml +++ b/Resources/Prototypes/Maps/box.yml @@ -46,9 +46,9 @@ #security HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] - SecurityOfficer: [ 5, 5 ] + SecurityOfficer: [ 5, 7 ] Detective: [ 1, 1 ] - SecurityCadet: [ 4, 4 ] + SecurityCadet: [ 2, 4 ] Lawyer: [ 2, 2 ] #supply Quartermaster: [ 1, 1 ] @@ -61,5 +61,4 @@ Musician: [ 1, 1 ] #silicon StationAi: [ 1, 1 ] - Borg: [ 2, 2 ] - + Borg: [ 2, 2 ] \ No newline at end of file From 1110397b30a816f79ec6d68bf5fb7b2eaedb9f5b Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 31 Jan 2025 07:24:11 +0000 Subject: [PATCH 026/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index d2a6cd06ec..bd39724b69 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: DrSmugleaf - changes: - - message: Fixed examine sometimes flickering and closing until you examine something - around you. - type: Fix - id: 7382 - time: '2024-09-16T08:51:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32205 - author: ArtisticRoomba changes: - message: The Bruise-O-Mat alcohol vendor has been added to the nukie outpost, @@ -3909,3 +3901,10 @@ id: 7881 time: '2025-01-31T00:10:36.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34591 +- author: Nox38 + changes: + - message: Rebalanced Box's armory and increased its max security officers to 7. + type: Tweak + id: 7882 + time: '2025-01-31T07:23:03.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34750 From 60c3c8f147ac9461f14dfc55b776084657b0e56f Mon Sep 17 00:00:00 2001 From: FungiFellow <151778459+FungiFellow@users.noreply.github.com> Date: Fri, 31 Jan 2025 04:53:30 -0600 Subject: [PATCH 027/313] Removed MoMMI from AI name list (#34785) Update ai.ftl --- Resources/Locale/en-US/datasets/names/ai.ftl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Locale/en-US/datasets/names/ai.ftl b/Resources/Locale/en-US/datasets/names/ai.ftl index ac6ce0d83e..eaa268b3de 100644 --- a/Resources/Locale/en-US/datasets/names/ai.ftl +++ b/Resources/Locale/en-US/datasets/names/ai.ftl @@ -73,7 +73,7 @@ names-ai-dataset-55 = Hivebot Overmind names-ai-dataset-56 = Huey # A play on the fad apple spawned of putting "i" infront of your tech products name -names-ai-dataset-57 = iAI +names-ai-dataset-57 = iCore # Hell on earth (web browser) names-ai-dataset-58 = I.E. 6 @@ -99,7 +99,7 @@ names-ai-dataset-70 = Max 404 names-ai-dataset-71 = Metalhead names-ai-dataset-72 = M.I.M.I names-ai-dataset-73 = MK ULTRA -names-ai-dataset-74 = MoMMI +names-ai-dataset-74 = Monarch names-ai-dataset-75 = Mugsy3000 names-ai-dataset-76 = Multivac names-ai-dataset-77 = NCH From b07327cc2f9c73bf1ec21931586694c6c1af19a0 Mon Sep 17 00:00:00 2001 From: SlamBamActionman <83650252+SlamBamActionman@users.noreply.github.com> Date: Fri, 31 Jan 2025 12:59:38 +0100 Subject: [PATCH 028/313] Tweak pill eat delays (#34764) Initial commit --- Resources/Prototypes/Entities/Objects/Specific/chemistry.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml index edaa828814..7cc09a9008 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml @@ -531,7 +531,8 @@ sprite: Objects/Specific/Chemistry/pills.rsi - type: Pill - type: Food - forceFeedDelay: 1 + delay: 0.6 + forceFeedDelay: 2 transferAmount: null eatMessage: food-swallow useSound: /Audio/Items/pill.ogg From 9edfaa66b6c8d337c3d9eac1635c467eaf80b501 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 31 Jan 2025 12:00:45 +0000 Subject: [PATCH 029/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index bd39724b69..d35ae7f68d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,13 +1,4 @@ Entries: -- author: ArtisticRoomba - changes: - - message: The Bruise-O-Mat alcohol vendor has been added to the nukie outpost, - for all your pre-op drinking needs. Seems to have developed a witty personality, - too... - type: Add - id: 7383 - time: '2024-09-16T08:59:00.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32107 - author: ArtisticRoomba changes: - message: The binary translator key in the syndie uplink is now correctly marked @@ -3908,3 +3899,11 @@ id: 7882 time: '2025-01-31T07:23:03.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34750 +- author: SlamBamActionman + changes: + - message: Forcefeeding pills now takes 2 seconds (was 1 second), while eating them + takes 0.6 seconds (was 1 second). + type: Tweak + id: 7883 + time: '2025-01-31T11:59:38.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34764 From c8c0821a23e714d732a0bbe5aaddbc1b460c5b3c Mon Sep 17 00:00:00 2001 From: Jessey van Hoeijen <114107545+LMSNoise@users.noreply.github.com> Date: Fri, 31 Jan 2025 15:43:07 +0100 Subject: [PATCH 030/313] Fix stunbaton component namespace (#34790) * Fixed incorrect namespace * .Components was weird so I removed it --- Content.Server/Stunnable/Systems/StunbatonSystem.cs | 1 - Content.Shared/Stunnable/StunbatonComponent.cs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Content.Server/Stunnable/Systems/StunbatonSystem.cs b/Content.Server/Stunnable/Systems/StunbatonSystem.cs index 97dd2c7e73..1e2494203a 100644 --- a/Content.Server/Stunnable/Systems/StunbatonSystem.cs +++ b/Content.Server/Stunnable/Systems/StunbatonSystem.cs @@ -1,7 +1,6 @@ using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; using Content.Server.Power.Events; -using Content.Server.Stunnable.Components; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Damage.Events; using Content.Shared.Examine; diff --git a/Content.Shared/Stunnable/StunbatonComponent.cs b/Content.Shared/Stunnable/StunbatonComponent.cs index 1df009f780..b133679cd3 100644 --- a/Content.Shared/Stunnable/StunbatonComponent.cs +++ b/Content.Shared/Stunnable/StunbatonComponent.cs @@ -2,7 +2,7 @@ using Content.Shared.Stunnable; using Robust.Shared.Audio; using Robust.Shared.GameStates; -namespace Content.Server.Stunnable.Components; +namespace Content.Shared.Stunnable; [RegisterComponent, NetworkedComponent] [AutoGenerateComponentState] From 6a5a5c74cce654be0fbd7eb48dcec3c036c7a46f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=81da?= Date: Fri, 31 Jan 2025 08:56:55 -0600 Subject: [PATCH 031/313] Criminal records bugfix (#34747) commit --- Resources/Locale/en-US/criminal-records/criminal-records.ftl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Locale/en-US/criminal-records/criminal-records.ftl b/Resources/Locale/en-US/criminal-records/criminal-records.ftl index 5c39a8a2ab..20eb160c13 100644 --- a/Resources/Locale/en-US/criminal-records/criminal-records.ftl +++ b/Resources/Locale/en-US/criminal-records/criminal-records.ftl @@ -35,11 +35,11 @@ criminal-records-permission-denied = Permission denied ## Security channel notifications criminal-records-console-wanted = {$name} ({$job}) was made wanted by {$officer} for: {$reason}. +criminal-records-console-not-wanted = {$officer} cleared the wanted status of {$name} ({$job}). criminal-records-console-suspected = {$officer} marked {$name} ({$job}) as suspicious because of: {$reason} criminal-records-console-not-suspected = {$name} ({$job}) has been cleared of suspicion by {$officer}. criminal-records-console-detained = {$name} ({$job}) has been detained by {$officer}. criminal-records-console-released = {$name} ({$job}) has been released by {$officer}. -criminal-records-console-not-wanted = {$officer} cleared the wanted status of {$name} ($job). criminal-records-console-paroled = {$name} ({$job}) has been released on parole by {$officer}. criminal-records-console-not-parole = {$officer} cleared the parole status of {$name} ({$job}). criminal-records-console-unknown-officer = From b2299bf0fa1aef82e0f4f210b4359cbf21178df0 Mon Sep 17 00:00:00 2001 From: themias <89101928+themias@users.noreply.github.com> Date: Fri, 31 Jan 2025 12:41:51 -0500 Subject: [PATCH 032/313] Update shutter sounds (#34774) --- Resources/Audio/Machines/attributions.yml | 5 +++++ Resources/Audio/Machines/shutter.ogg | Bin 0 -> 19901 bytes Resources/Locale/en-US/shutter/shutter.ftl | 1 + .../Structures/Doors/Shutter/blast_door.yml | 9 +++++++++ .../Structures/Doors/Shutter/shutters.yml | 10 +++++----- 5 files changed, 20 insertions(+), 5 deletions(-) create mode 100644 Resources/Audio/Machines/shutter.ogg create mode 100644 Resources/Locale/en-US/shutter/shutter.ftl diff --git a/Resources/Audio/Machines/attributions.yml b/Resources/Audio/Machines/attributions.yml index e5756369be..12a46ae1eb 100644 --- a/Resources/Audio/Machines/attributions.yml +++ b/Resources/Audio/Machines/attributions.yml @@ -191,3 +191,8 @@ license: "CC0-1.0" copyright: "by AftrLite (Github). Uses audio from hypospray.ogg and hiss.ogg (Found in Resources/Audio/Items)" source: "https://github.com/space-wizards/space-station-14/pull/33097" + +- files: ["shutter.ogg"] + license: "CC-BY-3.0" + copyright: "Created by Tomlija, converted to OGG and modified by themias." + source: "https://freesound.org/people/Tomlija/sounds/99565/" \ No newline at end of file diff --git a/Resources/Audio/Machines/shutter.ogg b/Resources/Audio/Machines/shutter.ogg new file mode 100644 index 0000000000000000000000000000000000000000..f3430aaf47f900c3923ef66e459b04d370e87c1f GIT binary patch literal 19901 zcmagG1yo!?vo1P=dvJFj+}$m~-QC@tUZ`ttjQg0&9wfqCzmDXVB=t8 z<7ML_r&qJI@HDq|vL=^y^0IYvc5<|I@&LUG0mA;{0g{l^0s;^qJ?skP1Hs=DGywo~ z0KkMAgqCb23n~E@(EFx?-@Ud5*do)xkpuYVG3zp)?<&=6HiQ2EB|Iv z#p0gklvdYJ)P!7~hT2}1i(a0KUIDu4Vft+Wx@}?lKf(-e!%XqR|5N@1Y}~$_*6`dX~2!^ ztvlC{yAY(j^^h6?D@vQSBw0g zuMdCm0#Sq_$12q>7=bgv^siZhA#Cvr5F}ClNrF5OQLsy%`91S;f*&n&FTWf+Yqlp+ zBa5!RJU#2L2OTB}b|Ah4jb;qwXME3epOi((Ecw^+#ms`QE}wz)5gcTr4HB3_p0l0F zgfCyxfsEDtp1EJvjtyx=g0twF+cp02`wuM2jj|_u__rVRtvieCvkAo4 zzW*IQVi3QX{=gs1`A8lR2WN&&QA&|a>Jg8YoX4PK7^QC<=NMypt*ZJa1&-_b&?QmWAt+|zhM+jMc|X^^hX0*? zN%MjpV+mMI4pj0lq99Hsw@46&BlsI6;puLppwEz~_@9oupq|1Ynf@PT>KCypCJm%a zb1LfCNqG-P$Kb2BDH)2wc-rZ#BVO;ORi}wX;m&obsWQK9M4%?OLZQ@S#HZ&P0M*N z%cT}e{nh~8mj49Izp&X@^!y)@^BN+Q{Bb+)l3@N<w_JLk#L6jrTtt004YTK#~8uj;N|J&#Q6It1)Y82>+iW211?Z zQk><27&Zj}AOHZUAWjZNk8(?pa1z!*VBe>PE#QYM=*JKJjLwO|k4ov0AWkRTmc-wO za=EESk0YfJ5=+AyM~>QCY9PDEhX7gjU;wHBKrs6-dq2M0r0ht()FeA%4tSWKt|WOz z7Q~#2&k3R_#Wdf^E}D@YDF)-qN97b_nnzYc1_9t9ALN4X2{=G8YyiLvMGXlQ23DH{ z?I);>vhNYA$?<>AR-fcYAPF61hsy~;2bB=3PlASsL&wGUvO~U$(*pqH-++*h1U;99 zGyt6ru<1fQmCPlNO(TybJ%w$#h^4rg!ZpFgt*W6phNU^Lp}B&qsM$iJh^44_rJ;!> zt%;*Ko2sbU>^Q|`xul`FhO0T>V!47FsGaJ$!KtVVxm|!zJr`30j29dY)BnRt5&JJI z9?iuTZdDIWRZUA>4NYAyOWj*d?S%k&2vuEi2}e`2MRV!eQ8P7Q%R|#p+j8kvQx`W- ze=%(9CSVKymGk1fCxmLcU}@Uwxj}E6X=_(lR*^|xQBhve;#g5rtzY=FqOfAL!MdWR zYP6xYvc};ULaiyQXke<3|si>)`Y&dzP zc2pk^x*m71`ImymN-K{#$~!uojyqh(TO5gtDvr7s#(L{U8_thASera4R5d-s<%!x|g~yQ?2YAq-~z@J~4tw?l?CIuSwo1}_;!P5I(VtTQ1qt*Fkbs61|P zV(hCrmQd9UFif%B;5F36bK2mI(_f4&tT^gm80&%vVqYC}ChlY-HeBI>5ONx-kps+! zZxN^LR|Z`l1a@vbi)v92hvFgF0KQ@aYgDX&f)Og14+wyxIKWm%XBZ&&Kvz2=FVC?@Pe9sed(OpDS0ujoGmkW zM$fK%a854lLNkY9`@Ay-n2EicEcH4XuC(Tw=J@?uPN+45!x ztCC_|c{%nLY<(y81!BmEVoZHm&>*(DBlBP;)gU>9)yS*xzcTjH!4Os%AxUy_)hS78 z`0{e~&A9eX?E8drw$-n~%Lj1v;~>J-?YT=A>|P1_j=~F>?sC-&b84{= zg1O_@`ONp{|E0N^9rNIVS@o-MhWeBwi17Voy%>J*j2VPgl3EO8guX+2X{sHBkf|2k zyua-3z2pI z;Cgwxd zOelcw>zXOY4_^S50S%Ialhh#MAS#u+p+Iamp!G@s>z$B8py9yng${w$pq`{$^?;6j z4MoX{~smFA$b;t7UbJ{ z5T6L)Usf)I`S;e`;Xg@w`oG)%k+c7=?EU}L(zmaMK<W@PR}$SWhm)T}_RFrX=-s>6p`# zV}|gCrzu%bvx7(xKqzUNdlmIV{2i!dK`)va5^{2oTeBGMa5cyy13%2F*o$Y>An}QB zUIhstJ$uO1?U_N%3uZCR5c@+`hy}A~?gc$$z^0Q6AoyLKYj{d=WAF6lUtd!|l5L5< z)_&a>s6l*@|B4n0DLDwLUNJ%u3UR}~zR-mK?n4(i_y;Wrpbq{$2Ud~z3oV2KNFRs< z0y6r)EgDD*@m~V>7mT5pkW>x~;ry=;j0utPH@yR^y&@7~npeVKsQzssQoNe$@52=T z#=ho)5Qsv*uEJD5sf$J_9k{l7p;c^#(U$a_oIoU@bZN#E&y>Rn1=GkgX*-0)P#jg7bqI z5F39OA}ACF1jw)Z_MP1T24)wN0|^CbDAaw%78-yaI*gJSp@V{nRq>(FOaP!`U@{CJ zj1n8$6pj3o;~T8uswa6UISfU_01!JNI0VbdXB$E0>Zzo z3e4a3zn!v}%s=w$PWe>~#()hT1uMtF;yxpYo{p1ecXe%kbM5EU!t%lz4ILv5Jsm3- z_qqWs=xyng7aB^CGr;L?kbQSJ#-2Jz>Q|u>yU1C0G~@kBa;_9q#m~#vTE*$Yjp%fpwfbauo~?P%4H=H#eVU=-v6XKc!@oH7!5&A=9HCB^ z-$&30H+b)S>ol2VIa$rcnh0-18gbZ?Ww_b$&shtW)MYYchS`SPW)%XPbdZ4!Y3b#PK+D@hCGTaN zsp>CaAzv+YIWl|2PHAhp5`EOJ%+OM(Q@G$86hbY0xbHW+QAQpV1yWks>(2av_5qIr z@w!1V0dRSU`|BH9^BeH@S2^Qcr37=vQ9@&Cia13dKjhhH_|qV1$e}d0>UYcL_@a4YS0zWb7w{vo{O+3BD*df+2_Xf6Xr-%&FRLm_slo(ELbvDI8M%< z`Wa&3=Mx~cm9+j^>N1-i`^3ZKX(${e!Wz6CUteia@##;u0-bf}Q`ixcG_a0hc)P>I zO7;Pj|3K-B>;@m~5n}DP%y2&o3aA<0K^o>72E81hJ^d!*fk%(p@_7snENv0X#@S zgSVQ^tRIjzr-*|Q3u)QalB=4j&XC_K%#V-NsHHvWeO&U!Qz6Vl1kaCylICOSiD6H-K4$h~ak zB9Yq}zYN?k-P;rmt45B`f%7NyMATpjPRJpHX|vdpq`6u@>X;8aEX8)L&FS}elKePX zI4X7tv>+ugGXH4Lh$_VdsQ_ALI7^kn#CIXR^{wTg z@YQ(mKDaV?XFjzA6#ha*a-S{SK@v4b|B_I&;1!)6uJn<1zQfi{FGS7gcw700qV*Q? zEi`Q4!Xt~ebZImn^P4m)omtfC;W{V*Q`~{+rr(y#Wt>d*ewnrrNZ%8PR3Bmk{p<9l z@hC?wBt{Q@s8Ei4Dc(Oqc1QW3R6CfsR9EDuV*zD#=j#LuK$8fU&INs&O24R9AZ6icL_};yjyqTMF#`&d$bY?5DhG1Sh5~lI~Lq5;{~Iu(?j~uy&;`?LF@~ z$th+s-koKxm5z=;X2SVU&krN6Ll{e*nqD1+L~WkrVI=S=@y_xFp=Lnvz~qa}d1j(H z+YgcGJCg>9KeKHLVes$muJrVT`_9c5;f*>S(9xMhP4wKJW?)?aB1GIY11tz85odAF z^rQ+5ijrz~a$pRkgZ;+xDdnja>-DJ#;gjxGgUQyOwTIH9Q@Ywwe}*}ZbW6pZdjo_Y zR?tmMTiw?4JwE7Ek`#KsRVMw0<1ujo1OqS(myx@8TscyBN9p{_QHfx;1$njYpz2lT zAAYBWG*7|U3k{)@#udfj#Izk&X_{b$2HfS54vy=-d3_aajHHRtimm#?SS;1KU%C-% zoYP6!g4c#pglvrS$p|F()Cmc?!@C0~Dta+hC=y64B82VT$M7+{v-F3uS%u<7Nae27W_Lt&fqTwI1AtTM^5>yrX(R1kSFFbF=oMbm)Zy>}_Ij zjg*-FDI~^thwb#2TQF!{!`%c&BO6Q{oS>}#6oVor_6~?GBI1zV8YB!Al2mBQQMaxW zck+{%Zv(po=RH6C5T#Yl@2sg|3w$>ixmzJ;;ly0-l9|)xy4z(G~5rvd;5Wm$>$=mm8-VLz5Q z@7u;6U#ki{bPpoOkJ()YI8}=fE8SOUcxmm+BIK5;$4+85|M(%no@8d#6tZ~-%jE5- zOxYW#}h z)+~)7UEH^JXW@v@1AQ=AG5ER+SZang3DDz68RQZpN-uu0HhpTxa(C=3sj8-7kX*t( z1h~xdGQ6{TDQ?zT%g4JWkI+S;?Oy4UPipN~wC(49RdSUJ5P86^0UUqEY3yAiNkLUy zL&`5D2$lt}(x=jJ_Q9_`o86pFct01@DW}3K$G5&rJ?RfwO+;@v_!_2iH1Q*i_+s{O zajt@^UEdeokk&J-hVpC|59cxkl$26qRe^j1`LS9fY;*ZwLQ3Gx<%;c`M@{OMW!9HO z)4pBw1E$ZWvQ`uoamv?M6=`h7k0x8C1MnP6H-k;>EEd@9oB874&RGKNNysCk-@V)r zzE#4e>^rx~0Hlm5T{0|Cus?IJYzQUfOtOnL-KaBA*kG;B++$8A<|sH_J`)J7vOns) z{PHoSs;W_#R43mKU4(}hG7rnLB1z`{q;99*^3nNsyCsUvIUz7z2wc_5MEBM{vfw)_ zdJ8qkYOX1M#g9zf+58vGWZS!TlO(jPkG{$}Qbn{q$AbaXg&Y~b<($zo3UVJ}cyLah zMtnwRZK#iFxX4T1)~TO=RuP{yRZ^T`b2!v}R%t)=Ao5Oc>ddVn>m=y*dosflA%`1q ziQZ%~>oe`kwh3gMF9}UHfjZx>c_DBv{!l+Um1dwsR9eQ$)F*I%a(T2;6Q~=v5jgO0 zaV*#sM)fJ__`4ar&Ej%?Px;A4D49>ms!{cs;330wrOoA1?DP~F_t(q&>-+_^Or34Z z7l0u4!54o0-6hu*u@;BE*w6>2Cz`X=(RnDc%8Aj1#+8A3Tu0!h5=>_fDO)hlhD{Ge zb|FW~m=f5pqiNC#p@b&3<>Me!($j=#a|*KBY`ihM8}}?e~GamFErY z@NTObqjx#00c|Y=JE0?f_O`ttL_%Rp$MmXqbL_TOryfEMX zWaBR$+?6>A277Q4`~-zv3WUFdC12rx4$A8`w2t6m1L7jV7JhUP1BQ(yS;*F*|SDp&6z9UfBHMf%?YZ9q`3!+k7HjyEy9Omk*YS5>5 z7)*Zqp(2Jdtb4q@hAWj71;1K?m=Ibj{KFfHKKHCmR~wNI4oxCvkRp*tjw+eTha`_> zL*qMZ)076`kN7N7KaCE7D%j2V?-QFwb@h%3fa^P?Z=zbfiO7uC@`bW7xdLvpgk-0@ z0&$_`Zdd-qJ2yHc^C2VhMz&RcoiaDftU61ijtE|a(-q@{Nz{I(9_GHefujRt%eVr> z6SfR4k=XdiQSSzgmNXPyz69Y`OgJh(3+t(ZBcoz~266$7Z14y=P5=zVX2jKE_Tm`p zy0C*7uVVWG(vgPkYV}y6Ybgv1y?{@4tkXgkHO)YL;yE}rQ(27jSbtw>rbmJKTH&La zt0^18!1Y#ZNmnkyr+K*iZv$B*1~auK`%Lw)IID72?-FN(^k!KO*9f3bBgI7&Fg>Tg zeFS{bmV!<@A@~7bHOLVjWO7>fzFrvJotSllGa!hOBcKbaO3f00Ry1z5F8eJcf0e^d zgBM4@MC@j+^)H^II{7rwBl?j4WKv-bL;8A+Xr}4t+ii2fC&ZFV_s_w{0hU z(RjP_kMP?Yz9jsJz0omad|)x<2k60uxDg?F^0n-7ZfoD-&$avLtvlYv2j}+6SK7Z= z`MZc8bBgcsdUjL~;B3BWQ3Et6qrn)5rBEx3SoCi!)^nF4I&mgaL_3xp2@cq=K2agy z+Efsb4PGgq$BPi}U~Q~Qa5Mn~?lnAMCs6?}$=5zyH4M!WXiy3tD`Z4#tMDBAW#q5s zX5&W89G-RUFa5pSNTO4`>~2_!7t;ApwH)kuXPojf^G&x{r8W=uat(HdC-}#Sr}}SV z#aHVXv>I7fBLvl(Nb~E1>Ar60-qeG@4@BdoE_05jN+IWuv+DVI3c@$xycB(PsU2s_7 z+v81pPSa|g?{=`BZCl~rjO;eE%QsMbY=AuVfYqrxY`}kxJs@ZEuh;9b2Q=jG5q45H z(a!Sp90Q1xi{pCn`z}2#BMay8!sgn>+QQ-z=?b_Z_$Eyz(#1)+UtlR8NV{bPHtf<| z_Cw*WH6}e+f3kL=V`aKEzH=idl|!@NH_TQ-c`Hvc#K2leF(kqdSVx#VT`3t)fnL;_ zp&@r2gtm}h?^qkXK>&VnMAR)7*}I#Eha;?mOU(Qf{AFyxS3Sukhq_skLyw5eH=LUM z+DVc7VU%e;ty%4?UhgYQat+UX;^(BOXU&e@lR8-J-y`Ens#Ofh55>^i?O(}(>@$@h zIM_qYifBogcP=ATrmb?Y9bF=}O++1Eb6U>iU-~c?&ngGFjep=vjLUu|Ui5z50+fag znpjyKycpHoaQ6Y0jZzNMH0Uid%+4!a>u4rKH+m;qtO5c=YC6s~bg0w#)EgUCo}{m% zw)U4fCFRteQ01&$80ni6E4J6B4LB7s#EC%PWMlaaL!y~a_r}!A3F(Bl=}_LepB`2^ zgNB$--q43nhnXz4y1jH^D|IS2SL3&|a^QIba72IF)j|Kl=vlxQ4IiX}9pw7j-*+QA z@r43?|FOD)`^yaHr)yrANf~tfI=(R?DJLhgeM&t-Z9zh+5wc3FdFii7ZVlb#P40)_ zk_z!|pa^4igABz!QpKIKTUr38*zzGgUA2}TD2iyK`{6)Z<9}|*BdHi2n z*BN~$@k1;A5VrIkzGPn_UzPngPUJ{sw z>JlHPAs-rwRuB#(UAM>#=_2aS!lJ?~$ZhpBwG6n7b2q$Qr*mb|H~+<&oSG~Hdxeza z`SHSTlU-&V)*&iN#&6Uh?jRyq>d+k5QFRI$j1Zzwg2vM~I$C1HpO_dO;Gnb7X=HVo zYPpXuf(5uC7%+pG4XlbnSre=sPbcxbvDzO5=aVG=X7Eep=A3+{<)3(pC%SEHqAB%F zf1m7pZRPz-4s)d(HIki`l9A|>CcCglSBGC76vA}>CQA0_GN#mXL)GS4;)#QrIhWiP zby~;wWiq-o93mUX#XQW#yBr`?Cy%_BnLWjKhe~A=cM6{ejld>}w=IFPg`5QZg|mmB zS@exB8Q*=PK23HZWi(>lUv2P2@CX-fM9>BM>0%R`wIlg`oqGy4$-Z1{d?4Tg_06pU zV24!q!WH4O`DlSsBEquuSQ;0tKvEcP%!|38?RS>?fm^_&nlF3ef{Ajy1hPq~82AFB zfEcw%nsA2nwr7O~xL%qOGedVK*-=vKA@O)V;&w%udA_P3g=}tnVW?0RS1tNpI660@ zjc^HFr?nHJknN-2BY019IU*~6{Cl1=T5*3yHsFZ_wO|8~ai8KWf&QenR(+TQvf#^y z5kw7+C&9geWR&-K5f~EFWQcA?jJ9KMZ$e|ToD@c_GaqLjg#B!UfT29Xq4d2=PIA>E z?H`zO6`Wh-CqwyF$rdG3+ z4Y7MG4W;0;+l~<$vmq}2Y>gZ$$H9P|NPf94(-VrWnWo<(LCsbA%2&sI{l~n9nS_`5 zHm{0(YU6o4^a|~>Xy0cNTM3;*CGDRk%lS%8&P}X-gI*|ocN&}yA-@;txzgr zQuNEIU!qG~Jgu}VoNowpr|(X0AJcE5(b+x**>5R?$*Nm87t<)o_atw;sLcpp}7x$4WX2_5CGeAE$%+4O%!& z!6=uAD%pzXQU>cMMO6oJ6NVQC%^y;nY3;tM={tUmyZ2;Qry&!X6B6lZKNfU#krxK- zJ3(S!KJ?+FmZQK)p46yLWnhN16XpIws%;D#+1>OMr(qL0=5j^K5m(<5Wz_nJ$fiY< z-0#PZp)hSkW^5D`;LZ}%budf($VS}66n|SCf>z$H*N};PR!F;&-|n1kV(>_WeUlB- z9&sSA>(CY-)Yio?#8G`Yy%!$F+F&Y2YsNP`_g!pMopR~fgEt`pUd&E;!CV~v$)K|r zcW)t`ddPUmDwuW7Q1^H0VG3=HgsWYHb*+BquyD&AqdnGE%~wNOv1^$LdS8{f1=A|^ zFDwZ&nab1FH#=JV+p6tlJEY}O_^_RiiGh$`g^^GEY2T5gF6|!T3w(@>Jo{?cmorOz z?W-t-31yx_#(0$Q3wy`+{iKOgcRCE`C3jkP!28PX#QUwu^J7pZu`p50wr4ev$;s5t zhj%(jgfWH$y}A2fx?{`TMZ0m#dRM_lu-2DXT`}_R0yl=TPaVaOUhKWmO7|DXE>c>! zwnvPavL{>Y0NBh_TEPyD=;euGdV}cIvR_u5KG?$3f*tQA<>TOC$Y2gNnPYxA97!vi zme5|JyoZ8~Mxnr((?74E$wF?N494Cc+Xvb&UL>hH$258Fe7M)Q`?Jf?7#_*5qt#Bx z&!Pqes8Vu;Q)-?e6q*#|Oo-5!s@RvMQ2?$|GAQG^=L~Z!7Cn$lfb7gVsW>%=W@l%gW1kE?T>(5;p1Q=$89zMnK z$v@J3kTVU(wik;!1PQpvXhRwUgn~*3-R^{c!wQY$2U43d!utM^f~{~_x`+k&JJ&Ix zVOfXj{aDCcNKHa@zvUBFi((9i<&7DU99fH%DGlc6Z;{E^m`a!AX!-8DSqY4z^juPn z>2l~<%l|GyF4ZT6Q9s_YeWDG|o`Xgb?k*L!*pHWrp+9OpQmAn=Wo#QL8oE*(>pL9D zB`=AJRQM*Fzgt&UYKBMy!iz5A_KUB2z&0<)YB%YCM!st7jegGUXuBydyz zCSKZsu!!zGOI7nwgNKi(c9(+4-O<;T7ym%t^JP57`_G#{7J?RE0?!>@h*)}ux0*79 zr)@ZrkOq}T>Ii4=C5>jGq*jP`I9|rS{M?!UVH;_v^-Jd*W=e53PHu}*c#mX|u7>JT zu`jzpLxZgfGu~>Dd5JEk*;&ec3bT1a582-A-Hf?OPn;XyV0t)`oqOHR=~RX_$Gn$1 zJ$Wbd=Nbe&J-v(CImOHD9Mc3<8eZLIHQ9E;&l$rq^}%b4zI1*fBeE*Zg4VUs9hB72{bCE32RBr`PcYvJ za4GNf$TO;xcOLzS*DM|P6fu(q-)HQfhXyYk;H|pggZ39?y^mD~81$^u+-IrYv2FYoKFsAQI*;JYMLD+q ztgJg7c?>!-7fieh>uw};^5usuE9VPYYx{}VHA+1|{J`+t(`xa>;eH6;Bx&J?^b$fr zhMCVv^R0DW9xFT?(_r%2*eA8U^|d=)_1}z-J9+W6u!=hrAv&#w-`nZJ-2R9zDIocf zNUkt)La&Z71*vAqok|_3EL%uYa{XGxrg{_QG}igJ(lOGH!t8|^XEPTkLEE3Z3iEzl zjg2hrCvn#BG}IqonTe~oZ*;!lm@KK55pv9tGs&k(%A2lHNCcgI)mnp;jLAU9pD1QL zJD~Ujjra@88t5SJ`qqTGu@4Sq+KZqK%FWB)=bwWugPdSfNpj2c-(0zJ`tK=xmtrtt6&srxXeo=9@|OJ>CBv3? z#>%);ihZc^;lC4V6ybfNVWB4*K^3)i)M$cwS9cVO&rkXB zu}!7YdnwLu3NDnoarh!$ewMfkD-~#H0Q7J!Od;lcId+0Z?X}^k8WKn^-D5=gul=c9x7gAaH4&ulwrw zQpv3qQj;$hLG)pswT+CcC2UFvr zEk~(Z)PO&1-v+uymV3fgdwsmTjjtW6VJp@8N(q2V-ynj|w$BaI*Yc0Qcsk6_&tpNj zy@cn*JO>g)OXO!m8Ff$}Vhe;6Q?~L(%`}rbA>?<6B!g?K$#Hgy0*1R+SKiYhJ`}w_ zw8PhrahyUUa_gD@B)LTIy;JJFScWb0S(xXSD3R^68 z_z+>io0VnNy$%bc$_d)$o5#b77;Br7_cyFh0eD4+(Bt-Rsy+qw#4U{1fZa-wz3fXZ zCGWY-a&1a14L?#@(5!VDW2-YzLyj!x-B7~BfTz_ysDnV-d5a;jOq(s_-ulP+po7&H z*JE&Wt z$?q3c)_Y`jbec7h=Dr1R^}3k(;&#GL&!m-wK>dg8rsVwA={LK=_~2Y6if{*R8|Gj<|S;T0{%-*rjLc|uKT&2V>dTu_E#mRaYN(3`e}a&R{Kj^TXQ z5t~|~Qf7%NoDTg(UAR{p$*$20?q>05tPeRmra=GC>BPj}!->DA6R$68Sm#Cv@hndK zprd1;XXEDPfYdz4oP1oYOq{G+d+U%FH9(9U99$=i^z;mLY@B>dkOl}u%f|n6Rs`A7 z4;8BiuzdWqUGY;)usUgMM2Vl4_;{y7^!olPW8&P=xH#2Q*jK>)NwP3%w|_acz)DWM zsG9r&-g&wAaqDf9DQC4OxNILLuT?IUTrLqV=G3+3eDqwUh{p_u7g%0jL9P9G7~+mJd>D+*9HX18%S z4TYfrMvORtXq?}^^$L$MXa5A)Rn;-h-$xZ=A1rx$r}f;j9y~st-Ly~B+CKDqH3&DY z+VuaP&&@si)oMfs{E}kub=xofR|EnHn}aulpqkAhezeB_l{O+AfbzwBo zaq}oi7_O4`Tuu4O5G!fbKDRO>OpF+nN7EsJ!bfiB-@u&`xS3V&K}K&a^QAw+!d|qP z4gfEKFeg-DG3c9U-i^UN*E7DOGj0k3-e8e5bah=?SvgZCW4KtUQl6^A7m`O(jxRK4 z+M{8*wk%gvh~WpE)!=-aYqA5=!)F*I{ZJP{uXgWLtEf4WioqSd8I>l)_rfxHd!!+4 zT(T{_>v>>NYVomwKNSfK*UF|NSF*6Qzf}^IgsD%BSA>kmvv}f7J-m$BhlyKEF0ou^ z11=94+ULK&VHX)ev_APMsw>l4hSsLRH>EYmO+nPt;$m`CXJ$b_77HpOSjtJwUj^%C zO@>8Ghif^-n6)Y)SBv3d3>b)d0~1(~@)gO}(FAJ?cKYV5P zug~iB0IldoH)bHr`cq|sC~UeGZw=?uDN{x$E3Kc~34829Zqj zk0xD&STFMZdI12kX$K@wKRkq~=xIZJM`qF+M%e>}$z z{XDSSn{aq8WTLDeB8oAVz&#OdGDrB*N{So1g6%$L6(!l3;eTuZb3E)w0KB?~Lm05V z%#^ppeX-H+a?Fj}!q^+EDlLp0sFQo>>4lHMZm0Vt zYj0M@x4!$`n8s`&+7HMaM8~GqJrGT}xiIS6L}ZUOR~l>pHRU&tKJ5Pq0x8Ezvf1mJsK&Pa4&`hsvZhIDq zQ@Bjw8<(wJ-pf+~G$32AUTxT+x-@-t8M93mAyb|*AI zG5W3a#(Xp%^$&-;g5TENzkwb~Pt!7Kb|zTH8DenxCe5pg=6JlJ%Qnfs1X;hcKO-7m zMlF2$llFGVFY}(nSB2uL1`$xKWIGl|F%okndG%uW4Q@xigCV+uE+pu3S$5HzTDRt- zO!q@?ridCns>`x57-n2=8mVHUuWZ~0NEB20k-<)&Zt}F^8gWWVEq!QUzaHjdNSOkt z^Kz~!4+y1&U3LQ7P5ntR26CxHEz<6kH_^K*k|hY7-%poG?~_;F$xaU#nvBQDxTur|Zp zgC=_M+sX08&JCTn`6e#WiadxX0OaLOqpUPc)1dFMFCkNORx&H^1in^26r_y*uwG{( z=<&&lnAmssdYtYo%lWpqLHZ{v_g1JKj|R03*9qr zq=7HC#6jO4`sBqu_^WEoG##UFZIU*v@!ecWgL&HQxFN4%=_4@wMWtn7&p&EepqsO9 zg~>JXVe;1~UJMd+w2X`?R3P#|hZNBVYW>|aD}waKaW+U0|~pCw1F*d_-v-iJuaHx0fZc z?A~(6-47<9jjaPCpvWCbZj8cvUdVO73B6M#tz)X1Vz?iduoE9`;N7j4j9fO-55%II zg3t{L8NDpuuW$G6Q3>6zl}?WD+H@vdi@n1^a#?VHSU3gKkpL}v(q<^pK#b>B%K*Y= z4xYyNV#^O*c8m)ssMsS?rSwJj-7m<-+wkG@pGMXOO-D=Le5R@mqHEnKbDI=I{@V2O}q;RO6Rj|qQ-W*jTH zTjR6d>b6rk20gq>{d%573QN2K3g1twNI1WZSWTa>5V`|2?E0Gz5k?z-X25{z#(W=O z?J+ecG5WsS%}0(dK2E5eZq7#&WCKjo^&CT#WyK7QNl|1E)#QEC_8XQKwR01 z17lUF_<`}!ayCAluLJ+#Qs*zo`$0jW14cDMYrDHzcW|^zFe|%elh7_wKe^uASXU1w zk}-AvPO^Kt@TSnQamUG`n*U;Sn8GGcgYKby`88PnH_yFvtmZEEJh4WyU_ZQ_VDA>a zr}~iV6&9w0(lu6VnoKG8{VI_7O+0cN(UVeQ17+ZlAqCrrrc#8tTVk?=p~p|YJC-Ut zUH8l}k3VyQV!D5tgP|7fQX6(Ogq0ilcJ#imA^XvPqCL}wuR9!sd0B-TG%El=XNv$i z^R3V%Prctj-l;%N)=srsg1gV3uLxH?Pjun>@|%zE;!$dKb4q21?e}Vms}^8RfC`qQ zZ};xf4=^8me=)1Tx1$pG|OO7(`wX{}q^lOp!`%C3g?@B-Rxq$wDt zAIiM%JV^Q4|D_>spYPM8+BZJOmEZEC4Q{xV8&4aId1DNFfio^Etr@J1Q)b#@PS3f5X@r4502|PGwqaHSrd6$J6uM+|7{^nB| zc(rc!Chk!=P?k3jPb94hfi7fb^XY-{z_`imOPPH0^eCve#cCFKb6tSglvwV`RClC= zXM)6!?^`cJG;+L$CWeyf>|q7Ogrs01!nuvO+CHF!^^y+MlOfTA7uAzP3 zdi$*Lazk6PUR<#xb9Qz-Ub0|XyC(n$W$*;*^X~T-PkrhC2+kfg7$E5bO-wZ;?1aQL zR>LhAd|_BHZO^=o&IUBGV89mZ(M-M2AzmcCa0Y;gqO>kg&`*6^h3x~X&hktA{nSs= z6#)LU+>98-*g_91fG@i}2BO}cFxPkz(N{%^%B+26%oTm}Uw59O1_9K#(H{@!i78}R zC&KA$|7_OtFA$l(rD#0JR2=nxo&!AL{9@kKxj{w648^o9XJ10FLg*Rq~c zEAxd$)O$9|vjvs*3Z@AJ-zKzi4vOAU2_5xzQ``4P0MjJjM;)HBp0`Yw&k=-M!8Yvo zEtx=d?N3arI)(rXwCD(_q*xlvA1M3)Mi9?JlRRUsA|(s5^*l3&PqQJq(4HYj=H+SQ zHCz>~G*mG$X77lCJdh;=O&Zad+r=(!s?qXgE<;u;#A1?TA@t`G4j`LSbu=Qy;5S&5 zW;3Z(l~#2fAJMxsy?m>+E%K;(kD%E#G21X)*P zz<%=ZHV7s|<6y;~2< z;ZmOjp*tc8KT_d}NQ_=>V-et|0DVGIJQ)e}n+p+=3_8{iB{QOqdezIP%6QjL6P~_2 zrPubq!CNL%8Em3uyYoG}47W@}{VqP78yrTJo5MEc3B`42cAz;IS2XnXJIV*c1DU%c zmv4Zkf+86hVC!5m^{m3~Z)i0T0w#>#MZKJAl>EFL7CE`{P&9D!T65qb<6YP7avpC5 z;9UaE>{ki7UU@M^1!Y={PzGc`E)laCikM6AjYF+sz?L0CnVcRKU7{Q7TUU;5C0U{w z>&W;w#zEIN?FE-ht=2a;iZaG`x}`~Ss1SI|MB90E<^KdzN03A0r{BlbwzkdfKJ zG>s6B^XLz6fFs1wKB&S!7?)UZ?j!8n^DNl8eIr#gh2?1(3YV@n5Y0lVyYdL@p4BJN zr^?xBT8?i)bNbvJUkRTA*QMDm178I7_f!Ms57fVZ((wAu1uW!Lqj5_fis<_kh>n(q zjg@tFab$XB1PSX>;A@yk*YLP>|I-9?SKF#&L zed911`_N5VTg`bnC1n0I|E*Gy9o}<=ve=ph)kk;e9TpFdnSBH$7#t-;wD%&Hiwc&|9YonAvfG zpZ;U81c=Ci%b#-(zO0X+=McmaB=RQl4XMv1I$G_d%2AsRxU9)AjC5K_(80Dbo@} zdBD@kv z&~206-*f~LU28E|{hjh5$+qlI-EpR*>}d1NHg)KTl7m0?aPJMq{GAK7&~Oz$8YUOz zI$H4w`C^*-P?X=>)-)E|D7P~d6+o5R9vrssbY}j23$+#-J0GXLP9uwO{6|bJ(gIfn zsMry(mF2;hFEbF#F@kEbWR;zeCkSlY^bQKFVJdA&tq=ENiKR7gd(`_*lmB&G617Qf z4H&12r!RfU14#RBk(;NJQFp~Phn*cF<6pChh#Q1UTgVNUtp|BwQ~WNvT_1|&L(7$2 zZ~w#YF($zp`BH<<8#=`vI{x)}K#V{SP#{Y*l<9d{On|5Mj9#C}{pVsM-|spfI#S9FZa;x!JUC?i!_Kx)FTtI!89ObPu_z#ZWDUOQ(|82_ zUETsQOiOsF`I*yo z$PdI81Vs(Kw=&%Zw3@C9RMi^U!I!&FaB}TBLmaLOzI%CkCB6bAZ>&}^&aNHm8vP9~ zf~2jfev8`G3wXUBT?QFmv?lQS3^K=ks}+&DVL8^>10&c0Yk0fyCNz;Ck+fDt${4t9 zohPN*eT*riNyPN@8scMUbq*>`L&%Q;ek&d8GfV?xfcgG{xW!g+1&3r^$OO=E^)Xl2k#9)V^Z1t+g@UsNp!izNn902P*BBU)0#e z_#iTIQTSsNB@ezaOfRdeS;>|DQOd$QQ0#_AOa9BqU-#ab+H+>i_GR-J!)KSO(@gIL z61WE`zol<6a7LInJ(lzv#R*yTJ}J`qndu0jPD(ut+C1I3 zwy4}N>*V!rd{ImQ)Yw0aw_woQ+C0EqP6|0I zY(v&eYI?1*Ej_(&n;qu1ZQtMw z{idf^KOX);9k5)yE^B%=1_9SA?yk962;Eu^2v$LVQK zC%P%sc<-zc)65~`-3lel8aNcmVtc2R-}!a^mBS9ZgS8oY=My625BFJrwSj53rE8@v z)xq!LJMegi2eBGc1}AxVeEsDLQ4!MOydzTbSOlia?@lSMaYzdtkFoNE44A(2($?eU z)s1MuPHPq6OKwQ1K2<%i@j8|AV%xKnCMK;-06v;r^fojIfa|^9sB(A+SM}tQOEyMO zJk9Et2hVur&-4SEGxxI>d&r)j$Jh1@k|8F2rV3QYhjtkzwB4Lc>!v3IryDxGxNtRB zmkpG)C1+9F_wVhG^6p8)6f8R>X675_mpTj;C*(1&ev((DXQs5${;C38lSY<|D{B1d zIC2n5L3txBtT+f0mw}5I9Bk7^`b0Ch0#b3So)y6NXI{21z>}@jrwo8?2!872b2 zz4daBDjve&GIIGP%UV&Ke%-!oNyy&p+jkR_n{8LN%->1o)`>6D!-Y_#k84wZ)d~kk z^=M}SpSdZFlq3N1QQ?7})?sGIErD9^x>KEJF`Wj4Q(;Up+X-EGp_A33$X^QduA3wA`owsc?kuGLdzA*7I(Wappx*&t-d$keJx zzIoi^5wSB9zs`(!Fz6;@aN4{< z9w%Ip^jTAqD)D6^s* z(wC94B~=K73pw02`2f?4T3Rsqxn9BuF-(r<&t^!S>Ajj-M6>M%t_ILgnPXncwBfL- zph6{>BI+Z`&UbP4lfvDE1nnf~<`i?vP4qxVZpm5@?$IzR5+V!N zyGtfF`~y~a9Ltg62(pYa^Ly@Ff9DS05o4azQAGHywxh;Y8qkxWK7XUm zZLOIG&9Rw>Npc_o3IGHW^9(vz;Lp9;ASE1`{CT1r21;<7**wWAqSlC|T(s7Jw0~0y=5EVF+Gh>Rp2~e@|aADXl*DhLTkDLIR8dg^iWV%LIQ5z$MfP zz^^$rL1cMD^2(hg`n(mDL*-o*Y+XT@46FsoL2Y+aC-{2+1`%oj&+RZKK}?q6$7obYnj3&YVH!}; zRZXJw?ev&8Je5MG5pGn=io3$R0-O<-Ok}_ru>8FNq?2vV&JZ-LXGEb~oW|yHn~qD) z&b`LBpBH6_qu%lSyl4P40+j>+0COf1xRI-gNmI6pht+jWrZ)bP-*Ud@U2kS={3RdI RtFF?0K2PR9(dfp Date: Fri, 31 Jan 2025 17:42:58 +0000 Subject: [PATCH 033/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index d35ae7f68d..a99fb75a6d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: ArtisticRoomba - changes: - - message: The binary translator key in the syndie uplink is now correctly marked - as syndicate contraband. - type: Tweak - id: 7384 - time: '2024-09-16T10:01:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32193 - author: MissKay1994 changes: - message: Lizards are now poisoned by hot chocolate @@ -3907,3 +3899,10 @@ id: 7883 time: '2025-01-31T11:59:38.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34764 +- author: themias + changes: + - message: Updated sound effects for shutters + type: Tweak + id: 7884 + time: '2025-01-31T17:41:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34774 From 36225188d78301e03f7eed0bdf1691ed9407dad7 Mon Sep 17 00:00:00 2001 From: Nox Date: Fri, 31 Jan 2025 15:39:21 -0800 Subject: [PATCH 034/313] Rename shields (#34794) --- Resources/Prototypes/Entities/Objects/Shields/shields.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Shields/shields.yml b/Resources/Prototypes/Entities/Objects/Shields/shields.yml index 3bd4a89d53..a52fac98c2 100644 --- a/Resources/Prototypes/Entities/Objects/Shields/shields.yml +++ b/Resources/Prototypes/Entities/Objects/Shields/shields.yml @@ -84,10 +84,10 @@ Slash: 1 - type: entity - name: riot laser shield + name: ablative shield parent: [ BaseShield, BaseRestrictedContraband ] id: RiotLaserShield - description: A riot shield built for withstanding lasers, but not much else. + description: An ablative shield built for withstanding lasers, but not much else. components: - type: Sprite state: riot_laser-icon @@ -104,10 +104,10 @@ Heat: 1 - type: entity - name: riot bullet shield + name: ballistic shield parent: [ BaseShield, BaseRestrictedContraband ] id: RiotBulletShield - description: A ballistic riot shield built for withstanding bullets, but not much else. + description: A ballistic shield built for protecting against firearms, but not much else. components: - type: Sprite state: riot_bullet-icon From b61b24db4706d618052d5ca2f76454632ed41183 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 31 Jan 2025 23:40:28 +0000 Subject: [PATCH 035/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a99fb75a6d..d08f09340d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: MissKay1994 - changes: - - message: Lizards are now poisoned by hot chocolate - type: Fix - id: 7385 - time: '2024-09-16T12:45:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32147 - author: Alice Liddel changes: - message: Crayon charges increased from 15 to 25 @@ -3906,3 +3899,12 @@ id: 7884 time: '2025-01-31T17:41:52.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34774 +- author: Nox38 + changes: + - message: Renamed riot bullet shield to ballistic shield + type: Tweak + - message: Renamed riot laser shield to ablative shield + type: Tweak + id: 7885 + time: '2025-01-31T23:39:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34794 From 9e9c9b94eb3c075013d8820b085b5ef2408805d7 Mon Sep 17 00:00:00 2001 From: Nox Date: Fri, 31 Jan 2025 22:32:41 -0800 Subject: [PATCH 036/313] Marathon Armory Restock (#34798) * Initial commit * fixed a issue * finished --- Resources/Maps/marathon.yml | 3023 +++++++++++++----------- Resources/Prototypes/Maps/marathon.yml | 2 +- 2 files changed, 1598 insertions(+), 1427 deletions(-) diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index 29fa109611..1b0abd79be 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -150,11 +150,11 @@ entities: version: 6 -3,3: ind: -3,3 - tiles: XQAAAAACXQAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAALgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: XQAAAAACXQAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAHwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAHwAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABHwAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAALgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -2,3: ind: -2,3 - tiles: XQAAAAABXQAAAAADXQAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAACHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAADHwAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAACegAAAAABegAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XQAAAAABXQAAAAADXQAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAACHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAADHwAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAACegAAAAABegAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,4: ind: -3,4 @@ -561,7 +561,6 @@ entities: 1721: 33,17 1722: 32,17 1723: 31,17 - 2042: -40,54 2104: 1,-7 2105: -1,-7 2225: -13,38 @@ -612,6 +611,14 @@ entities: 3010: 12,14 3015: 2,-51 3114: -21,-15 + 3176: -35,56 + 3177: -34,56 + 3178: -33,56 + 3179: -32,56 + 3180: -35,60 + 3181: -34,60 + 3182: -33,60 + 3183: -32,60 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -628,12 +635,14 @@ entities: id: BotGreyscale decals: 2133: -22,-1 + 3191: -46,54 + 3194: -46,51 + 3195: -46,52 + 3196: -46,53 - node: color: '#FFFFFFFF' id: BotLeft decals: - 2040: -39,56 - 2041: -41,56 2151: -57,-22 2207: -42,42 2208: -46,42 @@ -644,13 +653,6 @@ entities: 2446: -44,19 2447: -42,19 2448: -40,19 - - node: - color: '#FFFFFFFF' - id: BotRight - decals: - 2204: -45,51 - 2205: -45,52 - 2206: -45,53 - node: color: '#FFFFFFFF' id: BotRightGreyscale @@ -1884,15 +1886,7 @@ entities: color: '#FFFFFFFF' id: Delivery decals: - 99: -39,50 - 100: -41,50 107: -31,56 - 108: -35,56 - 109: -35,60 - 110: -34,60 - 111: -33,60 - 112: -32,60 - 113: -31,60 222: -40,41 223: -44,41 224: -48,41 @@ -1932,6 +1926,7 @@ entities: 2810: 14,-25 2811: 10,-31 2812: 11,-31 + 3184: -30,56 - node: color: '#FFFFFFFF' id: DiagonalCheckerAOverlay @@ -1981,19 +1976,13 @@ entities: 232: -49,40 245: -34,57 246: -31,59 - 697: 53,19 - 698: 53,20 - - node: - cleanable: True - zIndex: 1 - color: '#FFFFFFFF' - id: DirtHeavy - decals: 401: -26,29 402: -33,32 403: -28,32 404: -28,31 405: -31,30 + 697: 53,19 + 698: 53,20 828: -76,-57 829: -76,-56 830: -77,-55 @@ -2050,22 +2039,6 @@ entities: 260: -40,42 262: -48,42 263: -37,40 - 641: -19,-44 - 642: -17,-42 - 643: -19,-42 - 644: -23,-43 - 645: -4,-41 - 646: 1,-40 - 647: 0,-39 - 648: 2,-39 - 649: 1,-34 - 650: 1,-31 - 693: 43,22 - 694: 45,22 - 695: 52,19 - 696: 51,20 - 699: 50,19 - 705: 45,23 411: -32,30 412: -27,30 413: -26,31 @@ -2077,11 +2050,27 @@ entities: 419: -32,27 420: -26,28 421: -33,27 + 641: -19,-44 + 642: -17,-42 + 643: -19,-42 + 644: -23,-43 + 645: -4,-41 + 646: 1,-40 + 647: 0,-39 + 648: 2,-39 + 649: 1,-34 + 650: 1,-31 682: 20,-11 683: 21,-10 684: 17,-11 685: 17,-12 686: 19,-8 + 693: 43,22 + 694: 45,22 + 695: 52,19 + 696: 51,20 + 699: 50,19 + 705: 45,23 838: -78,-53 839: -76,-53 840: -78,-56 @@ -2186,10 +2175,16 @@ entities: 244: -35,58 253: -36,54 261: -48,41 + 406: -27,29 + 407: -26,30 + 408: -30,30 + 409: -32,29 + 410: -31,32 637: 1,-39 638: -23,-44 639: -18,-42 640: -16,-41 + 681: 21,-11 691: 46,23 692: 43,21 700: 52,19 @@ -2197,12 +2192,6 @@ entities: 702: 46,23 703: 46,22 704: 44,23 - 406: -27,29 - 407: -26,30 - 408: -30,30 - 409: -32,29 - 410: -31,32 - 681: 21,-11 832: -78,-54 833: -79,-55 834: -79,-53 @@ -2932,7 +2921,6 @@ entities: 302: -52,56 303: -53,56 304: -46,56 - 305: -45,56 427: 13,20 428: 12,20 429: 14,20 @@ -4167,7 +4155,6 @@ entities: 178: -38,46 206: -46,44 264: -47,45 - 328: -45,56 347: -35,37 431: 14,20 476: -20,-1 @@ -4336,6 +4323,7 @@ entities: 2817: -8,-51 2938: -17,-53 3172: 29,43 + 3189: -43,52 - node: color: '#FFFFFFFF' id: WarnCornerNW @@ -4345,6 +4333,7 @@ entities: 2937: -19,-53 3111: -6,-12 3168: 33,43 + 3188: -38,52 - node: color: '#FFFFFFFF' id: WarnCornerSE @@ -4494,6 +4483,7 @@ entities: 3145: -1,-41 3146: -1,-42 3170: 29,42 + 3190: -43,51 - node: color: '#334E6DC8' id: WarnLineGreyscaleE @@ -4723,6 +4713,7 @@ entities: 3142: -1,-41 3143: -1,-42 3169: 33,42 + 3187: -38,51 - node: color: '#FFFFFFFF' id: WarnLineW @@ -4806,11 +4797,6 @@ entities: color: '#FFFFFFFF' id: WarningLine decals: - 101: -38,51 - 102: -39,51 - 103: -40,51 - 104: -41,51 - 105: -42,51 386: 11,42 387: 10,42 388: 9,42 @@ -4836,11 +4822,6 @@ entities: color: '#FFFFFFFF' id: WarningLine decals: - 94: -38,53 - 95: -39,53 - 96: -40,53 - 97: -41,53 - 98: -42,53 614: 7,-21 615: 6,-21 616: 5,-21 @@ -5742,7 +5723,7 @@ entities: -13,11: 0: 43707 -12,12: - 0: 62395 + 0: 29627 -11,9: 0: 45311 -11,10: @@ -5750,7 +5731,7 @@ entities: -11,11: 0: 65327 -11,12: - 0: 51455 + 0: 58623 -10,9: 0: 47359 -10,10: @@ -5865,23 +5846,23 @@ entities: -13,16: 0: 65535 -12,13: - 0: 16383 + 0: 14199 -12,14: - 0: 12287 + 0: 12279 -12,15: 0: 62071 -12,16: 0: 65407 -11,15: 0: 7453 + -11,13: + 0: 61166 + -11,14: + 0: 52238 -11,16: 0: 4545 - -11,13: - 0: 52424 - -11,14: - 0: 52236 -10,13: - 0: 30578 + 0: 30583 -10,14: 0: 63239 -10,15: @@ -5900,7 +5881,7 @@ entities: -9,16: 2: 241 -8,13: - 0: 18303 + 0: 1919 -8,14: 0: 65535 -8,15: @@ -5916,7 +5897,7 @@ entities: 2: 17476 -7,15: 0: 1 - 2: 12804 + 2: 29764 -6,13: 0: 119 2: 28672 @@ -6433,18 +6414,18 @@ entities: 2: 34952 6,-6: 2: 61440 - 6: 224 + 4: 224 6,-5: 0: 112 2: 2184 6,-8: 3: 224 - 4: 57344 - 6,-7: - 4: 224 5: 57344 + 6,-7: + 5: 224 + 6: 57344 6,-9: - 4: 57568 + 5: 57568 7,-5: 2: 4080 7,-8: @@ -6603,14 +6584,12 @@ entities: 0: 53201 -6,-12: 0: 61815 - 2: 136 -6,-11: 0: 65535 -6,-10: 0: 30479 -6,-13: 0: 30576 - 2: 34944 -5,-13: 0: 62719 -8,-14: @@ -6629,15 +6608,15 @@ entities: -8,-15: 2: 76 -7,-16: - 2: 65527 + 2: 56788 0: 8 -7,-15: - 2: 28987 + 2: 28953 0: 196 -7,-14: 2: 870 -7,-17: - 2: 65535 + 2: 56797 -6,-16: 2: 13387 0: 49156 @@ -6646,7 +6625,7 @@ entities: 0: 45552 -6,-14: 0: 16527 - 2: 8720 + 2: 8704 -6,-17: 2: 17487 -5,-16: @@ -6671,17 +6650,17 @@ entities: -4,-17: 2: 17487 -3,-16: - 2: 48877 + 2: 13925 0: 16386 -3,-15: - 2: 11 + 2: 3 0: 61812 -3,-14: 0: 61695 -3,-17: - 2: 61167 + 2: 58983 -2,-16: - 2: 64887 + 2: 64886 -2,-15: 2: 31 0: 56320 @@ -6724,14 +6703,14 @@ entities: -8,-20: 2: 34944 -7,-20: - 2: 65336 + 2: 40760 -7,-19: - 2: 65535 + 2: 56797 -7,-18: - 2: 65527 + 2: 56820 0: 8 -6,-20: - 2: 65519 + 2: 3055 -6,-19: 2: 17599 0: 64 @@ -6739,13 +6718,13 @@ entities: 2: 17483 0: 4 -5,-20: - 2: 65358 + 2: 3918 -5,-19: 2: 17663 -5,-18: 2: 17487 -4,-20: - 2: 65518 + 2: 7150 -4,-19: 2: 17599 0: 64 @@ -6753,18 +6732,18 @@ entities: 2: 17483 0: 4 -3,-20: - 2: 65411 + 2: 3971 -3,-19: - 2: 61183 + 2: 58999 -3,-18: - 2: 61165 + 2: 58981 0: 2 -2,-20: 2: 13104 -2,-19: 2: 30033 -2,-18: - 2: 20855 + 2: 20854 9,1: 0: 61693 9,2: @@ -6876,7 +6855,7 @@ entities: 3,16: 2: 242 12,11: - 4: 2 + 5: 2 14,9: 2: 39304 0: 17476 @@ -7544,6 +7523,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -7574,21 +7568,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 - type: BecomesStation id: Marathon @@ -7630,6 +7609,25 @@ entities: container: 20092 - proto: AirAlarm entities: + - uid: 682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,54.5 + parent: 30 + - type: DeviceList + devices: + - 474 + - 22778 + - 23140 + - 23142 + - 2099 + - 2029 + - uid: 1990 + components: + - type: Transform + pos: -43.5,50.5 + parent: 30 - uid: 2454 components: - type: Transform @@ -7640,21 +7638,6 @@ entities: devices: - 3228 - 3229 - - uid: 2541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,55.5 - parent: 30 - - type: DeviceList - devices: - - 22783 - - 22782 - - 12595 - - 13767 - - 22776 - - 2006 - - 2005 - uid: 2851 components: - type: Transform @@ -8569,19 +8552,6 @@ entities: - 21895 - 2523 - 2525 - - uid: 21906 - components: - - type: Transform - pos: -43.5,50.5 - parent: 30 - - type: DeviceList - devices: - - 2005 - - 2006 - - 1443 - - 21908 - - 2544 - - 2545 - uid: 21913 components: - type: Transform @@ -8611,10 +8581,10 @@ entities: - 20387 - 20388 - 21919 - - 2594 - 2595 - 2526 - 2524 + - 2030 - uid: 21921 components: - type: Transform @@ -8622,7 +8592,6 @@ entities: parent: 30 - type: DeviceList devices: - - 2592 - 21920 - 2593 - uid: 21922 @@ -9684,15 +9653,17 @@ entities: - type: Transform pos: -36.5,47.5 parent: 30 - - uid: 1926 + - uid: 2544 components: - type: Transform - pos: -40.5,52.5 + rot: 1.5707963267948966 rad + pos: -38.5,50.5 parent: 30 - - uid: 6584 + - uid: 5052 components: - type: Transform - pos: -38.5,52.5 + rot: 1.5707963267948966 rad + pos: -41.5,50.5 parent: 30 - proto: AirlockAtmosphericsGlassLocked entities: @@ -10135,6 +10106,11 @@ entities: - type: Transform pos: -54.5,-60.5 parent: 30 + - uid: 782 + components: + - type: Transform + pos: -50.5,46.5 + parent: 30 - uid: 914 components: - type: Transform @@ -10155,11 +10131,6 @@ entities: - type: Transform pos: -46.5,10.5 parent: 30 - - uid: 3527 - components: - - type: Transform - pos: -50.5,46.5 - parent: 30 - uid: 6384 components: - type: Transform @@ -11565,7 +11536,7 @@ entities: pos: 34.5,45.5 parent: 30 - type: Door - secondsUntilStateChange: -3847.4316 + secondsUntilStateChange: -8197.5205 state: Opening - type: DeviceLinkSource lastSignals: @@ -12067,11 +12038,6 @@ entities: - type: Transform pos: -28.5,46.5 parent: 30 - - uid: 1828 - components: - - type: Transform - pos: -29.5,55.5 - parent: 30 - uid: 1829 components: - type: Transform @@ -12137,6 +12103,14 @@ entities: parent: 30 - proto: AirSensor entities: + - uid: 2029 + components: + - type: Transform + pos: -41.5,48.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 682 - uid: 2547 components: - type: Transform @@ -12482,14 +12456,6 @@ entities: - type: Transform pos: -31.5,43.5 parent: 30 - - uid: 21908 - components: - - type: Transform - pos: -39.5,47.5 - parent: 30 - - type: DeviceNetwork - deviceLists: - - 21906 - uid: 21911 components: - type: Transform @@ -12775,15 +12741,6 @@ entities: - type: DeviceNetwork deviceLists: - 21801 - - uid: 22776 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,51.5 - parent: 30 - - type: DeviceNetwork - deviceLists: - - 2541 - uid: 22789 components: - type: Transform @@ -12855,6 +12812,14 @@ entities: - type: DeviceNetwork deviceLists: - 22862 + - uid: 23142 + components: + - type: Transform + pos: -40.5,52.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 682 - proto: AltarConvertRed entities: - uid: 17468 @@ -12965,6 +12930,14 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,51.5 parent: 30 + - uid: 1894 + components: + - type: MetaData + name: Armory APC + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,50.5 + parent: 30 - uid: 3119 components: - type: MetaData @@ -15082,10 +15055,10 @@ entities: - type: Transform pos: -37.5,61.5 parent: 30 - - uid: 2313 + - uid: 2584 components: - type: Transform - pos: -26.5,58.5 + pos: -26.5,59.5 parent: 30 - uid: 5078 components: @@ -15107,6 +15080,11 @@ entities: - type: Transform pos: -20.5,49.5 parent: 30 + - uid: 8060 + components: + - type: Transform + pos: -26.5,58.5 + parent: 30 - uid: 9188 components: - type: Transform @@ -15122,21 +15100,16 @@ entities: - type: Transform pos: 7.5,-21.5 parent: 30 + - uid: 9292 + components: + - type: Transform + pos: -26.5,57.5 + parent: 30 - uid: 15174 components: - type: Transform pos: -20.5,48.5 parent: 30 - - uid: 17473 - components: - - type: Transform - pos: -26.5,59.5 - parent: 30 - - uid: 18838 - components: - - type: Transform - pos: -26.5,60.5 - parent: 30 - uid: 18840 components: - type: Transform @@ -15459,13 +15432,6 @@ entities: parent: 30 - type: BallisticAmmoProvider unspawnedCount: 12 - - uid: 1956 - components: - - type: Transform - pos: -41.476646,54.757214 - parent: 30 - - type: BallisticAmmoProvider - unspawnedCount: 12 - proto: BoxBodyBag entities: - uid: 2245 @@ -15488,7 +15454,7 @@ entities: - uid: 2002 components: - type: Transform - pos: -37.719124,55.411057 + pos: -39.603897,53.49992 parent: 30 - uid: 2110 components: @@ -15624,11 +15590,6 @@ entities: parent: 30 - proto: BoxHandcuff entities: - - uid: 2096 - components: - - type: Transform - pos: -32.040676,56.600285 - parent: 30 - uid: 2169 components: - type: Transform @@ -15648,6 +15609,15 @@ entities: - type: Transform pos: -15.496401,-18.280874 parent: 30 +- proto: BoxLethalshot + entities: + - uid: 16932 + components: + - type: Transform + parent: 16251 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: BoxLightbulb entities: - uid: 18788 @@ -15684,15 +15654,6 @@ entities: - type: Transform pos: -15.855776,-18.39025 parent: 30 -- proto: BoxShotgunIncendiary - entities: - - uid: 1953 - components: - - type: Transform - pos: -41.476646,54.61659 - parent: 30 - - type: BallisticAmmoProvider - unspawnedCount: 12 - proto: BoxSterileMask entities: - uid: 7201 @@ -15717,13 +15678,6 @@ entities: - type: Transform pos: -15.996401,-18.280874 parent: 30 -- proto: BoxZiptie - entities: - - uid: 2095 - components: - - type: Transform - pos: -31.462551,56.600285 - parent: 30 - proto: BrbSign entities: - uid: 21503 @@ -15847,6 +15801,12 @@ entities: parent: 30 - proto: ButtonFrameCautionSecurity entities: + - uid: 3527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,50.5 + parent: 30 - uid: 9062 components: - type: Transform @@ -15859,6 +15819,12 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-54.5 parent: 30 + - uid: 23167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,50.5 + parent: 30 - proto: ButtonFrameExit entities: - uid: 348 @@ -15881,8 +15847,19 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-38.5 parent: 30 + - uid: 13767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,56.5 + parent: 30 - proto: ButtonFrameJanitor entities: + - uid: 4597 + components: + - type: Transform + pos: -36.5,45.5 + parent: 30 - uid: 9401 components: - type: Transform @@ -16021,6 +15998,31 @@ entities: - type: Transform pos: -27.5,51.5 parent: 30 + - uid: 1895 + components: + - type: Transform + pos: -37.5,48.5 + parent: 30 + - uid: 1896 + components: + - type: Transform + pos: -40.5,52.5 + parent: 30 + - uid: 1897 + components: + - type: Transform + pos: -41.5,54.5 + parent: 30 + - uid: 1898 + components: + - type: Transform + pos: -41.5,55.5 + parent: 30 + - uid: 1901 + components: + - type: Transform + pos: -46.5,68.5 + parent: 30 - uid: 1909 components: - type: Transform @@ -16041,6 +16043,21 @@ entities: - type: Transform pos: -40.5,59.5 parent: 30 + - uid: 1914 + components: + - type: Transform + pos: -27.5,57.5 + parent: 30 + - uid: 1915 + components: + - type: Transform + pos: -28.5,57.5 + parent: 30 + - uid: 1921 + components: + - type: Transform + pos: -26.5,57.5 + parent: 30 - uid: 1951 components: - type: Transform @@ -16051,6 +16068,11 @@ entities: - type: Transform pos: -15.5,-19.5 parent: 30 + - uid: 2033 + components: + - type: Transform + pos: -38.5,52.5 + parent: 30 - uid: 2047 components: - type: Transform @@ -16061,6 +16083,26 @@ entities: - type: Transform pos: -37.5,61.5 parent: 30 + - uid: 2095 + components: + - type: Transform + pos: -38.5,51.5 + parent: 30 + - uid: 2096 + components: + - type: Transform + pos: -41.5,53.5 + parent: 30 + - uid: 2531 + components: + - type: Transform + pos: -37.5,51.5 + parent: 30 + - uid: 2583 + components: + - type: Transform + pos: -26.5,58.5 + parent: 30 - uid: 3126 components: - type: Transform @@ -18946,46 +18988,11 @@ entities: - type: Transform pos: -39.5,46.5 parent: 30 - - uid: 4595 - components: - - type: Transform - pos: -39.5,48.5 - parent: 30 - - uid: 4596 - components: - - type: Transform - pos: -39.5,49.5 - parent: 30 - - uid: 4597 - components: - - type: Transform - pos: -39.5,50.5 - parent: 30 - - uid: 4598 - components: - - type: Transform - pos: -39.5,51.5 - parent: 30 - uid: 4599 components: - type: Transform pos: -39.5,52.5 parent: 30 - - uid: 4600 - components: - - type: Transform - pos: -39.5,53.5 - parent: 30 - - uid: 4601 - components: - - type: Transform - pos: -40.5,53.5 - parent: 30 - - uid: 4602 - components: - - type: Transform - pos: -40.5,54.5 - parent: 30 - uid: 4603 components: - type: Transform @@ -19346,21 +19353,11 @@ entities: - type: Transform pos: -46.5,67.5 parent: 30 - - uid: 4675 - components: - - type: Transform - pos: -47.5,67.5 - parent: 30 - uid: 4676 components: - type: Transform pos: -47.5,68.5 parent: 30 - - uid: 4677 - components: - - type: Transform - pos: -47.5,69.5 - parent: 30 - uid: 4678 components: - type: Transform @@ -19376,11 +19373,6 @@ entities: - type: Transform pos: -50.5,68.5 parent: 30 - - uid: 4681 - components: - - type: Transform - pos: -51.5,68.5 - parent: 30 - uid: 4682 components: - type: Transform @@ -19461,11 +19453,6 @@ entities: - type: Transform pos: -43.5,60.5 parent: 30 - - uid: 4698 - components: - - type: Transform - pos: -45.5,65.5 - parent: 30 - uid: 4699 components: - type: Transform @@ -19716,16 +19703,6 @@ entities: - type: Transform pos: -29.5,54.5 parent: 30 - - uid: 4751 - components: - - type: Transform - pos: -29.5,55.5 - parent: 30 - - uid: 4752 - components: - - type: Transform - pos: -29.5,56.5 - parent: 30 - uid: 4753 components: - type: Transform @@ -19741,11 +19718,6 @@ entities: - type: Transform pos: -29.5,59.5 parent: 30 - - uid: 4756 - components: - - type: Transform - pos: -28.5,58.5 - parent: 30 - uid: 4757 components: - type: Transform @@ -19856,15 +19828,10 @@ entities: - type: Transform pos: -50.5,53.5 parent: 30 - - uid: 4781 + - uid: 4785 components: - type: Transform - pos: -51.5,56.5 - parent: 30 - - uid: 4782 - components: - - type: Transform - pos: -51.5,55.5 + pos: -37.5,50.5 parent: 30 - uid: 4829 components: @@ -21831,6 +21798,11 @@ entities: - type: Transform pos: -25.5,-21.5 parent: 30 + - uid: 8042 + components: + - type: Transform + pos: -26.5,59.5 + parent: 30 - uid: 8043 components: - type: Transform @@ -25761,6 +25733,11 @@ entities: - type: Transform pos: 31.5,31.5 parent: 30 + - uid: 12595 + components: + - type: Transform + pos: -46.5,70.5 + parent: 30 - uid: 12668 components: - type: Transform @@ -31386,26 +31363,6 @@ entities: - type: Transform pos: -20.5,48.5 parent: 30 - - uid: 21012 - components: - - type: Transform - pos: -27.5,58.5 - parent: 30 - - uid: 21013 - components: - - type: Transform - pos: -26.5,58.5 - parent: 30 - - uid: 21014 - components: - - type: Transform - pos: -26.5,59.5 - parent: 30 - - uid: 21015 - components: - - type: Transform - pos: -26.5,60.5 - parent: 30 - uid: 21016 components: - type: Transform @@ -31961,6 +31918,46 @@ entities: - type: Transform pos: -7.5,-44.5 parent: 30 + - uid: 22777 + components: + - type: Transform + pos: -37.5,49.5 + parent: 30 + - uid: 22781 + components: + - type: Transform + pos: -46.5,69.5 + parent: 30 + - uid: 23129 + components: + - type: Transform + pos: -40.5,50.5 + parent: 30 + - uid: 23130 + components: + - type: Transform + pos: -41.5,52.5 + parent: 30 + - uid: 23166 + components: + - type: Transform + pos: -48.5,70.5 + parent: 30 + - uid: 23170 + components: + - type: Transform + pos: -48.5,69.5 + parent: 30 + - uid: 23171 + components: + - type: Transform + pos: -50.5,70.5 + parent: 30 + - uid: 23172 + components: + - type: Transform + pos: -50.5,69.5 + parent: 30 - proto: CableApcStack entities: - uid: 1637 @@ -38674,6 +38671,11 @@ entities: parent: 30 - proto: CableMV entities: + - uid: 774 + components: + - type: Transform + pos: -35.5,47.5 + parent: 30 - uid: 845 components: - type: Transform @@ -38709,11 +38711,31 @@ entities: - type: Transform pos: -27.5,-19.5 parent: 30 + - uid: 1846 + components: + - type: Transform + pos: -34.5,47.5 + parent: 30 + - uid: 1859 + components: + - type: Transform + pos: -36.5,47.5 + parent: 30 - uid: 2032 components: - type: Transform pos: -28.5,-19.5 parent: 30 + - uid: 2073 + components: + - type: Transform + pos: -33.5,47.5 + parent: 30 + - uid: 2074 + components: + - type: Transform + pos: -38.5,48.5 + parent: 30 - uid: 2170 components: - type: Transform @@ -44214,6 +44236,46 @@ entities: - type: Transform pos: -17.5,-60.5 parent: 30 + - uid: 22937 + components: + - type: Transform + pos: -37.5,48.5 + parent: 30 + - uid: 23126 + components: + - type: Transform + pos: -37.5,50.5 + parent: 30 + - uid: 23127 + components: + - type: Transform + pos: -37.5,49.5 + parent: 30 + - uid: 23128 + components: + - type: Transform + pos: -37.5,47.5 + parent: 30 + - uid: 23136 + components: + - type: Transform + pos: -39.5,48.5 + parent: 30 + - uid: 23137 + components: + - type: Transform + pos: -39.5,49.5 + parent: 30 + - uid: 23138 + components: + - type: Transform + pos: -39.5,50.5 + parent: 30 + - uid: 23139 + components: + - type: Transform + pos: -40.5,50.5 + parent: 30 - proto: CableMVStack entities: - uid: 1638 @@ -49426,18 +49488,6 @@ entities: - type: Transform pos: -51.5,61.5 parent: 30 - - uid: 2425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,55.5 - parent: 30 - - uid: 2426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,55.5 - parent: 30 - uid: 4366 components: - type: Transform @@ -50162,6 +50212,12 @@ entities: - type: Transform pos: -33.5,53.5 parent: 30 + - uid: 4756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.498543,49.16341 + parent: 30 - uid: 5024 components: - type: Transform @@ -52109,29 +52165,11 @@ entities: - 0 - proto: ClosetL3SecurityFilled entities: - - uid: 2073 + - uid: 2041 components: - type: Transform - pos: -34.5,56.5 + pos: -29.5,56.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 6753 components: - type: Transform @@ -52847,10 +52885,10 @@ entities: parent: 30 - proto: ClothingHeadHatBeretWarden entities: - - uid: 2033 + - uid: 4783 components: - type: Transform - pos: -44.77555,47.437355 + pos: -44.66638,47.438354 parent: 30 - proto: ClothingHeadHatBowlerHat entities: @@ -53035,13 +53073,6 @@ entities: - type: Transform pos: -21.586058,-27.491894 parent: 30 -- proto: ClothingHeadHatWarden - entities: - - uid: 865 - components: - - type: Transform - pos: -44.478676,46.781105 - parent: 30 - proto: ClothingHeadHatWelding entities: - uid: 1632 @@ -53092,23 +53123,6 @@ entities: - type: Transform pos: 35.44555,43.82996 parent: 30 -- proto: ClothingHeadHelmetBasic - entities: - - uid: 1986 - components: - - type: Transform - pos: -39.575058,56.668564 - parent: 30 - - uid: 1987 - components: - - type: Transform - pos: -39.575058,56.668564 - parent: 30 - - uid: 1988 - components: - - type: Transform - pos: -39.575058,56.668564 - parent: 30 - proto: ClothingHeadHelmetEVALarge entities: - uid: 17784 @@ -53121,6 +53135,28 @@ entities: - type: Transform pos: -44.478813,58.559113 parent: 30 +- proto: ClothingHeadHelmetRiot + entities: + - uid: 2542 + components: + - type: Transform + pos: -39.70404,56.724342 + parent: 30 + - uid: 23149 + components: + - type: Transform + pos: -39.690155,56.61323 + parent: 30 + - uid: 23150 + components: + - type: Transform + pos: -39.690155,56.509064 + parent: 30 + - uid: 23151 + components: + - type: Transform + pos: -39.67626,56.39101 + parent: 30 - proto: ClothingHeadHelmetTemplar entities: - uid: 16772 @@ -53296,63 +53332,61 @@ entities: - type: Transform pos: -0.49387097,-7.362574 parent: 30 -- proto: ClothingOuterArmorBasic - entities: - - uid: 12131 - components: - - type: Transform - pos: -39.48033,56.411068 - parent: 30 - - uid: 14249 - components: - - type: Transform - pos: -39.48033,56.411068 - parent: 30 - - uid: 14435 - components: - - type: Transform - pos: -39.48033,56.411068 - parent: 30 - proto: ClothingOuterArmorBulletproof entities: - - uid: 16243 + - uid: 1942 components: - type: Transform - pos: -39.286102,56.736275 + pos: -38.336784,56.662075 parent: 30 - - uid: 16244 + - uid: 1956 components: - type: Transform - pos: -39.286102,56.736275 + pos: -38.336784,56.773186 parent: 30 - - uid: 16251 + - uid: 23143 components: - type: Transform - pos: -39.286102,56.736275 + pos: -38.336784,56.564854 + parent: 30 + - uid: 23144 + components: + - type: Transform + pos: -38.336784,56.460686 parent: 30 - proto: ClothingOuterArmorReflective entities: - - uid: 16932 + - uid: 23145 components: - type: Transform - pos: -39.730423,56.32322 + pos: -38.74173,56.6933 + parent: 30 + - uid: 23146 + components: + - type: Transform + pos: -38.74173,56.512745 parent: 30 - proto: ClothingOuterArmorRiot entities: - - uid: 1936 + - uid: 2017 components: - type: Transform - pos: -39.387558,56.481064 + pos: -39.245705,56.45351 parent: 30 - - uid: 1984 + - uid: 21014 components: - type: Transform - pos: -39.387558,56.481064 + pos: -39.245705,56.55768 parent: 30 - - uid: 1985 + - uid: 23147 components: - type: Transform - pos: -39.387558,56.481064 + pos: -39.252655,56.66879 + parent: 30 + - uid: 23148 + components: + - type: Transform + pos: -39.245705,56.37018 parent: 30 - proto: ClothingOuterCoatBomber entities: @@ -54309,10 +54343,11 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,30.5 parent: 30 - - uid: 2017 + - uid: 2023 components: - type: Transform - pos: -42.5,49.5 + rot: 1.5707963267948966 rad + pos: -44.5,49.5 parent: 30 - uid: 2160 components: @@ -54515,11 +54550,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,29.5 parent: 30 - - uid: 2022 - components: - - type: Transform - pos: -43.5,49.5 - parent: 30 - uid: 4355 components: - type: Transform @@ -54537,6 +54567,12 @@ entities: - type: Transform pos: -30.5,49.5 parent: 30 + - uid: 12815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,48.5 + parent: 30 - proto: ComputerSurveillanceCameraMonitor entities: - uid: 1073 @@ -54551,7 +54587,7 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,39.5 parent: 30 - - uid: 2121 + - uid: 1991 components: - type: Transform rot: 1.5707963267948966 rad @@ -54902,6 +54938,13 @@ entities: - type: Transform pos: -80.5,-42.5 parent: 30 +- proto: CrateContrabandStorageSecure + entities: + - uid: 2007 + components: + - type: Transform + pos: -39.5,49.5 + parent: 30 - proto: CrateEmptySpawner entities: - uid: 757 @@ -55207,10 +55250,10 @@ entities: parent: 30 - proto: CrateSecurityTrackingMindshieldImplants entities: - - uid: 682 + - uid: 2011 components: - type: Transform - pos: -41.5,56.5 + pos: -40.5,49.5 parent: 30 - proto: CrateServiceJanitorialSupplies entities: @@ -55394,6 +55437,11 @@ entities: - type: Transform pos: 0.44135857,19.519009 parent: 30 + - uid: 1920 + components: + - type: Transform + pos: -27.424818,58.12078 + parent: 30 - uid: 4886 components: - type: Transform @@ -55583,10 +55631,10 @@ entities: parent: 30 - proto: DefaultStationBeaconArmory entities: - - uid: 20531 + - uid: 23141 components: - type: Transform - pos: -39.5,53.5 + pos: -40.5,53.5 parent: 30 - proto: DefaultStationBeaconArrivals entities: @@ -55981,10 +56029,10 @@ entities: parent: 30 - proto: DefaultStationBeaconWardensOffice entities: - - uid: 20573 + - uid: 4596 components: - type: Transform - pos: -42.5,47.5 + pos: -40.5,47.5 parent: 30 - proto: DefibrillatorCabinetFilled entities: @@ -56018,10 +56066,15 @@ entities: parent: 30 - proto: DeployableBarrier entities: - - uid: 474 + - uid: 1926 components: - type: Transform - pos: -37.5,46.5 + pos: -45.5,52.5 + parent: 30 + - uid: 4601 + components: + - type: Transform + pos: -45.5,51.5 parent: 30 - uid: 6585 components: @@ -62135,7 +62188,7 @@ entities: parent: 30 - proto: DogBed entities: - - uid: 2007 + - uid: 1937 components: - type: Transform pos: -44.5,47.5 @@ -62686,14 +62739,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 19841 - components: - - type: Transform - pos: -39.5,56.5 - parent: 30 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 19843 components: - type: Transform @@ -63468,11 +63513,6 @@ entities: - type: Transform pos: -32.5,-35.5 parent: 30 - - uid: 20525 - components: - - type: Transform - pos: -30.5,54.5 - parent: 30 - uid: 20526 components: - type: Transform @@ -63483,6 +63523,11 @@ entities: - type: Transform pos: 43.5,37.5 parent: 30 + - uid: 23132 + components: + - type: Transform + pos: -29.5,54.5 + parent: 30 - proto: filingCabinetDrawer entities: - uid: 12856 @@ -64094,17 +64139,6 @@ entities: - 21893 - 21894 - 21895 - - uid: 21907 - components: - - type: Transform - pos: -44.5,50.5 - parent: 30 - - type: DeviceList - devices: - - 21908 - - 2005 - - 2006 - - 1443 - uid: 21912 components: - type: Transform @@ -64949,6 +64983,15 @@ entities: - type: Transform pos: -20.5,8.5 parent: 30 + - uid: 474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,50.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 682 - uid: 645 components: - type: Transform @@ -65057,9 +65100,6 @@ entities: - type: Transform pos: -42.5,45.5 parent: 30 - - type: DeviceNetwork - deviceLists: - - 21906 - uid: 1538 components: - type: Transform @@ -65068,24 +65108,6 @@ entities: - type: DeviceNetwork deviceLists: - 22035 - - uid: 2005 - components: - - type: Transform - pos: -40.5,50.5 - parent: 30 - - type: DeviceNetwork - deviceLists: - - 21906 - - 2541 - - uid: 2006 - components: - - type: Transform - pos: -38.5,50.5 - parent: 30 - - type: DeviceNetwork - deviceLists: - - 21906 - - 2541 - uid: 2221 components: - type: Transform @@ -66198,6 +66220,15 @@ entities: deviceLists: - 22775 - 21888 + - uid: 22778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,50.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 682 - proto: Fireplace entities: - uid: 4984 @@ -66289,11 +66320,6 @@ entities: - type: Transform pos: -27.468573,58.960808 parent: 30 - - uid: 22430 - components: - - type: Transform - pos: -37.504288,48.94012 - parent: 30 - uid: 22431 components: - type: Transform @@ -66985,7 +67011,7 @@ entities: pos: -32.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#990000FF' - proto: GasMinerCarbonDioxide entities: - uid: 8691 @@ -67219,6 +67245,28 @@ entities: parent: 30 - type: AtmosPipeColor color: '#990000FF' + - uid: 2248 + components: + - type: Transform + pos: -31.5,59.5 + parent: 30 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2376 + components: + - type: Transform + pos: -31.5,54.5 + parent: 30 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,54.5 + parent: 30 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2474 components: - type: Transform @@ -67242,22 +67290,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#990000FF' - - uid: 2577 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,53.5 - parent: 30 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,53.5 - parent: 30 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2579 components: - type: Transform @@ -68632,20 +68664,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22781 - components: - - type: Transform - pos: -39.5,53.5 - parent: 30 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22788 - components: - - type: Transform - pos: -37.5,53.5 - parent: 30 - - type: AtmosPipeColor - color: '#990000FF' - uid: 22799 components: - type: Transform @@ -68653,13 +68671,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#990000FF' - - uid: 22811 - components: - - type: Transform - pos: -29.5,59.5 - parent: 30 - - type: AtmosPipeColor - color: '#0055CCFF' - proto: GasPipeFourway entities: - uid: 2101 @@ -69022,6 +69033,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#990000FF' + - uid: 865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,56.5 + parent: 30 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 874 components: - type: Transform @@ -69130,6 +69149,27 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1563 + components: + - type: Transform + pos: -41.5,51.5 + parent: 30 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1861 + components: + - type: Transform + pos: -41.5,52.5 + parent: 30 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1893 + components: + - type: Transform + pos: -41.5,49.5 + parent: 30 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1929 components: - type: Transform @@ -69138,6 +69178,58 @@ entities: parent: 30 - type: AtmosPipeColor color: '#990000FF' + - uid: 2031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,54.5 + parent: 30 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2039 + components: + - type: Transform + pos: -38.5,52.5 + parent: 30 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,48.5 + parent: 30 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,54.5 + parent: 30 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2076 + components: + - type: Transform + pos: -38.5,48.5 + parent: 30 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2097 + components: + - type: Transform + pos: -38.5,49.5 + parent: 30 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2098 + components: + - type: Transform + pos: -38.5,50.5 + parent: 30 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2100 components: - type: Transform @@ -69145,6 +69237,43 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2250 + components: + - type: Transform + pos: -31.5,58.5 + parent: 30 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,47.5 + parent: 30 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,48.5 + parent: 30 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2424 + components: + - type: Transform + pos: -38.5,51.5 + parent: 30 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2431 + components: + - type: Transform + pos: -31.5,53.5 + parent: 30 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2432 components: - type: Transform @@ -69630,11 +69759,10 @@ entities: - uid: 2533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,47.5 + pos: -41.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 2534 components: - type: Transform @@ -69691,22 +69819,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,48.5 - parent: 30 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2543 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,47.5 - parent: 30 - - type: AtmosPipeColor - color: '#990000FF' - uid: 2555 components: - type: Transform @@ -69742,13 +69854,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2560 - components: - - type: Transform - pos: -31.5,52.5 - parent: 30 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2561 components: - type: Transform @@ -69853,14 +69958,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#990000FF' - - uid: 2584 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,54.5 - parent: 30 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2585 components: - type: Transform @@ -69885,30 +69982,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#990000FF' - - uid: 2588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,56.5 - parent: 30 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2589 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,55.5 - parent: 30 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2590 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,57.5 - parent: 30 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2591 components: - type: Transform @@ -76515,14 +76588,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,48.5 - parent: 30 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8049 components: - type: Transform @@ -76547,14 +76612,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#990000FF' - - uid: 8060 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,47.5 - parent: 30 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8061 components: - type: Transform @@ -85887,54 +85944,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22777 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,49.5 - parent: 30 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22778 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,50.5 - parent: 30 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22780 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,52.5 - parent: 30 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22784 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,49.5 - parent: 30 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22785 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,50.5 - parent: 30 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22787 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,52.5 - parent: 30 - - type: AtmosPipeColor - color: '#990000FF' - uid: 22800 components: - type: Transform @@ -85975,14 +85984,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22805 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,59.5 - parent: 30 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 22806 components: - type: Transform @@ -85999,30 +86000,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22808 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,59.5 - parent: 30 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,59.5 - parent: 30 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22810 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 22832 components: - type: Transform @@ -86177,6 +86154,30 @@ entities: parent: 30 - type: AtmosPipeColor color: '#990000FF' + - uid: 23131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,55.5 + parent: 30 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,57.5 + parent: 30 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,58.5 + parent: 30 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeTJunction entities: - uid: 336 @@ -86201,6 +86202,29 @@ entities: parent: 30 - type: AtmosPipeColor color: '#990000FF' + - uid: 2042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,47.5 + parent: 30 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,52.5 + parent: 30 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2121 + components: + - type: Transform + pos: -34.5,59.5 + parent: 30 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2324 components: - type: Transform @@ -86209,11 +86233,11 @@ entities: parent: 30 - type: AtmosPipeColor color: '#990000FF' - - uid: 2431 + - uid: 2425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,57.5 + rot: 1.5707963267948966 rad + pos: -41.5,48.5 parent: 30 - type: AtmosPipeColor color: '#0055CCFF' @@ -86363,22 +86387,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#990000FF' - - uid: 2531 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,47.5 - parent: 30 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2532 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,48.5 - parent: 30 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2549 components: - type: Transform @@ -86448,13 +86456,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#990000FF' - - uid: 2583 - components: - - type: Transform - pos: -30.5,53.5 - parent: 30 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2596 components: - type: Transform @@ -89135,22 +89136,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22779 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,51.5 - parent: 30 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22786 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,51.5 - parent: 30 - - type: AtmosPipeColor - color: '#990000FF' - proto: GasPort entities: - uid: 6757 @@ -89311,7 +89296,7 @@ entities: pos: -30.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - uid: 8781 components: - type: Transform @@ -89504,6 +89489,33 @@ entities: color: '#990000FF' - proto: GasVentPump entities: + - uid: 2030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,52.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 21917 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,47.5 + parent: 30 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,57.5 + parent: 30 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2451 components: - type: Transform @@ -89564,17 +89576,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,48.5 - parent: 30 - - type: DeviceNetwork - deviceLists: - - 21906 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2573 components: - type: Transform @@ -89583,22 +89584,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2592 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,57.5 - parent: 30 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2594 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,52.5 - parent: 30 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2638 components: - type: Transform @@ -90722,17 +90707,6 @@ entities: - 22028 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12595 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,51.5 - parent: 30 - - type: DeviceNetwork - deviceLists: - - 2541 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12611 components: - type: Transform @@ -91290,17 +91264,6 @@ entities: - 21888 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22782 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,53.5 - parent: 30 - - type: DeviceNetwork - deviceLists: - - 2541 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 22797 components: - type: Transform @@ -91376,8 +91339,36 @@ entities: - 22868 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23140 + components: + - type: Transform + pos: -41.5,53.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 682 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentScrubber entities: + - uid: 2083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,47.5 + parent: 30 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2099 + components: + - type: Transform + pos: -38.5,53.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 682 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2452 components: - type: Transform @@ -91451,17 +91442,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#990000FF' - - uid: 2545 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,47.5 - parent: 30 - - type: DeviceNetwork - deviceLists: - - 21906 - - type: AtmosPipeColor - color: '#990000FF' - uid: 2574 components: - type: Transform @@ -92622,17 +92602,6 @@ entities: - 22062 - type: AtmosPipeColor color: '#990000FF' - - uid: 13767 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,51.5 - parent: 30 - - type: DeviceNetwork - deviceLists: - - 2541 - - type: AtmosPipeColor - color: '#990000FF' - uid: 13782 components: - type: Transform @@ -92998,17 +92967,6 @@ entities: - 21888 - type: AtmosPipeColor color: '#990000FF' - - uid: 22783 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,53.5 - parent: 30 - - type: DeviceNetwork - deviceLists: - - 2541 - - type: AtmosPipeColor - color: '#990000FF' - uid: 22792 components: - type: Transform @@ -94005,6 +93963,16 @@ entities: - type: Transform pos: -20.5,52.5 parent: 30 + - uid: 1828 + components: + - type: Transform + pos: -26.5,58.5 + parent: 30 + - uid: 1844 + components: + - type: Transform + pos: -26.5,57.5 + parent: 30 - uid: 1856 components: - type: Transform @@ -94020,21 +93988,6 @@ entities: - type: Transform pos: -36.5,48.5 parent: 30 - - uid: 1859 - components: - - type: Transform - pos: -37.5,50.5 - parent: 30 - - uid: 1860 - components: - - type: Transform - pos: -39.5,50.5 - parent: 30 - - uid: 1861 - components: - - type: Transform - pos: -41.5,50.5 - parent: 30 - uid: 1862 components: - type: Transform @@ -94085,23 +94038,6 @@ entities: - type: Transform pos: -27.5,52.5 parent: 30 - - uid: 1921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,52.5 - parent: 30 - - uid: 1922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,52.5 - parent: 30 - - uid: 1925 - components: - - type: Transform - pos: -39.5,52.5 - parent: 30 - uid: 1930 components: - type: Transform @@ -94172,6 +94108,12 @@ entities: - type: Transform pos: 46.5,49.5 parent: 30 + - uid: 2024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,50.5 + parent: 30 - uid: 2052 components: - type: Transform @@ -94207,32 +94149,12 @@ entities: - type: Transform pos: -28.5,61.5 parent: 30 - - uid: 2059 - components: - - type: Transform - pos: -26.5,58.5 - parent: 30 - - uid: 2060 - components: - - type: Transform - pos: -26.5,59.5 - parent: 30 - - uid: 2061 - components: - - type: Transform - pos: -26.5,60.5 - parent: 30 - uid: 2064 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,60.5 parent: 30 - - uid: 2091 - components: - - type: Transform - pos: -29.5,63.5 - parent: 30 - uid: 2093 components: - type: Transform @@ -94308,6 +94230,18 @@ entities: - type: Transform pos: -53.5,72.5 parent: 30 + - uid: 2589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,63.5 + parent: 30 + - uid: 2590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,63.5 + parent: 30 - uid: 2933 components: - type: Transform @@ -94410,6 +94344,12 @@ entities: - type: Transform pos: -23.5,36.5 parent: 30 + - uid: 5025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,50.5 + parent: 30 - uid: 5075 components: - type: Transform @@ -96979,12 +96919,6 @@ entities: - type: Transform pos: 17.5,63.5 parent: 30 - - uid: 15280 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,63.5 - parent: 30 - uid: 15336 components: - type: Transform @@ -99806,6 +99740,11 @@ entities: - type: Transform pos: -11.5,54.5 parent: 30 + - uid: 22788 + components: + - type: Transform + pos: -26.5,59.5 + parent: 30 - uid: 22823 components: - type: Transform @@ -100192,6 +100131,12 @@ entities: rot: 1.5707963267948966 rad pos: -66.5,-70.5 parent: 30 + - uid: 23168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,63.5 + parent: 30 - proto: GrilleBroken entities: - uid: 695 @@ -100533,6 +100478,15 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-31.5 parent: 30 + - uid: 20891 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -25.5,63.5 + parent: 30 + - type: Physics + bodyType: Dynamic - uid: 21113 components: - type: Transform @@ -100663,32 +100617,98 @@ entities: parent: 30 - proto: GunSafeDisabler entities: - - uid: 726 - components: - - type: Transform - pos: -41.5,55.5 - parent: 30 -- proto: GunSafeLaserCarbine - entities: - - uid: 1942 - components: - - type: Transform - pos: -37.5,54.5 - parent: 30 -- proto: GunSafeRifleLecter - entities: - - uid: 1940 - components: - - type: Transform - pos: -41.5,53.5 - parent: 30 -- proto: GunSafeSubMachineGunDrozd - entities: - - uid: 20778 + - uid: 4698 components: - type: Transform + anchored: True pos: -37.5,53.5 parent: 30 + - type: Physics + bodyType: Static +- proto: GunSafePistolMk58 + entities: + - uid: 2594 + components: + - type: Transform + anchored: True + pos: -37.5,54.5 + parent: 30 + - type: Physics + bodyType: Static +- proto: GunSafeRifleLecter + entities: + - uid: 21165 + components: + - type: MetaData + desc: A standard-issue Nanotrasen storage unit, containing 3 Lecter submachine guns. + - type: Transform + anchored: True + pos: -42.5,53.5 + parent: 30 + - type: Physics + bodyType: Static + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 21283 + - 21906 + - 21907 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafeShotgunKammerer + entities: + - uid: 16251 + components: + - type: MetaData + desc: A standard-issue Nanotrasen storage unit, containing 3 Kammerer shotguns. + - type: Transform + anchored: True + pos: -42.5,55.5 + parent: 30 + - type: Physics + bodyType: Static + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 16932 + - 17473 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 18838 + components: + - type: MetaData + desc: A standard-issue Nanotrasen storage unit, containing 3 Drozd submachine guns. + - type: Transform + anchored: True + pos: -42.5,54.5 + parent: 30 + - type: Physics + bodyType: Static + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 19841 + - 20432 + - 20525 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: Handcuffs entities: - uid: 5839 @@ -101208,10 +101228,10 @@ entities: parent: 30 - proto: HolopadSecurityArmory entities: - - uid: 22935 + - uid: 20798 components: - type: Transform - pos: -39.5,53.5 + pos: -39.5,52.5 parent: 30 - uid: 22944 components: @@ -101282,10 +101302,10 @@ entities: parent: 30 - proto: HolopadSecurityWarden entities: - - uid: 22937 + - uid: 2541 components: - type: Transform - pos: -40.5,47.5 + pos: -39.5,48.5 parent: 30 - proto: HolopadServiceBar entities: @@ -103300,17 +103320,17 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-7.5 parent: 30 - - uid: 1753 - components: - - type: Transform - pos: -33.5,37.5 - parent: 30 - uid: 7609 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-0.5 parent: 30 + - uid: 14249 + components: + - type: Transform + pos: -35.5,37.5 + parent: 30 - proto: JetpackBlueFilled entities: - uid: 5722 @@ -103332,15 +103352,15 @@ entities: parent: 30 - proto: JetpackSecurityFilled entities: - - uid: 12815 + - uid: 1984 components: - type: Transform - pos: -39.62777,56.71206 + pos: -41.5765,56.69822 parent: 30 - - uid: 12859 + - uid: 23165 components: - type: Transform - pos: -39.62777,56.71206 + pos: -41.377563,56.522953 parent: 30 - proto: KitchenElectricGrill entities: @@ -103657,6 +103677,68 @@ entities: - type: Transform pos: -3.5786777,63.79637 parent: 30 +- proto: LockableButtonArmory + entities: + - uid: 1988 + components: + - type: MetaData + name: Close Armory + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,50.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 1943: + - Pressed: Close + 1986: + - Pressed: Close + 4788: + - Pressed: Close + 2407: + - Pressed: Close + 2006: + - Pressed: Close + 2216: + - Pressed: Close + 1753: + - Pressed: Close + 3180: + - Pressed: Close + - uid: 2578 + components: + - type: MetaData + name: Open Armory + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,50.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 1986: + - Pressed: Open + - Pressed: AutoClose + 1943: + - Pressed: Open + - Pressed: AutoClose + 4788: + - Pressed: Open + - Pressed: AutoClose + 2407: + - Pressed: AutoClose + - Pressed: Open + 3180: + - Pressed: Open + - Pressed: AutoClose + 1753: + - Pressed: Open + - Pressed: AutoClose + 2216: + - Pressed: Open + - Pressed: AutoClose + 2006: + - Pressed: Open + - Pressed: AutoClose - proto: LockerAtmosphericsFilled entities: - uid: 9079 @@ -104024,98 +104106,21 @@ entities: parent: 30 - proto: LockerEvidence entities: - - uid: 2248 + - uid: 1917 components: - type: Transform - pos: -44.5,51.5 + pos: -50.5,55.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 2249 + - uid: 1918 components: - type: Transform - pos: -44.5,52.5 + pos: -52.5,55.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 2250 + - uid: 1935 components: - type: Transform - pos: -44.5,53.5 + pos: -51.5,55.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 2376 - components: - - type: Transform - pos: -44.5,56.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 3500 components: - type: Transform @@ -104773,6 +104778,16 @@ entities: - 0 - 0 - 0 + - uid: 1854 + components: + - type: Transform + pos: -31.5,56.5 + parent: 30 + - uid: 1860 + components: + - type: Transform + pos: -33.5,56.5 + parent: 30 - uid: 2079 components: - type: Transform @@ -104865,31 +104880,23 @@ entities: - 0 - 0 - 0 -- proto: LockerWardenFilled - entities: - - uid: 2010 + - uid: 22430 components: - type: Transform - pos: -44.5,49.5 + pos: -32.5,56.5 + parent: 30 + - uid: 22538 + components: + - type: Transform + pos: -34.5,56.5 + parent: 30 +- proto: LockerWardenFilled + entities: + - uid: 21012 + components: + - type: Transform + pos: -38.5,46.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerWeldingSuppliesFilled entities: - uid: 4773 @@ -105002,6 +105009,22 @@ entities: - type: Transform pos: -6.5,-12.5 parent: 30 +- proto: MagazinePistolSubMachineGun + entities: + - uid: 19841 + components: + - type: Transform + parent: 18838 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 20525 + components: + - type: Transform + parent: 18838 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MagazinePistolSubMachineGunTopMounted entities: - uid: 1999 @@ -105014,6 +105037,22 @@ entities: - type: Transform pos: -22.54349,53.796127 parent: 30 +- proto: MagazineRifle + entities: + - uid: 21283 + components: + - type: Transform + parent: 21165 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21906 + components: + - type: Transform + parent: 21165 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MaintenanceFluffSpawner entities: - uid: 9199 @@ -106786,6 +106825,78 @@ entities: - type: Transform pos: 27.5,-30.5 parent: 30 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 2028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,53.5 + parent: 30 + - uid: 2091 + components: + - type: Transform + pos: -40.5,54.5 + parent: 30 + - uid: 2532 + components: + - type: Transform + pos: -39.5,54.5 + parent: 30 + - uid: 2592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,54.5 + parent: 30 + - uid: 4595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,53.5 + parent: 30 + - uid: 4600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,53.5 + parent: 30 + - uid: 4781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,54.5 + parent: 30 + - uid: 21013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,53.5 + parent: 30 +- proto: PlasmaWindoorSecureArmoryLocked + entities: + - uid: 1943 + components: + - type: Transform + pos: -39.5,53.5 + parent: 30 + - uid: 1986 + components: + - type: Transform + pos: -40.5,53.5 + parent: 30 + - uid: 2407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,54.5 + parent: 30 + - uid: 4788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,54.5 + parent: 30 - proto: PlasticFlapsAirtightClear entities: - uid: 11228 @@ -106930,16 +107041,26 @@ entities: parent: 30 - proto: PortableFlasher entities: - - uid: 1917 + - uid: 4675 components: - type: Transform - pos: -39.5,51.5 + anchored: False + pos: -45.5,54.5 parent: 30 - - uid: 1920 + - type: TriggerOnProximity + enabled: False + - type: Physics + bodyType: Dynamic + - uid: 22776 components: - type: Transform - pos: -39.5,49.5 + anchored: False + pos: -45.5,53.5 parent: 30 + - type: TriggerOnProximity + enabled: False + - type: Physics + bodyType: Dynamic - proto: PortableGeneratorJrPacman entities: - uid: 11157 @@ -108132,13 +108253,6 @@ entities: - type: Transform pos: 12.5,-25.5 parent: 30 - - uid: 2024 - components: - - type: Transform - pos: -37.5,48.5 - parent: 30 - - type: Physics - canCollide: False - uid: 7470 components: - type: Transform @@ -108295,6 +108409,18 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-43.5 parent: 30 + - uid: 1939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,47.5 + parent: 30 + - uid: 1985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,52.5 + parent: 30 - uid: 3203 components: - type: Transform @@ -108656,13 +108782,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4783 - components: - - type: Transform - pos: -43.5,49.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4784 components: - type: Transform @@ -108671,14 +108790,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4785 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,55.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4786 components: - type: Transform @@ -108687,22 +108798,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,51.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4788 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,51.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4790 components: - type: Transform @@ -110397,12 +110492,24 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 22935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,55.5 + parent: 30 - uid: 22991 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,42.5 parent: 30 + - uid: 23164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,52.5 + parent: 30 - proto: PoweredlightExterior entities: - uid: 833 @@ -111999,6 +112106,11 @@ entities: - type: Transform pos: -16.5,20.5 parent: 30 + - uid: 726 + components: + - type: Transform + pos: -40.5,53.5 + parent: 30 - uid: 789 components: - type: Transform @@ -112024,15 +112136,30 @@ entities: - type: Transform pos: -32.5,29.5 parent: 30 - - uid: 1939 + - uid: 1946 components: - type: Transform - pos: -41.5,54.5 + pos: -41.5,56.5 parent: 30 - - uid: 1943 + - uid: 1978 components: - type: Transform - pos: -37.5,55.5 + pos: -38.5,56.5 + parent: 30 + - uid: 1979 + components: + - type: Transform + pos: -39.5,56.5 + parent: 30 + - uid: 4598 + components: + - type: Transform + pos: -40.5,56.5 + parent: 30 + - uid: 5417 + components: + - type: Transform + pos: -39.5,53.5 parent: 30 - uid: 6276 components: @@ -112307,6 +112434,16 @@ entities: - type: Transform pos: 33.5,28.5 parent: 30 + - uid: 22783 + components: + - type: Transform + pos: -39.5,54.5 + parent: 30 + - uid: 22784 + components: + - type: Transform + pos: -40.5,54.5 + parent: 30 - proto: RadiationCollectorFullTank entities: - uid: 9419 @@ -114200,37 +114337,20 @@ entities: - type: Transform pos: -45.5,48.5 parent: 30 - - uid: 1844 - components: - - type: Transform - pos: -37.5,50.5 - parent: 30 - - uid: 1845 - components: - - type: Transform - pos: -39.5,50.5 - parent: 30 - - uid: 1846 - components: - - type: Transform - pos: -41.5,50.5 - parent: 30 - uid: 1879 components: - type: Transform pos: -34.5,55.5 parent: 30 - - uid: 1916 + - uid: 1922 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,52.5 + pos: -26.5,59.5 parent: 30 - - uid: 1918 + - uid: 1925 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,52.5 + pos: -26.5,58.5 parent: 30 - uid: 1928 components: @@ -114262,21 +114382,6 @@ entities: - type: Transform pos: 36.5,36.5 parent: 30 - - uid: 2041 - components: - - type: Transform - pos: -26.5,58.5 - parent: 30 - - uid: 2042 - components: - - type: Transform - pos: -26.5,59.5 - parent: 30 - - uid: 2043 - components: - - type: Transform - pos: -26.5,60.5 - parent: 30 - uid: 2044 components: - type: Transform @@ -114333,6 +114438,17 @@ entities: - type: Transform pos: -55.5,-10.5 parent: 30 + - uid: 2545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,50.5 + parent: 30 + - uid: 2588 + components: + - type: Transform + pos: -26.5,57.5 + parent: 30 - uid: 3168 components: - type: Transform @@ -114403,11 +114519,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,28.5 parent: 30 - - uid: 5025 - components: - - type: Transform - pos: -39.5,52.5 - parent: 30 - uid: 5071 components: - type: Transform @@ -116999,6 +117110,12 @@ entities: - type: Transform pos: 7.5,21.5 parent: 30 + - uid: 21015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,50.5 + parent: 30 - uid: 21052 components: - type: Transform @@ -117187,6 +117304,72 @@ entities: - type: Transform pos: 33.5,15.5 parent: 30 +- proto: RiotBulletShield + entities: + - uid: 23152 + components: + - type: Transform + pos: -40.217842,56.710453 + parent: 30 + - uid: 23153 + components: + - type: Transform + pos: -40.2109,56.599342 + parent: 30 + - uid: 23154 + components: + - type: Transform + pos: -40.20395,56.50212 + parent: 30 + - uid: 23155 + components: + - type: Transform + pos: -40.20395,56.411842 + parent: 30 +- proto: RiotLaserShield + entities: + - uid: 23156 + components: + - type: Transform + pos: -40.731728,56.710453 + parent: 30 + - uid: 23157 + components: + - type: Transform + pos: -40.731728,56.61323 + parent: 30 + - uid: 23158 + components: + - type: Transform + pos: -40.731728,56.51601 + parent: 30 + - uid: 23159 + components: + - type: Transform + pos: -40.731728,56.43268 + parent: 30 +- proto: RiotShield + entities: + - uid: 23160 + components: + - type: Transform + pos: -40.45395,56.7174 + parent: 30 + - uid: 23161 + components: + - type: Transform + pos: -40.45395,56.61323 + parent: 30 + - uid: 23162 + components: + - type: Transform + pos: -40.45395,56.5299 + parent: 30 + - uid: 23163 + components: + - type: Transform + pos: -40.45395,56.45351 + parent: 30 - proto: RobocopCircuitBoard entities: - uid: 21675 @@ -117342,16 +117525,11 @@ entities: parent: 30 - proto: SecurityTechFab entities: - - uid: 1937 + - uid: 12131 components: - type: Transform - pos: -39.5,54.5 + pos: -37.5,55.5 parent: 30 - - type: MaterialStorage - materialWhiteList: - - Glass - - Plastic - - Steel - proto: SeedExtractor entities: - uid: 2345 @@ -117562,7 +117740,7 @@ entities: - uid: 1349 components: - type: Transform - pos: -37.50003,55.530113 + pos: -40.438583,53.480904 parent: 30 - uid: 5030 components: @@ -118439,31 +118617,6 @@ entities: - Pressed: Open 988: - Pressed: Open - - uid: 3180 - components: - - type: Transform - pos: -37.5,45.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 5700: - - Pressed: Toggle - 5698: - - Pressed: Toggle - 3177: - - Pressed: Toggle - 3176: - - Pressed: Toggle - 3185: - - Pressed: Toggle - 3184: - - Pressed: Toggle - 3183: - - Pressed: Toggle - 3182: - - Pressed: Toggle - 3181: - - Pressed: Toggle - uid: 3189 components: - type: MetaData @@ -118522,18 +118675,6 @@ entities: - Pressed: Toggle 5078: - Pressed: Toggle - - uid: 5417 - components: - - type: MetaData - name: Janitorial Service Light - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,40.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 1753: - - Pressed: Toggle - uid: 6868 components: - type: Transform @@ -118662,6 +118803,17 @@ entities: - Pressed: Toggle 9188: - Pressed: Toggle + - uid: 12859 + components: + - type: MetaData + name: Custodial Service + - type: Transform + pos: -36.5,45.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 14249: + - Pressed: Toggle - uid: 16041 components: - type: Transform @@ -118692,34 +118844,6 @@ entities: linkedPorts: 6415: - Pressed: DoorBolt - - uid: 20432 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,56.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 2189: - - Pressed: Toggle - 20391: - - Pressed: Toggle - 20401: - - Pressed: Toggle - 20402: - - Pressed: Toggle - 18840: - - Pressed: Toggle - 20360: - - Pressed: Toggle - 20389: - - Pressed: Toggle - 18838: - - Pressed: Toggle - 17473: - - Pressed: Toggle - 2313: - - Pressed: Toggle - proto: SignalSwitch entities: - uid: 11021 @@ -118739,8 +118863,87 @@ entities: 11015: - On: Open - Off: Close + - uid: 23173 + components: + - type: MetaData + name: Lockdown Cells + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,46.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 3181: + - On: Open + - Off: Close + 3182: + - On: Open + - Off: Close + 3183: + - On: Open + - Off: Close + 3184: + - On: Open + - Off: Close + 3185: + - On: Open + - Off: Close + 3176: + - On: Open + - Off: Close + 3177: + - On: Open + - Off: Close + 5698: + - On: Open + - Off: Close + 5700: + - On: Open + - Off: Close - proto: SignalSwitchDirectional entities: + - uid: 1845 + components: + - type: MetaData + name: Window Blast Doors + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,56.5 + parent: 30 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 20391: + - On: Open + - Off: Close + 20401: + - On: Open + - Off: Close + 20402: + - On: Open + - Off: Close + 18840: + - On: Open + - Off: Close + 20360: + - On: Open + - Off: Close + 20389: + - On: Open + - Off: Close + 2584: + - On: Open + - Off: Close + 8060: + - On: Open + - Off: Close + 9292: + - On: Open + - Off: Close + 2189: + - On: Open + - Off: Close - uid: 3131 components: - type: Transform @@ -119869,11 +120072,6 @@ entities: parent: 30 - proto: SignSecureMedRed entities: - - uid: 2407 - components: - - type: Transform - pos: -36.5,45.5 - parent: 30 - uid: 2408 components: - type: Transform @@ -122197,26 +122395,46 @@ entities: parent: 30 - proto: SpawnPointSecurityCadet entities: - - uid: 20798 + - uid: 1936 components: - type: Transform pos: -31.5,57.5 parent: 30 - - uid: 20799 + - uid: 14435 components: - type: Transform - pos: -34.5,57.5 + pos: -31.5,59.5 parent: 30 - - uid: 20891 + - uid: 20531 components: - type: Transform pos: -32.5,57.5 parent: 30 - - uid: 20892 + - uid: 20573 components: - type: Transform pos: -33.5,57.5 parent: 30 + - uid: 20778 + components: + - type: Transform + pos: -34.5,57.5 + parent: 30 + - uid: 21908 + components: + - type: Transform + pos: -34.5,59.5 + parent: 30 + - uid: 22809 + components: + - type: Transform + pos: -32.5,59.5 + parent: 30 + - uid: 22811 + components: + - type: Transform + pos: -33.5,59.5 + parent: 30 - proto: SpawnPointSecurityOfficer entities: - uid: 2224 @@ -122239,6 +122457,26 @@ entities: - type: Transform pos: -31.5,59.5 parent: 30 + - uid: 15280 + components: + - type: Transform + pos: -34.5,57.5 + parent: 30 + - uid: 16243 + components: + - type: Transform + pos: -32.5,57.5 + parent: 30 + - uid: 16244 + components: + - type: Transform + pos: -33.5,57.5 + parent: 30 + - uid: 22810 + components: + - type: Transform + pos: -31.5,57.5 + parent: 30 - proto: SpawnPointServiceWorker entities: - uid: 20889 @@ -122920,48 +123158,6 @@ entities: - type: Transform pos: 36.5,7.5 parent: 30 -- proto: Stunbaton - entities: - - uid: 2030 - components: - - type: Transform - pos: -41.61499,49.505306 - parent: 30 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot {} - - uid: 2031 - components: - - type: Transform - pos: -41.39624,49.48968 - parent: 30 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot {} - - uid: 2097 - components: - - type: Transform - pos: -33.61344,56.52216 - parent: 30 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot {} - - uid: 2098 - components: - - type: Transform - pos: -33.472816,56.52216 - parent: 30 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot {} - - uid: 2099 - components: - - type: Transform - pos: -33.30094,56.506535 - parent: 30 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot {} - proto: SubstationBasic entities: - uid: 1414 @@ -123201,68 +123397,32 @@ entities: parent: 30 - proto: SuitStorageSec entities: - - uid: 774 - components: - - type: Transform - pos: -38.5,56.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 782 - components: - - type: Transform - pos: -40.5,56.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 1990 + - uid: 20799 components: - type: Transform pos: -37.5,51.5 parent: 30 - - uid: 2028 + - uid: 22785 components: - type: Transform - pos: -41.5,51.5 + pos: -42.5,51.5 + parent: 30 + - uid: 22786 + components: + - type: Transform + pos: -42.5,52.5 + parent: 30 + - uid: 23133 + components: + - type: Transform + pos: -37.5,52.5 parent: 30 - proto: SuitStorageWarden entities: - - uid: 5052 + - uid: 2010 components: - type: Transform - pos: -38.5,46.5 + pos: -37.5,46.5 parent: 30 - proto: SurveillanceCameraCommand entities: @@ -124640,7 +124800,7 @@ entities: parent: 30 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 1946 + - uid: 1940 components: - type: Transform pos: -37.5,56.5 @@ -124779,6 +124939,28 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Sec Perma Corridor + - uid: 4681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,56.5 + parent: 30 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory + - uid: 4752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,49.5 + parent: 30 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Warden's Office - uid: 10190 components: - type: Transform @@ -124790,17 +124972,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Armory Space View - - uid: 21165 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,56.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - uid: 21166 components: - type: Transform @@ -124930,17 +125101,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Sec Med Office - - uid: 21283 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,49.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden's Office - uid: 21284 components: - type: Transform @@ -125449,31 +125609,11 @@ entities: - type: Transform pos: -37.5,49.5 parent: 30 - - uid: 2023 - components: - - type: Transform - pos: -41.5,49.5 - parent: 30 - uid: 2065 components: - type: Transform pos: -38.5,60.5 parent: 30 - - uid: 2074 - components: - - type: Transform - pos: -33.5,56.5 - parent: 30 - - uid: 2075 - components: - - type: Transform - pos: -32.5,56.5 - parent: 30 - - uid: 2076 - components: - - type: Transform - pos: -31.5,56.5 - parent: 30 - uid: 2103 components: - type: Transform @@ -125574,11 +125714,6 @@ entities: - type: Transform pos: -44.5,58.5 parent: 30 - - uid: 2424 - components: - - type: Transform - pos: -51.5,55.5 - parent: 30 - uid: 3130 components: - type: Transform @@ -126815,14 +126950,10 @@ entities: - type: Transform pos: -42.5,45.5 parent: 30 - - uid: 1935 - components: - - type: Transform - pos: -39.5,56.5 - parent: 30 - - uid: 2011 + - uid: 1989 components: - type: Transform + rot: -1.5707963267948966 rad pos: -44.5,46.5 parent: 30 - uid: 4357 @@ -127100,11 +127231,6 @@ entities: - type: Transform pos: -33.5,58.5 parent: 30 - - uid: 2251 - components: - - type: Transform - pos: -44.5,54.5 - parent: 30 - uid: 21467 components: - type: Transform @@ -127851,6 +127977,8 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,59.5 parent: 30 + - type: DamagePopup + damagePopupType: Total - proto: TegCenter entities: - uid: 9817 @@ -127876,6 +128004,13 @@ entities: parent: 30 - type: PointLight color: '#FF3300FF' +- proto: TelecomServer + entities: + - uid: 20892 + components: + - type: Transform + pos: -42.5,56.5 + parent: 30 - proto: TelecomServerFilledCargo entities: - uid: 10551 @@ -128895,6 +129030,13 @@ entities: - type: Transform pos: -38.5,-5.5 parent: 30 +- proto: VendingMachineDonut + entities: + - uid: 2022 + components: + - type: Transform + pos: -30.5,54.5 + parent: 30 - proto: VendingMachineEngiDrobe entities: - uid: 19406 @@ -129029,6 +129171,11 @@ entities: - type: Transform pos: -29.5,60.5 parent: 30 + - uid: 22808 + components: + - type: Transform + pos: -30.5,60.5 + parent: 30 - proto: VendingMachineSecDrobe entities: - uid: 2078 @@ -130319,11 +130466,6 @@ entities: - type: Transform pos: -42.5,50.5 parent: 30 - - uid: 1854 - components: - - type: Transform - pos: -36.5,49.5 - parent: 30 - uid: 1855 components: - type: Transform @@ -130394,36 +130536,6 @@ entities: - type: Transform pos: -42.5,57.5 parent: 30 - - uid: 1893 - components: - - type: Transform - pos: -42.5,56.5 - parent: 30 - - uid: 1894 - components: - - type: Transform - pos: -42.5,55.5 - parent: 30 - - uid: 1895 - components: - - type: Transform - pos: -42.5,54.5 - parent: 30 - - uid: 1896 - components: - - type: Transform - pos: -42.5,53.5 - parent: 30 - - uid: 1897 - components: - - type: Transform - pos: -42.5,52.5 - parent: 30 - - uid: 1898 - components: - - type: Transform - pos: -42.5,51.5 - parent: 30 - uid: 1899 components: - type: Transform @@ -130434,11 +130546,6 @@ entities: - type: Transform pos: -43.5,52.5 parent: 30 - - uid: 1901 - components: - - type: Transform - pos: -43.5,53.5 - parent: 30 - uid: 1902 components: - type: Transform @@ -130469,11 +130576,21 @@ entities: - type: Transform pos: -42.5,58.5 parent: 30 + - uid: 1916 + components: + - type: Transform + pos: -26.5,60.5 + parent: 30 - uid: 1952 components: - type: Transform pos: -51.5,-65.5 parent: 30 + - uid: 2005 + components: + - type: Transform + pos: -44.5,54.5 + parent: 30 - uid: 2034 components: - type: Transform @@ -130499,11 +130616,6 @@ entities: - type: Transform pos: -26.5,61.5 parent: 30 - - uid: 2039 - components: - - type: Transform - pos: -26.5,57.5 - parent: 30 - uid: 2067 components: - type: Transform @@ -130874,6 +130986,12 @@ entities: - type: Transform pos: -51.5,6.5 parent: 30 + - uid: 2543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,50.5 + parent: 30 - uid: 3153 components: - type: Transform @@ -130945,6 +131063,16 @@ entities: - type: Transform pos: 41.5,20.5 parent: 30 + - uid: 4602 + components: + - type: Transform + pos: -44.5,51.5 + parent: 30 + - uid: 4677 + components: + - type: Transform + pos: -44.5,56.5 + parent: 30 - uid: 4730 components: - type: Transform @@ -138278,6 +138406,33 @@ entities: - type: Transform pos: -44.5,73.5 parent: 30 + - uid: 22779 + components: + - type: Transform + pos: -44.5,52.5 + parent: 30 + - uid: 22780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,49.5 + parent: 30 + - uid: 22787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,53.5 + parent: 30 + - uid: 22805 + components: + - type: Transform + pos: -44.5,55.5 + parent: 30 + - uid: 23169 + components: + - type: Transform + pos: -44.5,53.5 + parent: 30 - proto: WallSolid entities: - uid: 3 @@ -140080,6 +140235,12 @@ entities: - type: Transform pos: -12.5,0.5 parent: 30 + - uid: 2075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,55.5 + parent: 30 - uid: 2211 components: - type: Transform @@ -140105,11 +140266,6 @@ entities: - type: Transform pos: -49.5,55.5 parent: 30 - - uid: 2216 - components: - - type: Transform - pos: -44.5,55.5 - parent: 30 - uid: 2217 components: - type: Transform @@ -144389,29 +144545,6 @@ entities: - 0 - proto: WardrobeSecurityFilled entities: - - uid: 2083 - components: - - type: Transform - pos: -30.5,60.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 6754 components: - type: Transform @@ -144521,6 +144654,11 @@ entities: - type: Transform pos: -23.5,15.5 parent: 30 + - uid: 4782 + components: + - type: Transform + pos: -28.5,48.5 + parent: 30 - uid: 11611 components: - type: Transform @@ -144709,28 +144847,6 @@ entities: parent: 30 - type: Physics canCollide: False -- proto: WeaponDisabler - entities: - - uid: 1563 - components: - - type: Transform - pos: -32.77784,56.587643 - parent: 30 - - uid: 1989 - components: - - type: Transform - pos: -32.762215,56.697018 - parent: 30 - - uid: 1991 - components: - - type: Transform - pos: -32.77784,56.462643 - parent: 30 - - uid: 2029 - components: - - type: Transform - pos: -41.54827,49.578175 - parent: 30 - proto: WeaponDisablerPractice entities: - uid: 19811 @@ -144738,6 +144854,38 @@ entities: - type: Transform pos: -38.42729,60.595303 parent: 30 +- proto: WeaponLaserCarbine + entities: + - uid: 2560 + components: + - type: Transform + pos: -39.548477,54.613476 + parent: 30 + - uid: 2577 + components: + - type: Transform + pos: -40.451256,54.49542 + parent: 30 + - uid: 4751 + components: + - type: Transform + pos: -39.53459,54.377365 + parent: 30 + - uid: 4787 + components: + - type: Transform + pos: -40.4582,54.60653 + parent: 30 + - uid: 6584 + components: + - type: Transform + pos: -40.43737,54.377365 + parent: 30 + - uid: 22782 + components: + - type: Transform + pos: -39.541534,54.49542 + parent: 30 - proto: WeaponLaserCarbinePractice entities: - uid: 22315 @@ -144745,32 +144893,33 @@ entities: - type: Transform pos: -38.316597,60.345554 parent: 30 +- proto: WeaponRifleLecter + entities: + - uid: 21907 + components: + - type: Transform + parent: 21165 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponShotgunKammerer entities: - - uid: 1978 + - uid: 17473 components: - type: Transform - pos: -41.42977,54.350964 - parent: 30 - - type: BallisticAmmoProvider - unspawnedCount: 4 - - uid: 1979 + parent: 16251 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponSubMachineGunDrozd + entities: + - uid: 20432 components: - type: Transform - pos: -41.42977,54.507214 - parent: 30 - - type: BallisticAmmoProvider - unspawnedCount: 4 - - uid: 9292 - components: - - type: Transform - pos: -41.445473,54.20003 - parent: 30 - - uid: 22538 - components: - - type: Transform - pos: -41.445473,54.621906 - parent: 30 + parent: 18838 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponSubMachineGunWt550 entities: - uid: 2000 @@ -144978,15 +145127,25 @@ entities: parent: 30 - proto: WindoorSecureArmoryLocked entities: - - uid: 1914 + - uid: 1753 components: - type: Transform - pos: -40.5,50.5 + pos: -40.5,56.5 parent: 30 - - uid: 1915 + - uid: 2006 components: - type: Transform - pos: -38.5,50.5 + pos: -38.5,56.5 + parent: 30 + - uid: 2216 + components: + - type: Transform + pos: -39.5,56.5 + parent: 30 + - uid: 3180 + components: + - type: Transform + pos: -41.5,56.5 parent: 30 - uid: 4450 components: @@ -145833,12 +145992,24 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,58.5 parent: 30 + - uid: 1953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,56.5 + parent: 30 - uid: 1977 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,40.5 parent: 30 + - uid: 1987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,56.5 + parent: 30 - uid: 2063 components: - type: Transform diff --git a/Resources/Prototypes/Maps/marathon.yml b/Resources/Prototypes/Maps/marathon.yml index 40f6b07002..d9770af26e 100644 --- a/Resources/Prototypes/Maps/marathon.yml +++ b/Resources/Prototypes/Maps/marathon.yml @@ -46,7 +46,7 @@ #security HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] - SecurityOfficer: [ 4, 4 ] + SecurityOfficer: [ 8, 8 ] Detective: [ 1, 1 ] SecurityCadet: [ 4, 4 ] Lawyer: [ 2, 2 ] From efa77f4f2acbf2465c0e945d5a83dac6ca820966 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 1 Feb 2025 06:33:48 +0000 Subject: [PATCH 037/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index d08f09340d..96f32fd2d6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Alice Liddel - changes: - - message: Crayon charges increased from 15 to 25 - type: Add - id: 7386 - time: '2024-09-17T00:35:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32061 - author: TheShuEd changes: - message: Anomalous infections added! People can now be infected by anomalies! @@ -3908,3 +3901,12 @@ id: 7885 time: '2025-01-31T23:39:22.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34794 +- author: Nox38 + changes: + - message: Set Marathon's max secoffs to 8. + type: Tweak + - message: Restocked Marathon's armory. + type: Tweak + id: 7886 + time: '2025-02-01T06:32:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34798 From 59e53dc025b67febb4c690077ca2ee3c6bf870ae Mon Sep 17 00:00:00 2001 From: ToxicSonicFan04 <167356917+ToxicSonicFan04@users.noreply.github.com> Date: Fri, 31 Jan 2025 22:35:36 -0800 Subject: [PATCH 038/313] Box Chemistry change (#34803) --- Resources/Maps/box.yml | 537 +++++++++++++++++++++-------------------- 1 file changed, 271 insertions(+), 266 deletions(-) diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index 7fe2a0b80e..b2d3563ea1 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -7927,7 +7927,8 @@ entities: 5,-7: 0: 65399 5,-6: - 0: 30579 + 0: 30515 + 4: 64 5,-9: 0: 30591 6,-8: @@ -8025,7 +8026,7 @@ entities: -9,3: 0: 15 1: 9472 - 4: 4608 + 5: 4608 -8,4: 0: 13073 -7,1: @@ -8150,7 +8151,7 @@ entities: 0: 45298 3,-13: 0: 61713 - 4: 204 + 5: 204 4,-12: 0: 65535 4,-11: @@ -8159,7 +8160,7 @@ entities: 0: 53744 4,-13: 0: 64716 - 4: 17 + 5: 17 5,-12: 0: 30583 5,-11: @@ -8170,30 +8171,30 @@ entities: 0: 30583 6,-12: 1: 4369 - 5: 204 - 4: 49152 + 6: 204 + 5: 49152 6,-11: 1: 61713 - 4: 204 + 5: 204 6,-10: 0: 29424 6,-13: 1: 4369 - 5: 49152 - 4: 204 + 6: 49152 + 5: 204 7,-12: - 5: 17 - 4: 4096 + 6: 17 + 5: 4096 1: 17476 7,-11: - 4: 17 + 5: 17 1: 29764 7,-10: 0: 61680 7,-13: - 5: 4096 + 6: 4096 1: 17476 - 4: 17 + 5: 17 8,-12: 0: 7647 8,-11: @@ -8250,7 +8251,7 @@ entities: 0: 61071 0,8: 0: 26367 - 6: 4096 + 7: 4096 2: 32768 1,4: 0: 61680 @@ -8306,21 +8307,21 @@ entities: 0: 65358 -3,7: 0: 55769 - 6: 1024 + 7: 1024 -3,8: 0: 65421 -2,5: 0: 57599 -2,6: 0: 65356 - 6: 2 + 7: 2 -2,7: 0: 65533 -2,8: 0: 64991 -1,8: 0: 206 - 6: 57376 + 7: 57376 4,8: 0: 65535 5,4: @@ -8386,10 +8387,10 @@ entities: 0: 65535 -1,9: 0: 61038 - 6: 128 + 7: 128 -1,10: 1: 60928 - 4: 192 + 5: 192 -1,11: 1: 14 0: 57344 @@ -8397,12 +8398,12 @@ entities: 0: 65518 0,9: 0: 32655 - 6: 16 + 7: 16 2: 32 - 7: 64 - 8: 32768 + 8: 64 + 9: 32768 0,10: - 4: 240 + 5: 240 1: 65280 0,11: 1: 15 @@ -8411,15 +8412,15 @@ entities: 0: 65535 1,9: 0: 52733 - 8: 4096 + 9: 4096 1,10: 1: 53504 - 4: 8192 + 5: 8192 0: 204 1,11: 1: 19549 0: 4096 - 4: 34 + 5: 34 1,12: 0: 4369 1: 17476 @@ -8487,7 +8488,7 @@ entities: 1: 34952 10,7: 1: 33249 - 4: 3598 + 5: 3598 9,8: 1: 34952 10,3: @@ -8499,10 +8500,10 @@ entities: 11,6: 1: 40844 11,7: - 4: 771 + 5: 771 1: 35064 10,8: - 4: 3598 + 5: 3598 1: 33249 11,5: 0: 34956 @@ -8518,10 +8519,10 @@ entities: 1: 20293 12,7: 1: 33008 - 4: 3598 + 5: 3598 11,8: 1: 35064 - 4: 771 + 5: 771 9,0: 3: 15 0: 65296 @@ -8666,7 +8667,7 @@ entities: 0: 65520 -10,4: 1: 3 - 4: 8 + 5: 8 0: 60928 -13,4: 0: 61432 @@ -8677,24 +8678,24 @@ entities: -12,6: 1: 44868 -12,7: - 4: 3855 + 5: 3855 1: 16624 -13,7: 1: 17652 - 4: 257 + 5: 257 -12,8: - 4: 3855 + 5: 3855 1: 16624 -11,5: 0: 4095 -11,6: 1: 18210 -11,7: - 4: 257 + 5: 257 1: 18006 -11,8: 1: 18006 - 4: 257 + 5: 257 -10,5: 0: 61182 -10,6: @@ -8725,19 +8726,19 @@ entities: -14,6: 1: 44953 -14,7: - 4: 3855 + 5: 3855 1: 16624 -14,3: 0: 65535 -14,8: - 4: 3855 + 5: 3855 1: 16624 -13,6: 1: 57600 0: 1092 -13,8: 1: 17652 - 4: 257 + 5: 257 -16,0: 0: 55807 -16,-1: @@ -8942,7 +8943,8 @@ entities: 9,-3: 0: 65407 9,-2: - 0: 65535 + 0: 57343 + 7: 8192 9,-5: 0: 61166 10,-4: @@ -8973,10 +8975,10 @@ entities: 13,6: 1: 40866 13,7: - 4: 771 + 5: 771 1: 36024 12,8: - 4: 3598 + 5: 3598 1: 33008 14,5: 0: 3 @@ -8985,7 +8987,7 @@ entities: 1: 310 13,8: 1: 36028 - 4: 771 + 5: 771 15,5: 1: 304 16,4: @@ -9024,17 +9026,17 @@ entities: 18,3: 0: 15 1: 3840 - 4: 4096 + 5: 4096 19,0: 1: 61455 19,1: 1: 36608 19,2: 1: 742 - 4: 8192 + 5: 8192 19,3: 1: 226 - 4: 32768 + 5: 32768 20,0: 1: 61715 20,1: @@ -9241,9 +9243,9 @@ entities: 3,-14: 0: 4415 1: 192 - 4: 49152 + 5: 49152 3,-17: - 9: 30576 + 10: 30576 4,-16: 1: 240 0: 61440 @@ -9252,7 +9254,7 @@ entities: 4,-14: 0: 52463 1: 16 - 4: 4096 + 5: 4096 8,-13: 0: 56605 9,-12: @@ -9668,7 +9670,7 @@ entities: 0: 15 16,-20: 1: 16 - 4: 52454 + 5: 52454 15,-20: 1: 44719 16,-19: @@ -9683,60 +9685,60 @@ entities: 0: 234 1: 20480 16,-21: - 4: 16384 + 5: 16384 1: 15 17,-20: 1: 144 - 4: 14178 + 5: 14178 17,-19: - 4: 1 + 5: 1 1: 63744 17,-18: 1: 153 0: 61440 17,-21: 1: 8207 - 4: 16384 + 5: 16384 18,-20: 1: 9910 - 4: 2056 + 5: 2056 18,-19: 1: 13990 - 4: 2056 + 5: 2056 18,-18: 0: 4096 1: 17486 18,-21: 1: 9895 - 4: 2056 + 5: 2056 19,-20: - 4: 3855 + 5: 3855 1: 8432 19,-19: - 4: 3855 + 5: 3855 1: 20720 19,-18: 1: 17487 19,-21: 1: 8432 - 4: 3855 + 5: 3855 20,-20: 1: 8946 - 4: 2056 + 5: 2056 20,-19: 1: 8946 - 4: 2056 + 5: 2056 20,-18: 1: 1839 0: 8192 20,-21: 1: 8946 - 4: 2056 + 5: 2056 21,-20: - 4: 3855 + 5: 3855 1: 8432 21,-19: - 4: 3855 + 5: 3855 1: 20720 21,-18: 1: 21855 @@ -9744,7 +9746,7 @@ entities: 1: 5621 21,-21: 1: 8432 - 4: 3855 + 5: 3855 22,-20: 1: 8995 22,-19: @@ -9773,7 +9775,7 @@ entities: 13,-18: 1: 17476 14,-20: - 4: 16 + 5: 16 14,-19: 1: 241 15,-21: @@ -9810,7 +9812,7 @@ entities: 0: 65535 4,-21: 0: 65348 - 4: 1 + 5: 1 3,-20: 0: 65535 4,-19: @@ -9824,7 +9826,7 @@ entities: 0: 255 1: 49152 4,-17: - 10: 30576 + 11: 30576 5,-20: 0: 65535 5,-19: @@ -9836,7 +9838,7 @@ entities: 0: 30576 5,-21: 0: 65280 - 4: 15 + 5: 15 6,-20: 0: 30583 6,-19: @@ -9868,15 +9870,15 @@ entities: 0: 30583 6,-15: 1: 4592 - 4: 49152 + 5: 49152 6,-14: 1: 4369 - 4: 49356 + 5: 49356 7,-15: 1: 17520 - 4: 4096 + 5: 4096 7,-14: - 4: 4113 + 5: 4113 1: 17476 -4,-20: 0: 61440 @@ -9892,28 +9894,28 @@ entities: 0: 57297 -3,-20: 0: 28672 - 4: 76 + 5: 76 -3,-19: 0: 30711 -3,-18: 0: 65520 -3,-21: - 4: 52428 + 5: 52428 1: 4353 -2,-20: - 4: 15 + 5: 15 0: 3840 -2,-19: 0: 65535 -2,-18: 0: 65535 -2,-21: - 4: 61696 + 5: 61696 1: 248 -1,-18: 0: 65534 -1,-21: - 4: 61440 + 5: 61440 1: 2296 -1,-20: 0: 61152 @@ -9921,7 +9923,7 @@ entities: 0: 36590 0,-20: 0: 15152 - 4: 8 + 5: 8 0,-19: 0: 35771 0,-18: @@ -9958,26 +9960,26 @@ entities: 1: 34824 -12,-16: 1: 20292 - 4: 10 + 5: 10 -13,-16: 1: 20292 - 4: 10 + 5: 10 -12,-15: 1: 17732 - 4: 43690 + 5: 43690 -13,-15: - 4: 43690 + 5: 43690 1: 17732 -12,-14: 1: 49060 - 4: 10 + 5: 10 -13,-14: 1: 65444 - 4: 10 + 5: 10 -12,-13: 1: 62 -12,-17: - 4: 43690 + 5: 43690 1: 17732 -11,-16: 1: 8994 @@ -10002,7 +10004,7 @@ entities: -13,-18: 1: 44800 -13,-17: - 4: 43690 + 5: 43690 1: 17732 -11,-18: 1: 8960 @@ -10011,10 +10013,10 @@ entities: -9,-18: 1: 1811 0,-21: - 4: 61440 + 5: 61440 1: 248 1,-20: - 4: 7 + 5: 7 0: 1792 1,-19: 0: 65535 @@ -10023,7 +10025,7 @@ entities: 1,-17: 0: 4095 1,-21: - 4: 64648 + 5: 64648 1: 112 2,-20: 0: 43962 @@ -10032,17 +10034,17 @@ entities: 2,-18: 0: 46011 2,-21: - 4: 13107 + 5: 13107 0: 34816 1: 8 3,-21: 0: 65280 - 4: 14 + 5: 14 0,-24: - 4: 64512 + 5: 64512 1: 136 -1,-24: - 4: 61696 + 5: 61696 1: 136 0,-23: 1: 35064 @@ -10051,32 +10053,32 @@ entities: 0,-22: 1: 35064 -1,-22: - 4: 128 + 5: 128 1: 34936 0,-25: 1: 36744 1,-24: - 4: 62208 + 5: 62208 1: 136 1,-23: 1: 112 - 4: 34956 + 5: 34956 1,-22: 1: 112 - 4: 34952 + 5: 34952 1,-25: 1: 36736 2,-23: - 4: 13073 + 5: 13073 1: 52224 2,-22: - 4: 4369 + 5: 4369 1: 36044 3,-23: 1: 61440 3,-22: 1: 15 - 4: 60928 + 5: 60928 3,-24: 1: 35939 3,-25: @@ -10087,7 +10089,7 @@ entities: 1: 64739 4,-22: 1: 15 - 4: 4352 + 5: 4352 0: 58368 -4,-24: 1: 310 @@ -10104,25 +10106,25 @@ entities: 0: 4 -4,-21: 1: 65295 - 4: 112 + 5: 112 -4,-25: 1: 51200 -3,-23: 1: 4352 - 4: 52462 + 5: 52462 -3,-22: 1: 4112 - 4: 61132 + 5: 61132 -3,-24: - 4: 32768 + 5: 32768 1: 136 -3,-25: 1: 36342 -2,-24: - 4: 63232 + 5: 63232 1: 136 -2,-23: - 4: 1 + 5: 1 1: 35064 -2,-22: 1: 35064 @@ -10134,7 +10136,7 @@ entities: 1: 61459 5,-22: 1: 15 - 4: 65280 + 5: 65280 5,-24: 1: 62432 6,-24: @@ -10171,24 +10173,24 @@ entities: 0: 2184 -15,-16: 1: 23391 - 4: 1024 + 5: 1024 -15,-15: 1: 34959 -15,-17: 1: 34952 -14,-16: 1: 20292 - 4: 10 + 5: 10 -14,-15: 1: 21588 - 4: 43690 + 5: 43690 -15,-14: 1: 2184 -14,-14: 1: 36772 - 4: 10 + 5: 10 -14,-17: - 4: 43690 + 5: 43690 1: 21588 -15,-18: 1: 34816 @@ -10199,23 +10201,23 @@ entities: -15,10: 1: 12 -14,9: - 4: 3855 + 5: 3855 1: 41200 -14,10: 1: 15 -13,9: - 4: 257 + 5: 257 1: 17652 -13,10: 1: 62901 - 4: 64 + 5: 64 -12,9: 1: 41200 - 4: 3855 + 5: 3855 -12,10: 1: 4383 -11,9: - 4: 257 + 5: 257 1: 18006 -11,10: 1: 7 @@ -10233,7 +10235,7 @@ entities: -3,14: 1: 3855 -2,13: - 11: 1 + 4: 1 0: 14 1: 11776 -2,14: @@ -10242,24 +10244,24 @@ entities: 1: 34952 10,9: 1: 16865 - 4: 3598 + 5: 3598 9,10: 1: 8 10,10: 1: 15 11,9: - 4: 771 + 5: 771 1: 39160 11,10: 1: 60011 - 4: 128 + 5: 128 12,9: 1: 16624 - 4: 3598 + 5: 3598 12,10: 1: 12862 13,9: - 4: 771 + 5: 771 1: 40124 13,10: 1: 15 @@ -10277,7 +10279,7 @@ entities: 1: 32768 20,-22: 1: 10970 - 4: 32 + 5: 32 19,-22: 1: 24456 21,-22: @@ -10362,6 +10364,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 24.680622 + - 92.84615 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -10467,21 +10484,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 24.680622 - - 92.84615 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 - type: Joint joints: @@ -13832,7 +13834,7 @@ entities: pos: 24.5,16.5 parent: 8364 - type: Door - secondsUntilStateChange: -88221.33 + secondsUntilStateChange: -93654.52 state: Opening - type: DeviceLinkSource lastSignals: @@ -15377,7 +15379,7 @@ entities: pos: 9.5,25.5 parent: 8364 - type: Door - secondsUntilStateChange: -1477.8262 + secondsUntilStateChange: -6911.021 state: Opening - type: DeviceLinkSource lastSignals: @@ -21289,12 +21291,12 @@ entities: - uid: 18896 components: - type: Transform - pos: 22.5,-18.5 + pos: 22.769361,-18.291506 parent: 8364 - uid: 18897 components: - type: Transform - pos: 22.5,-18.5 + pos: 22.60287,-18.097406 parent: 8364 - uid: 19264 components: @@ -67993,6 +67995,11 @@ entities: parent: 8364 - proto: ChairOfficeLight entities: + - uid: 3480 + components: + - type: Transform + pos: 18.604033,-17.353407 + parent: 8364 - uid: 5220 components: - type: Transform @@ -68062,12 +68069,6 @@ entities: - type: Transform pos: -24.5,-70.5 parent: 8364 - - uid: 18614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-17.5 - parent: 8364 - uid: 18685 components: - type: Transform @@ -68483,10 +68484,10 @@ entities: parent: 8364 - proto: ChemDispenser entities: - - uid: 18610 + - uid: 3272 components: - type: Transform - pos: 18.5,-18.5 + pos: 19.5,-16.5 parent: 8364 - uid: 18768 components: @@ -68500,13 +68501,18 @@ entities: parent: 8364 - proto: ChemistryHotplate entities: - - uid: 5920 + - uid: 18903 components: - type: Transform - pos: 18.5,-17.5 + pos: 21.5,-18.5 parent: 8364 - proto: ChemMaster entities: + - uid: 3280 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 8364 - uid: 18770 components: - type: Transform @@ -68517,11 +68523,6 @@ entities: - type: Transform pos: 22.5,-16.5 parent: 8364 - - uid: 18775 - components: - - type: Transform - pos: 18.5,-16.5 - parent: 8364 - proto: ChessBoard entities: - uid: 11671 @@ -75724,6 +75725,11 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-35.5 parent: 8364 + - uid: 2562 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 8364 - uid: 3724 components: - type: Transform @@ -80777,18 +80783,6 @@ entities: - type: Transform pos: 49.5,-43.5 parent: 8364 - - uid: 18920 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-17.5 - parent: 8364 - - uid: 18921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-18.5 - parent: 8364 - uid: 18922 components: - type: Transform @@ -83927,6 +83921,12 @@ entities: - type: Transform pos: 41.5,-26.5 parent: 8364 + - uid: 18606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-18.5 + parent: 8364 - uid: 18654 components: - type: Transform @@ -83961,11 +83961,6 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-47.5 parent: 8364 - - uid: 18895 - components: - - type: Transform - pos: 19.5,-16.5 - parent: 8364 - uid: 19072 components: - type: Transform @@ -84089,6 +84084,11 @@ entities: - type: Transform pos: 4.5,-9.5 parent: 8364 + - uid: 5920 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 8364 - uid: 6117 components: - type: Transform @@ -84254,11 +84254,6 @@ entities: - type: Transform pos: 43.5,-47.5 parent: 8364 - - uid: 18781 - components: - - type: Transform - pos: 19.5,-16.5 - parent: 8364 - uid: 19067 components: - type: Transform @@ -84346,11 +84341,6 @@ entities: parent: 8364 - proto: DogBed entities: - - uid: 3280 - components: - - type: Transform - pos: 21.5,-18.5 - parent: 8364 - uid: 3812 components: - type: Transform @@ -84370,6 +84360,11 @@ entities: - type: Transform pos: 35.5,-38.5 parent: 8364 + - uid: 18772 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 8364 - uid: 22265 components: - type: Transform @@ -87875,11 +87870,17 @@ entities: - type: Transform pos: 18.5,-13.5 parent: 8364 + - type: Door + secondsUntilStateChange: -885.5329 + state: Closing - uid: 13388 components: - type: Transform pos: 18.5,-14.5 parent: 8364 + - type: Door + secondsUntilStateChange: -921.2329 + state: Closing - uid: 13389 components: - type: Transform @@ -87914,7 +87915,6 @@ entities: - type: Transform pos: 20.5,24.5 parent: 8364 - - type: DeviceNetwork - uid: 13461 components: - type: Transform @@ -88047,7 +88047,7 @@ entities: pos: -34.5,-14.5 parent: 8364 - type: Door - secondsUntilStateChange: -82409.87 + secondsUntilStateChange: -87843.06 state: Closing - uid: 15010 components: @@ -126481,16 +126481,16 @@ entities: - type: Transform pos: 42.78838,-16.408396 parent: 8364 + - uid: 18610 + components: + - type: Transform + pos: 22.524746,-18.472406 + parent: 8364 - uid: 18707 components: - type: Transform pos: 11.49096,-33.114952 parent: 8364 - - uid: 18903 - components: - - type: Transform - pos: 22.5,-18.5 - parent: 8364 - uid: 21393 components: - type: Transform @@ -128278,43 +128278,11 @@ entities: - 0 - proto: LockerChemistryFilled entities: - - uid: 18772 + - uid: 18781 components: - type: Transform - pos: 22.5,-22.5 + pos: 22.5,-21.5 parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerChiefEngineerFilled entities: - uid: 18402 @@ -128643,6 +128611,26 @@ entities: - type: Transform pos: 37.5,-4.5 parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: Pullable + prevFixedRotation: True - uid: 8196 components: - type: Transform @@ -145227,6 +145215,11 @@ entities: - type: Transform pos: 57.348213,-49.249336 parent: 8364 + - uid: 17152 + components: + - type: Transform + pos: 22.10642,-18.301016 + parent: 8364 - proto: SheetPlasteel entities: - uid: 4582 @@ -145870,21 +145863,29 @@ entities: - type: Transform pos: 35.5,-10.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 2 - uid: 10455 components: - type: Transform pos: 36.5,-10.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 2 - uid: 10456 components: - type: Transform pos: 37.5,-10.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 2 - uid: 10457 components: - type: Transform pos: 38.5,-10.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 2 - uid: 20837 components: - type: Transform @@ -148026,6 +148027,12 @@ entities: - type: Transform pos: -36.5,-54.5 parent: 8364 + - uid: 16331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-17.5 + parent: 8364 - uid: 20883 components: - type: Transform @@ -149810,10 +149817,10 @@ entities: parent: 8364 - proto: SpawnMobWalter entities: - - uid: 3480 + - uid: 18775 components: - type: Transform - pos: 21.5,-18.5 + pos: 22.5,-22.5 parent: 8364 - proto: SpawnPointAtmos entities: @@ -149928,20 +149935,20 @@ entities: parent: 8364 - proto: SpawnPointChemist entities: + - uid: 1921 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 8364 + - uid: 18383 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 8364 - uid: 18603 components: - type: Transform - pos: 20.5,-19.5 - parent: 8364 - - uid: 18606 - components: - - type: Transform - pos: 20.5,-18.5 - parent: 8364 - - uid: 18608 - components: - - type: Transform - pos: 20.5,-17.5 + pos: 21.5,-17.5 parent: 8364 - proto: SpawnPointChiefEngineer entities: @@ -153682,11 +153689,6 @@ entities: - type: Transform pos: -23.5,-38.5 parent: 8364 - - uid: 3272 - components: - - type: Transform - pos: 18.5,-17.5 - parent: 8364 - uid: 3687 components: - type: Transform @@ -155281,11 +155283,6 @@ entities: - type: Transform pos: 20.5,-33.5 parent: 8364 - - uid: 2562 - components: - - type: Transform - pos: 22.5,-18.5 - parent: 8364 - uid: 3057 components: - type: Transform @@ -155396,11 +155393,21 @@ entities: - type: Transform pos: 18.5,-22.5 parent: 8364 + - uid: 18608 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 8364 - uid: 18699 components: - type: Transform pos: 41.5,-57.5 parent: 8364 + - uid: 18895 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 8364 - uid: 19076 components: - type: Transform @@ -157780,17 +157787,17 @@ entities: parent: 8364 - proto: VendingMachineChemDrobe entities: - - uid: 16331 + - uid: 18614 components: - type: Transform pos: 21.5,-27.5 parent: 8364 - proto: VendingMachineChemicals entities: - - uid: 17152 + - uid: 18921 components: - type: Transform - pos: 22.5,-21.5 + pos: 21.5,-21.5 parent: 8364 - proto: VendingMachineCigs entities: @@ -178867,12 +178874,6 @@ entities: rot: 3.141592653589793 rad pos: -54.5,16.5 parent: 8364 - - uid: 1921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-21.5 - parent: 8364 - uid: 2171 components: - type: Transform @@ -179211,11 +179212,10 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-62.5 parent: 8364 - - uid: 18383 + - uid: 18920 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-21.5 + pos: 22.5,-20.5 parent: 8364 - uid: 21305 components: @@ -179345,6 +179345,11 @@ entities: - type: Transform pos: -2.5,38.5 parent: 8364 + - uid: 26260 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 8364 - uid: 26856 components: - type: Transform From 79ef8a51d5503165a509c181966e830b471f5417 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 1 Feb 2025 06:36:42 +0000 Subject: [PATCH 039/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 22 +++++++--------------- 1 file changed, 7 insertions(+), 15 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 96f32fd2d6..1cc2bbf95b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,19 +1,4 @@ Entries: -- author: TheShuEd - changes: - - message: Anomalous infections added! People can now be infected by anomalies! - This allows you to use abnormal abilities, but can easily kill the host. To - cure them, bombard them with containment particles, because if the anomaly inside - them explodes, their bodies will be gibbed.... - type: Add - - message: Flesh anomaly resprite - type: Tweak - - message: anomalies now disconnect from the anomaly synchronizer if they are too - far away from it. - type: Fix - id: 7387 - time: '2024-09-17T09:49:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31876 - author: TheShuEd changes: - message: fix Tech anomaly loud sounds and superfast flickering @@ -3910,3 +3895,10 @@ id: 7886 time: '2025-02-01T06:32:42.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34798 +- author: ToxicSonicFan04 + changes: + - message: Added Sink to Chemistry on Box Station! + type: Add + id: 7887 + time: '2025-02-01T06:35:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34803 From 207aa5fb38b4bca7db3620858488ca910d096329 Mon Sep 17 00:00:00 2001 From: NazrinNya <137837419+NazrinNya@users.noreply.github.com> Date: Sat, 1 Feb 2025 12:10:20 +0000 Subject: [PATCH 040/313] Replacing protein with razorium in flesh kudzu (#32821) * Update kudzu.yml * FleshKudzu also contains a little of protein now * oop- * add meat tag --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Resources/Prototypes/Entities/Objects/Misc/kudzu.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml b/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml index c7a82d4183..c688c7cadc 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml @@ -247,8 +247,10 @@ solutions: food: reagents: - - ReagentId: Protein + - ReagentId: Razorium Quantity: 2 + - ReagentId: Protein + Quantity: 1 - type: Respirator damage: types: @@ -256,6 +258,9 @@ damageRecovery: types: Asphyxiation: -0.25 + - type: Tag + tags: + - Meat - type: entity name: dark haze From c139701830185cf374e8faa796c414287e230507 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 1 Feb 2025 12:11:28 +0000 Subject: [PATCH 041/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1cc2bbf95b..a117cbb255 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: TheShuEd - changes: - - message: fix Tech anomaly loud sounds and superfast flickering - type: Fix - id: 7388 - time: '2024-09-17T16:05:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32245 - author: drakewill-CRL changes: - message: Fixed plant mutations carrying over to other plants and future rounds. @@ -3902,3 +3895,10 @@ id: 7887 time: '2025-02-01T06:35:36.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34803 +- author: NazrinNya + changes: + - message: Flesh Kudzu now contains razorium, making it unsafe to eat. + type: Tweak + id: 7888 + time: '2025-02-01T12:10:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32821 From db1b0a91442baefba89fa8aee02f59acadf0a3f8 Mon Sep 17 00:00:00 2001 From: Boaz1111 <149967078+Boaz1111@users.noreply.github.com> Date: Sat, 1 Feb 2025 16:20:01 +0100 Subject: [PATCH 042/313] Separates frost oil into coldsauce and frost oil (#34458) --- Resources/Locale/en-US/reagents/frostoil.ftl | 3 ++ .../meta/consumable/food/condiments.ftl | 4 +-- .../meta/consumable/food/ingredients.ftl | 3 ++ .../Inventories/condiments.yml | 4 +-- .../Consumable/Food/Containers/condiments.yml | 6 ++-- .../Objects/Consumable/Food/produce.yml | 2 +- Resources/Prototypes/Hydroponics/seeds.yml | 2 +- .../Reagents/Consumable/Food/condiments.yml | 18 +++++------ .../Reagents/Consumable/Food/ingredients.yml | 30 +++++++++++++++++++ .../Prototypes/Recipes/Reactions/drinks.yml | 2 +- .../Prototypes/Recipes/Reactions/food.yml | 12 ++++++++ Resources/migration.yml | 3 ++ 12 files changed, 70 insertions(+), 19 deletions(-) create mode 100644 Resources/Locale/en-US/reagents/frostoil.ftl diff --git a/Resources/Locale/en-US/reagents/frostoil.ftl b/Resources/Locale/en-US/reagents/frostoil.ftl new file mode 100644 index 0000000000..f2181e7e4a --- /dev/null +++ b/Resources/Locale/en-US/reagents/frostoil.ftl @@ -0,0 +1,3 @@ +### Messages that pop up when metabolizing Frost Oil. + +frost-oil-effect-light-cold = You feel a slight cold tingle in your throat... \ No newline at end of file diff --git a/Resources/Locale/en-US/reagents/meta/consumable/food/condiments.ftl b/Resources/Locale/en-US/reagents/meta/consumable/food/condiments.ftl index 809fbafffd..0fe7be6b37 100644 --- a/Resources/Locale/en-US/reagents/meta/consumable/food/condiments.ftl +++ b/Resources/Locale/en-US/reagents/meta/consumable/food/condiments.ftl @@ -7,8 +7,8 @@ reagent-desc-bbq-sauce = Hand wipes not included. reagent-name-cornoil = corn oil reagent-desc-cornoil = Corn oil, A delicious oil used in cooking. Made from corn. -reagent-name-frostoil = frostoil -reagent-desc-frostoil = Leaves the tongue numb in its passage. +reagent-name-coldsauce = coldsauce +reagent-desc-coldsauce = Leaves the tongue numb in its passage. reagent-name-horseradish-sauce = horseradish sauce reagent-desc-horseradish-sauce = Smelly horseradish sauce. diff --git a/Resources/Locale/en-US/reagents/meta/consumable/food/ingredients.ftl b/Resources/Locale/en-US/reagents/meta/consumable/food/ingredients.ftl index 4f5c5ae782..98dc73ecbc 100644 --- a/Resources/Locale/en-US/reagents/meta/consumable/food/ingredients.ftl +++ b/Resources/Locale/en-US/reagents/meta/consumable/food/ingredients.ftl @@ -36,3 +36,6 @@ reagent-desc-oil = Used by chefs to cook. reagent-name-capsaicin-oil = Capsaicin Oil reagent-desc-capsaicin-oil = Capsaicin Oil is the ingredient found in different types of hot peppers. + +reagent-name-frost-oil = Frost Oil +reagent-desc-frost-oil = Frost Oil is the ingredient found in chilly peppers, a rare pepper mutation. diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml index 70924a1e6e..d0304bd4ad 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml @@ -3,7 +3,7 @@ startingInventory: FoodCondimentPacketAstrotame: 5 FoodCondimentPacketBbq: 5 - FoodCondimentPacketFrostoil: 5 + FoodCondimentPacketColdsauce: 5 FoodCondimentPacketHorseradish: 5 FoodCondimentPacketHotsauce: 5 FoodCondimentPacketKetchup: 5 @@ -17,4 +17,4 @@ SpoonPlastic: 10 KnifePlastic: 10 FoodPlatePlastic: 10 - FoodPlateSmallPlastic: 10 \ No newline at end of file + FoodPlateSmallPlastic: 10 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml index bbe5cf244b..c7de98b4a4 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml @@ -140,7 +140,7 @@ - type: entity parent: BaseFoodCondimentPacket - id: FoodCondimentPacketFrostoil + id: FoodCondimentPacketColdsauce name: coldsauce description: Coldsauce. Leaves the tongue numb in its passage. components: @@ -149,7 +149,7 @@ food: maxVol: 10 reagents: - - ReagentId: Frostoil + - ReagentId: Coldsauce Quantity: 10 - type: Icon state: packet-frostoil @@ -375,7 +375,7 @@ solutions: food: reagents: - - ReagentId: Frostoil + - ReagentId: Coldsauce Quantity: 30 - type: Sprite layers: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index 877f3d86f1..ce5aa2eef5 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -1386,7 +1386,7 @@ reagents: - ReagentId: Nutriment Quantity: 4 - - ReagentId: Frostoil + - ReagentId: FrostOil Quantity: 10 - ReagentId: Vitamin Quantity: 4 diff --git a/Resources/Prototypes/Hydroponics/seeds.yml b/Resources/Prototypes/Hydroponics/seeds.yml index 7349f3c3d7..de7be63d2b 100644 --- a/Resources/Prototypes/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Hydroponics/seeds.yml @@ -1136,7 +1136,7 @@ idealLight: 9 idealHeat: 298 chemicals: - Frostoil: + FrostOil: Min: 1 Max: 10 PotencyDivisor: 10 diff --git a/Resources/Prototypes/Reagents/Consumable/Food/condiments.yml b/Resources/Prototypes/Reagents/Consumable/Food/condiments.yml index 4cc2810792..f419605307 100644 --- a/Resources/Prototypes/Reagents/Consumable/Food/condiments.yml +++ b/Resources/Prototypes/Reagents/Consumable/Food/condiments.yml @@ -18,6 +18,15 @@ color: darkred recognizable: true +- type: reagent + id: Coldsauce + name: reagent-name-coldsauce + group: Foods + desc: reagent-desc-coldsauce + physicalDesc: reagent-physical-desc-cold + flavor: cold + color: skyblue + - type: reagent id: Cornoil name: reagent-name-cornoil @@ -28,15 +37,6 @@ color: yellow recognizable: true -- type: reagent - id: Frostoil - name: reagent-name-frostoil - group: Foods - desc: reagent-desc-frostoil - physicalDesc: reagent-physical-desc-cold - flavor: cold - color: skyblue - - type: reagent id: HorseradishSauce name: reagent-name-horseradish-sauce diff --git a/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml b/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml index d6f6305539..d2cf44e6d6 100644 --- a/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml +++ b/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml @@ -274,3 +274,33 @@ - !type:AdjustReagent reagent: Nutriment amount: 0.1 + +- type: reagent + id: FrostOil + name: reagent-name-frost-oil + group: Foods + desc: reagent-desc-frost-oil + physicalDesc: reagent-physical-desc-oily + flavor: cold + color: skyblue + metabolisms: + Food: + effects: + - !type:AdjustReagent + reagent: Nutriment #Oils enhance nutrition + amount: 0.75 + Poison: + effects: + - !type:AdjustTemperature + amount: -250 # thermal energy, not temp + - !type:HealthChange + conditions: + - !type:ReagentThreshold + min: 5 + damage: + types: + Cold: 1 + - !type:PopupMessage + type: Local + messages: [ "frost-oil-effect-light-cold" ] + probability: 0.2 diff --git a/Resources/Prototypes/Recipes/Reactions/drinks.yml b/Resources/Prototypes/Recipes/Reactions/drinks.yml index 790a236d5c..84d79466b9 100644 --- a/Resources/Prototypes/Recipes/Reactions/drinks.yml +++ b/Resources/Prototypes/Recipes/Reactions/drinks.yml @@ -519,7 +519,7 @@ reactants: Beer: amount: 10 - Frostoil: + FrostOil: amount: 1 products: IcedBeer: 10 diff --git a/Resources/Prototypes/Recipes/Reactions/food.yml b/Resources/Prototypes/Recipes/Reactions/food.yml index 7d524a9c7a..6d32948f89 100644 --- a/Resources/Prototypes/Recipes/Reactions/food.yml +++ b/Resources/Prototypes/Recipes/Reactions/food.yml @@ -284,6 +284,18 @@ products: Hotsauce: 3 +- type: reaction + id: CookingColdsauce + reactants: + JuiceTomato: + amount: 1 + TableSalt: + amount: 1 + FrostOil: + amount: 1 + products: + Coldsauce: 3 + - type: reaction id: CookingVinegar reactants: diff --git a/Resources/migration.yml b/Resources/migration.yml index a6aa44b326..b5e6294774 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -544,3 +544,6 @@ DrinkIrishCarBomb: DrinkIrishSlammer #2025-01-06 ClothingMaskSexyClown: ClothingMaskBlushingClown ClothingMaskSexyMime: ClothingMaskBlushingMime + +# 2025-01-27 +FoodCondimentPacketFrostoil: FoodCondimentPacketColdsauce From ce10a1b8c65655a5cb4e170ef84ecac79fe939cc Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 1 Feb 2025 15:21:08 +0000 Subject: [PATCH 043/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a117cbb255..53e6fe5946 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: drakewill-CRL - changes: - - message: Fixed plant mutations carrying over to other plants and future rounds. - type: Fix - id: 7389 - time: '2024-09-17T19:45:42.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32257 - author: Moomoobeef changes: - message: Added more names to the pool of names the AI can have. @@ -3902,3 +3895,14 @@ id: 7888 time: '2025-02-01T12:10:20.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32821 +- author: Boaz1111 + changes: + - message: 'New Reagent: Coldsauce! It can be made using the Frost Oil from Chilly + Peppers, similar to Hotsauce from Capsaicin Oil!' + type: Add + - message: Coldsauce packets and bottles now contain Coldsauce, instead of Frost + Oil. + type: Tweak + id: 7889 + time: '2025-02-01T15:20:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34458 From 6beb8e4d35f87dc34694847c8dfc6b9dde7c64f1 Mon Sep 17 00:00:00 2001 From: Spessmann <156740760+Spessmann@users.noreply.github.com> Date: Sat, 1 Feb 2025 08:52:32 -0800 Subject: [PATCH 044/313] Randomized maints rooms (#33619) * became real * should fix it * added moar --- Resources/Maps/Dungeon/maints.yml | 2402 +++++++++++++++++ .../Prototypes/Procedural/Themes/maints.yml | 169 ++ Resources/Prototypes/tags.yml | 3 + 3 files changed, 2574 insertions(+) create mode 100644 Resources/Maps/Dungeon/maints.yml create mode 100644 Resources/Prototypes/Procedural/Themes/maints.yml diff --git a/Resources/Maps/Dungeon/maints.yml b/Resources/Maps/Dungeon/maints.yml new file mode 100644 index 0000000000..ae7ec85858 --- /dev/null +++ b/Resources/Maps/Dungeon/maints.yml @@ -0,0 +1,2402 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 2: FloorAsteroidSand + 6: FloorAsteroidSandUnvariantized + 5: FloorAsteroidTile + 10: FloorAstroGrass + 8: FloorBrokenWood + 11: FloorRGlass + 82: FloorShuttleOrange + 1: FloorShuttlePurple + 89: FloorSteel + 9: FloorSteelDamaged + 7: FloorWood + 3: Plating + 4: PlatingAsteroid +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: MapGrid + chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: WQAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAWQAAAAACAQAAAAADAwAAAAAAWQAAAAADWQAAAAADAwAAAAAAAwAAAAAAAQAAAAADAwAAAAAAAwAAAAAAWQAAAAADWQAAAAABWQAAAAACCAAAAAAEBwAAAAABCAAAAAABBwAAAAADAQAAAAADAwAAAAAAWQAAAAACWQAAAAADWQAAAAABAwAAAAAAAQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABCAAAAAABBwAAAAABBwAAAAACBwAAAAABAQAAAAADWQAAAAACWQAAAAACWQAAAAADAwAAAAAAAwAAAAAAAQAAAAAAWQAAAAABAwAAAAAAWQAAAAADAwAAAAAAAwAAAAAABwAAAAADBwAAAAAABwAAAAABCAAAAAAFAQAAAAADWQAAAAACWQAAAAACAwAAAAAAAwAAAAAAWQAAAAABAQAAAAAAWQAAAAABWQAAAAABAwAAAAAAAwAAAAAAWQAAAAAABwAAAAADCAAAAAABBwAAAAACCAAAAAAAAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAABWQAAAAACAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAACAQAAAAADAQAAAAACAQAAAAADAQAAAAACAQAAAAACAQAAAAACAQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAADAQAAAAABWQAAAAABCgAAAAABAwAAAAAACQAAAAAACgAAAAADAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACCgAAAAACCgAAAAADCgAAAAAAWQAAAAACAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAACCQAAAAACCgAAAAAAAwAAAAAACgAAAAADCgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACgAAAAACCgAAAAADCgAAAAACCgAAAAABWQAAAAACAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAwAAAAAAWQAAAAACWQAAAAABAQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABAQAAAAADAQAAAAACAQAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAABWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAABAwAAAAAAAwAAAAAAWQAAAAABWQAAAAACAwAAAAAAAwAAAAAAWQAAAAAAWQAAAAACAwAAAAAAAQAAAAADWQAAAAABWQAAAAABWQAAAAABAwAAAAAAWQAAAAACAQAAAAACWQAAAAACAwAAAAAAAwAAAAAAWQAAAAACAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAQAAAAACWQAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAADAwAAAAAAWQAAAAAAAwAAAAAAAQAAAAADAwAAAAAAWQAAAAAAWQAAAAADWQAAAAADAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: WQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAQAAAAABWQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACWQAAAAACWQAAAAADAwAAAAAAWQAAAAACAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAABAQAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAwAAAAAAAwAAAAAAWQAAAAABAwAAAAAAAwAAAAAAAQAAAAAAWQAAAAADWQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACWQAAAAABWQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAABWQAAAAABAwAAAAAAAQAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAADAQAAAAADAwAAAAAAWQAAAAAAWQAAAAABAwAAAAAAWQAAAAADAwAAAAAAWQAAAAADAwAAAAAAAwAAAAAAAQAAAAACAwAAAAAAAwAAAAAAWQAAAAADWQAAAAADAwAAAAAAAQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAWQAAAAABAQAAAAADAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAWQAAAAADAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAACAwAAAAAAAwAAAAAAWQAAAAABAwAAAAAAAQAAAAACWQAAAAABAwAAAAAAWQAAAAACWQAAAAABAwAAAAAAAQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACAQAAAAADAQAAAAACAQAAAAAAAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAADAwAAAAAAAQAAAAACAwAAAAAAAwAAAAAAWQAAAAADAwAAAAAAAwAAAAAAAQAAAAADWQAAAAABAwAAAAAAWQAAAAADAwAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADAQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAWQAAAAACAwAAAAAAWQAAAAABWQAAAAACWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAADAwAAAAAAWQAAAAACCwAAAAADWQAAAAABAwAAAAAAAQAAAAABWQAAAAADWQAAAAADWQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAABWQAAAAAAAwAAAAAAAQAAAAAAWQAAAAACWQAAAAAAWQAAAAABAwAAAAAAAwAAAAAAAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAACAwAAAAAAAwAAAAAAWQAAAAABAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAWQAAAAACAQAAAAABAwAAAAAAWQAAAAACAwAAAAAAAwAAAAAAAQAAAAADAQAAAAACAQAAAAABAQAAAAAAAQAAAAACAQAAAAADAQAAAAAAAQAAAAABAQAAAAABAQAAAAAAAQAAAAAAAQAAAAACAQAAAAADAQAAAAACAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAACAQAAAAADAQAAAAADAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAABAQAAAAABAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAADAQAAAAAAAQAAAAACAQAAAAABAQAAAAADAQAAAAAC + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAACAQAAAAACAQAAAAABAQAAAAABAQAAAAADAQAAAAACAQAAAAACAQAAAAAD + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAD + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: AwAAAAAAAQAAAAABAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADAQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAACAwAAAAAAWQAAAAADAwAAAAAAWQAAAAABWQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAADAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAQAAAAAAWQAAAAACWQAAAAAAAwAAAAAAWQAAAAACAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAADAQAAAAAAAQAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAQAAAAADAwAAAAAAWQAAAAACWQAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAQAAAAACAwAAAAAAAwAAAAAAWQAAAAABAwAAAAAAAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAADAwAAAAAAWQAAAAABWQAAAAACAwAAAAAAWQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADAQAAAAACAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAQAAAAACWQAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAACAQAAAAABAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAABWQAAAAABAwAAAAAAWQAAAAACAwAAAAAAAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAADAwAAAAAAWQAAAAACAwAAAAAAWQAAAAAAWQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAQAAAAABWQAAAAAAWQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: WQAAAAABAQAAAAABAwAAAAAAWQAAAAADWQAAAAABWQAAAAADAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAAQAAAAADAQAAAAACAQAAAAACAQAAAAABAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAQAAAAACWQAAAAAAAwAAAAAAAwAAAAAAWQAAAAACAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAQAAAAABWQAAAAABAwAAAAAAWQAAAAAAWQAAAAACAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAQAAAAACAwAAAAAAWQAAAAAAWQAAAAACWQAAAAADAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAACAwAAAAAAAwAAAAAAWQAAAAADAwAAAAAAWQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAABAwAAAAAAWQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAABAwAAAAAAWQAAAAADAwAAAAAAWQAAAAACWQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAQAAAAABWQAAAAABAwAAAAAAWQAAAAACWQAAAAADWQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAABWQAAAAABWQAAAAACAwAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAABWQAAAAAAAwAAAAAAWQAAAAACAwAAAAAAWQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAQAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAWQAAAAABAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: AQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAQAAAAACAQAAAAACAQAAAAACAQAAAAACAQAAAAAAAQAAAAACAQAAAAABAQAAAAABAQAAAAACAQAAAAADAQAAAAACAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAABAQAAAAABAQAAAAACAQAAAAACAQAAAAADAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAACAQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAACAQAAAAACAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAAQAAAAADAQAAAAACAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAACAQAAAAADAQAAAAADAQAAAAADAQAAAAABAQAAAAACAQAAAAACAQAAAAACAQAAAAADAQAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAABAQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAABAQAAAAABAQAAAAABAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACAQAAAAADAQAAAAADAQAAAAABAQAAAAACAQAAAAACAQAAAAACAQAAAAABAQAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAABAQAAAAACAQAAAAADAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAADAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAADAQAAAAABAQAAAAADAQAAAAACAQAAAAABAQAAAAADAQAAAAABAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: AQAAAAACAQAAAAACAQAAAAACAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAACAQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAABAQAAAAABAQAAAAADAQAAAAADAQAAAAAAAQAAAAACAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAADAQAAAAADAQAAAAAAAQAAAAABAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#00D4D4FF' + id: Blasto + decals: + 447: 15.750851,6.288084 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 219: 1,15 + 221: 15,9 + 222: 14,9 + 223: 13,9 + 806: 3,21 + 807: 1,26 + 808: 19,20 + 809: 7,3 + - node: + color: '#FFFFFFFF' + id: Bushf1 + decals: + 66: 0.9926146,6.054738 + 71: 2.9403546,6.9957204 + 75: 1.1116524,7.4451113 + - node: + color: '#FFFFFFFF' + id: Bushf2 + decals: + 67: -0.025895834,9.01513 + 74: 3.3199868,7.922289 + - node: + color: '#FFFFFFFF' + id: Bushf3 + decals: + 68: 3.011142,9.186537 + 77: 1.743463,9.159254 + - node: + cleanable: True + color: '#FF5F00FF' + id: Clandestine + decals: + 564: 6,13 + - node: + cleanable: True + color: '#FFFFFF6D' + id: Dirt + decals: + 38: 2,1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 26: 3,8 + 28: 1,6 + 153: 19,7 + 154: 18,9 + 155: 21,10 + 156: 21,6 + 183: 9,6 + 184: 6,8 + 185: 8,10 + 186: 10,9 + 188: 7,8 + 214: 0,13 + 215: 2,12 + 216: 2,15 + 217: 4,15 + 218: 2,16 + 267: 10,0 + 268: 7,2 + 269: 6,0 + 271: 13,6 + 272: 16,8 + 303: 18,13 + 339: 22,4 + 341: 18,3 + 348: 13,0 + 349: 15,2 + 350: 13,3 + 351: 12,4 + 379: 20,2 + 380: 16,12 + 381: 14,15 + 385: 10,16 + 469: 15,14 + 569: 9,7 + 573: 8,13 + 574: 6,14 + 602: 18,21 + 603: 21,22 + 604: 22,19 + 605: 19,18 + 606: 20,20 + 649: 14,18 + 650: 12,20 + 651: 16,22 + 652: 8,20 + 653: 10,22 + 654: 9,18 + 655: 6,20 + 656: 7,24 + 657: 10,26 + 658: 7,28 + 659: 4,25 + 660: 2,24 + 661: 2,26 + 662: 3,27 + 663: 0,27 + 664: 3,21 + 665: 0,21 + 666: 3,19 + 667: 2,18 + 668: 16,24 + 669: 15,25 + 670: 13,25 + 672: 16,28 + 673: 21,25 + 674: 20,26 + 675: 18,28 + 676: 22,27 + 677: 19,24 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 95: 3,0 + 127: 18,6 + 128: 18,7 + 129: 19,7 + 131: 18,8 + 159: 7,9 + 169: 7,7 + 170: 8,8 + 171: 9,9 + 172: 10,10 + 173: 9,10 + 174: 8,10 + 175: 10,9 + 176: 10,8 + 177: 10,6 + 178: 8,6 + 179: 7,6 + 180: 6,6 + 181: 6,7 + 182: 6,8 + 191: 1,13 + 192: 0,13 + 193: 0,14 + 194: 1,14 + 195: 2,14 + 196: 2,13 + 197: 2,12 + 198: 3,12 + 199: 3,13 + 200: 4,12 + 201: 4,13 + 202: 4,14 + 203: 3,14 + 205: 4,15 + 208: 2,15 + 209: 2,16 + 210: 1,16 + 211: 1,15 + 212: 0,15 + 225: 7,1 + 226: 6,1 + 229: 8,1 + 252: 12,0 + 253: 13,0 + 256: 13,3 + 258: 13,2 + 274: 12,6 + 277: 16,6 + 278: 15,6 + 279: 15,9 + 281: 12,9 + 296: 13,1 + 297: 22,12 + 298: 21,14 + 299: 19,13 + 301: 19,15 + 305: 18,13 + 309: 22,16 + 311: 22,15 + 313: 19,12 + 317: 20,0 + 318: 19,1 + 319: 19,2 + 322: 22,4 + 345: 14,4 + 355: 14,15 + 356: 13,15 + 359: 9,12 + 362: 8,16 + 366: 8,12 + 386: 10,16 + 459: 12,12 + 461: 14,16 + 462: 12,15 + 464: 15,13 + 465: 14,13 + 466: 15,15 + 467: 14,14 + 468: 15,14 + 470: 0,0 + 471: 0,2 + 472: 0,4 + 473: 4,0 + 474: 2,0 + 475: 0,1 + 483: 14,0 + 484: 15,0 + 485: 16,1 + 486: 16,3 + 487: 15,4 + 488: 12,1 + 489: 12,3 + 490: 22,1 + 491: 22,2 + 492: 21,4 + 493: 19,4 + 494: 19,0 + 495: 20,6 + 496: 18,10 + 497: 22,8 + 498: 16,7 + 499: 14,7 + 500: 12,10 + 501: 14,10 + 502: 15,10 + 503: 20,12 + 504: 18,12 + 505: 21,16 + 506: 22,13 + 510: 16,16 + 511: 15,16 + 512: 10,13 + 513: 7,15 + 514: 6,13 + 524: 8,13 + 525: 7,13 + 526: 12,16 + 527: 12,14 + 528: 12,13 + 529: 15,12 + 530: 14,12 + 531: 16,14 + 532: 16,15 + 533: 18,15 + 534: 20,16 + 535: 19,16 + 536: 18,4 + 537: 16,4 + 544: 10,3 + 545: 8,0 + 567: 9,7 + 568: 8,7 + 570: 21,2 + 571: 21,1 + 572: 6,15 + 575: 18,14 + 576: 18,16 + 577: 21,18 + 578: 22,18 + 579: 22,19 + 581: 19,20 + 582: 20,21 + 583: 22,21 + 584: 21,21 + 585: 20,19 + 586: 21,20 + 587: 22,20 + 588: 20,18 + 590: 18,18 + 591: 18,19 + 592: 18,20 + 593: 19,22 + 594: 18,22 + 595: 22,22 + 596: 20,22 + 629: 13,18 + 630: 12,18 + 631: 12,19 + 632: 16,20 + 633: 16,19 + 634: 13,20 + 635: 12,22 + 636: 13,22 + 637: 15,22 + 638: 15,18 + 648: 14,21 + 678: 13,24 + 679: 14,25 + 680: 13,25 + 683: 16,28 + 684: 16,26 + 685: 16,24 + 702: 20,25 + 703: 19,27 + 706: 21,24 + 707: 22,25 + 708: 18,27 + 709: 21,28 + 710: 18,24 + 711: 21,26 + 725: 6,16 + 726: 4,16 + 727: 0,16 + 728: 7,22 + 729: 10,24 + 730: 9,25 + 731: 7,26 + 732: 9,28 + 733: 6,27 + 734: 6,26 + 735: 7,24 + 736: 10,26 + 737: 10,27 + 738: 7,28 + 754: 20,26 + 755: 4,24 + 756: 2,25 + 757: 3,27 + 759: 0,25 + 760: 0,24 + 785: 2,20 + 786: 3,20 + 787: 2,19 + 788: 3,21 + 789: 3,19 + 805: 3,15 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 753: 8,26 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 17: 4,7 + 18: 4,7 + 19: 4,7 + 22: 0,8 + 23: 3,6 + 24: 2,10 + 25: 2,10 + 94: 1,0 + 143: 19,10 + 144: 20,9 + 145: 21,8 + 146: 22,7 + 148: 21,9 + 149: 22,10 + 151: 22,9 + 152: 21,10 + 168: 6,10 + 231: 8,4 + 232: 9,3 + 233: 10,2 + 241: 7,3 + 243: 7,2 + 244: 8,2 + 245: 9,1 + 246: 9,0 + 247: 6,0 + 248: 3,16 + 291: 16,8 + 293: 13,6 + 294: 14,2 + 295: 14,1 + 332: 18,0 + 333: 21,0 + 334: 18,2 + 335: 18,3 + 336: 20,3 + 337: 20,4 + 387: 9,16 + 388: 6,12 + 518: 7,13 + 519: 6,14 + 520: 8,15 + 521: 9,15 + 522: 10,14 + 550: 1,10 + 551: 3,10 + 552: 4,10 + 553: 4,9 + 554: 12,7 + 555: 16,10 + 556: 13,10 + 557: 19,6 + 558: 20,10 + 559: 21,3 + 562: 22,14 + 565: 2,6 + 566: 8,14 + 622: 6,21 + 623: 6,22 + 624: 8,22 + 625: 9,20 + 626: 9,21 + 627: 10,21 + 628: 10,18 + 646: 12,21 + 647: 16,21 + 697: 12,24 + 698: 12,26 + 699: 12,28 + 700: 14,28 + 701: 14,26 + 719: 18,25 + 720: 19,28 + 721: 20,28 + 722: 21,27 + 723: 20,24 + 749: 9,24 + 750: 10,25 + 751: 8,25 + 752: 8,27 + 774: 0,26 + 775: 2,26 + 776: 3,25 + 777: 0,28 + 778: 2,28 + 779: 4,28 + 801: 0,18 + 802: 4,18 + 803: 4,21 + 804: 0,22 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 134: 18,9 + 135: 19,8 + 136: 20,7 + 137: 21,6 + 138: 22,6 + 139: 21,7 + 140: 20,8 + 141: 19,9 + 161: 9,8 + 162: 9,6 + 163: 10,7 + 164: 7,8 + 165: 8,9 + 166: 7,10 + 167: 6,9 + 236: 6,4 + 237: 7,4 + 239: 10,0 + 240: 10,1 + 260: 16,0 + 263: 12,4 + 264: 13,4 + 266: 16,2 + 283: 12,8 + 285: 14,6 + 287: 16,9 + 327: 22,3 + 331: 22,0 + 338: 19,3 + 346: 14,3 + 347: 15,3 + 367: 7,12 + 369: 10,15 + 371: 7,16 + 374: 10,12 + 376: 13,16 + 378: 16,13 + 517: 0,12 + 538: 12,2 + 539: 6,2 + 540: 6,3 + 541: 10,4 + 542: 9,4 + 546: 7,0 + 547: 0,6 + 548: 0,7 + 549: 0,10 + 597: 18,21 + 598: 19,21 + 599: 21,22 + 600: 20,20 + 601: 19,18 + 608: 9,18 + 609: 6,19 + 610: 9,22 + 611: 10,20 + 612: 8,20 + 613: 7,18 + 614: 6,18 + 615: 10,19 + 616: 6,20 + 618: 8,18 + 619: 10,22 + 620: 9,19 + 621: 8,21 + 639: 15,19 + 640: 14,19 + 641: 14,18 + 642: 12,20 + 643: 16,22 + 644: 14,22 + 645: 16,18 + 686: 14,24 + 687: 12,25 + 688: 13,26 + 689: 12,27 + 690: 13,28 + 691: 15,28 + 692: 16,27 + 693: 16,25 + 694: 15,24 + 695: 15,25 + 696: 15,26 + 704: 19,26 + 705: 21,25 + 712: 18,26 + 713: 20,27 + 714: 22,24 + 715: 18,28 + 716: 22,26 + 717: 22,28 + 718: 22,27 + 739: 6,24 + 740: 7,25 + 741: 7,27 + 742: 6,28 + 743: 8,28 + 744: 9,27 + 745: 10,28 + 746: 6,25 + 747: 8,24 + 748: 9,26 + 761: 1,24 + 762: 1,25 + 763: 3,24 + 764: 4,25 + 765: 4,26 + 766: 2,24 + 767: 0,27 + 768: 1,26 + 769: 1,28 + 770: 2,27 + 771: 3,26 + 772: 4,27 + 773: 3,28 + 790: 3,18 + 791: 1,18 + 792: 0,19 + 793: 0,21 + 794: 2,22 + 795: 1,22 + 796: 3,22 + 797: 4,20 + 798: 4,19 + 799: 0,20 + 800: 4,22 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 80: 1.0463814,8.287419 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 81: 2.0432951,6.945241 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 79: 0.92909765,9.108977 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 78: 4.043461,6.0179305 + - node: + cleanable: True + color: '#9ABB00FF' + id: Gib + decals: + 449: 19.008198,0.9538171 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 82: 2.49391,8.717236 + 83: 4.099624,7.9493446 + 84: 0.97462475,7.0111895 + 85: 3.2385101,8.651217 + - node: + cleanable: True + color: '#D439DBFF' + id: Max + decals: + 450: 13.987783,1.9440596 + - node: + cleanable: True + color: '#6129B0FF' + id: Prima + decals: + 452: 8.033474,8.849318 + - node: + cleanable: True + color: '#D48335FF' + id: Psyke + decals: + 451: 13,16 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 106: 4,4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 107: 1,4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 108: 4,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 99: 1,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 109: 4,2 + 110: 4,3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 111: 2,4 + 112: 3,4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 103: 2,1 + 104: 3,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 100: 1,2 + 101: 1,3 + - node: + cleanable: True + color: '#FF5F6CFF' + id: amyjon + decals: + 563: 22,13 + - node: + cleanable: True + color: '#FFFFFFFF' + id: body + decals: + 157: 19,9 + - node: + cleanable: True + color: '#9D1500FF' + id: engie + decals: + 448: 7.010515,0.8736541 + - node: + cleanable: True + color: '#4D00A1FF' + id: matt + decals: + 86: 4.0649,9.103307 + - node: + cleanable: True + color: '#348800FF' + id: prolizard + decals: + 453: 7.1689034,7.1397905 + - node: + cleanable: True + color: '#503E005B' + id: splatter + decals: + 810: 2.0135477,19.99514 + - type: LoadedMap + - type: SpreaderGrid + - type: GridPathfinding + - type: RadiationGridResistance +- proto: AirCanister + entities: + - uid: 146 + components: + - type: Transform + pos: 15.5,15.5 + parent: 1 +- proto: AltarConvertMaint + entities: + - uid: 3 + components: + - type: Transform + pos: 2.5,14.5 + parent: 1 +- proto: Barricade + entities: + - uid: 122 + components: + - type: Transform + pos: 22.5,15.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 16.5,8.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 8.5,18.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 7.5,22.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 64 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,7.5 + parent: 1 + - uid: 66 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,10.5 + parent: 1 + - uid: 69 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,10.5 + parent: 1 + - uid: 70 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,10.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,10.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,10.5 + parent: 1 + - uid: 73 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,9.5 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 1 + - uid: 75 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 1 + - uid: 76 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,6.5 + parent: 1 + - uid: 77 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,6.5 + parent: 1 + - uid: 78 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1 + - uid: 79 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,6.5 + parent: 1 + - uid: 163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,12.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,12.5 + parent: 1 + - uid: 167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,13.5 + parent: 1 + - uid: 168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,14.5 + parent: 1 + - uid: 169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,16.5 + parent: 1 + - uid: 171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,16.5 + parent: 1 + - uid: 172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 1 +- proto: Chair + entities: + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,8.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: 13.5,7.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 15.5,7.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 14.5,7.5 + parent: 1 + - uid: 115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,8.5 + parent: 1 + - uid: 127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,13.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,14.5 + parent: 1 +- proto: ChairFolding + entities: + - uid: 82 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,8.5 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 1 + - uid: 84 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.59151,2.6490026 + parent: 1 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 85 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 1 +- proto: ChairOfficeDark + entities: + - uid: 10 + components: + - type: Transform + pos: 14.5,3.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,1.5 + parent: 1 + - uid: 247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,26.5 + parent: 1 +- proto: ChairOfficeLight + entities: + - uid: 201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,20.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,20.5 + parent: 1 +- proto: ChairWood + entities: + - uid: 2 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 2.5,15.5 + parent: 1 + - uid: 30 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 47 + components: + - type: Transform + pos: 13.5,9.5 + parent: 1 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 11 + components: + - type: Transform + pos: 14.5,9.5 + parent: 1 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 17 + components: + - type: Transform + pos: 3.5,21.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 10.5,25.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 15.5,9.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 1.5,15.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 19.5,20.5 + parent: 1 +- proto: ComputerBroken + entities: + - uid: 48 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,1.5 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,20.5 + parent: 1 + - uid: 245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,25.5 + parent: 1 +- proto: ComputerFrame + entities: + - uid: 51 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,3.5 + parent: 1 + - uid: 246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,26.5 + parent: 1 +- proto: CrateHydroponicsSeeds + entities: + - uid: 23 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 +- proto: DisposalBend + entities: + - uid: 258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,20.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: 3.5,22.5 + parent: 1 +- proto: DisposalPipe + entities: + - uid: 260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,22.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: 3.5,21.5 + parent: 1 +- proto: DisposalPipeBroken + entities: + - uid: 262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,22.5 + parent: 1 +- proto: DisposalTrunk + entities: + - uid: 259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,20.5 + parent: 1 +- proto: FolderSpawner + entities: + - uid: 38 + components: + - type: Transform + pos: 14.5,19.5 + parent: 1 +- proto: GasMixerFlipped + entities: + - uid: 177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,14.5 + parent: 1 +- proto: GasPipeBend + entities: + - uid: 141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,15.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,14.5 + parent: 1 + - uid: 183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,13.5 + parent: 1 +- proto: GasPipeStraight + entities: + - uid: 151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,15.5 + parent: 1 +- proto: GasPort + entities: + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,13.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,15.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,14.5 + parent: 1 +- proto: Girder + entities: + - uid: 50 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 14.5,21.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 15.5,27.5 + parent: 1 +- proto: Grille + entities: + - uid: 98 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1 +- proto: GrilleSpawner + entities: + - uid: 44 + components: + - type: Transform + pos: 8.5,14.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 9.5,19.5 + parent: 1 +- proto: hydroponicsSoil + entities: + - uid: 4 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 +- proto: HydroponicsTrayEmpty + entities: + - uid: 18 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 +- proto: KitchenMicrowave + entities: + - uid: 236 + components: + - type: Transform + pos: 21.5,25.5 + parent: 1 +- proto: KitchenReagentGrinder + entities: + - uid: 197 + components: + - type: Transform + pos: 20.5,19.5 + parent: 1 +- proto: LockerElectricalSupplies + entities: + - uid: 180 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1 +- proto: LootSpawnerCableCoil + entities: + - uid: 184 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 13.5,19.5 + parent: 1 +- proto: LootSpawnerIndustrial + entities: + - uid: 32 + components: + - type: Transform + pos: 12.5,14.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 7.5,15.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 8.5,20.5 + parent: 1 +- proto: LootSpawnerIndustrialFluff + entities: + - uid: 109 + components: + - type: Transform + pos: 1.5,14.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 15.5,12.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: 7.5,25.5 + parent: 1 +- proto: LootSpawnerMaterials + entities: + - uid: 227 + components: + - type: Transform + pos: 8.5,21.5 + parent: 1 +- proto: LootSpawnerMedicalMinor + entities: + - uid: 24 + components: + - type: Transform + pos: 20.5,1.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 20.5,2.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 21.5,21.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: 3.5,26.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: 1.5,24.5 + parent: 1 +- proto: MachineFrame + entities: + - uid: 272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,25.5 + parent: 1 +- proto: MaintenanceFluffSpawner + entities: + - uid: 36 + components: + - type: Transform + pos: 16.5,7.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 21.5,1.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 3.5,25.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1 +- proto: MaintenancePlantSpawner + entities: + - uid: 41 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 18.5,1.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 13.5,12.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: 18.5,21.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: 9.5,27.5 + parent: 1 +- proto: MaintenanceToolSpawner + entities: + - uid: 104 + components: + - type: Transform + pos: 15.5,2.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: 21.5,14.5 + parent: 1 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 103 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 20.5,8.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 21.5,13.5 + parent: 1 +- proto: Mattress + entities: + - uid: 95 + components: + - type: Transform + pos: 22.5,4.5 + parent: 1 +- proto: OperatingTable + entities: + - uid: 21 + components: + - type: Transform + pos: 1.5,26.5 + parent: 1 +- proto: PortableGeneratorJrPacman + entities: + - uid: 143 + components: + - type: Transform + pos: 7.5,13.5 + parent: 1 +- proto: PosterBroken + entities: + - uid: 239 + components: + - type: Transform + pos: 21.5,15.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 7.5,14.5 + parent: 1 +- proto: PosterContrabandAmbrosiaVulgaris + entities: + - uid: 25 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 +- proto: PosterContrabandEAT + entities: + - uid: 230 + components: + - type: Transform + pos: 19.5,25.5 + parent: 1 +- proto: Rack + entities: + - uid: 96 + components: + - type: Transform + pos: 16.5,7.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 21.5,1.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 21.5,13.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 21.5,14.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 8.5,20.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 8.5,21.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 19.5,27.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 19.5,26.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 2.5,19.5 + parent: 1 +- proto: Railing + entities: + - uid: 8 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 1 + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,9.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 8.5,7.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,8.5 + parent: 1 +- proto: RailingCorner + entities: + - uid: 57 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,9.5 + parent: 1 + - uid: 58 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,9.5 + parent: 1 + - uid: 59 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,7.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 +- proto: RandomDrinkGlass + entities: + - uid: 13 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 +- proto: RandomDrinkSoda + entities: + - uid: 194 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: 21.5,20.5 + parent: 1 +- proto: RandomFoodBakedWhole + entities: + - uid: 231 + components: + - type: Transform + pos: 20.5,25.5 + parent: 1 +- proto: RandomIngredient + entities: + - uid: 233 + components: + - type: Transform + pos: 19.5,26.5 + parent: 1 +- proto: RandomPosterContraband + entities: + - uid: 89 + components: + - type: Transform + pos: 13.5,21.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 7.5,20.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 19.5,19.5 + parent: 1 +- proto: RandomProduce + entities: + - uid: 34 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 19.5,27.5 + parent: 1 +- proto: RandomSnacks + entities: + - uid: 144 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1 +- proto: RandomSoap + entities: + - uid: 252 + components: + - type: Transform + pos: 2.5,19.5 + parent: 1 +- proto: RandomSpawner + entities: + - uid: 39 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 13.5,22.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 18.5,26.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 22.5,22.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 20.5,24.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 7.5,18.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 15.5,24.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: 13.5,28.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 22.5,0.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 19.5,6.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 15.5,16.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: 20.5,18.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 21.5,27.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: 9.5,24.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 9.5,22.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1 +- proto: SignBiohazardMed + entities: + - uid: 43 + components: + - type: Transform + pos: 1.5,27.5 + parent: 1 +- proto: SignElectricalMed + entities: + - uid: 149 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1 +- proto: SignFlammableMed + entities: + - uid: 268 + components: + - type: Transform + pos: 13.5,13.5 + parent: 1 +- proto: SignLaserMed + entities: + - uid: 118 + components: + - type: Transform + pos: 13.5,27.5 + parent: 1 +- proto: SignRestroom + entities: + - uid: 265 + components: + - type: Transform + pos: 1.5,20.5 + parent: 1 +- proto: SinkWide + entities: + - uid: 137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,27.5 + parent: 1 +- proto: SpawnMobMonkey + entities: + - uid: 80 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1 +- proto: Stool + entities: + - uid: 9 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,13.5 + parent: 1 + - uid: 81 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,13.5 + parent: 1 + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,13.5 + parent: 1 +- proto: Table + entities: + - uid: 33 + components: + - type: Transform + pos: 21.5,21.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,2.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,1.5 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,1.5 + parent: 1 + - uid: 110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,2.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,8.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 21.5,19.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 3.5,25.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 21.5,20.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 3.5,26.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 20.5,19.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 15.5,19.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: 14.5,19.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: 13.5,19.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 20.5,25.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 21.5,25.5 + parent: 1 +- proto: TableCarpet + entities: + - uid: 26 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 +- proto: TableWood + entities: + - uid: 22 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,14.5 + parent: 1 + - uid: 113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,14.5 + parent: 1 +- proto: ToiletDirtyWater + entities: + - uid: 257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,20.5 + parent: 1 +- proto: WallSolid + entities: + - uid: 12 + components: + - type: Transform + pos: 20.5,14.5 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,27.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 21.5,15.5 + parent: 1 + - uid: 136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,14.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: 13.5,21.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 7.5,20.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: 7.5,19.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 1.5,20.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 2.5,21.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 13.5,27.5 + parent: 1 +- proto: WallSolidRust + entities: + - uid: 15 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 19.5,14.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 20.5,13.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 20.5,15.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,14.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,13.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,13.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,19.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 15.5,21.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 7.5,21.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 8.5,19.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 19.5,25.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: 1.5,19.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: 1.5,21.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: 14.5,27.5 + parent: 1 +- proto: WaterTankFull + entities: + - uid: 19 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 +- proto: Window + entities: + - uid: 100 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1 +- proto: WindowDirectional + entities: + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,1.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,2.5 + parent: 1 + - uid: 165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,3.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 1 + - uid: 174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,1.5 + parent: 1 + - uid: 198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,21.5 + parent: 1 + - uid: 199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,20.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,19.5 + parent: 1 + - uid: 243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,26.5 + parent: 1 + - uid: 244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,25.5 + parent: 1 +... diff --git a/Resources/Prototypes/Procedural/Themes/maints.yml b/Resources/Prototypes/Procedural/Themes/maints.yml new file mode 100644 index 0000000000..39ab39b0ea --- /dev/null +++ b/Resources/Prototypes/Procedural/Themes/maints.yml @@ -0,0 +1,169 @@ +- type: dungeonRoom + id: Maints5x5a + size: 5,5 + atlas: /Maps/Dungeon/maints.yml + offset: 0,0 + tags: + - Maints + +- type: dungeonRoom + id: Maints5x5b + size: 5,5 + atlas: /Maps/Dungeon/maints.yml + offset: 6,0 + tags: + - Maints + +- type: dungeonRoom + id: Maints5x5c + size: 5,5 + atlas: /Maps/Dungeon/maints.yml + offset: 12,0 + tags: + - Maints + +- type: dungeonRoom + id: Maints5x5d + size: 5,5 + atlas: /Maps/Dungeon/maints.yml + offset: 18,0 + tags: + - Maints + +- type: dungeonRoom + id: Maints5x5e + size: 5,5 + atlas: /Maps/Dungeon/maints.yml + offset: 0,6 + tags: + - Maints + +- type: dungeonRoom + id: Maints5x5f + size: 5,5 + atlas: /Maps/Dungeon/maints.yml + offset: 6,6 + tags: + - Maints + +- type: dungeonRoom + id: Maints5x5g + size: 5,5 + atlas: /Maps/Dungeon/maints.yml + offset: 12,6 + tags: + - Maints + +- type: dungeonRoom + id: Maints5x5h + size: 5,5 + atlas: /Maps/Dungeon/maints.yml + offset: 18,6 + tags: + - Maints + +- type: dungeonRoom + id: Maints5x5i + size: 5,5 + atlas: /Maps/Dungeon/maints.yml + offset: 0,12 + tags: + - Maints + +- type: dungeonRoom + id: Maints5x5j + size: 5,5 + atlas: /Maps/Dungeon/maints.yml + offset: 6,12 + tags: + - Maints + +- type: dungeonRoom + id: Maints5x5k + size: 5,5 + atlas: /Maps/Dungeon/maints.yml + offset: 12,12 + tags: + - Maints + +- type: dungeonRoom + id: Maints5x5l + size: 5,5 + atlas: /Maps/Dungeon/maints.yml + offset: 18,12 + tags: + - Maints + +- type: dungeonRoom + id: Maints5x5m + size: 5,5 + atlas: /Maps/Dungeon/maints.yml + offset: 0,18 + tags: + - Maints + +- type: dungeonRoom + id: Maints5x5n + size: 5,5 + atlas: /Maps/Dungeon/maints.yml + offset: 6,18 + tags: + - Maints + +- type: dungeonRoom + id: Maints5x5o + size: 5,5 + atlas: /Maps/Dungeon/maints.yml + offset: 12,18 + tags: + - Maints + +- type: dungeonRoom + id: Maints5x5p + size: 5,5 + atlas: /Maps/Dungeon/maints.yml + offset: 18,18 + tags: + - Maints + +- type: dungeonRoom + id: Maints5x5q + size: 5,5 + atlas: /Maps/Dungeon/maints.yml + offset: 0,24 + tags: + - Maints + +- type: dungeonRoom + id: Maints5x5r + size: 5,5 + atlas: /Maps/Dungeon/maints.yml + offset: 6,24 + tags: + - Maints + +- type: dungeonRoom + id: Maints5x5s + size: 5,5 + atlas: /Maps/Dungeon/maints.yml + offset: 12,24 + tags: + - Maints + +- type: dungeonRoom + id: Maints5x5t + size: 5,5 + atlas: /Maps/Dungeon/maints.yml + offset: 18,24 + tags: + - Maints + +- type: entity + id: MaintsRoomMarker + parent: BaseRoomMarker + name: Maints interior marker + components: + - type: RoomFill + roomWhitelist: + tags: + - Maints diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index f1283f96e6..805eb4d523 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -846,6 +846,9 @@ - type: Tag id: MailingUnitElectronics +- type: Tag + id: Maints + - type: Tag id: Matchstick From 763136f09e08a64c21b126796c13986db4b24404 Mon Sep 17 00:00:00 2001 From: ToxicSonicFan04 <167356917+ToxicSonicFan04@users.noreply.github.com> Date: Sat, 1 Feb 2025 13:19:28 -0800 Subject: [PATCH 045/313] Armory Packed update. (#34808) --- Resources/Maps/packed.yml | 793 +++++++++++++++++---------- Resources/Prototypes/Maps/packed.yml | 2 +- 2 files changed, 494 insertions(+), 301 deletions(-) diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml index 57aeaad788..9b58f41a03 100644 --- a/Resources/Maps/packed.yml +++ b/Resources/Maps/packed.yml @@ -154,7 +154,7 @@ entities: version: 6 2,1: ind: 2,1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAABWwAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAADewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABewAAAAAAawAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAADWwAAAAACewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADewAAAAAAHQAAAAACHQAAAAACHQAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABewAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAABewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAACewAAAAAATQAAAAAAHQAAAAABHQAAAAADTQAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAADewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAAAHQAAAAADewAAAAAAewAAAAAAHQAAAAADHQAAAAADewAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAABewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAACHQAAAAAAewAAAAAATQAAAAAAHQAAAAACHQAAAAABTQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAABWwAAAAADHQAAAAADewAAAAAATQAAAAAAHQAAAAAAHQAAAAAATQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAACHQAAAAACewAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAABWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACewAAAAAAagAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAACWwAAAAADewAAAAAAagAAAAAAewAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAABWwAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAADewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABewAAAAAAawAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAADWwAAAAACewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADewAAAAAAHQAAAAACHQAAAAACHQAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABewAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAABewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAACewAAAAAATQAAAAAAHQAAAAABHQAAAAADTQAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAADewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAAAHQAAAAADewAAAAAAewAAAAAAHQAAAAADHQAAAAADewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAACHQAAAAAAewAAAAAATQAAAAAAHQAAAAACHQAAAAABHQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAABWwAAAAADHQAAAAADewAAAAAATQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAACHQAAAAACewAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAABWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACewAAAAAAagAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAACWwAAAAADewAAAAAAagAAAAAAewAAAAAA version: 6 2,2: ind: 2,2 @@ -1255,18 +1255,18 @@ entities: 10,5: 0: 64302 10,6: - 0: 13211 + 0: 30491 10,7: - 0: 65283 + 0: 65287 10,8: 0: 13105 1: 34944 11,5: 0: 48010 11,6: - 0: 63675 + 0: 59579 11,7: - 0: 30575 + 0: 30574 11,8: 0: 61030 12,4: @@ -2125,8 +2125,6 @@ entities: 4582: 31,26 4583: 38,26 4584: 38,27 - 4585: 41,27 - 4586: 41,26 4600: 17,39 4601: 19,39 4727: 20,-32 @@ -2154,6 +2152,9 @@ entities: 5175: 6,-19 5192: 30,-35 5193: 32,-35 + 5258: 42,26 + 5259: 42,27 + 5266: 41,28 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -2195,7 +2196,6 @@ entities: 3154: 28,-51 3155: 28,-52 3156: 28,-53 - 4588: 41,28 4589: 38,28 4842: 9,-30 4843: 9,-31 @@ -2206,6 +2206,7 @@ entities: 5063: 25,-43 5180: 5,-21 5181: 7,-19 + 5260: 42,28 - node: color: '#FFFFFFFF' id: BotLeftGreyscale @@ -3391,7 +3392,6 @@ entities: 3016: 39,31 3017: 41,30 3018: 43,31 - 3027: 40,27 3028: 40,22 3030: 39,24 3040: 51,35 @@ -5365,7 +5365,6 @@ entities: 45: 36,21 55: 34,28 177: 35,24 - 2832: 34,22 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 @@ -5681,10 +5680,10 @@ entities: color: '#FFFFFFFF' id: WarnCornerNE decals: - 1587: 40,27 2249: 57,-14 3101: 92,27 4516: 3,-30 + 5265: 41,27 - node: color: '#FFFFFFFF' id: WarnCornerNW @@ -5849,11 +5848,11 @@ entities: 4572: 57,9 4573: 57,10 4574: 57,11 - 4591: 40,26 4800: 24,-35 4801: 24,-34 4802: 24,-33 4855: 19,-43 + 5264: 41,26 - node: color: '#334E6DC8' id: WarnLineGreyscaleE @@ -6112,6 +6111,7 @@ entities: 4852: 20,-44 4853: 21,-44 4854: 22,-44 + 5263: 40,27 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -6627,6 +6627,71 @@ entities: - type: Transform pos: 12.501018,-34.058125 parent: 2 +- proto: ActionToggleBlock + entities: + - uid: 2409 + components: + - type: Transform + parent: 2404 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 2404 + - uid: 7583 + components: + - type: Transform + parent: 6422 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 6422 + - uid: 7822 + components: + - type: Transform + parent: 7584 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 7584 + - uid: 8350 + components: + - type: Transform + parent: 8348 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 8348 + - uid: 8413 + components: + - type: Transform + parent: 8351 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 8351 + - uid: 8418 + components: + - type: Transform + parent: 8417 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 8417 + - uid: 8420 + components: + - type: Transform + parent: 8419 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 8419 + - uid: 8423 + components: + - type: Transform + parent: 8422 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 8422 + - uid: 15461 + components: + - type: Transform + parent: 14664 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 14664 - proto: ActionToggleInternals entities: - uid: 5500 @@ -6635,12 +6700,36 @@ entities: parent: 5530 - type: InstantAction container: 5530 - - uid: 6197 + - uid: 10848 components: - type: Transform - parent: 10847 + parent: 9478 - type: InstantAction - container: 10847 + originalIconColor: '#FFFFFFFF' + container: 9478 + - uid: 15468 + components: + - type: Transform + parent: 15462 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 15462 +- proto: ActionToggleJetpack + entities: + - uid: 10847 + components: + - type: Transform + parent: 9478 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 9478 + - uid: 15467 + components: + - type: Transform + parent: 15462 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 15462 - proto: ActionToggleLight entities: - uid: 13568 @@ -6979,6 +7068,19 @@ entities: - 8009 - 6778 - 7708 + - uid: 8571 + components: + - type: MetaData + name: Head of Security Room Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 2330 + - 8595 + - 8596 - uid: 8922 components: - type: Transform @@ -7417,19 +7519,16 @@ entities: - 8630 - uid: 12530 components: + - type: MetaData + name: Armory Air Alarm - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,21.5 + pos: 41.5,29.5 parent: 2 - type: DeviceList devices: - - 12531 - - 8597 - - 8598 - - 8610 - 8607 - - 8596 - - 8595 + - 8610 + - 15477 - uid: 12532 components: - type: Transform @@ -7614,6 +7713,19 @@ entities: devices: - 15296 - 15298 + - uid: 15476 + components: + - type: MetaData + name: Armory Entrance Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 12531 + - 8597 + - 8598 - proto: AirCanister entities: - uid: 2078 @@ -9487,6 +9599,12 @@ entities: - type: Transform pos: 44.5,30.5 parent: 2 + - type: Door + secondsUntilStateChange: -2148.529 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True - uid: 3259 components: - type: Transform @@ -9597,6 +9715,14 @@ entities: - type: DeviceNetwork deviceLists: - 5859 + - uid: 2330 + components: + - type: Transform + pos: 44.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8571 - uid: 4554 components: - type: Transform @@ -9780,6 +9906,9 @@ entities: - type: Transform pos: 41.5,23.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15476 - uid: 12538 components: - type: Transform @@ -9969,6 +10098,14 @@ entities: - type: Transform pos: 35.5,-16.5 parent: 2 + - uid: 15477 + components: + - type: Transform + pos: 41.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12530 - proto: AltarSpawner entities: - uid: 2526 @@ -10026,6 +10163,14 @@ entities: parent: 2 - proto: APCBasic entities: + - uid: 257 + components: + - type: MetaData + name: Head of Security Room APC + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,21.5 + parent: 2 - uid: 340 components: - type: MetaData @@ -10148,13 +10293,6 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,3.5 parent: 2 - - uid: 2404 - components: - - type: MetaData - name: HoS Office APC - - type: Transform - pos: 43.5,26.5 - parent: 2 - uid: 2451 components: - type: MetaData @@ -11530,15 +11668,6 @@ entities: parent: 9438 - type: Physics canCollide: False -- proto: BedsheetHOS - entities: - - uid: 545 - components: - - type: Transform - parent: 6422 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: BedsheetMedical entities: - uid: 5197 @@ -16616,21 +16745,6 @@ entities: - type: Transform pos: 29.5,23.5 parent: 2 - - uid: 8517 - components: - - type: Transform - pos: 43.5,26.5 - parent: 2 - - uid: 8518 - components: - - type: Transform - pos: 43.5,25.5 - parent: 2 - - uid: 8519 - components: - - type: Transform - pos: 43.5,24.5 - parent: 2 - uid: 8520 components: - type: Transform @@ -22086,6 +22200,16 @@ entities: - type: Transform pos: 40.5,42.5 parent: 2 + - uid: 15474 + components: + - type: Transform + pos: 43.5,22.5 + parent: 2 + - uid: 15475 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 - proto: CableApcStack entities: - uid: 5386 @@ -27257,6 +27381,11 @@ entities: - type: Transform pos: 12.5,36.5 parent: 2 + - uid: 545 + components: + - type: Transform + pos: 44.5,23.5 + parent: 2 - uid: 609 components: - type: Transform @@ -28802,21 +28931,6 @@ entities: - type: Transform pos: 52.5,-10.5 parent: 2 - - uid: 8348 - components: - - type: Transform - pos: 43.5,26.5 - parent: 2 - - uid: 8350 - components: - - type: Transform - pos: 43.5,25.5 - parent: 2 - - uid: 8351 - components: - - type: Transform - pos: 43.5,24.5 - parent: 2 - uid: 8352 components: - type: Transform @@ -30302,6 +30416,11 @@ entities: - type: Transform pos: 41.5,-37.5 parent: 2 + - uid: 9884 + components: + - type: Transform + pos: 43.5,23.5 + parent: 2 - uid: 9891 components: - type: Transform @@ -33002,6 +33121,16 @@ entities: - type: Transform pos: 35.5,-25.5 parent: 2 + - uid: 15472 + components: + - type: Transform + pos: 43.5,22.5 + parent: 2 + - uid: 15473 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 - proto: CableMVStack entities: - uid: 5628 @@ -37106,7 +37235,7 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,8.5 parent: 2 - - uid: 2409 + - uid: 2328 components: - type: Transform rot: 3.141592653589793 rad @@ -38626,11 +38755,6 @@ entities: - type: Transform pos: 81.516914,11.673225 parent: 2 - - uid: 10848 - components: - - type: Transform - pos: 44.482018,28.569605 - parent: 2 - proto: ClothingEyesGlassesSunglasses entities: - uid: 5522 @@ -38735,13 +38859,6 @@ entities: - type: Transform pos: 84.5185,-12.681175 parent: 2 -- proto: ClothingHeadHatGreysoft - entities: - - uid: 10851 - components: - - type: Transform - pos: 44.5341,28.569605 - parent: 2 - proto: ClothingHeadHatHardhatOrange entities: - uid: 10798 @@ -38846,20 +38963,15 @@ entities: parent: 2 - proto: ClothingHeadHelmetRiot entities: - - uid: 8425 + - uid: 6197 components: - type: Transform - pos: 38.53056,28.406826 - parent: 2 - - uid: 8426 - components: - - type: Transform - pos: 38.53056,28.406826 + pos: 38.899494,28.859161 parent: 2 - uid: 8427 components: - type: Transform - pos: 38.53056,28.406826 + pos: 38.88387,28.616974 parent: 2 - proto: ClothingHeadNurseHat entities: @@ -39029,71 +39141,44 @@ entities: parent: 2 - proto: ClothingOuterArmorBasic entities: - - uid: 8413 - components: - - type: Transform - pos: 38.421185,28.625576 - parent: 2 - - uid: 8414 - components: - - type: Transform - pos: 38.421185,28.625576 - parent: 2 - uid: 8415 components: - type: Transform - pos: 38.421185,28.625576 + pos: 39.219807,28.632599 parent: 2 -- proto: ClothingOuterArmorBasicSlim - entities: - - uid: 8416 + - uid: 12089 components: - type: Transform - pos: 38.62431,28.406826 + pos: 39.243244,28.859161 parent: 2 - - uid: 8417 + - uid: 13560 components: - type: Transform - pos: 38.62431,28.406826 - parent: 2 - - uid: 8418 - components: - - type: Transform - pos: 38.62431,28.406826 + pos: 39.22762,28.741974 parent: 2 - proto: ClothingOuterArmorBulletproof entities: - - uid: 8419 - components: - - type: Transform - pos: 38.37431,28.438076 - parent: 2 - - uid: 8420 - components: - - type: Transform - pos: 38.37431,28.438076 - parent: 2 - uid: 8421 components: - type: Transform - pos: 38.37431,28.438076 + pos: 38.305744,28.874786 + parent: 2 + - uid: 15460 + components: + - type: Transform + pos: 38.282307,28.593536 parent: 2 - proto: ClothingOuterArmorRiot entities: - - uid: 8422 + - uid: 8414 components: - type: Transform - pos: 38.71806,28.609951 - parent: 2 - - uid: 8423 - components: - - type: Transform - pos: 38.71806,28.609951 + pos: 38.57137,28.679474 parent: 2 - uid: 8424 components: - type: Transform - pos: 38.71806,28.609951 + pos: 38.618244,28.835724 parent: 2 - type: GroupExamine group: @@ -39180,11 +39265,6 @@ entities: - type: Transform pos: 73.5,-12.5 parent: 2 - - uid: 10849 - components: - - type: Transform - pos: 44.450768,28.725964 - parent: 2 - proto: ClothingOuterVestHazard entities: - uid: 880 @@ -39884,11 +39964,6 @@ entities: - type: Transform pos: 30.5,26.5 parent: 2 - - uid: 12089 - components: - - type: Transform - pos: 44.5,25.5 - parent: 2 - proto: ComputerTelevision entities: - uid: 8498 @@ -40443,18 +40518,16 @@ entities: parent: 2 - proto: CrateSecurityTrackingMindshieldImplants entities: - - uid: 2153 + - uid: 8416 components: - type: Transform - pos: 40.5,28.5 + anchored: True + pos: 41.5,28.5 parent: 2 + - type: Physics + bodyType: Static - proto: CrateTrashCart entities: - - uid: 7822 - components: - - type: Transform - pos: 44.5,27.5 - parent: 2 - uid: 13122 components: - type: Transform @@ -40574,6 +40647,13 @@ entities: - type: Transform pos: 54.629898,-15.278217 parent: 2 +- proto: CrowbarRed + entities: + - uid: 2153 + components: + - type: Transform + pos: 38.46774,19.5811 + parent: 2 - proto: CryogenicSleepUnit entities: - uid: 3187 @@ -41065,10 +41145,10 @@ entities: parent: 2 - proto: DeployableBarrier entities: - - uid: 257 + - uid: 8519 components: - type: Transform - pos: 39.5,28.5 + pos: 36.5,24.5 parent: 2 - uid: 9602 components: @@ -44990,11 +45070,6 @@ entities: - type: Transform pos: 41.5,19.5 parent: 2 - - uid: 8445 - components: - - type: Transform - pos: 36.5,24.5 - parent: 2 - uid: 10276 components: - type: Transform @@ -45664,11 +45739,6 @@ entities: - type: Transform pos: 81.454414,9.641975 parent: 2 - - uid: 10850 - components: - - type: Transform - pos: 44.52368,28.548758 - parent: 2 - proto: FirelockEdge entities: - uid: 36 @@ -60803,7 +60873,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 12530 + - 8571 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8597 @@ -60812,6 +60882,9 @@ entities: rot: 3.141592653589793 rad pos: 39.5,23.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15476 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8607 @@ -61580,7 +61653,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 12530 + - 8571 - type: AtmosPipeColor color: '#990000FF' - uid: 8598 @@ -61589,6 +61662,9 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,22.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15476 - type: AtmosPipeColor color: '#990000FF' - uid: 8610 @@ -67496,32 +67572,54 @@ entities: parent: 2 - proto: GunSafeLaserCarbine entities: - - uid: 2126 + - uid: 10849 components: - type: Transform - pos: 41.5,27.5 + anchored: True + pos: 42.5,27.5 parent: 2 + - type: Physics + bodyType: Static +- proto: GunSafePistolMk58 + entities: + - uid: 10851 + components: + - type: Transform + anchored: True + pos: 42.5,28.5 + parent: 2 + - type: Physics + bodyType: Static - proto: GunSafeRifleLecter entities: - uid: 2460 components: - type: Transform + anchored: True pos: 38.5,26.5 parent: 2 + - type: Physics + bodyType: Static - proto: GunSafeShotgunKammerer entities: - - uid: 2117 + - uid: 15471 components: - type: Transform - pos: 41.5,26.5 + anchored: True + pos: 42.5,26.5 parent: 2 + - type: Physics + bodyType: Static - proto: GunSafeSubMachineGunDrozd entities: - uid: 2461 components: - type: Transform + anchored: True pos: 38.5,27.5 parent: 2 + - type: Physics + bodyType: Static - proto: Handcuffs entities: - uid: 9397 @@ -67550,11 +67648,6 @@ entities: parent: 2 - proto: HandLabeler entities: - - uid: 2291 - components: - - type: Transform - pos: 38.5,19.5 - parent: 2 - uid: 5319 components: - type: Transform @@ -68299,16 +68392,17 @@ entities: parent: 2 - proto: IntercomCommand entities: + - uid: 2329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,21.5 + parent: 2 - uid: 4587 components: - type: Transform pos: 12.5,-34.5 parent: 2 - - uid: 7583 - components: - - type: Transform - pos: 44.5,26.5 - parent: 2 - uid: 9436 components: - type: Transform @@ -68430,8 +68524,35 @@ entities: - uid: 9478 components: - type: Transform - pos: 38.348988,28.699009 + pos: 39.649494,28.741974 parent: 2 + - type: GasTank + toggleActionEntity: 10848 + - type: Jetpack + toggleActionEntity: 10847 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 10847 + - 10848 + - uid: 15462 + components: + - type: Transform + pos: 39.63387,28.898224 + parent: 2 + - type: GasTank + toggleActionEntity: 15468 + - type: Jetpack + toggleActionEntity: 15467 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 15467 + - 15468 - proto: KitchenElectricGrill entities: - uid: 13167 @@ -68980,40 +69101,11 @@ entities: parent: 2 - proto: LockerHeadOfSecurityFilledHardsuit entities: - - uid: 6422 + - uid: 8426 components: - type: Transform - pos: 43.5,25.5 + pos: 44.5,25.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 545 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerMedical entities: - uid: 10911 @@ -69843,19 +69935,6 @@ entities: - type: Transform pos: 72.5,-9.5 parent: 2 - - uid: 10847 - components: - - type: Transform - 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 @@ -70198,6 +70277,12 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,24.5 parent: 2 + - uid: 15469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,28.5 + parent: 2 - proto: PlasmaWindoorSecureSecurityLocked entities: - uid: 7707 @@ -70205,11 +70290,26 @@ entities: - type: Transform pos: 41.5,24.5 parent: 2 + - uid: 8425 + components: + - type: Transform + pos: 40.5,28.5 + parent: 2 + - uid: 10850 + components: + - type: Transform + pos: 39.5,28.5 + parent: 2 - uid: 13582 components: - type: Transform pos: 38.5,24.5 parent: 2 + - uid: 15470 + components: + - type: Transform + pos: 38.5,28.5 + parent: 2 - proto: PlasticFlapsAirtightClear entities: - uid: 451 @@ -70526,12 +70626,13 @@ entities: rot: 3.141592653589793 rad pos: 42.5,34.5 parent: 2 -- proto: PosterLegitEnlist +- proto: PosterLegitFoamForceAd entities: - - uid: 13104 + - uid: 2311 components: - type: Transform - pos: 42.5,26.5 + rot: 3.141592653589793 rad + pos: 43.5,28.5 parent: 2 - proto: PosterLegitFruitBowl entities: @@ -70554,13 +70655,6 @@ entities: - type: Transform pos: 17.5,-6.5 parent: 2 -- proto: PosterLegitIonRifle - entities: - - uid: 13103 - components: - - type: Transform - pos: 42.5,28.5 - parent: 2 - proto: PosterLegitLoveIan entities: - uid: 10252 @@ -70589,6 +70683,12 @@ entities: - type: Transform pos: 29.5,37.5 parent: 2 + - uid: 2126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,26.5 + parent: 2 - uid: 7464 components: - type: Transform @@ -72138,6 +72238,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 8572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,26.5 + parent: 2 - uid: 8573 components: - type: Transform @@ -72187,6 +72293,12 @@ entities: rot: 3.141592653589793 rad pos: 51.5,-8.5 parent: 2 + - uid: 9883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,28.5 + parent: 2 - uid: 10450 components: - type: Transform @@ -73101,22 +73213,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,28.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,28.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8601 components: - type: Transform @@ -73555,11 +73651,6 @@ entities: - type: Transform pos: 30.5,-30.5 parent: 2 - - uid: 7584 - components: - - type: Transform - pos: 38.5,28.5 - parent: 2 - uid: 7680 components: - type: Transform @@ -73658,11 +73749,6 @@ entities: - 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 @@ -76825,23 +76911,129 @@ entities: - type: Transform pos: 66.55991,-3.281434 parent: 2 +- proto: RiotBulletShield + entities: + - uid: 2404 + components: + - type: Transform + pos: 40.60262,28.679474 + parent: 2 + - type: Blocking + blockingToggleActionEntity: 2409 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 2409 + - uid: 7584 + components: + - type: Transform + pos: 40.594807,28.656036 + parent: 2 + - type: Blocking + blockingToggleActionEntity: 7822 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 7822 + - uid: 8351 + components: + - type: Transform + pos: 40.57918,28.913849 + parent: 2 + - type: Blocking + blockingToggleActionEntity: 8413 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 8413 +- proto: RiotLaserShield + entities: + - uid: 6422 + components: + - type: Transform + pos: 40.04793,28.648224 + parent: 2 + - type: Blocking + blockingToggleActionEntity: 7583 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 7583 + - uid: 8419 + components: + - type: Transform + pos: 40.04012,28.835724 + parent: 2 + - type: Blocking + blockingToggleActionEntity: 8420 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 8420 + - uid: 8422 + components: + - type: Transform + pos: 40.063557,28.726349 + parent: 2 + - type: Blocking + blockingToggleActionEntity: 8423 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 8423 - proto: RiotShield entities: - - uid: 9883 + - uid: 8348 components: - type: Transform - pos: 38.328156,28.35502 + pos: 40.368244,28.741974 parent: 2 - - uid: 9884 + - type: Blocking + blockingToggleActionEntity: 8350 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 8350 + - uid: 8417 components: - type: Transform - pos: 38.328156,28.365444 + pos: 40.368244,28.609161 parent: 2 + - type: Blocking + blockingToggleActionEntity: 8418 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 8418 - uid: 14664 components: - type: Transform - pos: 38.328156,28.365444 + pos: 40.336994,28.882599 parent: 2 + - type: Blocking + blockingToggleActionEntity: 15461 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 15461 - proto: RobocopCircuitBoard entities: - uid: 14284 @@ -80396,6 +80588,11 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-8.5 parent: 2 + - uid: 2291 + components: + - type: Transform + pos: 36.5,32.5 + parent: 2 - uid: 8116 components: - type: Transform @@ -80826,29 +81023,6 @@ entities: parent: 2 - proto: SuitStorageSec entities: - - uid: 2311 - components: - - type: Transform - pos: 41.5,28.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 11209 components: - type: Transform @@ -83460,6 +83634,18 @@ entities: - type: Transform pos: 39.5,21.5 parent: 2 + - uid: 8445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,28.5 + parent: 2 + - uid: 8518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,28.5 + parent: 2 - uid: 8675 components: - type: Transform @@ -83498,6 +83684,12 @@ entities: - type: Transform pos: 49.5,1.5 parent: 2 + - uid: 13103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,28.5 + parent: 2 - uid: 14245 components: - type: Transform @@ -86249,6 +86441,12 @@ entities: - type: Transform pos: 24.5,28.5 parent: 2 + - uid: 2117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,25.5 + parent: 2 - uid: 2122 components: - type: Transform @@ -86509,21 +86707,6 @@ entities: - type: Transform pos: 37.5,25.5 parent: 2 - - uid: 2328 - components: - - type: Transform - pos: 42.5,28.5 - parent: 2 - - uid: 2329 - components: - - type: Transform - pos: 42.5,27.5 - parent: 2 - - uid: 2330 - components: - - type: Transform - pos: 42.5,26.5 - parent: 2 - uid: 2331 components: - type: Transform @@ -90139,6 +90322,11 @@ entities: - type: Transform pos: 3.5,22.5 parent: 2 + - uid: 8517 + components: + - type: Transform + pos: 44.5,28.5 + parent: 2 - uid: 8674 components: - type: Transform @@ -91059,6 +91247,11 @@ entities: - type: Transform pos: -20.5,1.5 parent: 2 + - uid: 13104 + components: + - type: Transform + pos: 44.5,27.5 + parent: 2 - uid: 13113 components: - type: Transform diff --git a/Resources/Prototypes/Maps/packed.yml b/Resources/Prototypes/Maps/packed.yml index f66207c883..12e034bcfb 100644 --- a/Resources/Prototypes/Maps/packed.yml +++ b/Resources/Prototypes/Maps/packed.yml @@ -45,7 +45,7 @@ #security HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] - SecurityOfficer: [ 4, 4 ] + SecurityOfficer: [ 3, 3 ] Detective: [ 1, 1 ] SecurityCadet: [ 2, 2 ] Lawyer: [ 1, 1 ] From 3fa83d8dadf34f1a26ab904568e9c1837ce757f9 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 1 Feb 2025 21:20:34 +0000 Subject: [PATCH 046/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 53e6fe5946..57b577f3c3 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Moomoobeef - changes: - - message: Added more names to the pool of names the AI can have. - type: Add - id: 7390 - time: '2024-09-17T22:09:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31951 - author: Calecute changes: - message: Corrected cake batter recipe in guidebook @@ -3906,3 +3899,10 @@ id: 7889 time: '2025-02-01T15:20:01.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34458 +- author: Toxic, Nox + changes: + - message: Changed Packed armory. + type: Tweak + id: 7890 + time: '2025-02-01T21:19:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34808 From 4aaa7baa7fc03e310632d17d0ff2da4d5425b9a2 Mon Sep 17 00:00:00 2001 From: Minty642 <42335609+Minty642@users.noreply.github.com> Date: Sun, 2 Feb 2025 08:00:31 +0700 Subject: [PATCH 047/313] Add Reagent gold and silver solification with frost oil (#33239) * Add Reagent gold and silver solification with frost oil * Update Resources/Prototypes/Recipes/Reactions/fun.yml * Update Resources/Prototypes/Recipes/Reactions/fun.yml * edit frostOil value * Update Resources/Prototypes/Recipes/Reactions/fun.yml * Update Resources/Prototypes/Recipes/Reactions/fun.yml --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../Prototypes/Recipes/Reactions/fun.yml | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/Resources/Prototypes/Recipes/Reactions/fun.yml b/Resources/Prototypes/Recipes/Reactions/fun.yml index 5ae173c0ee..86d1fcc2fe 100644 --- a/Resources/Prototypes/Recipes/Reactions/fun.yml +++ b/Resources/Prototypes/Recipes/Reactions/fun.yml @@ -201,3 +201,29 @@ effects: - !type:CreateEntityReactionEffect entity: MaterialGunpowder + +- type: reaction + id: SolidifyGold + impact: Low + quantized: true + reactants: + Gold: + amount: 10 + FrostOil: + amount: 5 + effects: + - !type:CreateEntityReactionEffect + entity: IngotGold1 + +- type: reaction + id: SolidifySilver + impact: Low + quantized: true + reactants: + Silver: + amount: 10 + FrostOil: + amount: 5 + effects: + - !type:CreateEntityReactionEffect + entity: IngotSilver1 From 4864d4770ec7c7f5cdf838d38e73a45ef81373ee Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 2 Feb 2025 01:01:38 +0000 Subject: [PATCH 048/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 57b577f3c3..4b7d803883 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Calecute - changes: - - message: Corrected cake batter recipe in guidebook - type: Fix - id: 7391 - time: '2024-09-18T15:15:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32276 - author: Beck Thompson changes: - message: Recycler no longer allows basic materials to be inserted into it. @@ -3906,3 +3899,10 @@ id: 7890 time: '2025-02-01T21:19:28.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34808 +- author: Minty642 + changes: + - message: Added Gold and Silver Solidification, just mix with frost oil. + type: Add + id: 7891 + time: '2025-02-02T01:00:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33239 From a238f71540c0a509cd26b6bdb76857fd846317e7 Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Sat, 1 Feb 2025 20:38:02 -0500 Subject: [PATCH 049/313] Ghost orbit jitter fix (#34797) * Only randomize orbit parameters once * Revert "Only randomize orbit parameters once" This reverts commit e828c51e66600bf11b66308169da1d1daf7501e3. * Derive orbit properties from current time * Derive orbit progress from current time * Remove now-unused orbit animation * Remove OrbitVisualsComponent.Orbit as it is no longer used * Update AnimationPlayerSystem method calls to Entity versions --- Content.Client/Orbit/OrbitVisualsSystem.cs | 54 +++---------------- .../Components/OrbitVisualsComponent.cs | 6 --- 2 files changed, 7 insertions(+), 53 deletions(-) diff --git a/Content.Client/Orbit/OrbitVisualsSystem.cs b/Content.Client/Orbit/OrbitVisualsSystem.cs index 1799e8ecc8..1bcebd07b7 100644 --- a/Content.Client/Orbit/OrbitVisualsSystem.cs +++ b/Content.Client/Orbit/OrbitVisualsSystem.cs @@ -4,6 +4,7 @@ using Robust.Client.Animations; using Robust.Client.GameObjects; using Robust.Shared.Animations; using Robust.Shared.Random; +using Robust.Shared.Timing; namespace Content.Client.Orbit; @@ -11,8 +12,8 @@ public sealed class OrbitVisualsSystem : EntitySystem { [Dependency] private readonly IRobustRandom _robustRandom = default!; [Dependency] private readonly AnimationPlayerSystem _animations = default!; + [Dependency] private readonly IGameTiming _timing = default!; - private readonly string _orbitAnimationKey = "orbiting"; private readonly string _orbitStopKey = "orbiting_stop"; public override void Initialize() @@ -21,11 +22,11 @@ public sealed class OrbitVisualsSystem : EntitySystem SubscribeLocalEvent(OnComponentInit); SubscribeLocalEvent(OnComponentRemove); - SubscribeLocalEvent(OnAnimationCompleted); } private void OnComponentInit(EntityUid uid, OrbitVisualsComponent component, ComponentInit args) { + _robustRandom.SetSeed((int)_timing.CurTime.TotalMilliseconds); component.OrbitDistance = _robustRandom.NextFloat(0.75f * component.OrbitDistance, 1.25f * component.OrbitDistance); @@ -38,15 +39,10 @@ public sealed class OrbitVisualsSystem : EntitySystem } var animationPlayer = EnsureComp(uid); - if (_animations.HasRunningAnimation(uid, animationPlayer, _orbitAnimationKey)) - return; - if (_animations.HasRunningAnimation(uid, animationPlayer, _orbitStopKey)) { - _animations.Stop(uid, animationPlayer, _orbitStopKey); + _animations.Stop((uid, animationPlayer), _orbitStopKey); } - - _animations.Play(uid, animationPlayer, GetOrbitAnimation(component), _orbitAnimationKey); } private void OnComponentRemove(EntityUid uid, OrbitVisualsComponent component, ComponentRemove args) @@ -57,14 +53,9 @@ public sealed class OrbitVisualsSystem : EntitySystem sprite.EnableDirectionOverride = false; var animationPlayer = EnsureComp(uid); - if (_animations.HasRunningAnimation(uid, animationPlayer, _orbitAnimationKey)) - { - _animations.Stop(uid, animationPlayer, _orbitAnimationKey); - } - if (!_animations.HasRunningAnimation(uid, animationPlayer, _orbitStopKey)) { - _animations.Play(uid, animationPlayer, GetStopAnimation(component, sprite), _orbitStopKey); + _animations.Play((uid, animationPlayer), GetStopAnimation(component, sprite), _orbitStopKey); } } @@ -74,7 +65,8 @@ public sealed class OrbitVisualsSystem : EntitySystem foreach (var (orbit, sprite) in EntityManager.EntityQuery()) { - var angle = new Angle(Math.PI * 2 * orbit.Orbit); + var progress = (float)(_timing.CurTime.TotalSeconds / orbit.OrbitLength) % 1; + var angle = new Angle(Math.PI * 2 * progress); var vec = angle.RotateVec(new Vector2(orbit.OrbitDistance, 0)); sprite.Rotation = angle; @@ -82,38 +74,6 @@ public sealed class OrbitVisualsSystem : EntitySystem } } - private void OnAnimationCompleted(EntityUid uid, OrbitVisualsComponent component, AnimationCompletedEvent args) - { - if (args.Key == _orbitAnimationKey && TryComp(uid, out AnimationPlayerComponent? animationPlayer)) - { - _animations.Play(uid, animationPlayer, GetOrbitAnimation(component), _orbitAnimationKey); - } - } - - private Animation GetOrbitAnimation(OrbitVisualsComponent component) - { - var length = component.OrbitLength; - - return new Animation() - { - Length = TimeSpan.FromSeconds(length), - AnimationTracks = - { - new AnimationTrackComponentProperty() - { - ComponentType = typeof(OrbitVisualsComponent), - Property = nameof(OrbitVisualsComponent.Orbit), - KeyFrames = - { - new AnimationTrackProperty.KeyFrame(0.0f, 0f), - new AnimationTrackProperty.KeyFrame(1.0f, length), - }, - InterpolationMode = AnimationInterpolationMode.Linear - } - } - }; - } - private Animation GetStopAnimation(OrbitVisualsComponent component, SpriteComponent sprite) { var length = component.OrbitStopLength; diff --git a/Content.Shared/Follower/Components/OrbitVisualsComponent.cs b/Content.Shared/Follower/Components/OrbitVisualsComponent.cs index a1ee17c27f..47ea0a523f 100644 --- a/Content.Shared/Follower/Components/OrbitVisualsComponent.cs +++ b/Content.Shared/Follower/Components/OrbitVisualsComponent.cs @@ -21,10 +21,4 @@ public sealed partial class OrbitVisualsComponent : Component /// How long should the orbit stop animation last in seconds? /// public float OrbitStopLength = 1.0f; - - /// - /// How far along in the orbit, from 0 to 1, is this entity? - /// - [Animatable] - public float Orbit { get; set; } = 0.0f; } From 67e66644f1e3fad18aab0646446178285654501e Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 2 Feb 2025 01:39:09 +0000 Subject: [PATCH 050/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 4b7d803883..a26d3d99c1 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Beck Thompson - changes: - - message: Recycler no longer allows basic materials to be inserted into it. - type: Fix - id: 7392 - time: '2024-09-18T21:58:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32144 - author: deltanedas changes: - message: Epinephrine now adds Adrenaline, because it is. @@ -3906,3 +3899,10 @@ id: 7891 time: '2025-02-02T01:00:32.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33239 +- author: Tayrtahn + changes: + - message: Ghosts and anomaly cores no longer jitter when starting to follow a target. + type: Fix + id: 7892 + time: '2025-02-02T01:38:03.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34797 From 26f6a15fbb4c2e9a70cc1d4f032d6ca8328fdb37 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sun, 2 Feb 2025 13:44:53 +1100 Subject: [PATCH 051/313] Update submodule to 242.0.1 (#34817) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index d7f6a9ba43..bd69d51d36 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit d7f6a9ba4394b34e55b3fdd4d98c5dfe2bb21642 +Subproject commit bd69d51d360ec77e79ca173e01caabb0a31a0a23 From eeccdbf0387a1c7bf0c31ffa471f5a255001abf7 Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Sun, 2 Feb 2025 14:12:23 -0500 Subject: [PATCH 052/313] Fix diona plushie bloom visuals (#34832) --- Resources/Prototypes/Entities/Objects/Fun/toys.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index c5e17c54d3..9a9db4237b 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -533,6 +533,7 @@ - type: RefillableSolution solution: plushie - type: SolutionContainerVisuals + solutionName: plushie maxFillLevels: 1 fillBaseName: plushie_diona changeColor: false From 2991f1ad4005991c03b65adbdd5b576e94b53cb3 Mon Sep 17 00:00:00 2001 From: Utmanarn Date: Sun, 2 Feb 2025 20:13:58 +0100 Subject: [PATCH 053/313] Reworded the "SAY HEY LISTEN" silicon law (#34819) * Changed law Changed a must always law to have wording that does not encourage message spamming. * Fixed a mistake Forgot to remove the "YOU MUST ALWAYS" from the commit. * Reworded the law Reworded the law to be more open the other potential options. --- Resources/Prototypes/Datasets/ion_storm.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Datasets/ion_storm.yml b/Resources/Prototypes/Datasets/ion_storm.yml index 52fa1f4cb1..0733e9abe5 100644 --- a/Resources/Prototypes/Datasets/ion_storm.yml +++ b/Resources/Prototypes/Datasets/ion_storm.yml @@ -540,7 +540,7 @@ - RHYME - RAISE THE ROOF - ROLL AROUND AT THE SPEED OF SOUND - - SAY HEY LISTEN + - INCORPORATE 'HEY LISTEN' WHILE COMMUNICATING - SHOUT - SHUT DOWN EVERYTHING - SLEEP WITH THE FISHES From c82f77ef07e233cf09adabff33d941d0e94228d4 Mon Sep 17 00:00:00 2001 From: keronshb <54602815+keronshb@users.noreply.github.com> Date: Sun, 2 Feb 2025 14:23:41 -0500 Subject: [PATCH 054/313] Wizard Touch Spells (Smite, Cluwne's Curse, Slippery Slope) (#34531) * Renames Smite Spells yml to Touch Spells and Renames Smite Spells region to the same * Adds wizard clothes requirement to Smite. Adds Cluwne spell. Adds EnsureCompOnTouchSpellEvent and implements it in the magicsystem * Adds Smite and Cluwne to the grimore and loc for them * Adds Slippery Slope spell and SlipOnCollide * Adds handled for comp spell event * Removes super slippery * Removes EnsureCompOnTouchSpell it was redundant with ChangeComponentsSpellEvent * Makes requirement-free action for smite * checks if we should be slipping what we touch * Removes SlipOnCollide, adds negative speed for steptrigger * Removes slip on collide adds negative speed for steptrigger --- Content.Shared/Magic/SharedMagicSystem.cs | 87 ++----------------- Content.Shared/Slippery/SlipperySystem.cs | 4 +- .../Locale/en-US/magic/spells-actions.ftl | 2 + .../Locale/en-US/store/spellbook-catalog.ftl | 11 ++- .../Prototypes/Catalog/spellbook_catalog.yml | 39 +++++++++ .../Prototypes/Entities/Mobs/NPCs/space.yml | 2 +- .../Entities/Objects/Magic/books.yml | 2 +- Resources/Prototypes/Magic/smite_spells.yml | 20 ----- Resources/Prototypes/Magic/touch_spells.yml | 83 ++++++++++++++++++ 9 files changed, 145 insertions(+), 105 deletions(-) delete mode 100644 Resources/Prototypes/Magic/smite_spells.yml create mode 100644 Resources/Prototypes/Magic/touch_spells.yml diff --git a/Content.Shared/Magic/SharedMagicSystem.cs b/Content.Shared/Magic/SharedMagicSystem.cs index fe033f2498..878c4bdca4 100644 --- a/Content.Shared/Magic/SharedMagicSystem.cs +++ b/Content.Shared/Magic/SharedMagicSystem.cs @@ -7,7 +7,6 @@ using Content.Shared.Doors.Components; using Content.Shared.Doors.Systems; using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; -using Content.Shared.Humanoid; using Content.Shared.Interaction; using Content.Shared.Inventory; using Content.Shared.Lock; @@ -15,9 +14,6 @@ using Content.Shared.Magic.Components; using Content.Shared.Magic.Events; using Content.Shared.Maps; using Content.Shared.Mind; -using Content.Shared.Mind.Components; -using Content.Shared.Mobs.Components; -using Content.Shared.Mobs.Systems; using Content.Shared.Physics; using Content.Shared.Popups; using Content.Shared.Speech.Muting; @@ -37,6 +33,10 @@ using Robust.Shared.Spawners; namespace Content.Shared.Magic; +// TODO: Move BeforeCast & Prerequirements (like Wizard clothes) to action comp +// Alt idea - make it its own comp and split, like the Charge PR +// TODO: Move speech to actionComp or again, its own ECS +// TODO: Use the MagicComp just for pure backend things like spawning patterns? /// /// Handles learning and using spells (actions) /// @@ -60,7 +60,6 @@ public abstract class SharedMagicSystem : EntitySystem [Dependency] private readonly LockSystem _lock = default!; [Dependency] private readonly SharedHandsSystem _hands = default!; [Dependency] private readonly TagSystem _tag = default!; - [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedMindSystem _mind = default!; [Dependency] private readonly SharedStunSystem _stun = default!; @@ -81,79 +80,6 @@ public abstract class SharedMagicSystem : EntitySystem SubscribeLocalEvent(OnRandomGlobalSpawnSpell); SubscribeLocalEvent(OnMindSwapSpell); SubscribeLocalEvent(OnVoidApplause); - - // Spell wishlist - // A wishlish of spells that I'd like to implement or planning on implementing in a future PR - - // TODO: InstantDoAfterSpell and WorldDoafterSpell - // Both would be an action that take in an event, that passes an event to trigger once the doafter is done - // This would be three events: - // 1 - Event that triggers from the action that starts the doafter - // 2 - The doafter event itself, which passes the event with it - // 3 - The event to trigger once the do-after finishes - - // TODO: Inanimate objects to life ECS - // AI sentience - - // TODO: Flesh2Stone - // Entity Target spell - // Synergy with Inanimate object to life (detects player and allows player to move around) - - // TODO: Lightning Spell - // Should just fire lightning, try to prevent arc back to caster - - // TODO: Magic Missile (homing projectile ecs) - // Instant action, target any player (except self) on screen - - // TODO: Random projectile ECS for magic-carp, wand of magic - - // TODO: Recall Spell - // mark any item in hand to recall - // ItemRecallComponent - // Event adds the component if it doesn't exist and the performer isn't stored in the comp - // 2nd firing of the event checks to see if the recall comp has this uid, and if it does it calls it - // if no free hands, summon at feet - // if item deleted, clear stored item - - // TODO: Jaunt (should be its own ECS) - // Instant action - // When clicked, disappear/reappear (goes to paused map) - // option to restrict to tiles - // option for requiring entry/exit (blood jaunt) - // speed option - - // TODO: Summon Events - // List of wizard events to add into the event pool that frequently activate - // floor is lava - // change places - // ECS that when triggered, will periodically trigger a random GameRule - // Would need a controller/controller entity? - - // TODO: Summon Guns - // Summon a random gun at peoples feet - // Get every alive player (not in cryo, not a simplemob) - // TODO: After Antag Rework - Rare chance of giving gun collector status to people - - // TODO: Summon Magic - // Summon a random magic wand at peoples feet - // Get every alive player (not in cryo, not a simplemob) - // TODO: After Antag Rework - Rare chance of giving magic collector status to people - - // TODO: Bottle of Blood - // Summons Slaughter Demon - // TODO: Slaughter Demon - // Also see Jaunt - - // TODO: Field Spells - // Should be able to specify a grid of tiles (3x3 for example) that it effects - // Timed despawn - so it doesn't last forever - // Ignore caster - for spells that shouldn't effect the caster (ie if timestop should effect the caster) - - // TODO: Touch toggle spell - // 1 - When toggled on, show in hand - // 2 - Block hand when toggled on - // - Require free hand - // 3 - use spell event when toggled & click } private void OnBeforeCastSpell(Entity ent, ref BeforeCastSpellEvent args) @@ -446,7 +372,7 @@ public abstract class SharedMagicSystem : EntitySystem } // End Spell Helpers #endregion - #region Smite Spells + #region Touch Spells private void OnSmiteSpell(SmiteSpellEvent ev) { if (ev.Handled || !PassesSpellPrerequisites(ev.Action, ev.Performer)) @@ -465,7 +391,8 @@ public abstract class SharedMagicSystem : EntitySystem _body.GibBody(ev.Target, true, body); } - // End Smite Spells + + // End Touch Spells #endregion #region Knock Spells /// diff --git a/Content.Shared/Slippery/SlipperySystem.cs b/Content.Shared/Slippery/SlipperySystem.cs index 19cc19aa19..acf120ad1b 100644 --- a/Content.Shared/Slippery/SlipperySystem.cs +++ b/Content.Shared/Slippery/SlipperySystem.cs @@ -19,7 +19,7 @@ using Robust.Shared.Utility; namespace Content.Shared.Slippery; -[UsedImplicitly] +[UsedImplicitly] public sealed class SlipperySystem : EntitySystem { [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; @@ -83,7 +83,7 @@ public sealed class SlipperySystem : EntitySystem { if (HasComp(args.OtherEntity)) _speedModifier.AddModifiedEntity(args.OtherEntity); - } + } private bool CanSlip(EntityUid uid, EntityUid toSlip) { diff --git a/Resources/Locale/en-US/magic/spells-actions.ftl b/Resources/Locale/en-US/magic/spells-actions.ftl index faf5d77436..2216018018 100644 --- a/Resources/Locale/en-US/magic/spells-actions.ftl +++ b/Resources/Locale/en-US/magic/spells-actions.ftl @@ -6,3 +6,5 @@ action-speech-spell-fireball = ONI'SOMA! action-speech-spell-summon-guns = YOR'NEE VES-KORFA action-speech-spell-summon-magic = RYGOIN FEMA-VERECO action-speech-spell-mind-swap = GIN'YU CAPAN! +action-speech-spell-cluwne = !KNOH +action-speech-spell-slip = SLEE PARRI! diff --git a/Resources/Locale/en-US/store/spellbook-catalog.ftl b/Resources/Locale/en-US/store/spellbook-catalog.ftl index 98d19817c6..b18cac4f9a 100644 --- a/Resources/Locale/en-US/store/spellbook-catalog.ftl +++ b/Resources/Locale/en-US/store/spellbook-catalog.ftl @@ -1,6 +1,6 @@ # Spells spellbook-fireball-name = Fireball -spellbook-fireball-desc = Get most crew exploding with rage when they see this fireball heading toward them! +spellbook-fireball-desc = Get most crew exploding with rage when they see this fireball heading toward them! Upgradeable. spellbook-blink-name = Blink spellbook-blink-desc = Don't blink or you'll miss yourself teleporting away. @@ -26,6 +26,15 @@ spellbook-ethereal-jaunt-description = Slip into the ethereal plane to slip away spellbook-mind-swap-name = Mind Swap spellbook-mind-swap-description = Exchange bodies with another person! +spellbook-smite-name = Smite +spellbook-smite-desc = Don't like them? EXPLODE them into giblets! Requires Wizard Robe & Hat. + +spellbook-cluwne-name = Cluwne's Curse +spellbook-cluwne-desc = For when you really hate someone and Smite isn't enough. Requires Wizard Robe & Hat. + +spellbook-slip-name = Slippery Slope +spellbook-slip-desc = Learn the ancient ways of the Janitor and curse your target to be slippery. Requires Wizard Robe & Hat. + # Equipment spellbook-wand-polymorph-door-name = Wand of Entrance diff --git a/Resources/Prototypes/Catalog/spellbook_catalog.yml b/Resources/Prototypes/Catalog/spellbook_catalog.yml index 3246117e71..dfd171d9b2 100644 --- a/Resources/Prototypes/Catalog/spellbook_catalog.yml +++ b/Resources/Prototypes/Catalog/spellbook_catalog.yml @@ -26,6 +26,45 @@ - !type:ListingLimitedStockCondition stock: 1 +- type: listing + id: SpellbookSmite + name: spellbook-smite-name + description: spellbook-smite-desc + productAction: ActionSmite + cost: + WizCoin: 3 + categories: + - SpellbookOffensive + conditions: + - !type:ListingLimitedStockCondition + stock: 1 + +- type: listing + id: SpellbookCluwne + name: spellbook-cluwne-name + description: spellbook-cluwne-desc + productAction: ActionCluwne + cost: + WizCoin: 3 + categories: + - SpellbookOffensive + conditions: + - !type:ListingLimitedStockCondition + stock: 1 + +- type: listing + id: SpellbookSlip + name: spellbook-slip-name + description: spellbook-slip-desc + productAction: ActionSlippery + cost: + WizCoin: 2 + categories: + - SpellbookOffensive + conditions: + - !type:ListingLimitedStockCondition + stock: 1 + # Defensive - type: listing id: SpellbookForceWall diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml index 6cc13a00f2..6f6fa6afb3 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml @@ -515,7 +515,7 @@ - type: MobStateActions actions: Alive: - - ActionSmite + - ActionSmiteNoReq Critical: - ActionCritSuccumb - ActionCritFakeDeath diff --git a/Resources/Prototypes/Entities/Objects/Magic/books.yml b/Resources/Prototypes/Entities/Objects/Magic/books.yml index e47fa00c45..d000f78429 100644 --- a/Resources/Prototypes/Entities/Objects/Magic/books.yml +++ b/Resources/Prototypes/Entities/Objects/Magic/books.yml @@ -136,7 +136,7 @@ - state: overlay_blood - type: Spellbook spellActions: - ActionSmite: -1 + ActionSmiteNoReq: -1 - type: entity id: KnockSpellbook diff --git a/Resources/Prototypes/Magic/smite_spells.yml b/Resources/Prototypes/Magic/smite_spells.yml deleted file mode 100644 index 10f5bdd538..0000000000 --- a/Resources/Prototypes/Magic/smite_spells.yml +++ /dev/null @@ -1,20 +0,0 @@ -- type: entity - id: ActionSmite - name: Smite - description: Instantly gibs a target. - components: - - type: EntityTargetAction - useDelay: 60 - itemIconStyle: BigAction - whitelist: - components: - - Body - canTargetSelf: false - interactOnMiss: false - sound: !type:SoundPathSpecifier - path: /Audio/Magic/disintegrate.ogg - icon: - sprite: Objects/Magic/magicactions.rsi - state: gib - event: !type:SmiteSpellEvent - speech: action-speech-spell-smite diff --git a/Resources/Prototypes/Magic/touch_spells.yml b/Resources/Prototypes/Magic/touch_spells.yml new file mode 100644 index 0000000000..deb036f215 --- /dev/null +++ b/Resources/Prototypes/Magic/touch_spells.yml @@ -0,0 +1,83 @@ +- type: entity + id: ActionSmite + name: Smite + description: Instantly gibs a target. + components: + - type: EntityTargetAction + useDelay: 90 + itemIconStyle: BigAction + whitelist: + components: + - Body + canTargetSelf: false + interactOnMiss: false + sound: !type:SoundPathSpecifier + path: /Audio/Magic/disintegrate.ogg + icon: + sprite: Objects/Magic/magicactions.rsi + state: gib + event: !type:SmiteSpellEvent + speech: action-speech-spell-smite + - type: Magic + requiresClothes: true + +# For the Snail +- type: entity + id: ActionSmiteNoReq + parent: ActionSmite + name: Smite + description: Instantly gibs a target. + components: + - type: Magic + +- type: entity + id: ActionCluwne + name: Cluwne's Curse + description: Turns someone into a Cluwne! + components: + - type: EntityTargetAction + useDelay: 120 + itemIconStyle: BigAction + whitelist: + components: + - Body + canTargetSelf: false + interactOnMiss: false + sound: !type:SoundPathSpecifier + path: /Audio/Items/brokenbikehorn.ogg + icon: + sprite: Clothing/Mask/cluwne.rsi + state: icon + event: !type:ChangeComponentsSpellEvent + speech: action-speech-spell-cluwne + toAdd: + - type: Cluwne + - type: Magic + requiresClothes: true + +- type: entity + id: ActionSlippery + name: Slippery Slope + description: Make someone slippery. + components: + - type: EntityTargetAction + useDelay: 60 + itemIconStyle: BigAction + whitelist: + components: + - Body + canTargetSelf: false + interactOnMiss: false + sound: !type:SoundPathSpecifier + path: /Audio/Effects/slip.ogg + icon: + sprite: Objects/Specific/Janitorial/soap.rsi + state: omega-4 + event: !type:ChangeComponentsSpellEvent + speech: action-speech-spell-slip + toAdd: + - type: Slippery + - type: StepTrigger + requiredTriggeredSpeed: -1 + - type: Magic + requiresClothes: true From 95b863dd2b4dd99becf567f5e15ec5b71a8a2954 Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Sun, 2 Feb 2025 11:38:34 -0800 Subject: [PATCH 055/313] Fixes debug assertion thrown when spiking with pills (#34813) --- .../Chemistry/EntitySystems/SolutionSpikerSystem.cs | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/Content.Shared/Chemistry/EntitySystems/SolutionSpikerSystem.cs b/Content.Shared/Chemistry/EntitySystems/SolutionSpikerSystem.cs index f179580604..468e28f65f 100644 --- a/Content.Shared/Chemistry/EntitySystems/SolutionSpikerSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/SolutionSpikerSystem.cs @@ -26,7 +26,8 @@ public sealed class SolutionSpikerSystem : EntitySystem private void OnInteractUsing(Entity entity, ref InteractUsingEvent args) { - TrySpike(args.Used, args.Target, args.User, entity.Comp); + if (TrySpike(args.Used, args.Target, args.User, entity.Comp)) + args.Handled = true; } /// @@ -36,7 +37,7 @@ public sealed class SolutionSpikerSystem : EntitySystem /// Source of the solution. /// Target to spike with the solution from source. /// User spiking the target solution. - private void TrySpike(EntityUid source, EntityUid target, EntityUid user, RefillableSolutionComponent? spikableTarget = null, + private bool TrySpike(EntityUid source, EntityUid target, EntityUid user, RefillableSolutionComponent? spikableTarget = null, SolutionSpikerComponent? spikableSource = null, SolutionContainerManagerComponent? managerSource = null, SolutionContainerManagerComponent? managerTarget = null) @@ -46,21 +47,23 @@ public sealed class SolutionSpikerSystem : EntitySystem || !_solution.TryGetRefillableSolution((target, spikableTarget, managerTarget), out var targetSoln, out var targetSolution) || !_solution.TryGetSolution((source, managerSource), spikableSource.SourceSolution, out _, out var sourceSolution)) { - return; + return false; } if (targetSolution.Volume == 0 && !spikableSource.IgnoreEmpty) { _popup.PopupClient(Loc.GetString(spikableSource.PopupEmpty, ("spiked-entity", target), ("spike-entity", source)), user, user); - return; + return false; } if (!_solution.ForceAddSolution(targetSoln.Value, sourceSolution)) - return; + return false; _popup.PopupClient(Loc.GetString(spikableSource.Popup, ("spiked-entity", target), ("spike-entity", source)), user, user); sourceSolution.RemoveAllSolution(); if (spikableSource.Delete) QueueDel(source); + + return true; } } From 28709fdc723872a90e2ce8e8af546db1a38bdf5b Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Sun, 2 Feb 2025 11:39:02 -0800 Subject: [PATCH 056/313] Fixes debug assertion thrown when chopping logs (#34814) --- Content.Server/Botany/Systems/LogSystem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Server/Botany/Systems/LogSystem.cs b/Content.Server/Botany/Systems/LogSystem.cs index a0639e3708..3d415635be 100644 --- a/Content.Server/Botany/Systems/LogSystem.cs +++ b/Content.Server/Botany/Systems/LogSystem.cs @@ -45,5 +45,6 @@ public sealed class LogSystem : EntitySystem } QueueDel(uid); + args.Handled = true; } } From 75e469738c222ebc4fc1c42507205fbde42f7dba Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Sun, 2 Feb 2025 11:39:23 -0800 Subject: [PATCH 057/313] Fixes debug assertion crash when inserting cash (#34812) --- Content.Server/Cargo/Systems/CargoSystem.Orders.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs index 9dbd2b88dc..2c86a5590a 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs @@ -64,6 +64,7 @@ namespace Content.Server.Cargo.Systems _audio.PlayPvs(component.ConfirmSound, uid); UpdateBankAccount(stationUid.Value, bank, (int) price); QueueDel(args.Used); + args.Handled = true; } private void OnInit(EntityUid uid, CargoOrderConsoleComponent orderConsole, ComponentInit args) From 8d1a300b5787ace516ff85f6a6a86dc2e46da3ec Mon Sep 17 00:00:00 2001 From: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> Date: Sun, 2 Feb 2025 21:00:27 +0100 Subject: [PATCH 058/313] [Admin] Omni Accent Smite (#34824) gods forgive me --- .../Systems/AdminVerbSystem.Smites.cs | 31 +++++++++++++++++++ .../Locale/en-US/administration/smites.ftl | 2 ++ 2 files changed, 33 insertions(+) diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs index 4cd1f95288..57a312c304 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs @@ -892,5 +892,36 @@ public sealed partial class AdminVerbSystem Message = string.Join(": ", superslipName, Loc.GetString("admin-smite-super-slip-description")) }; args.Verbs.Add(superslip); + + var omniaccentName = Loc.GetString("admin-smite-omni-accent-name").ToLowerInvariant(); + Verb omniaccent = new() + { + Text = omniaccentName, + Category = VerbCategory.Smite, + Icon = new SpriteSpecifier.Rsi(new("Interface/Actions/voice-mask.rsi"), "icon"), + Act = () => + { + EnsureComp(args.Target); + EnsureComp(args.Target); + EnsureComp(args.Target); + EnsureComp(args.Target); + EnsureComp(args.Target); + EnsureComp(args.Target); + EnsureComp(args.Target); + EnsureComp(args.Target); + EnsureComp(args.Target); + EnsureComp(args.Target); + EnsureComp(args.Target); + EnsureComp(args.Target); + + if (_random.Next(0, 8) == 0) + { + EnsureComp(args.Target); // was asked to make this at a low chance idk + } + }, + Impact = LogImpact.Extreme, + Message = string.Join(": ", omniaccentName, Loc.GetString("admin-smite-omni-accent-description")) + }; + args.Verbs.Add(omniaccent); } } diff --git a/Resources/Locale/en-US/administration/smites.ftl b/Resources/Locale/en-US/administration/smites.ftl index 57d8660fae..adce0bd020 100644 --- a/Resources/Locale/en-US/administration/smites.ftl +++ b/Resources/Locale/en-US/administration/smites.ftl @@ -56,6 +56,7 @@ 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 +admin-smite-omni-accent-name = Omni-Accent ## Smite descriptions @@ -99,6 +100,7 @@ admin-smite-super-bonk-description = Slams them on every single table on the Sta admin-smite-super-bonk-lite-description= Slams them on every single table on the Station and beyond. Stops when the target is dead. admin-smite-terminate-description = Creates a Terminator ghost role with the sole objective of killing them. admin-smite-super-slip-description = Slips them really, really hard. +admin-smite-omni-accent-description = Makes the target speak with almost every accent available. ## Tricks descriptions From c52ff59e967a7ff47f178f9746396ac09433658c Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 2 Feb 2025 20:01:35 +0000 Subject: [PATCH 059/313] Automatic changelog update --- Resources/Changelog/Admin.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 440a5d567a..5badea1abe 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -737,5 +737,12 @@ Entries: id: 91 time: '2025-01-21T23:23:47.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34563 +- author: ScarKy0 + changes: + - message: Added the omni-accent smite. It adds most accents onto the target. + type: Add + id: 92 + time: '2025-02-02T20:00:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34824 Name: Admin Order: 1 From 20f5cbf3fdfb954046aa14b420f6f0b6a0625901 Mon Sep 17 00:00:00 2001 From: UpAndLeaves <92269094+Alpha-Two@users.noreply.github.com> Date: Sun, 2 Feb 2025 21:31:32 +0000 Subject: [PATCH 060/313] Fixed Wehxplosion yaml error (#34837) --- Resources/Prototypes/Reagents/fun.yml | 18 ------------------ Resources/Prototypes/Recipes/Reactions/fun.yml | 18 ++++++++++++++++++ 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Resources/Prototypes/Reagents/fun.yml b/Resources/Prototypes/Reagents/fun.yml index 2215b6f33d..00d31cbd10 100644 --- a/Resources/Prototypes/Reagents/fun.yml +++ b/Resources/Prototypes/Reagents/fun.yml @@ -381,21 +381,3 @@ conditions: - !type:ReagentThreshold min: 50 - -- type: reaction - id: WehHewExplosion - impact: High - priority: 20 - reactants: - JuiceThatMakesYouWeh: - amount: 1 - JuiceThatMakesYouHew: - amount: 1 - effects: - - !type:ExplosionReactionEffect - explosionType: Radioactive - maxIntensity: 200 - intensityPerUnit: 2 - intensitySlope: 1 - maxTotalIntensity: 250 - tileBreakScale: 0.00001 diff --git a/Resources/Prototypes/Recipes/Reactions/fun.yml b/Resources/Prototypes/Recipes/Reactions/fun.yml index 86d1fcc2fe..3b5d104b98 100644 --- a/Resources/Prototypes/Recipes/Reactions/fun.yml +++ b/Resources/Prototypes/Recipes/Reactions/fun.yml @@ -227,3 +227,21 @@ effects: - !type:CreateEntityReactionEffect entity: IngotSilver1 + +- type: reaction + id: WehHewExplosion + impact: High + priority: 20 + reactants: + JuiceThatMakesYouWeh: + amount: 1 + JuiceThatMakesYouHew: + amount: 1 + effects: + - !type:ExplosionReactionEffect + explosionType: Radioactive + maxIntensity: 200 + intensityPerUnit: 2 + intensitySlope: 1 + maxTotalIntensity: 250 + tileBreakScale: 0.00001 From 8b56f6f1e9fc4a0c063d1e600c920b660408c815 Mon Sep 17 00:00:00 2001 From: DieselMohawk <173439801+DieselMohawk@users.noreply.github.com> Date: Sun, 2 Feb 2025 19:04:04 -0600 Subject: [PATCH 061/313] Security Shield Naming Structure Inconsistency Change (#34841) --- Resources/Prototypes/Entities/Objects/Shields/shields.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Shields/shields.yml b/Resources/Prototypes/Entities/Objects/Shields/shields.yml index a52fac98c2..c8b9cf71b6 100644 --- a/Resources/Prototypes/Entities/Objects/Shields/shields.yml +++ b/Resources/Prototypes/Entities/Objects/Shields/shields.yml @@ -84,10 +84,10 @@ Slash: 1 - type: entity - name: ablative shield + name: laser shield parent: [ BaseShield, BaseRestrictedContraband ] id: RiotLaserShield - description: An ablative shield built for withstanding lasers, but not much else. + description: A shield built for withstanding lasers, but not much else. components: - type: Sprite state: riot_laser-icon @@ -107,7 +107,7 @@ name: ballistic shield parent: [ BaseShield, BaseRestrictedContraband ] id: RiotBulletShield - description: A ballistic shield built for protecting against firearms, but not much else. + description: A shield built for protecting against ballistics, but not much else. components: - type: Sprite state: riot_bullet-icon From f8c203ba0aeea48f92df8929eb40a634567e515b Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 3 Feb 2025 01:05:11 +0000 Subject: [PATCH 062/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a26d3d99c1..1ebdfe2536 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: deltanedas - changes: - - message: Epinephrine now adds Adrenaline, because it is. - type: Tweak - id: 7393 - time: '2024-09-18T23:00:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32076 - author: ShadowCommander changes: - message: Fixed clicking on chairs and beds with an entity buckled to them not @@ -3906,3 +3899,12 @@ id: 7892 time: '2025-02-02T01:38:03.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34797 +- author: DieselMohawk + changes: + - message: Renamed ablative shield to laser shield + type: Tweak + - message: Changed description for laser shield & ballistic shield + type: Tweak + id: 7893 + time: '2025-02-03T01:04:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34841 From 3d6188c92188e3e7f32b622bc291ab6ae61d33a5 Mon Sep 17 00:00:00 2001 From: keronshb <54602815+keronshb@users.noreply.github.com> Date: Mon, 3 Feb 2025 16:22:21 -0500 Subject: [PATCH 063/313] DSword Replacement - the Hypereutactic Blade (#32414) * hypereutactic textures * adds hypereutactic blade * adjusts attack speed and damage * adjust attack speed and adds movement modifier * Adds structural damage * Readjusts the attack rate to be 0.8 * Adds Hypereutactic blade to the upliink * Adds use delay and structural damage, fixes disappearing wielded sprite * Changes wideAngleAnimation to 180 and range to 2.5 * Adds copyright. Changes range to 2.0 * Required wield * Changes reflect chance to 100% * Comments for future todos * Description update * Removes duplicate mapping * removes from uplink * Reorder and remove indents --- .../Locale/en-US/store/uplink-catalog.ftl | 3 + .../Objects/Weapons/Melee/e_sword.yml | 56 +++++++++++- .../hypereutactic_blade.rsi/hypereutactic.png | Bin 0 -> 386 bytes .../hypereutactic_blade.png | Bin 0 -> 339 bytes .../hypereutactic_gem.png | Bin 0 -> 201 bytes .../Melee/hypereutactic_blade.rsi/icon.png | Bin 0 -> 598 bytes .../Melee/hypereutactic_blade.rsi/meta.json | 23 +++++ .../hypereutactic_right_reference.png | Bin 0 -> 1081 bytes .../inhand-left-blade.png | Bin 0 -> 1653 bytes .../inhand-left-gem.png | Bin 0 -> 537 bytes .../inhand-left.png | Bin 0 -> 815 bytes .../inhand-right-blade.png | Bin 0 -> 1586 bytes .../inhand-right-gem.png | Bin 0 -> 530 bytes .../inhand-right.png | Bin 0 -> 813 bytes .../hypereutactic_blade_inhands.rsi/meta.json | 83 ++++++++++++++++++ .../wielded-inhand-left.png | Bin 0 -> 815 bytes .../wielded-inhand-right.png | Bin 0 -> 813 bytes 17 files changed, 164 insertions(+), 1 deletion(-) create mode 100644 Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade.rsi/hypereutactic.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade.rsi/hypereutactic_blade.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade.rsi/hypereutactic_gem.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade.rsi/icon.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade.rsi/meta.json create mode 100644 Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/hypereutactic_right_reference.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/inhand-left-blade.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/inhand-left-gem.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/inhand-left.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/inhand-right-blade.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/inhand-right-gem.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/inhand-right.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/meta.json create mode 100644 Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/wielded-inhand-left.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/wielded-inhand-right.png diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index 59cecca312..907e47a126 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -17,6 +17,9 @@ uplink-esword-desc = A very dangerous energy sword that can reflect shots. Can b uplink-esword-double-name = Double Bladed Energy Sword uplink-esword-double-desc = A much more expensive counter part to the normal energy sword: with a much higher reflection chance, larger attack angle, higher structural damage, and faster swing. Makes a lot of noise when used or turned on. +uplink-hypereutactic-blade-name = Hypereutactic Blade +uplink-hypereutactic-blade-desc = A gigantic energy sword with power that matches its looks. Requires two hands. Slow and unwieldy, yet pretty adept at reflecting. Previously made infamous by an operative wearing a joy mask. You wouldn't want to see this coming at you down the hall! + uplink-edagger-name = Energy Dagger uplink-edagger-desc = A small energy blade conveniently disguised in the form of a pen. diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml index 2e576e6a50..4be577e0fe 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml @@ -59,7 +59,7 @@ color: white netsync: false - type: Appearance - - type: ToggleableLightVisuals + - type: ToggleableLightVisuals # Add support for multiple layers spriteLayer: blade inhandVisuals: left: @@ -330,6 +330,60 @@ reflectProb: .75 spread: 75 +# Item will look weird in handslot. Will need to adjust handstorage visuals in a future PR +- type: entity + parent: EnergySwordDouble + id: HyperEutacticBlade + name: hypereutactic-blade + description: A supermassive weapon envisioned to cleave the very fabric of space and time itself in twain, the hypereutactic blade dynamically flash-forges a hypereutactic crystaline nanostructure capable of passing through most known forms of matter like a hot knife through butter. + components: + - type: MeleeWeapon + wideAnimationRotation: 180 + attackRate: 0.8 #0.7 and below is too slow + angle: 100 + range: 2.0 + damage: + types: + Blunt: 4.5 + - type: ItemToggleMeleeWeapon + activatedSoundOnSwing: + path: /Audio/Weapons/eblademiss.ogg + params: + volume: -3 + variation: 0.250 + activatedDamage: + types: + Slash: 20 + Heat: 20 + Structural: 20 + - type: MeleeRequiresWield + - type: HeldSpeedModifier #slowdown is what balances this compared to a dsword + walkModifier: 0.6 + sprintModifier: 0.6 + - type: UseDelay + delay: 1.5 + - type: Sprite + sprite: Objects/Weapons/Melee/hypereutactic_blade.rsi + layers: + - state: hypereutactic + - state: hypereutactic_blade + color: "#FFFFFF" + visible: false + shader: unshaded + map: [ "blade" ] + - state: hypereutactic_gem + color: "#FFFFFF" + visible: false + shader: unshaded + map: [ "gem" ] + - type: Item + size: Small + sprite: Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi + - type: Reflect + reflectProb: 1.0 + spread: 75 + +# Borgs - type: entity suffix: One-Handed, For Borgs parent: EnergySwordDouble diff --git a/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade.rsi/hypereutactic.png b/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade.rsi/hypereutactic.png new file mode 100644 index 0000000000000000000000000000000000000000..2c52d5a778757426b741ef8d4b88a096155a1f25 GIT binary patch literal 386 zcmeAS@N?(olHy`uVBq!ia0vp^3P9|@!3HF&`%2dVDb50q$YKTtz9S&aI8~cZnt_4Q z#M8wwq+-t7s~fWpImobm(0?G^!K%*6zOY2F=F?xt9ToTf*4HWS6#BQ5L!p6z2|KaCAR$NL%vWpa zTW1+wE?dU9rtIVM&)gEek5<0yZVUWxG(E1Ecd~V3$>SwE?P3mnwlS3NUB2F*X`I)bZveMxjF&oIftq>?AyLpF*|hjO-ET~FbD@Q={)PZ_U=WZ z(LQU1DpC9IGKCg9bz2@+@9SFp>?G&SHL?4&y8^r()cnwxUc)3*n0}ShqoPBJ`I%+~ QFi;shUHx3vIVCg!04`3Rg8%>k literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade.rsi/hypereutactic_blade.png b/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade.rsi/hypereutactic_blade.png new file mode 100644 index 0000000000000000000000000000000000000000..a398c85f402287185641a5224be042ceb4710cf7 GIT binary patch literal 339 zcmeAS@N?(olHy`uVBq!ia0vp^3P9|@!3HF&`%2dVDb50q$YKTtz9S&aI8~cZnt_3l z)zif>q+-t78y9(-3>0Po*{p6gyViXE}&Qw?|DE8DfGqU!hwwliw^TVI~bed3zJc;?Aov+b4~<_CP_ zc1-yde8N%Z7uz)s@dJBmk3Y@XRq`aJHFqu0Q6TW2*I?#`g_-gRixu77eArGn7%kxO z3AXBUU0chxBpITHAwpKb^W?#jofDNscQfwiU?_0f#J1qlty+(lOfG%TQ+_^={=DY# zF4fzg>@N8Vh`!B>UU#~FQg+>H_VDX1>3T6wW?o-D)r08;!@7Q-h4IPK^^8z+88&1e YkdFCO^sRf=v?7q0r>mdKI;Vst0LCkTQ~&?~ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade.rsi/hypereutactic_gem.png b/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade.rsi/hypereutactic_gem.png new file mode 100644 index 0000000000000000000000000000000000000000..8bacb558131bf4ee71071e4dcb1c4bc8c4b7f08a GIT binary patch literal 201 zcmeAS@N?(olHy`uVBq!ia0vp^3P9|@!3HF&`%2dVDb50q$YKTtz9S&aI8~cZ8YJiG z;uumf=k29~oCg$m90Ivzk5|U1r^r4JyzaU6f?QR1tJuT;-3PtzDOUfm1gggh5^5X1 z9^3uZj(tkdnrl_(4c*L>q!g5{MR98`EzUf5^Vs}Vy96#bJYU59DEF^23&ezopr09ejE?*IS* literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade.rsi/icon.png b/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..a7a3d5056c61f26d0355dd2166d1877ccb6d5b78 GIT binary patch literal 598 zcmV-c0;&CpP)8kL{6kq@bU;qYSfd37kRKmLzME$k$ z98hQ!)2WE11Bi`iL)zFY$HgwIp2uuHd6vsD126ysFaQHEK=}a*N;35X)Ns`_Ms-TD zKEO8^18|4L8lbWlo%H{Bq2Hv`11Mx_@(UW4)-qkteq{@}4(${!?m zX&lEm5>6Ec+}Kh68g)F5WMl)~!V3x|Za-6^B!KV)(w@IG1tibq@9J8Nm*sq95ttl) zi@BiQ`WSpx0ELOY7o3YZ!zzzVPeRsaY4abI75$npFi2cS>!$Y9(pPKh2kUw!w>3P8!d3fa~6Hm3_= kr9dPGYcp5CK<;Ap3isO6=jIiu4t z^H7qz&fOyBoD`$FyE3LuiiMB*KYz5@&nmJq^YQom;~SOdsykhfV6b3g=wob1W_Umx z^IZl*_<87S4uRtvb*7(wbyBi%cZuEVt6s}4uY6J&_c}d`b;055 z>ZvU6ZprRDr`feA%D&u$L3W#+rE`QhqY^O+eCOQtG74%vRM83qcr(!foig6%enB_%lg~XMN;S9>COH7o8g!Ht9k1WUoR5xuKbyy zRU&80bZ5Qmx^=rPH|Ci#*gm}cy~g&-_qNi`X|hQ#K<8fB5|tytk;m`I!RZ0_2irX{^owxYPicf z<&(|!Z{=K|!{$yM2Tn57NbGx9&2o5xuOQnQu`hTvxG6NnC3XwbD{UrWA$!A{@n>}`ER-%;@3xV-w?fa zj`7%eSF^*>C-s#&-?Kgauo);jgCphludt$MyICFHYgj)#{vIRtUhZ4Z@2%@5*>V+S zM)o><{{xJ0&q)^FrPi`eShg~+=h4;8A*)0;pWfc`^US$lJ7X_Sjzopr0Jpu<=Kufz literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/inhand-left-blade.png b/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/inhand-left-blade.png new file mode 100644 index 0000000000000000000000000000000000000000..e697fb18e536f0341213f7680a4c64ef7e0fc35d GIT binary patch literal 1653 zcmb`ISx{346ozj|Sd0Xcp)ipsL1VQQ5d@V@NWwC}v>@XckXA$xBvrPCr7W7z$b^Cj zxByBhBrO&TEy3!rge73034~2h7Lg)LN{|K;&=}z6rm@pLwY4)HAI>uW%X#?zb53qh zpf3t(i39)uC3g*3hF1p+_DMvDw zYlyGabJKSimCGZxtomlaQ`^a_L8h#a5TVq=T8%gj&{rR4pb7mnGElXO1;s$t60GrxPz=qP79)>ba#B7I9mibx5c_DQrEb!Kw9v`UV}b zu-4q8REl?Hapfq{+`(G6jGB9LlzeQ$E@_~c<<26G#hHa7(03DP?|X>^CAI?^CkZX% zVlbYBqCdoqCQmr-S=jq?t*P~Lm&$?DObUU@3j~>asPHh2BIk)AdUoK4CH~GI!LUVj z>G&^-{Znyf&BhGfJkkzmcj+8&U%3ADpCaB0=wGE&G))bwILuzsNx;`;ETU zn%?m$!#$q}W{)4cGClTEmn)rT4MzUQdRahCU{a%QNHXW!SiEy%-J5!CtLB3ZFhFrEH1`#%M zy~Ng4(KOMaRC^R&g`bxW@twi71DSmK%fR}r zPE2(|6`C)a-f$(P9T7|Bfykk=vKFuUHx|JvHuD&}th6P4u5e=?QuB7pE1afqlXMHQ za2HRnyVp10dJ)fvKup})L9$Gqz0FCoFsj(%@L+rscr4)_dVbnO`q?9=hx;ncx&jDd z@$3o$_a$b2{=-jq=64v;ln>fSUYMZ#Ke!)35>6IY$Fr7v6Fn-~X+7wRdz`zKEpd_V z745h~s7zyG+@$wk++U?nq{<++kK1TNuIURUZ%U%4$Wl?thX7F_Nb6Mw<&;$VFAH6RC literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..9d05f2cce99344657ac5693ec8f63410bb432fc6 GIT binary patch literal 815 zcmeAS@N?(olHy`uVBq!ia0vp^4Is?H1|$#LC7uRSoCO|{#S9F5M?jcysy3fA0|V1T zPZ!6KiaBrZ8s-THia1&W(nt+JUU&bJqTI2)N!St ziP<90=e!ptW_>V@(425dpn6{I`%ImsCvO!0|6_l(TENMe!GgJg3dD{{j9cOtojrfA z`$enSsuYH^l^Nb%YzCJ7_fkaOK8@V6T-}b-Y-I|=%O8bD&OS7G#_oPvcj5haK`c94 z&+?~TeEFO*O3?c0aG9R@A>(;`DWIcn(32|on|$V;j6y8bOx@0<9h-(R1?@Y>jcO`!T!+4=Wr zPuEZ7Nzkod;@PhL#CON*%xMRo&-j@u*W}IaFxmY7mz3TAFEenxeDw7?!vh|MbL0{4 Z%sEY3R|nT-ECl8N22WQ%mvv4FO#sTRKq~+M literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/inhand-right-blade.png b/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/inhand-right-blade.png new file mode 100644 index 0000000000000000000000000000000000000000..da9f049f215bf9db154001c4d71e4dafdb94bece GIT binary patch literal 1586 zcmeAS@N?(olHy`uVBq!ia0vp^2SAvE4M+yv$zcaloCO|{#S9F5M?jcysy3fA0|V<5 zPZ!6KiaBp@KPTei<< zpR}3tUxeRpH-IND!t=_;__ooiwBpY-Y4P2tT?y*JNlv%i+VHLCaD z--8TE7amKOwm(>%A2dng!+GO>eHDLHU-17ASATa=`#=E8l-mn8a;!RkTX8+p=_`BR z?o9h}xW1lC8kJ7iPn|#t$nEy5#@a{rY(R;k38B_YET%?&b<_Ir=_-_6pg5Cv&#n-d}8b zT=wV_`OchKY&(C<72k93+nI!QJ3kp8Bq}y>L^8#~uIz|pvdCxSzN2gc{^vec+$r6s zr`L4&;e}<#eJ@`TJrVLcI)>rp8lc?El2vB2eQnlx2_KIC^s#qlRc$xdg6c32|8sTw z*N3eR4ectqrvLTFKBMEm#6%q~)fZiR{q_B%y!v0q-FN?;SybE2sW4a8OYYyhT>ji2 z&!g@uF-cSxc^R4f5h-4m|BbPxG_Av4|KXeWGwb(#J!{2~Uw!JE@ax&R41D!B>#}M$ z^Bj1nf7^duei@_1pVZ$kzn;}>>p0~-is#aXy;bs2+ z;~VDZGv5m8e_t8(z9z=^5tR1 zg2VG|Uj5k2=`gDqYeu9vj__o1B(oc|x8(kwC3n5_Z`ewSa8@iCK48M?^$f4S?z;8< z`*ev6!IqLg>AO1=B%J=O<5Li;-+c2=uR>kFh|~8U=k>x_*0cTGt<@m$MdH^xfi+>P zyA;^|eD2w=ELZ<>-99EBSBIUlQr!!F?UDVYHDP`Je-VvyHAgrm{red1HeqW%>jbvB z6{;^{SewF|obG(FWB6L8!MkI-^V1zaVcFNH{JQl)V1C`XyIQ+NP{Q$?+D+~hmj7-a zzI;hxk(`lZJV%gcU*xlGovpJ=%wI&Xyga|EX(`8}Gw-)`*7)p`y_GBc_URdan}0HA zKUFg1x3|Sh%&)IxjhGQ>FJQbOm!Y-pkL3*AhIiXKKSyr-VO$?xf1Bm)k7A?W?n<+l xIqKCtXI;PDmit+HQ!A0BDN;ZaD0}M}YX81Ea$$i-FR&6|@O1TaS?83{1OOnN$G!jn literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/inhand-right-gem.png b/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/inhand-right-gem.png new file mode 100644 index 0000000000000000000000000000000000000000..044a0810b0255c314192fbe9a7ff665cd980b338 GIT binary patch literal 530 zcmeAS@N?(olHy`uVBq!ia0vp^4Is?H1|$#LC7uRSoCO|{#S9F5M?jcysy3fA0|Vm` zPZ!6KiaBrZUd%jfAmR`xZsq&I>YSD0Yn9hC);v~v!IUe=xA%F^g7Vy#?`!pza4PsQ z6f$)PJIrBt#3G>HV8M8VY$0Fng!|tgf34EJ{`zb3!|TT^*S)rS%d?!-plyHd?V{ax z`+on`Yl@e8ZgF`F!?Ef4KkChY^ILu8P5ANtys`oHoI$qx;TrF(WVDg%e_XUv=k>0C zzf~{)-Y1_d`sYpV1N+h_hUBe(w&kAw{4<8@Ug3|!nT$2-r`c<1Kf4d)tPFQZ{qg<` drJniCw87s}_UFdO&A>=z@O1TaS?83{1OWcGxoH3Z literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..d8c4eff9c215b1f3a4618beb4204b41dc68f42d1 GIT binary patch literal 813 zcmeAS@N?(olHy`uVBq!ia0vp^4Is?H1|$#LC7uRSoCO|{#S9F5M?jcysy3fA0|V22 zPZ!6KiaBrZ+UH$PkZAa5E+lkw2LpRUkRog8x`>FxuKo$KdJ}#y7${v-p3u2YN5i;D zwKHPZQ>Gk)nS1m^S6va)>`gX5|2bMI)kEa@&wn>gm+QBrF%+;dq*Hxz1d$*$Oo5G8a2QNpk3+%dg`tjZR=jWJyeE7F^@qhbU6%o%CCs;5y7&8ns zk*(TblVlcu+d|EE`c@%_n+G^&-15<8ymEX&-=b5CgFbKZIps59|My2a57uSm@*7l4 zaX(Yv|Ynd08TrzWPS?^36T9lCFUz zdY`T_X`D9Fcl-LrQSxi&&DW}lHn-M4RdBC+SN`ccua(&+{Vi3}Kg^q=*aWIyt$O@m zchYjkCu%F?-iF6as7l_EUd~>gXm&f3VdvxU?QcvP?gc93eSaq;&w5yrVGiQ~a)>+f Zf8;xsY>c1x4VeBJJYD@<);T3K0RY|@Im!S4 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/meta.json new file mode 100644 index 0000000000..1f4d5ca6c2 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/meta.json @@ -0,0 +1,83 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Toriate. Taken from Citadel Station at https://github.com/Citadel-Station-13/Citadel-Station-13", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + }, + { + "name": "inhand-right-blade", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2 + ], + [ + 0.2, + 0.2 + ], + [ + 0.2, + 0.2 + ], + [ + 0.2, + 0.2 + ] + ] + }, + { + "name": "inhand-right-gem", + "directions": 4 + }, + { + "name": "hypereutactic_right_reference", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "inhand-left-blade", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2 + ], + [ + 0.2, + 0.2 + ], + [ + 0.2, + 0.2 + ], + [ + 0.2, + 0.2 + ] + ] + }, + { + "name": "inhand-left-gem", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..9d05f2cce99344657ac5693ec8f63410bb432fc6 GIT binary patch literal 815 zcmeAS@N?(olHy`uVBq!ia0vp^4Is?H1|$#LC7uRSoCO|{#S9F5M?jcysy3fA0|V1T zPZ!6KiaBrZ8s-THia1&W(nt+JUU&bJqTI2)N!St ziP<90=e!ptW_>V@(425dpn6{I`%ImsCvO!0|6_l(TENMe!GgJg3dD{{j9cOtojrfA z`$enSsuYH^l^Nb%YzCJ7_fkaOK8@V6T-}b-Y-I|=%O8bD&OS7G#_oPvcj5haK`c94 z&+?~TeEFO*O3?c0aG9R@A>(;`DWIcn(32|on|$V;j6y8bOx@0<9h-(R1?@Y>jcO`!T!+4=Wr zPuEZ7Nzkod;@PhL#CON*%xMRo&-j@u*W}IaFxmY7mz3TAFEenxeDw7?!vh|MbL0{4 Z%sEY3R|nT-ECl8N22WQ%mvv4FO#sTRKq~+M literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/hypereutactic_blade_inhands.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..d8c4eff9c215b1f3a4618beb4204b41dc68f42d1 GIT binary patch literal 813 zcmeAS@N?(olHy`uVBq!ia0vp^4Is?H1|$#LC7uRSoCO|{#S9F5M?jcysy3fA0|V22 zPZ!6KiaBrZ+UH$PkZAa5E+lkw2LpRUkRog8x`>FxuKo$KdJ}#y7${v-p3u2YN5i;D zwKHPZQ>Gk)nS1m^S6va)>`gX5|2bMI)kEa@&wn>gm+QBrF%+;dq*Hxz1d$*$Oo5G8a2QNpk3+%dg`tjZR=jWJyeE7F^@qhbU6%o%CCs;5y7&8ns zk*(TblVlcu+d|EE`c@%_n+G^&-15<8ymEX&-=b5CgFbKZIps59|My2a57uSm@*7l4 zaX(Yv|Ynd08TrzWPS?^36T9lCFUz zdY`T_X`D9Fcl-LrQSxi&&DW}lHn-M4RdBC+SN`ccua(&+{Vi3}Kg^q=*aWIyt$O@m zchYjkCu%F?-iF6as7l_EUd~>gXm&f3VdvxU?QcvP?gc93eSaq;&w5yrVGiQ~a)>+f Zf8;xsY>c1x4VeBJJYD@<);T3K0RY|@Im!S4 literal 0 HcmV?d00001 From 4476b1e64b92d481bd7d53573aa14fc8194cfd20 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 3 Feb 2025 21:23:30 +0000 Subject: [PATCH 064/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1ebdfe2536..6693512554 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: ShadowCommander - changes: - - message: Fixed clicking on chairs and beds with an entity buckled to them not - unbuckling them. - type: Fix - id: 7394 - time: '2024-09-18T23:55:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29998 - author: Winkarst-cpu changes: - message: Now fire leaves burn marks on the tiles that were affected by it. @@ -3908,3 +3900,12 @@ id: 7893 time: '2025-02-03T01:04:04.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34841 +- author: keronshb + changes: + - message: The Hypereutactic Blade has been added to the game as an alternative + to the double bladed energy sword. It's a massive sword with high attack power, + 100% reflect chance, but slow movement and use speed. + type: Add + id: 7894 + time: '2025-02-03T21:22:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32414 From a4599f6d605e3f26361e48254c21767a1f749418 Mon Sep 17 00:00:00 2001 From: UpAndLeaves <92269094+Alpha-Two@users.noreply.github.com> Date: Mon, 3 Feb 2025 21:29:43 +0000 Subject: [PATCH 065/313] fixed effect string typos (#34858) fixed typos --- Resources/Locale/en-US/guidebook/chemistry/statuseffects.ftl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Locale/en-US/guidebook/chemistry/statuseffects.ftl b/Resources/Locale/en-US/guidebook/chemistry/statuseffects.ftl index 13d9ed5d6b..33793048c6 100644 --- a/Resources/Locale/en-US/guidebook/chemistry/statuseffects.ftl +++ b/Resources/Locale/en-US/guidebook/chemistry/statuseffects.ftl @@ -1,12 +1,12 @@ reagent-effect-status-effect-Stun = stunning reagent-effect-status-effect-KnockedDown = knockdown reagent-effect-status-effect-Jitter = jittering -reagent-effect-status-effect-TemporaryBlindness = blindess +reagent-effect-status-effect-TemporaryBlindness = blindness reagent-effect-status-effect-SeeingRainbows = hallucinations reagent-effect-status-effect-Muted = inability to speak reagent-effect-status-effect-Stutter = stuttering reagent-effect-status-effect-ForcedSleep = unconsciousness -reagent-effect-status-effect-Drunk = drunkness +reagent-effect-status-effect-Drunk = drunkenness reagent-effect-status-effect-PressureImmunity = pressure immunity reagent-effect-status-effect-Pacified = combat pacification reagent-effect-status-effect-RatvarianLanguage = ratvarian language patterns From ca4e99b8199158357762d648535a90e1c833057a Mon Sep 17 00:00:00 2001 From: ActiveMammmoth <140334666+ActiveMammmoth@users.noreply.github.com> Date: Mon, 3 Feb 2025 17:11:06 -0500 Subject: [PATCH 066/313] Store Test Change (#34844) --- Content.IntegrationTests/Tests/StoreTests.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Content.IntegrationTests/Tests/StoreTests.cs b/Content.IntegrationTests/Tests/StoreTests.cs index 3f010245d8..1f7d357bc0 100644 --- a/Content.IntegrationTests/Tests/StoreTests.cs +++ b/Content.IntegrationTests/Tests/StoreTests.cs @@ -5,6 +5,7 @@ using Content.Server.Store.Systems; using Content.Server.Traitor.Uplink; using Content.Shared.FixedPoint; using Content.Shared.Inventory; +using Content.Shared.Mind; using Content.Shared.Store; using Content.Shared.Store.Components; using Content.Shared.StoreDiscount.Components; @@ -64,6 +65,7 @@ public sealed class StoreTests await server.WaitAssertion(() => { var invSystem = entManager.System(); + var mindSystem = entManager.System(); human = entManager.SpawnEntity("HumanUniformDummy", coordinates); uniform = entManager.SpawnEntity("UniformDummy", coordinates); @@ -72,6 +74,9 @@ public sealed class StoreTests Assert.That(invSystem.TryEquip(human, uniform, "jumpsuit")); Assert.That(invSystem.TryEquip(human, pda, "id")); + var mind = mindSystem.CreateMind(null); + mindSystem.TransferTo(mind, human, mind: mind); + FixedPoint2 originalBalance = 20; uplinkSystem.AddUplink(human, originalBalance, null, true); From 2ffe539ba254ad929e209709c9fdcd2f84a87af9 Mon Sep 17 00:00:00 2001 From: Smith <182301147+AgentSmithRadio@users.noreply.github.com> Date: Mon, 3 Feb 2025 18:33:14 -0500 Subject: [PATCH 067/313] contrabandInventory Changes (Fixed) (#32934) * Reimport of .yml files, edit to medidrobe.yml * Fixed typo for "Richard" in AutoDrobe contrabandInventory * contrabandInventory Revision * Add a spare bible to PietyVend (#32363) Update chapel.yml * Bible to normal inventory, not contraband * Balance changes based on maintainer feedback. * VendoMat change to Proximity Sensor and Borg Arm. * Revert "VendoMat change to Proximity Sensor and Borg Arm." This reverts commit 44c68daaaedeea26f9376db7f65d1e01771a761e. * PR Rebase, Fixing Reversion * seeds.yml Bungo Seeds swapped for Tobacco Seeds. --------- Co-authored-by: Jarmer123 <148848017+Jarmer123@users.noreply.github.com> --- .../Catalog/VendingMachines/Inventories/atmosdrobe.yml | 2 ++ .../Catalog/VendingMachines/Inventories/bardrobe.yml | 3 ++- .../Catalog/VendingMachines/Inventories/boozeomat.yml | 3 +++ .../Catalog/VendingMachines/Inventories/cargodrobe.yml | 4 ++++ .../Prototypes/Catalog/VendingMachines/Inventories/cart.yml | 3 +++ .../Catalog/VendingMachines/Inventories/centdrobe.yml | 3 +++ .../Catalog/VendingMachines/Inventories/chang.yml | 3 +++ .../Catalog/VendingMachines/Inventories/chapel.yml | 4 ++++ .../Catalog/VendingMachines/Inventories/chefdrobe.yml | 2 ++ .../Catalog/VendingMachines/Inventories/chefvend.yml | 5 +++++ .../Catalog/VendingMachines/Inventories/chemdrobe.yml | 2 ++ .../Catalog/VendingMachines/Inventories/chemvend.yml | 6 ++++++ .../Prototypes/Catalog/VendingMachines/Inventories/cigs.yml | 4 ++++ .../Catalog/VendingMachines/Inventories/clothesmate.yml | 2 ++ .../Catalog/VendingMachines/Inventories/coffee.yml | 4 +++- .../Prototypes/Catalog/VendingMachines/Inventories/cola.yml | 2 ++ .../Catalog/VendingMachines/Inventories/condiments.yml | 5 +++++ .../Catalog/VendingMachines/Inventories/curadrobe.yml | 2 ++ .../Catalog/VendingMachines/Inventories/detdrobe.yml | 2 ++ .../Catalog/VendingMachines/Inventories/dinnerware.yml | 6 +++++- .../Catalog/VendingMachines/Inventories/discount.yml | 5 ++++- .../Catalog/VendingMachines/Inventories/donut.yml | 3 +++ .../Catalog/VendingMachines/Inventories/engidrobe.yml | 3 +++ .../Catalog/VendingMachines/Inventories/engivend.yml | 3 +++ .../Catalog/VendingMachines/Inventories/games.yml | 4 ++++ .../Prototypes/Catalog/VendingMachines/Inventories/gib.yml | 4 ++++ .../Catalog/VendingMachines/Inventories/happyhonk.yml | 6 +++++- .../Catalog/VendingMachines/Inventories/hydrobe.yml | 2 ++ .../Catalog/VendingMachines/Inventories/janidrobe.yml | 3 ++- .../Catalog/VendingMachines/Inventories/lawdrobe.yml | 1 + .../Catalog/VendingMachines/Inventories/medical.yml | 3 ++- .../Catalog/VendingMachines/Inventories/medidrobe.yml | 3 +++ .../Catalog/VendingMachines/Inventories/nutri.yml | 3 +++ .../Catalog/VendingMachines/Inventories/pwrgame.yml | 2 ++ .../Catalog/VendingMachines/Inventories/robotics.yml | 2 ++ .../Catalog/VendingMachines/Inventories/salvage.yml | 4 +++- .../Catalog/VendingMachines/Inventories/scidrobe.yml | 2 ++ .../Prototypes/Catalog/VendingMachines/Inventories/sec.yml | 1 + .../Catalog/VendingMachines/Inventories/secdrobe.yml | 3 +++ .../Catalog/VendingMachines/Inventories/seeds.yml | 3 +++ .../Catalog/VendingMachines/Inventories/shamblersjuice.yml | 3 ++- .../Catalog/VendingMachines/Inventories/snack.yml | 3 +-- .../Prototypes/Catalog/VendingMachines/Inventories/soda.yml | 4 +++- .../Catalog/VendingMachines/Inventories/sovietsoda.yml | 2 ++ .../Catalog/VendingMachines/Inventories/spaceup.yml | 5 ++++- .../Catalog/VendingMachines/Inventories/starkist.yml | 4 +++- .../Catalog/VendingMachines/Inventories/sustenance.yml | 5 +++++ .../Catalog/VendingMachines/Inventories/syndiedrobe.yml | 5 ++++- .../Catalog/VendingMachines/Inventories/theater.yml | 4 ++++ .../Catalog/VendingMachines/Inventories/vendomat.yml | 3 +++ .../Catalog/VendingMachines/Inventories/wallmed.yml | 2 ++ 51 files changed, 152 insertions(+), 15 deletions(-) diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/atmosdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/atmosdrobe.yml index 72864ba851..6dc689ea5a 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/atmosdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/atmosdrobe.yml @@ -13,3 +13,5 @@ ClothingOuterSuitFire: 2 ClothingOuterWinterAtmos: 2 ClothingNeckScarfStripedLightBlue: 3 + contrabandInventory: + ToyFigurineAtmosTech: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/bardrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/bardrobe.yml index 5e4b056176..82455f1bbe 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/bardrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/bardrobe.yml @@ -16,4 +16,5 @@ ClothingOuterVest: 2 ClothingBeltBandolier: 2 ClothingEyesGlassesSunglasses: 2 - + contrabandInventory: + ToyFigurineBartender: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/boozeomat.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/boozeomat.yml index d62cd8f92f..d04ac96016 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/boozeomat.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/boozeomat.yml @@ -46,5 +46,8 @@ DrinkSakeBottleFull: 3 DrinkBeerCan: 5 DrinkWineCan: 5 + contrabandInventory: + EthanolChemistryBottle: 3 + DrinkBottleOfNothingFull: 1 emaggedInventory: DrinkPoisonWinebottleFull: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cargodrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cargodrobe.yml index d1e80ba0c8..4477c02697 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cargodrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cargodrobe.yml @@ -15,3 +15,7 @@ ClothingOuterWinterMiner: 2 ClothingNeckScarfStripedBrown: 3 ClothingShoesBootsWinterCargo: 2 + contrabandInventory: + ToyFigurineCargoTech: 1 + ToyFigurineSalvage: 1 + ToyFigurineQuartermaster: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml index 8170ba792a..414e77bcad 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml @@ -16,3 +16,6 @@ EncryptionKeyScience: 2 EncryptionKeySecurity: 1 EncryptionKeyService: 3 + contrabandInventory: + BalloonNT: 2 + LuxuryPen: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/centdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/centdrobe.yml index 68665ae7fc..50a9ba4bbb 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/centdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/centdrobe.yml @@ -18,3 +18,6 @@ ClothingOuterCoatExpensive: 1 ClothingNeckScarfStripedCentcom: 3 ClothingNeckCloakCentcom: 3 + contrabandInventory: + ToyFigurineCaptain: 1 + ToyFigurineHeadOfPersonnel: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chang.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chang.yml index 5befd85ca8..c7a08853a5 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chang.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chang.yml @@ -8,4 +8,7 @@ FoodSnackChowMein: 3 FoodSnackDanDanNoodles: 3 PairedChopsticks: 3 + contrabandInventory: + FoodBakedDumplings: 2 + FoodSoupMiso: 2 # rice? diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chapel.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chapel.yml index cb9e06932f..3793bd5da4 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chapel.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chapel.yml @@ -21,6 +21,10 @@ BoxCandleSmall: 2 Urn: 5 Bible: 1 + contrabandInventory: + FoodBakedBunHotX: 2 + DrinkWineBottleFull: 1 + ToyFigurineChaplain: 1 emaggedInventory: ClothingOuterArmorCult: 1 ClothingHeadHelmetCult: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefdrobe.yml index 4379a97896..f7b9d355dc 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefdrobe.yml @@ -12,3 +12,5 @@ ClothingShoesColorBlack: 2 ClothingShoesChef: 2 ClothingBeltChef: 2 + contrabandInventory: + ToyFigurineChef: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefvend.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefvend.yml index 1ccda0e273..be0aabccad 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefvend.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefvend.yml @@ -20,4 +20,9 @@ FoodButter: 3 FoodCheese: 1 FoodMeat: 6 + contrabandInventory: + EggBoxBroken: 1 + FoodBoxDonkpocket: 1 + FoodFrozenSandwich: 2 + FoodFrozenSandwichStrawberry: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chemdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chemdrobe.yml index 5dbb34afa7..8174bb4bee 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chemdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chemdrobe.yml @@ -14,3 +14,5 @@ ClothingHandsGlovesLatex: 2 ClothingHeadsetMedical: 2 ClothingOuterWinterChem: 2 + contrabandInventory: + ToyFigurineChemist: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chemvend.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chemvend.yml index 78386af931..a94c4b9fc5 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chemvend.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chemvend.yml @@ -22,6 +22,9 @@ JugSodium: 2 JugSugar: 3 JugSulfur: 1 + contrabandInventory: + DrinkLithiumFlask: 1 + StrangePill: 3 emaggedInventory: ToxinChemistryBottle: 1 @@ -50,6 +53,9 @@ JugSugar: 3 JugSulfur: 1 JugWeldingFuel: 1 + contrabandInventory: + DrinkLithiumFlask: 1 + StrangePill: 3 emaggedInventory: PaxChemistryBottle: 3 MuteToxinChemistryBottle: 3 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cigs.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cigs.yml index 4b21e05235..0d675fe3df 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cigs.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cigs.yml @@ -14,5 +14,9 @@ CheapLighter: 4 Lighter: 2 FlippoLighter: 2 + contrabandInventory: + GroundTobacco: 3 + CigarGold: 2 + Igniter: 1 emaggedInventory: CigPackSyndicate: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml index a069833759..7b000e30ad 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml @@ -96,4 +96,6 @@ ClothingMaskNeckGaiter: 2 ClothingUniformJumpsuitTacticool: 1 ClothingUniformJumpskirtTacticool: 1 + ToyFigurinePassenger: 1 + ToyFigurineGreytider: 1 # DO NOT ADD MORE, USE UNIFORM DYING diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/coffee.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/coffee.yml index 2d65fa1f71..84837be754 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/coffee.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/coffee.yml @@ -1,4 +1,4 @@ -- type: vendingMachineInventory +- type: vendingMachineInventory id: HotDrinksMachineInventory startingInventory: DrinkHotCoffee: 5 @@ -6,5 +6,7 @@ DrinkTeacup: 5 DrinkGreenTea: 5 DrinkHotCoco: 5 + contrabandInventory: + DrinkTeapot: 2 emaggedInventory: DrinkNothing: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cola.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cola.yml index 30166ca371..972c0fca0e 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cola.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cola.yml @@ -9,6 +9,8 @@ DrinkLemonLimeCan: 2 DrinkLemonLimeCranberryCan: 2 DrinkFourteenLokoCan: 2 + contrabandInventory: + DrinkColaBottleFull: 2 emaggedInventory: DrinkNukieCan: 2 DrinkChangelingStingCan: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml index d0304bd4ad..e485a2ffd7 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml @@ -18,3 +18,8 @@ KnifePlastic: 10 FoodPlatePlastic: 10 FoodPlateSmallPlastic: 10 + contrabandInventory: + FoodShakerSalt: 1 + FoodShakerPepper: 1 + FoodCondimentBottleKetchup: 1 + ReagentContainerMayo: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/curadrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/curadrobe.yml index fe332ea52d..51d4f3d64b 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/curadrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/curadrobe.yml @@ -14,4 +14,6 @@ ClothingUniformJumpskirtLibrarian: 3 ClothingShoesBootsLaceup: 2 ClothingHeadsetService: 2 + contrabandInventory: + ToyFigurineLibrarian: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/detdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/detdrobe.yml index a67ed9397b..55b7328545 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/detdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/detdrobe.yml @@ -15,3 +15,5 @@ ClothingHandsGlovesColorBlack: 2 ClothingHandsGlovesLatex: 2 ClothingHeadsetSecurity: 2 + contrabandInventory: + ToyFigurineDetective: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/dinnerware.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/dinnerware.yml index 046607f21a..a6446a2cc1 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/dinnerware.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/dinnerware.yml @@ -1,4 +1,4 @@ -- type: vendingMachineInventory +- type: vendingMachineInventory id: DinnerwareInventory startingInventory: ButchCleaver: 1 @@ -27,3 +27,7 @@ DrinkMugOne: 1 DrinkMugRainbow: 2 DrinkMugRed: 2 + contrabandInventory: + CandyBowl: 1 + BarSpoon: 2 + DrinkShaker: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/discount.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/discount.yml index fc8492dcf1..9708373dbf 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/discount.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/discount.yml @@ -1,4 +1,4 @@ -- type: vendingMachineInventory +- type: vendingMachineInventory id: DiscountDansInventory startingInventory: FoodSnackCheesie: 3 @@ -8,3 +8,6 @@ FoodSnackPopcorn: 3 FoodSnackEnergy: 3 CigPackMixed: 2 + contrabandInventory: + FoodSnackDanDanNoodles: 3 + FoodBakedBunHoney: 3 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/donut.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/donut.yml index 16dc3e628f..fadd3a7d44 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/donut.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/donut.yml @@ -5,5 +5,8 @@ FoodDonutApple: 3 FoodDonutPink: 3 FoodDonutBungo: 3 + contrabandInventory: + FoodBagel: 2 + FoodBagelPoppy: 2 emaggedInventory: FoodDonutPoison: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/engidrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/engidrobe.yml index 5d732def49..2d28d86038 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/engidrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/engidrobe.yml @@ -16,3 +16,6 @@ ClothingOuterWinterEngi: 2 ClothingNeckScarfStripedOrange: 3 ClothingShoesBootsWinterEngi: 2 + contrabandInventory: + ToyFigurineEngineer: 1 + ToyFigurineChiefEngineer: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml index a35793b4bd..63089773b1 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml @@ -10,3 +10,6 @@ ClothingHandsGlovesColorYellow: 6 BoxInflatable: 2 ClothingHeadHatCone: 4 + contrabandInventory: + CowToolboxFilled: 1 + DrinkBeerCan: 3 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/games.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/games.yml index f022b4b9a5..0fe813178f 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/games.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/games.yml @@ -16,3 +16,7 @@ PaperCNCSheet: 6 MysteryFigureBox: 2 BooksBag: 3 + contrabandInventory: + Basketball: 1 + FoodSnackBoritos: 3 + DrinkSpaceMountainWindCan: 3 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/gib.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/gib.yml index 04dbf38ed7..d96c97baa1 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/gib.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/gib.yml @@ -9,6 +9,10 @@ DrinkLemonLimeCan: 2 DrinkLemonLimeCranberryCan: 2 DrinkFourteenLokoCan: 2 + contrabandInventory: + ClothingNeckStethoscope: 2 + Saw: 2 + Tourniquet: 3 emaggedInventory: DrinkNukieCan: 2 DrinkChangelingStingCan: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/happyhonk.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/happyhonk.yml index 50695edc19..62c1d6ffcd 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/happyhonk.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/happyhonk.yml @@ -1,8 +1,12 @@ -- type: vendingMachineInventory +- type: vendingMachineInventory id: HappyHonkDispenserInventory startingInventory: HappyHonk: 10 HappyHonkMime: 4 + contrabandInventory: + ToyFigurineClown: 1 + ToyFigurineMime: 1 + ToyFigurineNukie: 1 emaggedInventory: HappyHonkCluwne: 1 HappyHonkNukie: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/hydrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/hydrobe.yml index 470abda91e..b1e64a2c55 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/hydrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/hydrobe.yml @@ -12,4 +12,6 @@ ClothingHeadBandBotany: 3 ClothingHeadsetService: 2 ClothingOuterWinterHydro: 2 + contrabandInventory: + ToyFigurineBotanist: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml index b585d34051..2df87ea421 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml @@ -10,7 +10,8 @@ ClothingHeadsetService: 2 ClothingOuterWinterJani: 2 ClothingNeckScarfStripedPurple: 3 - + contrabandInventory: + ToyFigurineJanitor: 1 emaggedInventory: ClothingUniformJumpskirtJanimaid: 2 ClothingUniformJumpskirtJanimaidmini: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/lawdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/lawdrobe.yml index 07a650b0a3..b5dfb9c261 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/lawdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/lawdrobe.yml @@ -23,5 +23,6 @@ ClothingHeadHatPwig: 1 # "Legally" obtained currency SpaceCash100: 2 + ToyFigurineLawyer: 1 emaggedInventory: CyberPen: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml index 72b6b7617a..c7c345f353 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml @@ -10,4 +10,5 @@ BoxBottle: 3 ClothingEyesHudMedical: 2 ClothingEyesEyepatchHudMedical: 2 - + contrabandInventory: + FoodApple: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml index d5e58e3d73..03655aece4 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml @@ -25,3 +25,6 @@ ClothingShoesBootsWinterMed: 2 contrabandInventory: ClothingUniformJumpskirtOfLife: 1 + ToyFigurineMedicalDoctor: 1 + ToyFigurineParamedic: 1 + ToyFigurineChiefMedicalOfficer: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/nutri.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/nutri.yml index b194755e86..3b09aa1b5a 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/nutri.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/nutri.yml @@ -19,5 +19,8 @@ BoxAgrichem: 1 #TO DO: #plant analyzer + contrabandInventory: + UnstableMutagenChemistryBottle: 1 + Joint: 1 emaggedInventory: Left4ZedChemistryBottle: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/pwrgame.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/pwrgame.yml index d51075c358..b48e876a58 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/pwrgame.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/pwrgame.yml @@ -10,6 +10,8 @@ DrinkLemonLimeCan: 2 DrinkLemonLimeCranberryCan: 2 DrinkFourteenLokoCan: 2 + contrabandInventory: + DrinkDrGibbCan: 3 emaggedInventory: DrinkNukieCan: 2 DrinkChangelingStingCan: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/robotics.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/robotics.yml index c53efb3e72..914a03a45b 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/robotics.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/robotics.yml @@ -18,3 +18,5 @@ Welder: 1 Screwdriver: 2 Crowbar: 2 + contrabandInventory: + FoodBurgerRobot: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml index 7761453327..a2765923de 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml @@ -1,4 +1,4 @@ -- type: vendingMachineInventory +- type: vendingMachineInventory id: SalvageEquipmentInventory startingInventory: Crowbar: 2 @@ -10,3 +10,5 @@ RadioHandheld: 2 WeaponGrapplingGun: 4 WeaponProtoKineticAccelerator: 4 + contrabandInventory: + PlushieCarp: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/scidrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/scidrobe.yml index 9827d02284..5dbca0b3cb 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/scidrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/scidrobe.yml @@ -15,3 +15,5 @@ ClothingOuterWinterSci: 2 ClothingNeckScarfStripedPurple: 3 ClothingShoesBootsWinterSci: 2 + contrabandInventory: + ToyFigurineResearchDirector: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml index afbeff6b08..0e25fb2b05 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml @@ -22,6 +22,7 @@ RadioHandheldSecurity: 5 # security officers need to follow a diet regimen! contrabandInventory: + WeaponMeleeNeedle: 2 FoodDonutHomer: 12 FoodBoxDonut: 2 #box evidence diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml index f81f5854cb..b4526732a9 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml @@ -27,3 +27,6 @@ ClothingHeadHelmetJustice: 1 contrabandInventory: ClothingMaskClownSecurity: 1 + ToyFigurineSecurity: 1 + ToyFigurineWarden: 1 + ToyFigurineHeadOfSecurity: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml index bd0990050b..44d0678956 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml @@ -39,5 +39,8 @@ TowercapSeeds: 5 WheatSeeds: 5 WatermelonSeeds: 5 + contrabandInventory: + TobaccoSeeds: 2 + FoodSnackSemki: 2 emaggedInventory: FlyAmanitaSeeds: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/shamblersjuice.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/shamblersjuice.yml index 6b9ff67f2b..7ec384a9d0 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/shamblersjuice.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/shamblersjuice.yml @@ -9,6 +9,7 @@ DrinkLemonLimeCan: 2 DrinkLemonLimeCranberryCan: 2 DrinkFourteenLokoCan: 2 + contrabandInventory: + DrinkChangelingStingCan: 2 emaggedInventory: DrinkNukieCan: 2 - DrinkChangelingStingCan: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/snack.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/snack.yml index b797f588fe..cd89dbeb16 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/snack.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/snack.yml @@ -7,6 +7,5 @@ FoodSnackPistachios: 3 FoodSnackSus: 3 FoodSnackSemki: 3 - emaggedInventory: + contrabandInventory: FoodSnackSyndi: 3 - diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/soda.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/soda.yml index 4b2a922813..5566ea7d0d 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/soda.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/soda.yml @@ -1,4 +1,4 @@ -- type: vendingMachineInventory +- type: vendingMachineInventory id: SodaInventory startingInventory: DrinkColaCan: 3 @@ -9,6 +9,8 @@ DrinkLemonLimeCan: 3 DrinkLemonLimeCranberryCan: 3 DrinkFourteenLokoCan: 3 + contrabandInventory: + DrinkColaBottleFull: 2 emaggedInventory: DrinkNukieCan: 3 DrinkChangelingStingCan: 3 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/sovietsoda.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/sovietsoda.yml index 34f0906366..8ad6564327 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/sovietsoda.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/sovietsoda.yml @@ -3,4 +3,6 @@ startingInventory: DrinkSodaWaterCan: 10 #typically hacked product. Default product is "soda" contrabandInventory: + DrinkSodaWaterBottleFull: 2 DrinkColaCan: 10 + ClothingHeadHatUshanka: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/spaceup.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/spaceup.yml index 7b36a3fc81..b368534eeb 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/spaceup.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/spaceup.yml @@ -1,4 +1,4 @@ -- type: vendingMachineInventory +- type: vendingMachineInventory id: SpaceUpInventory startingInventory: DrinkSpaceUpCan: 3 @@ -10,6 +10,9 @@ DrinkLemonLimeCan: 2 DrinkLemonLimeCranberryCan: 2 DrinkFourteenLokoCan: 2 + contrabandInventory: + DrinkSpaceMountainWindBottleFull: 2 + DrinkSpaceUpBottleFull: 2 emaggedInventory: DrinkNukieCan: 2 DrinkChangelingStingCan: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/starkist.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/starkist.yml index 0e7dcf7482..194e0b7a39 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/starkist.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/starkist.yml @@ -1,4 +1,4 @@ -- type: vendingMachineInventory +- type: vendingMachineInventory id: StarkistInventory startingInventory: DrinkStarkistCan: 4 @@ -9,6 +9,8 @@ DrinkLemonLimeCan: 2 DrinkLemonLimeCranberryCan: 2 DrinkFourteenLokoCan: 2 + contrabandInventory: + FoodBurgerCarp: 2 emaggedInventory: DrinkNukieCan: 2 DrinkChangelingStingCan: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/sustenance.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/sustenance.yml index b7a5750809..a36c5e4dc5 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/sustenance.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/sustenance.yml @@ -5,6 +5,11 @@ FoodSnackNutribrick: 5 FoodSnackMREBrownie: 5 FoodCondimentPacketKetchup: 5 + contrabandInventory: + FoodTinMRE: 3 + FoodTinBeans: 3 + FoodTinPeaches: 3 + DrinkBeerCan: 6 emaggedInventory: KitchenKnife: 2 ClothingMaskBreath: 3 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/syndiedrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/syndiedrobe.yml index 8e1f6a1c3a..688706462b 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/syndiedrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/syndiedrobe.yml @@ -15,7 +15,10 @@ ClothingNeckScarfStripedSyndieGreen: 2 ClothingNeckScarfStripedSyndieRed: 2 ClothingShoesBootsWinterSyndicate: 2 - + contrabandInventory: + ToyFigurineFootsoldier: 1 + ToyFigurineNukieElite: 1 + ToyFigurineNukieCommander: 1 emaggedInventory: ClothingOuterCoatSyndieCapArmored: 1 ClothingOuterWinterSyndieCapArmored: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml index e530f98738..015bfc22e1 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml @@ -55,6 +55,10 @@ ClothingShoesBootsCowboyBrown: 1 ClothingShoesBootsCowboyBlack: 1 ClothingShoesBootsCowboyWhite: 1 + contrabandInventory: + ClothingHeadHatRichard: 1 + ToyFigurineBoxer: 1 + ToyFigurineMusician: 1 emaggedInventory: ClothingShoesBling: 1 ClothingShoesBootsCowboyFancy: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/vendomat.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/vendomat.yml index da7e30fd76..d3b804f901 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/vendomat.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/vendomat.yml @@ -10,3 +10,6 @@ MatterBinStockPart: 4 CapacitorStockPart: 4 MicroManipulatorStockPart: 4 + contrabandInventory: + ProximitySensor: 1 + LeftArmBorg: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/wallmed.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/wallmed.yml index 405e2eff56..e0e0dcd1da 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/wallmed.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/wallmed.yml @@ -6,3 +6,5 @@ Bloodpack: 3 EpinephrineChemistryBottle: 3 Syringe: 3 + contrabandInventory: + PowerCellSmall: 2 From df56b67ba83ac49ad91164a973dffb094a96dfec Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 3 Feb 2025 23:34:21 +0000 Subject: [PATCH 068/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 6693512554..362e8427e2 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: Now fire leaves burn marks on the tiles that were affected by it. - type: Add - id: 7395 - time: '2024-09-19T00:23:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31939 - author: ArchRBX changes: - message: Mass scanners and shuttle consoles now display coordinates beneath IFF @@ -3909,3 +3902,11 @@ id: 7894 time: '2025-02-03T21:22:22.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32414 +- author: AgentSmithRadio + changes: + - message: Added manager wire hacking menus to nearly all vending machines. Get + hacking and see what's hidden! + type: Add + id: 7895 + time: '2025-02-03T23:33:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32934 From b2a6d5c1b0553b5f5f2b72b229d629e5351bbd6c Mon Sep 17 00:00:00 2001 From: Ps3Moira <113228053+ps3moira@users.noreply.github.com> Date: Mon, 3 Feb 2025 23:52:10 -0800 Subject: [PATCH 069/313] Cabinetification (#34293) * Resprite Boxes and Icons + Remove Boxes * Update Meta * Update Flatpacks * Update Shotgun Ammo Boxes * Remove Leftover Ammo Box Icons * Update Donk Pocket Boxes * Update Briefcase * Update Happyhonk + Remove Open Sprites * Update Medal Case * Update Cigarette Packs * Update Cigarette Cartons * Update Medkits * fix positioning for medkits * Update Junk Medkit * Update Present * Tweak Rad and Burn Medkits * Tweak Briefcase * Update Toolboxes * Update Decoy Boxes * Fix Meta for Healing toolbox * Update Cow tool box * Update Donut Box * Removal of left over rubber bullet sprites and duplicate ammo box sprites * Removal of Duplicate Ammo Boxes * Update .20 rifle ammo box * Update .35 ammo box + fix meta * Update .45 magnum ammo box Sprites * Update .25 caseless ammo * Remove leftover box * Update cargo_service.yml * Fix Icon Cigs * fix big .20 ammo box * Update Black Cigs Pack * Update Cig Placement * Update Blue Cigs * Update Cig Packs * Re-Add Big Ammo box for the USA guns vending machine lol * Remove 10x24 mention in migration.yml * Update Big Cig Cartons * Remove Toolbox Changes --- .../Catalog/Cargo/cargo_service.yml | 4 +- .../Catalog/Fills/Boxes/general.yml | 2 +- .../Consumable/Food/Containers/box.yml | 3 - .../Smokeables/Cigarettes/cartons.yml | 18 ++-- .../Guns/Ammunition/Boxes/antimateriel.yml | 20 ----- .../Guns/Ammunition/Boxes/caseless_rifle.yml | 40 --------- .../Guns/Ammunition/Boxes/light_rifle.yml | 10 +-- .../Weapons/Guns/Ammunition/Boxes/rifle.yml | 7 +- .../Weapons/Guns/Ammunition/Boxes/shotgun.yml | 38 ++++++-- .../Weapons/Guns/Ammunition/Boxes/toy.yml | 10 ++- .../Guns/Ammunition/Magazines/pistol.yml | 14 --- .../Food/Baked/donkpocket.rsi/banana-box.png | Bin 637 -> 491 bytes .../Food/Baked/donkpocket.rsi/berry-box.png | Bin 371 -> 424 bytes .../Food/Baked/donkpocket.rsi/box.png | Bin 309 -> 475 bytes .../Food/Baked/donkpocket.rsi/carp-box.png | Bin 492 -> 492 bytes .../Food/Baked/donkpocket.rsi/dink-box.png | Bin 427 -> 481 bytes .../Food/Baked/donkpocket.rsi/meta.json | 2 +- .../Food/Baked/donkpocket.rsi/pizza-box.png | Bin 325 -> 441 bytes .../Food/Baked/donkpocket.rsi/spicy-box.png | Bin 355 -> 449 bytes .../Food/Baked/donkpocket.rsi/stonk-box.png | Bin 374 -> 479 bytes .../Baked/donkpocket.rsi/teriyaki-box.png | Bin 254 -> 356 bytes .../Food/Baked/donut.rsi/box-open.png | Bin 323 -> 374 bytes .../Consumable/Food/Baked/donut.rsi/box.png | Bin 245 -> 328 bytes .../Consumable/Food/Baked/donut.rsi/box1.png | Bin 146 -> 161 bytes .../Consumable/Food/Baked/donut.rsi/box2.png | Bin 148 -> 159 bytes .../Consumable/Food/Baked/donut.rsi/box3.png | Bin 147 -> 158 bytes .../Consumable/Food/Baked/donut.rsi/box4.png | Bin 147 -> 159 bytes .../Consumable/Food/Baked/donut.rsi/box5.png | Bin 147 -> 159 bytes .../Consumable/Food/Baked/donut.rsi/box6.png | Bin 145 -> 152 bytes .../Consumable/Food/Baked/donut.rsi/meta.json | 2 +- .../Food/Baked/donut.rsi/pink-box1.png | Bin 137 -> 149 bytes .../Food/Baked/donut.rsi/pink-box2.png | Bin 144 -> 168 bytes .../Food/Baked/donut.rsi/pink-box3.png | Bin 149 -> 157 bytes .../Food/Baked/donut.rsi/pink-box4.png | Bin 142 -> 150 bytes .../Food/Baked/donut.rsi/pink-box5.png | Bin 137 -> 154 bytes .../Food/Baked/donut.rsi/pink-box6.png | Bin 131 -> 146 bytes .../Cigarettes/Cartons/black.rsi/closed.png | Bin 269 -> 0 bytes .../Cigarettes/Cartons/black.rsi/icon.png | Bin 0 -> 349 bytes .../Cartons/black.rsi/inhand-left.png | Bin 293 -> 287 bytes .../Cartons/black.rsi/inhand-right.png | Bin 275 -> 290 bytes .../Cigarettes/Cartons/black.rsi/meta.json | 7 +- .../Cigarettes/Cartons/black.rsi/open.png | Bin 340 -> 0 bytes .../Cigarettes/Cartons/blue.rsi/closed.png | Bin 253 -> 0 bytes .../Cigarettes/Cartons/blue.rsi/icon.png | Bin 0 -> 353 bytes .../Cartons/blue.rsi/inhand-left.png | Bin 257 -> 297 bytes .../Cartons/blue.rsi/inhand-right.png | Bin 253 -> 316 bytes .../Cigarettes/Cartons/blue.rsi/meta.json | 7 +- .../Cigarettes/Cartons/blue.rsi/open.png | Bin 330 -> 0 bytes .../Cigarettes/Cartons/green.rsi/closed.png | Bin 254 -> 0 bytes .../Cigarettes/Cartons/green.rsi/icon.png | Bin 0 -> 369 bytes .../Cartons/green.rsi/inhand-left.png | Bin 243 -> 314 bytes .../Cartons/green.rsi/inhand-right.png | Bin 244 -> 319 bytes .../Cigarettes/Cartons/green.rsi/meta.json | 7 +- .../Cigarettes/Cartons/green.rsi/open.png | Bin 320 -> 0 bytes .../Cigarettes/Cartons/mixed.rsi/closed.png | Bin 275 -> 0 bytes .../Cigarettes/Cartons/mixed.rsi/icon.png | Bin 0 -> 479 bytes .../Cartons/mixed.rsi/inhand-left.png | Bin 247 -> 671 bytes .../Cartons/mixed.rsi/inhand-right.png | Bin 248 -> 666 bytes .../Cigarettes/Cartons/mixed.rsi/meta.json | 7 +- .../Cigarettes/Cartons/mixed.rsi/open.png | Bin 320 -> 0 bytes .../Cigarettes/Cartons/red.rsi/closed.png | Bin 255 -> 0 bytes .../Cigarettes/Cartons/red.rsi/icon.png | Bin 0 -> 351 bytes .../Cartons/red.rsi/inhand-left.png | Bin 261 -> 695 bytes .../Cartons/red.rsi/inhand-right.png | Bin 252 -> 676 bytes .../Cigarettes/Cartons/red.rsi/meta.json | 7 +- .../Cigarettes/Cartons/red.rsi/open.png | Bin 324 -> 0 bytes .../Cigarettes/Packs/black.rsi/closed.png | Bin 254 -> 351 bytes .../Packs/black.rsi/equipped-BELT.png | Bin 159 -> 147 bytes .../Packs/black.rsi/inhand-left.png | Bin 293 -> 287 bytes .../Packs/black.rsi/inhand-right.png | Bin 275 -> 290 bytes .../Cigarettes/Packs/black.rsi/meta.json | 2 +- .../Cigarettes/Packs/black.rsi/open.png | Bin 297 -> 377 bytes .../Cigarettes/Packs/black.rsi/trash.png | Bin 292 -> 367 bytes .../Cigarettes/Packs/blue.rsi/closed.png | Bin 249 -> 359 bytes .../Packs/blue.rsi/equipped-BELT.png | Bin 159 -> 152 bytes .../Cigarettes/Packs/blue.rsi/inhand-left.png | Bin 257 -> 297 bytes .../Packs/blue.rsi/inhand-right.png | Bin 253 -> 316 bytes .../Cigarettes/Packs/blue.rsi/meta.json | 2 +- .../Cigarettes/Packs/blue.rsi/open.png | Bin 300 -> 398 bytes .../Cigarettes/Packs/blue.rsi/trash.png | Bin 288 -> 384 bytes .../Cigarettes/Packs/green.rsi/closed.png | Bin 234 -> 372 bytes .../Packs/green.rsi/equipped-BELT.png | Bin 159 -> 158 bytes .../Packs/green.rsi/inhand-left.png | Bin 243 -> 314 bytes .../Packs/green.rsi/inhand-right.png | Bin 244 -> 319 bytes .../Cigarettes/Packs/green.rsi/meta.json | 2 +- .../Cigarettes/Packs/green.rsi/open.png | Bin 299 -> 384 bytes .../Cigarettes/Packs/green.rsi/trash.png | Bin 292 -> 434 bytes .../Cigarettes/Packs/mixed.rsi/closed.png | Bin 4350 -> 800 bytes .../Packs/mixed.rsi/equipped-BELT.png | Bin 159 -> 150 bytes .../Packs/mixed.rsi/inhand-left.png | Bin 4356 -> 671 bytes .../Packs/mixed.rsi/inhand-right.png | Bin 4353 -> 666 bytes .../Cigarettes/Packs/mixed.rsi/meta.json | 2 +- .../Cigarettes/Packs/mixed.rsi/open.png | Bin 4417 -> 827 bytes .../Cigarettes/Packs/mixed.rsi/trash.png | Bin 4426 -> 794 bytes .../Cigarettes/Packs/red.rsi/closed.png | Bin 242 -> 351 bytes .../Packs/red.rsi/equipped-BELT.png | Bin 159 -> 149 bytes .../Cigarettes/Packs/red.rsi/inhand-left.png | Bin 261 -> 695 bytes .../Cigarettes/Packs/red.rsi/inhand-right.png | Bin 252 -> 676 bytes .../Cigarettes/Packs/red.rsi/meta.json | 2 +- .../Cigarettes/Packs/red.rsi/open.png | Bin 303 -> 390 bytes .../Cigarettes/Packs/red.rsi/trash.png | Bin 292 -> 366 bytes .../Cigarettes/Packs/syndicate.rsi/closed.png | Bin 5265 -> 736 bytes .../Packs/syndicate.rsi/equipped-BELT.png | Bin 159 -> 145 bytes .../Packs/syndicate.rsi/inhand-left.png | Bin 293 -> 673 bytes .../Packs/syndicate.rsi/inhand-right.png | Bin 275 -> 673 bytes .../Cigarettes/Packs/syndicate.rsi/meta.json | 2 +- .../Cigarettes/Packs/syndicate.rsi/open.png | Bin 5436 -> 763 bytes .../Cigarettes/Packs/syndicate.rsi/trash.png | Bin 5369 -> 758 bytes .../Cigarettes/Packs/visualizer.rsi/cig1.png | Bin 103 -> 113 bytes .../Cigarettes/Packs/visualizer.rsi/cig2.png | Bin 104 -> 112 bytes .../Cigarettes/Packs/visualizer.rsi/cig3.png | Bin 104 -> 112 bytes .../Cigarettes/Packs/visualizer.rsi/cig4.png | Bin 104 -> 112 bytes .../Cigarettes/Packs/visualizer.rsi/cig5.png | Bin 104 -> 111 bytes .../Cigarettes/Packs/visualizer.rsi/cig6.png | Bin 104 -> 111 bytes .../Cigarettes/Packs/visualizer.rsi/meta.json | 2 +- .../Objects/Decoration/present.rsi/meta.json | 2 +- .../Decoration/present.rsi/present.png | Bin 3432 -> 537 bytes .../Objects/Devices/flatpack.rsi/ame-part.png | Bin 384 -> 469 bytes .../Objects/Devices/flatpack.rsi/base.png | Bin 331 -> 385 bytes .../containment-field-generator.png | Bin 451 -> 488 bytes .../Objects/Devices/flatpack.rsi/emitter.png | Bin 326 -> 505 bytes .../Devices/flatpack.rsi/fax-machine.png | Bin 429 -> 468 bytes .../Devices/flatpack.rsi/grounding-rod.png | Bin 469 -> 511 bytes .../Devices/flatpack.rsi/icon-default.png | Bin 175 -> 175 bytes .../Objects/Devices/flatpack.rsi/meta.json | 2 +- .../Objects/Devices/flatpack.rsi/overlay.png | Bin 144 -> 144 bytes .../flatpack.rsi/radiation-collector.png | Bin 487 -> 524 bytes .../flatpack.rsi/singularity-generator.png | Bin 484 -> 521 bytes .../flatpack.rsi/solar-assembly-part.png | Bin 499 -> 531 bytes .../Devices/flatpack.rsi/tesla-coil.png | Bin 443 -> 506 bytes .../Devices/flatpack.rsi/tesla-generator.png | Bin 447 -> 484 bytes .../Scrap/generic.rsi/junk-medkit-1.png | Bin 528 -> 608 bytes .../Scrap/generic.rsi/junk-medkit-2.png | Bin 859 -> 925 bytes .../Medical/firstaidkits.rsi/advkit.png | Bin 308 -> 546 bytes .../Medical/firstaidkits.rsi/blackkit.png | Bin 274 -> 451 bytes .../Medical/firstaidkits.rsi/brutekit.png | Bin 366 -> 560 bytes .../Medical/firstaidkits.rsi/burnkit.png | Bin 475 -> 544 bytes .../Medical/firstaidkits.rsi/firstaid.png | Bin 370 -> 468 bytes .../Medical/firstaidkits.rsi/meta.json | 13 +-- .../Medical/firstaidkits.rsi/o2kit.png | Bin 478 -> 508 bytes .../purplekit-inhand-left.png | Bin 287 -> 0 bytes .../purplekit-inhand-right.png | Bin 300 -> 0 bytes .../Medical/firstaidkits.rsi/purplekit.png | Bin 253 -> 0 bytes .../Medical/firstaidkits.rsi/radkit.png | Bin 484 -> 520 bytes .../Medical/firstaidkits.rsi/toxinkit.png | Bin 533 -> 562 bytes .../Medical/healing_toolbox.rsi/icon.png | Bin 683 -> 693 bytes .../Medical/healing_toolbox.rsi/meta.json | 24 ++--- .../Briefcases/briefcase_brown.rsi/icon.png | Bin 291 -> 337 bytes .../Briefcases/briefcase_brown.rsi/meta.json | 2 +- .../Storage/Happyhonk/clown.rsi/box-open.png | Bin 20114 -> 0 bytes .../Storage/Happyhonk/clown.rsi/box.png | Bin 19841 -> 3212 bytes .../Storage/Happyhonk/clown.rsi/meta.json | 5 +- .../Storage/Happyhonk/cluwne.rsi/box-open.png | Bin 20211 -> 0 bytes .../Storage/Happyhonk/cluwne.rsi/box.png | Bin 20224 -> 3177 bytes .../Storage/Happyhonk/cluwne.rsi/meta.json | 5 +- .../Storage/Happyhonk/mime.rsi/box-open.png | Bin 20090 -> 0 bytes .../Storage/Happyhonk/mime.rsi/box.png | Bin 20235 -> 3187 bytes .../Storage/Happyhonk/mime.rsi/meta.json | 5 +- .../Storage/Happyhonk/nukie.rsi/box-open.png | Bin 20115 -> 0 bytes .../Storage/Happyhonk/nukie.rsi/box.png | Bin 20219 -> 3174 bytes .../Storage/Happyhonk/nukie.rsi/meta.json | 5 +- .../Objects/Storage/boxes.rsi/agrichemkit.png | Bin 301 -> 244 bytes .../Objects/Storage/boxes.rsi/beaker.png | Bin 165 -> 176 bytes .../Objects/Storage/boxes.rsi/bodybags.png | Bin 170 -> 180 bytes .../Objects/Storage/boxes.rsi/bottle.png | Bin 614 -> 561 bytes .../Objects/Storage/boxes.rsi/box.png | Bin 305 -> 382 bytes .../Objects/Storage/boxes.rsi/box_hug.png | Bin 207 -> 412 bytes .../Objects/Storage/boxes.rsi/box_id.png | Bin 358 -> 0 bytes .../Objects/Storage/boxes.rsi/box_of_doom.png | Bin 291 -> 369 bytes .../Storage/boxes.rsi/box_of_doom_big.png | Bin 300 -> 392 bytes .../Objects/Storage/boxes.rsi/box_olive.png | Bin 5494 -> 0 bytes .../Objects/Storage/boxes.rsi/box_science.png | Bin 17958 -> 3028 bytes .../Storage/boxes.rsi/box_security.png | Bin 285 -> 409 bytes .../Objects/Storage/boxes.rsi/boxwide.png | Bin 268 -> 413 bytes .../Objects/Storage/boxes.rsi/boxwidetoy.png | Bin 253 -> 425 bytes .../Objects/Storage/boxes.rsi/candle.png | Bin 2785 -> 2786 bytes .../Objects/Storage/boxes.rsi/circuit.png | Bin 189 -> 205 bytes .../Objects/Storage/boxes.rsi/clown.png | Bin 156 -> 186 bytes .../Objects/Storage/boxes.rsi/darts.png | Bin 183 -> 182 bytes .../Objects/Storage/boxes.rsi/disk.png | Bin 215 -> 230 bytes .../Storage/boxes.rsi/emergencytank.png | Bin 144 -> 171 bytes .../Objects/Storage/boxes.rsi/encryptokey.png | Bin 171 -> 164 bytes .../Objects/Storage/boxes.rsi/envelope.png | Bin 158 -> 160 bytes .../Storage/boxes.rsi/evidence_markers.png | Bin 160 -> 173 bytes .../Storage/boxes.rsi/extendedtank.png | Bin 147 -> 195 bytes .../Objects/Storage/boxes.rsi/flare.png | Bin 223 -> 149 bytes .../Objects/Storage/boxes.rsi/flashbang.png | Bin 179 -> 196 bytes .../Objects/Storage/boxes.rsi/forensic.png | Bin 335 -> 278 bytes .../Objects/Storage/boxes.rsi/france.png | Bin 139 -> 141 bytes .../Objects/Storage/boxes.rsi/glasses.png | Bin 155 -> 166 bytes .../Objects/Storage/boxes.rsi/handcuff.png | Bin 114 -> 128 bytes .../Objects/Storage/boxes.rsi/headset.png | Bin 174 -> 167 bytes .../Objects/Storage/boxes.rsi/heart.png | Bin 115 -> 178 bytes .../Objects/Storage/boxes.rsi/holo.png | Bin 272 -> 235 bytes .../Objects/Storage/boxes.rsi/implant.png | Bin 182 -> 193 bytes .../Objects/Storage/boxes.rsi/inflatable.png | Bin 278 -> 245 bytes .../Objects/Storage/boxes.rsi/internals.png | Bin 211 -> 420 bytes .../Objects/Storage/boxes.rsi/latex.png | Bin 148 -> 257 bytes .../Objects/Storage/boxes.rsi/light.png | Bin 150 -> 162 bytes .../Objects/Storage/boxes.rsi/lightmixed.png | Bin 167 -> 180 bytes .../Objects/Storage/boxes.rsi/lighttube.png | Bin 177 -> 190 bytes .../Objects/Storage/boxes.rsi/magazine.png | Bin 219 -> 197 bytes .../Objects/Storage/boxes.rsi/meson.png | Bin 142 -> 163 bytes .../Objects/Storage/boxes.rsi/meta.json | 35 +------- .../Objects/Storage/boxes.rsi/mousetraps.png | Bin 146 -> 161 bytes .../Objects/Storage/boxes.rsi/nitrile.png | Bin 190 -> 237 bytes .../Storage/boxes.rsi/nitrogentank.png | Bin 214 -> 186 bytes .../Objects/Storage/boxes.rsi/omegacart.png | Bin 17865 -> 2872 bytes .../Objects/Storage/boxes.rsi/pda.png | Bin 152 -> 172 bytes .../Objects/Storage/boxes.rsi/pillbox.png | Bin 182 -> 199 bytes .../Objects/Storage/boxes.rsi/sechud.png | Bin 134 -> 144 bytes .../Storage/boxes.rsi/shellbeanbag.png | Bin 203 -> 0 bytes .../Objects/Storage/boxes.rsi/shellflare.png | Bin 188 -> 0 bytes .../Objects/Storage/boxes.rsi/shellflash.png | Bin 181 -> 0 bytes .../Storage/boxes.rsi/shellincendiary.png | Bin 205 -> 0 bytes .../Objects/Storage/boxes.rsi/shelllethal.png | Bin 229 -> 0 bytes .../Storage/boxes.rsi/shellpractice.png | Bin 211 -> 0 bytes .../Objects/Storage/boxes.rsi/shellslug.png | Bin 176 -> 0 bytes .../Objects/Storage/boxes.rsi/shelltoy.png | Bin 248 -> 186 bytes .../Storage/boxes.rsi/shelltranquilizer.png | Bin 266 -> 0 bytes .../Storage/boxes.rsi/shelluranium.png | Bin 1504 -> 0 bytes .../Storage/boxes.rsi/solution_trays.png | Bin 139 -> 151 bytes .../Objects/Storage/boxes.rsi/sterile.png | Bin 139 -> 151 bytes .../Objects/Storage/boxes.rsi/swab.png | Bin 220 -> 188 bytes .../Objects/Storage/boxes.rsi/syringe.png | Bin 160 -> 173 bytes .../Storage/boxes.rsi/throwing_knives.png | Bin 1141 -> 167 bytes .../Objects/Storage/boxes.rsi/trashbag.png | Bin 290 -> 247 bytes .../Objects/Storage/boxes.rsi/vials.png | Bin 1205 -> 178 bytes .../Objects/Storage/boxes.rsi/writing.png | Bin 135 -> 149 bytes .../Storage/boxes.rsi/writing_of_doom.png | Bin 135 -> 149 bytes .../Objects/Storage/boxes.rsi/ziptie.png | Bin 9262 -> 530 bytes .../Objects/Storage/boxicons.rsi/beaker.png | Bin 398 -> 440 bytes .../Objects/Storage/boxicons.rsi/bodybags.png | Bin 406 -> 467 bytes .../Objects/Storage/boxicons.rsi/box.png | Bin 371 -> 441 bytes .../Storage/boxicons.rsi/box_of_doom.png | Bin 401 -> 418 bytes .../Objects/Storage/boxicons.rsi/circuit.png | Bin 388 -> 464 bytes .../Objects/Storage/boxicons.rsi/disk_kit.png | Bin 421 -> 491 bytes .../Objects/Storage/boxicons.rsi/donk_kit.png | Bin 461 -> 538 bytes .../Storage/boxicons.rsi/flashbang.png | Bin 387 -> 458 bytes .../Objects/Storage/boxicons.rsi/glasses.png | Bin 385 -> 471 bytes .../Objects/Storage/boxicons.rsi/handcuff.png | Bin 338 -> 429 bytes .../Objects/Storage/boxicons.rsi/implant.png | Bin 392 -> 458 bytes .../Objects/Storage/boxicons.rsi/latex.png | Bin 393 -> 537 bytes .../Objects/Storage/boxicons.rsi/light.png | Bin 370 -> 457 bytes .../Storage/boxicons.rsi/lightmixed.png | Bin 416 -> 476 bytes .../Storage/boxicons.rsi/lighttube.png | Bin 395 -> 465 bytes .../Objects/Storage/boxicons.rsi/meson.png | Bin 399 -> 441 bytes .../Objects/Storage/boxicons.rsi/meta.json | 2 +- .../Storage/boxicons.rsi/mousetraps.png | Bin 382 -> 435 bytes .../Objects/Storage/boxicons.rsi/pda.png | Bin 369 -> 455 bytes .../Objects/Storage/boxicons.rsi/pillbox.png | Bin 392 -> 477 bytes .../Objects/Storage/boxicons.rsi/sechud.png | Bin 399 -> 439 bytes .../Storage/boxicons.rsi/solution_trays.png | Bin 353 -> 412 bytes .../Objects/Storage/boxicons.rsi/sterile.png | Bin 386 -> 429 bytes .../Objects/Storage/boxicons.rsi/syringe.png | Bin 369 -> 479 bytes .../Storage/boxicons.rsi/throwing_knives.png | Bin 1392 -> 451 bytes .../Objects/Storage/boxicons.rsi/tracks.png | Bin 458 -> 488 bytes .../Objects/Storage/boxicons.rsi/vials.png | Bin 1436 -> 456 bytes .../Objects/Storage/boxicons.rsi/ziptie.png | Bin 9482 -> 816 bytes .../Objects/Storage/donkpocket.rsi/icon.png | Bin 309 -> 0 bytes .../Storage/donkpocket.rsi/inhand-left.png | Bin 320 -> 0 bytes .../Storage/donkpocket.rsi/inhand-right.png | Bin 317 -> 0 bytes .../Objects/Storage/donkpocket.rsi/meta.json | 22 ----- .../Objects/Storage/medalcase.rsi/closed.png | Bin 445 -> 426 bytes .../Objects/Storage/medalcase.rsi/meta.json | 6 +- .../Objects/Storage/medalcase.rsi/open.png | Bin 488 -> 461 bytes .../Cowtools/cow_toolbox.rsi/icon-open.png | Bin 256 -> 0 bytes .../Tools/Cowtools/cow_toolbox.rsi/icon.png | Bin 224 -> 258 bytes .../Tools/Cowtools/cow_toolbox.rsi/meta.json | 5 +- .../Tools/Decoys/agent_decoy.rsi/folded.png | Bin 6197 -> 944 bytes .../Decoys/commander_decoy.rsi/folded.png | Bin 6324 -> 954 bytes .../Tools/Decoys/elite_decoy.rsi/folded.png | Bin 5797 -> 913 bytes .../Decoys/juggernaut_decoy.rsi/folded.png | Bin 6137 -> 932 bytes .../Decoys/operative_decoy.rsi/folded.png | Bin 5977 -> 952 bytes .../Toolboxes/toolbox_blue.rsi/meta.json | 2 +- .../Toolboxes/toolbox_gold.rsi/meta.json | 2 +- .../Toolboxes/toolbox_green.rsi/meta.json | 2 +- .../Tools/Toolboxes/toolbox_red.rsi/meta.json | 2 +- .../Tools/Toolboxes/toolbox_syn.rsi/meta.json | 2 +- .../Toolboxes/toolbox_thief.rsi/meta.json | 2 +- .../Toolboxes/toolbox_yellow.rsi/meta.json | 2 +- .../Boxes/anti_materiel.rsi/base-b.png | Bin 289 -> 0 bytes .../Boxes/anti_materiel.rsi/base.png | Bin 486 -> 588 bytes .../Boxes/anti_materiel.rsi/mag-1.png | Bin 155 -> 220 bytes .../Boxes/anti_materiel.rsi/mag-2.png | Bin 162 -> 218 bytes .../Boxes/anti_materiel.rsi/mag-3.png | Bin 210 -> 216 bytes .../Boxes/anti_materiel.rsi/magb-1.png | Bin 553 -> 0 bytes .../Boxes/anti_materiel.rsi/magb-2.png | Bin 570 -> 0 bytes .../Boxes/anti_materiel.rsi/magb-3.png | Bin 569 -> 0 bytes .../Boxes/anti_materiel.rsi/meta.json | 14 +-- .../Boxes/caseless_rifle.rsi/base-10x24.png | Bin 355 -> 0 bytes .../Boxes/caseless_rifle.rsi/base-b.png | Bin 292 -> 0 bytes .../Boxes/caseless_rifle.rsi/base.png | Bin 456 -> 529 bytes .../Boxes/caseless_rifle.rsi/mag-1.png | Bin 552 -> 545 bytes .../Boxes/caseless_rifle.rsi/mag-2.png | Bin 653 -> 542 bytes .../Boxes/caseless_rifle.rsi/mag-3.png | Bin 850 -> 550 bytes .../Boxes/caseless_rifle.rsi/mag10-1.png | Bin 550 -> 0 bytes .../Boxes/caseless_rifle.rsi/mag10-2.png | Bin 643 -> 0 bytes .../Boxes/caseless_rifle.rsi/mag10-3.png | Bin 793 -> 0 bytes .../Boxes/caseless_rifle.rsi/magb-1.png | Bin 543 -> 0 bytes .../Boxes/caseless_rifle.rsi/magb-2.png | Bin 541 -> 0 bytes .../Boxes/caseless_rifle.rsi/magb-3.png | Bin 2139 -> 0 bytes .../Boxes/caseless_rifle.rsi/meta.json | 32 +------ .../Boxes/caseless_rifle.rsi/practice.png | Bin 312 -> 138 bytes .../Boxes/caseless_rifle.rsi/rubber-b.png | Bin 152 -> 0 bytes .../Boxes/caseless_rifle.rsi/rubber.png | Bin 312 -> 0 bytes .../Boxes/light_rifle.rsi/base-b.png | Bin 303 -> 0 bytes .../Ammunition/Boxes/light_rifle.rsi/base.png | Bin 480 -> 505 bytes .../Boxes/light_rifle.rsi/incendiary.png | Bin 252 -> 200 bytes .../Boxes/light_rifle.rsi/mag-1.png | Bin 546 -> 544 bytes .../Boxes/light_rifle.rsi/mag-2.png | Bin 645 -> 550 bytes .../Boxes/light_rifle.rsi/mag-3.png | Bin 887 -> 550 bytes .../Boxes/light_rifle.rsi/magb-1.png | Bin 543 -> 0 bytes .../Boxes/light_rifle.rsi/magb-2.png | Bin 541 -> 0 bytes .../Boxes/light_rifle.rsi/magb-3.png | Bin 2139 -> 0 bytes .../Boxes/light_rifle.rsi/meta.json | 17 +--- .../Boxes/light_rifle.rsi/practice.png | Bin 246 -> 221 bytes .../Boxes/light_rifle.rsi/rubber.png | Bin 249 -> 0 bytes .../Boxes/light_rifle.rsi/uranium.png | Bin 213 -> 195 bytes .../Guns/Ammunition/Boxes/magnum.rsi/base.png | Bin 465 -> 562 bytes .../Guns/Ammunition/Boxes/magnum.rsi/cap.png | Bin 186 -> 0 bytes .../Ammunition/Boxes/magnum.rsi/capbase.png | Bin 483 -> 609 bytes .../Boxes/magnum.rsi/incendiary.png | Bin 186 -> 153 bytes .../Ammunition/Boxes/magnum.rsi/mag-1.png | Bin 129 -> 155 bytes .../Ammunition/Boxes/magnum.rsi/mag-2.png | Bin 156 -> 155 bytes .../Ammunition/Boxes/magnum.rsi/mag-3.png | Bin 171 -> 162 bytes .../Ammunition/Boxes/magnum.rsi/mag-cap-1.png | Bin 0 -> 135 bytes .../Ammunition/Boxes/magnum.rsi/mag-cap-2.png | Bin 0 -> 161 bytes .../Ammunition/Boxes/magnum.rsi/mag-cap-3.png | Bin 0 -> 162 bytes .../Ammunition/Boxes/magnum.rsi/meta.json | 13 +-- .../Ammunition/Boxes/magnum.rsi/piercing.png | Bin 135 -> 146 bytes .../Ammunition/Boxes/magnum.rsi/practice.png | Bin 186 -> 138 bytes .../Ammunition/Boxes/magnum.rsi/rubber.png | Bin 186 -> 0 bytes .../Ammunition/Boxes/magnum.rsi/uranium.png | Bin 130 -> 146 bytes .../Guns/Ammunition/Boxes/pistol.rsi/base.png | Bin 483 -> 532 bytes .../Boxes/pistol.rsi/incendiary.png | Bin 264 -> 153 bytes .../Boxes/pistol.rsi/incendiarydisplay.png | Bin 472 -> 626 bytes .../Ammunition/Boxes/pistol.rsi/mag-1.png | Bin 553 -> 542 bytes .../Ammunition/Boxes/pistol.rsi/mag-2.png | Bin 861 -> 549 bytes .../Ammunition/Boxes/pistol.rsi/meta.json | 5 +- .../Ammunition/Boxes/pistol.rsi/practice.png | Bin 264 -> 138 bytes .../Ammunition/Boxes/pistol.rsi/rubber.png | Bin 264 -> 0 bytes .../Ammunition/Boxes/pistol.rsi/uranium.png | Bin 214 -> 146 bytes .../Ammunition/Boxes/rifle.rsi/base-b.png | Bin 304 -> 0 bytes .../Ammunition/Boxes/rifle.rsi/base-big.png | Bin 0 -> 506 bytes .../Guns/Ammunition/Boxes/rifle.rsi/base.png | Bin 477 -> 518 bytes .../Ammunition/Boxes/rifle.rsi/incendiary.png | Bin 294 -> 203 bytes .../Guns/Ammunition/Boxes/rifle.rsi/mag-1.png | Bin 160 -> 157 bytes .../Guns/Ammunition/Boxes/rifle.rsi/mag-2.png | Bin 164 -> 163 bytes .../Guns/Ammunition/Boxes/rifle.rsi/mag-3.png | Bin 170 -> 163 bytes .../Ammunition/Boxes/rifle.rsi/mag-big-1.png | Bin 0 -> 156 bytes .../Ammunition/Boxes/rifle.rsi/mag-big-2.png | Bin 0 -> 162 bytes .../Ammunition/Boxes/rifle.rsi/mag-big-3.png | Bin 0 -> 162 bytes .../Ammunition/Boxes/rifle.rsi/magb-1.png | Bin 543 -> 0 bytes .../Ammunition/Boxes/rifle.rsi/magb-2.png | Bin 541 -> 0 bytes .../Ammunition/Boxes/rifle.rsi/magb-3.png | Bin 2139 -> 0 bytes .../Guns/Ammunition/Boxes/rifle.rsi/meta.json | 16 ++-- .../Ammunition/Boxes/rifle.rsi/practice-b.png | Bin 152 -> 0 bytes .../Ammunition/Boxes/rifle.rsi/practice.png | Bin 282 -> 208 bytes .../Ammunition/Boxes/rifle.rsi/rubber.png | Bin 282 -> 0 bytes .../Ammunition/Boxes/rifle.rsi/uranium.png | Bin 245 -> 196 bytes .../Ammunition/Boxes/shotgun.rsi/base.png | Bin 356 -> 451 bytes .../Ammunition/Boxes/shotgun.rsi/beanbag.png | Bin 268 -> 550 bytes .../Ammunition/Boxes/shotgun.rsi/flare.png | Bin 229 -> 623 bytes .../Boxes/shotgun.rsi/incendiary.png | Bin 233 -> 637 bytes .../Ammunition/Boxes/shotgun.rsi/lethal.png | Bin 263 -> 568 bytes .../Ammunition/Boxes/shotgun.rsi/mag-1.png | Bin 107 -> 134 bytes .../Ammunition/Boxes/shotgun.rsi/mag-2.png | Bin 134 -> 143 bytes .../Ammunition/Boxes/shotgun.rsi/mag-3.png | Bin 142 -> 143 bytes .../Ammunition/Boxes/shotgun.rsi/mag-4.png | Bin 155 -> 143 bytes .../Boxes/shotgun.rsi/mag-alt-1.png | Bin 106 -> 0 bytes .../Boxes/shotgun.rsi/mag-alt-2.png | Bin 127 -> 0 bytes .../Boxes/shotgun.rsi/mag-alt-3.png | Bin 135 -> 0 bytes .../Boxes/shotgun.rsi/mag-alt-4.png | Bin 151 -> 0 bytes .../Boxes/shotgun.rsi/mag-beanbag-1.png | Bin 0 -> 141 bytes .../Boxes/shotgun.rsi/mag-beanbag-2.png | Bin 0 -> 151 bytes .../Boxes/shotgun.rsi/mag-beanbag-3.png | Bin 0 -> 151 bytes .../Boxes/shotgun.rsi/mag-beanbag-4.png | Bin 0 -> 151 bytes .../Boxes/shotgun.rsi/mag-flare-1.png | Bin 0 -> 129 bytes .../Boxes/shotgun.rsi/mag-flare-2.png | Bin 0 -> 156 bytes .../Boxes/shotgun.rsi/mag-flare-3.png | Bin 0 -> 156 bytes .../Boxes/shotgun.rsi/mag-flare-4.png | Bin 0 -> 155 bytes .../Boxes/shotgun.rsi/mag-incend-1.png | Bin 0 -> 144 bytes .../Boxes/shotgun.rsi/mag-incend-2.png | Bin 0 -> 152 bytes .../Boxes/shotgun.rsi/mag-incend-3.png | Bin 0 -> 152 bytes .../Boxes/shotgun.rsi/mag-incend-4.png | Bin 0 -> 151 bytes .../Boxes/shotgun.rsi/mag-practice-1.png | Bin 0 -> 127 bytes .../Boxes/shotgun.rsi/mag-practice-2.png | Bin 0 -> 132 bytes .../Boxes/shotgun.rsi/mag-practice-3.png | Bin 0 -> 132 bytes .../Boxes/shotgun.rsi/mag-practice-4.png | Bin 0 -> 131 bytes .../Boxes/shotgun.rsi/mag-slug-1.png | Bin 0 -> 131 bytes .../Boxes/shotgun.rsi/mag-slug-2.png | Bin 0 -> 136 bytes .../Boxes/shotgun.rsi/mag-slug-3.png | Bin 0 -> 137 bytes .../Boxes/shotgun.rsi/mag-slug-4.png | Bin 0 -> 133 bytes .../Boxes/shotgun.rsi/mag-tranq-1.png | Bin 0 -> 136 bytes .../Boxes/shotgun.rsi/mag-tranq-2.png | Bin 0 -> 144 bytes .../Boxes/shotgun.rsi/mag-tranq-3.png | Bin 0 -> 144 bytes .../Boxes/shotgun.rsi/mag-tranq-4.png | Bin 0 -> 145 bytes .../Boxes/shotgun.rsi/mag-uranium-1.png | Bin 0 -> 133 bytes .../Boxes/shotgun.rsi/mag-uranium-2.png | Bin 0 -> 139 bytes .../Boxes/shotgun.rsi/mag-uranium-3.png | Bin 0 -> 139 bytes .../Boxes/shotgun.rsi/mag-uranium-4.png | Bin 0 -> 137 bytes .../Ammunition/Boxes/shotgun.rsi/meta.json | 82 ++++++++++++++++-- .../Ammunition/Boxes/shotgun.rsi/practice.png | Bin 221 -> 622 bytes .../Ammunition/Boxes/shotgun.rsi/slug.png | Bin 257 -> 574 bytes .../Boxes/shotgun.rsi/tranquilizer.png | Bin 292 -> 551 bytes .../Ammunition/Boxes/shotgun.rsi/uranium.png | Bin 249 -> 643 bytes .../caseless_pistol_mag.rsi/meta.json | 3 - .../caseless_pistol_mag.rsi/rubber.png | Bin 223 -> 0 bytes .../caseless_rifle_mag.rsi/meta.json | 3 - .../caseless_rifle_mag.rsi/rubber.png | Bin 2155 -> 0 bytes .../caseless_rifle_mag_short.rsi/meta.json | 3 - .../caseless_rifle_mag_short.rsi/rubber.png | Bin 358 -> 0 bytes .../LightRifle/light_rifle_mag.rsi/meta.json | 3 - .../LightRifle/light_rifle_mag.rsi/rubber.png | Bin 236 -> 0 bytes .../Magnum/magnum_smg_mag.rsi/meta.json | 3 - .../Magnum/magnum_smg_mag.rsi/rubber.png | Bin 225 -> 0 bytes .../pistol_high_capacity_mag.rsi/meta.json | 3 - .../pistol_high_capacity_mag.rsi/rubber.png | Bin 226 -> 0 bytes .../Magazine/Pistol/pistol_mag.rsi/meta.json | 3 - .../Magazine/Pistol/pistol_mag.rsi/rubber.png | Bin 221 -> 0 bytes .../Magazine/Pistol/smg_mag.rsi/meta.json | 3 - .../Magazine/Pistol/smg_mag.rsi/rubber.png | Bin 230 -> 0 bytes .../Magnum/magnum_speed_loader.rsi/meta.json | 18 ---- .../magnum_speed_loader.rsi/rubber-1.png | Bin 171 -> 0 bytes .../magnum_speed_loader.rsi/rubber-2.png | Bin 173 -> 0 bytes .../magnum_speed_loader.rsi/rubber-3.png | Bin 174 -> 0 bytes .../magnum_speed_loader.rsi/rubber-4.png | Bin 177 -> 0 bytes .../magnum_speed_loader.rsi/rubber-5.png | Bin 186 -> 0 bytes .../magnum_speed_loader.rsi/rubber-6.png | Bin 188 -> 0 bytes .../Pistol/pistol_speed_loader.rsi/meta.json | 18 ---- .../pistol_speed_loader.rsi/rubber-1.png | Bin 2252 -> 0 bytes .../pistol_speed_loader.rsi/rubber-2.png | Bin 2376 -> 0 bytes .../pistol_speed_loader.rsi/rubber-3.png | Bin 2569 -> 0 bytes .../pistol_speed_loader.rsi/rubber-4.png | Bin 2621 -> 0 bytes .../pistol_speed_loader.rsi/rubber-5.png | Bin 2574 -> 0 bytes .../pistol_speed_loader.rsi/rubber-6.png | Bin 2573 -> 0 bytes Resources/migration.yml | 1 - 438 files changed, 197 insertions(+), 409 deletions(-) delete mode 100644 Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/black.rsi/closed.png create mode 100644 Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/black.rsi/icon.png delete mode 100644 Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/black.rsi/open.png delete mode 100644 Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/blue.rsi/closed.png create mode 100644 Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/blue.rsi/icon.png delete mode 100644 Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/blue.rsi/open.png delete mode 100644 Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/green.rsi/closed.png create mode 100644 Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/green.rsi/icon.png delete mode 100644 Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/green.rsi/open.png delete mode 100644 Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/mixed.rsi/closed.png create mode 100644 Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/mixed.rsi/icon.png delete mode 100644 Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/mixed.rsi/open.png delete mode 100644 Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/red.rsi/closed.png create mode 100644 Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/red.rsi/icon.png delete mode 100644 Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/red.rsi/open.png delete mode 100644 Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/purplekit-inhand-left.png delete mode 100644 Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/purplekit-inhand-right.png delete mode 100644 Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/purplekit.png delete mode 100644 Resources/Textures/Objects/Storage/Happyhonk/clown.rsi/box-open.png delete mode 100644 Resources/Textures/Objects/Storage/Happyhonk/cluwne.rsi/box-open.png delete mode 100644 Resources/Textures/Objects/Storage/Happyhonk/mime.rsi/box-open.png delete mode 100644 Resources/Textures/Objects/Storage/Happyhonk/nukie.rsi/box-open.png delete mode 100644 Resources/Textures/Objects/Storage/boxes.rsi/box_id.png delete mode 100644 Resources/Textures/Objects/Storage/boxes.rsi/box_olive.png delete mode 100644 Resources/Textures/Objects/Storage/boxes.rsi/shellbeanbag.png delete mode 100644 Resources/Textures/Objects/Storage/boxes.rsi/shellflare.png delete mode 100644 Resources/Textures/Objects/Storage/boxes.rsi/shellflash.png delete mode 100644 Resources/Textures/Objects/Storage/boxes.rsi/shellincendiary.png delete mode 100644 Resources/Textures/Objects/Storage/boxes.rsi/shelllethal.png delete mode 100644 Resources/Textures/Objects/Storage/boxes.rsi/shellpractice.png delete mode 100644 Resources/Textures/Objects/Storage/boxes.rsi/shellslug.png delete mode 100644 Resources/Textures/Objects/Storage/boxes.rsi/shelltranquilizer.png delete mode 100644 Resources/Textures/Objects/Storage/boxes.rsi/shelluranium.png delete mode 100644 Resources/Textures/Objects/Storage/donkpocket.rsi/icon.png delete mode 100644 Resources/Textures/Objects/Storage/donkpocket.rsi/inhand-left.png delete mode 100644 Resources/Textures/Objects/Storage/donkpocket.rsi/inhand-right.png delete mode 100644 Resources/Textures/Objects/Storage/donkpocket.rsi/meta.json delete mode 100644 Resources/Textures/Objects/Tools/Cowtools/cow_toolbox.rsi/icon-open.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/base-b.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-1.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-2.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-3.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/base-10x24.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/base-b.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-1.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-2.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-3.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-1.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-2.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-3.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/rubber-b.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/rubber.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/base-b.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-1.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-2.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-3.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/rubber.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/cap.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-cap-1.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-cap-2.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-cap-3.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/rubber.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/rubber.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/base-b.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/base-big.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-big-1.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-big-2.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-big-3.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-1.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-2.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-3.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/practice-b.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/rubber.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-alt-1.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-alt-2.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-alt-3.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-alt-4.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-beanbag-1.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-beanbag-2.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-beanbag-3.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-beanbag-4.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-flare-1.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-flare-2.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-flare-3.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-flare-4.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-incend-1.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-incend-2.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-incend-3.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-incend-4.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-practice-1.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-practice-2.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-practice-3.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-practice-4.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-slug-1.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-slug-2.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-slug-3.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-slug-4.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-tranq-1.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-tranq-2.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-tranq-3.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-tranq-4.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-uranium-1.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-uranium-2.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-uranium-3.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-uranium-4.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/CaselessRifle/caseless_pistol_mag.rsi/rubber.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/CaselessRifle/caseless_rifle_mag.rsi/rubber.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/CaselessRifle/caseless_rifle_mag_short.rsi/rubber.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/LightRifle/light_rifle_mag.rsi/rubber.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Magnum/magnum_smg_mag.rsi/rubber.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi/rubber.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/rubber.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/smg_mag.rsi/rubber.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Magnum/magnum_speed_loader.rsi/rubber-1.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Magnum/magnum_speed_loader.rsi/rubber-2.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Magnum/magnum_speed_loader.rsi/rubber-3.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Magnum/magnum_speed_loader.rsi/rubber-4.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Magnum/magnum_speed_loader.rsi/rubber-5.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Magnum/magnum_speed_loader.rsi/rubber-6.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Pistol/pistol_speed_loader.rsi/rubber-1.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Pistol/pistol_speed_loader.rsi/rubber-2.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Pistol/pistol_speed_loader.rsi/rubber-3.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Pistol/pistol_speed_loader.rsi/rubber-4.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Pistol/pistol_speed_loader.rsi/rubber-5.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Pistol/pistol_speed_loader.rsi/rubber-6.png diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_service.yml b/Resources/Prototypes/Catalog/Cargo/cargo_service.yml index 42b4453573..ac7f02bd22 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_service.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_service.yml @@ -52,7 +52,7 @@ id: ServiceSmokeables icon: sprite: Objects/Consumable/Smokeables/Cigarettes/Cartons/green.rsi - state: closed + state: icon product: CrateServiceSmokeables cost: 1500 category: cargoproduct-category-name-service @@ -62,7 +62,7 @@ id: ServiceCustomSmokable icon: sprite: Objects/Consumable/Smokeables/Cigarettes/Cartons/green.rsi - state: closed + state: icon product: CrateServiceCustomSmokable cost: 1000 category: cargoproduct-category-name-service diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/general.yml b/Resources/Prototypes/Catalog/Fills/Boxes/general.yml index 7c515eafac..f5ba7b65f9 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/general.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/general.yml @@ -188,7 +188,7 @@ - id: FoodCondimentPacketKetchup - type: Sprite layers: - - state: box_olive + - state: box - state: writing - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml index 236cf6f27f..fe690d8bd1 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml @@ -493,9 +493,6 @@ state: box layers: - state: box - map: ["closeLayer"] - - state: box-open - map: ["openLayer"] - type: Item sprite: Objects/Storage/Happyhonk/clown.rsi heldPrefix: box diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cartons.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cartons.yml index 6dcb627652..869cb34180 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cartons.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cartons.yml @@ -6,11 +6,7 @@ components: - type: Sprite sprite: Objects/Consumable/Smokeables/Cigarettes/Cartons/green.rsi - layers: - - state: closed - map: ["closeLayer"] - - state: open - map: ["openLayer"] + state: icon - type: Item sprite: Objects/Consumable/Smokeables/Cigarettes/Cartons/green.rsi size: Normal @@ -37,8 +33,7 @@ components: - type: Sprite sprite: Objects/Consumable/Smokeables/Cigarettes/Cartons/red.rsi - layers: - - state: closed + state: icon - type: Item sprite: Objects/Consumable/Smokeables/Cigarettes/Cartons/red.rsi - type: StorageFill @@ -54,8 +49,7 @@ components: - type: Sprite sprite: Objects/Consumable/Smokeables/Cigarettes/Cartons/blue.rsi - layers: - - state: closed + state: icon - type: Item sprite: Objects/Consumable/Smokeables/Cigarettes/Cartons/blue.rsi - type: StorageFill @@ -71,8 +65,7 @@ components: - type: Sprite sprite: Objects/Consumable/Smokeables/Cigarettes/Cartons/black.rsi - layers: - - state: closed + state: icon - type: Item sprite: Objects/Consumable/Smokeables/Cigarettes/Cartons/black.rsi - type: StorageFill @@ -88,8 +81,7 @@ components: - type: Sprite sprite: Objects/Consumable/Smokeables/Cigarettes/Cartons/mixed.rsi - layers: - - state: closed + state: icon - type: Item sprite: Objects/Consumable/Smokeables/Cigarettes/Cartons/mixed.rsi - type: StorageFill 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 8fe03f3c6e..ab071c7a18 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/antimateriel.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/antimateriel.yml @@ -25,26 +25,6 @@ - type: Appearance # Boxes -- type: entity - parent: BaseMagazineBoxAntiMateriel - id: MagazineBoxAntiMaterielBig - name: ammunition box (.60 anti-materiel) - components: - - type: BallisticAmmoProvider - capacity: 30 - proto: CartridgeAntiMateriel - - type: Sprite - layers: - - state: base-b - map: ["enum.GunVisualLayers.Base"] - - state: magb-1 - map: ["enum.GunVisualLayers.Mag"] - - type: MagazineVisuals - magState: magb - steps: 4 - zeroVisible: false - - type: Appearance - - type: entity parent: BaseMagazineBoxAntiMateriel id: MagazineBoxAntiMateriel 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 3af2b7affb..89ac57e9f6 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 @@ -25,46 +25,6 @@ - type: Appearance # Boxes -- type: entity - parent: BaseMagazineBoxCaselessRifle - id: MagazineBoxCaselessRifle10x24 - name: ammunition box (.25 caseless) - components: - - type: BallisticAmmoProvider - capacity: 200 - proto: CartridgeCaselessRifle - - type: Sprite - layers: - - state: base-10x24 - map: ["enum.GunVisualLayers.Base"] - - state: mag10-1 - map: ["enum.GunVisualLayers.Mag"] - - type: MagazineVisuals - magState: mag10 - steps: 4 - zeroVisible: false - - type: Appearance - -- type: entity - parent: BaseMagazineBoxCaselessRifle - id: MagazineBoxCaselessRifleBig - name: ammunition box (.25 caseless) - components: - - type: BallisticAmmoProvider - capacity: 200 - proto: CartridgeCaselessRifle - - type: Sprite - layers: - - state: base-b - map: ["enum.GunVisualLayers.Base"] - - state: magb-1 - map: ["enum.GunVisualLayers.Mag"] - - type: MagazineVisuals - magState: magb - steps: 4 - zeroVisible: false - - type: Appearance - - type: entity parent: BaseMagazineBoxCaselessRifle id: MagazineBoxCaselessRifle 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 bcd56c1d64..96e9222306 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 @@ -29,21 +29,17 @@ parent: BaseMagazineBoxLightRifle id: MagazineBoxLightRifleBig name: ammunition box (.30 rifle) + suffix: Big components: - type: BallisticAmmoProvider capacity: 200 proto: CartridgeLightRifle - type: Sprite layers: - - state: base-b + - state: base map: ["enum.GunVisualLayers.Base"] - - state: magb-1 + - state: mag-1 map: ["enum.GunVisualLayers.Mag"] - - type: MagazineVisuals - magState: magb - steps: 4 - zeroVisible: false - - type: Appearance - type: entity parent: BaseMagazineBoxLightRifle 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 98e063e297..e631b9849a 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml @@ -28,18 +28,19 @@ parent: BaseMagazineBoxRifle id: MagazineBoxRifleBig name: ammunition box (.20 rifle) + suffix: Big components: - type: BallisticAmmoProvider capacity: 200 proto: CartridgeRifle - type: Sprite layers: - - state: base-b + - state: base-big map: ["enum.GunVisualLayers.Base"] - - state: magb-1 + - state: mag-big-1 map: ["enum.GunVisualLayers.Mag"] - type: MagazineVisuals - magState: magb + magState: mag-big steps: 4 zeroVisible: false - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.yml index e5c2987ec3..a26ef19c81 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.yml @@ -38,11 +38,15 @@ components: - type: BallisticAmmoProvider proto: ShellShotgunBeanbag + - type: MagazineVisuals + magState: mag-beanbag + steps: 5 + zeroVisible: false - type: Sprite layers: - state: base map: ["enum.GunVisualLayers.Base"] - - state: mag-1 + - state: mag-beanbag-1 map: ["enum.GunVisualLayers.Mag"] - state: beanbag @@ -69,14 +73,14 @@ - type: BallisticAmmoProvider proto: ShellShotgunSlug - type: MagazineVisuals - magState: mag-alt + magState: mag-slug steps: 5 zeroVisible: false - type: Sprite layers: - state: base map: ["enum.GunVisualLayers.Base"] - - state: mag-alt-1 + - state: mag-slug-1 map: ["enum.GunVisualLayers.Mag"] - state: slug @@ -87,11 +91,15 @@ components: - type: BallisticAmmoProvider proto: ShellShotgunFlare + - type: MagazineVisuals + magState: mag-flare + steps: 5 + zeroVisible: false - type: Sprite layers: - state: base map: ["enum.GunVisualLayers.Base"] - - state: mag-1 + - state: mag-flare-1 map: ["enum.GunVisualLayers.Mag"] - state: flare @@ -102,11 +110,15 @@ components: - type: BallisticAmmoProvider proto: ShellShotgunIncendiary + - type: MagazineVisuals + magState: mag-incend + steps: 5 + zeroVisible: false - type: Sprite layers: - state: base map: ["enum.GunVisualLayers.Base"] - - state: mag-1 + - state: mag-incend-1 map: ["enum.GunVisualLayers.Mag"] - state: incendiary @@ -118,14 +130,14 @@ - type: BallisticAmmoProvider proto: ShellShotgunUranium - type: MagazineVisuals - magState: mag-alt + magState: mag-uranium steps: 5 zeroVisible: false - type: Sprite layers: - state: base map: ["enum.GunVisualLayers.Base"] - - state: mag-alt-1 + - state: mag-uranium-1 map: ["enum.GunVisualLayers.Mag"] - state: uranium @@ -136,11 +148,15 @@ components: - type: BallisticAmmoProvider proto: ShellShotgunPractice + - type: MagazineVisuals + magState: mag-practice + steps: 5 + zeroVisible: false - type: Sprite layers: - state: base map: ["enum.GunVisualLayers.Base"] - - state: mag-1 + - state: mag-practice-1 map: ["enum.GunVisualLayers.Mag"] - state: practice @@ -151,10 +167,14 @@ components: - type: BallisticAmmoProvider proto: ShellTranquilizer + - type: MagazineVisuals + magState: mag-tranq + steps: 5 + zeroVisible: false - type: Sprite layers: - state: base map: ["enum.GunVisualLayers.Base"] - - state: mag-1 + - state: mag-tranq-1 map: ["enum.GunVisualLayers.Mag"] - state: tranquilizer diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/toy.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/toy.yml index 11649f3db3..e917461095 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/toy.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/toy.yml @@ -39,11 +39,15 @@ - type: BallisticAmmoProvider proto: CartridgeCap capacity: 20 + - type: MagazineVisuals + magState: mag-cap + steps: 4 + zeroVisible: false - type: Sprite sprite: Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi layers: - - state: capbase + - state: base map: ["enum.GunVisualLayers.Base"] - - state: mag-1 + - state: mag-cap-1 map: ["enum.GunVisualLayers.Mag"] - - state: cap + - state: capbase diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml index bd85e2691b..1853962544 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml @@ -241,20 +241,6 @@ - state: mag-1 map: ["enum.GunVisualLayers.Mag"] -- type: entity - id: MagazinePistolHighCapacityRubber - name: machine pistol magazine (.35 auto rubber) - parent: BaseMagazinePistolHighCapacity - components: - - type: BallisticAmmoProvider - proto: CartridgePistol - - type: Sprite - layers: - - state: rubber - map: ["enum.GunVisualLayers.Base"] - - state: mag-1 - map: ["enum.GunVisualLayers.Mag"] - - type: entity id: MagazinePistolSubMachineGun name: SMG magazine (.35 auto) diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/donkpocket.rsi/banana-box.png b/Resources/Textures/Objects/Consumable/Food/Baked/donkpocket.rsi/banana-box.png index f8064c8a1e3bd23cf9c2e9ccb20e9aebf6c43d5b..25c2a7f538f03edc6b5ee9f05b6c00314e6bb8cd 100644 GIT binary patch delta 466 zcmV;@0WJRh1nUEkBYyw^b5ch_0Itp)=>Px$rAb6VR9J=Wls!uvQ51%s86>!~t|NmV z$s!Ee2q^-h!fLx9SU8=*O1mHu|A4hWARr`ZSKLDEHbg5cLBx+@?XKvC0o~OUlbzL_ zEEY4V94rER2NrDZQ{9i3^S+mRIG|7{6t9eyMC=R`CDE5|+JD!V4&V$E%}fqTn;)J1 zmI~1&Yi?Txx0OdJbJq)`bkYF;rg9ej<8$=A8>4#sm27U6dQHT8!_LR+t?dfE-Q6@= zt+sV_8FSk*FswHKTM&h!Al=AqBQ$8@~67rq0~2XOugfaTGULPfS>f&e|^ z1MIB7r?64RF&_YMoOz;1L(?MM&rJYIeg-oo^{X+7)MiSjA$PuVlALo5pBO6e(Uxi{Qtp6p=#k zgW8+m$%Fm_9{fWDJ$UrwQ7=XOC|2U7AQ9AyqGGU>*48%BCgx+in;8$qQc>AWQpqL1 z%giz_zxR2Wd1qGSayhywt*hC406l;nKo0;gfznpB-6xPNvhCprQE=+ofL^dW}M zoduvaKZi4sC1H=SJa_Al`Rb#`%-&z5Duca4Z$Z4@AYqSeC$G)V0pLtzw_|?IkM)$5xsrY~y+Hj{T8y**KKIm)J|!^b{go8j;;x+O~LaGjcUcjYX-T8 z0I=gGg9(FENr@%48bSz2UA)b)Xaqxpa@}Lkvnv4f>57wslC`pdw_Ar$DX1$!)0eoe zPsz-(X*moYtk8d;%4Wo-WSz!s_%wY!GCMdWa*nntE zi0P9a9Yv*&Qm?u!efN0fnW3tOkoN$9s{|k71FSFC#iUS}x`lIh1)387vW2fHW;gm6 z%0!VZTwUQC7LY(PW0U{9fc%(e-}xz!inT(X7mEe{3?0XPPMfB?wt79*fU%%&KoXt>HbWr* zHw>U-+W@3Zla6gObR3>06a1W(=nCqfc2g-HULH9-C{XAQ*t>jn-@m_&J@u>6h(6yZ zAQ?oFKr3vh^M6&8ilO?^plXE;6*xAPQOYdT>!5Z(NxmA<70lQO8VsgE*e2FNGMx)Va{(>(mLlTQh1ce&{00000NkvXXu0mjf DKH9RU delta 355 zcmV-p0i6D*1M>oq8Gi!+002a!ipBr{0De$RR7JqRz%T#+JOBWn7Z=WCWUw3@4GoYI z63%pVybJ*84+H-a0O~Fy(+>f*3jygxJKYTcz6}MC3IW-%005v= zRQU%B=l}o!0d!JMQvg8b*k%9#0HaAnK~y-6?aa#(f-np~QG^DB6y>E*9tA}d|NjTA zt|*DFT)6P2Gwn>z#Bu(8xy>pHTu%rP{_A)y2f+M*FN8V3fM9DC5D-QvQO3J{Y%YvK z0+KZIvb;DPi(K41(u9Dr0)=(cc1?{6s*(W;r0xfO(h?L4o*VkM)1NlrxoUM^>*U=;zs+ynb^6>8SP0LB0S002ovPDHLkV1hnR Bg!BLa diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/donkpocket.rsi/box.png b/Resources/Textures/Objects/Consumable/Food/Baked/donkpocket.rsi/box.png index c84d483006f82ba29d72845ff3f6fb0f2990a300..23898baeec77fc8d42bb106fa58910b55a2ca5ee 100644 GIT binary patch delta 460 zcmV;-0W7GK(XZ!sLWBH&XTLA%)wrS|C zuk+ZpEAw_-#0PQAM)d0S;`Ee$Q2_Ac@)Cf4Q7{>g(Phb#wG86e^=Lw(<( zO!glQ2!S#gSJw^mU(Zx^&DZ0Ks;;@ZZcrve3BhnQ@)i5Oln2c|CbIwn?C?PmM zF(}@|by)&94Ip@I!oxiGTEm~GQ?E522m}IwcjGtD%9IRwbwWx200008Gi!+002a!ipBr{08~&+R7JqRz&;QVM-mc}D=W5TWuGrE#*Bo rk^!<5*k4Jz0v<a<7{!0e5{P7ps9+67 zh_Mx71f{Z63l&<-(O&#V1+Ri9v0fz&z1re2y|+Sp^dhuGK`4QMHK+&;YQTtTpeyPI zmxQHyC@kdU3O2=l0`k&V@DUcPxsI(NK{R9a4qj)tR0O@bPi5TIUdBg~l|5XCOtN94|qg>gh(8Giqu$?jonKA%Y z;}H2=fl9?9oqvOtrZBd1%9GY2r#+F%lr(yI@yR*#B7ZP!Y%I0V30QI6m z+bQ#Ge2#eHzjBlZ`&||`qlvdN@sZ9 zFEjO_$m151KZh3pnAPI_Zo9pnpY?k3dMtQ3-W@AMM}PnqW}N^07*qo IM6N<$f&&iV`2YX_ delta 466 zcmV;@0WJRQ1MCBkB!3BTNLh0L01FZT01FZU(%pXi0004=NklZ+|{B zY`Hm?vM69?VqsumVrAgx5GKj;k3Zgm^%4RERdBFyGOzi1+6e4(nD0TrTRx59>z8i~>Rv+d5Fi$?kQxFYT0vY5oDLX%K+=Jlv>sSZ zcgQ-Da|#P7A%F}(=>Q-2@%t-v9q|79OPbULL^(iR*h_>g!_U3kOC1LgV-U?k;M1=+ z3}T$}WEuYI`$K9t;2i@Wn+RDB0O_Sl6g>HIYqaGw3WhHL0Oy~Bv0)9)!2kdN07*qo IM6N<$g6l=h`~Uy| diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/donkpocket.rsi/dink-box.png b/Resources/Textures/Objects/Consumable/Food/Baked/donkpocket.rsi/dink-box.png index eba69a81bdf21227ea852946a9fdff069a189ac9..89fa566daa1cc5bc1ca650dc690f6556d95db38a 100644 GIT binary patch delta 466 zcmV;@0WJQk1K|UZ8Gi-<0047(dh`GQ00DDSM?wIu&K&6g00EmxL_t(oh3%BROCwPf zN6#3+m@z5*Vz5Y*K`aD6kQi*X*vd8wfrx*C5Um98)DcFl?A@dB zjCU?o2Iv{;;qm_Q&3C&*!c|?RH~c)w($8h0@eBZeFLwZl#xpq9E=H}4-E>iPu}KLF z0N72JzHbo*e}AmwSi2nTr?HzZ2m9$)b-xG;%w;!-1S3R(&tb8t0KH*_*i_(E{bf=g zF7QH#5L!?pTZ%C})6R1}^ScM#> zV-g~SVieg5Zlf4QOvmKvFhjlCA(cAvB@hs4>Ywk=j!T69(Ry%E%yT;9vz*w+)T>;25xOm;e9(07*qo IM6N<$f(~%stpET3 literal 427 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|CI|S0xE?rg zz)nEGT}Wt>w)VEv)cN}Q$9j6=BqeiXWs{_(3+3h8)YWt3<*SvIbM=MGl$G1n)w=^^ z=SM14x=Kw9k~=v`bAGJc^?9cIEiDseWt-I0e8t79_p*k!uqu}+%O%Q5he=C#NVsfw zQLk5*iIDN!?&-Y9x$%4Bjh{DW{-4?MvE^-=+MBuM&kC(_m$C<63-15lFR6S=8R$I2 zk|4iehW{jjR|1c&0X27ex;Tbd^uE1h$ah$Q$Khhkkr@drMxHwF>UUY)m60xed0}CE zN2_{cL+ebJq3#Jon6T9Zt-$wA-+e+Rvvbs*(^Ifw z)?@fQ!LX8b$!D8&lOx3*h#j{qnJpTyF#W<;i5W}*K8zd0Upj8xqzmA{?3mCvj>CY%v@QTpA3;z;Fs{%+{#UFqfvFO&Wq48bWc98q6VdXle9_KU}1HcuI7!nYE13$6)r|7=C zV|#5e_Nn3sO%e^-28kL>0HETtQ0the_$-4)00ytXyS~rC-kQFi2a1I@#X?*E_jr6~ zNI>`m?3QV&&o{Wj5q$tX-wBf!ty~7+dS&BxJK?U?Y9pu(Z)%#MHZPG#B$9vQ3;!5* UnU*|kVE_OC07*qoM6N<$g3l$oAOHXW delta 309 zcmV-50m}Zl1H}T68Gi!+002a!ipBr{0ANr|R7JqRzte${#005gnK!OAWt!!+9 z4i1MA5rYsA*wV4Y!H$O#66WH{*w4F|VJeCh75~0H?QJ0DU?$vC7U8Eeyb+e8`ZQy|NhG1}3+gAoyZ4Gkl6JKX>P00DGTPE!Ct=6~2`0001!NklerXO7@ zMWY2!U85=nY6EYXnt{f;mU7PRmu(p6phdj(-us>$bRrmVoTd@)cm@#X5a!450W2Xb z^vK}3FB$0I$u15@0f4?i0wziTNerwIwKA~TsEvap27b90iYX3D$|(t800000NkvXX Hu0mjf+IoSF diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/donkpocket.rsi/spicy-box.png b/Resources/Textures/Objects/Consumable/Food/Baked/donkpocket.rsi/spicy-box.png index fc539e9bf44c05dd7001cb490f29278c3cdea6e8..ceb45b7a45afb5e94ced18bf90c79cf12df314e6 100644 GIT binary patch delta 434 zcmV;j0Zsnn0>J~28Gi-<0047(dh`GQ00DDSM?wIu&K&6g00DbRL_t(oh3%9vNCHt9 z$A2f{q);MAL$uvcQQ;B@K}1LpE{2OiAVEb9VUEpC5zf&`6#xjV#%bjXwCfd2%c&Pds5Gr%hrD3E!;}w93leJqvZpQf!jQl13z`<( zy~302bl|rc5P#|bIN{6wQEDA0>^#>ZH6P)o?40!oN(`!$z?2WJ+6_{hK58B3U(+!9 zf|gvcw18>B#vK+>j};9zyJUM07*qoM6N<$f@*QV>Hq)$ delta 339 zcmV-Z0j&PP1LFda8Gi!+002a!ipBr{0De$RR7JqRz$O3yG5`Rj4FJ$?RlE}b;+T(8 z003nG09OD2Yybd`1^@s+0D1uc|7#R;0RWH&0NEHF|3*g10094O4deg-^hyBGEdt<7 zNdN!;fB*phn*jHCWAuCg|9}L<008e{0Qt06d)nz>9(Y l<0Wbdc0^b9W8Gi-<0047(dh`GQ00DDSM?wIu&K&6g00EgvL_t(oh3%A0C`3^d z$A8SkLTyrD>Y%EG<}2RxIposae@jV_`RTl3r>Q8)aiLO3mbB zGBFkpqsR0-PprJMa-YcN{_1q^t>1_xndd1&{0AW(YeGO z065=UrpuS%e1C6*oxnT*$=y2uRAmaTU`B!AhehF z89LhyVf*Jl3249!Nl>pUuc)B=-SoFRQC)b?XD5n;1M@{an^LB{Ts5Hff}& diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/donkpocket.rsi/teriyaki-box.png b/Resources/Textures/Objects/Consumable/Food/Baked/donkpocket.rsi/teriyaki-box.png index 3585f3f569d4bebd68225beefcb2ba8730bd1f22..750a1c23c71d19ea15b9f3a532cd57413e33266f 100644 GIT binary patch delta 340 zcmV-a0jvK00ptRZ8Gi-<0047(dh`GQ00DDSM?wIu&K&6g00ACJL_t(oh3%9vO9L?! z$A5}b20iE$p@nYQ4sOk$>wScNGrvJ+U2d&|YZe!`fjnpMc75ylPIZ{ss$d# z`D9{GVqsu;BYWE~ncvfK{{y&2DsZX=stN$CI++&+yo2W`!#f$7rr@F$8OV4C>mWi6 zh9Q&*{ziQXGfhJmc!JGLoy(cZt`a&sE%lEdEyu@~;WH3kU@- mp)Y)fUkac3N~Kb%oQ-eYdQj8;9`zXj0000pj!(hLlG z3=AF&3}svl)(i}$3=EzO3{ngX&I}BU3=BbP=KMfyj3q&S!3+-1ZlnP@Wu7jMAr`%F z&shpJDDXH0o@LVNuKIsk>V;F%($>~`qks==GnS?8pFX=?hM}Y74ttD4kyDR`GapBw zC{M(-wNr!cUpv|`L(#J%w^fE$BlMpG&jB8vtv?zXrFO9w-I`wg;SJ|h=1Hd*o!Q>B lXPG~^B0fiqNAkl{y@m!(uQQK|Hv*l&;OXk;vd$@?2>@4#O$Gn} diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/donut.rsi/box-open.png b/Resources/Textures/Objects/Consumable/Food/Baked/donut.rsi/box-open.png index c6f6d44f174d59fab5b0a6a5642d1e071ee9c206..e0285dc941f888ca7581a3902f36f7eeac938515 100644 GIT binary patch delta 348 zcmV-i0i*uI0`>xsBYyw^b5ch_0Itp)=>Px$FiAu~R9J=Wmc4DnAQ*<nl5DG3TlDU%^u>v#cs0V$AUAEKCIuFUg{q9_2*-^2GI uF~cwc83BYy!3NklwPRiY@uKL02}QT!xJmhrv!37>2LC#Ritpf(^PH#P73p7fWBF~$** z-MNMC4hP!8A?U@IeqjRaN9)I8jEv?`wza)PIoxHV`U0e$Dw;0E7*K zh}`o$>wtNlrHv@l)HD zH3m?rCoiJ1EH~G~FnrC2VbDa=0Jxmbo9pkPqCNL@B>~7LypE#~>^XGmKBe>)sG6Bb v_Ehq&>#PH!C?b;PNCB+V)pDGioc>%7@qc)d4>jbT00000NkvXXu0mjfP6CE4 diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/donut.rsi/box.png b/Resources/Textures/Objects/Consumable/Food/Baked/donut.rsi/box.png index f1a41cf55ba82f03e86f18e90d5cb25f6b4841e0..4710baadb865b0695c235654f527b0e19a473d0d 100644 GIT binary patch delta 301 zcmV+|0n+~U0muT7B!2;OQb$4nuFf3k00033Nkl5YiTyzQOmygzkTm6m=cNz|1OkD;mzj+P zh^YUR%v$^8n~%w>suGLSG-c1R1&F9W?Dt~%YQ2Ur26>*pUVngydZiRLStgP@=U|K( z%&;r4+ipd2;QI7Y6rt-nHuER82=Ny9#PV;l3`(id9Qz8i)}j(xYZOKCegOa|%hEd^ z$MJpKG|j|n6ACOB3-A1+l*^pX=lj?>2Wzc2H~10$ACGLY+cD)jAA>6}^=3ZWwndU8 z0Q1}D_JY2yYbKExz)d{l;R}fEAKy0VA#eFf}#(FD52NarnG?^@`#2 z>C-svVZo<)`LbmcJHXk+1+P34#Wqj~2CoA^@gEr#MUmkk{e;pH-ZU_4)+~w~0n(qA zmPWnsmUs4DY6rfq?-4ZxAY$ TyDmnt00000NkvXXu0mjfSs7ow diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/donut.rsi/box1.png b/Resources/Textures/Objects/Consumable/Food/Baked/donut.rsi/box1.png index 025fe8e3dac5006c4cb7dd5dc5f2d73a4c7ff216..137f8b119495d24bb25520a3544ab8a6b46e8e0a 100644 GIT binary patch delta 132 zcmbQlxR7yzN-bk?kh>GZx^prw85kI%JzX3_B3hFZBv=~oxNjivsw*Ov2WSn0r>mdKI;Vst05ke6w*UYD delta 117 zcmZ3;IEitBN?xR=i(^Q|oa6)v*2M`TJxzfITpybM2lyBtXz?#GZx^prw85kHMJzX3_B3hFZBv=k-d?^9UmYAA^Ps zFW)h+v9YzW-#+e0SJD4{qpO8)q{Jxy+g_mXdnz>lVMGZx^prw85kHMJY5_^B3hFZBv=r`?H#P{6VA?+~Zn=x~Q@$PF-w8D{sUOXQ8^Gmu bkb|8;b-sYR-1>|vpdAdJu6{1-oD!M<7I-Ur delta 118 zcmbQoIGJ&RN`925i(^Q|oa6)v*2M`TJxzfITql_SFPxEdz-1L%ZDHGgX&p%kH3^3s zCFKmv%*=zopr0N;Wrt^fc4 diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/donut.rsi/box4.png b/Resources/Textures/Objects/Consumable/Food/Baked/donut.rsi/box4.png index aa4b401e32308a0b771e2e3c129f623ff7e68356..a47f285299d2467695c3af047ada7c469f95fab0 100644 GIT binary patch delta 130 zcmbQtIG=HXN;P9~kh>GZx^prw85kHMJzX3_B3hFZBv=lv(O*_xkDXK3RNVZ~1fy5sQ_t+5!!@ g+zx6$%qd`CcrjnV{bPCPd7vc>p00i_>zopr07@`0rvLx| delta 118 zcmbQwIGJ&RN`925i(^Q|oa6)v*2M`TJxzfITpH~E7tYW*;L>^a*CU?)<`G5)J_ZdN zUcO^sV`FP$zb`4F6mGZx^prw85kHMJzX3_B3hFZBv=WI<>k3XbFR-tDnm{r-UW|U_3D# delta 118 zcmbQwIGJ&RN`925i(^Q|oa6)v*2M`TJxzfITr0T$IU8PV=!`OZ-EI8me!|HE1_v1q zE!)j30R(b2=?NVkyy~9(p|S^n;KS>eUmHsg>@Azopr059Dz0ssI2 diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/donut.rsi/box6.png b/Resources/Textures/Objects/Consumable/Food/Baked/donut.rsi/box6.png index 54cee84dddca00eb652f76a8e8922047ff946e90..e6bd50c9b278bfff41a5273d4055ce825a7e1392 100644 GIT binary patch delta 123 zcmbQpID>J5N(p0ekh>GZx^prw85kIXJY5_^B3hFZBv=a0g(ZaByCtpL_t(|obArB5kOE70MVrhnHES@LIYY6D@835sYDHCBwr#X zar2XXGnd`mEl83SCq473jQHGCq@{zo{oV};0N76$#y(#Fz;$eS1L|olBJWF*q+i^q W&JQ3OJsrc*^$ZE zg9TWC`qNO8G;Yv6$*oT|NRoam?|j-S%A=9=kUs5~#gqM5s+W9#6S(e@)l;Lfe7z(| a62JrVLKbiP9mAsl0000JQ5JOQzPn`wQhdCI6 z0a$~XXy~#5yD-3~VE`hXgam%lwYH^`%*^a#xbLw(s<|XVM&zdcm;oh;V?dg##$d^qD~QX zjh~b*k}XSSW@dG~*J`OeWe5ghpp4!Ur2?Pr?#!;s5bP%a^A@;P>6o;DnVFgW=>gI6 V72T!-+ur~H002ovPDHLkV1ke)G-dz* diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/donut.rsi/pink-box3.png b/Resources/Textures/Objects/Consumable/Food/Baked/donut.rsi/pink-box3.png index 53175f926389289a44605266d31956a867c2f1c5..d1af5c0b39402316d8cf5c29a4472bd32ec1fef1 100644 GIT binary patch delta 128 zcmV-`0Du3L0i6MmBzXaIQb$4nuFf3k00012Nkl%-< z9C$R0gXeZCh6%2Y{9p2H+dK&X@B{vC$dokKB73!LtCsN*g(V_?d0Du?1k`=ixR=3pv0000DfACl5*+%3);y0000-!`%M6o9l75QkKHI7fYXl%nvPMsdTKEL^gRb!M0!fnd>d3Bp7l5_} bBuSEPZfhPslz*2?00000NkvXXu0mjfKLIn# delta 113 zcmV-%0FM8b0geHXBx+SjL_t(|obA!E4S+xl1i=+ed;<`FakNP%#KcQN1K3C;HJg3`0?eA(()cc^T?T z+MD2(Fbyr~EK&R?rT$hV0Km`ry_l`7AC?{Mw{iO#@p}6K-7DSy9#FGN=N=yb008g+ X$W;)8mF&_C00000NkvXXu0mjfC37)G delta 102 zcmV-s0Ga=i0fPaMBwtENL_t(|obAz}4FDhvMA3#NSOCwu425G0mN*Q-0jdG3Z2$lO diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/black.rsi/closed.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/black.rsi/closed.png deleted file mode 100644 index a2d008910c65f9929541c4495c4b610f1ef97d13..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 269 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJE1oWnAr*6y6C_v{Cy4YkP2`if z$lA0x=zs9x2ifND6GivemFaiQ^|`X4N9cglnnRs?*GeS)JbG0n@|$+!)W(N8Gx-#* z8s$vetox%^vF~An^u>6MO&oa-ZNo(D%ua8#a!A(X50xo+`%HV$l|&1M=on$9DK7kO zW;LJwh(_ML@HfWJ>&3$K!+U1Au>nEb83$<*>rTIxmIHo^J9&8AX7Dve_HYNBWqiSR zv*wXl;H%D}hTl7D{)jzd5I-+i#uCVPAf3~0LH-iAY5M{VxZDnENJKI)d{eU6$8nHd Q73e<(Pgg&ebxsLQ0L{~9f&c&j diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/black.rsi/icon.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/black.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b39c84b1e64179cfbf7ee3f06b837da8d22b2ab6 GIT binary patch literal 349 zcmV-j0iyniP)Px$7fD1xR9J=Wl_6`xKp2MK!5}aQoI7_mW^i>If%>XW&I|&9bEPZ&4b^2Eb%8)( zX8&SxOf53r{eZlT!$uARyS~3|_-NWqLud+8eBu60kDNDvSSjfMMs6RAUAJ000000LDO=g z)KV4X?y0V8Rot7VX|fzwa)46Hn+d-FGqdh^vJiswvCrQs#(b!ZeUThs7>30-j<(xw z?9f(rz1>sa_p(F8812wjsOJF~nsR}^_ z(80lPIMFRlAN+p>40Z=#w3Gk<00000fXiZxwf79D*&p3MqqRqm5VNQ|+D5VUQZ zN8C3#=Vrw|dxVryBuOCzNvi9*4j#GE`|{&BdPRQXQoz3NLw_mdZP1)^H8Z7@?k>X2 zG|%(>L;k?!2}rjRj^mJY8`@)eNlGaVX66y~JC@?Klz0ssI20000006dI;f0FM# zLpQDeBm8;OG}W&qT=_@favtyD<4OK?@hewkxAS-ptxoa}htoL#0J!1>F>q@&bnCGY Q00000NkvXXt^-0~f-MqwaR2}S diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/black.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/black.rsi/inhand-right.png index 263f797355d36556de8c5472a55fe21f191b7925..1f4db596b35f6e1a451946e34646170eb23d844b 100644 GIT binary patch delta 262 zcmV+h0r~!u0-^$tB!2;OQb$4nuFf3k0002oNkl^9Y@s znM_PvIE4u(ATe?48N7x&BRdHR6E~=n4#p3vqOJaaQwN6E2TV@_00000003@E)6{)C z!@Es=9!`=Z_!6=#^UCK{fb@GM3@*SJ=(`$<6?gMPm5_T9}P1!004;H5fd(3(}N18Hvj+t M07*qoM6N<$f);phwg3PC delta 247 zcmZ3)G?{6FO8qTQ7srr_Id5<6 zD`frf`0_pey=&h4E&HXz!~h0+p3dnGPv3E6lg`F3s!yKmek%8FuXuLuNArcRcP*)j z=~|DCoPYuXx^o=kW3TNqG(& z3#0gFKaV{7L9wN_SSq>e-}~^WBB)gi46a`K9{wM{dtdkvmk@sYRHf{`OsTEhC-VHa vhyFD2&06&-d{cZ!#+p<7j;y>43|p!h!k(mOAN<)a0dlIRtDnm{r-UW|=@M^^ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/black.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/black.rsi/meta.json index 00190d8818..fb6ce03e39 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/black.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/black.rsi/meta.json @@ -1,17 +1,14 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/f18aa05685f13c8b424867e4219a1e727019c026", + "copyright": "Made by ps3moira (github)", "size": { "x": 32, "y": 32 }, "states": [ { - "name": "open" - }, - { - "name": "closed" + "name": "icon" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/black.rsi/open.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/black.rsi/open.png deleted file mode 100644 index be3e5ff1ee7d3b90f15c3355cf52ef952588a8e6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 340 zcmV-a0jvIrP)JKB8u?#iDGynO-H86eV0*%qfq{X6LElIXLq0Rm2E#rkvTVWuG?wx( zyuN#!;jqPShKuKJVaQKkf8;++9Y79XK^M?i%ENH&<~@oG)mo~=aPa0*hJ)M4Z~y}X z1A~^j5=9Om1z>dmHZZZb6+`?-Al7UBTd>I1SIfX@H4ik(cn`XqK%J8vh1%D zKLf)mG95swW!Nmo7A+VKFwhsF$RZfHfX2s_CNLau;o=*rH~^Q01Ra1at_cB3qK7KE zpwC~9VAR<~vNPC4vSWx7od^kmI0Y_-I0ZR|MGwBAL?bp!Y2pBMhin$VMU;A?9I)uY zH@p_&0vFE_b_7ulz-I|Qpl_r`mcCIi3P!;w7+C-S%l<7K>kr;%00000NkvXXu0mjf DGh$t5 diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/blue.rsi/icon.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/blue.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..cdfe3ff3b04d69b84e46bd12e5c641ee62ee35a5 GIT binary patch literal 353 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^T<(w;7kArY;~ z2@VN+Hp=@^Ujnh7RN=;1pxcvF^jv)67jF;Ln|KF@Q zB3V~c=e6bO{(XB=9tZ`c{rL7y?mOo$lfMLed%%-A> zt7p3ES;|`$y_atb$TMtAdP( s#hrG3o^O$@L(fxi7z7${NdN&u!gb#{(g%N}0>g~K)78&qol`;+0O?tcrT_o{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/blue.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/blue.rsi/inhand-left.png index 4022576f4edfba60105ff9c349c4386250237984..94b0334e81ba36e97afeb28eb43afc678dc7e399 100644 GIT binary patch delta 270 zcmV+p0rCEU0;vL!B!2;OQb$4nuFf3k0002vNklJ5a^F=#N)kjw?ApsO8OsUx1m}emk)^Eq|nst$(Zgty0E5Ne)mQ z*RAXMVCigW!@Osw^Tm~ADLcgdR@pG`sp9+@E#^*LzL~4c^hRCYcP;<`00000002NR zLY(Af6y>Gs@HeR@`Ct!FYmTPD45%tmlDRl7+;q3`vPuWR*CZd5zb+2|06z8rXsld} U_G%V|00000Ne4wvM6N<$f)U_$f&c&j delta 229 zcmZ3<)W|eJrT&Dci(^Q|oVPbO@-{p0v?fk&W6cw;I(E`;O)>Wdj=9=e!3!n_E#a(E z+x6r>+lF)gZO>*hGJwJKoz*qJdFNNHU`y4XZyGPuu-jeJ)$rBYLYd2lrm}2Uw>tNB z+ES6((%Q?lt~TII=-HiTzg($f@?E>N zyPFAOI0J*n=95EdjTY#q-Np5Lu^@s!0`a%CE7Hr90-Cr6bQmtZ}hf1^8cw5z2xhcR(%ox z000000I*embY+j7p=}+Phr7M=;7b@@&Ybc&6(Ie;5*in9mVaK`$NTYqi4N%PrIghC zcimZlF~$~EZIf)EbdqaRtyDhWo%}JUH%T`5Dxo!>C0yLz1pVntlDC}3nBZStiYF%k z000000001pOz0!&LBw8y^F01t40HK!oC_$b+WvHo)v4=+hvi&FRom&)Lg^&e`|CRB nx!jAG=5lYCp&9`IKx}FuGY;>TylJBdz$`2_4`Yil6o#rS5Wf(xr@tVb!3mB%yGeQ zwfm>Nann^b5mitM%ikks_k2%{bOD<$>y)5rRgdTK#d}3b&NjBqef56dt!-yr{U9bY zFg!T%hWVxLzkMyA3tk0&|IhgRWTeZP(;;>~dp~ZOwQ^OZywdLb4C{k`7Q`(pVqj<} Yk2@=u!fhPsEC({c)78&qol`;+0A`zCga7~l diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/blue.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/blue.rsi/meta.json index 00190d8818..fb6ce03e39 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/blue.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/blue.rsi/meta.json @@ -1,17 +1,14 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/f18aa05685f13c8b424867e4219a1e727019c026", + "copyright": "Made by ps3moira (github)", "size": { "x": 32, "y": 32 }, "states": [ { - "name": "open" - }, - { - "name": "closed" + "name": "icon" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/blue.rsi/open.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/blue.rsi/open.png deleted file mode 100644 index 78a710de7493102285d3c3dcc83157fbc5701c73..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 330 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=hEVFbaCQIEGZrNluVpU7R4oW02q? zo?-p(!T;9o{1ZlJ9O7FZUffp80|LL?vLrsuY&4VjW;iibn6KdBBk8vCOI18Yaeh4F z=kFexFn`~_6ZNyK8e|SM>49ahn|}*RdBMt-&h~8fC!Y4ae=2twK_)GdIwxY;AkuJ^ z@rJ|v{W5J47mvBCM1H&8IlnPcbS9s|Rim6~#_xZ3DE2*MV6GMH(rIes&Zx9_jRJX>pjtBg z1ZOWbDP-8?Y}TDDb~MF0;bL=sh3*m74OiJyEE(pj{$SW9RVdQa6llQZ#%RUB&}iZ6 V%C2t^L}*2^I<8Td&`^GLfes(&GZ-jYqQt7N}IMn8clC?IPH- z%b+^D4TyOP7YQpW3aC9eCGhOPfeo(?=S|5tlBVe^)9`M>S()t}LH<*iKO8mOXHxu8 zCedBsDMOKv8Z$F<^S+5vk-yvyYJgmw!pPunY%u$<_|exu4>5SU`njxgN@xNALit}0 diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/green.rsi/icon.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/green.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..9254f71366062c5ebb7a16c6784ca62ac2b3e4a0 GIT binary patch literal 369 zcmV-%0gnEOP)Px$D@jB_R9J=Wm9a-fQ5?rVJ#mM)Q+l3;GsYtxX^6DEDN-69Z4q~fw?tZ>*7t_e za_OuMr6KX?ABb8a;th|6lbc(KOIOtNTB;${{heOi<$R_yeEmLOzr#7;a5x+}GawCW zt$TkF1VQktV^Aueom;RHpR|ufxy%Au>z-1I&ef$@Zj3=Gg)yf80s!Ulidg2G0*U zY+$`S$;yESa@xRda)VzglA4IrM4WAfnNPjwFPK_ewf+Yra)-m=Z~(jkdb3tP+Ox}l P00000NkvXXu0mjf3o@Q7 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/green.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/green.rsi/inhand-left.png index 27f428832adebf4ece79e7412691ed49fd36c6eb..ff3c5b713f7d069b491a32728835d5174f1b4b81 100644 GIT binary patch delta 287 zcmV+)0pR}g0lET^B!2;OQb$4nuFf3k0002=NklsaYL~QG=lNLt{|@jm-@vQp zi2wiq00000ovEq|Jwq_6>drsE-WK39`)W;jUqkxL9$1DwPk+af=eg;i&9kb?!ZNmH zvVb&Aqr-kDtNFXcbtaST+KpzfW{arGLgG5Jit}gl@#w6}|IM|`^v1fp?_2-?00000 z004mAxcifQ=ox~s`j23G9uHyo^3*P&%K%3YTS02lzBT>xEfY8KKPWNQEb002ovPDHLkV1m`bi<|%e delta 215 zcmdnR^qFyjO8qWR7srr_Id5-mx6~5=8hDR(Wt_ zSj^*B`j_9Je!Kkc=}im}uzG6TjvtOsAe^nwNZ0n!obwl?3s&-Z5aF4qhQ-K6z%WlHF$;GeIbGBO;zopr0A@vCf&c&j diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/green.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/green.rsi/inhand-right.png index c4007a335518dc0ef3c13491aec63c07074ac743..e7778986039df47a04c9d88aee4ff745ee045237 100644 GIT binary patch delta 292 zcmV+<0o(rc0lxx}B!2;OQb$4nuFf3k0002_Nkl1FrM-N4QEJzZU@}&n|EW5dWq+Ce8x5XI^+CtOUPP)t z*ZRGIAdYmi+mVKv$YPqvZo82%3~Mjuw5FjZa+Kt~9}VJ257$e*nzfz%^$lw|gE(@2 zc@ckd0ssI2000000MEEwl77s;KZ5IZ`8}2Eabvh%UYBk4d)_W?JX~{|x_o?^%lS7E qrIgckxfMRusJ9@)`w*{))ca-!Z8Uk$^G?fCh zrZ|glIQjo;=e+rgO#E3Gz@Q>K>uCMl#3jz}nU8=CW))w~sPxfWX^jzSO+WkxpL%AGDPCif2uv&@0{eaPY*ZwKAnBSWNLoe_2bM84f{VZ)NbtCx-4kB P1xTN#tDnm{r-UW|SqxoC diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/green.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/green.rsi/meta.json index 00190d8818..fb6ce03e39 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/green.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/green.rsi/meta.json @@ -1,17 +1,14 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/f18aa05685f13c8b424867e4219a1e727019c026", + "copyright": "Made by ps3moira (github)", "size": { "x": 32, "y": 32 }, "states": [ { - "name": "open" - }, - { - "name": "closed" + "name": "icon" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/green.rsi/open.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/green.rsi/open.png deleted file mode 100644 index 14eb8b6ca8ce0265124d5da5a3352d0d64c53ff6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 320 zcmV-G0l)rV zmiNW`wtLRoIeQOKC=`FDksZv=i$nyG)H27^5iVl@K(B9*^XYg*^qNvi9}q!=YxfSr zYvXhb$@zS}Pkw4ZhE{eUf(Xw;TxqF5gy$p1WtSf%F#rJCpk2v88CU}xzU`6OWVkRiFNEwhRCcyuQ3WY+U$npZ~h)Sj( S#B06)0000mG8S%P&<`kE<^3+VU=DmO>S$ zCcXn=*SGY@t$M=L*ne8W;=jd%(8GtfwKlfra_7n%0D*s|ysMoHB7KVV6pkvs;mPE& z$=SXloX^HCuP4~=+9w^qoxg9(ta!{&GwlI$R~)+mYx?b;um-TB0~?qa9;O<4^=h42 Q3iK0$r>mdKI;Vst01EA9;{X5v diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/mixed.rsi/icon.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/mixed.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..1f9dd7aee8b100b645f8c38bf62ee4915a401bca GIT binary patch literal 479 zcmV<50U-W~P)Px$nMp)JR9J=Wl|4v8Q5c3F`=cPd7lLXLH>n^<2!|kWaj=ANu&G8vu;yqIYUpPR z6QnyuV*~|)LrWnPNI@WFBuKX!3K~=lqQwTWxCGsEEoeE~`Sko}&6a-)+uSIR%W0qymk5S@6x>13E+|aQ)>n6sV8};4z9f2`bpzMAO9mHKxys+w_q%I`wQ+70 zp(g+s8Xf`Qxp~c002ovPDHLkV1nTH(iZ># literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/mixed.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/mixed.rsi/inhand-left.png index ea9384ff290f7bd7b5912a1edb6b36941de03b42..4a9b516e20ec85b27ec3045814eacf6d30b14f58 100644 GIT binary patch delta 648 zcmV;30(brQ0iOksBYy#eX+uL$Nkc;*aB^>EX>4Tx04R}tkv&MmKpe$iQ^lecK|6>z zM5s=7Q4z;d#UfZJZG~1HOfLO`CJjl7i=*ILaPVWX>fqw6tAnc`2!4RLx;QDiNQwVT z3N2zhIPS;0dyl(!fY7Kg)$ED_s%9CfcudUZR>huI1Q5g^#(&T!F;h>Z7c=l2U-$6w z^)AA*ywCkP`jx!N0G~)4Wx8PzZxGLJS~}-_;t(rI3h_Ddq(K)Xe&o9B@*C%(!vfC? z8JW~PafnzfcCg&RtYoOfGsIy<)hJ)cx~y>C;;dF`taVTR!eCxoNpqd%DB@T`0!fIF zQ9~IOScuT7k$++$Mf))i|A^yHl1nC68H^kYs6vJ0_`(0+ceiF?ddf`-#(?e@+x{2_ zdUkuoK31Pp8g7uRh~-UBXofZ-=yG9*Xx(-aB? z;QfrgDF+PQ0=;W)Z>@ctJ^&f&YWW5@I0Pn&l)dip?tegMZ~vZY_4fmaQF5=6mejET z007oWL_t(|obB1M3Bphi#_`jHkTe;`!rm3KfVhM^q!C2n4Ui!m#03;ZORWSs8`Gr< zcRoY@zX6WBgLkj^L;wH)0001h-a-f(yN75(2wIng+X7Vef0x@1@71J!dDJ$s$`VbR zO4Fv&!+&~d+UP1vR8{qKxw$N0YEdM--jm&PA;)|!k0h76EY#{A%(i-W4O i`9T@=@Bjdyw+};wbU_+|#5({0002ovPDHLkU;%0IW$wK~#9!?b@*o!Y~j8&>$!)&2fiQM zD*W%EX>4Tx04R}tkv&MmKpe$iQ^lecK|6>z zM5s=7Q4z;d#UfZJZG~1HOfLO`CJjl7i=*ILaPVWX>fqw6tAnc`2!4RLx;QDiNQwVT z3N2zhIPS;0dyl(!fY7Kg)$ED_s%9CfcudUZR>huI1Q5g^#(&T!F;h>Z7c=l2U-$6w z^)AA*ywCkP`jx!N0G~)4Wx8PzZxGLJS~}-_;t(rI3h_Ddq(K)Xe&o9B@*C%(!vfC? z8JW~PafnzfcCg&RtYoOfGsIy<)hJ)cx~y>C;;dF`taVTR!eCxoNpqd%DB@T`0!fIF zQ9~IOScuT7k$++$Mf))i|A^yHl1nC68H^kYs6vJ0_`(0+ceiF?ddf`-#(?e@+x{2_ zdUkuoK31Pp8g7uRh~-UBXofZ-=yG9*Xx(-aB? z;QfrgDF+PQ0=;W)Z>@ctJ^&f&YWW5@I0Pn&l)dip?tegMZ~vZY_4fmaQF5=6mejET z007ZRL_t(|obB4N3Bo`a#qm!Q#55Vl!rm3KfVhM^TqB6W4Ui!m#03;ZORWTXHl`6I zf(g0P|E~_myGOcrW&i*H0002MTi$zhouN}M&lGwIlG@8BNuigZr^XN7%%@7rLTOoO zHb{akV0(8sNz%s|`*k09@8$ALmt<($;n-H!iTT^T_kGm%?2l&~E!WK*Sd|d+uU}~` zXAGA&izg=l000000001p3?qb5LKJTX8s+j#X7SABb!zAFSGikQY;$?zVw%fa^VgRL c002MX0g$D1LG@!ScmMzZ07*qoM6N<$f|o`qmjD0& delta 221 zcmV<303!dI1^5AwBYyw}VoOIv0Mr2X07OO3=nVh>0If+xK~#9!?b@*o!Y~j8&kZgt&Irp#niBv30000800000NkvXXu0mjfdR$@F diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/mixed.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/mixed.rsi/meta.json index 10a573f423..1afc0df758 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/mixed.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/mixed.rsi/meta.json @@ -1,17 +1,14 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/f18aa05685f13c8b424867e4219a1e727019c026", + "copyright": "Made by ps3moira (github)", "size": { "x": 32, "y": 32 }, "states": [ { - "name": "open" - }, - { - "name": "closed" + "name": "icon" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/mixed.rsi/open.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/mixed.rsi/open.png deleted file mode 100644 index fe7e45344181d4a78045b4c65721161537f3eb90..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 320 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7ltYZ5eDvKcP5$wMZS8v zIEF+VPEL?uU7R4oW02q?zGJPtW@rTYq_6?zKK>zhL1sZT&U}Sjh<#h4yQ{_9r0ATQR L^>bP0l+XkK$Vh>` diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/red.rsi/closed.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/red.rsi/closed.png deleted file mode 100644 index 79e47ba47b1803789ae748124385efd8bf0778ee..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 255 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJW1cRKAr*6y6C_v{Cy4YkP2`if z$eQ;v^3U?NgYNm=iK6~{_HiEdQ_G5Q<4jNtQ@no0S0d^DrN17V&P06`WjqPmXgwx+E0H_aG*u z>AF+QgGZK!`V>wv{?Iwd{-t-tPx$8A(JzR9J=Wl`(6=Kp2MK5)E-+NHE5BMF$S|B1)Cg&@<DIL-e7n(wq1|U-rKLAf6tyDqWQhj7Lx_a xC>CBqDFq>f_E%533#63B_W-4wVHk!1fCK5#Pw^JBor?ef002ovPDHLkV1jj9kdOcX literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/red.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/red.rsi/inhand-left.png index 683e37bb459ba44411f199541d26baed92580acb..c31e90a57ce67815b0426579a5bf9e6084eb42be 100644 GIT binary patch delta 672 zcmV;R0$=@w0=ET_BYy#eX+uL$Nkc;*aB^>EX>4Tx04R}tkv&MmKpe$iQ^lecK|6>z zM5s=7Q4z;d#UfZJZG~1HOfLO`CJjl7i=*ILaPVWX>fqw6tAnc`2!4RLx;QDiNQwVT z3N2zhIPS;0dyl(!fY7Kg)$ED_s%9CfcudUZR>huI1Q5g^#(&T!F;h>Z7c=l2U-$6w z^)AA*ywCkP`jx!N0G~)4Wx8PzZxGLJS~}-_;t(rI3h_Ddq(K)Xe&o9B@*C%(!vfC? z8JW~PafnzfcCg&RtYoOfGsIy<)hJ)cx~y>C;;dF`taVTR!eCxoNpqd%DB@T`0!fIF zQ9~IOScuT7k$++$Mf))i|A^yHl1nC68H^kYs6vJ0_`(0+ceiF?ddf`-#(?e@+x{2_ zdUkuoK31Pp8g7uRh~-UBXofZ-=yG9*Xx(-aB? z;QfrgDF+PQ0=;W)Z>@ctJ^&f&YWW5@I0Pn&l)dip?tegMZ~vZY_4fmaQF5=6mejET z008buL_t(|obA~$3c^4Th2hbaKv04wJb93*E4*os}+<*#?6MYR@{r#c;Mx@DhCL4 zc@f1wKz~GJx8-*7y0U&}s)a$5#o)P2h9i1+T zt2{bFTyZNVz38eYg9yhWRauk0_Gz!x i`nm2;X$1qrhTF_Pit~C4mL(*CG<&-GxvXEX>4Tx04R}tkv&MmKpe$iQ^lecK|6>z zM5s=7Q4z;d#UfZJZG~1HOfLO`CJjl7i=*ILaPVWX>fqw6tAnc`2!4RLx;QDiNQwVT z3N2zhIPS;0dyl(!fY7Kg)$ED_s%9CfcudUZR>huI1Q5g^#(&T!F;h>Z7c=l2U-$6w z^)AA*ywCkP`jx!N0G~)4Wx8PzZxGLJS~}-_;t(rI3h_Ddq(K)Xe&o9B@*C%(!vfC? z8JW~PafnzfcCg&RtYoOfGsIy<)hJ)cx~y>C;;dF`taVTR!eCxoNpqd%DB@T`0!fIF zQ9~IOScuT7k$++$Mf))i|A^yHl1nC68H^kYs6vJ0_`(0+ceiF?ddf`-#(?e@+x{2_ zdUkuoK31Pp8g7uRh~-UBXofZ-=yG9*Xx(-aB? z;QfrgDF+PQ0=;W)Z>@ctJ^&f&YWW5@I0Pn&l)dip?tegMZ~vZY_4fmaQF5=6mejET z007%bL_t(|obA~=3c^4Xh2d)gLQsM>wwA8J4Y(7RlNH<*h&yl>ZoonU0V_L22xAos z@sZJt=IZ}dDW*6%%v47N00000006ja-i_V2Gc+yoIXoLAtuJ9Y>U-t$DnR7-N~m2x zmL_hx-haH7=!3S$Qbg)M*QW)js>_R=OXEluld-J!2hmg6c{67)X&hZjXiQZ?+poTe zNU)r$+WMatv6B-3000000000OV__)@&Uy*n^Y}FjbNM6Q1?0uf-TM9;)l#g(p3Bn2 n#A4hyOLKWJ%+LS;z`8TfEmY`jDZo$w0000`=9n(DJ zQILy?#-<{U7XE+hi;`bfq^}ZZVgQ4HD@RvUpWm>o`|F{tnXC8{Jzl>5d4}=MyYtSi z30w(pqHFErPOIH&e5xu^YPhOnMaPR9+h-N8tNN|9$k}UG)GO_|PAmRCcK*S(;pCjH z|Gx|Kdqd4-U^rKy>1FoRmZjL%?)gG3eM5EyrC+aWq&}~@^ZA?j=a8xS&!)^~XJBam Z#MqjW*Lya9>lcuNJYD@<);T3K0RSxdWoG~Y diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/red.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/red.rsi/meta.json index 00190d8818..fb6ce03e39 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/red.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/red.rsi/meta.json @@ -1,17 +1,14 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/f18aa05685f13c8b424867e4219a1e727019c026", + "copyright": "Made by ps3moira (github)", "size": { "x": 32, "y": 32 }, "states": [ { - "name": "open" - }, - { - "name": "closed" + "name": "icon" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/red.rsi/open.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Cartons/red.rsi/open.png deleted file mode 100644 index ad4eb6312784bde12921005648478329af66b16d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 324 zcmV-K0lWT*P)eyKjd;$jxPC_T4eFLH3Algl5 zliR;kamg8PAm0i1CIJ)*#hE8hj!4L-~c%0LQG=G{X`{_eI@cxQoqfo-e#bAdx4BI3M?V^;wYK}48M2Fxad&H0;j z81yRukdGQx;gnT4B_B1L`qg<&7-degoK}zy11`=QqNLoamgJ0ieG53fe83pfpFkL8 zM9DP(rJ@3wcK~WTY{{h!)W~wcC>RB! cU=)l304S|D$ofGZx^prw85kIRJzX3_D(1Ys<;Z!!K)~gq#jR+SHLIgmoN`c5 zGn2dJ#8>No(BS!fDWFn@1I#lc1p}9t%NRdf_50O-TaXwC>|5%3L5YFk!!5Qo=Y$sj S-0(^gB@$)L5ITWc{}l8lv^)y$M-4VT&F^E4TN zpyqmY{MxOhzxrg$la^eIdN!wX<^9;@{1&>O7?XRB@PL#6!3Qrf&53po@=q$cDi-}} eknIv-XlP(}`X#pc&Vzr{eZlT!$uARyS~3|_-NWqLud+8eBu60kDNDvSSjfMMs6RAUAJ000000LDO=g z)KV4X?y0V8Rot7VX|fzwa)46Hn+d-FGqdh^vJiswvCrQs#(b!ZeUThs7>30-j<(xw z?9f(rz1>sa_p(F8812wjsOJF~nsR}^_ z(80lPIMFRlAN+p>40Z=#w3Gk<00000fXiZxwf79D*&p3MqqRqm5VNQ|+D5VUQZ zN8C3#=Vrw|dxVryBuOCzNvi9*4j#GE`|{&BdPRQXQoz3NLw_mdZP1)^H8Z7@?k>X2 zG|%(>L;k?!2}rjRj^mJY8`@)eNlGaVX66y~JC@?Klz0ssI20000006dI;f0FM# zLpQDeBm8;OG}W&qT=_@favtyD<4OK?@hewkxAS-ptxoa}htoL#0J!1>F>q@&bnCGY Q00000NkvXXt^-0~f-MqwaR2}S diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/black.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/black.rsi/inhand-right.png index 263f797355d36556de8c5472a55fe21f191b7925..1f4db596b35f6e1a451946e34646170eb23d844b 100644 GIT binary patch delta 262 zcmV+h0r~!u0-^$tB!2;OQb$4nuFf3k0002oNkl^9Y@s znM_PvIE4u(ATe?48N7x&BRdHR6E~=n4#p3vqOJaaQwN6E2TV@_00000003@E)6{)C z!@Es=9!`=Z_!6=#^UCK{fb@GM3@*SJ=(`$<6?gMPm5_T9}P1!004;H5fd(3(}N18Hvj+t M07*qoM6N<$f);phwg3PC delta 247 zcmZ3)G?{6FO8qTQ7srr_Id5<6 zD`frf`0_pey=&h4E&HXz!~h0+p3dnGPv3E6lg`F3s!yKmek%8FuXuLuNArcRcP*)j z=~|DCoPYuXx^o=kW3TNqG(& z3#0gFKaV{7L9wN_SSq>e-}~^WBB)gi46a`K9{wM{dtdkvmk@sYRHf{`OsTEhC-VHa vhyFD2&06&-d{cZ!#+p<7j;y>43|p!h!k(mOAN<)a0dlIRtDnm{r-UW|=@M^^ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/black.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/black.rsi/meta.json index 892cbe9a31..eadeef0774 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/black.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/black.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/f18aa05685f13c8b424867e4219a1e727019c026", + "copyright": "Made by ps3moira (github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/black.rsi/open.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/black.rsi/open.png index 482f53e0d62a4d2e4ab6fddc8d650ec1248bc9a5..ae1b2f52ad7874bc85c46c7abf2255f69884dfc2 100644 GIT binary patch delta 350 zcmV-k0iph>0{H@vB!2;OQb$4nuFf3k0003qNkl zDX1rqBuVS|MFeZDO5j8*;GE;`e%hLUnLn%QsRWEM&EK=%W;(f5HCGD&%%2{1#;vsk zL2!71x~^MuB7$>HRqt3UAR>qevtftXu(MfzllF8|PzwNz`)gL=h*daZ++T0vSLZch zl&NZ|jv(y?Tvwc}iQ-}_S}FbaD-@R@%irDpQSIBYz6FCmZ476c%4GKjO)6~)-$0!CCQWQUV{_1~TSu2Xz zq^@d)%_nZb`N$zb3?M56aDkf1vSAQXk0%-AvG zIr20E1%hM7jOmu`pyGNCnh-2VuFd8>(;Yd!_q{jY zec#NH@&qPtQ*BgTv zm`?5h__(;|;r0`tO<}pt+f-a|PN2(A(*d-JD0cl^J_TnCZ!Boq-l9*?Q2 miagJq1qY!SN*<5LGX!6nu5YzeHbg4`0000?nrV*->OUh=o+ko;-i`KPoXF&VQTBz_2)V8QcM+0-{6U$@5qL zpFDqs;=9+cU%}bPjvyrzNQwgYa}b{|n?I3(fq{WRR8)-NUw_>zhPSy0N1!{5st!PQ z1PmZM;`QrSaLYA~orwwsqSJtkq!=T56d(iP$qWn(qGBZZo+Jkl0>~C$Kf9OcvVi1* z2o?&PPuyad)KZTkM~cN{J7D_yBN)+;8E8Y55|t!JU~|YQ7zLwXNCE&Sd|T&Mn&uP$ P0000N2+n8IY8Pl?LQljIKz+6Pch_veR;{iC8W&o?cH74 zIe>wIfq{cp8msuPFE2?oiaZA}FfcIeo*RV1cTHYLmgQtS0DqT-KfXMty#uhtKMZj2 zNYXD2XvageUS0Tyfq?;$2DIbl8J?ae-aIB!9RRaDO;C;@O;8T*5C#SY21VaL458d& zB$-802x!O4Gw?~WFif!XgNsdIFkmQP*u?PZxjaLOmMO!-hYxAzfKYBR22ZHv1&204 z9AM|iFu~4`;YHZt10-2YmIIIhawx#S!-o$UQd3h&D&9%13ue!rjk6vg)$&m=3P!;w e7zGRr3=9BaOi8wH-ghJb0000P>i(z delta 221 zcmaFP^pkOdO8o&(7srr_ImrnUtcw#wdYUHkNq7dzm_0sIpY!OxRb0Mn%6y?&Z#Jlx~J)zGoU=~w5 U@2dSFi2(>aUHx3vIVCg!0P74}y8r+H diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/blue.rsi/equipped-BELT.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/blue.rsi/equipped-BELT.png index d49b6f112c062ca4deab896a5acd022e4f6faeaa..1eaa2dfd8438637259437219a16bb187dd1320de 100644 GIT binary patch delta 123 zcmbQwID>J5N(p0ekh>GZx^prw85kIXJY5_^D(1YswUM_$LBuuiTLF{zv;_qM<_njn zI0y+(|M9LtO=O<&!PBery@1LY7=*tqK0fVy#NOnYg?9s^{=R1fi!v~L(A8}cV`ON! YE*E}Gcrs&uLj*{|)78&qol`;+032B?b^rhX delta 130 zcmbQiIG=HXN_Cp2i(^Q|oVT|&@*YqSU~x>@$)L5ITWc{}l8lv^)y$M-4VT&F^E4TN zpyqmY{MxOhzxrg$la^eIdN!wX<^9;@{1&>O7?XRB@PL#6!3Qrf&53po@=q$cDi-}} eknIv-XlP(}`X#pc&VzJ5a^F=#N)kjw?ApsO8OsUx1m}emk)^Eq|nst$(Zgty0E5Ne)mQ z*RAXMVCigW!@Osw^Tm~ADLcgdR@pG`sp9+@E#^*LzL~4c^hRCYcP;<`00000002NR zLY(Af6y>Gs@HeR@`Ct!FYmTPD45%tmlDRl7+;q3`vPuWR*CZd5zb+2|06z8rXsld} U_G%V|00000Ne4wvM6N<$f)U_$f&c&j delta 229 zcmZ3<)W|eJrT&Dci(^Q|oVPbO@-{p0v?fk&W6cw;I(E`;O)>Wdj=9=e!3!n_E#a(E z+x6r>+lF)gZO>*hGJwJKoz*qJdFNNHU`y4XZyGPuu-jeJ)$rBYLYd2lrm}2Uw>tNB z+ES6((%Q?lt~TII=-HiTzg($f@?E>N zyPFAOI0J*n=95EdjTY#q-Np5Lu^@s!0`a%CE7Hr90-Cr6bQmtZ}hf1^8cw5z2xhcR(%ox z000000I*embY+j7p=}+Phr7M=;7b@@&Ybc&6(Ie;5*in9mVaK`$NTYqi4N%PrIghC zcimZlF~$~EZIf)EbdqaRtyDhWo%}JUH%T`5Dxo!>C0yLz1pVntlDC}3nBZStiYF%k z000000001pOz0!&LBw8y^F01t40HK!oC_$b+WvHo)v4=+hvi&FRom&)Lg^&e`|CRB nx!jAG=5lYCp&9`IKx}FuGY;>TylJBdz$`2_4`Yil6o#rS5Wf(xr@tVb!3mB%yGeQ zwfm>Nann^b5mitM%ikks_k2%{bOD<$>y)5rRgdTK#d}3b&NjBqef56dt!-yr{U9bY zFg!T%hWVxLzkMyA3tk0&|IhgRWTeZP(;;>~dp~ZOwQ^OZywdLb4C{k`7Q`(pVqj<} Yk2@=u!fhPsEC({c)78&qol`;+0A`zCga7~l diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/blue.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/blue.rsi/meta.json index 892cbe9a31..eadeef0774 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/blue.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/blue.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/f18aa05685f13c8b424867e4219a1e727019c026", + "copyright": "Made by ps3moira (github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/blue.rsi/open.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/blue.rsi/open.png index 60c7f9975de2ea8c505f8f0ce70dca9a7f91a4ce..7be3b8461267cbd7fdb92cd09dfb82ffb1c95677 100644 GIT binary patch delta 371 zcmV-(0gV2v0*(WaB!2;OQb$4nuFf3k0003_T^wQ&DTO%1lnNgB z3Yolbe2;tY<41A_C=`nS&e|%6n8{OFFB)HyW|9S%$19V>Zs!29ZzHSgh{k`P zSE35!%Xy;>-fUoXHoO8jR68Av5u3i9S9+c6X;f( z*!x~ScnmTD+kt00cpg2F7Oy0*%yJ4jLI}97TkKol`@Zxhq%Kz|6bc0Zd;u2CR;-8X RNml>>002ovPDHLkV1jr@rhWhb delta 273 zcmV+s0q*{e1FQm&B!BZsL_t(og<}{6qhJ(_f`JB%q}m@g`O#!r9ALITLLz z3#krRm0`j-ef^RDyVtEobpV4OsYZbT6FHhP18o>xgF;cnezI>O%K;>Xz?0{%{^ymo zqKHlEs%F@H;ue?<3KjOBq=f`oA%F|8SjUnS|5SCr{+Apm34f7TK$2@gQGiXnXyYTe z<)nrHNofFN5jH@M&tZV1DCqN-V=&McA=@&F9RLDx3S2lHVi(Cydk3I9gc8d^faH=8 z9e^CMS^O5+`bl;`-^~wTx=39BMI60oCKga78^TIL252!&mPRB!U_bx^0|Nkz XQbYMT9J!GI015yANkvXXu0mjfZC!AD diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/blue.rsi/trash.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/blue.rsi/trash.png index a80b8ec86080cf69037136ce3a63194186ae8042..a2a1bfd949e2bf7c90415d61bc9ff5d722ed6908 100644 GIT binary patch delta 357 zcmV-r0h<1x0)PXMB!2;OQb$4nuFf3k0003xNklYU6vlrQkswV#9ZCq8 z!O^LGhYp28!544{>D))~5u6-)ap+v=P&eJW3U%rzQY8dCDD;m6DO`uPAy|;y7$@&< zI+uIz_kA1=2Q(UuM)Th({8qpzH)Zl1JhYWGGY8lhTXqG2Xnz)9m=4o$s1zdgLm`9& z@O{7Fl$&y|Si&$J?yk=OsCvCjA$HT6*XoURjqENayxblU%>t@kFAkA~9n}xDdIQTY z{rJYRD_gUXOMup(4?y$anA7uB^O9XKOowO|s7R`JAcGhXT}!d{s-aljK;NALSy|De^&zb#_DJDN^AM`ntON7ccyy1{=C}RPs zKCOKCn~*4%%W_6ZPeZpa8V+p!c{NE11&`EEepj(<5OCO5@lz{((P^eh+)5D|Id+BJ z4=;S0uTiul!e<-vvi0^&g1j>u%|bK-J&Rb(+QB|*Q(<7ReHk?~^{e6}1|aZs^>bP0 Hl+XkK;c;xV diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/green.rsi/closed.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/green.rsi/closed.png index fa5fa930c1048146ae70e8e30c451413a0bbac84..c2407a0475bf635df5baa96b44d33807804551fa 100644 GIT binary patch delta 345 zcmV-f0jB=y0rUcpB!2;OQb$4nuFf3k0003lNkl>>8>GMP#Yji}Rh+E_c2 ze#6?!`|x=0_w|0iub=1rz+$mj#>_;XOIqvRU%K!6|IRy^r+@g$>RPIH)4Z0ZlNr!j z_mom}+7CmTF$Sd+#+cC=04U9uQ{&RYeF}LlEmzk8*f`w(-S;U*4N)#}2LNu*uK>8* zI~a(+-0u*?72t6+28vOGZu2-p`{vB4K^#g_$_xZ?h1t1B{3n13AsB8 rMBlr37A)1bGv|P`xW!_zSO9(iqu^E*nhz+(00000NkvXXu0mjfIo_pM delta 206 zcmV;<05Sjc0_p*fB!96S-WhdDd#9e{2rvgOE8K@$hK8i-;Q-_7uvEXzrD!0rpL zv5J#xIRgWUiEy?<6wXkfivt)K7#P9?TyZ)i%-)*z4nTJZB}bMsFp!Z8(7|knD2B}( zx5(B{b~Z%zJp%&+!^LytIf9~s2pQ-bsgdP?Q7{Td!6+C70IicM`8+RUdjJ3c07*qo IM6N<$g2X^oVgLXD diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/green.rsi/equipped-BELT.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/green.rsi/equipped-BELT.png index d49b6f112c062ca4deab896a5acd022e4f6faeaa..b95d877dedc03217c14df939befaea20e5d07e82 100644 GIT binary patch delta 129 zcmbQwIFE6HN)=;qkh>GZx^prw85kHMJY5_^D(1YsWysqQAmDOPJEPE{N$bmndhYc8 z78YT7-UF;$X)HNm2fBfZ85njX-tM0_^Y3f^>#7a1DRO eWHCmDhUb2h*aTu@<6oG8WIbK|T-G@yGywp8M=W{( delta 130 zcmbQoIG=HXN_Cp2i(^Q|oVT|&@*YqSU~x>@$)L5ITWc{}l8lv^)y$M-4VT&F^E4TN zpyqmY{MxOhzxrg$la^eIdN!wX<^9;@{1&>O7?XRB@PL#6!3Qrf&53po@=q$cDi-}} eknIv-XlP(}`X#pc&VzsaYL~QG=lNLt{|@jm-@vQp zi2wiq00000ovEq|Jwq_6>drsE-WK39`)W;jUqkxL9$1DwPk+af=eg;i&9kb?!ZNmH zvVb&Aqr-kDtNFXcbtaST+KpzfW{arGLgG5Jit}gl@#w6}|IM|`^v1fp?_2-?00000 z004mAxcifQ=ox~s`j23G9uHyo^3*P&%K%3YTS02lzBT>xEfY8KKPWNQEb002ovPDHLkV1m`bi<|%e delta 215 zcmdnR^qFyjO8qWR7srr_Id5-mx6~5=8hDR(Wt_ zSj^*B`j_9Je!Kkc=}im}uzG6TjvtOsAe^nwNZ0n!obwl?3s&-Z5aF4qhQ-K6z%WlHF$;GeIbGBO;zopr0A@vCf&c&j diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/green.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/green.rsi/inhand-right.png index c4007a335518dc0ef3c13491aec63c07074ac743..e7778986039df47a04c9d88aee4ff745ee045237 100644 GIT binary patch delta 292 zcmV+<0o(rc0lxx}B!2;OQb$4nuFf3k0002_Nkl1FrM-N4QEJzZU@}&n|EW5dWq+Ce8x5XI^+CtOUPP)t z*ZRGIAdYmi+mVKv$YPqvZo82%3~Mjuw5FjZa+Kt~9}VJ257$e*nzfz%^$lw|gE(@2 zc@ckd0ssI2000000MEEwl77s;KZ5IZ`8}2Eabvh%UYBk4d)_W?JX~{|x_o?^%lS7E qrIgckxfMRusJ9@)`w*{))ca-!Z8Uk$^G?fCh zrZ|glIQjo;=e+rgO#E3Gz@Q>K>uCMl#3jz}nU8=CW))w~sPxfWX^jzSO+WkxpL%AGDPCif2uv&@0{eaPY*ZwKAnBSWNLoe_2bM84f{VZ)NbtCx-4kB P1xTN#tDnm{r-UW|SqxoC diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/green.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/green.rsi/meta.json index 892cbe9a31..eadeef0774 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/green.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/green.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/f18aa05685f13c8b424867e4219a1e727019c026", + "copyright": "Made by ps3moira (github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/green.rsi/open.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/green.rsi/open.png index 463e51db962491c9c6bd1ff6bef48cb5b2518f50..62df18380ff6cfd49b7ae29469b081fb27b9a0c5 100644 GIT binary patch delta 357 zcmV-r0h<1+0)PXMB!2;OQb$4nuFf3k0003xNkl=)=DxCA_Ka&Zg<0&mdK$<;x0IEh4q5-9}2Uf-IhNenc`xV(^-lL=_8d26s^&0mWg zPj`ol6953ERPBA5#AxSpMCAm)?P3Jl`5gDju_gP&nYRa&nWUslASx%=*xato9&fJE z`gjpF7YhKuTVDQb%{uFAsElj^EvbO#s~_idHv|B@7k@B;gJ6LDa}A)`1jGWK|NSpG zDIehZ3YE!FnG9D)k!ZPzH{ozLwQfRbbBDv>Z~(v;#8PhOF7;x000000NkvXXu0mjf D3Miv~ delta 272 zcmV+r0q_2R1FHg%B!BWrL_t(og<}{6qhJ(_f`JB%q}uPfe8PWh;y+IQgtPZgC@0!n z7E&FsJ+gpt`uZdPFP^)FB7T$MHK|5{0TVfzG6QWG^^Md}#MF63$#MWmA@Jn+tN$(2 zwxEdBWce^`J^>Ala|{eOKa&;`Bu4>0@KEa$!~RI(;~xabihlxZVAGE?C<&2RKynCx zf*b~XEgY3~4Z zhfrcU2vD32L5|qWaf=9*RB`|;AtL)81kj6SnmGX7Vi-U#nn%GX7zLwXXaEKV1^|q! WL_ZM%-)*7^3hs z6$l>)5`0HdgOeahL(tIba6{BVwMLCC1r0*qRFlvkg%Ai0h0rPpZVd+?eE1OrN`upD zh|JF*ymae+)4k)}d;fdy?g1K&Mx*)f1jY?u+cpi_#bQw@=6}?&B zr_vjcSj=Fjnnk_*@Yg#50D`Iq5>^IbBk9}QJU#N+xqRWr+nAVuVP2|P+#DWbWorW| zGmTcWp>$qJz<+*f$!A|gcKhpkxdH%?QYr};=?y%el>$s~y0n1v)phJW-J#>Q5sA+M z0Pd@|eP6>cCNE%+!G3q813BA+VSOi+QYuwJ>Ay0;DL6BYP%Mgf?-ij~6x*FE^x_A7 zAJrM4JTREx6gHCRN(aDadsJhL&DTKEXf&Eh@B#hTdJ%Ye+c2E~0000x+loMSRkX#VK zLSgfXTMVlX9z~HO#bUA@Fn#?IjA+OVw4q9gN|Gb6Ib;-!f>AIE$N>O+hG78quEJjc P0000b%8S4l)cR9J=Wm9a}gQ5eO4mPv#3 zTnxj(rJ;hLARL0ArNI!Kf|kY?#TKGmvcd*(P;h|&oGB<+wKk0P1F3buXmW?v3R1d=H$;Qe_2V9 zpJ)TNZTBLPNMB7UMafDM&E|e@10^fT)3~p%cJtb1Bk!P;l32aGlu);Hq-@cLDC*CiV9YceO`m zcMk!Wn_u|Ur9B`H@YZ^v+iK$*s}l|d35SBXN0S(a!D&23G@BFoiHgYdjrL{+^nkR4 l!~tONKOh~h(P%UpfDcb8Zsu7v>XiTh002ovPDHLkV1kf(v|#`M literal 4350 zcmeHKdr%bj9bXW{9*|0Ff>>g=>yyU4+k5YB?s(lHT=nD`1kuRe?r)EUyW7j%a(A2| z0aF#J5l!NZQ7gV?LLzBQ?U(?XOhgk~JEFCYnOYr6lQ?4yLZ+#v73pt}_cSvZW}5%l zn|*yBpWpZU`F+3Nx!qo{CO1*BK!G4gqAkx_1n;PP&Y2Cb{&4u8@OCy_QYIBKLDcIL zdBFuxsm=>f5E6I<3H`-gQ21CkI%nwiyr-k1pE2#+(8U=)9o&|^zq5ZydZY6oa<}z< z{K6++i{aAt)m*CD_47UZVw-mw$ioQ>5A9mfddI8amYmvezLt8gB}^witbPJdUR1yJ z#HH*#1J{3g^ugW-Z!`bo=B=CUgtUsgQp+H}J)OkBCN z{mS0*(^37~8u!OmAGn(oIJLJUA${d-RYHR?h1r`O99-wVcmgCJ4A6fBkko5eDg z4b0&{{cdw!cV_DOjm77WJf8J*6KQQ*6DUmjr06_Ww%om?^vTuAq0LJZZOy+r+Pls> zz`lE@x3B&9OUKbUFEqU0Nv3t?Z698xz#S&C|C6pwEnUHe%WcH9yUo#W@hNYHR{!yf z((?z`#>_p3etdbEx;Xz>vUVVK*(9{ zeRH3(DF&&*V_C_IU-+!^?pHs#eWW|OCn4qaKbxLwDq9ga@z;;qxwdoKb4<>)Y^XCHa_+Cm+u%F zI`aSY4>$gNOoD4x@^!cU)+}YP;cv?}Xcp&wb#1zgc*M8s52Pb0 zcdEacO_DK7n_oNAKiHq?6o(HAU*DhAROowW1(W^|R$V}V)m3I+O|zm~$#9|rC_`>9 zEIR}-WrVy8TLUE20i1%zjNR+{5JLsdjIGt%3A@(Ns^aVse-|vGN@IGKBr1eQIv|%s5BZJTHyXVkHmy= zB|-F{GA82?Yb7&=K|MMapWADAvkv2-&^Z*MbhC|6>tGJH1)$()l-(twb={CJ!A@;g4-MM zf@Dvzlmvc)tSPa{nn*g61A*@2xKpgha*r58E4!VxifpYMp3Q2;6a-fa5Qn5lUe6khI0Mvr zTnBhPPB}CjuGW(bXCQe-3;0P8`91+wCF7bLl?=r}D2~^YFb*Tm>$ME7GiY=;!?6TT z>GTv(QwFt>0}&{WrB{kRHv_j*a5GMz@_L*Rg-ke|RbVq?8YM9yDR40o4;^3+2p&!h z`X^K+f*TY|jLfInK&eTCUZ*!ugjz>vCX7mf&kt)+MpY9^tuCUGH-?7kKx!GeQXxP@ z4zr;xKEOz#uS67GW=swWl|9GRcGyrHBQaJ+0uYqYXla6^)tVBuhSnNstrjN?G%?9u z`gIY}NKX}m=SJQ}UR^?@nNT#+7Bs_-q~K=)fQ!Tlu|`yE z72|ONI6p=Uc1$jOOED0vLBldUiEB85$8{77aFR3Va7sh!37{v{2F5WJ-7oS|knw>m zC*%=w1q(F76}o(MtJ0?02djX*50EmPAn^&x447&(S(Q97#|qQNHA%^F1D;`|v%k0HJ3VnHIk@bj{E;Ee57#JX2jWbWMwaX&KK{*Z++! z#l*)H@W6jSLHMau?=iqncx1L?Rjw5omVbxNyzwfO{J@)6?njXLAIoPHvhTorD2$VA z_MEuea}s{EWO0BoT!f=q3>B^T*W(?#WzHp}Jk$qF#p^9c#M{h~#?5*Afbi;=GSm0ttHvUHK zyoaaTTb@}zH!bNE#ooM^UtE7UGdYfchj(E|^VOf3ToqOK5NTV1gDUSpDtGZx^prw85kG>JY5_^D(1YsWysrLAmVzFPbYRlczEas)`Xsx zC2DoH0h9RVEPn9x>~;~LVul9scj+lEPu|Ji{<8U5;nx3hAVCnge@Q7rkbxn>jIr#Z Uh=1q0w;MsCp00i_>zopr0KH`_tpET3 delta 130 zcmbQnIG=HXN_Cp2i(^Q|oVT|&@*YqSU~x>@$)L5ITWc{}l8lv^)y$M-4VT&F^E4TN zpyqmY{MxOhzxrg$la^eIdN!wX<^9;@{1&>O7?XRB@PL#6!3Qrf&53po@=q$cDi-}} eknIv-XlP(}`X#pc&Vzb%7)=5M`RCt{2*|7=2P!PuP(}a*T z8OOrj6|#W1ggc}WMBxpPAsoa76h%v|1UVbir3!aGL;k-3j=O_*ulPg&000000D#^? z2pYSGXhH~DmxbE`RP}$C+Yay5q<(qSHnGYQO`A&7rqaWDY1-&2OH@_$bh)`Kb6{#w zB)r~}-E$$wd@he9m%1#}>K@FtdpTe47Nz{PPr>>adfyjQUO&O8e;5D&000000001y zkq0KDAAT@-p@*(WzRyBT;_(=|BKfl3#BS^NydwEQ8TIf00HC)ILxprf8iK?-00000 LNkvXXu0mjfm-=$y literal 4356 zcmeHKeNYo;8efA&E`<}V7HM&2FH(zVH`&d1wgkl_N~!^bj7D!-eY5)}EGF5QEF@r6 z)as<1E!wfu>z&oRRy$PT)SjaS@tlg5_S#YE>D-)%^=qVlz=1u_Rt4_eBz(QD84u&W?p;`Gvn zY5z1nbLUb?kEHFLNo%%IU$@qfr6BX}8ySi1CoFrH9bX69OSb%A-E{uuq4oEwJB?2_ z&G_mM?5_?+9%9NjGjF9Pp83SQ=}%J+nJ$pc^ZGh(&3%Ynp0jLXMOE2{7&h)T&SWaI znoI-bpdxmz-EPclo||!cMe*tPr{=yG(VJ`Y%NI{-DLO54WO+9)nZ8KgyK!cUwfeUo zTv_h#W)9uHa; za=K&fwba>GX^)|2Pi|V~x*Lsm?>*b`ezW9ka{9aHvsXtPFO(m=^l2SidrEZ*ST1C( z_`I>sfB9P7lG3`eg1(b0U-^wS_}GEQ~Fd#q;=nRr_Az*n%Ez?Uhvk! znM>2RW;|ItZ}W}sKkdH~I_d(If3rzHtLjQ?>zg*AvV4Q9{m6+L@39KW_q#XDuJ1gc zt!gMZcgIV-IzHKxkoFI+?Q()VRCV?Fmz9|d?)`m=^oc9ITmL$1LUOz0_$nV?zjkL1 zmVUeRheW-8{LJbd$GdvE=DPX*UEKW#36aHt122G_$EfYfIn-Vb+aj9by>h_vPACt1 z{iyFSEPGDa513U@z@5;|`HZrE9XlbzIo2p!s5}K znE>Y(INpbgoWRMK2}YR=`SF4LyndT)klq)JtAO-Sgn?f{$w`IRs~8>;6fEV4B%aWZ zMg;9>N)<&g$d?5eXeoz2Va9L@mKluqmjyi0a#%(IJv z`lC@u>=8(Ta}9|#A~(?!EoXQlD14B21bU$MC>Wt^HrmWHWny|(vr#6lPqRG3v2^rS zt!04<>YN0_=+%UpauJG-^Vx)2a!E)jLTFx^!BS8AeeM;80fr&+x27Di%>WDMn3dSxB%dM4;A?TEeMT zISHjsuVdAKG62X%saS@d&j-8!Z71giZm974+);-pIGtN)HOiE7a>!EX0fGw!pc&wN zEFTIEx$K-577IYslhPU}y;h^u8-8M8(ED(Sh2oRByN)=7&X-a9Ql(d?nl{$jd(&R8a z&vLGcpF)e{gJ;J!J&y~b^(&&L*i03})v>48qlb$Q6OKp6f(A^igdix7YmB&JE~W(d z+z_1~@rE6+b3f7y6wsp`q%^3NpcXZQT0`hry^e6|0jt$P6{}b2qACos2YHte0s)xo zMmi#`P=iLb!n5LAHESe3R073)K#~!po*0tMAXCJPRfs3XK(*P5|Is5m3K(|8ptzU~ z9bM=oR16-4alKHkKj$aD4?pJ;I6k(>sPr9^YfP?DDKIMVSa*%dH7W&01s?0J|C?OW zp_eJ>L;rw6=vC=zVE+U3nw98WxWJ5^$NqzvEoZ(>L6%?m^OglM?8&FZ?>OxDJEtMz z1i@;vOz22To;+*%=C6CsBGW;uIoBS(*m?0#%1JWyiPog2KPR_t+p=+E!#Vbix~u7q zs`UJq*4WjNUw^#UQNdRg_Zb4;8Iw^YcCfAK&5GOI2fU?6sv;%IM@6$A_pW|+`Ihx7 zcDERNi(Z;b%7(Md!>RCt{2+OY}3Kp4gGPZPv6 z8OOrj6|#W1ggaa#h{6q!Asoa76h%v|1bH^55hQ{Mxzqoz4#&Gkx_4#(000000Ki+` zdv%?mQ!dXGdI^%+%O^>pm!PM{58lkDO3OlNS!gy$f-PWoI7!mS8T)k~c<<%%ZcLYC zXxrh~R@aI7+r9UF)b{L;XB#co%^g^k5c02IX)R|Amp6+iCjbBd000000Ei4Dgi%5i zZw4CW@=Rv&%;j}z=kZs$TUcy!dE;W5%Uko;mj?g8h-muTw;qMUaJOh2xzJsI>ooog$imc!N$?%jmXX=iSj zx&Ft_Yb zGa=L;ka)ohP`SnrP!JY)1PPxLi&j3+iYDH^lCoftBPQw0?v-<|#x1y4@S8I5^3NML zHr((0;&y+*yHh%Lyp>tDvUzI7N2h0PYS??N(HZLA{n+lE-~Br!6|<&jn@``}yQ?tv z!CA`>r+#jEuIk|xN00vpocbA8K;6hoeH(wM`mv4H0colD&J)L8_ff5P_F325{A^+W zhN~7;_w>uIHej~yGUYkJ zW-D^qY{TWiA{y520e^+V;$_E~q!!_b;hlI{i#>o7$ZrK3_JgKy!D)oFwPw z7xwn7@b|HAeA#oc>EN>m(S-GN@3k1`wKz5n=Bu!Bv$6Ngk*8if5~}OkkAL#@=9mL~ z+NN+2u$FEzEQ& zxzo3TzOwFO@_eW2y6O5p>&)5fFSUGqkivY*y!L!po+L~5jfN2@cLOj?}K5(EYjSg^(?GhxgZd|aW3 za@awT4G4Z&kbJ1Z$&^b~vPG?iesnlL(eHAN(EEZzDnLE7VaBi3X>hG5YR5(d<=kpW zGL+B{Mg&XYD%BQ)pi~uLL2fnh$&Zhv;MkFPe^tO6DTiaVzzakO4Z=}%mlGJp!uc@btN~+jTn{18nJScWHFv10A=7PlEs-Z6oml+b|vE-o0USvDO3RGDUx9^Bc(TB6iJbo zkuh;tmL4|&m<Y%Gj>J>kQ66K8aL89qEtuF6i(}L3^&mD z7`(&@e9iwtE6WEpM&h%6=)jVueAVWTAknQ9Q#7;;5j zYz5=<0Jwh)HSDlm_0yol#%wV# zE^32Y7u*T8BU|B+UNF}m^BS6mA9Dy4og8FB`cBF(`TQGHHKDie|Z-JBaym8e*~EuAL#k^gYDh6c9XR8+Bco?zJdHt zvo2Jvzmsy3ziIxRke1(Zc;B{PbY}gbb%8a!Eu%R9J=WmAy+sQ5eR5eMwPq zT@1sup(5#9A_!U{uUArwWCHXxM%0Pz$JD`U{ze*wW90Q$^209LCNA%v8ibOLvC%b-OG7JGQy3h=lU zU~+0&R;G3X=ciGQH@yH{?`{Ba6~FvD15eo;>2iUG)H8jn+W_=Chd%3Jucy8S-tsRL z^9GidG!DBBhuubYrwc_<>OY98jbZp0#jZVn{dd7{E+P{X6B84FccRma5iI1902=@R N002ovPDHLkV1kyKwDtf1 literal 4417 zcmeHLeNYo;8ecvHjL_oM9-ugGQ$aXPve|sFSraNGNOBrLU@-RMV6(dk3rRN3E=kCN z6>EDG9jTr&wTHGR%!!KUeM%4YJOvc>Zm?R0jy+q>bIJ`@Ika`kS&@4;e9v{}hMDVs zWM;Fw&&Th5p5OaC&*aTp`MEhUqU9n8f?`ZYLjkzM!W9((zPUi)D{$)!6j}HJ!UwxO ztc`KdFkj`SVcO5wAjp5qng7yLopAIwy{X=CW5M!0`u^NoG2X`qlTTj7H^vV>_e|C& zgJVZ>BJD|sY-zvWA70jXHRj^J=6g*)9X|Vd^G<)y&8?*^;qCsiq(=?a88MH`^KW+d z9NuiXl+`!VzN*>3^^xI~Q$$gx@#7_$=yzXBJ5c`R!zI@mH@vfIs71Y}W|!T;9vaz$ zu=|o~vpF&?ZI+(%x|Q$C`unyO+s)5{~&d{rU6a z?!#NcW4qu>*Vo7k^IGB*BZ(znkKBJKz4+U+y!9EaWdFh1aGw-JG>X3?eX!*QQHiH{6;Yi+krpKoxUsR|u^uQu)Ey;JJ#f5^M> zPp70hJlYW!*Y7lc8YcB^|J#~Z(A7B)ZY~oo8W`LC$JEH^+o9(wTUX+9-9eD{ z1;3jhD`+0J(sstB6aVYXc`?jTI`I~j88N%{bQxm|c<91FZV?%%AT^Zug$$9_j{^WF z%@eTS>2PtlUndUY;^0{j%fxWdgs;$vE#`b!&w6NBDOE}lNw%NyqT&n@to2Yfyuh$w z5(2#G#AQ71#$_^}&nNXMq^!p-lWQ~@8G_1CR01p{T$PI_{1O-UyZ|wQVW2tE!?<~d zb-@BAVPz|MomdR?@Kk(Gx7j=m@8Tv|0DQ>&gj*(;A~L5_Hrs>av%LUhGN5nu;EF(( z$_i+Xt@My|wwHGC&(DUS$Z3CfrN8M;{!xV%>si2e+%xc3VG)2*B1*TGv3e7AilZ)dC7fB0H09?ud9Lh#gD3Pv`SgisC zt)wJ`Mxm0Rs2sDRh$@{{%4b33c^FWYgkyG80u%+H)M`p2C#{GCqvUcB4FN#qBqd2# zsZ}(AP#_>Q2t|?j2G-*wz;-fD!cNQFE_+ZR5RPZ&n{;ASip)sz9RzO!4xk4Z7sdLx z8C4PEqzidM;8U*F$T77FLljChU4toSjEZRw2WnA3l_OHcghtpH9HaxNC4@=^06`Cs z4X*dl1kZYkSk|Ev3qiqx=d{`k8j2!#!a(pe07Xy*j$pVPEs~?SQh|g0K-4%g%buke zTh;%v7TO2aPHei7;lTP;LD57{71FOxyiL41m|!!(aIh_Kf}BW!BfK;fj1yo@sK_$H zWv9XXm@L>SIrA;WfGSDMrqX~quxgYNC8EG28j7}piol3;lqM04ikyqiu{PdEc<4+! z;1O^I3N*+SoHDspsdMdpWwfvlfHDb!NoFWhh-H(>%7lqAm919xUwmkT2D3&C@SBi< z(FG=;~2=s1KJP=0m zCUbV=U{v(?(&DzDfkGgI`^v%-p#e=cO6Km?-7M0dz5sn4}*!_TVema1i?VGV`16T*-F=7u^> zTlGX#@zguNI1$y}v_EmZXIb??!^I!u?&-Z!A6naRExz%}%A@6(2G8=Ij_OrM_5P1f zUq70--W!$FSeUdzRQ>X$KXrO{ImTA6gBoM^);yiM)Aixykbiu?6AFB&6>YeX62C|f a{t(G{Y-rry);0tZhfLYIhF@lt?)VSde?Wl% diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/mixed.rsi/trash.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/mixed.rsi/trash.png index 874c15245b1840f88caac54cec3acf68fd1af716..d0d519fbd414cbc4f461e71f3e6e8bf1a5c45b3e 100644 GIT binary patch delta 385 zcmV-{0e=3b%8QAtEWR9J=W)ICeXP!xypr&@|a zO#|W}R5D3*=wd&EL!l5H#7Pk3f?!2A(ZSV85C@lwi(9221+haH1*cAeD2h`+X?+0+ z2o^!EgCta^+^U`K4+44Poc}q)1;a25!}ujBrIJ!Ak?2)YO4aqoh@4_4uePjye|6V* z{J#*vl)?S}@~pZ&+*XL33Um^pCu;M2!DXy3fs|6coE?+2EJmkRU^t1|*rQl2b~IR| z0PUK!GIn~1fsYoo^?7K#QqEeqaX0)YUvP=K1?>Ro!8g>yGXUdDn*i9h4M4VBp_Fm7 z>cw>f%n1m_Dk8?|x1#gwU#~t^L&N>dDtG fIFJm(F#f_P#wD3g`wqE}00000NkvXXu0mjfR3)=3 literal 4426 zcmeHKdr%X19$y|6Org~l1w3zNjhv#g$!=ckZV8GBkDP}0C~|YcW_J^|CfS%QNl3K< z77vjTyyrH!iZGLMh9!oT^dZrnXc(-F>d&UeJF!)(^nZ^(4#%bBi7f4BnTWJa)YE8S(g?<7c3~8FSetY9>FU(_Tp4+}JZ? zi9s?*41Smr9rtE$(+_uladTgLaA!p9uJcLjs|ym`M=rHBG7YDcr>N8m@kM`YYIJ

L)F)^e!pVD>e$-3 zFE%W%>V4QY)b07qO!@w9lzdg*7k%-0OqkDIVZQunOP#H`EcoHxiY15ce5@(|BJ1q; zHe^F+gf%4k-!|iSAu><-)rG%R#HHUo7bSV2`&sRmi^3u<2cKAH=MQb%lMKb)e*Muj z91mSk^M@0CgMG^^{7^l2|3OG~j`QOLD)}ksIyVQptH8LDqsSFcu@=s*mG(EcNMVlAN>{6msL`QgOSlZ5lg;yG=F`4)G{H!hCQFjMBml6n z0tI_*R=bPzYNdW$60AkBTnhV5gmqeJfiWA_@lF<2$y72FN%eAWg)~_LCpj52nX6A5 zh5&C`X^9{>NV(kO@yI+%8Sk{nF@hlEs6wt#Aix4~mDvT#i`ZTBMTh`~o^{bq&LMET z9TqVu6JIK5rBa}WN8+Spc2{P7SBJ?if$bz1%DFtnVtvNmAq0=r@pwoEq|vqwEd3M`z>;r9Y$ zPp}j?^B7qZViPs~bjAk)+(&UISdZlHHwIQlBdO=+;4%*2peBlilNCg-f5#iIXN3;VdW0H#jg+vCsVQwTB$;Yj!Ckulwbx9Ux02EayNfakBMLwn=RVuJXPz{NWv*#Jk zT=rAe;`qQxfud({F0g-@Ulf?BJa&EHE%0jP{KEvp{;?n_I*@{kabN^!QwcsG^r3!b{tV*iAn@l;2MNdD-^g{V?r?|&`+c2F5WD7C?}g@ z0Xzb(K!f_Zg5!rvwP<2Ao)T891E356G>uV4Nae%H%Ec37B-T!+e2Qf6i;T4nOA>Fg&%%r1+hpYl^N(F)%6PsqUJhYf=nM%6O`~{%>?i z#y+N4JNO6W0iQ|8%$jCek*Li3?n*+*`%Kr-EtvBm{KFTN_?LC_!f!~kKK zU@)eJ-3*U-C1HBchJQT(q6Y?jN`65*T^#em{^F?G${h4;(0p~o7kB@8eQE8X_D_Bn zr`*-R5k&dcIrHFw^|6~V32%>I(AqYcE+gb=OIkL}k=e_G`W!fGx$v#nnFM3_5fzahm(`Hb*)NF6)&ITihIU zBRodb9r^Q}#E|B`)Gc>*ceWz^YZnddJ-{tX%dMTMmF#GHT6ZNT=4fn8=toBtU8{S~HGShR>Gl&bnlJc=zkD)a_B*&bV9e-A_mN%~N)5S^TTThV894cI2Rv ew6=IS41&mGYX`o(ezpZr02xv<^@o=iSN<1ZZ%lju diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/red.rsi/closed.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/red.rsi/closed.png index 6faf9c056761c97601108ed6a97e368629c7807e..364beae4211db597cd20796ac495cea012b2f490 100644 GIT binary patch delta 324 zcmV-K0lWV40p9|UB!2;OQb$4nuFf3k0003QNklCb*e-4FfV`Iw__4M?Vq*Q9@7tLJDGrToquZRxooqtQH!&jq3053 z`SAn*e9vi}k27f}Lji#6x6P07>(!-Mx~agv!1toLHGeM9w*Oz8cOBwVCSiOA(xSeJ z{ce5ZOwYin$)dEV7%W!|maCmeEs-;x%|*S$Umz_if+*RIM^VChbOFHK!y2vi@dU=R zIl;{>0Na;)06qN4f*?xhJwJ(pjRd~qPZo_itu;z1(eGXS7KCBA_Z^UiTPzlf1>h5z W4N*+yHQB%b0000zhb2 zlZh0?v;ZumYT%l=3C{kO?uR00t@?_A;W~{SfNm+W<;YP%69))et6{gC;TBnzlk9-E zM{i*jC)aWY1`-n?*UU{gLxC<1U|?Wi_#W4T(;+|F%4qKZbWev+VmSi?8My!*aLwGr z@Z$vbv_TUGa4srgU|@iR05Z6Ejyy+@>;QC&VL;!Ax`}fXjDk@x3Puh90M|w@)LW^F QF8}}l07*qoM6N<$f+u5KPyhe` diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/red.rsi/equipped-BELT.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/red.rsi/equipped-BELT.png index d49b6f112c062ca4deab896a5acd022e4f6faeaa..0404328f3a20697f9599d21b13f179da485a1a2e 100644 GIT binary patch delta 120 zcmbQwIF)gNN+Dx$kh>GZx^prw85kJ+JzX3_D(1Ysb&&Ibf`Ch);sece>n*Ev6?0jc z%r<@#V3zw7$9i~9y(UmC1A~6d+cR;R2qg9`b-kd(z_1~Q=~|L- TwYK(FMUafAtDnm{r-UW|)lMh- delta 130 zcmbQrIG=HXN_Cp2i(^Q|oVT|&@*YqSU~x>@$)L5ITWc{}l8lv^)y$M-4VT&F^E4TN zpyqmY{MxOhzxrg$la^eIdN!wX<^9;@{1&>O7?XRB@PL#6!3Qrf&53po@=q$cDi-}} eknIv-XlP(}`X#pc&VzEX>4Tx04R}tkv&MmKpe$iQ^lecK|6>z zM5s=7Q4z;d#UfZJZG~1HOfLO`CJjl7i=*ILaPVWX>fqw6tAnc`2!4RLx;QDiNQwVT z3N2zhIPS;0dyl(!fY7Kg)$ED_s%9CfcudUZR>huI1Q5g^#(&T!F;h>Z7c=l2U-$6w z^)AA*ywCkP`jx!N0G~)4Wx8PzZxGLJS~}-_;t(rI3h_Ddq(K)Xe&o9B@*C%(!vfC? z8JW~PafnzfcCg&RtYoOfGsIy<)hJ)cx~y>C;;dF`taVTR!eCxoNpqd%DB@T`0!fIF zQ9~IOScuT7k$++$Mf))i|A^yHl1nC68H^kYs6vJ0_`(0+ceiF?ddf`-#(?e@+x{2_ zdUkuoK31Pp8g7uRh~-UBXofZ-=yG9*Xx(-aB? z;QfrgDF+PQ0=;W)Z>@ctJ^&f&YWW5@I0Pn&l)dip?tegMZ~vZY_4fmaQF5=6mejET z008buL_t(|obA~$3c^4Th2hbaKv04wJb93*E4*os}+<*#?6MYR@{r#c;Mx@DhCL4 zc@f1wKz~GJx8-*7y0U&}s)a$5#o)P2h9i1+T zt2{bFTyZNVz38eYg9yhWRauk0_Gz!x i`nm2;X$1qrhTF_Pit~C4mL(*CG<&-GxvXEX>4Tx04R}tkv&MmKpe$iQ^lecK|6>z zM5s=7Q4z;d#UfZJZG~1HOfLO`CJjl7i=*ILaPVWX>fqw6tAnc`2!4RLx;QDiNQwVT z3N2zhIPS;0dyl(!fY7Kg)$ED_s%9CfcudUZR>huI1Q5g^#(&T!F;h>Z7c=l2U-$6w z^)AA*ywCkP`jx!N0G~)4Wx8PzZxGLJS~}-_;t(rI3h_Ddq(K)Xe&o9B@*C%(!vfC? z8JW~PafnzfcCg&RtYoOfGsIy<)hJ)cx~y>C;;dF`taVTR!eCxoNpqd%DB@T`0!fIF zQ9~IOScuT7k$++$Mf))i|A^yHl1nC68H^kYs6vJ0_`(0+ceiF?ddf`-#(?e@+x{2_ zdUkuoK31Pp8g7uRh~-UBXofZ-=yG9*Xx(-aB? z;QfrgDF+PQ0=;W)Z>@ctJ^&f&YWW5@I0Pn&l)dip?tegMZ~vZY_4fmaQF5=6mejET z007%bL_t(|obA~=3c^4Xh2d)gLQsM>wwA8J4Y(7RlNH<*h&yl>ZoonU0V_L22xAos z@sZJt=IZ}dDW*6%%v47N00000006ja-i_V2Gc+yoIXoLAtuJ9Y>U-t$DnR7-N~m2x zmL_hx-haH7=!3S$Qbg)M*QW)js>_R=OXEluld-J!2hmg6c{67)X&hZjXiQZ?+poTe zNU)r$+WMatv6B-3000000000OV__)@&Uy*n^Y}FjbNM6Q1?0uf-TM9;)l#g(p3Bn2 n#A4hyOLKWJ%+LS;z`8TfEmY`jDZo$w0000`=9n(DJ zQILy?#-<{U7XE+hi;`bfq^}ZZVgQ4HD@RvUpWm>o`|F{tnXC8{Jzl>5d4}=MyYtSi z30w(pqHFErPOIH&e5xu^YPhOnMaPR9+h-N8tNN|9$k}UG)GO_|PAmRCcK*S(;pCjH z|Gx|Kdqd4-U^rKy>1FoRmZjL%?)gG3eM5EyrC+aWq&}~@^ZA?j=a8xS&!)^~XJBam Z#MqjW*Lya9>lcuNJYD@<);T3K0RSxdWoG~Y diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/red.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/red.rsi/meta.json index 892cbe9a31..eadeef0774 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/red.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/red.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/f18aa05685f13c8b424867e4219a1e727019c026", + "copyright": "Made by ps3moira (github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/red.rsi/open.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/red.rsi/open.png index 977b9bb1f97b8cfbecb629c2f59b39f32b1ac72b..d98ac648f0e669732b6e1f142e2838c4a774bc1d 100644 GIT binary patch delta 363 zcmV-x0hIo)0)_*SB!2;OQb$4nuFf3k0003%NklAQsNLSiv5SHb@KnV z+;Mjw$0Y%a#q!_TSfwa%RAI`6`CQafED$)VICLE@U-h?mbbsIjkYu??LL|_xRSVBm z#(bPk0ofMB8)(<6#`SxyB2K3wfi0;(lI5J--7n3(16*H;`iTSrM-{ivFUI`vxFH%Y z765oVJz5%%(<$4^d>?BQm}GNfZm*(9=H~ob1U}z_bXMNtZl%1pB$IY3*<7V4ofY^| zA3y3ZL`sRAMr5Ze>LuPlIxA?6#*63rXw0C#55UF40IjvD^!EadPM6l%IRKNV8vwj! zkJf0+&f`!tcqM_ac+K9AnAVyg2>$k85Qd@gODG*~u~;k?fDeJGU|y22Na0^j3$a605iTN&*g zfbI}VEC&IKvmwY4KTg~tLM4?Pz`3XdOoKuI8K4)?K&FbYP&&;Se! a3;<9|Ngpp){tedv00001pw6o!9SwNW-7pxD$? z>EgK;2owsvLqQP8(y5nuC+L*1kOMT3t(&KUMGxT3!a=Bm;?yBf{2Fi7H$8#$|38nX z2Lu9vK;XXc6k9e;p`8~`Y#B9#btBNJp& z;O^toUnmP`V|^e-h*1HE$lX6Y?rS)_JR^-GXk&r0_zCd`F1Qc+AiptBXD72UNdW!+ z1OUiiS7>%#UmJ_fz6+TYzAFsa9T<{Hai}+C0RX5>$I=)*t;0EZyS+vl`={F2Bh!93 z*G)U>OR~RVZ%n>!+9T7ioyAowP?-*u8L!7$8bsu_%f-PIIBhw15wSNR5xG3iQP(xL l%LUtT68fbS2m}IC@C_IIb6@UyJe002ovPDHLkV1kFAl5qe4 delta 265 zcmV+k0rvjx0;B?vB!BBkL_t(|oMT`Z1*2dTjDk@x(g7ni47ufJ@gK%k+jN2?GnuGq zIXQr02QV-&FmTP>#K1Lk6Il*oA=R=c&tLujmhK1V3tOu(yiNCmJAhO`bO=0o{_6je z=dVzFcl5Rxoc#^S5u}6yNm0PLsDy!mfdOujwdyN|O$$CS2!C6v!5x9_FseEL*%2^+ z?1-bc#o(6D*YqPQ6o^g(GLmA9=uv*D3Bsl_`Lq@?U7zLw%8~_0N{8&lrf6dka P00006b<&8rZF97CLn}3d7ektbr-$9?|%t` z0HxG)0svtc4%TgUZzTZmd^~=Cp3SVn?FB{xZx095$Q$}IfvBnm>&<-5`+5yipMhqx z0YGaFfbaXC4ZAaNZL>&gO_C%eNpcneP)Z@CoK`?Z#Bpr&dpEud@;o2C2Ta2q4u``5 Z@Bt$_Q$`|$@|*ww002ovPDHLkV1guwjKcr` literal 5265 zcmeHKeK=HU8=oSksl-x??3zv#Wj@Xr%#0c2TcXKFgyPK18ICa@X2uw#l$1)fl0GS< zl`Z-}8zou1?M6u|EoCJa)t0tW*&)4WhQ6+M|LMBk{jW3EIdjha-1qOk@85kt&vVWe zw!ha5oGA{2!OZaSb`L=R@#+(+gI;CH$wL^7c2ROrs5}5l#7m@NJ`xAx0>{=)=3$Cd+J{P($?Z#J}+pBs`_s{GiU1O-(L4_ zaA+p6C?de1sxy`)$z5SeH+C#~j z&(XtvaLbsYC^x*W)~Y6?|CH5m(xTX(fgc6HAGp!Z+sh9=dK3Qe&!U&74bQK&{=TXE zz}vx9_iL>~H*c98?ev$$*=EcRb4vx;q;+~>kLmCR@bXZ@H?+Qa&a9I<+Z6l4oQ#sw zujDkF?<@(a#N7i%d;3(y<~vGkNQR>kn=eLI-?`e>6@S`|v~BeT^SauSr?S>N8GCUd z9Vvl3%ks?n7<)3066z~)`LjTyng^nDGnTXTaW9R%F0-V~+UFF+Bz~*o$($X`C{AIn zcfJ0MUfK1~(l%PQP5gi#&SJqFwpm&}xMW%Qi|RN>PezFC38t;PwcE-a=Z2r;JB`$L zXXEJRuZLzm0dUa`SuVsw`dUEJAO5-R^*cvi;UY}1OO*70;`-BX1KKRt9oJqn`KrFr z^+mcB*TN@7Y&<&UKRlhuE`*A{12Zje%k09b^GeAfQCuV62ZmQm ztfoRV$gF9)H#THNRC{SDxbcGk@L|o)@kwQZ%Rr$FyVr_T27Y?8-iT z3<`Qx2zb%6FHKKdzR)C7;G&;PAUoRZbzL73rJ%a5z}9ZTa*>`SSu!C*_A-lWslV)@t;t`s% z=loc7cF;OC3r_KS5_@mNc}MW0jV*cKMzC!k?-``OVN-b~DNA>yUNzn4KYFBq-du1o zw8Zyt#pdp5TW(#SNh{S%cloSGirk*|lbc-EA!hzb`r|j5#tTq@XSe zqhtGB)0+F<>z%c4MQp6yUS?ZJ5T?&c?M<4@)ZQQ;*yH!h`qTnT1FFpi9XMy%bO3ju zJZh_Z${O2sOWLC64ZG|5w?|z!yd~IiWE)Pe4D)mQ4FWMH<*1ioW7!*DS2Nw!Dt>gE zYIw*YMpeJ@8VH+nbprd_I_K}-yL{zzr+Y01f}C=tZ^)&4g&Zb>GaOpGGbiX6#DVMvR75&7xo?twsOs2FRFYT_2Pze%#9z4&(Uz@ zQ*_tOKCVZ+R>L@l+t4#J^GHrk(YD>n$bcAw2N_;Y*Uk_8)tx$Nqh|)PqJviO=q-ly-@>3u$Dps0CrYu17NL(KTyp*D(BH|kIDVjBY+!Qgi5$X}CB zNV|Ja1jn98@L$^?Ssl5upHVi~;&i5^w|-&4Cd$H71|=u`w`NeEE?6^~ULFbTbuFhD z(`U0Ybbf!8URVF@_pprLrjo4lFg1~816*V5)5%wB9;`8U^na<1b^KJ3yVmUkUEqZ=`Z(OR}C?n=2)v8562(ufHwQ14;gl;n;J)m5+KRTy5(iqbhf zJwL472f!ys?w&7^iQc`g?0=&bL6IKn@ail@WEW)cXA&xjf&H?~*9REH(p~TPc1H4E!!2-$$NeM|vAdyTG3Q3<@$mAXh z6l5Zxf3%PVp}R0C0G5dpq+HlT0gL4GK84_MKiEqWq;Z;bcw7=32MbYE8R`}M%%zu) zANzxanu2IVDA8DumB2?{87S=gXDbFfCVf?Lq}Qn)b#s$BW{P z$WV|Y@{xm)X;t*C zpDY8Y-M9>0UeMKw^kKQ0;7m>9zj#d4;$QTDLVtDgMf`rH>nmMf#K0FRf9Ge(8Favwhr-Tp~4FjmIfU*wjfqG})a#X+GB+$iHIN1}|fHe~A=`z$vz%T<{l z9IiU}rsv6@(QkI~=C`|S#!M?UWjNQRRWv7Avip>g_ljz@t`j`Yj#lh5)oOTfxl)!k zbn$9vlX=A%SDTUqBWA*jriEiB)&{$9-b*$bri90Dn!L*F5_+%|W8e61?z=_3(LL#* zUSXqj*R-Mqt&tER)Bdmvudc;qj^_b>1JRA8#NyMp4T#!G@UA}_>kMtbY3x~Vr3v&0 aEzHYJ4z!-&ywzwD7#|OR_j1>$4gUoj+4lMX diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/syndicate.rsi/equipped-BELT.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/syndicate.rsi/equipped-BELT.png index d49b6f112c062ca4deab896a5acd022e4f6faeaa..983ee61e781b7d000ed10e9bba1acf74962e1857 100644 GIT binary patch delta 116 zcmbQwIFWIJN-kq@kh>GZx^prw85kJ6JzX3_D(1Ys<;Z(LLBJ)jMIrg=nmJyoiU*He zbM`*e_+7;3*`H`;ph|`x3dY(>ufFspAB*|=rS3f=NDK%zOc!(PW?(pwuiv~$$h!Qz Qo)$>d)78&qol`;+0QJx+KL7v# delta 130 zcmbQpIG=HXN_Cp2i(^Q|oVT|&@*YqSU~x>@$)L5ITWc{}l8lv^)y$M-4VT&F^E4TN zpyqmY{MxOhzxrg$la^eIdN!wX<^9;@{1&>O7?XRB@PL#6!3Qrf&53po@=q$cDi-}} eknIv-XlP(}`X#pc&VzEX>4Tx04R}tkv&MmKpe$iQ^lecK|6>z zM5s=7Q4z;d#UfZJZG~1HOfLO`CJjl7i=*ILaPVWX>fqw6tAnc`2!4RLx;QDiNQwVT z3N2zhIPS;0dyl(!fY7Kg)$ED_s%9CfcudUZR>huI1Q5g^#(&T!F;h>Z7c=l2U-$6w z^)AA*ywCkP`jx!N0G~)4Wx8PzZxGLJS~}-_;t(rI3h_Ddq(K)Xe&o9B@*C%(!vfC? z8JW~PafnzfcCg&RtYoOfGsIy<)hJ)cx~y>C;;dF`taVTR!eCxoNpqd%DB@T`0!fIF zQ9~IOScuT7k$++$Mf))i|A^yHl1nC68H^kYs6vJ0_`(0+ceiF?ddf`-#(?e@+x{2_ zdUkuoK31Pp8g7uRh~-UBXofZ-=yG9*Xx(-aB? z;QfrgDF+PQ0=;W)Z>@ctJ^&f&YWW5@I0Pn&l)dip?tegMZ~vZY_4fmaQF5=6mejET z007uYL_t(|obB1M4Z<)Gh2euaJb=42w?&i_) zoH^7tcbgrHm00000006L?yQg2j;ZsLdkh`ZCqblxA+qPMjD_KCP!Q2!W1l1on5OBlEQ_7z*~Y4}>+PQUzLzZ`4ug$VrHaeP-IIFw*IZ?0 zHtOMX=K=r#00000000!D#7bU9F}$=L{w7r=U+e-lm!^4MK`{lYio2&SgjCmcmR7n5 kxhnah{Ppkv0ARNVe^6K^tIRuv00000NkvXXt^-0~g1zZ5>i_@% delta 267 zcmV+m0rdW%1*HOzBYyzwNklC~000000D#M4jJ5X+-NYE{d7jM*XjSf$M@WpZh7h!E zn@8L?Ip=1@K6`|eQY1+s1WBsvx(*(>();q`IC@2X;!?oA?|(xnEX>4Tx04R}tkv&MmKpe$iQ^lecK|6>z zM5s=7Q4z;d#UfZJZG~1HOfLO`CJjl7i=*ILaPVWX>fqw6tAnc`2!4RLx;QDiNQwVT z3N2zhIPS;0dyl(!fY7Kg)$ED_s%9CfcudUZR>huI1Q5g^#(&T!F;h>Z7c=l2U-$6w z^)AA*ywCkP`jx!N0G~)4Wx8PzZxGLJS~}-_;t(rI3h_Ddq(K)Xe&o9B@*C%(!vfC? z8JW~PafnzfcCg&RtYoOfGsIy<)hJ)cx~y>C;;dF`taVTR!eCxoNpqd%DB@T`0!fIF zQ9~IOScuT7k$++$Mf))i|A^yHl1nC68H^kYs6vJ0_`(0+ceiF?ddf`-#(?e@+x{2_ zdUkuoK31Pp8g7uRh~-UBXofZ-=yG9*Xx(-aB? z;QfrgDF+PQ0=;W)Z>@ctJ^&f&YWW5@I0Pn&l)dip?tegMZ~vZY_4fmaQF5=6mejET z007uYL_t(|obB1M4TCTggyEOW;Q`#yumxfRhDpH|ULa%8(IC-Mq(nlZV*;mwB2p4e zaKelJuXb_o1l5TE00000002*=Y3hHSVQ=S<$JW}zmrxW%P`;o7ME}n$u@7PZ!6KiaBp@?d5GY5NLa-d`fCc$(m=kdc_Ogb_w2S@0-Laz-%EZ z=qqIX@c8mQ{=IA7`z`yW!^8jvd!Eke4o}~4Ws}avFRD+T?0zcuZm)QD?nm>5uXin} ziR3Og=bF8?;{DS1zu!-qyI@_mpl9?U+oul6J~_9;T%K6|DYWRjs;_w7famb>{7HEZ z91ElPXFrcT`$4g#wpc2;>)-qEs3NFU3=FPb`X2rtzk6T!5SI{s`&6auzD%jD+$Zw< ww}<{T@y%NGDST6WN5+~{{En==3=CVU8N!~VXCM68E&+0?r>mdKI;Vst0PQ1hj{pDw diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/syndicate.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/syndicate.rsi/meta.json index bd6e6c3748..6b70636a07 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/syndicate.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/syndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Modified from sprite taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/f18aa05685f13c8b424867e4219a1e727019c026", + "copyright": "Made by ps3moira (github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/syndicate.rsi/open.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/syndicate.rsi/open.png index be3d3778075106136b251dc3ab5a599117ed110e..9d5e3cbbdbfd4253f8d2a58c0a927da2b6369493 100644 GIT binary patch delta 369 zcmV-%0gnE>D*FYHBNYLKX+uL$Nkc;*aB^>EX>4Tx04R~OWCeBsf8Uf4U;qFCF-b&0 zR9J=Wl`%`hKp2J}#W5Yab;u8pLZOv&ak^Cy{0kinndC(M4FN%L4hh7cQV_bdbUttj zbjxroxOV?#Q1AoX%$Z1qK7&CljcuZUwB?066CW==b}d zf$Z$J93QgCIfpR@W6VwjpsFh3IPO-!IY*io3`b*zqcLe-PwXU;B#~|>JAyclxxBgt z;Pw0rfazjInitI9X5!{zfv-##s~@$pEQzA1+rJ>oveuVS+T7#ucsu|fT-Rlz+%Gq& P00000NkvXXu0mjf;ispV literal 5436 zcmeHLdpK0<8ei_0Qi?)lH-<`T%*D(wlac%V79*F0Wo8W{b1^d*QzSK#jU4T2XH#-X z7umV)kYaO+BuP7)c1qhJQR%oObeuIqx99ACdY-fYYvx&N)_TA9{k`w|d*AQ-)|w-p z?hb0IYg7RMP;+v$^@4v9l0#V$KJ!JQ2>?()h^T%7FEAFt<#8CyNC+W_<3b2X$YcP3 zu=l0!uB^vq%I~|47%GY?2TmLe^66>Zx_?>q?786K!s2l(VbyGqo{P4OQfAJ>Cr@H# zmT2)&7g7RPRo`88-jc4XyREdX<3t9pdgz~THBSep72lGl86F%Q>3q>Xk9S`#qZKtV za0;>Zt?hnN=WW!JAeCC*yJvSy457|HPQnFi2$qbsl@t)WhBi(_cfO+^**&l6R(3Mt zM%+#zNA+Rroh{xL_juJV2iEO(@9EU5lt1^JFtOyExgQ(kw(Lz11*)xi=~;EHZ9?|A z!_mI=9zS;)?W-8@buV2$^Gb+}Bm86i$k_Pt?;leVNbHyQTnc>qj?VXWO)*VM#=QDp zh}KSy1qd3t%WSu@R4)3ol%(j%rPuWnZ6_@a@6guizRj~=dX=~;d!Uk;E4Y`KD)tSv zI~>QgP(p1n{ccm%26k_WC66JODtBe5VdCtP+_q|3A)nB6`&h$mc~CRzP0zOYDRI62 zs+47Wr&UGR!xd-k5n8C<6O~^+y1*k(4=2Pcl)yT{}z$Hzqxo~WArppN=(ueArEo`r%UZ{#l&wrj>Ww7e<#faVqs9o5y zhzLgewWv13?E4X2jLU@BlHtrz;iJZF0-n-0`s5PJ&b5vC=aR~~uxrV;y)tI}pH)e0_p zAPsLHk!JvD-g<~q87pda!zji`ELYPo8lG07o}9JvM>o~x#1Q}H@?n*_X07}Kf1KpH z1Oz?3IlsC_^IrVQnqRKgAMQ;_7=gsZ@`o%Vwb>pQ9ozolSpA%?>g-S#`JjP|peKxH!!YYpAqg zVCaF7)jftoJjt4AfIs?VX!QEdNmkYA+z4otI6|shL+m?Me{{#}o#D}|1sS?)kDuE$ zRYhv?a}(=^ue)w?AU|YXs%&L{261m|hEe1W^P8>~@elRYN$pmIKygvfV1K0Goq>DZ z`mPCY`<`q&r57=RE3-RwFUct-ddm|#|$p@PLGDaIVJh$@)wg)V~Q^;XSC#%!_^ZjR;HuN+OQ96mp7 zRvtSVk{>5_(6GMY5U!Gzyn92&t4%8pHS~&ZQQOtZxaIlpjptm?goL*;-l^5BcbWyK zcY7Z%n-`psb-f~|mvt!fU#VtEQ;yTS!=Cwj=pRs&8`hPc%NOF zWEYRV?3QxFy@px_X3IUlGgE#VvYwNk%5O$LD4eK4p5wdr+-g9YW#~cA69SlxKXo|B z52YNV;MZpq{;Eta5>i7ot)3^OzYa3Z_;nhH*cf&{wZCh6q-g4w-$u75{bxLBjCpve zb?3ZN?yD_h8uKF?06<2}w6XDYva$KFR>CV}PJ9-{vB^_Y?BQL6L@kR^k81JUU5PMy zcHYO(TI{){@JJzbtsaO_zA_df`Oy~0=g zDR!{9TQ@Y;7cX(jM4xJ6XL>w8w>6HyZFp3uY%3icl)U)D1yOWEM4el{-| zXLMyn@z3t5V*JZZ`{oXo1|v^em*TWZt3AbvJ(CA-G`{W$5VxwJH|GGg!Rv--+R86w z+iU;aw|<-ZxV*B3oUiCnFbgm_Q`r3|U{v|}BSquVN7>~{fv*5LkL1YPrJ98sG*ugB zbtvA;p5IUqbziHgnu?kM=;1prtbO`4GvP-h^z-Z=b;W%4{8Z)OTe(0S?{v3AZ!x^7 ztzp8Om!F#}nZ{umgLF@PG0OvWd&zKBgS zB2DM>Kw$HaxL;_0$X%)oYq`0RZ8@}PNqA1S6r{vIna-gx>164pDGq}*qhs(W0u+it z;mv3`RA?xKL191>0ucmh3=D|*49bbk7l3RUB!Pm#jhQeGgu!DW291V-=p<7Vo&*w6 zASRTKB47v@JZQ==q0@1nL3r?(a94tnpGPHuqQg)mnn|b`31fz$VXVc#K3}5C_0U7&*8B^xSUKD7zUxa>@ewogmAKzrxOKD)Ed21q|4L zf^=oFqlKSTsZ18+EdV8KVu^Sh#sp8m!zUArDe;riPKd{cJ5hp(#Tetvq$85Dkl|!t zVnIot!T?e^oD1282Y~_(kILahQjn4W5E4sidn3#jisH!R!y0jtj$iC~ZzyWvZea>U zGNnTZgtTqRAZ@`3AB=(MQb(}e!VoPSWQRfU{9bIR4|3*T6bplc`J~gZC@ct98BZdF zqDWZ0DT)L_W~K}rM5GfJiuDnl&tV8+K^|lk24@Oq12>Q~8-$^h%FSQK5*rRlc*4MQ z8v{GRQL!X49!JK(9Yr8xFi7-b!f45?{*bXb`hPevmnwX=48V2^GI)7`S1a_#`X-m)S0Tkv7YAElUh>VWFFpoKRJe}*d;nOYAvt7#>>O=as3dT5vr`(BQ3H%L zt9f-wuxQZ9){5%aL<`YYCa+q z#RP-%uK;UH##`s)Xmn7f=4ICh<#Qs2aub`$>K#nl)DaA}%j`}Taoe1n5)B-zsG$}+ z-*nTbb4m>Ti2IQT8^!Obs1!$cIcNyoFK`TU(|@U(_)6V*Yq2vi5LR#|S@M+xIxiY+ w0G&Loc0qe`i(aNqcvA~T)xObCTfs&J0CI?)R-HVmTzlN1jt^fc4 diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/syndicate.rsi/trash.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/syndicate.rsi/trash.png index 89222ad9b2a5a8664fb3256d8555619c7e50e01a..6eeb31fd76ccba116935dac0e859ccb841010575 100644 GIT binary patch delta 735 zcmV<50wDeQDfR`BBYy#eX+uL$Nkc;*aB^>EX>4Tx04R}tkv&MmKpe$iQ^lecK|6>z zM5s=7Q4z;d#UfZJZG~1HOfLO`CJjl7i=*ILaPVWX>fqw6tAnc`2!4RLx;QDiNQwVT z3N2zhIPS;0dyl(!fY7Kg)$ED_s%9CfcudUZR>huI1Q5g^#(&T!F;h>Z7c=l2U-$6w z^)AA*ywCkP`jx!N0G~)4Wx8PzZxGLJS~}-_;t(rI3h_Ddq(K)Xe&o9B@*C%(!vfC? z8JW~PafnzfcCg&RtYoOfGsIy<)hJ)cx~y>C;;dF`taVTR!eCxoNpqd%DB@T`0!fIF zQ9~IOScuT7k$++$Mf))i|A^yHl1nC68H^kYs6vJ0_`(0+ceiF?ddf`-#(?e@+x{2_ zdUkuoK31Pp8g7uRh~-UBXofZ-=yG9*Xx(-aB? z;QfrgDF+PQ0=;W)Z>@ctJ^&f&YWW5@I0Pn&l)dip?tegMZ~vZY_4fmaQF5=6mejET z00AvYL_t(oh3%BFYQr!TMUPAOpusqUAyYwXio0tK1l&((p{ApM!N1_qXz8b9Z)jFS zr+|lm2V?NA4ow`>La`ce(U~L=@17@#2M&kB;kb6ZOAAC%WQP0gc57Ah_R?S}B>+`b z5r!dvv44>mEughF07;T~Q52cS!+}yMvbF^v3qz`^Ith)IxEUM1TF0!`aW7ITh1_h& zX0x$9{9j__W-16O4BsoVaHp@+LrM63^rKbz>rd@etmk1 zuIsF7jQWI0l6YEUp58wI$nzW_#95>)`?c@;(^v}(d3||C2+@a@^EtlnbGO^^xm;4$ zHFaH&u4gqgwAQ953gF!7&oJ9TWIYMB)@HF-u;1?~io!Z@5>B(g;cz&n;0wo2ZLnKk R8>|2T002ovPDHLkV1o83UnBqk literal 5369 zcmeHKdpJ~U7auf{ZbY6zoimO4k{Yw;f|+4lr_5BCCWPv+&Fo=hE@lQpbWl@K61qq? zlB07735BF0xpcaqh{)+eIZ3(H`AE*5q1*GFe|nzp{MS3rp4of7YyH+*zqQ`?ogL3| zb)Kzlq>VrzW-}RdHvEfLURu-PZ)s%YFaj~{L8QBvj17jP#S#&Z9}J;o5n>1p$@x44 zLf+oLVROpjWm?2KXJjXq3HFgj<|_GG}B=jk%>drg?z&E_zp>;oygqqMj_6YndV zedTFVSMRfjJR4${UU+zM`8MPLBWgb>)tUf}Un+EPe^<+33c`-zU;?a$>eT z&lpx@^u4<#ue>vet-7o$8(5LK?#_@wi_qa(t9qyUXlPzmaS$#ExNmXm2D5Ku&E03C zKKZI77mfdQtzpPEA3VeE>KV{*E zRtKZgjz2q==l`(HZLyTp9&9gJjZB%-wgiaobL=hce=U3Ed2VQNA;AHq@Qo_XzJ0kc zd=v6imaPC;nO5D#GTFc9hhY01Zw2nO+3y2IC$D(KWb8cnB!Pqq+l1NKl*B+Uy`#SB zy1dh&C}L(zd|`>B;XE{=g>gW8VQnxS;3Dl8{&t@GgMEy9gd_772HEDm@9dj|yY&qX zX|8F`fW|ztm9yHq^VRZ>&HunDySA%5f#-n@@+slt*pj>Kgo9cMoi!3di9hdN`iPmu zhO^l|XG`vNU7Qj3OKDTyz56}`ZRedNH#!#1s+{`+Vek&Ap>UnEapxblCpK4Jj2P*O z9y}2L7rwFBJK$*a-MHmvFUbx(A_Mqe2RGY~P4_G8KMJf!Y| z`UhFqJ|~RD(FByr?tZi-j*|@nvp%*26I)-MIbP|#um2Pr9 zl@&X;?`^E@lcNDo_2;}1n`C9i4WWNEW?|8Uc; zt&$^G{=BlZsN3@TxP!Mp=3d2(1+SWGLk!>PWuJOS*e4iKlrL%NU+6qm6z!Y%V#BQR zb$SkaV%zHs>8nDY3H6#YIe>P)n(d%zL{(Sgu%^YR!Ei6q(5(K@2c&xOqIf*ZqaA@z zQ}CUfSWG9UkDDC4wH=F2p)smi`U_FWo3TN9}6}_*!qSbb+Qt&-n z$r&$7kGTG)CRpe(s}d8V6{EYi;U=MH@iOG2(efPOZx!U*g9BsdF+pAa_V$ZUKs)(* zA{{qT`}E%E$EM5c&E8Pnq%k!YZ+lw)_>FPzsYdnNd()2$+k_nOS`k**bTy9~RI|PY z@6o)>w=ObI()BpcBPcJ_bz8OgCtvR#>e)q$&+T5q(8}kUM!nyj z?~6I?m`^}a3|NZk4@S0ET^)Gfqo|*OTXqal?z^CugVO3(|GoT4)Q{G#L({ZuH8w}<7dkT1fcw%yDq9%_gG>eVj}}sQ`0&QDA*m=-!hu$XK|-0ymk?aeCwpMwQN&fxzaUaKF<2n7c|D z)^c&7(nXw5Wq3?F4Wsl=<%&3bE>(3)BI2!xmJ~de=Z}Z5B#M;W3j!37LQ+9-In-4m zi2#Jl$rpeD5Kb%%P)#Tar#i5hGz`HU_$*-sgEAg$K*Ox%3q$3fC*1i0XuS+nvWd4O z5db2|f@nn{k^l>f&q|(`xFLHS-`naog@$_6G_}f zqF@?E84_A)scLVu&16v+d?~CEq3rmno?j1zOg>F6fndIB3XN8^EzI(y6Db%5aaE3B zyU8g|ASeug;PpM#P#@*|e<&6}ppgB!@TwyaEXY_Aj|X8v5?p>OB9DltfCLheI7!w z?{s|=1K*_ly}Q2C^-T9SI@M{PF3Ot%*0wi_1pG3gHOUez2w6f(4#D^($46r4|!DqH#y^uhqik$N?z6vZJ5ZK zH}pr;_L*abDYF**F(<=Y%O>JO-$ZI}0W0d==*V)i^$V-H-kJ7neVJh&9)QP+qjt%$ z@NjT<-wR$Sw%mSIF)nt_u-@CpNAzf+?89pQY%Ss)KU(NPoB-Tj7v)pho6K=gR> jMB4&__NuF%SRCZ;#IWw1%u5Ca25nCl$B>BDx91#r84NfW42`mH%v|m%E2Us_`@gC< mBZK$7v-U5~edAzYh-F=|fhpj**!(*{Z492SelF{r5}E*iaU4zn delta 72 zcmXR+pP=Hb=jq}Y64CnhqN5;#f&lYIJ}-lI?>&tj)n6uS+{k2R5dQwgT()4V{0epk bh7#4EVV9U(9i{$BFaUw4tDnm{r-UW|u>~0) diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/visualizer.rsi/cig2.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/visualizer.rsi/cig2.png index 446d606c89a16e6907f7c0b53e95e087626d7f81..fecc21f89cf4b7d2daba2ed4bc08c8904336ef51 100644 GIT binary patch delta 81 zcmc~On4sdrSRCZ;#IWw1%u5Ca1}#q)$B>BDx91Fb85}qcI5hdI?A;K~D#!8o?!6^~ l3(Bxj&522WQ%mvv4FO#qh+9DD!( delta 73 zcmXTOn4sdK@9E+g64CnhVjw4j0)z9xM9G@TUyiW{3;OXk;vd$@?2>?)W9nJs% diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/visualizer.rsi/cig3.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/visualizer.rsi/cig3.png index 72e1aa40d45ded437115f0c125671dd4cc399cd5..d7568b10e6091558e9b92353b07942f41d07d1af 100644 GIT binary patch delta 81 zcmc~On4sdrSRCZ;#IWw1%u5Ca1}#q)$B>BDx91#r84NfW42`mH9K5`QkAFk@@BL4d l7!qEF?end#>t$dtxVl?{DS-LJ>+?We44$rjF6*2UngFU$9l8Jj delta 73 zcmXTOn4sdK@9E+g64CnhVjw4j0)z9xMDfWpE*!b#*z)&|YDErXgLw7X&)GXJ)-8}@ dV7M^#3DY80#=oCLMFbdtz|+;wWt~$(698D-9RmOW diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/visualizer.rsi/cig4.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/visualizer.rsi/cig4.png index 0d9b28188e69cf13575b58ae8909e50f45b6c416..8693f90fa9ab6dd606a3b436002148615f182717 100644 GIT binary patch delta 81 zcmc~On4sdrSRCZ;#IWw1%u5Ca1}#q)$B>BDx91#r84P%iY{;@lVl{ dFkG1Wgel_^ldBd-LoNdlc)I$ztaD0e0svca9P$7F diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/visualizer.rsi/cig6.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/visualizer.rsi/cig6.png index 8f39716ef266b18cdbb7adac7b4399f3b1bcab85..05de69192225dfffabcd5db29aef66f128e8e041 100644 GIT binary patch delta 80 zcmd1EpP=H+SRCZ;#IWw1%u5Ca22D>F$B>BDw`UA_84NfW44V8^d~bv_vLCw1mBGTG k^C!Hv^l2yy!+~oIyQeX2bqW8d57flq>FVdQ&MBb@0635vF8}}l delta 73 zcmd1Ln4sdK@9E+g64CnhVjw4j0)z9xM9G^__b3QNtfv2mV%Q~loCIB_69YFv9 diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/visualizer.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/visualizer.rsi/meta.json index 9e0bb8c848..d5fe85aa8f 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/visualizer.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/Packs/visualizer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/f18aa05685f13c8b424867e4219a1e727019c026", + "copyright": "Made by ps3moira (github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Decoration/present.rsi/meta.json b/Resources/Textures/Objects/Decoration/present.rsi/meta.json index aa1e0acf4c..a86780f63c 100644 --- a/Resources/Textures/Objects/Decoration/present.rsi/meta.json +++ b/Resources/Textures/Objects/Decoration/present.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made with love by Shaeone", + "copyright": "Made with love by Shaeone, modified by ps3moira (github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Decoration/present.rsi/present.png b/Resources/Textures/Objects/Decoration/present.rsi/present.png index 2763474a10941682b57e6206bc003f89d503d84d..bd70a5c6b03cd050740fae7fc79bee3f4c86194e 100644 GIT binary patch delta 511 zcmV{Uh9sEI2tBR|gy%WO8mKVKQhZ1`-Tt9M9nj+?DnY5aZHs zatU{R?|naceYAyGvHn?(>7ozA@Ei%DnCFgUoY&C7O`5X>wA!+u*N_H-!b%5%=HppQSzGi} zMl38rG9mY=L!75F;`K%DH+NvKi1Yp+jazN_{*-4k0q8>j^g)_$u%3X;{VcURmrQzS z4A3eLb5AWER)2s>32|^Ne>dNB2tYH>r1jj#dsw_QLl^-nB}D$*h8V8v3)tR;=Gl}0 zw}cNcer*jpo#A0N3nziVtI^zR*NrMWJ^(=1H(%)=xGwaR zfaUDiMp3dp2LQVM8d1-cP=5vR;V%^=RPOX3##^9*0C=q00;hm5cA(`i6~t@kF_B%F z1wa&t*U&*CXJl3Y8c16Q3C_r*AQJ%$K-xM;a9AhNSVL$60Z1w!s_M^BusrUk>c9vH z`iub7fx_i4zK9CoRKnf|&(X!|fqa{JtXQ!CegGS>rOWd*uLuAD002ovPDHLkV1gR; B=Q{uZ literal 3432 zcmcIn4R93I9X~Qn#snA`TPsQvw+jp(>E3?b-hROGVGc;J2O(U{g?6UA+kJc4a<{we zZZ4M;?L|u?GfIGt)d4ECgQyghYIN+^khU;nO086+gkh>_OQS;zL<`C|8vEYe(py7mIvdQLU68XjUBhGbtNs`+SR*WNe^rgdP!x3BwGLmwtJe zBn&M?HVF|XV%NYHqqf6=>pE6P)sBs-tdUC=6N@qmGLV8EATp_>=_;8JnX{{)cRWm! zL{7!q7$TQpheRw=Pt;frB!Yg1QW=ILMA^><1ALJA8o@CfLo*!B@)W}=jHqxNQMgFt z&CztFA-tmC3w?#i7SFR4nr>@r^SAMS%Sq6zEX&vi$5BXwa@$Q0WGK^}HDVzQUDYvc z&#+7aTLf{d)eDg*(tHXjyJ*&Q3os$T=nSxF*3aOSa*CQ-)U#WiWX`#!(l7~A(DYoS z%NBL*7R$5T7Hb^SMe%hG5VVm<(Z`svq*6r}uD3jm(kK8jrnVbxw;|mCU8~hm;qo*J zbJj>UuGavs;dukok$Q2mXXxY1#gglif*E5RRV*p0+DeTBfoC~U%Sw)Lr+x%Qf!r7DG;c}jAHVt5lb`l_R*>w#RyT3Raj9G zg4d}c7Hhx*6Dn(}qFYW1pfxa3AOUIHOpruzWtAE$X*tL-ijE&WURP67?^wE#L;|;A z<()*`@|qwk2ZI#nXLI33B1)aXZjDY6c=fXW0Yo)rRAoD0a51Ojmi z@Dih`P!8uF-WmN$WcK#AW@Pevy`Sw5+eXk zIxCy-wgH<|`o3yvf(vGVY*Lp=_`jC|$B>WvIc z#=-_d#?1x6k7(y4&DTqCyTcW!)EX`#W_zI_t%I8iZ%Kp56`=yueE2G+Fx1GxurbCW z-WXhYvu!O90re@=&a1hW?zI62E=wSECoCO$+~6%U4V_Wp+rR;+r$fgLk-B50h$77i z&mw?rCk-{Xm~`6I3VpN4FLGQzE=YemL{ePiHI-*6J}63*z+j#S#5kq%0Y=wl21*<% zs82$KN}7){f+7UaHZoGu{|iI~+iD9i6AL$L;rUt%72IRNUp%uncL8nv3iblgB(OVyn?og2{sO(axAN}DkZ@-8$&V`jrLm za6Vtj^t$k}Xl%=cM-E#jmwxHklCIeHAAkFaDOL3k9DRLKbLGP3sprQQA8p1)k({O8c&?_6@}OPja7w*G~? zLj6X1;PHo>4xWb%Q)Vtm{PT1hBNF@I?+D_)X;9UC))hp8D&l{Z)_doqu85 zhRnRqLB6LmyLrnK=Z0e+{%v|C)%)F_TBV21cg}t|yJ=qe@H5XxJ3E}+FK<}e*}ck0 zRCHI}&rd&lwA$W3^!MEl?me8Tbt@p}&d&(4|?3=SU z_1yR5;M}cWcHTeMyXJx4Egih~;v}MJ=kNb=Ti^MvuA@J!zEH9Bv5$ri^#0`5XLg;S z9;)1MN8caktbO($FI@RK>e7$5mO66=$t~yZI(_Ej^65hVp2pTa$;kt^OR|(be*Cv@ zw-5bd@anzyTc}IHVrS$NtZ&wXe b4bWGqSKj|t?aXfcU#M>R>hQC7Zn*D10I{LI diff --git a/Resources/Textures/Objects/Devices/flatpack.rsi/ame-part.png b/Resources/Textures/Objects/Devices/flatpack.rsi/ame-part.png index 320d84905cac876a2502ac957f15296e8065abd8..3116c6c6e5504ea148d62596a47be24bd4e63101 100644 GIT binary patch delta 444 zcmV;t0YmPx$k4Z#9R9J=WmN84iKp2K!#i?ZI)Fgs* zPN7iRSm>l8C|!mAh5mu!P&$Z%IJryv6NIisLDWeo(N+q%t|FLRCWmV})}<*|q?a@r zT<%$NNxt0seqXrn4vHJgpT!jzzK(<%p#}=Y{C})mF2xe>_g_LyY=w#M zAMC{ve|&g?s%Ai`CyZNZpis=uR5b%)leNVu^`NSmNU_2S7&!v~Kx~4O-j{HqZZ!=f zXTYB@Q0hU`b-0cb-$0N7u?Z97W0LIlbK5E-&HP0hWc5!)z z()9@M)%4#O2!GHu4Vtc_ZJMZC*5WyTKOT=Gi}Gx)`$5|@m#zWR=`>jbe71pj-Lifd zNz4FW`c>mZ4e*(+8YgOiFE{@yep>#c!x!iysB~~C3eG}}(o)EsMX;um!)?~Ow2**FZW@cr{ic)TB>#7BNDdeb2E#wI zq0>~WSLUk*4By7F8CyEx#bP0Ku;)$Dxi40rRWUsa8E0uP%R<0!gAg-VJXm4|ObD#LIi_0^1U&g!_ z^4bEM+MNr!wjFz%mec~l(5&I91-iCP$8kd89mmNel1gA19#^kbAh^<~daVM%?GC<* zEIW|+8Oo~$%3qZsiQj4frF>+w0fGL^0sx{cI5|DUvZ8-PO8JPg2%Yo1>E8$}IlBFf zyw+>w0q|!EfYET2IEX-F8XmU}R+@wl{U@zSYcLoLKLko?)+d(h!Tk|(n6;c0wF@zwm67C$f0x) z2k|F~gQ#nu(jwetDYzwJXJ?py;l z?;qL>qd=0z-E?~46rN>kqr{mhe7=}Dg}=VMfzkj{R@%Bh1%Hw>?kEi)xcGOtlocoq ztZKDyAeuw~0KtW^6G{U_lL*behLjaT#!wc8yMXFIZ~;OFAY^3ROmKnW@Z7q4tpITN zj^ptNtL2^5X7>-b$g=hE1QaX`5i+K&$@APg^e3lItA3$v+kORH@dCXIX#axwVg|tl zin2semd4HMx>EUGa})vKFb$Wh8xS%uhO5b`kg_tKhE{U`0Cu}i?Q=DJntcrb*lxDQ raKLaJUtM21-vgc=pRMj19*^e>yPRdgDYmpm00000NkvXXu0mjf!X=** delta 291 zcmV+;0o?w91Iq%CF@FU~L_t(oh3%C;O9Md=N1tMK**aHA0;%>Ok`(3R;r7sg#oK!@ z<3tjkrrp-TRkcC#FDQ_Yhug{IjHIKmrKPGidu!9Qi_SE@c7GUCFv>@KuGc>k*iB$d zi&6PAyz;dx{JVYS4 phL_jp2VKIK=NwnjrHw=)kuTU_NacRkzTE%-002ovPDHLkV1gB@j;R0u diff --git a/Resources/Textures/Objects/Devices/flatpack.rsi/containment-field-generator.png b/Resources/Textures/Objects/Devices/flatpack.rsi/containment-field-generator.png index 63c0450e730199ddd53fce86f27060ca797d6324..83d334c6e71a10e31854b02111430416378a90a7 100644 GIT binary patch delta 462 zcmV;<0Wto=1Ly;gB!2;OQb$4nuFf3k0004^NklU z$Gh~Xy5w0d9M9eJyBG4_0g)m_iuBK#3S-J-(;d+O^76{e;C}*SvgwYluLy-#D$iVq z8D99>`l?X)c)l(=!18V0Wp4 z(z}9U{v_09r+;V1*k3kKc#BO2ASk(-NFbrAz4>z=I2xxY1gc`-EC zZns6Y5(D_$I}i$+7{I6s{24><#lx6`K=|&-1OU3-Fkd`^EJw2%Q8zs3oPj8HxVIq}AW&hG za$7L~_?`;@sF4~s9N=8XTiYAL?||Ez`%rI5B5C8xG delta 425 zcmV;a0apI#1H%K5B!3BTNLh0L01FZT01FZU(%pXi0004XNkldQw%N~Lbz@?FO{!~J4CrX}d2mDUVCdvXripX}rfQG=) zqesCWgVBV1iGNR?UqwcLch6LXIPt4Hw@sWBBsrI@}y6zAa%$9R2&lm1RVe>T0uoI2voVe z#9I`D)PU53z{Lv}83R@}j znzn9nC@r>Xl7^y7{wX;*_x#_zNzT0xC{Un4|E!RgqSg2O3jf|NJz_<#9!pMCp zl^S06dcBE^CkDvna=*rOUH4@^5rBSp$bLFK5^FRXJnVj;^9KOfHW#4~+WPu1WEh5T zV^07tZyi7aK+`k~+vcmKrfJ_G`eUZ_7hKkpSe8k%)ng)`&r>RuMxKwyEUU|9JqdX4 zp02Mzjj9|S>qwGQBkG$EI_E$_v|V>Y&)-01Te!AjfNsYEpi-{5nuE)BytB9E`y6n6 gb?fP@5hzfgPkB9+^vP#pS^xk507*qoM6N<$f*7RV_y7O^ delta 310 zcmey#e2i&=WIZzj1B1(wu46!ou{g-xiDBJ2nU_EgOS+@4BLl<6e(pbstU$g&fKQ04 zfswAer*m3HLP2rP*_meVH#^2B#RP}?{{R1f{rdG?U0wef7-C~%?dO>_%)r2R7=#&*=dVZs>S*?KaSXBWe>?FtUxNaN z+d=O#{l-vQXYsAjjLoUyp}3N3gOq1CLj`-lBb|mz89K=U+B4*sv`RQv zNjDW1ADTHWA;0M@C%2){HIMikWryUO1!sTXXWg{zftvkWU6Z2UO|SH)Ex5dN$DE+J smRDD1{Ep=K@~ diff --git a/Resources/Textures/Objects/Devices/flatpack.rsi/fax-machine.png b/Resources/Textures/Objects/Devices/flatpack.rsi/fax-machine.png index 428918e73103bb12c6fd84ed3cbd52c18847456a..c7872e1916e7a40eac7332bd8aca2b6c70ef0530 100644 GIT binary patch delta 429 zcmV;e0aE_01JnbMF@KIpL_t(oh3%F=>r~>lJrbI@5Q#TwBbE5;%YPdPQQ^Al*tnwxD%EmG zhzjPg#Nw{I1|h0cZ0rdbB?AD!945?!5EVwrfWP5z-8D2_$7;DuZy?HmISh)DhoTgP zn=yx>P`H%NKGp#6UB|1dB5rRism<;m?qJ)apED4lYZ^3N2LSYXJ>+sZ1VMm)zrT%{ z&1TY~yPPKpHh)d?=z9Ss0JU007Q?ByHVCheW&63U@o9 zqU2*Y;@scsoSLpzr6^Uv7tQS+~TIiHOX{e=Zdnl+GoW!+j z{;jOybVEeMLEJ(sEkZICoLbW*%OxG_Vgj``y(FT`eN*!8UEcS&a1W43B$9vTKqSfN zwAMunOkUqIYaEFbSJhhX!a=Zv$i7SgqtjaVdM8k-1it4Z2!ED4b5*qlP1g`d9IiV? z+i2rsu_z~ybl`hF2vI;tBlBav=c8Uf7V2C`003NfjApZeyIYpVhQlE$l?qm?6>Qs1 zoVQMT5eUmnxqnyziEW!;>@0&&ElR0#lJHhbThms~z^!~p=)$#m}^0tBYv`Q>S$ jN%(O8Bs6Iy5{cv!-JEd&LsJ*g00000NkvXXu0mjfx$v~b diff --git a/Resources/Textures/Objects/Devices/flatpack.rsi/grounding-rod.png b/Resources/Textures/Objects/Devices/flatpack.rsi/grounding-rod.png index 847aab55366ca2d1608537db0e1bc583b8ec7d83..e4b67a0966edae1a2979be6aafe74be4b277642c 100644 GIT binary patch delta 485 zcmVTpBP}E5%XqAJeIvDN-o42cJJJz8_ zs6XV!%uYdiFRBUr=gO%wj#eZXO0}!-aOQ%U|+T*%y+nA==;?Wm)8wvsjk({s1?(&1d1R z>+)-N7}s@Qgm}6~rqI7&=UT`29qOJ(-SaRE1H&+SJYJPbPG00000NkvXXu0mjf{F&}J delta 443 zcmV;s0Yv`)1JwhNB!3BTNLh0L01FZT01FZU(%pXi0004pNkl^27!hZ|nbRVB$H5RzRB(5k+ z9BroVIG;$;7i)mTRdowePKMRDpzVKSZ8;PRrw-sa%20phpc@+{XU%yZ1J z$f?ILjL_C7et(n>YapzV#2f2oqzUd)!FnnK&1MswXBBj2MJfX%x_W<_Rom-NWkA<; zl#fcFGb>mF^p6KYqPA`0gb*;&qR;v{`({)E6{&*vBx|2F< zfS9!5cI!278AXA_i5CQ|V-BnVTCKE-3GJE_yNZcJd^AF@+XMFy5s!ThclNeZy@WT{ lckFB~9Z?qvhy?ye0>3o{br$iqy9EFM002ovPDHLkV1kZg%60$% diff --git a/Resources/Textures/Objects/Devices/flatpack.rsi/icon-default.png b/Resources/Textures/Objects/Devices/flatpack.rsi/icon-default.png index da9da035a06495de4b261a65c028eda03c43ae2a..a7aa8023f3e9412bb1e9c161299b71e1d8a608c2 100644 GIT binary patch delta 112 zcmZ3_xSnx>Tc(CY!U2!2N4~So{<@2Q{`^__Bu~i!r&Vn)jh`L9Ia9K8$_?LL%w~DF zPAaIXwjNr(nt7gm{jq|lr$Q~_-Q8#J<4XX7g3?mg!V4M_tcw#wdYHTz8H|lZ&d=^> Qe#`&_p00i_>zopr0C2u9y8r+H delta 112 zcmV-$0FVE#0j~j&Mri;8Mp89w+O+9Ex|pAzAIavx01G*qrq7rUXJ=+4l50144%oP9 zCxeuf6bhfN4tW0j8N-z;SK)je9c}tLfPsO5!PV6j#X+NB6pVsVFbYNiB>(`~2Ncgx Sto^nC000000000NkvXXu0mjf+tMWu diff --git a/Resources/Textures/Objects/Devices/flatpack.rsi/radiation-collector.png b/Resources/Textures/Objects/Devices/flatpack.rsi/radiation-collector.png index 34411a4c745195f3dfafe343f6cea67b15d44280..40cf75ad49104e250317160de585711af479c3e0 100644 GIT binary patch delta 498 zcmV6IFCp(f`HYLJ+)QrLEr zJ;sA>ApV)ztWq!goOWj3ncr{T9o`v8NJvO{U`C<@#@%WlU&!?gBaKsch8CByjbWrC#VRvkWi0@l zx`?kNj+M3Oc6_94lQB))Rx7@Na0gD^L5MNRyJL!F1VUWIPEAcl z-o4TQz?&yk%73Q@t1D}f7F*wV&+<&2((m#6F%YKQ%w))zCY4GB&-41@sZ@$$u?Rq; z(HNL>F9xo%^zj!dYp&n+b`JP+X&?xKp@d@@2+o?|91OPa$WR7)f6oZ6wEwGtop(zV ztFNipAMPw1GO8LpX?CvlZ9m<_^Spt>sGFlgnSrfi8*ATpXt^#e*F^|{5Mm&vR;%^D zeZR}ru?gB!3BTNLh0L01FZT01FZU(%pXi0004*NklhYufS`1tW7+yZ`neg<1xTR0zE6yb9X!4N>#?7!wd1HYyPT=?Ve6AbT= z96+?!p$bWMz<>8Q&w!DA0&WkOPXQp=0slX}Vfc<@A&5^2AlU)C%lsK^PlYoaHd{%F zy>PuugiHbDadfaneHJ(&A}2)0wQAaOd{D1kENCI-~NVAut*OBO?R=9ngP+HC-WL00000NkvXXu0mjf D)NjX! diff --git a/Resources/Textures/Objects/Devices/flatpack.rsi/singularity-generator.png b/Resources/Textures/Objects/Devices/flatpack.rsi/singularity-generator.png index b73a2cac28778a2695222eddbb36026a4ed6065a..62449e689114a9cb512ed06d5b39af54a1b0d3d2 100644 GIT binary patch delta 495 zcmVY6^zW#7Z?aMy7e2&@FM~E>QUB?@Z;sXRLaJw#wlA>{*3YkVhQI_7r!-L4H z4+Q{tchsiwQ-7mg{TOMoPoF<<^0Z6s$Np{rf-ToG88W)Q>bEQl+qT!dy{93KHqk#?E!*t$8k17+&h46+o-CFX_~02`qyi?cYpw*QmO1D93&rM ze>eq{)pM)WVlWs0&}=rzX0w#b0JqkUOhtrU|9{T_4g=BSRq=52bD9B5M$|SCqdnKf$7+^N_0l0N;rQsksj$gky lj(ra}`+5=Su8}BFqTj05nwk?Sk1+rM002ovPDHLkV1gfjq#%Ok00kvQXu*Z08*2r#G3{0} z(Uf45OkxEWezOT--pqURKEC+?5yAoCfNjkVeGs6M2-cnF_9Mv ziyUk!KODXwO@ zeYf6q#~{475mKKDD}XxDhTGYz`O7FSh@5cYpmodzD?@-*E3IM*qc%)j#e^X|McZzJ zdx!|fzJ}YoTR(aUuP$%c-kdukFB}jK{0|2{0QtvzkWPl{2><{907*qoM6N<$f+Wbu AQvd(} diff --git a/Resources/Textures/Objects/Devices/flatpack.rsi/solar-assembly-part.png b/Resources/Textures/Objects/Devices/flatpack.rsi/solar-assembly-part.png index b72b053e4f579756fb3cfd0ce54b77694deb9858..bb68ec126cf5b2f3f522d5b32d42f2c12e44609a 100644 GIT binary patch delta 505 zcmVP-ypr%F0h8_xfXm)b#Bss=I z$zn=7vsn}```*5pcjkTP`-X1@Qlvd-98#f}pC=VK`+xpJsi8GcDCXy-(u+jm zz22$T#3P+}`Sn&J@$Q!sOf!QJV1_6e#M*Gv6VjBa)xZ!SWJdJ&N zr2&Bb%^vMvCV%znQLN2cohAp*2h@J9{~ZI1lv~*>S<8yXec#7%oF(pXI9ys27Y|n< z@9tIbJP!cR^Vr?1M02y*Y$f4D2420~QpQQ3EWw}feV=l<3_z=MM7`RK#&4J7pBQi) zCrW?4+N9g<0?=qQ5{rYT1eaHnrTFW&6J>nY8Xc4wIC8!yA!WcQ3>k$Xoz^=5q?EX> zi|e}d`~8S7<&@)#5)i+8YD-|}Y^wD`3`5n3Zp0Uza{(d7+Sf4l9jH}=wiN?RClY}3 vvvaLDXrAMpH`|H-0Utknj`i0_ks`%!@dKKn0SJ#{00000NkvXXu0mjf_4n`_ delta 473 zcmV;~0Ve*F1oH!sB!3BTNLh0L01FZT01FZU(%pXi0004{NklMVo4fqy>3i|5Y?IvlS9Kt2E& z`0(Ll1|A+RhPFLiI1JT%ga&;jTgJ-l2Pnwy)!!XO&Nrv#Af0BcJ~qJ#l- zKBszTNqDASNaz=98HVBg$mc{ip`b+k2%)V1Iy2Hr>zVHY1tW>wg17 z%mv{sKWzB3ZrGu^~LTQy1NUf&;uv!+y{TEi3 z7bfZ+pSlz-7fG$B@VYKiIwTDPyVHptz~6z@vd}a^@meUB(a^Mkc4g&j=-n#=0Q^|1 zQ~a-Ud~`Z8Zhx94l}cqye|CPt&y5y^e~a%Ez%RLxOp-JV0P^`fLI_OLq*kj9we5C$ zWKLMV%%lbmpB+5U+bb>vn~}aKzS*F5Q6ej`1ky-0j5>p!vcJ01sjH4sybCmkfZy@%-uKA&fa=vvsJli?Ow23p Wx0jupEh)DE0000soquq delta 417 zcmV;S0bc(41G@u|B!3BTNLh0L01FZT01FZU(%pXi0004PNklSz+S)Q4K71HO zEF{d20i?d_AumCn!xS(PQi(0dL6&oIaWQ~sbbw7gK063H0GsCW*RL49ef!1$qA3Mr zIiOQi3>*R=ntxJ2mIFps2!Qf9IsgU#&Ye5K(SQ!Hsi!CrF1}^P@a4-l6f;1Ug8+<% zNrKdY)RO`TmIENeKqZ`qmkYQs!UaHVIA=^IGkd8DfoPesH)S z%l!H21)`V&Aud(7FhDk!8Hr*FmT5&cC&Yy)rb20{6;RR&0KhUWl+M1ey|F%5*X{Wz z+$Eu;6%2e2gt(Ao8IEno4-lNdGA#%~0;PupWg7v4FxGBuZH7KQH2?sd@6=HG6j97y zhuZAs_6irfCVvVa$-fB@lw6i1NU}VcuT(0~b$v$LZntOFgk?37`p0~F3>XfFQMZa0 zK-YEHw*9LDafuv2(=@bNEohpyoB;iPe`fsG0NtKHciu3J$ZHlsy#>{d3eU4(I}U8e z0RWWCWz_5S$vBPY4N&c<0K#`qY5-u|4fDlI2m-AUjYG|Y&KW?6%X|%)0RjrggxQJ# zVBmWIfM%n~GzS>Z@yY2??0dVim`wp6o=p_?8*NmoMK? z^usJicLYcsNIfZlU^xIX3{=8-c)5TJBU}JvIY=Ec02RlC06_%_bB&qaO03Aut*OBO?R=`$2PMtW0tK P00000NkvXXu0mjf!Ys5t diff --git a/Resources/Textures/Objects/Materials/Scrap/generic.rsi/junk-medkit-1.png b/Resources/Textures/Objects/Materials/Scrap/generic.rsi/junk-medkit-1.png index 047723cf4f9b3c37665ce0faae7e18896f90da88..b0fa3af4556caa9cec62a59a34797d34adb1f2e8 100644 GIT binary patch delta 571 zcmV-B0>u501mFaaFnw&>Q3>(uas&pjzkw25(~U!XOHTf(4r$-(3Vovg{`S#dt9qtmFj>% zm(iSW=KS+Ru3WkPcNMb!(CKtyfFKAKzImRPdA>VY&8_yKdVdx|%nymPf~*ZNZ*H{@ z>GpdFAviFa3n1%4+|Fu#{^m7r-$zs{TQqj-gs;wd_wfUdYTN3%TYf;XSUd^C@ae_? z^X34pR*TZZ`+WWM`3A&jGR_Qf>u<~fj!r|`{cT_xM-)W>JRiOU;J|2N+cvK2#;ZKE zIqA%gPD8HBhJPA2bYr56O8`|92|xlQrPLOtHiAl}a`Nrx4;s65s+BDsKiLD|*^3GH zzEAj4tTCJ|Za$7usl;e9W;7XdU^G|8u`&W71l@iQK&|rZc%Q4XLG^lwF9AK~B0Dq=21VMmlnn)=Xhz>$q1HSLa z08&b9+a`)4l9~`ZHLbZ2LYbPT2`qNabUiF>M85CG>E@C^bo;&O7SH0)nWqfmG{`a- zZ6_2vHM-p{j^n7w(hzHyFMur5(g=Ltk1fk0y0}zDl-`MS96IxLwXy~*%L0C%faFXk z5Wq&}urwk9$8ictA*SEWZe!cF0X8zS2a^?Cb^b7X~G=|H$Mg9N)002ov JPDHLkV1o1|50d}@ delta 490 zcmV1ds%fFn3`S7 zsRvf8RSi&<<0e_^F9wJGSBapEWqX3%b z)>;6PB=Hb#eE>2FVi2Iq{Oh;x0Bm1hS`Zx|gAkV=HBTR&N%a@ttsR@qrnN6g5`++B zSyuOX1nENN>BBSIt6RVC_m4kpUtfUsV7e5nwHRZ9gBeVqEX!7ZUF86?{o0!Y%&tEJ z$4OXg2b1V+L4OoQ9>P_r?r+#$-7?#+xqEy&{_E+dPsu?TV>}2Dga`uUd45q8MGFGp z?(ve@evP`n@#gRzxz?JpEQ#Y7V~ht0K?G+&DOCd)V^}Vi>~=fcOt{Fq%%doxC<*}L zI0lYi&E`CGUPGl+-MrHdLTinb(zhdI?hIVD4x|ev_+t*t=W~oPq-pAZ)`S=`Z&uoO z6+2s?l&XagR8{4NsF_5w9U=3v>YV{01OQc40q=L(K>%l&_X0SG=K8Q5z***JDa*2Y g=$V}~Y0^KTzlBmLZ;`tm5dZ)H07*qoM6N<$fU(Z1J)6S+4# zOIlyYWq085)_<~=c}A(l^2#RmG%zqQpnvfGhXy<`H;4DI8&~}?%t9&tfK2rJFll|A zN6U)@8k>x2yo!l^d%;h)o!SPkG#>)sy(=1RHyr?+J=aY#nFL^5jREk^yY0wLO>}j2 z>ANxVHp@;pfZZbUQFI@1t8C0uyL6JjECKM{%?Oet0e@gSZ~%anwKWt)VQ6S5Co69R zK8K@se(q=d0hy|bN_-7|Djjydo>-OV&N%WK=pP(3&CJYDQC?1La?vwlvtw{vXE+@0{P4S)CXnKOEc)k@&V5iCw80MTf48!M-Q z$C}1(H8o7BD%}?^8k@O2o^5fw2F%{MO>A-!cSFNV-TwL2t0sU?&Y#zJR$)^)Be>kt zqaSv;sP_9=SX?yT`>|`+aCU*=Uu6KVn zi*nr3f}Y6`Xl%kHRiK8$RJ&X(E-a8pB(R7g_ot`%;`;T1;jqWw@N!R&UTU*pbvij{ zv(eevX#xlZgSyx6=UF1b($W%FZru1=@PDLGFsO%u!Cjx(qKYc&KcPPW+E82fP00B4 P00000NkvXXu0mjfMe(wM delta 823 zcmV-71IYZH2ipdaF@F_FL_t(oh3%9-OcP-k#(yA4m8+$JLOtY~LyMTER*A+$C8-P~ zO<^$6K?WzICYYG$!r-7AF>xS4;=tg90|Sed$Y4lLL}Oa01_A$F+9)LrXqytPik^es zX-NxKU5tIk%lE#&=X>7wJ}9W5g8p|Ecr0cq=29*vJvwthXX zrY1yL=F9u{*zI=eMe*WzD0Jzs8PMSXs;ct2qy)+7#A>nd?D=y_1p%woiYUvFPE#%j zzieVn1ATpcT7PSMy8&NRRqE>`YPUHlHkHxfb~83SOsOD{NF@@(RqoX(+4gkv1X#hT$Oel&%cXxMIR?Y-ognvTZ92fvVmSy(sKZs+ehjfjT z>SWk}15|IW1;Fd|8cEE>Vtg=}kY$?Iv#VP@N33 z_r|yK2lwt8Dd{Gjym|%vNH3R(oCdD+_ZQ8~%wVmkAT%*yeBXPcnCfJhz-hMu*HeOT zV~9qhNPm)qq9`beV$^0ck#h$Efq({ZXK0AV#zx*I66n989(gvn&1U2N?b|FTlhkhC z4#1n`<&54x??Xv0xZbqo@L|KmU{4PRT3a*Du7n4JLE|Mnd-SMQVzE$Tw$I8n|V1k#ns{Ayy2@F&`p$ARbdfDDrFhJ-(LjK>GNsz zE-)AG78jYHpZ{(6AF0#l(>i^=RiD{{3M%NI&{w=yPg+IHWKsYC002ovPDHLkV1n`l BjQ0Ql diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/advkit.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/advkit.png index 83e91597166a7d1c28ad0225d7c65255c0700f0f..695bc489f9543c6f1bbc2be84b4a55c19ba33225 100644 GIT binary patch delta 532 zcmV+v0_**>0-^+v8Gi-<0047(dh`GQ00DDSM?wIu&K&6g00G=dL_t(oh3%HVOT$nQ z$G@#EQbceN!O6)bn4<{oVmFuPVi%?Ga1w<27x)+0e?T|4h}B6Dv$z#O1(j9X}*5r6lxSF6>&~!w!(l{3#G0nTvMd0AWm(WPtxMDClTxyM zA5@XRauE?9?H>XF#-}Fn_WaUQ*UPuMz6Pa~ZxX%<*ej1hqtQUISVXB*iq;oI#834H zR!VWXTxO+|?|)@$p6U-QrF7JGl_&`S zpZl6c8sk%wz7Kb(!O_0Y%>d~Dy&nguA?Eo6AEbs{<<4xKac1kxW$&C*PbCK10zY2I z^!CU*_Q=(Js8~ra$8o-Z)=3kYtGZ)b*uI5sd^NOgB!955ee2xw?jBkvO&sS70PG&P zi-;9++s>+M`)d&5!i}@9w#LryH|4-Ecqrdk=&mumVB| z*9WE-7quG*A-Zf~j_1%@5cn}_@5=T0B>-TlupH_P@D=oXws&F}#_#=@#Kin7J^;bx WP8bg-qYWqk0000wyCYiVKS$T)#DK+O)K^ zv`?Qt&6_uG#flaCckYgfiP^e!>-igZ-n{>4-hM=J+UNfa496K5{)>qLwbwqm-3l~B zxFpCgnBhMLu(Q9T3zY8ibg6d?vFLp}@gkp-B8S8JhH&oEb^rh0SWvcIXzKQPRcnu7l+ zN-wnbR~}t_L4I$s=GJRLJ5J}QZkgIpq;vY8TJzF{p8Q%Ssp>geJ8XAsFSvhDw)W&l eW1oNhhlP!GId@z?eby7`E(T9mKbLh*2~7Yx@r^40 diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/blackkit.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/blackkit.png index cfa19a007aa4422a0dae7c3ed1c6fc8237fc7909..f97f0a2e8a646d6b16b38a92ac76574eda1d119d 100644 GIT binary patch delta 437 zcmV;m0ZRUo0>cB47=H)`0001UdV2H#0004VQb$4nuFf3k0004fNkl$Pz{;{`V7*_DfF<*#GJ(pFa)TzyRcGGSH z0Eh^29OvrtVzbvbBxzD;qObz$=^*wGAv6%e_nJn4TLO@Pwyz!Q>g$`8{j5KrZ)!QFFq}c&s%W6bgJHawi`h fOlE?bn*YrQFx-+QqGS*X00000NkvXXu0mjf&h*4h delta 258 zcmV+d0sa2N1Cj!e7=Hu<0001iRA%}S$%zd zAs`?-J3BBiFf%bSMMXt7hr}V4^Ka#y%K!iX0d!JMQvg8b*k%9#0G3HaK~yM_V_+Z` zFbWEy3J57F2_SKW9hC%y6rJHh%%X{k<%No=!f*kL867|{!+RK^B1s7dkW>f?hlYj* z3nB!Jja^(^oQ;irFBqF9c@c3iza_l8OYZ;f9xn%YczFCVGkaxUyKJ=}4F{GY zEGs~E-t35<27mH2&?402_h_wbeWK$tA0*2?TTSX&) zz=p#JEiUTo6`>9QxGJS}+fY^U>NqW>fbaAdmM3iUfq#H20kbs0D?%Ny@>Vs$m^`xk2#d=0}MMwiUSRD|jC-;j!1#ZD+eN z05I5OMS<@(1SB#kh$jvBZ7vvJUzxZqj}8uPe@2ea0K;?E0euAk^f}?UcHwA1u?(o@ l1=GpL2^=&tfrrQc<^vQKv9cpI{V@Ol002ovPDHLkV1hY3?c@Le delta 351 zcmV-l0igb{1nvTm7=Hu<0001iRAh($0d!JMQvg8b*k%9#0BL$uSad{Xb7OL8 zaCB*JZU6vyoKseCa&`CgQ*iP1o;igg xaQ5!qQ}|V2n1N;shC9$*$^i8WJb(rz005eyLAti=$#Vbz002ovPDHLkV1nBplvV%$ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/burnkit.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/burnkit.png index 796eaf83b05d85f87b788e9e0f24a7c027d52820..9751e35227b4a56889eca9dbf1b6c52e9669f8dc 100644 GIT binary patch delta 506 zcmVPG?y1kjf z`K5x#2gBrh(G?W-myk>;bmyS!ScD@1#e9e+Q<2Z4j}Hctsfda5)mJVN%GP!_Vym>6 z57E6{0RTY6G`jk|CC|!NzUV;j@I`QMfStS|_l6dQ!#4YL&A{Az1dWz4hHoQ)ot%hi zRApt@WaGg&U4Q)^6}g9+`QYFr~pZl007x+_J;^BaMdv^87sjg;B%=2lS=MbfUao(U}`!BE1MhG zmf*D$1bKVI^V1UmKy9~8er9j0>hB2HSkIs;=g<}UwnD#8%cGN~?a#<@6Rxf-aQ*Ck wFqoJ@oStpG za7jc#R9Hu27zG0j7@;&tpr?T8Ka>dvB@_OUWfsW*WcjBvd>9y;qlf_nUA?S_3vTeU zCqEd{VtByp8H>MyX%NVW5FBv5E_0oe}t_wOGVGcqzVh>3|oMM(!_IRNHsCMG6^|NsAkX>tMiI-%g;!Glm1 zd4M7ZfGpp$XAhJ|9w5sBFJ8QWvKSZ|8yivhq=Er22QCOY07MU1NeBXz)CYtt9|fae f6pVsF02mkm_Y|bs*oxpZ00000NkvXXu0mjfSN5hJ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/firstaid.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/firstaid.png index 3fe117f2ac6a20ac04a09aa996b49e769b5d7ad4..fd3d0cd1d4c29f8ffc275a1e0b43acc4420378db 100644 GIT binary patch delta 454 zcmV;%0XhEi0@MSL7=H)`0001UdV2H#0004VQb$4nuFf3k0004wNkl$c^&ja!(ElJ{adOJy*2Owlk`gF%Dg{9t1n(bs z4(4j3`Ei$41<3~vlDqG_ynFB6U4WXJnm?vd#fXSFt3M1w>wo#I4Ty**lL>+#Nc9UL z(ChUoIbn>Hl9f^{rDP&Xwe2yRIS)-lM8vM^B93DKKpe+#T{orK9+OhCelLqiX}E}p zZ?A6v08OWb*Qe)9UDnw7dg-#SYpjTdn^?HrLV1VIpSgkIIh*ygxE2Vfm9*06ArA@ z3H{L={n5ON={JnF;a6UcyyVGh%V%O0f&OR?&;KlF&u{D;iApKhCsrxAyJ`dAO%x)@ z0NTIjfadruN}hK6xRC?XXa?bkRNqG=_Cu)yLI|S+W#37dRWRG}=00001bW%=J06^y0W&i*HX?j#xbVOxy zV{&P5bZKvH004NLQ&w-sSviZf~%hk*kk~k%^P7b z+7Vv>004eTL_t(2kz-&W7cdG6q6!EpDG4BPjSZDtoD_`>V0`AFM3wRq#iU@kK*x*@ zAehmNP?4kr1YAfeLLmSlUaPQr_+xS&rn1N;shC9$*$^i8WJb(rz007d&NO+)%X6yg}002ovPDHLkV1l@O BnGFB{ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/meta.json b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/meta.json index 244e4e2b5b..75a87e0ab7 100644 --- a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/tree/727eb0a445bccbdc2d472e158e96b87fc0e997a1. Rad, toxin, o2, fire and adv by peptide", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/tree/727eb0a445bccbdc2d472e158e96b87fc0e997a1. Rad, toxin, o2, fire and adv by peptide, modified by ps3moira (github)", "size": { "x": 32, "y": 32 @@ -73,17 +73,6 @@ "name": "toxinkit-inhand-left", "directions": 4 }, - { - "name": "purplekit" - }, - { - "name": "purplekit-inhand-right", - "directions": 4 - }, - { - "name": "purplekit-inhand-left", - "directions": 4 - }, { "name": "blackkit" }, diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/o2kit.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/o2kit.png index 59919b8585570407e25bcea726eb57e6a6516cb3..53f73ffc4029906d164dac76661fd288025a0f84 100644 GIT binary patch delta 470 zcmV;{0V)381N;M!Fny?Tz)E zcjSu|#ATJfK0X``aTI`FZqT@_ZiBAv5#qAC=h+=ARGXBwgDMh8s+Sw|TE7PXq+|&* z+x7H$jlG#|oVg1w1h)b#^Lf7m0GM;UhhwV`7fIz7_He-q;SazvPstJnmdO^Gub5|M zyO{SoxXG1}l7A(1hsJ3DY>o$(iG-s0mYyl0Xj`v{xKoglB>)=g#RV>6F(i^nU+-u# zL9MlUhc{J108DB+4JDJ|dYt7_Ando!M9hQ`5JEiLyz2Z403igFQcy~_K@Z!Z0tA7D z4!|-%n^V2?rpnR delta 440 zcmV;p0Z0D)1KtCWFn<69XF*Lt006O%3;baP00009a7bBm0013_0013_0gvVJWdHyH zb4f%&R9Hu27zG0j7@;&tz&vr`e<%|UPR@@f%Pf*Lfh;$&aEI~`;M|FwWI2MMhS0)k zaNj=qz|8=&{LJpTU>XEWT$8~x$Psb^U%_k;SlypR(0nE+jeiw@EO+sWVGz*>V(`@E zfQmva7mzcBV`RsG)PdB4^dUPQ7r^U6kO6nF0@H*rOdUucF@RtQfP#`-uxHy6f+0ZA0Z=B{fGQ3U6p;e+NdfQQ zJOk4dI{?{okbj|7>26RSCTN?v3&pV@^%N&U5C9p3Y`LL^3K*jUkUUH+v4AKCAOn!a z=WpBrV{DEf6_D%zY6Ge`02C5cg}G23X@DvY07b|4?c1R|(g4X0fWk44ofy`glX(f`=mz+NxE?rg zAc3!Ej^e!n)tSNERhz6n&6_u`ig#`ba4!cXnlLlny4n!ewz-1K$hk8DTPMQ$Q76I@^G@`yj#`hKsK-k*lwwSC;1es}YVhn%^) z_JNX;(x=0J+~;w%o?Wh4u=MbsR}PvJxLCa!Lo@=omN+#ADTs1SVOklmKqNq;#*!he Xnnl%nLDgNLgBUzr{an^LB{Ts5t!8k44ofy`glX(f`=mz+NxE?rg zAc3!Ej^e!n)tSNERhz6n&6_u`ig#Eaj?(fW4UM!psU9_PzT5;dRxxBuSvLT$wy8SOfu$!pbb zEfrI25hz;tci-~2%hVQyItTCEw)=O%d)I@D*6urhcdJIkmfSPReA--Mx!mcI1^L-? zR@Jpc?_NDK^QX}NEMX^(O8pAeC+qFwIPaHuvs9?g$y7R^tr(;OBrdrygf~5{ZwPl< j647w~ugAs*Yik&?53wk?Dltz5x{krq)z4*}Q$iB}Lq~zZ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/purplekit.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/purplekit.png deleted file mode 100644 index 778a319a016f8423e1502c4f292d11a403c7a218..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv-2k5u*8>L*B=GgjQM^~6Iy0EN zYLnHcdGqE~@osIG-yahb(=4^){Ea(r-hVW2KcYD8^YQc2nLv$d;MH;I!n9ASZ-P@~F z@c!=Z+do1RW;CX8w^?6^J;m^q%cg-%m4V^X5s!)mU1@KCE@AL=^>bP0l+XkKapqqR diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/radkit.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/radkit.png index 0bab485fa95130e3bb5da80276b4918d0b0b1109..d17de451573d1fb7a35fb594971967564941f61b 100644 GIT binary patch delta 482 zcmV<80UiG21Be8WFnTlf6#fQ{3qoij5TzTJ?%TvI9;IFM06jtN z33`Ao>c%1M}V+-uFHpj{zDqXz<4%bv8{z zk)5^gc9oyku9N(w*MsSKDf?Je0morgNmL4+N)mg}G<>)&R)0~H@(lz5-1oTMmVRz2 z1ty}%27(YLT}2TFf{=9}|9IJx^W3Gm8I&%=-qtTUwN z7!m^0^KeJ1eSe9$O(-i0hLplKO-P*%+cC>|6J-#I|Ln{M>HY_H_u1RTZXT zpkFXxHjMq4mamRe_%q5S5Kwv;ECBT5H4Dq*`G8N%w=gVqK*c3(t8yl2(BOaL Y8?89B8|c25p8x;=07*qoM6N<$g4uKB5C8xG delta 446 zcmV;v0YUzV1mpvdFn<69XF*Lt006O%3;baP00009a7bBm000id000id0mpBsWB>pG zc}YY;R9Hu27zG0j7@;&tU?Mm7e<%|U^1ps1%Pf*Lfh-SYW`^<*VD;a>WI2MMhJ|cw zaNmAlWo3X_KI_jPFbx7}EG%FeFqefj>KVZ-0QjZovT0=yvr0%W96&0d*a09w oNqs=b@=-7fM!_f;1b~4701S)0$AGI@fB*mh07*qoM6N<$f&weB#{d8T diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/toxinkit.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/toxinkit.png index e0e563022ab30ecf9227785af84f1e8493fc9767..7eb45f419150bac3ecbbcbbc5e60f125fd95c051 100644 GIT binary patch delta 525 zcmV+o0`mQp1hNE>Fno!MUWzN*V)aX z=-(jjjt;J_P7WeCI@?_+B_NS>a&QSjX{$9#5z=#zJ6p(IVl24igOKFjyL-R;?zjX< zlqk_Zi--dGd|uc|tt&LBy>rqF2(7Z6=KM%)ZP1i*2u!?5Eq)(?Wks%@hsC9*=3n^aIe;y)TNR8!;#ug6dD0>fc zByrpp+t;&7xE)@qhcMBXJb@C}#E#27|zu>o~Ch zB013ScKLb-U4L;Q)B)e6@XDXkSrS5Enr18j;VxP`S*060>i`hxfbm_*PfPRq4!Lp$ zuQ%`LT=vOC{s(kJlg2IA=CA;G@vw2FAEV_XHTL2<#~nVl%z;FS5`6(N@WxU0A7Qcp P0000pG zs!2paR9Hvtl}}3oK^VqgcT4k76d4f-8Fa8qAan{Nkj_Tkq7PB0Zbi`-D8EB=>2Gp2zto`G5R30iHcEbu?b*Mak`E zMQbk4gCHKB4e{DHcK%h%gmOT9CnkTb9kEG>Kb}6b3`SN5S%!&lHO$JOa9}CtH+XIf z#1mU{M2jD^J-y3Y8{+1KA;W2g_513NaZdBUVe;IT$kOoMeWgV8C!)9WI+f!^Rt`-D zDLB+G19h~UA%BzgyBoErbX_K+W>EE_w$G<)OUD%e^D7B5qX9~#QY@=N^usteblfAk z1)AgzuaxINX@D2C`4a;;{az8bp=$$9aZGx$amH&uSwCKGGK>By1Ij}PFp&@+8|Y(^ zh|kCnZTK$wy2X`&R-&;OU1qbajEuT2S_Z&EGTD@M(P%PIv@Di0nGDOKu7hU-V!0u@ zmQG7?-EHt}0D=%}4c%4HS^s l2)g+{P>K8a`1teyM4wJyx4i`F#TWnp002ovPDHLkV1ffW+qM7z diff --git a/Resources/Textures/Objects/Specific/Medical/healing_toolbox.rsi/icon.png b/Resources/Textures/Objects/Specific/Medical/healing_toolbox.rsi/icon.png index b80dd151b43653f3c16245a8b872c28dc481cb44..f908c97d6822cbf5affb135f6dcaceeea6e5e458 100644 GIT binary patch delta 267 zcmV+m0rdW>1+@jRv;lwYNkl(WS?S(E@CY72 zVLZ!h(#4!W!KDi~aaB=KiH<)A`8G{SnwN&AfTAeMkLk2I?5yQzFITHpxmtp#a{=8T=mShJr7$F`CYg)|L>n5CP0xbcda6>tQvY|V!7vQN`0u=w4vNV6t9l1u z_Wg0E?-v^YR>PL2X^Qv0mYRF-vt9^+{bEB1A?thZ5s~v#1E_c^F~-b%*-ijhwv#MG zj1g5W_2;d466lVHWHPj@fX{x;x^9UPx_+L9>MUsb`L~zalWZIY$6#aqULOseuC%ERXCol}dFpLZH#8&(q!KSPL0000k2(wL|TDn{2vOk~;RPaEAYq1m0sn>YL{AP@)y|Bh6osAsDrX??ah=e}RH zNOQ-iv9?KG6S)mUc>eV@af+#O2I6r$Mh%)QQG1#!;c0?;Jb%1YxN-Gtm9$M605Dx1 z;aYl{UrOg~4hZfl(*!etXuA12#O`vzXxPMfvPDBtn9Y-Pj-kWzugsbXZ<@9#BTB&S zXm4vtS6r8cOfR8p>F5tua4j7{nD_-!x~y;$0DvGQ2ttBxtIlm6Y2&*6>0aDGTEkD& wrY7)hgn{2T;3FSy<$lFw4HP+|1%m(L0Z=YyQ3!G31poj507*qoM6N<$f>I=fHvj+t delta 251 zcmVJMJeMu@IHl5^H zQA$*js1)g3lnSYA`gfE{_}(GjskFb@|Nj2(zyAN4xh^x0wVvl$Yu)QvYd!0AnRwU5 zc52EqlmP%xbFjB|hdvRaA4PfST@V)51AQp*?0p0PpfXwXBLk!!m<9mKE*vV=)zyzH z$k8|o-c zSQMv|^+?0*(nK2@IjyUiak4viM(ogVGg95A{7|7)=itt$Lvh=#_dVZm$p3zM@5`G5 zryo$-^SjfF>lG>#RrlHB+z1h>IaaeKK8vcUs(#*Tyf9LEHV>GfSj^NB^y|q0AH&Jy z`MMPf7XX=%J1UAmg>za3dS>k4_%~K5%Vi?A%2Wsw%^VdYrT`1Wc3K?;7TU^0r0>`F z05au()wK-Y7Qht=te(61Ip>bts%5-cbe*ClU8vu}*r~!?( zyFa8(y|Av%WM_%`D&(7s@`Jj*zAXc7^?AI70PtKG-Y{T$qJPl;Ne(crF6S1+$+Ex1KQCn;4!$nnA%jnm=HVv>VS5`vIx@3TNis#ck5soz|&4 zy0J%e6&o33Lb!5-tjjfU{F z*M4Wt|AiR4-1c1Jf~x>_%a@pPJItQQA~*B9s;8-?$4qBzwLPeEiz&pUCTM1+-Qu5` zVZOs8tNm7<-}uJ~6lx8+;?*<-TvY(txcaiyNi!p*Bu4E?-F(%&>KP}N34D36oJ1HpEe@OlMDur()-p?)t^yQn&RjXC!-7@8L--T-rfAn}^;C_A0qUmiD+VE}i;C`&7=b=>h zC&#jA6A1}RtqQVA+>g7(9-E9`mrA@DrRm^!q~PG*J2U*I`t@>-zY?CC_+;;_#mTq4 zZr8rHdzJi3wkKFsEk+}%CXQ_|J#Cu8H1_o1X~*|F9i4t>`}7(b+7#2VzddDq3fI%y zu*7hqM&fnly^Hqh@6|Fy(QxuJd$x*tyFV8bK-L=C* z%Y&V>;8<)f`xuvIaX8$kKVIJFveRW3>S4FcldD?Fs}U-U>BS*NI{s>TG3z1;Rr)7y zKH9k6uxx+7cG-6G+?*^T6}JfIRqWoqhh?GAvVZNz1H#2h?FQM&-QnAwPI)`;#XPN} zc&AbfxZFQ?U-CZhJo`MiJiCtbCWW2Z=||7ol=<{Us$149n!9|i9Xp|JTzb35BabK9 z%GsLE=A`$9#<~7Sw6e;qgD(bUckR!(ureaUiJSd2^nCm0nVV4kwEn=)+3)RCz2%El zXUjLL)=eW{A*|(+wNW*Vf4EUsTwX{$Lf=bIe!exaw1Ir+p6x$u$M4`&FK?OM5?CEr zeMnzkUq|23`Hgc|s=IUP(RoJ~I4y9hxq0K}!JGF}2x;b+2iW$s_Ou6S&1Y6G4Owbb za;)Sm=up(U^r%l)NqJE8QlifhZ_lMGifs$h3+CJ}D=5pJm|eO!X>nf0efH%Of0SG+ z$vHFqMB798#=?@ol1+5B?^O1gD}|T4lFlb>I=AT`{pJd4v5(aAw3lj!3r_K;kd~01 zrq&(kveiF3Rh)E>v^#d}sq9igRCnC=c*iZZ#>o`pG_C3< zSI@UD624!%;(6HZ_vvZHX_cMF8jp9GbaA?3n|`~2|7~7|4^D9F@>S|Hx3&fgmEZQF z{hRZ{U8pXR?9=UfCy+P(+*kA*Y9Wh6SEgK(c8M*A2zK>xWbuR9-AT@#?iXL@Z?#L{))UZt0 zQn01%Qh|=&)!%m&==8SluS=}ss7Jeozq)@*f&P-d{c^bK-00Y7uNaG+yg2U}4VYv? za6=PS&}{wLdY|>vG&aVCcpSNiU`WX|UPFFtdJcciqS~0{bK{yTL;W5n}bKXr3 zp0iUqv{Jj0t&3_fX^4ABU2ZsQ@jH7%=dj(sCzcaJXJ5e`F={K_IyYxmxs#gHlQdF> zX6kxGAl9689uu`Yao1X_Tpj16680PROV;|@d@#Cb;7ZW;GpJd66|VUg@5&$NgH$fD zI{J#X)Zl@kLJ=GEVqLr$f1S85FJu1A&Kt$o8+Vx=c>CL6=cLL>&v%y`iE;EoYJ0yt zpTCA!L|z-(sNAA4Zhp)X`F!%(Z6$_*_gwNiy^;&V&+CUd`$w+4bbZUE(=z@YDxS)1 z(VIG&9(1m7@kaSHpQe9~N!Oxi#BVE{(l|9)WAj6UrjRzRSnlXbBGV58l zS+8F{MP@8h-#(}+sGY0y{}RYEO2bdh|v9L&B}cXNRS z?J%u}_L*kVb^FO_`h$-_4P9Cr%0J+Lzt^~|ytkin?LwocjHmNG);+M#p|7~tqA))9 z^~ZgEfh!6Y2d?d`k-aV3ub`)1@}TtYJ?-1(H1~x2^E>R+Yks{jkp4Cpsb-?)`HutD zFZ6iUp{=ibm705JsgWM9-?1V8xx$@a*K4!2QERMH-=*57d8GC&^Idk%z?$S5B)=P@cz9FqWP2a-C^9`E4}ZVHJ^m@=l0jtmOTod+f`8RQogEZVW;II z>XX=e7Rv^j9=>hbyrv>Jv%8_mu2()fs(v8xeZqL^xP+91+8DK%jtnyjk@&)b-~akc zHnpBvub(k>;NU=Q;Z#jj_{V!459%8BH)JKhOHR5NxbaB;n~IL<#~Z6Ft7l!f7J|d9 z>{-&+c`3LlSo`gv=J77A8xflg2K_#reD859yDw>aQqrKD?EdaA3>>l%0IZxiG;g7| zvlEHI4K$`RxxS!rNFWbNL;-+o5yGQ0{6QhY7i4pS%yr+EUDQQznC7}(1ZT7}j|%#6 z?8Eq=N7!N-Bg~&cWa?T_l*u6^$Uz_|q$5HC1A+vk5Odujza&T&6{Bw|GuQPK3V9?HDmXaUI2dQl<+D*3B9VwfV^LTv64F2lLW6|#5M+=* zZ`jF*A8Sy+;B$CF4mSuP@=N#St`nN;>WUf~eSIBQAaAsxAi-C55Jgl7orl60qfuiS zF&U#aymkD5p{_9*C@=sF1cQVE$PP269fZ``dDL{w<^lu9v=j(!)!<{wYQwhxL<=h-!Xn28M8c zVkW8?HXDkm;i)D=)Jar6NEdSXG%h!QG90e(MGU%!iNX_M;Kd1Ia)Sl)$f)m4;J|^s zf!1^(NWr49I3yZ_#NcTdQxXPELSvVT*$*pyXYLHGA0}N$|Hc6pL&M-m1Uw0Y`|98u zweMYUnH*N=zj6R8iJ3DQBo>z+NEcE#fpj*A;svqED7a8eb0}O%4nYDTJ%|B1SW}<^ zV-AN&@&$23GbS`@Qx=_pBw+Cbq_3};3DOti3xWiq37tS>4nc5s7B~OFwKbQqPPAem z*Tb6&lgohIk46p&Br@oDCWC+^;t6OZ1_LsYW-J^Q$-?;3nOHO)M5FN|4T(AXp&=JO z2ip7S0b)9$u`r>=SOg4{h)0_svA$+>B!P~{Bh9cZGo%UDguz5J%owIb;z$!?xcQ+e zdyW7Kv{11Cgu-xWck=+(ep@{KTfA)2!{QOng6_vU_UVECo5yv%aFp)?FC$xFqqBG9J>rZdJr3AQcxq^87cS=P8x$7v>xRDm8AnM zP&$c9^@EkN@CUnINC@S3*>* zm!p^v|HsDsw-==^mOupQ1QrrH7o>!GegJR z-#X3y{-jBinhdYSzdmW-CTaf%w>WU92qrMv6xS|8v2Wq>+m0(C<1poD};j$)dWK{fl^;%jJO*y zy)pfaWYLz;tw5CQ3dA}&vI|(z+259qR6q&X*ttHQj%A`*bP&q*vEWa0{Xfs)hHfa5 zXZ2$_8(tCLc3&LMpADWYy0?;`TLP4}4y6SYi0cn!VoZnXyhYi5z`CJq-V}?5UMP&{ z{i~^X_4lSee{L#X{kt5bN_4p%4m=O&ff6Vh+V@4@YrAqnzyNP+ z4s^#8i0&#lsFfj`?<>YM^!b^gSjAVv;YkyF>@yU5!==zeCFpq;YV?8D4`C@fx&G}h zctrnp*RVrrBQOgIBq=TlAi*k9Trdj>Bq=TlAi*k9Trdj>Bq=TlAi*k9Trdj>Bq=Tl zAi*k9Trdj>Bq=TlAi*k9Trdj>Bq=TlAi*k9Trdj>Bq=TlAi*k9Trdj>Bq=TlAi*k9 zTrdj>Bq=TlAi*k9Trdj>Bq=TlAi*k9Trdj>Bq=TlAi*k9Trdj>Bq=TlAi*k9Trdj> zBq=TlAi*k9Trdj>Bq=TlAi*k9Trdj>Bq=TlAi*k9Trdj>Bq=TlAi*k9Trdj>Bq=Tl zAi*k9Trdj>Bq=TlAi*k9Trdj>Bq=TlAi*k9Trdj>q(8-_41Yxg7zBMUL@@LP5E|a< zrqGv1AQ<-U&HxZL2LK|X0N~Rg^!XY9)}aC5&1wK3?FWFV+}*3L*aCnI^bg{ew2;TY zC!btX={hCmqP=4l4X5mW&gR#OEdO~L6Y)_!N~C!o%``4$xggB$o{aKmXYH!8TpC}k zJA9s%p62oG zG7+`jcLmScjfn~XLUVh;mCISXn$+{FEcBBKzPuQ>6fCDUV-d|lqC5~4}&E4 zj>C6J=~gK%9XE~>A~xzfH%`B*WqYtszM}K|=l&#&*6c}2_~Mf*mzl3>>m#YHGmo92 zeyF2#P^;$j?pi;yBPsc}&up+}5I?U^U=>}53YPHu$DwPwPsh!d+u0vCziLL^%=&)W zj~v7K8CTG%%XQGIvhy?gaojXllP44UbMn StrC5;hl9;x>q4v5TmA{1gh9dp diff --git a/Resources/Textures/Objects/Storage/Happyhonk/clown.rsi/box.png b/Resources/Textures/Objects/Storage/Happyhonk/clown.rsi/box.png index 3c2f7060c0cc67e9a6f843fe0869165020e385b3..933a7e862e11b803e920fbd026dfaa9d3ecdd866 100644 GIT binary patch delta 3186 zcmV-&42|=Fn*od&kRt*LI*~dXe@Ka)mUmQC*A|D*y?1({%`g-xL+`x}AiX!K(nMjH z8DJ;_4l^{dA)*2iMMMM@L4qO%jD{kyB8r88V8I@cAfUux6j4!mGqP56<>kGXm){>} zeQTe+_dRFteb%}Fki7l5ymVL!fHa0IH;uf5=ydS^Nt%_x7l_gXiP(b8$z+MRP{gU(f()^JM#R+k z6fwgnG4n+S6tTRR6BpU=v(F+si<9uYy1K45IaYvHg`_dOZM)Sy63ve6hvve+8gpGXV1Uzt}Vn z0w5{sTl>IQ_o0dBB}pL2uro2q&dxUGa#+UVg8rfZ>F_u7)%T3W>Ha7W-JO%b6s8L3 z;<~ZYQ`3cfdS(Wb#i1Mhd5HgU;9sA^Focu9;d6MRh;Y%Aae0ZNcJtU=0XLmT=koqj z6aQh@pR_pFB2gMXe*tQ&F_0Rd0_4{|fT9oq5_3Sb1O3rAe|$I)zq|<5iN(49Ea=~} z!e!zmlbiTC&MhR2&Jyyo7Wc%@5}*MANCGNQ04hKO=mH~P4s3uua0VX07X*SZ5Cv8N z7DxhVfDf`kKG+C~Knd6Zc7tkA3mQNZXaOfc2RIEbfXm=If4Bi|g9l&)jDzQ32D}0D z5CmZ%GDLwCAXP{UGJwn>2IL5NK>kn&6a~dWi4YGGLix}ps01p9s-Zfl3Hly71zmuy zLW9sfXcU@)euv(}2uy;hurjO-o4^d%1@?o(;FWM9yc*7f3*qf>6UgRb+f=natP#6>iMMoK- z>`~sR{}cWr;0PjdE%mRJX`^;5_c4L7B_^Oz|G^O@LG5~d?22U&&8MF8}MED z0sJ_Ao*+%oAvh4i2+4$vgepP{;S%8?;T4fcR43XJgNa>atgt3H=1Y2UgM2$qd#E`@b zNxY<%q>JP#$vnwQ$&-=;lG9RnDQzh?DW=pqsT!$MQo~ZS(iCYk=|Jf;=~C&V(pRM? zWw0{ZG9EH)nL?REG8bjWCO)PYmQcT=_ETqMWn?X7 z!)0@1Yh=&Jj?fUAHqD2YN-LwCpxvRpms6H=k>kj1lWUP1lADuXBJV8EkuR2SmA@_j zUV*OQp^&1mQ=voQks?Y_UoluQTk(M6CB^9_)Ft*ySWAkRoLF*S30Bfq3Q=04bV#XB ze`!`(McGR^LwT?AMdfJ~nu@bZvPy-@S(PbOimIb3SG7X*oa!^WEZv2kO0S~#&}YdVy&)LYdbX%I9R8VMQ|8r>Q*nyQ)sn)#Z|n)kKvS`4iutvy=3 zT65Yu+7a4Yv^%sXb>ww?bnNb*ob80Vw7dnY&2?2Gxj$wFzzsZVWMdgZL-s(*W{C_ zm1(MJgXse^88ctA0<$i&-_7;SS>`q7w=BpOo)+sZIxSvW8d!2H4_Mx{qF4o3e{Heq zw)$voW6ig2v7WNgw28CXXEV&8GJ+VTj4QTiTUXolwx@01*;(5O>`vJIW^ZJlVt>?r za;eTz&eDdZV-D&LOouv$5l6aXoZ~^q5hpb#rc=Gs6K4%)wsWKNgo~a_vdb}-7p|tR zeAhPDIX64EwQlF#5qB^5V)uRze;JSE9@QR?J=HxEJ)1peysW&|c%An~d;59s^d9z6 z_F?%n`ONs*_^$Qs@gw<#`c?Zq@z?j~`*#Jv0lopd0v;~YTE<(}5eNc(0(S*I3epK$ z9rR-`CO9a#CirQHSxA0JZzv@+HuPxdn=sd~vakosb(ag5cZW-c$AmY9f6qm@N0dj5 zM4Cjdjl3SE7{!h1jK)TXM>j^#uJBl~d&PK+RZLOLos~K(b5>qmrMN0})tOkySZ3_W zICNY@+|jrX%s^&6b2i>5eqa0y%Z;^%^_=a@u3%4b9605ii3Ep)@`TAmhs0fpQ%O!q zl}XcFH*PieWwLj2ZSq`7e_+btl!erY)YddyT3p&Go(wOA*ORW2o|8V9VUSUjF|yij z_3qU(d_R6;CX~4{vr|A7{Y>=tT>!5Y<>$=x#tS?+YzQJq5k&T3nDI0$(e=sd5FL=EvVpCV4 za^Z%;vCUqan~Nlh_(j88?6=fzMQ!D7?cZjxZSS^E#q8p1C8i~nB_B#zrPsbO`=;uf zh3yI3`^&7$4(!0};O)4x(`o0Ca_REC^08e3yV@)06~z^=cgOC&T4`BXyN9qxxM!rw zzp8Vu=H4B9KU61Gf8VZgt!dq-v~SzKx&7?@LkFA>wA3osmejsK$US(s&a1AyUc0{X z5av+Up{EVu4ZYtozHMq$Y%FQ~c$jy10kG~(0%d4Z_dB<%|ym1DNytC3hBe0006FNklDMy@{27{CKI;mc7&Ls+F~P%E zMN`8!x4#pfo-$m2qyWI;wIr)+d16;)bsMd&<#9<8o9hK!l0>aq{WF0{#{>Xh>f78q zD|2H-0PuKT#Z%5v@kV-L`}H&~N$T!1%5l8{x6?s<$=?0;lymreK0M`IHx^&A<90f@ zf9OANYPcbRgUE6e`}jDr95p>`Xo1W^lbyyM#lSK(bqlA6Qd74m2A0`r?2%b$j#l8e z1VB^MsH-n&YFbZxqypt1`v6qD5fnwCsc9&RLd6^D$q&Q8V+fs70N}iEic3$vBIaZO zynvdm@+NVPa&fm?_typ7P6yJAjYO*jWHAXfTSc4}s0|enlSs6H85<{4*L(IExdjag z03=>K>nt`vjJ=1SAjW`==a7d4or~z*$4@}#9WXK+bl!qH^K(NzvA0*UqyIOsu=sEI Y1p(E&+E;Nfn*aa+07*qoM6N<$f@MB5bN~PV literal 19841 zcmeI42UJtb)_@Pnr578ZA{vT{NJyn5hEPHk5P=|IPdNz@Qb;1rD}n{FToF-05H9LP z1QZL3BA|#0Dgt6xR8&wz1fPK7Rgrf>IYckMm%Dub``7=kWUVBdnZ5VSe6wd}pOeMe zG=H9}rrKmR001=I-JE=(Z-nHnq6B@4qNBT^FI9nCkO%`o89uZ{}B*Kteigrpf} zhN@%cCK&E}pyP94th2MC{*|nR(c8AgZq@NI*VwFfU%Ao|4n({)vsDxWo5*vF}v2!Jsvg-k$d!?77r)=!ge(kttu|n*6g>rF{jfYC?1i(Ieo8v*i-bEoc zBXx!!kfjJLuV&DjfcZ#Z`OGyhZvn9xANQ5otW>2u9jiRO5TU12tnS_nQYd`I}4ggt6 zI?!mldLwJK3TkVuwiRhDL%u$*)MrGeH+_9kmoKmffM?>E`mg4w!pX67lw!GG_fPLo z3|^|9wX$am>x8!bDIlx$VL+Ea!p3>u_TmQ*UNkq~pL@x15$#&Q>aXmIW#s|Ap?}7Z zzVy6*dhWSN9Ck^ZtK!F}71z5xv!~SUP+d=d^fJ-)%W3t#F9x@aF1gc-1I;Eh`HTzO z=9IRz3!81U$#KW5%hPZ6F`qY@e;!S4v;>Z=AS4x#$ zOhx#+8FbnTM-etIb~&3g=L&#b`z5~A6|*z$gpciQjZ>83L)MemyX;rL!4zZC5_PlE zZwOCLw%uyAujNL5u=c}5GNlS#{%WE!?oue)qVl5SaT{~hWJdLIqr)2cm6MMxI6S&! z(|bnU@d(9nan9wcR*Dgh2-;K!w?NOpdH3B8A*Pt%$39fGRvo?Gr(&j2@*$6tGtQ3v z^U_2*7PB$X&D{9zxWw_OF{=_Nm#j_3ZK7aj7H=Qre*6#W&2cwfZt{GMTg`LR@otli zldnExhMZ6)>@-KrzOtb?qxoVpu35j?uyc`G2HigFkB@%OO?|Jem^2jLN?#7pirjybqDoHq(=z^CYUQ<_fyV$ zSB*fWLJbq8294T@q|26Je3AjGs^OgvWywW*N;Yj5E#=wzq~dzgfjch0xoB_YR4#5Z zY2sFLD-X<2nqfG@!|SzIN1Cr!@xfUK=XlQXtg5+Qv%lu<9?NuF%sp&NdQ1Af^v2W6 z7e+2LFFI6o26R8syzpR9M^Pzn!$Lw(cA)>lC50|WGLB5YTXLi%XKYUKyySWLnRnS2 zkG(6pT9kWw(yg z3B(1&Cuy~NJM30p?%v&sVh7fZsk@JBDjHus>k=o!Fa4G)TaR5VTGy4ZWs}F+YKs)I zMY?|F<11y&bH(q&mOP8T`934PFukJvP{YvXAQ?g}*nEn@HAAuup=PUAHbj zedTnu_eFl@vJH)tHO76+zUaPsASZUZ0(_l7d$`5Hf{)rx7#L2 z2%KDxNwJKme?$>AI(>55?erv_jqxTNMb5P}Bj;JHAU(7`i$7~uX~7D*ekU*^&^^>+ z3c7}BsED=QQtF7qXkfWPxG0vR0+uk!_p3TmGIE*nn zq`P%`=lF=}+ti{e3@X@0sCujVg!`1mW>e>Nx|w-J?|73`Y8hp68JBJTqImtx-0h{F znx2o-iJ7`-;Rr6)mRN>aw;l$U=ye+3uQ+Fv}4Jq7y z_?IB0T9MU-Fola-}~CfRg8PKqbNJx zBLHa-__FNq3c?9eSX6^rlg=-*;}<9$CY{+_WX8SYo!=giQV>%%Bibt@Zs~<)%x-YGINpE?!1(jDOxqTe!#!E)3B(tr#6^?10X)fu0X`dI-7oGLK zPOiWE`bqQ`*M@1@d-0^8sJUI#tDJ|eYi}j9JL|S)?8;ajWAW#s{>_qF&n>1*;W@2Zl$C20l4i$jV# zqRURLV)eA@XIj@j?kwbdmLB4&0RDfKR0 z)@|SJ@PP7o;~l$2Umx9n`)JLI@`$Xi`bVxkN*mVIeNB3ws7?7LaZh4(yk>k`rVW`u zcy1@`ZT*r%sbkj7$kh9~|7&%Do-Qip`%*enlFxI0&F+0&-ZtrILuEzf z)N@xOahRpu3qH4Bhi61Y!1)X=xxb)BLs(OYZPGV zh4vCqz+jGBv=H=*o=0UwhcF0CBRjGhDUt{|;DTZrB9a@*6A>eAjr#o(Az4z4GD7sL zh(m0R93%}Q0=?!VD10G^u(Ys3GSF7m2y21`#?smvZ*7jiqA`{zG!BJBBe6Il9!LXDf6DjrHRQLE{zSM1UxngHC!mA*&nV%cb-U0<1s*Y zCo)uE!Qn88ESxnHXG6C^S}|YLKxZo!s=W}FeGQzirh{-w-++(tw&$os*{81T}s@MC)spCyi<2|))o z6dbaw*8#8Jntkt{gpwQup`8DLIS|ppe{KdqCdgvonHVJ9l0`$>SmSX>I>Qo;v}Q5T zOiMZqi?Lx0&G1jm0M-)PTK@NDU^sRe!89HlWRg)s-5DzQFHRbR&kF~Ie`o1H3zP=s zKA=!UW(oOR1Wh0ac3B1pxgtx ziXch>A4(- z$Z^3aWD(@JWT6D>$Z^3aWD(@JWT6D>$Z^3aWD(@JWT6D>$Z^3aWD(@JWT6D>$Z^3a zWD(@JWT6D>$Z^3aWD(@JWT6D>$Z^3aWD(@JWT6D>$Z^3aWD(@JWT6D>$Z^3aWD(@J zWT6D>$Z^3aWD(@JWT6D>$Z^3aWD(@JWT6D>$Z^3aWD(@JWT6D>$Z^3aWD(@JWT6D> z$Z^3aWD(@JWT6D>$Z^3aWD(@JWT6D>$Z^3aWD(@JWT6D>$Z^3aWD(@JWT6D>$Z^3a zWD(@JWT6D>$Z^3aWD)))F16vuAAmgQnFkTj!wpu}nYTd?MnEv!e7yi5dO85at^L|v39@_~0<_c=T5X;a606d+15 zsIjD)eIITdiy6fNuPR1oXzfUEJD9HbwxjP>$eELG%A# z&M`W3gL6&<-q*Fe4IpM!-thf&w;fm$GYWW@+Ep&&e-oKLo*lebU(hKC zomSqEz2Z|-)=tN!DLZ}fz3;qN?{<3Uz-+7X`890O^z%xBHCH7#cx76^bDgZ2?*CXU Rlsw78-FcoJ>FxQvRZ2ncS2 zY=R4lBB%(63j(6!0;s5fh>rM=;NS+l4hW5kGnqI4``>x*q|Zrmsk--8^;fs5ZZ+rh z=J{?8>MB!J002;TaVgx05eahYCi6D_(PciK3|MeTMLcur78dD?7^(vCMY z)*GWWFHY}J-2{)zW9{rl>RdY*r?`E4)V2v8CTd$$9w;^I9p1j-NZghipPoh>3A|U_ z^}MR*%zb+6v5wUI8l@6twY`o+4|0@Rmd*6BPc~dFuXx&wv5HoiAq2FP^VxdhZUY72 zeI$)GN54erBA^g@M^zapaZM?~O^fZ-d}))kSRrboLWv~a+*vtF8?XxBZgUi{vR8;o z-Dl_p92^NOuVnc*0rSzo@>%Pi-vOdh-zP;V0E>3(O;9)(51__FakfCfT;N#Ef-QD{ zFAmV=IG0m^2WSB2*SbojGAQae`1Zdm8^`ZSf zCr_)@7$%i;idHy-Vi&zg8NE`;#|JarsM=}L9Bor@1ek1vDGf`SLWm}5KIym#00-kI zz<1lx9a^oCS6ywoy+C6b`sJn3z54$CO+76&IYKJ{cq)mk?J>dTPmP*8Ix4v5@XYp+ z0ZUa6uIk##Ii+cJ1~}MO@6#cavavg~v#_qNrMdaRymFgG;0>R(J>1e|B|hCjA0la= zyWTyy_-sZrVM(;Z$oEf5Z+5z*PpjEAW~2YZ=Q|uepH=Pstb0el+{wSt*I2vBW8BK^ zw#nN%2uss-Ue8O6%^YUbqlF`#H zk9v4n_49JmjW#pNOKr4lRM=6|M9XI%TW@2usp^ET@pA01R=T7TkAO`HLJdr*_c;v< zq2@4 zOq92y?pq7d2ukc?`}6U0uK|ShpEngd;CDx#^04?-?F^$Z(`@QS`@^cY*b;p5j)@0T zZi!A$wb*8QsP$G(fM)#;I^!y?fQ?!Ql)p@fP&vM}Is2-Kt z>Q(3UC_^P1ff65Mjq?s3ab z{9bUqAnWXu6DCXtRw z(W!WJ?LzZB$-9+Ho`&Ckmzt8FQu;cx;dr}gJFh+V;enf^1GCfoh~isi*BDPcT52s- z5A4AOHXe&~XShdm&$Jp~S=e}=-1{fariWyAfo~?!|DcNwG|`)AW{(Mv{g&M{D>-}Z zY^8gdAZ=MpBV(OGFS|Fqw-(5VnyJ85+#GEky=cUz_u*^wE^W7@Hb8%zs(Wp{?O>tx z1nV8^bJw?A&eaRJ_S?=}y{^`M)$!FljhOk7FYet^0-u9h%Ocfg#l*(=Y_i-gjPspZ zi%%qn)IMa08*M+@?zMfK!o|B&j-%(1jp^B#6|{P@^Q7~Z6&Q}+&AYy-zD_~T(9veq)roVab~ z+wmbYx2uGe>Xvf#v9+ePaSs@aji@Sv!ke)LkB> zP}3$RuSNwEET|Xo8+OI-TxpZ7=bBK!eaU^!SzUPyiaFJDg}?PIcKRNr>w)<@kB#y} zs}$HAeZgF4bl+I%6c_U0T&mi9gR(a#ZBEteoB1~ycAD*fbD;P2xYBV?cNL^>a`r*% z`aZvKYz5^MZDm-4O4EcVK8bme7YxH)1EZH-zOnxD8HK=C zs@^IsF>7Bvy#IQMyD!$S@eKHJQ>qSq!sab`+6|KuC#-v5^f0tVCsuIdQqsfSr?Ya( z3)wZC+nl!NkI`w1H1=jEK2Ox(tJl?^R&QKz`t`d%>>99%RYna(8wwbOM=sIM6+;=< ztE=W(GJj!qGCwj++iyQQ1KxknuWi?fDE@==+uepm#a-R>>lYim6}(;Va_&N(oId4u zS>|odZhOD?Q}B{px8RkpuPWYF>{c?+D7atv>s{U37EI3__vXBE(75{3#h%nRA!v0| zb?=||S3ENi+J-f^b&YB4nyyZ*U%f5j*i)rDKdsi~>S9;eB)?6zPw`6rw8($adH0+2 z+Iue_hktfx_(^j=iRKqJuY-A=SKqe&P6GFB&9>A%scR!KA094mI9w3X%BpT$p(%KC zUQ6=ywq5Vm*15%Vs~5jLCwY6Sp=G?!IiKX?)MddhB`;|`33uGD7VR%e&MRCTSlAwZ z;YU@P3k$^Q<*nuA~y2<-Bd;M42NArC`z-yCVwbZ=gRT4&T7@Zsb;uUi?P5~d_1^o~^A*YTM}L^l9{ zO$LwYEAe%8p|S+Q7?3UShcKbRLO2lx0Gef}5M%{H5|ls0P%7*o7?Oaf(BL4xm>O!K-{+SK%hF=3KB`Ye z5@?}sEo~6x>pCCB5QrcY8DolO;Y`g?W)uvbY-UC>GeHq>crq48#1e660+C9>QAq^U zmrI|n0!uUzn?v=qwg1u_{FjA(fJ7psVzD71A(#*%Mj+y1@e~RLiz8qO1T?IH7KiaA zU?`d|Ht2UU;KvpcvqU_hgeTymq<%qv!77P`zP_}f!RyO?1q%lo;)}nqgDGM|K_M28 z!C{9pVzUNqgsVhBeO+U-uuu>b4Dlsm*bYCe9gNh~bP2R>ODjg~+g$ zVrG~S!g@kt!7338vRe)J#9+A2izS{A0#^oCu==o$gab#J;rlgM{X>ir9_I%gk=Fds z3<~A_z)V`xZ`K!6{XpG(6cg+ny^!jrnIWT-yp*tE4jq zcHO_YumvpG{b1x!Aqop5u~}p^g+#`o@py=hHs=rtXb#>VWD{^C2!|sLG&IE7cMZ9V zc<|Z>1`W}X-U}OUj6=q=DI}aJn&58^qRAkMgf=H|%+aO0m(87iUARLB$tD6_J^6S!piXdL!DkTI(Vn{lPE%XOw@!+yHxN1pl`W6E!$daya zbe1%-AvO*BRVmV~LCY^@yzhroHU$0thnWAkjgSC{|AU#)@1;-S$M#|YM-l>xAZsoh z9J0*Uey?Afee0fvm2L$=y#IkQ5QD4#*$9wWc$O)Pz(y0za3nMbM6#(+N5Sxx2=*~dFe{j%P0{&`9^mnEX zJV8M?_kl!WI!7c3Mu9?M5RU~)ry+JVpZz6y7+k$j5&>$+65G#xh>!o^y|N(@@9%`@ zkX{aALj51R=YKpY{Rw0W1d=&u4hW~&5QoGtR z*^Uu^;rj2z)Ns!FC)?L#hI0Qit~BY9m`=J4?aGMrN8hDgN6p3bDB+G$ob^J!7~aj*W+ zcsABh0k3+;((p_h^S0H=ys4vNIQ8Xq&FDtj#jcbvVh3mAhcy~$hU@dM0C*q-;Q5tY zdDM2JwX^4~ldlc{ct*^A-h3}*Lbb|?I6Kevhu&3(XaZ3^?{Apwr_5E;T;3JB^^MAJ zMot%jvb-{rY1#`_i~}yYjF`opom5VkQ}c20RD+Ciq4N{BqYoUfncukXQrga*>V_3& z#jep)0y3HE*LY(^3vJU^JTYF^U8w|ou+hN0D-E>Yn)0vbt3Q3(AE=v|y=B|I-`8$k zxi>}J!uK^ci+7nZ-`K48xbFQxmYSN5dV0*ox{99Y^%v{x89Z?LgUtICwIc$KBpoO} zq-~L}8teI!n@-hX#rK6-ok3$aYMJj|uQkGA(PttiZcJs*s9CKkb1WUxexh$Yqwvgu gr>3Q78@x;rh)s@&tuix7myVH>ottf*&GPmC1>tU4!TkGXm){>} zeQTe+_dRFteb%}Fki7l5ymVL!fHa0IH;uf5=ydS^Nt%_x7l_gXiP(b8$z+MRP{gU(f()^JM#R+k z6fwgnG4n+S6tTRR6BpU=v(F+si<9uYy1K45IaYvHg`_dOZM)Sy63ve6hvve+8gpGXV1Uzt}Vn z0w5{sTl>IQ_o0dBB}pL2uro2q&dxUGa#+UVg8rfZ>F_u7)%T3W>Ha7W-JO%b6s8L3 z;<~ZYQ`3cfdS(Wb#i1Mhd5HgU;9sA^Focu9;d6MRh;Y%Aae0ZNcJtU=0XLmT=koqj z6aQh@pR_pFB2gMXe*tQ&F_0Rd0_4{|fT9oq5_3Sb1O3rAe|$I)zq|<5iN(49Ea=~} z!e!zmlbiTC&MhR2&Jyyo7Wc%@5}*MANCGNQ04hKO=mH~P4s3uua0VX07X*SZ5Cv8N z7DxhVfDf`kKG+C~Knd6Zc7tkA3mQNZXaOfc2RIEbfXm=If4Bi|g9l&)jDzQ32D}0D z5CmZ%GDLwCAXP{UGJwn>2IL5NK>kn&6a~dWi4YGGLix}ps01p9s-Zfl3Hly71zmuy zLW9sfXcU@)euv(}2uy;hurjO-o4^d%1@?o(;FWM9yc*7f3*qf>6UgRb+f=natP#6>iMMoK- z>`~sR{}cWr;0PjdE%mRJX`^;5_c4L7B_^Oz|G^O@LG5~d?22U&&8MF8}MED z0sJ_Ao*+%oAvh4i2+4$vgepP{;S%8?;T4fcR43XJgNa>atgt3H=1Y2UgM2$qd#E`@b zNxY<%q>JP#$vnwQ$&-=;lG9RnDQzh?DW=pqsT!$MQo~ZS(iCYk=|Jf;=~C&V(pRM? zWw0{ZG9EH)nL?REG8bjWCO)PYmQcT=_ETqMWn?X7 z!)0@1Yh=&Jj?fUAHqD2YN-LwCpxvRpms6H=k>kj1lWUP1lADuXBJV8EkuR2SmA@_j zUV*OQp^&1mQ=voQks?Y_UoluQTk(M6CB^9_)Ft*ySWAkRoLF*S30Bfq3Q=04bV#XB ze`!`(McGR^LwT?AMdfJ~nu@bZvPy-@S(PbOimIb3SG7X*oa!^WEZv2kO0S~#&}YdVy&)LYdbX%I9R8VMQ|8r>Q*nyQ)sn)#Z|n)kKvS`4iutvy=3 zT65Yu+7a4Yv^%sXb>ww?bnNb*ob80Vw7dnY&2?2Gxj$wFzzsZVWMdgZL-s(*W{C_ zm1(MJgXse^88ctA0<$i&-_7;SS>`q7w=BpOo)+sZIxSvW8d!2H4_Mx{qF4o3e{Heq zw)$voW6ig2v7WNgw28CXXEV&8GJ+VTj4QTiTUXolwx@01*;(5O>`vJIW^ZJlVt>?r za;eTz&eDdZV-D&LOouv$5l6aXoZ~^q5hpb#rc=Gs6K4%)wsWKNgo~a_vdb}-7p|tR zeAhPDIX64EwQlF#5qB^5V)uRze;JSE9@QR?J=HxEJ)1peysW&|c%An~d;59s^d9z6 z_F?%n`ONs*_^$Qs@gw<#`c?Zq@z?j~`*#Jv0lopd0v;~YTE<(}5eNc(0(S*I3epK$ z9rR-`CO9a#CirQHSxA0JZzv@+HuPxdn=sd~vakosb(ag5cZW-c$AmY9f6qm@N0dj5 zM4Cjdjl3SE7{!h1jK)TXM>j^#uJBl~d&PK+RZLOLos~K(b5>qmrMN0})tOkySZ3_W zICNY@+|jrX%s^&6b2i>5eqa0y%Z;^%^_=a@u3%4b9605ii3Ep)@`TAmhs0fpQ%O!q zl}XcFH*PieWwLj2ZSq`7e_+btl!erY)YddyT3p&Go(wOA*ORW2o|8V9VUSUjF|yij z_3qU(d_R6;CX~4{vr|A7{Y>=tT>!5Y<>$=x#tS?+YzQJq5k&T3nDI0$(e=sd5FL=EvVpCV4 za^Z%;vCUqan~Nlh_(j88?6=fzMQ!D7?cZjxZSS^E#q8p1C8i~nB_B#zrPsbO`=;uf zh3yI3`^&7$4(!0};O)4x(`o0Ca_REC^08e3yV@)06~z^=cgOC&T4`BXyN9qxxM!rw zzp8Vu=H4B9KU61Gf8VZgt!dq-v~SzKx&7?@LkFA>wA3osmejsK$US(s&a1AyUc0{X z5av+Up{EVu4ZYtozHMq$Y%FQ~c$jy10kG~(0%d4Z_dB<%|ym1DNytC3hBe0005%NklxNm@Fku4qXCuD&1U)D6~RGT@0OEbrM`0 z?4C}Sf24#!6XQupFQ08b`0jDw;^N}+j~R1%U~W#= z2gT3M#vJz=0$uMscH`FAvJS_+IzaK@C*k;mfi;72#e-j#{VfZ^ajzbEKE?6d900FA zMF-aP=ks66wj@lG;kZ|S`tqTb<1N0OTrxcyf8_hunx()!v*GfL2enjlG+Y$gOwR^w z*WW1sF!?0Nwc6(Xq{p(+wc1AVjUx(WB;PpAtClT+J3GrWos`zBvp8Su#TVy`q(bRi zF|AoQoU@B%wOpl?}(k ze})!VO*T+VHBzB87nMUEJq~eEIV2TIqn2u{CL5y_=t=-+LQt)oqX}V%k5nM{;|73y zbO}XK(1buy6!Os}Lw+Oz-P^sjw}7XWW$ko_7rSp*JKe$4%Cfb$V5oD7=^lX2S5Uv% zCXr0AnOW!E>yJ#yGG!sy{Jc&gnV{O(LB=ly4Cm}@K`>dx&))m=VHQ#K@*GiU+Zt{v p(3P;$q@V1EtH1GY;NtS1@CQr-y_b|UNr3vVmVs7W$_kGU!o%@_~pT~7Q z8|Tk+R8yUz3IKqbvy+_%{Ed?QC@aFhMd9Hc@Ry3f$yWpbqsB>o6oBNtlK?=~jZ3G` zpC7;%^F;xC0m_+9M+t;{Ha7?YfY8UOo*ahf>j_q!PdjW~;v#pr@IA&WqdaUkM`|S) zn&_%%&WY3A|7g7Xr7`yQBeW~hyXojnst=VKbq{P^e=u&-^{(fu4+h>Z z?tFQ(=kx#yneJex>YrquJ~zRRaN_shrQ!6?N+? z03Rc$)R}rEN*4fy&^x1)ffCo0671C2UX3@ldlo4~Zcr!@Cs?{DM`{7H!?)TV0cJZW zM5gXG^aRpJ0LvuZ2iFN-fMd}rAte^yMsPO zP``A(e|F)8K@@&*l;enx&q{A}%so7{db`R7|GJm)j$h7<>iwc~NAHTWf1!_wR)hQ4 z6ut2%KI7{2+r6w8^`>3JY4t?l_;Q-U>IC%B#mwO!T#Ph*#3e5}0idmj zf9bBV^6zFLV+?}mMC~*&nNffA?m3p03 zw-RW429?t;85c*XjIgOt9tY|^j#Kd8%PPkJK}akopiUlJNh)e@TkR<4GsrJ-C~Jx$?+4? zQ*H@QO|jZS+TVODJ3!-cJdIwCEqOIb$^1$X)~xKZ?Fma$l|*Lc3B8=r*=19XFUT2Q zwDCQ&`b5Zxu~GIVDx?u1wkU9#jg!w@pLq|Rj-sX-5XL-Ku}~Sl!M)T-FY&0$DZ_JP zK3$pQkH^LOIGO6-9~(aoqq#bce#OFI>_$4?sBqgb=M#q*x5wUgxE<`F|JpP&h2S(r zKk?dQR^Uk`@(xqf%!=s7)W*w==8f8ox@~@{ss6K99Qx?_!r0^b@;Q^6G@A%biqLMn zjn~0sk0(d>GsY0(7ux3TFYq|#9(!~gVP!J;=K2ZFE{Agu?7TB2U}8Wg_t-1(xiL?6 zPMeo>%lmfaYsXhfuZDMoj8=;ozrH+~%!lF}s3iSQ42wm!I)8?0oa*scSLajBeiN zjQ5VCeH8OY8z|O}u9`%>N?gIG>R`%i|8l1QT}SVKK{&*2XTjV;`= zMGXcGyfR+dK|@7DT|*bwH?FP89TJAxOsmMF~th^0N-w4p$kn5juxDSoKH3`JmTA0P#he+knDTd$7|u@e23iB-0Am=a*Hy?WE9RzoR^(; zpL6;6Uj^3+GS5st-tQ1@qFUib8G+Two+1yeWaePvrs2O zbV{g2SwMN3T(!5=dhOMYU9T}5pK8tOhvp3h<0@xd;ih_~+;QYgLUfzDsXd zl$@zJQ|We@pSCo*p8mUjFRM4aw+6_FoUXtbzA?%s%5PZL$M7|}7q?ndYM~D&AGO$Q zNiVb+Zxg>RcU{w^T-|_*Key%Tb~f*>N~q$hN6(LVb^n$U_!8WFIbyU?bZoSDjP+JQ zoX?aRToN&)rj9PExBG0j%kF6k2j@mUhMq$-p=FsZr#`kgM>uC)X2$ltanC2!$2rJl zD%s2=j}#nqq5extd+dwU7o!?hPuz{ESS$$JUsc)>oiQQPY^*6|*X+4*^DKA#myM>$ z(Ft3ow~Y&#zEw4>RHu}qhp8de#66@hGMP57&B??yeEXjX#l$d!tLBGIn+i7=Wo|2; zt2XyZ3MFkq@+uS$Z$&weTfaSF+X~w(UDw0{&Ku54_NvMpDEeg2)!@x%Fw=G_T?@?L zmNU{9ty*Av*QV8X)|xO+{nLPyUk+nyM4VaV@tE@0WZ*h)rRpSXT~g0%%Ps$RA9op=a${#os<`G-Z0!XFlx!A>+3F^ zRtS7M%1gB=dhOe~2Q7=;d@#QCr@_xLsoJ#h8#m=?)lN(r|NBGZy3i)=SpM~kd+K(a z%FMn}$f{=FX1{*<6rJX$zAG!~Ws-WZ+M~y()an`$ zVkqNU)y-Mfj6;kL#%Bhp_4bp~;De9BHLcpKi$4(lyjSa2+}TaLcA?fw!OQg?`ySNg z+?C&HowqUT^~YUZyv4cmcq>}UhuURXnR|QQKK@+sWFdao%UWlaEoB^4^HwP}ElSQSTohQ? z8h-xtYIf&q?KF$3CmrX*{+iHx|6Ur|>dE=`aDM02&iC~boqFRE%C<-IMS>UV}a|eouU5j9SdwG)o$p z{K8t;{rXD=y_!{Rm^QKJKu=}f#0i*)kN4g_sH)jrvp=aVDe)q2&Ef7hC2uDmt1T-n zn|9$^s5x#)$AYewOCfb3I`0nFYq&M8LH%yr8}RAGd(T@LU5S$u6MIJt-`)O&X^yT1 z0NV^M!$<7nI+w!a^UOdN-ybpy;i z9`*I3M^l9*s*uH|c-T37Z4Um+N-sbx7EmylkdP3w5OXuWkb}XI$z%)`kHO>7um)Nb z7Ayus(ZM49ekTKd>>v?S$Q6jW{9u&CFX+!-DYnwnlQcB=`8qD1V6dTJ(N}gbMNB9t zz~IcVn4yeV%t0H$N?}l6*H}yp6a?|0V6h0c!wqQ%BXxBhG##=z9&boXk=T9}Jc6%8 zhO`th!UPb;0}}C93Yn1oD!3>5Lv>yx_J9z$GPr`(hjb(uxXKLOufgh{Via@PKk101 z=BH**DEB93lA3%!L=Qq zxl*!XVAuVd3yaT$-48|%g#hANST+cu$pk!v#^E3q+LCRKN3(JMAPbKrKv?WxLsHIu zXvj^-h4(%%NJ>XC78cwXn}}nP30M*u?{5jBi6DW1w#2h7(Ih;H$-*)%nHFU7z*vTG z^FvckToD{-VNwAIhhg9D<_WF%wsfE(h}*YI2|%F;k}P5?y@6FcxUCKDS`wSS&42$hg#yQg9#M?nzxe_#$o;HqDn0f+^$nFJON?N4NbXiE!%Ioh8|#G)gI2;wq9$uh*O3TAyx9tL+Wl$ei_+G6{;OZoT@j+F%ox&I_YrFuDt z3H5($%)h)S{c(7RYytVBE%1;f8nh%Z(f(|6GJHG`m=J^`u<&@|K>W%VrR1FHJLZ1r zH2dXAlPxvrUyJ{I(!Nd7{vYh5{fFYWnaM!5^J69>Nq*s!&aQtqaggkRk~8&RCoXXA z0pB7hQosjNNm)<6@65m1JHL8|lgEK<@}DJl{hgCCAIdxbS5wITR)%ncv^GFq3b0hR zLLEF=D0F@hU+BtbK{RtJW~gE*pGYk|JvGj#Zp$1dwYLOd&1AEAj#0aFZy14J~tE! z^0DK>*GG}$8e|T)(r5F1#gK-+KQol7_-fccX;M#=`og-u6nKPtlvJ}dhn;w6XT zzx{)Z=-=)daVT#DVIhMg$0Y+KL`9AZVIhMg$0Y+KL`9AZVIhMg$0Y+KL`9AZVIhMg z$0Y+KL`9AZVIhMg$0Y+KL`9AZVIhMg$0Y+KL`9AZVIhMg$0Y+KL`9AZVIhMg$0Y+K zL`9AZVIhMg$0Y+KL`9AZVIhMg$0Y+KL`9AZVIhMg$0Y+KL`9AZVIhMg$0Y+KL`9AZ zVIhMg$0Y+KL`9AZVIhMg$0Y+KL`9AZVIhMg$0Y+KL`9AZVIhMg$0Y+KL`9AZVIhMg z$0Y+KL`9AZVIhMg$0Y+KL`9AZVIhMg$0Y+KL`9AZVIhO`x42Z1w@*O9@GB=m;CD-q z#t;_5@1;O7ojhCtAbdIiM6L&bPrdN>YXDe@1%Nlp0D!U^04DOcFTLsjz^@~7wzFY` zKK^spr8&dgwPJcFue0%A&fK1>mppl4MNZwT3+otlPP5iVZCls@&}^dK1E&LXZB9RM z%@&Li{UIPRlVcjD+i4z&CfjA=RvPKPT&mXmML?^v616s&R+gGxWtO!8R6t|dOF%U5 zMvXDB?D5MNKsrOHlD=r#gm}A{=(5I~6@}av7yPdJm7nCDC8Hivw;P39Hy`U%DL*v4 zEoMVvi%ZvPy^>j1p59ZhSi5tr(%wzZN=x1t-lu18-E7TR-uud;1M?|01R#UYWw&Wn(2n0eE!HUw)r+-vx1%O>6;&E1wjRhllc4sp2CM3`MCAaewGEc<)>a%U zY8|$%s>ICSW0TQA^+XTttzyMig*8*NvZk&-!o|*rKEgeE{lp2HVRk4lq^CUl<6kd! lb`c{x4ccKGXWo+ljO8B>sxzj8k{5|M+t0Jhvt73CzX93tWpDrh diff --git a/Resources/Textures/Objects/Storage/Happyhonk/cluwne.rsi/meta.json b/Resources/Textures/Objects/Storage/Happyhonk/cluwne.rsi/meta.json index e3c80c2ae3..253cddc2c2 100644 --- a/Resources/Textures/Objects/Storage/Happyhonk/cluwne.rsi/meta.json +++ b/Resources/Textures/Objects/Storage/Happyhonk/cluwne.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github)", + "copyright": "Made by brainfood1183 (github), modified by ps3moira (github)", "size": { "x": 32, "y": 32 @@ -10,9 +10,6 @@ { "name": "box" }, - { - "name": "box-open" - }, { "name": "box-inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Storage/Happyhonk/mime.rsi/box-open.png b/Resources/Textures/Objects/Storage/Happyhonk/mime.rsi/box-open.png deleted file mode 100644 index ab36fcca2e8b4339f6e032a332459085233571f4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 20090 zcmeI43pi9;`@pvpBGQGfI)g5fxzAw67?*J^m)tVCZ!>$wgqdk(UB(nP6PmTcOHW= ze|~^KA`k}%geYeQ10@s*IJ_VT0K#h0ytv+8ExMK+Pv6_li;LPhPvEJehVr!C5;ZKYYsdj5y_O+oHDWc$kdZto}%~QUAcU^#|iN-|T$8`e5LL z;*OWMyH7u)Hy>?J%db=|RU5V2iReL&8g;~W+L&kS%dT8|-iWb|R-Y~ewAJ$2`r>2&qHhHm9)CQ$eNrL%2wW#rcb;LH?Lx8n| zQdHWWnO;D~aA0{k%fA7bj|P^{TKlpZh)VmEyjlrZv{PS4DI)xPD5z=mXCyu&+R z+V696wVRD$QpqQ2h0`ha(Tmj3D^-1cG1H7HoF~i~Zwd|rQ>-zU!jmTvqDiBlwci4O zj07EcwC!DC6)SGlF)9cAV-U_IC%RB`oES^JZx?C8aMq0N`Db z;Nm?aHRY&)_0KCqd)``gIcCfNqBzbwRsz6MyXhG3oB38{Y5-uD5pA4jGv)ooi6*5g zQ!kFFyQuMHx#^*BeQmIEkY@$#LbIIqd zmZfm?XHYHuqET`5$l*5E)y9GPHE~M*o0*2&)FvdyeA2(@G<@uq>8KlV<2?-KC6Jx) zo}0ZWs$1$#$O&`07L6}vzeVFr!U%l^+z3Xt7?`ha#awL`H zG}$omMh!dgq$*{n32M&un8vim%Zd65U0y=odUrEl5 zd9rJoThblhyX7s8uaaIVzYiUy8LP9tERJh5DRrXiMDC=}iO2W29GXlorIg}yXNkixoe6s*852Iq3oyG8b0kl<=*i}mU^wpb?_m2H5?gv zZ+DJQcG~DRSM#qYAqWp~D}9vLT=H56Y%X|N{chneUH zYUad-M3b+~JaPN+&#R1!_H^kLZL!QgvY)~r&L#Thd$#Z7SgAJbS@~(N#BF4=QC3oW z`Dnml&hJ?Z@+QIt{zc`HE z%Dc9>VR}RGwcu+9XR6H9pE=L;u{;+M(vS-2$M;aJ+S84rq%6=jXdDs)S9 z%SnI0y`1-Z!Ht3=XC~z}JyNO7EeI}H19JT*aL-)Lz1)^qlDOvFnqRssRW&z0*2>Xa zs23?dB^pm%Kz*80vA4}?&DHn2Td-VarFP{bVne~W^4V8-X2k#5ALXfFTpLBBS+1O*%;#+ zYqd=n$DCY+Pa=m_)iK2NcAxEb+dWO?;@v67(R0bh^lZ!uT8-H`(mAVZ7>?hq`^+?^ zbI`o06pV4MDL?3Z{g>AEjW5z(Xf&*zum^j6i7gYy zWP7oTrpuF5YPxR9DpWARl3IdazawG$O51FG*Te$uYwk2_w}@ny)^du zj)KhCdA?{p=F5_!D<~&vE5mEm8+1m@iCv&_ly-J=fpPGC_ncPWq}<4onGvpm(MvDh zTzB!bQs5g6AN8h~HE-%3wk~mJV*Tn*gP&v5rqFdZZO$EEJ0VGD?IWYQu%;;+1vf7w z*X=xYBld7A{qWJg7Mpb2sJ3W*0i*EX z1=`tSDC!U%lUZfA%(QyZhuc`0x|Is%^^Z;*X@??$<6V?&zZ5IA80dZE zo%S{qt!b+1^UL0AFARlt;f*aFBkMb+X;N!eZC!ozxoY)KtMs^f*cG-Z?@}C6y;3?C z`7b)>ev4l9;PumpFOIc8jowS5`GwDI_rAfaX<1jD$bDD2HEmbgnn=tab<1lH6s&G$ zRn)H-EqHrQTk`y_eb1I=i(-q4#qZ8a-kq#%8s~e~H|02WS@3JgYg%_=wR>67-lCM; z!o`7wZ4o7>S93aArlgxyJb7Od{=06^gZt?e%O@r65rU4Z9Utm-pG1mgbybuXJr14K zcC6UFc-edFR-4C+CmZiuE$Xg&^tNv8iqg=G_NqF^4wabomE8#+;zu(^#3#p>$7;sD zNjIlcC@-u;T`ga-7?teGnduX{4|JF3PSC|he!BnWVMW!Rs{Kjtk`gZj|D4(Ny7bMY z#l^!#qWLKQ4kO2kooFYV!SA?54DoCo>0OQ@KI8~puZqQVrgI?Z3y}Fk1JS+G{hJ8vx6yO z!$2VxkHKMwGGen38)1kjsJClu78VMEf+4;{4BO#{w1bhlx+11SHWwT`q@`G5zX~2f zKan9V#opmU2$LAY|bg4Ks~Bpf)(4BaoJ`iB@LJkAd~ zBCYwM85G9*ftj?Xu`lgx&Q>QXS5GWCdyaj?FdSAE>9>m~tm^3_5M!q~gTM#Oq zO~Za`G8j06-XJ?r0?`RL0uhbFqwyqfycrdbqv8k)W$gQuzA<-&*AE+%fL}Wxd*kp_ z*ay+H-@#XE-?|X6d7SWnt`5F2gIArjCWyg$e$;7AY-M;d5I z#@Tlbxr=!4-UkNB=t#%Hh8yFM@oWkSXNo5H!vi9NBof-3z%fUg5=>ca9Lt<#MxhKe zF@&4%nsVZa;Xn(Q2|zdudv`Z4Xyw|6IVtn^k8#QPtZ12MSj@67;-g=d+v2y8Ub3`at9a3pwDu?Q5j zIT<9F5-9#0G6h~xe`5v+cq#!$C78im%m3aC48|@i0OWHaHXS?Aoq>Y?;-s+z{8fG6e$395e@n(`<-CVxi566mzs0kw7vhve+Pe8HnG1Yg<$- z%E29>|8DlTCr!T8{nAMB)kH^r|rlYwmK`%Fff{K6@nUEglvAl(C{_tbx# zxWKswe2SpTtdfCLQrpob4H=c#0{U`eN|1 zZe;X^^fQn}+rXy+X|gMp>7;Z;OJl+ost|DcV8CHpADWSJ-1TfQv#f}_NE1NnCo|CGE95xn9^)ND5N)=HzVNS z4;C-I_M6I9e{1UZ=ccmN-$OEnK!V-?m z|NLigME`l;h(|>u2nu-w1ul6gAvy|N2nu-w1ul6gAvy|N2nu-w1ul6gAvy|N2nu-w z1ul6gAvy|N2nu-w1ul6gAvy|N2nu-w1ul6gAvy|N2nu-w1ul6gAvy|N2nu-w1ul6g zAvy|N2nu-w1ul6gAvy|N2nu-w1ul6gAvy|N2nu-w1ul6gAvy|N2nu-w1ul6gAvy|N z2nu-w1ul6gAvy|N2nu-w1ul6gAvy|N2nu-w1ul6gAvy|N2nu-w1ul6gAvy|N2nu-w z1ul6gAvy|N2nu-w1ul6gAvy|N2nu-w1ul6gAvy|N2nuW~AbXAg%PBQ=;PMPTzmHWoORvS2J(%^Q>crnM7sXKy5 zalgS%zhHb*^igw8eof)Mr4x0u?Z*Vw#=hE;_ovU9jLGnOYz|R?dm&xe s1s*#uQq_jF@RZ(UO5hPQsog4oXvV5?t%Do1q_6OBws*73wOzjMpHECG^#A|> diff --git a/Resources/Textures/Objects/Storage/Happyhonk/mime.rsi/box.png b/Resources/Textures/Objects/Storage/Happyhonk/mime.rsi/box.png index 6dee8d1517efef24104165845b75d8bd3478ad6d..e1e04e25802d34c5f6fec3995ba698ea20f2cfee 100644 GIT binary patch delta 3161 zcmV-f45ssoo&ob1kRt*LI*~dXe@Ka)mUmQC*A|D*y?1({%`g-xL+`x}AiX!K(nMjH z8DJ;_4l^{dA)*2iMMMM@L4qO%jD{kyB8r88V8I@cAfUux6j4!mGqP56<>kGXm){>} zeQTe+_dRFteb%}Fki7l5ymVL!fHa0IH;uf5=ydS^Nt%_x7l_gXiP(b8$z+MRP{gU(f()^JM#R+k z6fwgnG4n+S6tTRR6BpU=v(F+si<9uYy1K45IaYvHg`_dOZM)Sy63ve6hvve+8gpGXV1Uzt}Vn z0w5{sTl>IQ_o0dBB}pL2uro2q&dxUGa#+UVg8rfZ>F_u7)%T3W>Ha7W-JO%b6s8L3 z;<~ZYQ`3cfdS(Wb#i1Mhd5HgU;9sA^Focu9;d6MRh;Y%Aae0ZNcJtU=0XLmT=koqj z6aQh@pR_pFB2gMXe*tQ&F_0Rd0_4{|fT9oq5_3Sb1O3rAe|$I)zq|<5iN(49Ea=~} z!e!zmlbiTC&MhR2&Jyyo7Wc%@5}*MANCGNQ04hKO=mH~P4s3uua0VX07X*SZ5Cv8N z7DxhVfDf`kKG+C~Knd6Zc7tkA3mQNZXaOfc2RIEbfXm=If4Bi|g9l&)jDzQ32D}0D z5CmZ%GDLwCAXP{UGJwn>2IL5NK>kn&6a~dWi4YGGLix}ps01p9s-Zfl3Hly71zmuy zLW9sfXcU@)euv(}2uy;hurjO-o4^d%1@?o(;FWM9yc*7f3*qf>6UgRb+f=natP#6>iMMoK- z>`~sR{}cWr;0PjdE%mRJX`^;5_c4L7B_^Oz|G^O@LG5~d?22U&&8MF8}MED z0sJ_Ao*+%oAvh4i2+4$vgepP{;S%8?;T4fcR43XJgNa>atgt3H=1Y2UgM2$qd#E`@b zNxY<%q>JP#$vnwQ$&-=;lG9RnDQzh?DW=pqsT!$MQo~ZS(iCYk=|Jf;=~C&V(pRM? zWw0{ZG9EH)nL?REG8bjWCO)PYmQcT=_ETqMWn?X7 z!)0@1Yh=&Jj?fUAHqD2YN-LwCpxvRpms6H=k>kj1lWUP1lADuXBJV8EkuR2SmA@_j zUV*OQp^&1mQ=voQks?Y_UoluQTk(M6CB^9_)Ft*ySWAkRoLF*S30Bfq3Q=04bV#XB ze`!`(McGR^LwT?AMdfJ~nu@bZvPy-@S(PbOimIb3SG7X*oa!^WEZv2kO0S~#&}YdVy&)LYdbX%I9R8VMQ|8r>Q*nyQ)sn)#Z|n)kKvS`4iutvy=3 zT65Yu+7a4Yv^%sXb>ww?bnNb*ob80Vw7dnY&2?2Gxj$wFzzsZVWMdgZL-s(*W{C_ zm1(MJgXse^88ctA0<$i&-_7;SS>`q7w=BpOo)+sZIxSvW8d!2H4_Mx{qF4o3e{Heq zw)$voW6ig2v7WNgw28CXXEV&8GJ+VTj4QTiTUXolwx@01*;(5O>`vJIW^ZJlVt>?r za;eTz&eDdZV-D&LOouv$5l6aXoZ~^q5hpb#rc=Gs6K4%)wsWKNgo~a_vdb}-7p|tR zeAhPDIX64EwQlF#5qB^5V)uRze;JSE9@QR?J=HxEJ)1peysW&|c%An~d;59s^d9z6 z_F?%n`ONs*_^$Qs@gw<#`c?Zq@z?j~`*#Jv0lopd0v;~YTE<(}5eNc(0(S*I3epK$ z9rR-`CO9a#CirQHSxA0JZzv@+HuPxdn=sd~vakosb(ag5cZW-c$AmY9f6qm@N0dj5 zM4Cjdjl3SE7{!h1jK)TXM>j^#uJBl~d&PK+RZLOLos~K(b5>qmrMN0})tOkySZ3_W zICNY@+|jrX%s^&6b2i>5eqa0y%Z;^%^_=a@u3%4b9605ii3Ep)@`TAmhs0fpQ%O!q zl}XcFH*PieWwLj2ZSq`7e_+btl!erY)YddyT3p&Go(wOA*ORW2o|8V9VUSUjF|yij z_3qU(d_R6;CX~4{vr|A7{Y>=tT>!5Y<>$=x#tS?+YzQJq5k&T3nDI0$(e=sd5FL=EvVpCV4 za^Z%;vCUqan~Nlh_(j88?6=fzMQ!D7?cZjxZSS^E#q8p1C8i~nB_B#zrPsbO`=;uf zh3yI3`^&7$4(!0};O)4x(`o0Ca_REC^08e3yV@)06~z^=cgOC&T4`BXyN9qxxM!rw zzp8Vu=H4B9KU61Gf8VZgt!dq-v~SzKx&7?@LkFA>wA3osmejsK$US(s&a1AyUc0{X z5av+Up{EVu4ZYtozHMq$Y%FQ~c$jy10kG~(0%d4Z_dB<%|ym1DNytC3hBe0005>Nkl?`*8PW==+5Q5JI>Bo$sG`eC1YXPnb3s403-R zKnUU1YBlaPo&)gq>1Jr(yl$E%0K?%h(j!t7e?qwJb~`TPZ`A8`G)<%5?_WHC5W-!` z=Tn=X&1Ptt29PMgO zo&CK%&StYj=8*xs5J@JP=cw09^_$Pg_`mr9138nQ5KZ}6$EuaL}e31 z9YsNLK~V&iO~efZ#}$N;MMMXDf)36o@NU>{RGi6_?|*;&e({zQr2it_MZVOZEZ_+vcZ-d6|!%9F)!IUx1GGyqU?;n3-> zuKqj`Pw3C%qa5gT6kot&aRMO#2zi?B!S?iMpK9LI@XpFHCStE6&wYv_%H3*bghs+V zL!I&Ji(_;SJ(=QGGSS9ntX5@a%$T^ih+R|Mj3(?*daTf*b2x76k(eE~K0e=gB;a9D z&x^Z#7aq~tPIjl~RVx%LPS|fxbTf{aaKdWV#9z1GD6e?lf>{))G=~qUE9NnEguQxl zz=v=ub%AcN!c{;nRj{tJPV)k}BS z06sWCgXLIG1|FjUoP#&Z9yoImD6UdhJ_jgH0B~+GQS*VZ8-X>IdU_$iwiH0aw#%FP zc0sOsn;}dpqLzvjNy>Ky(e0C+A6ujw(!Lwi3jkVe{|N7k8er8jn(Z?~gMq}X2TAJL(1oZKhj4{7E>Z|*Riko@>psSEq z@{57um*1M8vM#b_o zOUBigD1TaGvdwBvd8w7Ul@c>zreMwdlUu9|qVJy3He7@KWsx?i*v&sWk*|s=^}3{L z&R6>rRLm$bD2g0E*0NG@GN|)3M$T`Ck6xUjW=hltof7-8lXlKQ-Hg$2({)TRw#U2g z@I-mpYj>FoejsmOVS71YVI@G=@+rE=4!<|@oSXSC6E4sTj+@TdW_wuq9#e!*jh~vC zc297AhWRd&Lv8nR{MDYu)95#F#V@BR5X%E`n2Iv1vt~x)6B)P9>YkjCQ!(Sr(vxEf zW8X8X&jyd36lqgD-ehdB6$+eXY479Yv*fY;an#H?q=`?*n~oo|&8<{lH}SaR`FWQo z{!u>7kAUCqV{fGQa8mqatop_ndb#PGNwIW-e!=b^9M1miSv#rLwwCLz*KTwojbuMV zFY)G6X23ZG@?Im&~VvAObPSaC2)O4{n_zDo)eAZmsy=Ul<$7pZTs=br1h!fyIZF^I37K9c;EdQ{+j+hoYOBwmnS~k zH)~1KJ@4Av?RGDdUXFPeJV7OT%GMh(Y=h}((-fw$rw30vo$PdM`u&~LZ+PNN@voEH zQq)p-UOtBThMT4&+)~=Nc;CEzT83E96WPbI8?u$Xy1j0D#-CW_u{qb)i|EmOV*D@r zbG)+CU0-`>d9Y6`Jia}feVpfM@pHIuZ>+p;nNyhy{b#q#v#XnnDp1Od>3JbWIsqy< z(d#3P%jccF`()Dw!@}fV?ZTbr*(VN>>BPlE?>zVJy(|lb=HzuB4v3bFZ!^eB>JH!0 zpz&sY(|oOCB&PyAv?3sTf6{)R9Qz!%9J|+7OmaK2(vMxSDfImqscLy+vHl8uJ9d24 zxb!xUCmzqTl(MEen^WHBVzL8{Y8@)H4!*|C>P*hKx+)^WiI>$7dZq2pnVYe_p1nbT zX1%wY;3J&EMNRBh~yy0>ohm1T?QN5Oqy((`Qz1vS(o4{U$3Rolg> zSkXMEIjAD2;>bMtc{=kPonJY3rn);99Gib^q0>UA8+Y&AJ$(0JigB7b{t=-qtu5_Q zTI0nv%R-hJVt$~@as>8IvCEId`1H8HDTN#c^6 zjEC&9GjH>6=AXDY{Y>j)`MTWvp#04s+fS2y@p^7qXX2H_&6hX-)N8Jwvi*r_j`lL` zaN&7@24yLwA+_p2r^V*$@AkK2**?|k)sKnI`IB$YFXyCtq}{h;YqAT3Tf1X+#yW1f zjY*rQu?baFbk*B`t?IygVWmnghfR!RTW zt+mEN`QScWK;y}97rIL%`$C%@mVr(1KK1C##iPO5J>VNn+V3>M!Dd=B)wF@o;Jf;c zY4OF%i??0Mcp0ms8tFgk^)vg!`fGr!h`Dm?F|m=Bk;{Mh_#teQ&b2rTN*(n3xhEZ# zyD|$br&z{sIkly=GZTES0z+&RHIzOUp~C20KNcsmW5BykJ=vP9c>ZE zkMWsNgHJLJuBoRB8?FDe-f!KI#>TslPoozb8`82dYpG97FOx1?RA5-XcOLkp`#1zT z&Lm?Db4|E`R~tWdbZ>7;Z&GgFsF{qdT*(hTR8{&eDr@Qq%p@bq{zXnPOU(BE%TnF& z_|#oO)$!w)1XXOR3*` z{zOiB0kfJ_%W8kofX-O1x<5PVMUpC4<;m0YDve9ecf9}IrVg8Q*PyO&Yd*c;$TjMv zA}H%-)!l^_oYwqbD|8T);JJlPrulA+C z2}Y}!sCfN!prT2SZynmw-ZQ?jXO;@(>4se!Pd-<;KYN2VTN}I9Dzz)sHq9gT<8r^{ zmtF4AY97972>WDLH(TuhiRv4=xZCq4=V|+v`-$wX>Rsvk(l>`={-|G5cQ}7z8>6am zts3vmWp&Z>TATizZ3~MQR;}o|B*E-qzl6UH9%Ict3qF2L0(U|8Z?`aAtQ+ydg=$e$~6BA3I8d>w~r59BEW@Y1xGO(V*Y|kF)PR?qz*UoSvB2KXy!V_a_Ds zT?YVGSsYIvk&m+zg~1ELfJ~krgb4}a!-*&WP%T3EAR_=0q5L2=hik6;rtq3Bio-P5 z^)`0KIrHg|KgT{y0C|Kh@nnPrFvv_@3z`x&gaSJVf)g8lea{yfGF>#1e660+B+( zQAh;T&`X!51WQx_lSOg2wjF8?{?A<3UnJsFu-M?>U`#L(!xONvcruxc#SyRs0vgsp z3q!dgFa*sN>J2&>_G1kR83GPp#NlyKV!xmtZ@tJ|S6AH7$ZKd^LHv=1xWXZJFhy(# z$j9O_IP7RfOvZ=}f4v}ZpleJ977B!dAg)LV+u=vGgONHrkC=|yTu{)cmO_!u26zNR zL`Jm~dWP~LtUDy+trsvLn+l4KYW!LyRmm2E!G(h{5+Tad@H(yg6JZFIYIA ziv7|A2^_>5WDSZS8UaTjqH%aMp5%!)rQmTC9ATM+{h-np=Faf?VS*y?GY15`C!R<# zCR2#ULk>Pu`_cuE$zg^5odZNk!ko#Vuy}$XP(R~NhWx-AI=2F1Q{j-9Ecl$;Os1E{*`NM z9%H?D#lWryHy0+40lOcG90~~}FmWunAu@>oq498|Xfqa(fM((SKqdi4f^ay}a6=N# zzG}!tz=8KZFi=8AJQk*SEXH^ynS?Vz6a36Tv@r;e#f-o*Lz@sx7)%_)jA2S94>vK2 zo3EO(=Lq3I3zY~!I1C4NHxFpt=cU6Hft-O|iVq5eka!WB>khBtk!@{c*Am+dYz7pN zA>Q9;3~^*bOe*%XQlwiWmP2NoQKnNW1cUx1%)i}6us_88#>yDKkAgtX|G*pw!42Ox0}vBpF-S~!1sStIw3#W1i1uR`i^i7zk5;o;Rz7g6!Jrx5+E})Xhve7{a8dYd_0gC5QHZ&2?XQe_?0b6@i{Ya%zf8s z_T7^vU1~D87XSIAeV(NKKiEkJ55>r6(R{K6@n_26z|E8YXeXX@W4E^zJv z-y$dyz=u;wX-~c{%s<;ZhrGkd<8U_l&yu^r&PkY$=AHMwDdb=)qqsp@8zwISSRz}Y zj+`tMIxmnXaON=~8j*?}tysb*QVoCOPjy za29O|-wMRZu27m2SIt|2l5BrzGr@HGNXs=jrN_#4;% zET%?tHn`Y6CnL%IueeghS7Hi$0f95(fsBI&PuW*x64NzM=OeyI1g;;rD3}s(@C%C< z{~a=wtp3u}_pePQtG_fwEWNlK5sfg^+84zVR^og6U`%_!&#EBt(7r7CQrndi0tNb5 zbKvWvP<#y{!mSM0d|5H7q3^d0B`Sst2PaM9iPAt=50=8utKdgv*pX*tUq!t5Q2dX- zkP-dIT_X-Xa3L(DkYu=|fP|>Xa3L(DkYu=|fP|>Xa3L(DkYu=| zfP|>Xa3L(DkYu=|fP|>Xa3L(DkYu=|fP|>Xa3L(DkYu=|fP|>Xa3L(DkYu=|fP|>X za3L(DkYu=|fP|>Xa3L(DkYu=|fP|>Xa3L(DkYu=|fP|>Xa3L(DkYu=|fP|>Xa3L(D zkYu=|fP|>Xa3L(DkYu=|fP|>Xa3L(DkYu=|fP|>Xa3L(DkYu=|fP|>Xa3L(DkYu=| zfP|>Xa3L(DkYu=|fP|>Xa3L(DkYu=|fP|>Xa3L(Dkp2>v67uU45EuT*iD3A*B`y=D zy@h|50>!X*cLsp4xd0Hc6#)L|hd{5cZ-~@AG%hS-MD3YfYM#_x)}Oess=&Kz^Fha^9m;wH_31GaR@4{2$G1FT%vjUd zvIp2389Hms!MqeT{t<)PxC7VF7u9NAj$B%SQP}3!ucGJu^yafW-Z@_L_gZ9fX7pT0 zLN&zp)s}zkUSJjTuN|(6B}ETQD)+g1P0=ZT_@HuM@*|4E&e_c3{Gg_{A8HN;)%E+U z8tkwlq)^wYoKoI#z3KF7qiFCz!?=t#Hv^4ns@t8iJb+2(oSyY!&g=U&m#vq(w>~}4 z#PMRC${R(a+e%H&>mn{Mu&?Y|8h+g7(xkJ7=y$PY9mUoM&3yJfT-NtnQVpHroPA}N zM@MU)3%Be6Io>&ORm1ZoUhS>g6~_wpTkMpp?*1Wxb)@7mDP^JKTh@_@F{eWgT>$4L z`sx`?-I-qRW0api`zPDloAQVCeVHf%pSwu~SQ(d9Rea!HCOmb3gUu4_T&p!({te&W Bag_i7 diff --git a/Resources/Textures/Objects/Storage/Happyhonk/mime.rsi/meta.json b/Resources/Textures/Objects/Storage/Happyhonk/mime.rsi/meta.json index e3c80c2ae3..253cddc2c2 100644 --- a/Resources/Textures/Objects/Storage/Happyhonk/mime.rsi/meta.json +++ b/Resources/Textures/Objects/Storage/Happyhonk/mime.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github)", + "copyright": "Made by brainfood1183 (github), modified by ps3moira (github)", "size": { "x": 32, "y": 32 @@ -10,9 +10,6 @@ { "name": "box" }, - { - "name": "box-open" - }, { "name": "box-inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Storage/Happyhonk/nukie.rsi/box-open.png b/Resources/Textures/Objects/Storage/Happyhonk/nukie.rsi/box-open.png deleted file mode 100644 index 14e8a1181d12ad5b5a53bae5e18b754922b509d5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 20115 zcmeI42~-nFw}6|0VP9Nu7bbuTA|X4F7{U@(0TBoTxQsSQCq&3%5)9yopt87(h^Qb4 zgF1+Spn{?ZDx%^JqJyZYi~=&~fNwwtM+II7gpP{y=l|z_|2yxU^f^f`RrlVi{_0lM zt>&EGv}mEbp7wNY008tnJzV_ZUzF^lsSbaOV`5&xKUzYM5HSGgOq6|8fXuy90YKZA zOQ$bd6ef@e#9;y<%9Bn<2}J@nHv$5Hs0Y~r97aIrWc$9yubjP-<92!p{3mIm{GGSN z8K%y$G|?KjAlYQ!{Yif3$Gf_!&A5`Ath#Mm+}25cR=S(D?`gD|?BBNGK=S5m@1CqV z5Pr9+@7c|P6HT;^!@b#M^%~Why1P9Hexx|v0%zm#zihaCvGz%uwPU>YEFmyXvy5dT z?l)5b-o#R=^GvHX&H^e?cXTv?YM-oX?98M=gXhkBma4>URH>Gv+IeZl83K+m+nf&q zj&3S(*%@;JfLt|T#dT(AE3gO+tT12q><$o@{btV^6=2CulSwMMsQ_vslbh|{rGTa`fb~mGm=?<)CWyNLt6*h>x+br0PsW-+c02-DVrWQUpJ<>ceOXa)ZBRGoj0?7ht|f>htE>n-=EYOd~bBe^rB~IMX;q| ztKWoG+gviY_TuwQH#zT^dujIVLDth2t9Poj77}oDB~4{bD*Dhers^MF=Hr4T)ld5X zpr=xB{$~qK)wr+?PwJ(EFCF^bb7uo_Y|kC50N^{9S=NkeWe%4$0l+0U-twr^j92HU zT2-shJpc8>^E&TW*lcv3b+N{IoU=A7Zl-9(+{5dgEfQ}YHL_fR`PtEkSnU^ zt_eJ)Z!a`>3u@+^x2THOQggbZIT18@kgO8AIoNEQ=9E1NZ%od6s7=^13w1Tw(9hH> zmE?i*-^@S-dKmTCi@qW!EpuDn)*q9qO^A1`*0NEPI-@{iCy!w7;Dz@*4xwhwB94EcWvivS(XYnbH0_Yr z@j0i*|9Nq0C?1y->|tegcS6cU%(ykl^ozE$CTybP%`3Kl<$3HU#_b8W-EQ;!%{r|L zvWOnj&C;$uV1<`zkat?4=3Pl>%Wk{SMrfPSX411nJ3G{I)lY8%o?7@{Te)Cb`?z*u zyE>GCcM3d^>Hp}^KE`-b%3|l@edYc~{E`k$Bt~YEZ*G|E>6KT!f7hMqVN=5TxJQ1K zoF4yZm+`{%TS2$4ce?+Y{;TRMsjgn)qz#voITq8hrfN*(Op{JMlHq-D+MO-aE;F#U zxEC26dkppn0)s8fEx(_XdQE%Rf?acV&9KBU3JMPvJ}%S=>{1h9~zezphg7*bq`cHnj$CkHN)uMEm)5@Z( zOv3ew5+mbD7v~(idH?&>mX#U(MwMIa3k&v<>4XJ@pfdm7oook<){Iqe_DU9Nby(!5 z_r`91Z1{5S)44Ma61^*M(9-b2-RZl7i#&?_irinEu_@`w&pvp@wKC*gyuQ=r1?Ef5 z-8m_BUuSm&+z)t^ubn^H$DZ=K#JVs%Z^ph#7wI{Ees@OB+3(_VyaoA>qtA4_ow*j% z&*>9=Hokf3h*PqJes#(d`E} zgRR`!rLD7Cd9}RS19Q~pn9T9=dG6Dl>F-l!H-`4tP( z78d2)J!f|JvZw%=24E-B}guLU`wQ#dCtm0ajfJCnBd^x7Z#?KSk0?&}vB zEjEf39~T)?zNI|QtlQh|u=dic-JKXtaQ(RYdxX~ViPz^|^d@iF z+GzuteUPv%}2Uzy1Cs+4}ZKt{Bdqh2tj=7 z!WH^2e(enoIzR5hhPND!^`-m9b53-aVVIcIpyH;ZC-bC*ec;O}v_EK~A6sdyRNKe+ z$05sa*jAssa`L+G1wqd8gckZbvq9Ei%wPkMA2(Ztqq-^HDSpXU@7~0GZ*p#%1Em@I zqx624)7IPyr%6sJ>x;F1uYGXK`@8BuiSM^-Agk+tb9;4zUNgzomL)d)h_fy4yLywJW zjjQ2h+Yf&og4Ql~KKLtRu|<=mMkxmhVxPOY=^A-=QO>-ZT{p_EHE*}w`|`)Zt_d|0 zp6n>kOY{mt8wEc*b9g1Wl)5UqS-W-8*Ygs;RX0T8qZ44$8-7Fgj5Sq%5PxfIUQ*T9PrG`yIZ!3g zr;*(Vz4Lrm*5^>Nsj&0S?svRp#S3|>x-P5UR_)g?(=TtT__@*Owmri?2iPVtj1-*=`+y|ZO@1${h>bGX^%3d35{pZ6K&HKyO zbTI2$RvHLio*pN8a@%!qOUL}G`E^TsPDy%7o7*P_oeIi4LRrpxE_qHJNW0^ExpHr1 zW=X};@QUu3Gbh%t`#NXj*w#IIbtd}v$%A(rbIA6O&h*9z`Y!doZkhZjR%G5^cfIny z)V#a6%C~CyE5|OU`}9XijSfo&9^QNTaNWvkX>M=BL-#)QgbnorsjpKE=wGMoNx7b= zm-r&bjz%UwbrAJ;zR#!Ev+C#MOc~feaJ^*8WK8Uv#urU>4H*sl(tFa=&hfs_>wjMT zV%m}B+L~J9vsa@CxbI$l`>yM}^r6(~<$)Fh-?r~j>nsMt{yg?N;8y;-v}tK+gKDZ7 zz3-U>bTa@rdvh7Vl3*Wi3RA$d23dko$U2HAgcDH!pgKeeL1s84L4`sbF5lktW#u_j z6qjXh8btEJ`UvSz7}q041O>z_WH4jGnPir!15KM6MS&ggAPI{wrm}`cuMhXd6OJ~-7k^*} zQ^Z7pLJZCtiy6y^#T>N}Mv5Yay2fH+pa_Tu@g-u|4mYM9jMT?x)O5_|c)T$!#S+)m z@Ev?0GNz@N5iNu;{*YJ@DPlsdtKpuQjn#Rv#2-T7D&PuMAJdU=$!dnphGJ@XsHre@3S9(&5`l;z5Jb?1!xcG*!RIhpc%m$VxO|pC zDxOQld}@LO4&n`R0VNO(kHr(vSR5KhWZ-NmI4lK=Uo2-otn`Vw4?KTZpalHb0f~Vn zQSd|x&hCSQkJLVOAz*RY(f`N+q9kX|Vp7-w5f7BmxIB;pVT61R6@wJYX%2-e#gi|V zfP5z8=|Y1Gthrnk1;++MK^&8b2AOtjG?q*xqsb(QjfN*XlTBa}2{6tf2tGdY=AXHC z5ilcVGX{1&ytuFgOxXQsjBs7^w!lH3Fh=sOe6Yyv@E)-;y!ZPicwq){1 z6JxmftSJw!7!I^(xd4R2aANGx;1L~!HoO)a4Lpi*uR|lm)nqrLHsYwjA1WB3SYJt3)m7V zD1w|gaBwIxUx&SZZ1$;pDn_;yL~#EH#y||N{(B=pWa5}MOgsxsu*DM5Y%Gz44rSuW zXgd;!x51M`*(5S{WQ6~v5y0apcq|2P3okAIdn16vE;9_|b08KCGt!-rg8$&4F$Mh9 zkm#S8I`9Mq;oJujiD_(+fQJHw!U!%Clubj-YCh{j@-Vu3p(Fy7+!8y?UCzgU@LpMv zi2Kiks9Y~cF`@pC-Sgj`l%aSM83IXcG#iA|Y=}){qU{J|JG3nUPqZU2Ss?s162Hnx zDcfg;wz_^@$*!g=K>foa^JEFXsAx zox=^CP!!MV$8t72BR=lFJepOwim9jXhKW&074L)pA7 z9t&R>ob3C9seJXPrXhcADqsDnDPkGO=Spb!53PMtEN3M|LnArdjw*dhD9E5*60U#0!0MAzd03`zerU-T{zvKo0Dr`>| zCq~qR-_mj6HI9aH=Z>ov>j!QxM5)*oZ16JY%-`fSkeEkrTAvl3WICX=ZwoU!Av9fo zeX`Rn=Le>Z&Uq@_J5GjOq1LtRs~cJq*HraAIwS3S?0Jy;^x({2N}~YdxEH`#p7zOx zLtSfP$i`mtRRN3CakkiaZi23Z|L7?R+ZAW0_Pp)Ut$x&Kz}cks!};op(BlIWtg}-bI7NO1mKUFTF2Uq4B5l2t zwzJWg=VNx~n(B6LJ2!kfbmFASu_n>d?fnvw4?wAy^Y#5fhyH4O-SzAv_3N69G@{kGXm){>} zeQTe+_dRFteb%}Fki7l5ymVL!fHa0IH;uf5=ydS^Nt%_x7l_gXiP(b8$z+MRP{gU(f()^JM#R+k z6fwgnG4n+S6tTRR6BpU=v(F+si<9uYy1K45IaYvHg`_dOZM)Sy63ve6hvve+8gpGXV1Uzt}Vn z0w5{sTl>IQ_o0dBB}pL2uro2q&dxUGa#+UVg8rfZ>F_u7)%T3W>Ha7W-JO%b6s8L3 z;<~ZYQ`3cfdS(Wb#i1Mhd5HgU;9sA^Focu9;d6MRh;Y%Aae0ZNcJtU=0XLmT=koqj z6aQh@pR_pFB2gMXe*tQ&F_0Rd0_4{|fT9oq5_3Sb1O3rAe|$I)zq|<5iN(49Ea=~} z!e!zmlbiTC&MhR2&Jyyo7Wc%@5}*MANCGNQ04hKO=mH~P4s3uua0VX07X*SZ5Cv8N z7DxhVfDf`kKG+C~Knd6Zc7tkA3mQNZXaOfc2RIEbfXm=If4Bi|g9l&)jDzQ32D}0D z5CmZ%GDLwCAXP{UGJwn>2IL5NK>kn&6a~dWi4YGGLix}ps01p9s-Zfl3Hly71zmuy zLW9sfXcU@)euv(}2uy;hurjO-o4^d%1@?o(;FWM9yc*7f3*qf>6UgRb+f=natP#6>iMMoK- z>`~sR{}cWr;0PjdE%mRJX`^;5_c4L7B_^Oz|G^O@LG5~d?22U&&8MF8}MED z0sJ_Ao*+%oAvh4i2+4$vgepP{;S%8?;T4fcR43XJgNa>atgt3H=1Y2UgM2$qd#E`@b zNxY<%q>JP#$vnwQ$&-=;lG9RnDQzh?DW=pqsT!$MQo~ZS(iCYk=|Jf;=~C&V(pRM? zWw0{ZG9EH)nL?REG8bjWCO)PYmQcT=_ETqMWn?X7 z!)0@1Yh=&Jj?fUAHqD2YN-LwCpxvRpms6H=k>kj1lWUP1lADuXBJV8EkuR2SmA@_j zUV*OQp^&1mQ=voQks?Y_UoluQTk(M6CB^9_)Ft*ySWAkRoLF*S30Bfq3Q=04bV#XB ze`!`(McGR^LwT?AMdfJ~nu@bZvPy-@S(PbOimIb3SG7X*oa!^WEZv2kO0S~#&}YdVy&)LYdbX%I9R8VMQ|8r>Q*nyQ)sn)#Z|n)kKvS`4iutvy=3 zT65Yu+7a4Yv^%sXb>ww?bnNb*ob80Vw7dnY&2?2Gxj$wFzzsZVWMdgZL-s(*W{C_ zm1(MJgXse^88ctA0<$i&-_7;SS>`q7w=BpOo)+sZIxSvW8d!2H4_Mx{qF4o3e{Heq zw)$voW6ig2v7WNgw28CXXEV&8GJ+VTj4QTiTUXolwx@01*;(5O>`vJIW^ZJlVt>?r za;eTz&eDdZV-D&LOouv$5l6aXoZ~^q5hpb#rc=Gs6K4%)wsWKNgo~a_vdb}-7p|tR zeAhPDIX64EwQlF#5qB^5V)uRze;JSE9@QR?J=HxEJ)1peysW&|c%An~d;59s^d9z6 z_F?%n`ONs*_^$Qs@gw<#`c?Zq@z?j~`*#Jv0lopd0v;~YTE<(}5eNc(0(S*I3epK$ z9rR-`CO9a#CirQHSxA0JZzv@+HuPxdn=sd~vakosb(ag5cZW-c$AmY9f6qm@N0dj5 zM4Cjdjl3SE7{!h1jK)TXM>j^#uJBl~d&PK+RZLOLos~K(b5>qmrMN0})tOkySZ3_W zICNY@+|jrX%s^&6b2i>5eqa0y%Z;^%^_=a@u3%4b9605ii3Ep)@`TAmhs0fpQ%O!q zl}XcFH*PieWwLj2ZSq`7e_+btl!erY)YddyT3p&Go(wOA*ORW2o|8V9VUSUjF|yij z_3qU(d_R6;CX~4{vr|A7{Y>=tT>!5Y<>$=x#tS?+YzQJq5k&T3nDI0$(e=sd5FL=EvVpCV4 za^Z%;vCUqan~Nlh_(j88?6=fzMQ!D7?cZjxZSS^E#q8p1C8i~nB_B#zrPsbO`=;uf zh3yI3`^&7$4(!0};O)4x(`o0Ca_REC^08e3yV@)06~z^=cgOC&T4`BXyN9qxxM!rw zzp8Vu=H4B9KU61Gf8VZgt!dq-v~SzKx&7?@LkFA>wA3osmejsK$US(s&a1AyUc0{X z5av+Up{EVu4ZYtozHMq$Y%FQ~c$jy10kG~(0%d4Z_dB<%|ym1DNytC3hBe0005!Nkly%q%9pqo|6*+g-oBFq;}!QZbX7tH zmPpE_gwC@!KLGgn>cNe=>+@x&s}y4Bq$QH_e?=x0mT`bm`;2+bKtZRj(q=Z61F+N1EHT>Q&ZvW`m7*Cjso(fOg z^jnY?f>Pl-*__GlmljWRW-#aXONDB1K3aTKZb2Aw6+hQBIm$)!`Qn16o=`F$8o&>s mQsg@CJ@4-S4Ps*c8-4=cbGadgLiR)e0000H?{x!}8^q9X84KsZtH-rVK;-@pEUC2K)8Gkfou`DV||p2J#a zvU!?eb00RS+})y2UJ{zl1uG}YnXl8A`6@YfKLi@yW_v`5K)RDk5Y`T(Hi!Dle$ z&J7ewg_1y_2<6IPphRLJmmdrPK-iO1Z=R2L(-`aaXK(G@VxxDu3B5*ZqP*-kN9)B; zF*6#XJ1f>`|Krh~mqs``su^5Qk5%2aEqcpnPxGOhv>s{H8y(oT=3wlmn;o^02ZJh$ z+F#u1I`fd;nA4V;SFTa4Idr#+r6)0ZXr}$d5x=h~y;@RRZ($pwWhw%6HS;(|l1>v9 z;6oIRHp94B;{u=(c3)c)D0WXN#!lGKJ^YpZp7|=#YgLM+@m6k{(RzSw#5VgQfUT2C zbZXKRZy;R_SbU4kssrYtfyGl-y|@oVr+(NIsRGQ~X*60TJsv=ff?^$jz?nc!`7fIs z0VWpE5U)l z&l$P8jb<>ZJ*Q{|rWD7Rd79{@8h(Bj6Q`BAj-8=L0tbP~wicJe_l(2G5QhKWb{hcF z<441zZR-px)5$F>BW=sqS%iLdQN7!k#j5LSD9;wz0zj=as-nvrlQ%wkrh0Tp*MZ5c zYJm&2)0eex=AIgEdj?2vdg9k6lCg2zzrEn`Jd z_PPDt?-!n%#^4vkIIDg5{qpU%vky-w-!Wt@tNKNp^XIeL-JcEb8((#06)?^8>O4m- z-R6+Ir44`Bc%%J}>DMOT>*hSKG4D{N*ARgdOXw<*@#v!q*sAZ{rs^`K#n0OT;7y_M z(r?o=Rigvf)Ru>KzqaXgPM-`!b6s~V1%QPPrWQUo^K42r0l*{utGS$NzAri-~r<;b{E7~RNN##OTE$c+sA)Pn7UTu&bIxi|8j(>;NgNt1bI3c+Q( zNy3dMoS;)0l%3|N8Q0gpbjPB z?R*a=dp$k6-)96dF2MfS{(P_Fo*RyiA}mX$+*vcm)$Q=H1H0~z4;&lV&OiQAdTzwi zT@&Xd-u1h8tI7Fg;!D-Hp+kqQAHAkDmN#u&ioS+EZ(OMU@ub;D#@*jMuG9xh#x*B3 z?is#E=*u+AH(N0}{-)NhS-Ym}GBCsVWM&=7dX}Z_+va=ACoXfL_sU!+UrX=0%pt$+ z&i2hpo!jhf;LXdNd2~Y-@2Jqn=1`P>=SFq^E3>b7Fb;X9pIlT|RD#lGkIM@)Hwqe- zy?$8?@#>V5cOI`;ZdRDoX;`?~IxBNOg<(0%(l5`eZ70`8qb_ObhrQA{LmH=LB(_Cu zdZzb!`t#`qM+mbEaM1jqtlf#bnb|Jcp4raL=SjIO8L3CkI~MwP#OTU6&Vf6Xdx$C4xQF=0l*W{Y zDK%#o2ZRNf=O4}g6>>dQA8^FKHNQx(E`Z{HnCTm^AkXPo>aod{g~tjrMr0JsNtlzJ zR>`|^;?MjW`I%?OooINZUX`04lD`tC)n?_jx4WA#JZ8CW`6J7^{86{2U*)HIr`&hujpY?c*0jZL-sraa zmPI1nBE_KO>GkvVv!w5qE~t&T_bxRhFXeK}(W>LEq*i|GhU$H{3Hzp}`CCfvUb)Wr z-Ls*>Mtk2bY*0;3ln28jhIgjX1jEL}`yG3D;_TtjtakAASo(XqcwZg8jz)flf9AjF zHo5rh^|QA;t_af>t*c?IGU?`YM|4*J8PStfc&Zy?>|*8(>i7_`!sy~Q8)_Bw{?y|Z zyDjMjcBAd$Rv%m4aOs#);PpSYA2VuiOe%{ncs z*(Qo*j<3Ka5<@Gh8Il@@PY$~so~7_`9+czgSwu5>mcmtV{VXiL_h3_xB{B~W&m`sb2=G5J`vt#F2?fjRW zuG!HsTPD956*_sFR`_MZ%RFOD1*szT5o5mD#5r$V%-kb({1IP73^%=IdDy(6VC~e* z?M1VP&3>9fO&gQE92J7Mrk=;G*%7~eseP7_dqO_%74HRi`K=si-Knl?g3V_!6L)Fc z2+G@@GuR)km2ZFKrBA@Lhh`e5c#t3W;+>5*DZ8`NX54AHop-ZpJ9+Qxecdf1FORI< zk$-r-n;+Vc`Qm)e63Qvs((o#+y3vDYtp7zlhxY5He6x@T9@#B^iMdhdr$o31#VovZ zbM>V&DnZTKzFH0IRyJ2ZY+2yJ#Q4{o0Y9xzHK32)xG7h!YHZ@@Rgb1shcy^%5Z=7F zr+Vk<%C_6OeD9x$smnf_Vn%f@IS|NS3XFiSU)}A79niE*8Z+$%+o0G)XuV7g^xq0 zwjL|;C|dN^w#Du-okDqTBkpYaoWUsPlut<;+jXGpR_@p_n5YjAnje-`BvtHBe3O`PF=WNz&R50F zZcM$^$P8U_wJfEkZ3Vgkl~BN1;$KSUd)g zN5dLuNw`1?hM@%#lU^r%ejFePTg(?p`9c9o<`-lMmr1RSjb#n>f4+<>MAYAqK=Oqh zOc4_XiZD0}EM_1h4!hq*v`ie_(=`qo0|i4NkU%Pd?QjFy!ARZR`%MRIE+k|?ONrER zIXr?dLbUYSsiN@m4ID!w3OvPcTSbTt-eXr6t=I-$N;eb-`D+hR- z56+TGq);u%UmSd;_N@ychtCcFI|qo8oH>V0v_?h{sv6`)2qjW&lrwx0e6C89-u}9S90|5QmQG>rP+6e{s^-LcwxK{7;q+ zyg)%X_kqL`I#(t#PC)c>(D|Ma3{;qVZJ46)E;JY=@t;rH*Gby{gPpYZQ2aVG>C1M$&tzoDFPzdj^zJ53vOQ3Crv826 z0_Ps^ErKcsyf2kh^yK@-{Hwk5i+4DA?8_$qS#sCgIXUxzybFIeh3su*05?c$edOf; z%VjIH{*#5u5C#jy?m`Ykx1?bPDwgw!RKx#qn%nyiC%VMT*&gNU$ROb;Bslf8z{$Ij z(;LuFUlwf#-wI^Ou0*breY=1?$osmquL4fMekRxd>m2R}t|1B=ByiY7_!7E=Q`>s@SLlac5CS6pebD=`(mfWR4XPsTxqr|i2jx#{YuW6CZP!OMCs3S>MM z{$Oyj-(O7StG_k%|7%nE>TgXEOJ4zBO2>a`?VDmbE7`rhH>SPeXH}4FXx|ont38(= z1_d)6`0({nBD)4z!mae!d|NS~q5qEz{Uy=o@cJ zFPZKzUcaE8xYl`7KxGiAdeXMY+K-c7zfNnf4PSTzJCrotz+m^_#VSm|K;zNEYoA4< z)tHq9rqP{s9q)j*=L}VC-+wwZ7{^{1yywvIfIkavLE}%K-nxQSba$q~MSY#gM&mSR zXuaZ>&&S*t5%9#R+3QG7^K;7+S!+4AleSuk3jLma7GQP#)@GIFk)pe6H1syqRShO~ zr0N1I3D2*;&d6yFY>HcZW8tLCElVQG<^;e^0&h0rK*!p1kM%;;jz!hX_aLpBa3RUV z?4WVvN=c`E5Zoh|CB#`<)%UaXqUYjfWmcdv9~?ndQn#?)8=A!r0(QB?B&}=|9;vP0 zJ9SmpM{9$zI--vJ!M3#KLko_x)WmB0KIz9yXo=VrR!M0XMcSeh+8$NCNw{#|;YF%U jKfHGFAm-U;8o+{aTmJQ-J@TRK9U`uda~yK*7q9*|A`D?b diff --git a/Resources/Textures/Objects/Storage/Happyhonk/nukie.rsi/meta.json b/Resources/Textures/Objects/Storage/Happyhonk/nukie.rsi/meta.json index e3c80c2ae3..253cddc2c2 100644 --- a/Resources/Textures/Objects/Storage/Happyhonk/nukie.rsi/meta.json +++ b/Resources/Textures/Objects/Storage/Happyhonk/nukie.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github)", + "copyright": "Made by brainfood1183 (github), modified by ps3moira (github)", "size": { "x": 32, "y": 32 @@ -10,9 +10,6 @@ { "name": "box" }, - { - "name": "box-open" - }, { "name": "box-inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/agrichemkit.png b/Resources/Textures/Objects/Storage/boxes.rsi/agrichemkit.png index 771580750ff44ef1f6d94f07bd36557231a15042..7c852b9c15b5300c323bd5abe2ecebe3f10d495d 100644 GIT binary patch delta 203 zcmV;+05t!t0`vipF@LT}L_t(oh3(TJ4#F@L#_>N5hnVFk9DraO1OtPf;1~!r28JNB zg9C7s*_{Fqq=b^RZv`>L`{pA6I|Am%Kol#~JxH+sGl8!pDb&7Hu-uS@~enVGeRt~$znurr0l$7Q@bak;| zlV*Eooa?gCleIz?C?>bwV%O6XeG{%%xb9@;U_4s?Pok!F-G*qMMblX%K)^+xQ=o^f zOIY!Y;EO&*u?J_`3<3l~4;=skfrAGQ1Z?0uG;hNi_SMQD#rxI^uWY777X diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/beaker.png b/Resources/Textures/Objects/Storage/boxes.rsi/beaker.png index 6fe24bba2f3fd3e8eeaf141f880e42932e12e22e..8ac528f873060aa0fa29164e2b0126356602fa59 100644 GIT binary patch delta 131 zcmZ3=xPftkiY8-mkh>GZx^prw85kI{JY5_^B3hFZBv=ashL4r)A&(%?76wmOKbLh*2~7Z)2`g#< delta 137 zcmdnMxRh~%N_~!}i(^Q|oa6)v*2M`TJxzfITy6(7BoYpIZ0gHQ|8HzyVBiwrxrk%E z#W$HlCydli`lwBkZ8*;)q??`q1d2BqJrq264#qhylN7N`xU20|5`2*H3J2pQVMQJX kVP%;Kg8!lBYA`S?$>n2Rx^VUc1|aZs^>bP0#FWqk05wQ1-v9sr diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/bodybags.png b/Resources/Textures/Objects/Storage/boxes.rsi/bodybags.png index 80612572aa4933daf6dac35577e50f275151b188..50730fec7045867f819c36c7b82d15e94241cf07 100644 GIT binary patch delta 152 zcmV;J0B8TI0ki>-B!2;OQb$4nuFf3k0001PNkle0@GjlDmju!Ub zFXy~vQB`TJiK>d3dFGEN5JLD&pw{Y2z|-`$i2Dx!01hkV77>4OQ=<$3000001*)pk&jKIjVYz|Tq~u}d2~aJ@iKVN-Kor(U7+`Vc;_X<%+OkcnZezu wJo*A5gvSfiTB*$8KLFrvkvDlFB0seOcqSHqfLbYv00000Ne4wvM6N<$g4T6DPyhe` diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/bottle.png b/Resources/Textures/Objects/Storage/boxes.rsi/bottle.png index 02c8323b4030d9f141032f751c246fea0a9b9f88..1d6c81a97a7b5326fd122113c1bd34147c84afe3 100644 GIT binary patch delta 133 zcmaFHvXN!O7RK5PPZ!6Kh}Pr;3D(64B0Wuk23&3jH6#)acx>v+O#i?5!{#1O^X44( z1<`)0?i1LS&HXE1`0(cc4({{+9+wDkHgu+(UaKP6bVT6}hqmXPg-*ik4hMII3rIZ^ i@H)_-eh6w@0RzK&L79vb+e(}mfWXt$&t;ucLK6UsEHy0v delta 187 zcmdnU@{DD}7RGwEByV>YhW`u<4FBa+C)WXK&H|6fVg?3oVGw3ym^DWND9B#o>Fdh= zjFX?8Pjvn2|3832$(}BbArXg@6C_v{Cy4Yk1sZU<9n_FWIN-7ETxRN}DOyrZC g)L8&AjZKDu;S7^Zh9;ZS37~xpp00i_>zopr0Amk7B>(^b diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/box.png b/Resources/Textures/Objects/Storage/boxes.rsi/box.png index e62e0f699fb4970c743ebe5ddfbf10f47a0f6318..5d1a0a9f1364ca5b3773c134db8aa4834e3c9e25 100644 GIT binary patch delta 355 zcmV-p0i6D^0{#M!B!2;OQb$4nuFf3k0003vNklU8QFTi4k+58%Wc-rvc<{S{B(N067djJ3?hmrF8 zFf-bX1OVjgTpJE(#_{FVh4nk&{_er(t>JJuz5zOh*2;K cMm7KdhtfX9{12)|6aWAK07*qoM6N<$g5;@r82|tP diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/box_hug.png b/Resources/Textures/Objects/Storage/boxes.rsi/box_hug.png index f9f0e4dbf3d4554746911228558ef46807683909..c208f68ead81677b9597dfad404e88548d9f196d 100644 GIT binary patch delta 398 zcmV;90dfA%0h|Mn7=H)`0001UdV2H#0004VQb$4nuFf3k00042NklR?11J;^(nQLO3Cw_HuBqct+y@y3KWVB%Btuzq0PGu1dQJkzTp3wpp(S&lDClLA`03eDJ z>}&ld-rwl~0G8!v6MHI_2z?Ke=?oby5c-~w`IQFh9Yk>gTPJvLFMj<#w|Y&;)=85q zx_hR9c46!IRDZ16-3>;=!CIeF$%$zh$g+<$JO1Ko(`7a|7JJ zV7{QR@*E#|&Mh`y(Em3O`W~XobJ#lJir1a9CZh#+8VdCR02mDi%=NnYOr|pcKf{P8 s4sgct#lf!hJ>cx|Md+@fP$<3uY(QY=;b+p!00000Ne4wvM6N<$f+>2gR{#J2 delta 191 zcmbQke4cTFL_G^L0|P^2NcwRgB^Tfm;(Fk~fwcvh4|0?KFPr_oEVDB*_|x3U+qZAO zdGlt5vpv%y)eB`olWWmGkA z;ON-V(5M{aAi(v2DY4T_%g-xmB}Zexgc^-W4i&EM?iSUWlNu`61w@oMJsMb~K5`~x qIGUFvX-Ie+Vzo$bI>^En#mI2cMoXHFO?M8^E(T9mKbLh*2~7YHAwW$4 diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/box_id.png b/Resources/Textures/Objects/Storage/boxes.rsi/box_id.png deleted file mode 100644 index 699aeb7c484d750dbdb4c3cc49e0a29767d0b449..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 358 zcmV-s0h#`ZP)lGhj$ouo^;^6=l!1Y9dI~?osq1-%4*~DF9YuHTB$R}BqjCQG9S^K zYVf32q}_SQ%!vd5f?j|zo+xW=M7>rNWyJ!b8~si`qo-vrZKfd>-~|F(<5oE zTmWFER01Fj!^HdXvuO&41x=+~z}kq-?Ir+E=iS7N&jP!9JNXM#D`l#c4OKBfyOWc^ z#nrWXxD=6qzvu(soA7h~jd&*L1^EcXd3|}-KFLqO7?1gh^!@Im`>;k;=>gyboWQ>e zsMgThD09uMjRq$GFgsUHy_fucYJqsEWPnz};TUed0HLT!-~65t)Jq}9~1CsY@Er9aUd2M+@sql27gdWElHBl_x;22X`0CM z+^N>M15!!=`o8D$b~83QMiEj<=6PnCCgM2edcFDwNRnig3n6$H!q`ZB*KW7lb*&4= z9RLtQa5x;CnpIWBX0vgYI|Tqp)08aBj5X);`62P0SFcq+aI>6|e-GeG2=Md(*1te& z%{Y#X<7jQBwNL*008&cIvP4)0k=A;hoOgy{u-=AFa{%Duaxs2CMiBt>JOj{momCE& o>v+H4d%putr<2oLBM=CD0UI%1MC(CbmjD0&07*qoM6N<$g1`=<0ssI2 delta 264 zcmV+j0r&p#0;2+uB!B8jL_t(|ob8q|3WG2dhX0m^H!5WG2!h~Ayp3C@Zas>dR}nly zM!|rC!J!>mOG_bnsTL{CKRJBO0HqYp(|=@TOCer(SJ*qClmZdq zNMz;c&dw662@nyAqF}LgU2|*s0ss(25#l(uGJW6sRBnF`1cA*3*h^@Pfz}#YYZkk@ zfRqwdRe>DmfHB7FyTK9|$MJD}8U`y{3h{Q&Vu9zsp?Lt84+#lzne O002ovPDHLkU;%B!fZHuB zmO>sTZ+Vs~;q|R;$%$eNhxWiN#QOnt!IF&7_pKaK_kZeV*rF zj6q7-x!#$85aJp|(P*>3qP4zBN+};tfO8H2sHzHImy2`gJ_x`$hcO0PYlLBl^ZDGX z>j<<@UsV-|2p>ew0`$`-j$=HUYHtDnKt$N>cFy4~$Kw&p<8pa1}@*K2Gx8|U!4 zt|!&KJ12~AnP&L@%qB1uFYt1K!LPtt3#Am4QcpFv*18FB&T%*#Ku;_pYwc~Tw)|eh zcLiELo5opS9|QmZV+;V`bUO9Ifq~!gcDtSB9FS$%-Lr?s^S}89PO)tLk1l5M00000 LNkvXXu0mjfQOK+e delta 273 zcmV+s0q*{Y1FQm&B!BZsL_t(|ob8q|3WG2dhX0m^H!5WG2!h~Ayp3Bg;8EPXir^6( z1+y6(+M&&$rqzd9OPg;qChz~iml(j|_;*g@fiMhjdj?ijHORc!CPh&M0BD+KlTaxo z0H7?($-DC=2`g{{)*djJZ})M5IF5G-vo+y&Zo?o52G4a}BY*3AR!}O0wa%EgJzy3Q z5w1im0eY?-ORxoq2uYH#!VN`H%+8q=007VP;QKx+ylvY>^A0};oWS7%vrVYAhEfVj zDRyzK^?Cs*CGtE6@Ys@^@Fo8et3cOvld-Jt0mf;V3h}bmtbpw%WD0WF>PF>o{5E$3 XuSnN1*7D~7015yANkvXXu0mjf<`sMz diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/box_olive.png b/Resources/Textures/Objects/Storage/boxes.rsi/box_olive.png deleted file mode 100644 index 4ddd8ac4fbfd7d62c1fb8439345a4499e7cd8d7d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5494 zcmeHKXIK+i7Y-sNp@>ohMGX-Y)R0L?CxAdgQNU27>O#sSL`g9PA}pT*ihwK%Dy-;I z1SzhvVnOT_T}1`UqO2gOfT)NdE($A_ZxXOQ-~RD=zWwLTGntuF-gC}-&%HB~&h+y% zK+HnGU@!x3FM0rUMyd{7ZRlSXA3p+vX@$fGg~|h1aY%_&%oD_bNcnmRhy;}a9t@^z ze;yhUJKs+K9pCimRBNNOM=xmnSm0{m;sdLy=aet>yUq`plc&_Rdb%w6Li2|AKMZ1M zme!|i!vejVdeUvos-i1g3QnEx?Rh`A<+|O-yx%(s_2!78hfmf}{}%Vi;bbqy^1-PB zmxb*;^z`x{6KBW=Eq&&%-4@8CXlXewcw)kwcJ#+Z`9r?Ze--uc(&xJH3oEv*+0f5d zigjPZuQ@PZj7e{}Cq=o$7Vn!r%+Sd+c{vxJ(92t7`SQw&w!osBxRpK2%XEUO%+Ah@ zyB^JO4r|!4;}1q;mSawNy5xD|sH3M-#9Oj+%JnTCE4ohH4|i{?u?TMc`9Z&Ymcju% zQP*~Ov+$7N0h`M{X;xatPdr#jS9sd$-%o7ps5H{7Vq|Nt49An6w-&Q|pOQ=J?@5AdWh^;{HfF2R)_Dp^tM(2Ll<4Y2QrOazrb5UAZ!YyeFM*QIo+SHByOSf5;()=_e z(`(FZ-8FP!1cY1qkGvMTq;yIV;x>gYTDp<0T46o*I?#;Mus(+j)D!#a&YJcvYnpbt)2iS&qc^_eDW^gAdHfBZw3>}Tms6NG8+tep%v;8s|fFt@0k%ge6R zVcfof3+#{>B7ra{Wu**n7vN#SzT=;l&l;1NIhy_=0#WAjSdHAl&z zu$=ylskcriS;J%hI+M#uI!`)(s_Z{f`x;%E@$nvheXrkW*+x`XwIZ_8F9_M1mO7pq z8lm)PDLELxyB_OMXr?_N(_6f$SXb*rUL)^(K*3WHRnd%p5{iO1)b;*-{sy^Xe9D4N_~bTSnuX1Peccm+PjZ1Srkv%Rwe1Gt&E+MtTMR8yJzZ`kpDQ#QZSA}@1^(yuau1_*CJAB%y!dcQ zZDXK8+Zcg8@W<<yh&T{E#Gl%=kB%=-&eLUa>A>th`a5@<0mqe!jy#jX>G*X(Vr$R#kuW~vshsc zl1I!gxHX}tLGO@cw$!|Bj$&0Cy{3JavO9ONncL;8Y`2iX+PcuN?HVO{PuL$W^f`|m zF}u6a@CqMoF}ny@wJ52mYYg*T;iC0?Nz$$Ehar5MJ2U;eqskxl*#-ad#(BwTb$Yw! zQ_iec`l)wWg1S&aqv`eGu=rzTNn6{CO7Q0Imo(jP(;8nqvV7O-cZH(q8>YSsHL7ZQ z{UK|EhL+}*DH*?W2WH>;N*y2KHl2SJ}Y@`ef_qJ2U4~ktum}iMviH8Kj|%fg0gv!u{)MF z{GfK;(4f;`mxfzOLy!XiugC{WyRq0k5vHdjr`H*|rR|Gkmlb$ncn>J&1|Rl3TfK?D zzHnSNVz+*WhI6(u>uDtV&XG ziw+wVubh98p7EM9_x;GbFqtQV2U*SlZSRKBjB_r?!1nNB$X|RfDj`6{omfS-s_UCWyLm zi^M=f^D|oUZTGsu$H|E>T&G=1jYU&Yn)EU(UWuD7$@s+CeYrImcw%KIlazy;3NF9*Hm*%|$6;an^!zBpc)lL{6xo)8|o00oMr?LhuEA zCGKFfz$;z~2FCjZapKo4Z|_QlV>=7=uEpP2_8x zP@%p|q`O!OBJuWkdjQQ)3Sx06X9SWaHeUrXfk6jl9H~Ge7l=hj6()-+-DC`ga|n4eJM z>-z~_B%5Rb;sc{(NibM@03#G)zVwjE8L<$^WJ3SwAq#@u954Z(OstS{Kt?PmlF$DV zg3I~jFHuNi)a7tF7%&DDLZ&h(D)y_8p5DI9PaY}?_yVCs?FEtjm8D$3`%KnXxv4bj za=uIia{q+;mG#Hk)y9yOuP>D@<|tI@dDERxs`yl{m?Pj))t5Yg%O+w03Yy~pfM`4j zIH1{F2MQX%f?P6z%qEcttS_LvMKU={!~s=M5V*Yn!U6CkHiv_wpov@p2aU&Z31~Kl zL_ibBAi%|vId}pW`~qTyQ~-4)E9T3rR8U+9ip^tFcmRuo21z6w8c$(!&}1%w4CTdT z5djjH2T*uwC@zQUA(jeR&~yrfEIx>li1=!Sig2nc)7uG!vj;v)m@zCl4|0IkfI!3* z$H_jcf&@Y^P|i~Ei6s&MA`y!RNCedh|Jf)Ql**u9RH0%4dmLG!mRu|i5{qM;P^zSmDo=HTBWV-U;w6wl7VA|#KiTzx;JS&siA4}2P^*wg zb>mW5oQWVZRxHR>2ZH=2RGes*hz~+5e6poJ$_4*0U04nYAn?f0OmR5`G~R*2LsN(V z0qsBl0TPkGqp&!fuhC^T%f%Q^J%l1pNZF#K1QhfA6mEbbS*8-(>u~yZ&!YWQGYgv7u5ka<#)vHApiB50 z{y;y>ETCInXNjytE-xFtRN1p}Wni#DjLDOqD*)A4MUicBUFN0xTRVTKtGJ>(d{(Wr z&oCu(udb^CM?>j{wA@Q_OkQKSJ=>V|V%W}R+4EdeQ3OS^G3hWWy9~krsn14 zv99LcOpb2Vz}sdN(&8H>!`+O1w-IS@W}60e!6JQ!vR%eY^a^P4?sAKzQX)4h3i;&d t!fjnl7sU3hLF|kWc57y`KY)mW!IG_M-2+Dl7DIKzycvGkGXm){>} zeQTe+_dRFteb%}Fki7l5ymVL!fHa0IH;uf5=ydS^Nt%_x7l_gXiP(b8$z+MRP{gU(f()^JM#R+k z6fwgnG4n+S6tTRR6BpU=v(F+si<9uYy1K45IaYvHg`_dOZM)Sy63ve6hvve+8gpGXV1Uzt}Vn z0w5{sTl>IQ_o0dBB}pL2uro2q&dxUGa#+UVg8rfZ>F_u7)%T3W>Ha7W-JO%b6s8L3 z;<~ZYQ`3cfdS(Wb#i1Mhd5HgU;9sA^Focu9;d6MRh;Y%Aae0ZNcJtU=0XLmT=koqj z6aQh@pR_pFB2gMXe*tQ&F_0Rd0_4{|fT9oq5_3Sb1O3rAe|$I)zq|<5iN(49Ea=~} z!e!zmlbiTC&MhR2&Jyyo7Wc%@5}*MANCGNQ04hKO=mH~P4s3uua0VX07X*SZ5Cv8N z7DxhVfDf`kKG+C~Knd6Zc7tkA3mQNZXaOfc2RIEbfXm=If4Bi|g9l&)jDzQ32D}0D z5CmZ%GDLwCAXP{UGJwn>2IL5NK>kn&6a~dWi4YGGLix}ps01p9s-Zfl3Hly71zmuy zLW9sfXcU@)euv(}2uy;hurjO-o4^d%1@?o(;FWM9yc*7f3*qf>6UgRb+f=natP#6>iMMoK- z>`~sR{}cWr;0PjdE%mRJX`^;5_c4L7B_^Oz|G^O@LG5~d?22U&&8MF8}MED z0sJ_Ao*+%oAvh4i2+4$vgepP{;S%8?;T4fcR43XJgNa>atgt3H=1Y2UgM2$qd#E`@b zNxY<%q>JP#$vnwQ$&-=;lG9RnDQzh?DW=pqsT!$MQo~ZS(iCYk=|Jf;=~C&V(pRM? zWw0{ZG9EH)nL?REG8bjWCO)PYmQcT=_ETqMWn?X7 z!)0@1Yh=&Jj?fUAHqD2YN-LwCpxvRpms6H=k>kj1lWUP1lADuXBJV8EkuR2SmA@_j zUV*OQp^&1mQ=voQks?Y_UoluQTk(M6CB^9_)Ft*ySWAkRoLF*S30Bfq3Q=04bV#XB ze`!`(McGR^LwT?AMdfJ~nu@bZvPy-@S(PbOimIb3SG7X*oa!^WEZv2kO0S~#&}YdVy&)LYdbX%I9R8VMQ|8r>Q*nyQ)sn)#Z|n)kKvS`4iutvy=3 zT65Yu+7a4Yv^%sXb>ww?bnNb*ob80Vw7dnY&2?2Gxj$wFzzsZVWMdgZL-s(*W{C_ zm1(MJgXse^88ctA0<$i&-_7;SS>`q7w=BpOo)+sZIxSvW8d!2H4_Mx{qF4o3e{Heq zw)$voW6ig2v7WNgw28CXXEV&8GJ+VTj4QTiTUXolwx@01*;(5O>`vJIW^ZJlVt>?r za;eTz&eDdZV-D&LOouv$5l6aXoZ~^q5hpb#rc=Gs6K4%)wsWKNgo~a_vdb}-7p|tR zeAhPDIX64EwQlF#5qB^5V)uRze;JSE9@QR?J=HxEJ)1peysW&|c%An~d;59s^d9z6 z_F?%n`ONs*_^$Qs@gw<#`c?Zq@z?j~`*#Jv0lopd0v;~YTE<(}5eNc(0(S*I3epK$ z9rR-`CO9a#CirQHSxA0JZzv@+HuPxdn=sd~vakosb(ag5cZW-c$AmY9f6qm@N0dj5 zM4Cjdjl3SE7{!h1jK)TXM>j^#uJBl~d&PK+RZLOLos~K(b5>qmrMN0})tOkySZ3_W zICNY@+|jrX%s^&6b2i>5eqa0y%Z;^%^_=a@u3%4b9605ii3Ep)@`TAmhs0fpQ%O!q zl}XcFH*PieWwLj2ZSq`7e_+btl!erY)YddyT3p&Go(wOA*ORW2o|8V9VUSUjF|yij z_3qU(d_R6;CX~4{vr|A7{Y>=tT>!5Y<>$=x#tS?+YzQJq5k&T3nDI0$(e=sd5FL=EvVpCV4 za^Z%;vCUqan~Nlh_(j88?6=fzMQ!D7?cZjxZSS^E#q8p1C8i~nB_B#zrPsbO`=;uf zh3yI3`^&7$4(!0};O)4x(`o0Ca_REC^08e3yV@)06~z^=cgOC&T4`BXyN9qxxM!rw zzp8Vu=H4B9KU61Gf8VZgt!dq-v~SzKx&7?@LkFA>wA3osmejsK$US(s&a1AyUc0{X z5av+Up{EVu4ZYtozHMq$Y%FQ~c$jy10kG~(0%d4Z_dB<%|ym1DNytC3hBe00041NklI0EQpMrPo`!^sG=TE^;TQM=f1d9K^lMjnVPD)Yf2VCf&I9bz0kZT1& z>L4c$f10F6#U;<0m%L8``2dT>V);lg#BIQt-`&A&Sh7->#B4ROhxs*dZuV|E2?tmZo0Ek$yxwN93sPp)M zANY(%2~rMOER}c~46+NPD-f~3bsg?r)LZGge-0uRR4QfT)hh+QPaNKFuug`R=YTP*SOqB0N|Bp8rKbF=BRc!RdLF^Nob8=CYj6ve~A?^66h1pB=Zy6 zQ;;NMaujIRn#yCCqd=1MXD{FfK9^k4bGus6^yW;Fa;SX`jqU+}@^VEvp1v95(dUkI vE7~1xIcT2a{e!*C|A3R@Q=`9z#bWsYahhrZ>k2r@00000NkvXXu0mjfUDn^s literal 17958 zcmeI3do)z*|HrqZ+%H{7lFqmk$y^!CG{$9IL&C`DKIUe^%$S)P6o-m*`6j8{;;2rM zTSX~R2~jDcbU`_VM2AkP=z`xKD%#bo*7|*a|NPeMwPyBwp3n3CeD?EtKF>3IX05$r z*-~d!r8!Cf0I0gUICz6+nE0h22fhm;BHn-}MV^bl007jg#V?ryi_~-gK*^I$A}w1M z$Q5!0fm|NUl|+K^_*^DCm;nG`Eg3#6vQN(}>%qrw?A_v{_q%buH5Fjq_Pe4r5*L{0 zDNb7wuXp&Nrq`9}j*e4wu4To`?%5N)Thq%_Wv9{u`A)qfd$t~p-+ANXlTAm1?v)Qd zyESt5KCwH0AfvcJzCuCepo^IoHd^I`{k-XaZ>_DadD4lnjZre>0n-$U>3V`;0~uf_ zia=PTUm<@9kO{k^tN>Jaq*tKkZXZ?ewNG6o6TMBQLYQdfrVy4lwr7E?o)*6Wo|ui};k~5~A9i(iK3Gz1zmj^xFLH!cxwgV@IQV@O;nU#T zzb`#CjKQpqah@{tcje7D?#Jdf>{Hwp(Dp3B`O`V&(NDT}^s8M1N+~899bPj+_c)~O z9>5&a-(kOR;nn#~qx7fkrXOXA?O5Q{dZNsxM0n0>n(R9_qiGaj#nV9mcwNT5a@SZv zHac+YlLpb~OPgWmtocAR({*1c0IYE^M38S3+texmfJ0V{$tgRXH&;l0GPUiB z@~3qc+w2XiEA6M*E77Cp^4BfQ-(qhZck7g{$vWg+TV3-CufVt@o*JUk_q>`lPyGW` zA@hoHd5q!|yK4$Fsd_E(G66d&2745=Qe%houDDE@vC9y4Jzm30-z^dAg7)4?hWWba zzP9H7hTFc%=|bY-YXD};r?_%w^!}J4FYCK1XGx_wmUFf_9Z|kb7oyV=W@V+{=AW5k zz1!k&_wBqu^_B!8sTNi7e73wS zrp$~3=h?YX+$l>Rxa7d*8k$dUQM6Q)-R4zkq@R@Ic4ona>F=v&2Vl_K zDK4f4_hux_L{8fjPpY;woUwz1F)H2ro9pSn$W1evoSHb^20f-H(#>7w7$jY9p$8So zD@H0#vq)O)>BDI>r(^sgbGr^enl)-TcSn$~6BCC5m?*!dn!^L~_b zm^>Yuu)@CJaEbRxukATA%{QdsZf%|A>UON)$bma^0<{7M*(aY1FHC=QVBXT?+kQ=T zJbi7R^4H;(lEF&Mxg*GRhMDBBeW3J(cTAF)1A;c$3l8X*Ajv0kkLNzlRrVe5ts^I#SmP5}=;UkW({V!a?!i3Y+>B)}d~|$R zCl=>y&t>Is$u@sQ`48`q^RIHR@+AG`m34Y;M|llQnWkMFW~vvYnisbr23x)0^sR@R zH=2~C4C|Kdvd%qm7)LT&V&+%uJ+Pl?Bj1q{I&?_5RI%GQJ9!{#=VOhR3!g63Id1M= zie{_|$~~BTkdo(;=auLD;-W=iUv|dvi;iXfA7j+)YL^(TGIC}m)KAUm_Ic>@C|fCe zmWMU|Z6P8z=$OvoG6&IRPIiAv=A|{!neN=|$Ke;dKg^9p4wHvNK4iajR-wohs~F0) zs?^UWT*ZcR3A)JI)>mGn)m65nW7GrGs z1$qnIJbFF))4V-Ok1ssF*nP2k?X8=)j@-JJicPmh-^X;Pcc0(mkg~KM$aS+Vi74 zNuDvRv)u+r8ZyzZ;Qpy|$3(e<)R$VscSQc59mEcTc5ba^g^>cR>DnQ1RaUss3=K68q!N$t#TS zo5&Zj7=Fylw|3mX9n8yIbgS=X@r~BKmWN*cIoda)a>kQ=CCB32{NTEjXBYF=CwxC^W}`}>-D!5+mQbvzaf7h zTl6ieHVHBSwA4&j|W zgNp5g^HlLI8+UKYe$NUF3TEwAX1)={{*6R|c%S;CYkSc(3fDzXrU{=kIgak?UR=Jo ze%0&q!q-KuT{Hd8`=y=4uMO!H_7X;t?s(Rg9V$yJEL{~;+8=T8>?Y=5k4~m#{i8P* z!(YuBz1N(Hvwn1OAc8x1b?|NbtVdCNqv86xvWFt0{(^GP^0jYl`|KW)9&K;7Svk`7 z;APt%>nlWA1C4FYgL1K38%7e}Ca9C9CZs0R#i_=<$h0Eja8GUc!#$s}Ne%Rd1({kS zM@H%jwPqoshMHg8uWw9gJe>SGIq7o9=3~RX6)&_;w$@bE%)4|w%nZHe&GL_ZS43?h z-Iqt()jc~m!~QTH4Saw4t(6d}dK9Z%ziAgFY1 z00R*g!UJza0f1l=#-q}L7(!S8gT>}p>%T0!tPf+;t@Zt|9w-kUi4n+liQqGQB9@YA z5kWK@UEhYNL2o^Jvepk23VC=WQX~=~L}myspM^x@a5y9igT!FqU=O$;oFk-$!8rnh@gQH~I4}e> zKAR_Gb2%_^TxtM!gV0)EU!3Uc@p)V!yswEkg3s(gipVf34~a&gkUtT5cu1Cog#1t` z5ISxIujKQ{ewa`|4(BnD-V6bE1E0ol+{oYv4SsYHblTTAybb)|F+Ow}k`c@Z0VM+P z;?Y061m2flAYbL*T*g=TPe(6gGbbkJ8?D&$QyC+S{S%qkGcFq|h4C38fc1wb@flPh zmrv$$gNfr+Hu3uj{P`rVDwwe!n?vV{1PcjBsAOWkC!#SNs6qx2gTk1>QRZ-rIayqf zmUwgYA`}{rLQM)X-V+kT1FU^IRY?7nDBtvj#^KW0%8W{d-dEl8;bF4WHi-t2WOf(#gX3*hQW>yw(9M#Oi3`0X<0?_7P5={#B zT_R6D8{C(u!IS!k$3h2_Vd*q1oneWAW38w-I1Nk($6?Txa2$?FM`M|m3>wDrONt+a z`7V_UTL4y5_@pWWYi(@j@nM91+xo>3%pTi8cvQZCAzql)`d?P&*DdGkjw05KEpR-Q zCf<99G;#Sd=mg|9trM5^Rry)Q{(d@t4Z(Q)N%EiP5Ct+glFENP)L5^d2N7_YLJ^hE zuw#K0@+&KIJnFYHXm|oryjKUa{|_cYK;8Jin}%OoRsS!hVWNs@fm9BQK_?==6!4dZ zUz@q{`TTZeeOayFuS5c!hG%m5Aygre9YSR>kUS2HfShQY$Vr&kgGk(9F5iPoXAsQ@ z$R9QTPzC<;wru>5H=@AX*&gQVNU}iVEG*y{1bT9qN&P0p5r4_y!QBR|eCpUL2Q}Zd zLHkq0yGHPavHmy<6nG%f;`h(e$!@6BU$S(v8!DYp`f}JpBIa{8Nb@9>_?s9%2Gs|= zX=D(=p+TFVy_d1W7{L?=Huzm35bt?rV3sir)bT^1|IdVz9G`{b~#aE(j3G zrWBWCJ`k@I7X*l8Q;JJ6ABb0q3j##4Da9q355z0Q1py-2l;V=i2jZ3Df&h_hN^wc% z1My06L4Zg$rMM*Xfq133AV4IWQe2YxK)h015FnCGDK5!;AYLgh2oTAp6qjT^5U&&$ z1c+o)ic2ydh*ydW0z|SY#U+^!#4E)G0V3Iy;*!h<;+5ip0Fi7;aY^O_@k(()fJio_ zxFqv|c%`@?KqQ+|T$1@fyi!~cAd*cfF3Ef#UMVgJ5Xq(#mt;N=uM`&qh-6bDE~Sab zKp7nH*-sJpkS9m601ZAM3ZuDrdjLShd;o~v3IOj%!E+A)Y(N1(?>g|=(i8yD;_h2} z)d>J(G+iC+$YCu3pGHS*s%(E-5GNydRBiSKKv{3i(s%ayp|^m9&b@{kbYWFSRTbF{wg0{!V3qfVg@do4 wFCHj$nSVTNzLTm7YR|jfPP(Y4y1;DU-hFT59Npc;;>T@W9hW*3+OOO4KSg=HO#lD@ diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/box_security.png b/Resources/Textures/Objects/Storage/boxes.rsi/box_security.png index e66b288c347a25792dc840cba5d9005d276eb461..b7be41febde27d2bec444083abd8cfb764f4ca51 100644 GIT binary patch delta 394 zcmV;50d@YJ0+|Dl8Gi-<0047(dh`GQ00DDSM?wIu&K&6g00C1;L_t(oh3%FxOT$1I zhM$U43;_olE7Up&l0vam=-L($@dx-T9Ua6$Y}P`hMaWS^aI#(&X-G5Z5SK;-_3jK6 z2lGq^_j2!h2jBM{6ciK`{4pgHQM1)Z^BRn9Zj~O|0L@k-ZGX29a+wbXLv4svoq4y{ z$z|TZ_Ho@ZQie+1w*i{1M(Vm{L?C`_E@g=8mW{N^7x3yH03s0VZ|x`#8b3bZ)jg7V zjFcgpl?qSOY5oA&4MZTYZHxOz{gk$CAp$|IRyDr8GQh`!_s)Ed*kFAjf8q6g|9P?Y znK3!-V6EB4=6^;303sr~=}f6PFBw(zCss^E9h{|TatHWLiU39de4?djzCv3Cah%}b z&@b&O%h18$E>4yoz^i)czR98}^>Fcmhb-QQIjv^+9`O0mSg|j88{NByqX#UJxGHUH$i=OZwsh~bo~>VIVi#xFn{89ZIt{9M*K HB{Ts5AOveD diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/boxwide.png b/Resources/Textures/Objects/Storage/boxes.rsi/boxwide.png index a8572edeab58e6bb32b3c721d51d56996b949656..538106107040e64e5d1d1bc92ad4753f6c818958 100644 GIT binary patch delta 374 zcmV-+0g3*M0-XbpFn~x3bn;SxInN(=&Ir%{ve0a zK^(-NBo3mk1*N5s3xd+A$z_xz9piLDOwx-frGxj3x$nOB;e*^Apin3jTV|(fq3=4` zCITmKvs`AWK;Lz;!QfchZ2q}Gk|fY|9le9Lw0=B(ElBK@g@2!(ok*K`v-h8H+c}ih zKR>;|Fk0X|%6-pGpzk`FVYH;p{tD+2L|@LM)f1pL1pqLQ;i%nf96DXhL2ZgOiNSdU z)3Oi-L7^@uAS{{3K!}Equc)x0E`(@c9z(a=!K$eiCLlJChBuAF1-EzC&~&o0rc?j` zEYpN(S&hSe-*2x~x7#>D!g9IXu0UOsz}5vy|AIJ95riRvFkGv79H-3$s7)~(U4am7 zt#EOw3Vt8Ml>&m!ez&mz^B4diO=1ARbTTc310~n-#pU@%-T@EykCkr^h2nqn4ZenM USuQ5u&Hw-a07*qoM6N<$f_@3Gq5uE@ delta 228 zcmVhkipE0!8~u>?5F-K*L}hNVMIppqLT0T!`PgwmO1Zaf3*P&zazq5i z*lvt@i@0aCd;tYi4>%pdCx}=tV4mko zbzQRrXsw~^y6CL>UqAuTfNk5di&EeG%^jeCD@k5NN+}qIA&X=j$K)*fCTyCf$eVCk emZ*;){+kCY2QAPKFZvt+0000I0Shl7R$jnL8%d=E5gUygWOcwsw2u&HTGX z1T;Wb?m}F9Ev>)3c*#fztnk%s6XTL*pVtdXcx&?=W3&tFAI@DUrU>Htsr#u37?v6- zrdSgFdx+~J?n_+1cmhga`7X3ca$PI*XMKl;Ag+)36%ikgex@!ZkXYITk}M#+r?mwn zSpcyK^qz#GsefiB5HCJCJgXfZb8x(iv0VIaFa-cW*EDFlUOU`zoJw`A+6g5DLC~x~ zRk%Ro0?b`7q7w`}4+GEpQ}Yp>pzJ7P3MhRA`$s#F|ZiJR;693aJ2666>B9|jmUozXcD6y+@N zh%9Dc;5!V$jK}j=qyPnjJX2j9LoEESUU1}VP~dS1Oz67sJAQ`7kt+r-`mXGMk#=vD zqx~mlrnUahJ2{t#%w?R#*qx^^Q%y`J*gxP^$W5LD40{-RzRyf(;CegDs^TTP!&b(E XX6g4+mI=55jc4$5^>bP0l+XkKrx8%s diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/candle.png b/Resources/Textures/Objects/Storage/boxes.rsi/candle.png index 05bb8437c0958ee8048ce392dcc193dba6fd120f..4a238f0953765fdfc1c0ba14273ead889c1934f9 100644 GIT binary patch delta 128 zcmV-`0Du4C72*}JY6^H`NklJA6h+aiaTF?IX+!G(%wWO}%;OAGPq3C^drBNR506;h9M@6|U=6{})+T_f_t7>m@B`kU iYrr%9^%xNm`Na*b&KS1W-0rmi0000JQ5JORe7$sFiNt2cVG6T}>ka?IPW04__ zo(}6O@ar$%3LqjPBJvem&d%J;5y58Wdnq_-eLZ4f;?2wfU`@%--X{RK#$cY}e}D~! h40y()#)ydg(+zZf7`CM>czgf=002ovPDHLkV1mIJH*5d^ diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/circuit.png b/Resources/Textures/Objects/Storage/boxes.rsi/circuit.png index a713f672549cd7d735b64e10ebadd404e86b7c95..6e87ff462cd58ecfde893ce8f3d84b7674520aab 100644 GIT binary patch delta 177 zcmdnXc$RU3NGZx^prw85kJaJzX3_B3hFZBv=>L2xO_iw+DVM@O&xxnnuB`xWeX`d4ntQq^DmL&iI a1H=8ZvYwW|_rC$UiNVv=&t;ucLK6V_kxf$o delta 161 zcmX@hxR-H)N_~r`i(^Q|oa6)v*2M`TJxzfITy6(7B=im(KmL6G;>C~agT8K@u)Cpim1wn-Uqv9U5Rn6SutzUAahVE_V8 LS3j3^P6qSF zi(`mIZ*qbJ>*5BR11C6?3r-pv85$Zs3Osn`%%M|<&h#ATQ!C>uQ`@sH;n5L&doB$| ZhQ*55Fo~A$pF1Ldk5(x)9)*Nb|c delta 107 zcmdnSxSer=p=P0{i(^PcYjT1F>*55Fo~A$pF1Ldk5-%GjhVb$$&;5V+#;4QYC#{*E zG%-re{G`t$*$r0>KiV@hGdF+wp3WnsUKS+71k=bS!@w}DLX;)KeDX8~An6IaNGZx^prw85kHAc)B=-M6@O+NU$zW5b0?OG~jYO=)vA|M2ly# z=F&(>`ecDa^$I@cr?0em-Y&EX yDP%a=DZrNZp(gRdk3)xn#yAu@$v~Vlk(Z&vQJFQrS>zSau?(KBelF{r5}E*^om9R6 delta 187 zcmV;s07U=h0oMVLB!8YsL_t(|obA#f4#GeXh2bAUf~i8(;Sm)Cw-Uz%$}x&;I6&pzu{Bt`gx&E(?KBdP?>!1+am4;|CyOJm p0_G$9djt)OCIB!WqKL?_{Qz)+BL(JNNg@CM002ovPDHLkV1nKSQhfjb diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/emergencytank.png b/Resources/Textures/Objects/Storage/boxes.rsi/emergencytank.png index 0e6108b91339c5c8a8a6eb25ad3636a622d33de6..ee804287593c7cc7fc59c4309daa4c86fd79bddd 100644 GIT binary patch delta 119 zcmbQhxSDZ-gct`i0|SH0lCEPwim^Dz-HBn{IhmIe71hHyN`m}?8U91S)l(rxKoz>4 zE{-7mGB|(0{3=Yq3qyYuhJY5_^G$tk|NU)kPH!*3% vsHvv9iZF^!H*geT{PwBHZPxBC6$XYvRVM%UmMiE#L_|d7WlQBT$-K&&S*gx6l9|9ENakp;JJ#xl@P@Vp!W#g< qyUq5l`@{x1dCEO@10o{7v;(jHF&k-ilxP3|002ovPDHLkU;%=~iaVYF delta 143 zcmV;A0C4}L0jmL!B!6;AL_t(o3GI?g3cw%?L{sRIawa{Ko++NGZI;CpanT>VfCyup zj1NU92tWV=5P$##An-DQWp=)qZP6W7o%V`+hMEUB5}cN6SHVVx>!=|*eMS$y|O xO{2DZv`-LdX5H%^`vcu%1PDL?0)Hp41M90X8*;a|5&!@I00>D%PDHLkV1oX;I9~t& diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/envelope.png b/Resources/Textures/Objects/Storage/boxes.rsi/envelope.png index 93d52099fc2feb4c11840f0a4caf5dcbc41e18ca..06947d4071641d65e8033cad257588a80c2a324a 100644 GIT binary patch delta 118 zcmV-+0Ez#e0iXepF>hK)L_t(oh3(Nn4uBvGL{T(enmIswY+Y$E5<`nS|JxA?Gl5b7 z0KnfZql2~9{cYdfhwo}_(F107TT9C1Ue;)M8z|{fC@S>=XNlSHRDrL8Qw3)K8vxLA Y0L26prjL(}p8x;=07*qoM6N<$f>8=F7XSbN delta 116 zcmV-)0E_>i0iFSnF>P2$L_t(oh3(Nn3V<*SMA0f WbQGqhaODaB0000N diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/evidence_markers.png b/Resources/Textures/Objects/Storage/boxes.rsi/evidence_markers.png index 5146156969bca46f5d48351c33560001d7b5031b..520385e3ec5b3b5fa00f4c94236d22cf86e019bc 100644 GIT binary patch delta 145 zcmZ3$xR!B(NGZx^prw85kJSJzX3_B3hFZBv=bhhxPWnjN=>?_i(^Q{;p7Af*2M`TJxzfITy6(7BoYpItUJbfS@PfE8=Nzr%y!;( z%>KV1UqYhFeHk^crt=Qr?TtY2@C;*1@{3mujK0h#0t+50w3rnt+_e!alHHKP)>Qld iVMd-D$W)$028MfA1!eC26acaq7(8A5T-G@yGywqXdo;WN diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/extendedtank.png b/Resources/Textures/Objects/Storage/boxes.rsi/extendedtank.png index 3ddae9b2ca13751d34e32db8f870456d54396163..6c4e23df263eb1a13c60d136745f854cba0a633b 100644 GIT binary patch delta 179 zcmbQtc$jg5L_G%^0|P^GRn-?D#aJBV?!>U}oXkrgr`FTOF(jfjIYEMTae_!sQ=kEt z+d&P9gaaPy+~W1u|2O#dEcf;avv!r1PY8 zEDs30>6ez+w}02Eg0h=ZZ7cUjoZKkR=TWqE?aY()B{~}qFF$AStE%$vauq3%`5?=9 bG#D6ON+`5lvDV%ObP0o}tDnm{r-UW|s|ZMU delta 130 zcmX@iIGJ&RL^TUD0|P^2NcwRgB^}@s;(Fk~0beh#*Z_BfXEWb^IRE9c|LeUfJ9=Dg z%}m^{G(-ZGF_r}R1v5B2yO9RusCl|LhG34lNl z1<}DaY{7aA#K^$ZNbJfM*XRm3_FzHg6|nPJkR(Y;*dVeurc8VWmH{KW-4HKCX?(={ lyFJ%g7jKSzt&2<2FMYc&6eY^>W|9B^002ovPDHLkV1g;fH9G(R delta 206 zcmbQrc%N~CWIZzj1B1(wu46!ou{g-xiDBJ2nU_EgOS+@4BLl<6e(pbstU$hKfKP~P z6azyk1A`6&!#W0r^8B=UE}KjAjMu1c)mncaXwoCO|{#S9F5he4R} zc>anMprC`Ni(`m|e{zB{gPW*>`+*fq90x)g)S4DHG*09^)x=Q3+H+>brx#ojGcT4d u_!MdIm`nch0L-&S`3V4W(=Ag;>Z3~Z|DRX#^CAd=d#Wzp$Pzc=t2_! diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/flashbang.png b/Resources/Textures/Objects/Storage/boxes.rsi/flashbang.png index 7feb84489d21c6f5dbb0c3001e063e9c50997109..c7b202228cb3f55289adfeac022fd2c67e34f481 100644 GIT binary patch delta 168 zcmV;Z09XIB0mK22B!2;OQb$4nuFf3k0001fNklgR%YcZ8h@4#$9q4m*05jt?&*Aw`ZKQc9#Q{=E zT)PgyYlQe(pR*68`166kCwvcdMCb!%2Ecv1ZI$Kd{aAqA_96Z%F4Z>uYXA|EpIZU< Wj}*0CqGVkF0000&P9eC(hPlj%Ftnr61iSzfLTfvDC27BJ>B z8;!w25U%m6Tn^xrEh@nI(#{@WEw<`_(mxOUF96dpyV1H)2Jr~tJ(-fvtGjkQ# z?ko(c#xcishhwX4s#IdV*)ZN8$lEn%-T{gcS+fDdA-uht8hlXcb(z;|lv0k$5oea6)wBx^Wq)gD6+(!+0Kfj~HoEg93&H>Z002ovPDHLkV1j{%fRX?J diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/france.png b/Resources/Textures/Objects/Storage/boxes.rsi/france.png index f18dd0ca93f8f72e9b872e378c5ef8e1f76fbbfb..3916ae646c3d418ec7108dca9763cd81e2a86a8b 100644 GIT binary patch delta 99 zcmV-p0G$7e0gVBWF}H%`80G5e;usRq`u5yL!3G5pmWx+~beM{>7kYOq9#hj`%znUcY=3k5{j*If zoGZx^prw85kH6JY5_^B3hFZBv=x~zMu!YG{l n_`lk*WB)ljdtt^DF)$eOs^=$s-@g-R7lWs(pUXOCr-UW|*8DbP delta 126 zcmZ3+IGb^TN_mo}i(^Q|oa6)v*2M`TJxzfITy6(7B(e_Nz5H|k?&Y8Bosy0)i3RCy z*SyR2wDNEL?^n#t8)h&t@47K_bGl@w>Euokb_M1fv58rhkq3_4__4op<42$#m|1N+ a3=H4btLGm$v+6Vh5O})!xvXd%B!3BTNLh0L01m_e01m_fl`9S#0001BNklmQPeZKuqq%|TUBBCTS3ji@BuBx$ad#Gx8#PsyR8C?2Y z>E;Lg0)V)?0TKD`Ca$q;yuUTV-AjKF5e;(yJ6{|!mrUBg01E&B07*qoM6N<$g5RY% A!TGh{XEHxKX}qBh*E8^!MjfZwt9`Xe8}@r~V~=_iBXEynL$tbF%BhExERF?hQAxvXgF@L2=L_t(oh3(Rz4gxU@2H^h)?*XzBa^@_LvnQJ5Jx@KLQW`J|fIpBD(&Hw;CFoGk^zx=bAbIIEu)ncaYivjG3*J zVx<&gW+Ni&d2`=dkaI>#=^gjl)m|hbi!nk~F^w~(afYfQ#yg0fEmRL6B0~sa`Ob$B w77=OsOP`txiRcF4v>xvwa^Bk9Ip_Yu3-G5sLSx*)kpKVy07*qoM6N<$g6%a}K>z>% delta 231 zcmVsAf*|?7WHOJ6 zK6VKJ003Z=bMB($M{PA}HsK8;rw7Ng4~VuLyPWfRZGVgpuwcX(m)2Sjsb!|iCL7IW zwN^?g^^kg$`2cd$5CWA_=ybgHkXmLVuV6j^f9J`2KWqCYGg;I2YePSw;M?9f?bnX( hy!kY=a341ePnR7HVhNQ+rs)wX{NE#1)a)Q5CcTW!hTi*cy-X5$zHd0k#2&zQcCl*&L`S@NEv&-;`c3) z5^*H898x!Db#vBosOkidS9VVi0NXSI03xfeQu}yjX0LJrx)Yu%hbrh(VE_OC07*qo IM6N<$f)J5Fvj6}9 diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/inflatable.png b/Resources/Textures/Objects/Storage/boxes.rsi/inflatable.png index e05e91e90f8fcb45f982781ba841b27fbc7cfc39..7045b0db44eb22f53de052d45bfa22a0b8cd257a 100644 GIT binary patch delta 228 zcmbQn^p$afWIY=L14D6D)fXVeSRCZ;#IWw1%u66=y{C&~NJMLLf&}a01d*PmKm#tf zgBlVE2Rv4_tx5R%-^j^_=X>1W)BvI6v=y^z=cO2*D0A@Ka<4v7Q?%`YgL2#P^%j!r z=35^s`1vWeZRTtJiElZ?f<(9r4UIEiWEriAtDffQ^@BgQxow{2;pNZyPi&pt2m+lV zNBQIaCqH;9oW#LvmNemNQObnLNl6u--pRZ2DOkR^6~z1BzVds&qZ`MgGOx=AG$8I{ ZV$eCQF}q~HgdouE44$rjF6*2Ung9e)U5x+$ literal 278 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCilg0(?STvx4>8QVmo5^-7}k+Dn6O9c$UUp?6AMV0xh5`bE{P#ewtNeD|zr zN(<26v!VCavF1G+`atFeWxfDXLM1_d!T-?#!=wHCg@Cf01s;*b3=DjSL74G){)!Z! zptq-sV~B-+vVaPMo2bKq6-*os!3PeUIKq+Y#JGwnO)Si;j8B7|DL~YqsHpJs0;$GT y4b%JM8$?4n&hqx~^ice-`0J+~BSEQ6=3pUXO@geCwlm14L6 diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/internals.png b/Resources/Textures/Objects/Storage/boxes.rsi/internals.png index f6974a90c7a9bfad8365f5a9106717482b24823c..4a6e4da74afb5fd09f9dd7353e60ebcf5bbd067c 100644 GIT binary patch delta 406 zcmV;H0crlz0i*+v7=H)`0001UdV2H#0004VQb$4nuFf3k0004ANkld zQ##f`QYvWfdK6slnJ#xML=hC9<07=OHWGc}|JoQ6BwYaM8b z_j^xL6B{ydw|%T7-tF9D70ZY?%#8cffYWeiRPYk|vvs1)Eztt2I!oH#xt&CSS0m;_1zqBH~cm4VCTzKw8;k zEC5K71o&=7GI5Z!C_V373XI0UnkIOisrV7I?%m zsv06!MzUy4cC>L7|w2Z;i)z4*}Q$iB}PnATL diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/latex.png b/Resources/Textures/Objects/Storage/boxes.rsi/latex.png index 46a4cbbfad7ec5a86fac6c80f06f31ea617dd3c5..d501a206094941156977b7d2105c305b4811804a 100644 GIT binary patch delta 229 zcmV(|hhG7_BjQM>QmHGZx^prw85kI1JY5_^B3hFZBv=(s5QR) z|La+w|LkWz{pYX!zyIDLCsB8UiCL8nbIj-DC!aXtuu|Ehh=FI%&OLL5tTmZm&z|`Y gq-d)K%p?Yeqt*(&-_(wr1=_>l>FVdQ&MBb@005dccmMzZ delta 121 zcmZ3)IE`_FN>Qw*i(^Q|oa6)v*2M`TJxzfITy6(7Bv?fnzMl2@f8E^pue`zO|Mp-0 z{;%TZcI``0y8fxbBH!Zvu?d}xG42zdGDuVuS6Zvy(qw);d*;9W_YOG~!c1vkW{50M V=smhyb3FqPc)I$ztaD0e0ss--GGhP$ diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/lightmixed.png b/Resources/Textures/Objects/Storage/boxes.rsi/lightmixed.png index 8df25a0b7bb412063658c4a35f3b52c0f7e0488c..b5f556329c40a13f833629579a05e97b17e98033 100644 GIT binary patch delta 121 zcmZ3^xP@_oiYjAqkh>GZx^prw85kJyJY5_^B3hFZBv=JTn86$tQHVxi z727Cmpw#FUCeVt)0OBb`DRFno|F65^?t6JT5D^g(31mxdYlRIN=5s#^2?K0%f1lff zv~zzi2@Q|a2|(cy2Zs&3hMUuSi=PKrD=ey$U&BrVJRfW?;~U??A|mp*06(KIkt9AA QQ2+n{07*qoM6N<$f~A{38~^|S delta 149 zcmdnTxRG&!N_~Z=i(^Q|oa6)v*2M`TJxzfITy6(7B=jEqcfS9By^_Sg_vQ&d{JZSj zvLenLIB?*@vrlCl^(W=oHi{mZecDO4yMNCA<3RBP0v=6Id3aJ<82q}k|4$U1rIJ}C ydho-1!?so}vB^&vBA9*)oN?KB6lzBX1H&m_{fSS#`P8}?fWXt$&t;ucLK6V7xIoAN diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/magazine.png b/Resources/Textures/Objects/Storage/boxes.rsi/magazine.png index ed8cda38141ba7990cd446a4106391ca8b958e4f..af4e7810ef17d2700d60699cc3591cedef8604c5 100644 GIT binary patch delta 180 zcmV;l089Vd0mT838Gi-<0047(dh`GQ00DDSM?wIu&K&6g004hUL_t(oh3(QI4#Xf3 zh2eiUD>wmyiy%2Wk~1Jlp5O$yu4>cN0kZQ+lHpBW28=Pr81r_Y*@2YO@qEiUPyciJ z&JIYTl!7F@_efgJURwYl#t1;~eJgx=0q5LRe+U6d)LNJ82QB!m44t*N)^@Ui$s@cs ia5u)-YQY#|-t7;oAR;GY`=>Pk00003v!E}*n04>cF(UD4OR-=Nte~QCrDgS<4=;! t-PP=JAJo z`agMIqOkp=KR!Xu&drIpwq&}@cAdt2>70apazaAFjMSnqu48FH){fv~`a8?t$GN$= gZF(aQH%NlPLO_uD^1Q33ffg}%y85}Sb4q9e09?s3&;S4c delta 113 zcmZ3?*vB|QB`eg^#W5tJHCcjnae_!sQ=kEt+d&P9j|~&AFs%43zgcef55ec@j8alk zJeQaGDxdUG3zGft=uN3XUQ&z@M{=_PhtFKAsVV%uFr5z@8XFlILa&Sc2-w4Mi~$Hd MUHx3vIVCg!0AYG5qW}N^ diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/meta.json b/Resources/Textures/Objects/Storage/boxes.rsi/meta.json index f3f0f4ee4d..20f3c057af 100644 --- a/Resources/Textures/Objects/Storage/boxes.rsi/meta.json +++ b/Resources/Textures/Objects/Storage/boxes.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/cc65477c04f7403ca8a457bd5bae69a01abadbf0, encryptokey was taken from Baystation12 at https://github.com/infinitystation/Baystation12/blob/073f678cdce92edb8fcd55f9ffc9f0523bf31506/icons/obj/radio.dmi and modified by lapatison. boxwidetoy, shelltoy, swab, flare, inflatable, trashbag, magazine, holo and forensic created by potato1234x (github) for ss14 based on toys.rsi, mouth_swab.rsi, flare.rsi, inflatable_wall.rsi, trashbag.rsi, caseless_pistol_mag.rsi, guardians.rsi and bureaucracy.rsi respectively, candle and darts created by TheShuEd for ss14, throwing_knives and vials was drawn by Ubaser, evidence_markers by moomoobeef, nitrogentank modified from extendedtank by Errant, agrichemkit by Cerol", + "copyright": "Taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/ca674eff9d23e04357b7609ef7e07eadfc1a993f and modified by Flareguy (github), encryptokey was taken from Baystation12 at https://github.com/infinitystation/Baystation12/blob/073f678cdce92edb8fcd55f9ffc9f0523bf31506/icons/obj/radio.dmi and modified by lapatison. boxwidetoy, shelltoy, swab, flare, inflatable, trashbag, magazine, holo and forensic created by potato1234x (github) for ss14 based on toys.rsi, mouth_swab.rsi, flare.rsi, inflatable_wall.rsi, trashbag.rsi, caseless_pistol_mag.rsi, guardians.rsi and bureaucracy.rsi respectively, candle and darts created by TheShuEd for ss14, throwing_knives and vials was drawn by Ubaser, evidence_markers by moomoobeef, nitrogentank modified from extendedtank by Errant, agrichemkit by Cerol, modified by ps3moira (github)", "size": { "x": 32, "y": 32 @@ -52,9 +52,6 @@ { "name": "box_hug" }, - { - "name": "box_id" - }, { "name": "box_of_doom" }, @@ -67,9 +64,6 @@ { "name": "box_science" }, - { - "name": "box_olive" - }, { "name": "circuit" }, @@ -179,33 +173,6 @@ "name": "hug-inhand-right", "directions": 4 }, - { - "name": "shellbeanbag" - }, - { - "name": "shellflare" - }, - { - "name": "shellflash" - }, - { - "name": "shellincendiary" - }, - { - "name": "shelllethal" - }, - { - "name": "shellpractice" - }, - { - "name": "shellslug" - }, - { - "name": "shelluranium" - }, - { - "name": "shelltranquilizer" - }, { "name": "shelltoy" }, diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/mousetraps.png b/Resources/Textures/Objects/Storage/boxes.rsi/mousetraps.png index 2d19c7d55be752107ce8ac008b20ed5845f98dde..b777906f4e511df3c266d00f9cd91bfe0c3b2a52 100644 GIT binary patch delta 132 zcmV-~0DJ$E0igkqBz*yMQb$4nuFf3k00016Nklae^d8{;Lo&KFdM^004iNoZ=?+yZgiJ6J_^73|k2v>;~5@tPWvsU^jb!Iyt|p mNqzPqA6G(f`DzFN*y#ji4GcR8Dx@v|0000pokUn? zSd;(&!0rxbD5N^Nzl`@zr$8U(1i$RTehY31djqrB1@7d$R7f@Zke@3}aQUkQ0L<_J X1APoTz!;?400000NkvXXu0mjf&YUtt diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/nitrile.png b/Resources/Textures/Objects/Storage/boxes.rsi/nitrile.png index 61e0c89c96c79ecfd1d0570071a31206c1330e16..30042ca767f201e77258e23c27020b8fdaaa6fcd 100644 GIT binary patch delta 196 zcmV;#06YJ_0qp^hF@L8?L_t(oh3(QW4udch2Jml7kjoP!6-Z3Yv2S-WXt>ziT1Dw>>SeEO12GAueBC3}Lqo yv9E}Z;`?6o441_ZXqn|TO#-0k`jt{j0l)|O3^h=7yV3Rl0000c9krKR{IKR`r8MC4RTxjgSjZ+H{+tiWIm27o4t9K$=WwSL}bzCaVjyl&`A zLSGV^sHqND1&{OCkz+7jVDbh7Fo(N7;O(A>=r?W`_ala4%nm!~00000NkvXXu0mjf D45vO; diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/nitrogentank.png b/Resources/Textures/Objects/Storage/boxes.rsi/nitrogentank.png index e179be543c2742e60684c74a5870df0e809cf14d..3df06c7402626260eadc93a1fd506a53c1a016b0 100644 GIT binary patch delta 158 zcmcb{xQlUuNGZx^prw85kH!JY5_^B3hFZBv=^i1u_+61&_ET0|TS5obl7Nj}|}&FnGH9 KxvX{=b2-S^jOeO_eIy43X1bB(QE5Iby$GXWl`BEXBjpdW>vAvIm{AI2v^3XRP46 zUiSJSciUdWY>7SwU3K;eZyJ8G8}}LB`}vJqmBm3!{$6>TprzG`!ZR!8T@;YuZJa2{ Z#E@PiXME1@Pan`x44$rjF6*2UngBK+K5+m5 diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/omegacart.png b/Resources/Textures/Objects/Storage/boxes.rsi/omegacart.png index 71381ae597ae9d8f723c74ba898eb10b7d940f36..1947f9c71f2c5e766ba7f9ea9c34042f721b32d9 100644 GIT binary patch delta 2844 zcmV+%3*+?3ivhS6kRt*LI*~dXe@Ka)mUmQC*A|D*y?1({%`g-xL+`x}AiX!K(nMjH z8DJ;_4l^{dA)*2iMMMM@L4qO%jD{kyB8r88V8I@cAfUux6j4!mGqP56<>kGXm){>} zeQTe+_dRFteb%}Fki7l5ymVL!fHa0IH;uf5=ydS^Nt%_x7l_gXiP(b8$z+MRP{gU(f()^JM#R+k z6fwgnG4n+S6tTRR6BpU=v(F+si<9uYy1K45IaYvHg`_dOZM)Sy63ve6hvve+8gpGXV1Uzt}Vn z0w5{sTl>IQ_o0dBB}pL2uro2q&dxUGa#+UVg8rfZ>F_u7)%T3W>Ha7W-JO%b6s8L3 z;<~ZYQ`3cfdS(Wb#i1Mhd5HgU;9sA^Focu9;d6MRh;Y%Aae0ZNcJtU=0XLmT=koqj z6aQh@pR_pFB2gMXe*tQ&F_0Rd0_4{|fT9oq5_3Sb1O3rAe|$I)zq|<5iN(49Ea=~} z!e!zmlbiTC&MhR2&Jyyo7Wc%@5}*MANCGNQ04hKO=mH~P4s3uua0VX07X*SZ5Cv8N z7DxhVfDf`kKG+C~Knd6Zc7tkA3mQNZXaOfc2RIEbfXm=If4Bi|g9l&)jDzQ32D}0D z5CmZ%GDLwCAXP{UGJwn>2IL5NK>kn&6a~dWi4YGGLix}ps01p9s-Zfl3Hly71zmuy zLW9sfXcU@)euv(}2uy;hurjO-o4^d%1@?o(;FWM9yc*7f3*qf>6UgRb+f=natP#6>iMMoK- z>`~sR{}cWr;0PjdE%mRJX`^;5_c4L7B_^Oz|G^O@LG5~d?22U&&8MF8}MED z0sJ_Ao*+%oAvh4i2+4$vgepP{;S%8?;T4fcR43XJgNa>atgt3H=1Y2UgM2$qd#E`@b zNxY<%q>JP#$vnwQ$&-=;lG9RnDQzh?DW=pqsT!$MQo~ZS(iCYk=|Jf;=~C&V(pRM? zWw0{ZG9EH)nL?REG8bjWCO)PYmQcT=_ETqMWn?X7 z!)0@1Yh=&Jj?fUAHqD2YN-LwCpxvRpms6H=k>kj1lWUP1lADuXBJV8EkuR2SmA@_j zUV*OQp^&1mQ=voQks?Y_UoluQTk(M6CB^9_)Ft*ySWAkRoLF*S30Bfq3Q=04bV#XB ze`!`(McGR^LwT?AMdfJ~nu@bZvPy-@S(PbOimIb3SG7X*oa!^WEZv2kO0S~#&}YdVy&)LYdbX%I9R8VMQ|8r>Q*nyQ)sn)#Z|n)kKvS`4iutvy=3 zT65Yu+7a4Yv^%sXb>ww?bnNb*ob80Vw7dnY&2?2Gxj$wFzzsZVWMdgZL-s(*W{C_ zm1(MJgXse^88ctA0<$i&-_7;SS>`q7w=BpOo)+sZIxSvW8d!2H4_Mx{qF4o3e{Heq zw)$voW6ig2v7WNgw28CXXEV&8GJ+VTj4QTiTUXolwx@01*;(5O>`vJIW^ZJlVt>?r za;eTz&eDdZV-D&LOouv$5l6aXoZ~^q5hpb#rc=Gs6K4%)wsWKNgo~a_vdb}-7p|tR zeAhPDIX64EwQlF#5qB^5V)uRze;JSE9@QR?J=HxEJ)1peysW&|c%An~d;59s^d9z6 z_F?%n`ONs*_^$Qs@gw<#`c?Zq@z?j~`*#Jv0lopd0v;~YTE<(}5eNc(0(S*I3epK$ z9rR-`CO9a#CirQHSxA0JZzv@+HuPxdn=sd~vakosb(ag5cZW-c$AmY9f6qm@N0dj5 zM4Cjdjl3SE7{!h1jK)TXM>j^#uJBl~d&PK+RZLOLos~K(b5>qmrMN0})tOkySZ3_W zICNY@+|jrX%s^&6b2i>5eqa0y%Z;^%^_=a@u3%4b9605ii3Ep)@`TAmhs0fpQ%O!q zl}XcFH*PieWwLj2ZSq`7e_+btl!erY)YddyT3p&Go(wOA*ORW2o|8V9VUSUjF|yij z_3qU(d_R6;CX~4{vr|A7{Y>=tT>!5Y<>$=x#tS?+YzQJq5k&T3nDI0$(e=sd5FL=EvVpCV4 za^Z%;vCUqan~Nlh_(j88?6=fzMQ!D7?cZjxZSS^E#q8p1C8i~nB_B#zrPsbO`=;uf zh3yI3`^&7$4(!0};O)4x(`o0Ca_REC^08e3yV@)06~z^=cgOC&T4`BXyN9qxxM!rw zzp8Vu=H4B9KU61Gf8VZgt!dq-v~SzKx&7?@LkFA>wA3osmejsK$US(s&a1AyUc0{X z5av+Up{EVu4ZYtozHMq$Y%FQ~c$jy10kG~(0%d4Z_dB<%|ym1DNytC3hBe0002FNkl&+JCEM{zw_wLe>W%3|87p6WIKX|R1M3QtomPC*TkT_U6^5=~LuCX7;djDk@x3P!=e0RRZrId0V44mz~}0000yf(R;`h@v1kuAmG8B0Au21P3?ZbwCAMO4IP9|iUK6m0{LvNKL`N9kJ8;ZbhqBwrbAB#EgfRR4?6H&H53r8mV3fy#p@Yp zE2^)E)js-A!=-Avwe?iZ`pj6_efz@qYPcAx>{fap-=%$QU*z%F-8VjTY&-6EuVU!g zt&#KhsXh4v>BUX*l?p0Jc6b+~aFra(h136vyjEM+(SV zo*R%k71-Fo^yvgvA%Trcet&ic2v2`|Xqyb+eNbCNCNmyD%mibt0N>?6e$(pR)_^Al zn8kLeB>@kR0LI>fZ3mnw1u7fWm5Trc6#(NB8?_Xex((P^ud5pj>^ua_vU%-6`Da<7 zdXE7_>QE7-Y!S&i!dn5kS>D3~wNSs&e$KL4M8*_GsyV7U44%+pSEXlwjWECM?Y%a(W$lfDf2X#)#);0^FFK8 zy#u(DI=d_nEWNt8Wt8=_-SC4fwcQ9fvxzFREgqS@jw$=E!xD8*QRUMi0C-)_uliG8 zK{nhsvZE0GzY8Z8dl0JsQRU? zO8MhP;!ev&wbhpDmP)Mf1%Vrv=I^l7kG^$A%U~n=Pjf9orHgNLfw| z^G){>kM`Wo^PTo6j!L_RseC?H9$)K^LDkh*o;5L4Okg&g)yY@MtDApjb-rx*t~bo4 zvq4j5L|9iU5~l`PA{YxT>^vPkS3a=IMl4uFnEpu7SW$MTOZ5_+glva%dKag^tDWnE z!^U{p8S37f5jPX9zActkYrJU2E*fr0+5Rc^XHU>uX0+I}@LY9!4Rg{6cJp-;u0LY= z70Hth8X}g}M|Gul)pX&zG`qB4dn={;m~TGu*6pdj>y1q-=5?!g6T0QV6r6?o@l@Bx z*+=QqjpEi=791^cJ?#>cJ(I8{m2@j|w!Op2f@6ty=KId^9pavTF1k4VapJ<2$+taP z8hUM?CqI`R3{p{z)`+|o%h8{gHdlTwXI{|U(ZO~e z8z*OZc1$iOn@=}85#}|#OU|ptvBsHp!X@+UhR%vQgfeqpaj>DbpK4z8mI$L-y|cF- z{^g9eZ6@EDvia>{(MrW0{jB7Hu-#8)y;}Nospcty zV;L4)>zA99oaC8jm*Xi( zr}8Zr(a}>)s)wG*j$-Tu)k0+WoZl(v53^*BF*$ zms|kti@MgF^6D?C;6<$=d7bohU$d^*rXamw@xAhb@~r7uWh)a_=4IUD)SUUJAW-D59C@4O9D!^GdMnTIHgw$Yx)x|C2YUA{f}W&dDWPQYI#~~w8Dhv0%ws|lb@tE z9_}~WeswUZ7tQf(Qg3>I?<|?wu(Xz&?v{4PmNSP_CX5`2-LuPKM*}LEib~V0dt861 zYlY~|=5-yREpO7(iqoq5vRhC06Z^USF>Oa~5{@j*@WKmk*VNPga_Me1Q$CW2@oUcy zbEY{*aL)JWqM7J;kAnMWN>2vm4l!QMq5ew^Jkm++q!>TJJ@MLb)3~yKt3$E9Zr=4w_q6wSSU^G<6cTyzP4|_bG)` zYgKb}(9Oi=*ax(=1`Aidwli=FJ@9vYg;B_&tN4?K-DNwMx)l+C zGbLZbMjnXYzu7WZ+bN-h^Mdn?y|p19j4B$r%G*w4p@RmB3Ouc@&)m_Hj=`Q;&_`&`|@sL^JuH4?YNgo2% z6|4-{+;>g3MRr(TSFPlJ*`If{T1@G#arc(Jv{k$I>*bO3S3yWsqN@8JhwGl|3amo9 zdWRI-hZd@mA8p;cEx$wl&aYdwI9ljUmZ`5(ZPMIQKY06iUv$1nZNB&7N$5x0)?cR` zCQ!UWRt(Uub078YxRbzn-LyA7F@1X&>RsE$)?+2xdYFyvo2Kz!T~rr!v{;Ys=~-T} zym9U83!>LWt=%&{E_kG#CT|FMA$ma>Nx0*Dt^9C#YGK)0zq0<&OXs(-hk7+Lj2j;h zUJChV_UOI486?xkmj*)lLsy61w9kGV7Pw@%v7!87(31Xw3g?OqgXVn}4{48M?wWaz zv^{v$_WP#Fpv-~hHrpY&sK};~_&0IWXurfAiff2gjeeP7LM4%&ngtH`e$1jZv6}QU z=8PO0X(*gC8y)uc?#ug)%_+@ClV2w%TnYH?YRnynH5T6bmsuJ{x63Akc zU9D_BrGqR}9bb`1Kt`j3f`U*%coaX7gT|6bBs2zx#^I1q52P@JCt?I6c|zUsAfMw{ zfkI{=S0Li@c?fY_h7W&>$W%v1oaoE(X)w z^Gzx{t`MrGkV#br)!Nw3;|6a2y7jZepF6gL2pEAvP`ofrbw01mFI&!+9Yw4eTi|2{ zQ@r<3nd0&VA>3cJPF&U(CzODB}>Jg$g}`;-mVJV_<~CMJ(Tb%Smi zK`JyfcoV$$DsC|7?`g$_zAJ>{Jr56M8PmWW-xYfONI1#yNjP3klWy(C_KERU=*AJc zXGMRxY5isk`LfggH$O~_=)V~i7E78021K$c#U+^!%qztO10va!;*!h<=9S`t0g-G< zaY^O_^Gb2SfJio_xFqv|d8N2uKqQ+|T$1^~yi!~+Ad*cfF3EggUMVgZ5Xq(#mt;OL zuM`&yh-6cWOEMprSBeV;M6xNxC7BP*E5!u^BH5JUlFSF@mEwW{k!(tFN#+CdN^!w} zNH(RoB=doJrMO@~B%4xPlKH^AQd}?~l1(Wt$$Vg5DJ~cg$)*&SWIiyj6c-GLWK)Vu zG9Q>%iVFrrvMI$SnGeh>#RUT**_7gv%m?O`;(`H@Y)WxS<^%IealwE{HYMUxns^Kp zs@Y(NVJ+^C^1KGIGb&=5DFXmbKBsya;!Z-%AdUTHthl-Ra~1Sz_S$ z?#L)2CO#q}!a`W8x1F}}SoOitdO}Wk{NdTnRgv=Z=0Zmj+Uw1gbA`L0UJ=^Mw3EbV zM$eOgy@a?atcJu=Wqf`@TSI2{iTXfFu4BGEJzPMxjs(?*XDuJ0DCW$w^OKH#;0DJ3|R)v-ucl-}GZx^prw85kJSJY5_^B3hFZBv=xD-|r=_SWh!HX!-ST`4K^%Cs`>82?;;!*3J-m v%frK?(!#*ZeB}BSHs*P3Ad^7GGBAWq7gyo8Dr*JW$jRX8>gTe~DWM4frD`}~ delta 123 zcmZ3(ID>J5N=dw@i(^Q|oa6)v*2M`TJxzfITy6(7BoYpI^euZ3aR2{{r0no~wbMFc zMLOmsliNS`%oKYc(clrkCBb7WBp22HXB};ISdSQ WFNmvLy>Fe!00f?{elF{r5}E)yTQFDv diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/pillbox.png b/Resources/Textures/Objects/Storage/boxes.rsi/pillbox.png index 572cfd01f4b27f7ade617abb8d69e0d0c3eab3ee..64652611948bc0610255a69b2e572a17a0addc49 100644 GIT binary patch delta 171 zcmV;c0960B0mlK5B!2;OQb$4nuFf3k0001iNklHj0k#2Jg3`0>fhO-i^%Sx9q zOm%|lL_@`Yl`SQbB>(_`zuVp(+Ro@wd7P5=(IrWpL}tO00000 LNkvXXu0mjfAxA7O diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/shellbeanbag.png b/Resources/Textures/Objects/Storage/boxes.rsi/shellbeanbag.png deleted file mode 100644 index c9f3e3aabc6b602948b4b1b0fdb8cbfa612c284a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}t)4E9ArY;~ z2@Z8~uMC{wO&C2!2$&7e0LXWxZslsB(&#@J+wvLK3A6 z+#9*<>wmdzlL(dh@cyj)rlT5V2b^px**F!`*npr-{QW(`(lRyVCc)I$ztaD0e0sy3MMMVGr diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/shellflare.png b/Resources/Textures/Objects/Storage/boxes.rsi/shellflare.png deleted file mode 100644 index af0e1d0a534c513e0019a5d312800b30f8e56c45..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}Wu7jMArY-_ zFD>M4Fc4{Z*gQcX=&;b%oC6Ei91vsaJUmg#?SMi+`=Lwj%uP@1em*y~40LdDarw94 zy~Cx6C2y=hcy^!MFSCwOto3Vw)VC+!PBoNz=9e2imficEp+Vr#*K@b>{yye^lia*1 lkCEYc*ukxvcXoChnZuy!5wxR#aU0MD44$rjF6*2UngB~oOS1p~ diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/shellflash.png b/Resources/Textures/Objects/Storage/boxes.rsi/shellflash.png deleted file mode 100644 index 6503583d1201fe53f9a2b9c178d2f5ed8d63a99e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}`JOJ0ArY-_ z&)M=h1PHi36rPwNQl=PqqfzvRN#Lp%%Qmz0I=MQ({aGnkv_GrJ_$Z^Gpx{p?5$2J!GGx?Dxda!DwOGe zeBjKPGtU;}P6+YPx?=WXs!r<1vyTKLQ&yZSUVB=oq56KY#BrTjOUwTMVN$IB%Y6F9 zgP#^Y=j?(O?Dji)#uH$2wf`;bP|K7tDnm{r-UW| DcfnD) diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/shelllethal.png b/Resources/Textures/Objects/Storage/boxes.rsi/shelllethal.png deleted file mode 100644 index 30e9bc7f8b33a29c6a377f4e9fffa0eb37599082..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}^F3W0Ln2z= zUNq!lG8A#WC~cge+|1LI`Sxx@>+S-MWj$h;GI_MUm}l%n$yCuiRuR z`C;dtZKjeFf*wgGhyGqRS?1PUu^ow=4g7+9;)SO*s~Y14_8v&HO}4tvv|-o0?pZ-z bPxmlf&kMG&*R?7EI+elG)z4*}Q$iB}7CKek diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/shellpractice.png b/Resources/Textures/Objects/Storage/boxes.rsi/shellpractice.png deleted file mode 100644 index 9d3551edbd0e3200ffacc5baa02e7ca578022e32..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}y`Ci3kN##$@s(hZr zucV~(iT{jF?aateTjm^|cX&1LjCRI`r7!R3K9BhH!m3Zl*L}9yvwh`T=R6YLlKHFl zQEn*Po24&U7z~eHU3;oQ;LxjWl?VQQdQh^D@k5<$tgnm8bLRH=bQLep_`g7hF?hQA KxvX(v`Ib}-%*5jtaIc{9hZqod=*d8_k*Js-Ig z83Mc%pWmt6e(U`{%fHH80S(p%&KPW7_V(lhTOUo+{PoP2%nbFk8J=%6UjNV6Wyv!( Y?ob{5SCZS+fwnSuy85}Sb4q9e03hN&7ytkO diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/shelltoy.png b/Resources/Textures/Objects/Storage/boxes.rsi/shelltoy.png index 24cdffb4446a2717d0498f58b0126a6286794270..a484f316645b0106c57d130952a8d149bc4eb92b 100644 GIT binary patch delta 169 zcmV;a09OC_0lEQ@8Gi-<0047(dh`GQ00DDSM?wIu&K&6g004AJL_t(oh3(Oy4S+xl zh2fUq7y)KDbF9G{7$$-duuMRZCs_f*0Ov>^4ojQhc%SN@JXaASA|m=bHLZH!xhK`v zb||dF7=3M3T1HK(rPWT(w8&xT&&{I%s4$NLOM94Kkk;(#Pa@?l;Mxb|Ex^)5MC5S; Xr72O_d&4DD00000NkvXXu0mjf^5RBK delta 231 zcmdnR_=9nRWIZzj1B1(wu46!ou{g-xiDBJ2nU_EgOS+@4BLl<6e(pbstU$h8fKP}k zL)w4ing3-BrP9;WSIuPj|DXHR0fw)K_5NJW1}d50uO9)VxJrWjg8#z+!=^Jj=YgV} z1s;*b3=DjSL74G){)!Z!ps#0wi(`m||Jzg6Tnq|4E{^|a{f@uUu;!*)&YCNl(;Vha z?v>}+&gyrOA@<(ue7+l^NjxSAj;Aay9=NzbS;U=>j6Hs{pyTDYAt>@+>PN?}cj>xnxxN8zlGi6n{p8!LR&ve^5Fe3Bv3H$(<42diy~^xc4Ww zR*&oEQB0U8SvG4>spkb8EeMAfdx1qZXbc*(>H0d{-MI*XYwK`5Zz3~Tp)I#G2#s)6wZxw+7GaMd_6Hpahn*oxx-%W}8dmAYAp zg-uz}G)+dTtg0eMh*953_K%1nvpcA%-#%&_gHub0-{;xfho*%KYr`T>=zG-92Q(A87i&ACKPfLB6l#Vo8b)}CZ)ZQ?Revr-Psue-j@ zy3wPz9iWC4QyucG32CDpA%lBAW|aQxf7>j;c!yDiE||0CTaSj3#TYlU>F$)k10a+108 za?*z*9r8aV4)<>B*$JEvf@GPFApVgKG3xWl74i|a{GqnR$J-laW2sg@bK|NqbB}W1 z%(sj1^gCedz|qRdcfaY}%zb_3a@PL*TK&c8!k2T8Y%d@D{`GU{kLfQyeXaV#o5!zy zb!bz#Z~n>5%rUpSV_DLduu z8d^kwY>brVp3=W(GXMa9#kT06yU(}2r0}h~Ju|E^LbZ$|yU-tjD#d?z;4B7~9`M$F cjt2mkT~5IZP{c`ik^lez07*qoM6N<$f)yh(MF0Q* delta 110 zcmV-!0FnQf0gC~UBxh1dL_t(|obArB4S+BVM9~joBt~*1c8Yg}o&qISB%1$9TW23g zk|h0Xn+-(7{k6}`shj(30f6j%Xg1;~rGV@8FpGD}1>AsL{VMr$nC#^^b{}RL3cq0QH1{>5D3W} z5&{4Kz+rL86?1R>8`s>N3aw>cdqGmeElZn&M+ui^KlFd~VcUNH6%GJ5D@!XOA$6VY QS^xk507*qoM6N<$f}~$7Jpcdz diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/swab.png b/Resources/Textures/Objects/Storage/boxes.rsi/swab.png index 48f35c7dc71f4f16cd6436e56f50b2f92fd6d634..e9d2331a231cb510d76c7a20a8415b3ae20cfe63 100644 GIT binary patch delta 147 zcmV;E0Brx<0lWc_F@JVRL_t(oh3(Rz4#O}E1W>D^ZGU5b;-4*Z)xx0^M+zM*EVc0! zOp`{pXbri?tvkyWAtE9os+6~cn)&Y6L4<4G68d43$GQOFT2tg}_jKSk?U>E33rDyj zT;JiBZjErA&Cn!V3A0EGXb0j&X$BoqO2Qb$4nuFf3k0001INkl$N>nA!c# d14KmhTQ||vC7ji;W}*N9002ovPDHLkV1hy6G|d12 delta 131 zcmV-}0DS+g0iXepBz$K{L_t(|obAw|4Zt821kjHo`8dqq0l^R~Sko!$x(~s2fRf;@ zuAU|pP4CIe<-~~)5fKsnotr5KRh+#$GeeB=&c_&1Yn|G9#LN&>ky3&zD`eXt?Lf{M l-g}f%FuVD!2Z)I14Hri^C7l0Lr0)O#002ovPDHLkV1ktgJ5T@s diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/throwing_knives.png b/Resources/Textures/Objects/Storage/boxes.rsi/throwing_knives.png index 834410a43ef64bd0f3dbfd9d852247d464cbd5f0..5841c2ff1af6fc27fd773d9ec16c1ac1148ad264 100644 GIT binary patch delta 125 zcmV-@0D}MZ2&Vy%F?L}|L_t(oh3(P734kyRK+#s(F}j4sNgP{rfu__=^ya}R7{r6{ z-|-V@Nt^=!0QeKB>vnEMnrarEWjKVOT8#0{`?e2AZK@T~&B8w&?DKG}dYLDG*FH6- fr0#vy000&{UD+3uOA@_$00000NkvXXu0mjfcP2Q? literal 1141 zcmZ`&O=#0#7*2JTtvC;YZit60f{2)WZB~X2X<#$^3EEL=g=`16Hc7XzG+#)*+BgSJ z4^u%!9HT)<=$0%*`di&DU%@%;&UsW-gtBTI$qnX zp%I554$ONq(!q5-B8aU>&&x>89OD#NW(q1SYK&X9d=&3;_*m9Zfpp7;>2PkE@-;Yo z_QZf9eHAp7rsPbPJOXWv>|x?eoDyOrN%FQ@;&S3Z2*h~Qs5XK)Ri);~s@R6_ zMOA=iXl2br4oENw&8P z^E>(cRx~-Ey}kOY>*2{yt7|vq_uqb=K@7Mycl6Mok8_dE*+}P;Zi~1#+Hs@h!h`!> N%S-*k;zHl}`F|_-V#WXf diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/trashbag.png b/Resources/Textures/Objects/Storage/boxes.rsi/trashbag.png index 39c87250da1707e90e0f268bbd8d85a601314da2..4697263144283f01f6e3a4fa88fcf7d037ae2a9f 100644 GIT binary patch delta 206 zcmV;<05Sif0`~!sF@Ld1L_t(oh3(KW4uU`sh2dWj3MxVtI3 zH7B6btPKaCW2@=3wOuHkuYdDi29#1tDfRDmp@Ft-KLB-IGYkXP+Ta_%_Mrh0sV>I{ zUDv(tH@l@92>d|PG^e5{oH2$pO&Q1Wxh%`I@B8=K0ihpoWk*>eB8Ujam^0wkmIE9@ z1KxY$I3|iBy!YgJzNJ5SKs8O1%d(6lNtovupxU%RDW(427o|usBeARdB>(^b07*qo IM6N<$g1&8C(EtDd delta 249 zcmV-Rz6`9A+v7=RQFvr4G&3p-Uj0+DT2l z2QXPgxDSpCcOe`XFvb{TjQ!e%ayANs^##+naOlRM+)`u6!+a1D%x8Z()u1AO~Ojw8BJx!8A=+mSqip zPScb+VPXf!j4>F;5yLQ`?|WElGwLzM*gpYY)nz@*55Fo~A$pF1Ldk5?Ts3?ta_9cHN`;nw%mA;f-AD zH@{q0rTv~UeSh$WlmsBy(W&AW%&s9l!$3oNmREx`*U8p5FzOcc_-t{doTw`4eERYsP9$+*$AZ&2vk(!ROLMUV@4 zFa$jiZ${&d86Ytv9`NeLgE2~CxEMWf@=uJ3H(%R1HZl@l^8S7Oe&6qVzwf=Srp89v z{GEP+Alk%4JdJ14>8)q*XfG`M!c&u-9vLFaZ@Uih<}A#Jxnz>)!|PVuo%U}0As&5Z zV$vpvi;tb&bdK-dCWuqd)rkzsBu9DK$TN~+WFb?^n=VQy@pzesNFqylO}F_{gmOK2 zymrihB3&0W7ojrA6nV|CAUVje3`<4*BuNUElH=3y>lHZOMW`8sOdfz@vB(sIjA2cK zKsX!*EC)D_#vZhNM@LeL*6kiI$iFyoXv>yrBGu4IC$5w=3MfKR4pFsvc`9<1$1GTy z%c95tYA_FVWP<<`0F7`+%^hW^+Z8#mFu?hOVQfQ~Xd*d;l^QPLd@AR|iOMdojTBJh z063PtLbDvrg+cXvIDJ8pd88r@y24e@<0=@_P`%ahcO=kMM_FEz^yvsyq7|5v3L2uK zK`z89mjhW^$>mr&By(9BYb?udZlABgeT zM8+pioo{*C&2~1|4ey7@{e$0oo8`}U*IvzUi9g!gFWryLzSub|FZ6$F`fw(@H~#(f zjzO(1x2*IgZZB>x`Ifhz90u3^kT2Jld>fl9y<^V~reNXbu*$jE(MJw2!!F^jTnG28HoXI zqi1DdM`H2R+}F^M3lPA}%*<@FW7^o=OA-JPfuvi_%yHJMjHj-u1wY#!9{#}P^H(r4 a+v)^#=OF}QcBxMQ0000=-E7z)1aBD`i2wiq M07*qoM6N<$g4aYZJ^%m! diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/writing_of_doom.png b/Resources/Textures/Objects/Storage/boxes.rsi/writing_of_doom.png index fd1977d96bb9868dd12db5d0ad746ee871073529..d1e797f8702a7bade3299d38962a66fa0465671a 100644 GIT binary patch delta 120 zcmV-;0EhpF0hIxeByjgwb=28EX>4Tx04R~O6a{qwWlB}(zW@LLNl8RO zR9J=W&anvqF$_adWpd+Pw3UZ(s)JNlguq?kzsiMWO9B7@xQXpv=ZNUH{o|g8Ymv`N poGLJOLbkiABuSaMbprtK8xund94{54XvY8m002ovPDHLkV1l2+G~xgN literal 9262 zcmeH~c~lek7RSRDkWCcC6%El=5wa&_DPc#X5Oxs|t&?O3fovp!u&BuPglc6Gmm-KL zOF^Xyh%AalL}}d-ZDmne6qHhgqN3uXlK_f+J?-(l=RfZxIZ0-I_ulXQ-OumNZ!)Q# z?#_DJi?m@dn4Zg8M{npCA^&K>p>Ih{%qR?|ely0`U+N9W5F)WKn9BnZ(r6Kg0He6U zFj!REpkF}dax>kxeMS=Xq;!MJz&HJiuMYQ_5eBO^uJc;g`IayzmtuHzq|(Y%Yv94M zFUAvBW^kLm-HwG`+!Iz-k`D}TX&Wv)kTx`25T-Se_quT_B7djX@2`Fy&5j!={^ExK zQf047^Ci;FJk8MhXM-C3nODm)&h%;cVi4|qu#K=mqIu})kr4Z@ICSB@UtYl{*s*?Z zu1%;8G2)lFb8+Dp$>G-XHpiKX8f`C-%K;?r=(U{TYrOdjmW&+A>rV9R+PgP)r*(gv zY4Y=5XZJ@%7Tq6^y>Z#}8uNpwddv==R@Ym+ZS2I^Y)S0PL&h&Q6-S`VgG%>%k$rX> ze;#Q&e9FyBdsC|ZVBrye+fjW_>z))7(6dlI&=SmU4Y^HwYNxjPaizCiZVSxoJ}1bV zk;sC1+|wEKtsY^k?NA$~NuHGHn1}~V1?hIrR$O&c$8zWz6XU5PrZ?{|9dW$%TYbW& zAITc6qQ~Pq0}x3sP`i6Y&rY1RzHXjqNA2KYPd06{m*$&SS?wM}WaGR%^J2gG=`8Fa zve|f*gD(8YTphEfOmEYKWqRX8*g{Lj)5F^xTaxyf5zLz#cE|IMn@O)SGOr7IEeuSL z2iY+kH{n57Yn}hxqJLbsT2Lx=?kCDHw*mol(#FPipLCXvhY9c z=L4>AE(vr!9T*m7(6+tfWG!GHMvwTd#`Wh-wa?qyZO3+5vHMpwUij|lHDWZoF7Iq+- zZ>Lf?n=L@qo~DJiwk!KA7Cp*I@afBG%06kn!p=2Z{5h4i8H@R{{K@rBkH?3ibf^=? z!Y7x4L{I;%E@>!vv%Tib*>jC;qql<{^)(&p^*T#3PQAqf0j_t)J>Q5;>gyh2ZcZ%w z&co?=S$*i?Ant+m(d=-#cMkJ>t8PVWlK&bcd`TI-QhdWcV8P`svXO3@$%gD>_cBC5 z8-6O)Pfd*4^7Xv3OTAShc;(>UTQ8q$3pJOHwnbN2RPQM{U6Y+>btynvw{NsncSvSK z?35Lnu5A7KN?xt&Y>B42NqLXgjtxCJq-8;AcdSaP)$9TdOHA$ssHRHb_ndVP>#aj_ z+H)3NNIKn!9`A?{;C9{kti~PIfd3)I&rF4jYiW69o@H|v=zCfkx#CA3R!3$~M>fH^ z{mIQ^A7i*x5qx~RHx2X!C}+zqGSu}*((C7=lhSFT|TB2 zCyVYGdPcID7?mZ6Q))8LsxGo!e_7`>$nVbzUr->>$}idK`~2{)-D~vcoS&DLy6V7E z!&|5u`Va3f)yc4%+i`(;>sxW3WUtHZx9p*V&%8|PSqWii(aFU<#t38g>*5lX4G-p7 z>%qR*+?BG?f{LR4TI<({^iLcpZ}#urfi88N*JZekyiL$$XmRFF>++?Xn9BnlvFatl zY0b_V@Y<}51qD%v4iC~@F;>tES3+ig+6jaf2m!`{bYpS!ykt0PmaJ5;&` zp49kk=s0^0o>X7i=&Y7kS$E>AJN*@mH}m^%sCAXEZ;Z>YMlAF)eNhU7sU&e796Vhd z9H#d+Xh+N0nn7RN=xLPf;Zx|eT0hdjtJyO*&|qG8)@tJhd#-uq)6F9-HX$wP1=SSo zG7Zf*<74{h>$S9M?SzN3Qw|>7b7W^$)K}gib9xf5yrB%`Hg0{XVqfu-Zv{uylXPY6 z%5En5{A&27IrizHMqa7k#^5UsB=^0p-H|pV!yS6Gb?C;O?~UBxV~*X_qQ%C;@ZqaP zg_8R#^()E?4Dt+}^+MCfG6u@82y^mcR zB9Ydv{i|X-dpa9_t9ct+Oh3OY^M$x_^oZ&RbPrmMVkkF#&NQEv9I+hP(kO+l~G>ne)XLuqUgklguL=(|ilv5Np5|6aj zMp%j2!8C8jHB%DM866oSm5OK>j7%m&%Lr(pn1jJlsZf908<>Jp+~D`HKA4-_q9|wPM4<3@x*vE?*RF7eyci6cqmUIL zpPq{&9VyRGV+&baHf{2dMIhtYEIf+91aK%KmI9!d6f6$K0zej#L?GZnfG|VKMIey^ z0v0Hjg2d5WNC$6eNhac$SQM5Cl2AmFB^yP>k}Xk|WNa{nM7AX2@x&Pt9%3%kl>l$% ztmIN`NQ#0Z6Yx|v1w|nRL$e9C3`PMYDhov>ld&M1#RNzsszQp*qOB2%`2e(>Tt2`7 zF(Ls+VUPo-*?GFqk$5!r{fH+IkOo5m&^5pnu!SwUoR$+O9efX7vs5C}!%(g48n1R{-uMPjCk#mKMe>1wSo|G~pb z;V@$pfZ`^{pv?u^t1$02t0`V`grD#=wGN*!10=0X@=<)1xRkg)ioi!XE4xdH>!S#K zl(VwC{%5$f-#_kv0_Y!*40@Qc>s`Qt9)#dbS7%4qg#3N@T=5=gWR_@cfCL89F_eE) zVA(kfpg~Qk3&TnCk*<~=5Px$a!Eu%R9J=WmN84iKp2MKh*P||$q6;C zDFj1=5?oX|l&((x1%HA#h=ceO{0p62#X;1iL&3B`$Yl|nOwv)(u5pk`iuCSsq7LR+ z@8x^n`|k2xfSQ_`nmu&_O z;(ri7AK+IzkmoZbX^JFG5%?OsL9$>P_!>r|(Wka5ORsLX*D1=AkPuxMw5&HNMK}(H zuc7o2G&d~n`uxq9O>+Q{G6w|Daktk|{tvjhzEv9xH5fJjj(6+-b)MRK(K-MC002ov JPDHLkV1i+$xwZfR delta 372 zcmV-)0gL{)1C9fbBYy!^Nkl0~zI^;6(-!Z>HDhwY6>;isA+loLo969Uw=;XQuN z0gs-#mJm-FQ=S9q?{Yv$cHZv`1FAGl6R(Q}p2M(EL+Ly)Af(cHKqjuy{0X)hCvP-- SZK0e10000Px$jY&j7R9J=WmN84iKorOS6{nc2O(N8| zrcf*uI-Xhw@k`WC;ZQn=gZLpV{Tkw6)wN*SBILRVP9~SprYS9jI7M1YFPG5bl0Rg4 zcaQh~-3#11AXBDHnf_Thk)(2^6s9%kTOVAHSb%b+6jrOpsejD7-S=3C-8l2pvy)Wj zuP<*<)jSyUxOr;<%9T>6s(DbGCN^ixgR16*a=9HaizWbo+7w6ohulJg?=P4|6T#RA zV;(eJhwC`$0iqL7n?jZ)eE#rTDa#V5O<@=X;nQ;g77I5Uw?f74?r$LN$-?GB005wC z8Z=$!<_w3!M1RJK02WoN)mGLzoen0GNh*LH(L_QB2qBoy=PMr}B$YXkpaawCbSbW1 z)uAW~MxzlFMcF>UY&KhpTMwUY4?CQXrRq##N(J++lDy%6U)}^VKtn@A!++;Q zXVLv=w5byA2Z1vGOs6@uZKUgUspe+84FDUJ#A&J218{T!<$o6BY)5(=f%9&+QaFp_ zdIVnP^GX6bC7o83O;A6Ft&sZFzWf%Z}cg}w=kducM$NJTXGa+`Q zYZCx~hw&HyK)wm*Tgk`CL_1SkARj9s1P*of>Jf`T2m$9@uB}y|*nDt3*sJAI5sS)1 zmJ=xAx-OC=fpukBNRmX}JJiA5&G0Y+`5vcf3eWQZ0AU!yG)+vOrT~E1^9+IS*DsI> zAsY;Dci(Wymxx#-1v4SEzXRp(vQO#es@IbOy0i=fZ;J(98T+w^)_I^$X{Gaks(C}h apWqXPx$b4f%&R9J=WmN84iKp2K!!RfrYNrYP0 z6oMf_hh|W55PwT&htfeD#9xr#A`YSsSqj<ND=8)5F-NDudR#YWHMstKUQ$oq=49o`E#YFq_Xo2tmK!Up+6*i?M$WV0Uc{M;D+}USXPMt3PKhA(GN= zsQd}qdmZWfyk}&K6aWyhsMH)NX~$>hr?u|^cenRScNq;WEv+vvWq?T844A|K0000< KMNUMnLSTYAE4ZBi delta 345 zcmV-f0jB=B1M>oqBYy!pNkltL zu8aB0a_RKH^0{0_5ue*_tIKc3V}P9t;<;XVv)Eu+Yu-AyI{e5}{@n@UrzM0XBJV&Dv~tX$+e@ rclLR`2OgyC^d5Lq%FBPyptI@=>+5Td*aUk!00000NkvXXu0mjf0>r0$ diff --git a/Resources/Textures/Objects/Storage/boxicons.rsi/box_of_doom.png b/Resources/Textures/Objects/Storage/boxicons.rsi/box_of_doom.png index 89ecc16cde473cb15baf1fdfb384d501227138ef..2f7f9eabf0e439965836fdb5745c2fbc8a712b7e 100644 GIT binary patch delta 393 zcmV;40e1e81EK?vBYyw^b5ch_0Itp)=>Px$TuDShR9J=Wmb-4kFc^iuN{tLd1cFSl zWHBO+BdWr>VLA_lq?OQ^+mQmQUKizE5O=kuTV0zpARLI125 zACpq*+BM*CI9M~B07|LrWHRX#zT54b5U;NA>2%sDe7oI}B!3BISz3J$0hChLIF8Bl zymh$Nnj}fQyw(axDFMjyoR7=JI?y7DkWy0DHCk)>{XXaOxjR4{$0l3|!J81)fy9@0 zJRX~OePpcwfDnTDeC{>aYPF)*>v@NJ0RRjJ1BSz))l(EjtKe1uH?7xe0Maz2C<@bN zS;ocjk30n+%YQQSJQ|Je+OF~jcr^PoO@9U94e%GUZv_C~tMC)t(*c^Mp{gpXsxs?a zYkjxY_xru^J{>?x$#S_wI5wiDY0S=fQ(2bI)6n}9yq`|i{zVi4P}em8$K%l%4vyn^ nHk)<62W&PQue(N2P|znRRDJk+VDJzC0000L2Ll0Dt$oM%Q(32hizsDut(M zS`R=NhLr$xqy&&s((QHuuq=zG)#|GMt=}ila{!Vg`8~i%r?70Zx$2YKEkFTX8vwv` zI0V4%^)7zT;+QG$Jeg=`Y6A!%09emvtbxbD006`D*d6!C1MtymA%rM?Lu~+X=-eKS ze#{%5_vI-QSa22qD7rN~4>=weEAhTq03a>^)&`KpG4@%v=f%WvK8xd00NPivl=5PM zT^N2F=UyEtSHLt)EXx88yZc3P3}4%A;BaS{rl|zbdJp)%U+F!tTrRcp8#TJAJ^_;u VXZ*s>Ni6^X002ovPDHLkV1hRhtC|1+ diff --git a/Resources/Textures/Objects/Storage/boxicons.rsi/circuit.png b/Resources/Textures/Objects/Storage/boxicons.rsi/circuit.png index f7c448ee77106076959452fa88d14f382ef57587..357b0c15bfd080d2a1a96e4451b39e79aab1d050 100644 GIT binary patch delta 439 zcmV;o0Z9IY1JDDIBYyw^b5ch_0Itp)=>Px$ib+I4R9J=Wmd#4TKoo_KU^j8rokXa0 zn?kWv=+Ym$5XHPk-@rvFC;=?SNS@0RYTlSejpyF4TT`hFLHX ziU6GZ&m~;nRKOetLNq+R$y-T?2Ies2^Eu_}r2tJW!C(Ngi=8&fivZ%S?s|M@t%+yp8rDk}av zhDy;{w;SgPzZnjt`RgjpZOh_gI@M~v*=PX7GKn><)D=*=fPeHAq|8TJj=*laoh#h+ zykZ1yN26QPx$rAb6VR9J=WmOo1ZVI0RlMG)9c4W0&N zV<$<6LE)6qP`v=@U1Up`I7CBOOD~|UF`AmHA*?9~N~Q2@2qH@Fxu78~rO76x2Jat6 z%YCQg?)&_{pXU$vd%%}3U%viXeNIejJl66WP`bUd%&-Me@ayXvTZjR> z@Z|iQr|^ryC9)hu2*c9X6+n&0TCyBOt7xvng)oripd+v43Mf$p0Ii}iH8O5ls9bwO zi7GTcO@uHAg~RCex_5x~477@dBn5cuQ+@b09310SHZ3T+L{jzqh>O^)@lH}y*#ioCUf{K zXf~UF4*;;UyW4qQ@)Y@7{cZ>7iB-~j`{;?)9>jY9$fqXB9^I2qP4)!9)fN*V-v9sr07*qo IM6N<$f6IDq4l&jqmm#bI}V(Lh9-x`z`>;@ zXeo3G=`T|Pkno#&-8X+xrn#o7ybp&{HD8X!0Bk>rg@371e}Pb7?gG9`=rCHU z`3S77t_BL%4P!O}_l-s%0U3M+EFsuTB;2#6s_wgucpQLkujf9~4TGqn0Ptd(KNoOt z!n|YsYQ&ZhW70Dd05~ZYxjQ`o;4PJPpRY6@IeXACN0L{ynslbLfHPKrEoF(LQi<1o zAAoMNHJzHJQr8vKB zQqH9&*2p0J2`nMpb4Ps8$*!{l9Jg%tL}aYFC4}@I_+A*&nr3e&lVbuhL=}ZryUnw% qf7?UqMwHgHKsO@4<{=?}f=?3ibuE6Dba?;(002ovP6b4+LSTYid$NZB diff --git a/Resources/Textures/Objects/Storage/boxicons.rsi/donk_kit.png b/Resources/Textures/Objects/Storage/boxicons.rsi/donk_kit.png index 615408735d1245bec2ce6424964f5d798f4b11ef..191dd727ab88b2154fbf600b4347752794839693 100644 GIT binary patch delta 513 zcmV+c0{;EY1DXVoBYyw^b5ch_0Itp)=>Px$)Ja4^R9J=Wma%HvKpcm^8Vy3eI*YKP zK1uF@`* zE~24}ew%cE-S^!|=zmbBPMtdcIrnsm`ay496>u^7P{=41=zj;j^})e@CHUFdd8vd^ z27h+=v=aRE-FqCTO%%n2b$=D;2fel9vIA=<2Y@t+QJ?1d=G$d8uDc4LE%K> zZ(s0yk7X)}qL^*hWj>o#7syu-PD6yS_>>fHr4Sb3G^E?z)n0v}z@HQEPd;i*cK-Mg zR#RxhwFCf!VSjLG%mHwfjWB*cmfwGvZQlxWlB&!W@aNJ;~6ocai$tvS2y{-h;7I2k~j90Xpo9mVkym;B7B?PS| z$asaT>^l@NO=<_+nfNhmv-D^n6hH9PswdQ0uHwr%s)p>LR2hf^P^K00000NkvXXu0mjf D-FNx5 delta 436 zcmV;l0Zaax1kD4GBYy#uNklYU7)OsKL#Q!Qo52gVQgL!9rTPYfyJHt$ zzz6Udd;nj-rIUz*i{KN8QnFSo*g`^S69}oMm|BOLwt|qPwsbIO$)9`k`wlnXg$oG@ z3ICmyD3eYqmEkPmm(^-$z7(Z+saT}b?ZzsuWwQXoFo{&G)PDt#2rOM7vK_gRx9Tz}uEythuikftt~<6kgWfdH#F!0C?)9-gK!JdeZE6i(mA>J8$?#S;*o zhTHC=u8y8nMdA2NMO75kRdCyVgr_Y~K$a1n#*^No^ZtS3x?G<-IIhc+-a~jALY5aJ zVA=K$iPy#(_ZOcCSsq=diU)I}5V{KtbJA2-LQIVmXf1>Y8>Sg55a~p;UnMCyyv~C^Px$gh@m}R9J=WmN84iKp2K!#lfC8=Mph# zI;K!86}qZ)DE$?JtG_@T#6kQQf`3AB5EYyXwJk!fi`dB|#Yxh1jDw_9v6oAvy443W&loC9@i?@7qw3OmBZ1AYrvo__c9DrXyGcsXGvc5j@|A=leg_yWQ>=ZC2(E ziDs)2&%T6|lGLEHdfhP4@AXrsq4XUvt)j4=%#3Ip0xE!%Igm1ro2^Fff57$CjnrR5 bp-_APKCg8Qn0@=p00000NkvXXu0mjf@{-9= delta 361 zcmV-v0ha#C1A_yQBYy!(Nkl1wzT)@O-LaDTiSP&sM8R#OL9-vv| zELr3N*<=wAy2vpKA~adF*iDub=LE%WR1B3mT1yI@XC;20-~0N`hywzROq@5G`U{-gKGZ%X>RDP!Px$kx4{BR9J=Wmd{E8Q543%qSZ8uAecXb zO|%<95;GSOR3v1Aj}Qbsg9~vHEuwcwf}nS>f}+}*r4r0_6SQjnfFLoBOIwWy;=OkU zqs@HFGau*o-E(2i1tLX?6zQKe$74#Rlf$rp*82yQ!3>Z}Cx3_8>_#Yfz5d1wvA}}w z?(KwvKR>-dmL=G>L-kD!kV+?qvMhlZBrx2z9mul8<)uzQPv`&uVi2syR;i8J-(S!Z zI=sFM+jgL+DlF3sAHY8WF$hFaz~>Krl%gnr7zCOY=RQ3(zve- zU|JST%VIWjU2paQ^n{Lbr36tFm~j8k>C3hq<~HQMf;aezM*Z&Z46pA30NSlK6Am!e o@xkGK=y$;V?IYJ)BT}SDzXpto0b5WkaR2}S07*qoM6N<$f`lf?z5oCK delta 359 zcmV-t0hs>R1AzmOBYy!%Nkl0ix`|k&^PH;C=S^~q>E$5 zj9EHJw+unZ7I5fe2q8lziA$jwZ0;k}!RDgSnwuEO;Qgj>a`^AZ$st_OXf&Gt&XG#f z&1AA|5*~zMWqwcPaLY7#-)w3fel{2YY^x-WYo-1HoeNZcf`5|TNV^d@AB`G?$4SzT z!1Hq1NI->3fkFr_4MRR#rYYZD42J-`tyZ!YCkdzhJ^-&-_IrVnGVJSE_l>v^;+u49 z0swcj834wC@N6gfIG-zLDhrfj^?m=xKHIisZ>s|3;pXiV0LfyC>$(6qjw9>-V#-NR zJ+|?WC{5E^^Px$XGugsR9J=WmN84iKp2K!#VOw0Btorg z3dK;5t||`V4{|6S#6kQK{UPEY>RPI45OQ4vCzH!q(sZoT6;tcoCA7NSyM_C>=lKqD z-vK5jCMN%!EuA92-I`Ygj9%ZQ45fhIZp}NLqe}3>;6*91qkn>*oE}$#KRrIfwrk)# zmDc?#;I~_I+pd8{tTdeS6t-Q{s+FFA*Yp4YEMhp^JCJS^ety7fddR04I8WiYE|NH| zE+9H!5d$F>-Y4>-B*X%X7#fYbcK1?&?;H2J*IJw1++M-jCE9Q;0RV6v2afA5zA2>` z4u^%B@pxPcEPt|HrkGN?fKy5fYqQyGvjWRquaelPfB*`Kb-+sr2#HlvePl3I7xo2_4|DUK~Sh&yMWj9(CuA<5KAd4ZcY)-Q{^<&x(5KDzTc3piOTiA>9HA~Iv}(yqtaLEnlF~eW@8dOr0uG16@$YmfMa#vaunFJo_uBj( zrFj?xxZUqY%}2u_02Dfju2Jd_Xk9@22_(;vwj(g{Jge|HNq?FVI2?~w0u;0Yxe%E7 zzIqOWKPx$gh@m}R9J=WmOo3wKp2OAic`$oBtor| zkV3Im$f}Kl_$6HX2^>l*A}UV(0IvNK;^0-+f~G~t6+v(^xr~ywW1LbHZSHbZT<*6e zd3m4b{*XIBMMXvBpR*)VRIODKS-{}wIg`N^sMacpF537G>7W6{yxKiD48#eVQB2SOmi;2-RlJfL*o$0Mw`0THDBMG<<)9UA8e9$6zdi zX;}z^Kwcmn0re?#UBl}~_EhS+2I^CkN=4z(X9|36+-jZ)HM_hzg|?~-!-WI@z%osk zmi6tO>$(5{LVpMVU^E)#0_PI=4eWHu?3oaP>2xY3u$&j}bP2r86I@^Pq=3=_DLe%? z+I94g+}RTRxj>pmyN>Ob^M$~H9D9He@?+yIB3ywuo*)QA1Yw9yrvm`+Ja2C8!UgQI zjb`f@x~_3W(?4e##v<-%D7*y4^-|{d^vsxyV*tQ#Fe>E20nTxJaJVmh54gR#6S`}t bsHl7bf#`-{>h3={00000NkvXXu0mjfJZ{Pr delta 366 zcmV-!0g?X71Be5VBYy!;NklB;MPGpxVdx|?AYB!2$|&^EHsGCL05-5*o2lUcNbeac+V7aAMf|@&=(V>B{qzE`UOOjHt^MyV@c?SBHwPmnVm>3ReXT(?ws zoFvN;cQT^=Q!5Nw^-K77f{`8X6xUCjsO4v M07*qoM6N<$g7zA*y#N3J diff --git a/Resources/Textures/Objects/Storage/boxicons.rsi/latex.png b/Resources/Textures/Objects/Storage/boxicons.rsi/latex.png index ae5d788f8c68c7f7af27f2160d9f2d849649010e..3f27c888ec0233b5c3371489ba0bf16610a2b47e 100644 GIT binary patch delta 512 zcmV+b0{{Jq1DOPnBYyw^b5ch_0Itp)=>Px$(@8`@R9J=WmN9SIKp2LfR++HHh;da) zS0hjml>%E^b+9@ySxo$d)Kewm3{{7^%+0Ux$W$Rwwb@LR)IpUn3sR?GGa>>boosc9 zZLFd$ewUNJ`}Dofo$l^C$doBlrvI!*Ns{V~+AgiZ?ayD49)Ga_^+s)Xa`GaT`PJ1; zEW}Zq`K#A2QC8-x4G{xk)%SR+{hhJDhdGZ)aCfe z^T5CjB42;=Q`JA^nGz?X{)I-L%q(I|`!heNvEF4s5Lv|263H&j1)}yv6rx!G0000YCZq$pC);3IVC!UY(5 zmJVEir9-9;oji9zLW&}xE;uY5X`CCBrLhQ9#0jm6MBb9fvHtJnx1$(ZT3TBEJ7+GF z?#AP7lj4uFS!MkTm+&wMc;9Slg(MZ6BN`cH6ZiKM+VG!77*S#J9Z|k)ki<5+o=K=7VroR^`D2jb<>%JCe#+0NF zCIE0hnE)V!KqPx$gGod|R9J=Wma$61Kpe(DTc?=0NeVTt zDHLmkPJ)VqNS8i=Z{bi{5TW9G_yk#`IEV^PMNLZ~*F_KnlM7CgHdC#O5sP?ty;fcF zZI}D<|9*EN_dg&}qC|=QSqmbjVyQ5e4d~qWm>FDvVyQ4Lmw(r#!rSdTF2o`)d~17C zD*Wp58k&{?r2*6TBS5iK7;9Pv#3fUQQyM_iGD2SF4p?~$06<)V)$9thQ1|%}R^GyJ z5Q5SGx?#ZgJb8e41;iy#RRs^P?5$K)1;iyV&7AP+nE+o4*K0>Y#g0!7p)9Gw;X(ia zVCXt@!(e*){eS*c!Ld>@FWJpB>}Go6SrkQo17J7PsP0#=v6lJ<@#_F_c&vFqNPU8r zUTdaMX@F{D1pD;tbA02xq1qVD1i<|Z!f*)B_u=_I0Klx=;^||~%mR+%OnB!GVC5~; z>IYC&g$o*=oUtekxZP0b8~}javdNr}d&Y1O0sy+5E-5!0;I!l2y&dU$z?@9fzW z4F`jyNb|{bYV5yn6D~ZD)q0&P{IJymNK6uqTwN<*=K{uCpnuqmbT(@|?bvt}9b6Lz>eXiD2ZK(oT;g`b;&d(Z|5|s#~!xd?X z$^@d+Q@wh+Gf~!*CJ;-h1G@c?o5|<5;r{WBZa>uFs@4YM@3JREa_YLdn!?9}_#B2j q`2LR>R{MdT5QX*wrtq4YKfya;!fL72r+kqB0000Px$mPtfGR9J=WmO)DbK^TVLveUM=z}<;# zyRIOqfpiEeJctP5FYwZD=nw@F82yU=gE#3A6-b0sD#DJJASBY2PO<7Kw?nM0kh8M` z(q-S%F7q+ZGat)-0|W^YB*;H!fu|^*jM<`q#&e6w@DzwAV}EukwIu|v)t)>hmb~D5 z`@2H$+nYNmN*JcuXV%RWh$myVqJ%*W>KksFeJDzptCraTJ*oo$s6ny0y20G2`Thz$ zs$)2?V48iXgrL{$iVHX=paz93OL+NYw^EiRP=i9#BHX8E3b;2uK04#t?EK;s(z47A z=Mn$_qN-2{VSm=N+ihQ9CyRcH%cT&?rO=;iqtQr6fU5%zyim;jKA(IE0fht}F4s^f z=J3&~004Fpi_;RFJQ6E&6quP#9snj{Kz2R?+XrtbySh-VkEc3Pt&e?!xdkk1h;FYp zd3Rur2molg$Di8!L*D{3heRfuw%vb1S(ZFS-SsLVXgoHWp3{)~8;GoH%ynmG3HPAdiz`y@@;bH2Xc+xN8TfrNyF zg#XTtN>Q`XSj7?V_IgtNU6tmBuH($-k(%eSS%8(yL@JW%FMqIg1JWfB_>peMz+Ryc zOWd;U%^0{h%~%FhkQ#73kAq?{I5%`XnA^|i0eGFwf-%ds$!Hn?FVpGI4G4tTdaR#C z?0R0v^u`PTT(w#NEQU1zD)mWde(IaN?sSwjl|Mrf>ta~rqWOM2-t&o zLmK(25b>|tqs85n*aa+07*qoM6N<$f`nSV=>Px# diff --git a/Resources/Textures/Objects/Storage/boxicons.rsi/lighttube.png b/Resources/Textures/Objects/Storage/boxicons.rsi/lighttube.png index b257bd68e5ce7cfe1d734a4a364d6fd5ee57062c..b4b94775c1d672c3c5d9542a35bd46cd09c76269 100644 GIT binary patch delta 440 zcmV;p0Z0Ce1JMJJBYyw^b5ch_0Itp)=>Px$i%CR5R9J=WmOo3wP!vZ`wNnjrYZ5`@ z;*d(QRB%;s5C=tY?WYh_q=n)jehVkRfrB`R3QmIkgP6Do;-DsW5J@wsb&yJj_T?oi zF8QtRa?g2}kozD`oH%j*ISHAfd?DA43aD4Fgp5Fed?DAKo`0T-1i!er43tO)!Dr`Y zBEe5j&QR41j^hgJ`U>O=xwfiiuq`_@+;Ln~H6v9koPe1%0kAEb$>A|!qsGG>X4b@S zc{q-Xrt3UCK1LVl+`zVM6eY#&t9X=(lESuZ3}Zz4_CkT~#-*)osb)L76;eZrG+asm zK-V-hUGIH(zkkg0<^k6?!1z)qxU@h&FhKL_kVG-b#Qqz+hi?;JpbHFeUi$#R*r>v8 zpx(jX*dAtmB2n`N;2p iqr+pVw?>>eaXtZTt%QKR_ArtF0000Nklp+`m-n+foH1N&A1Y@m3;1JQEw2^208F0m(b{<$H*<=bp1#0p z`EoJ9!_x-<2Wpou(Ce*7AhP(_jT;qTK)={$(#}T~4;6NPA^}eboH1}dXLgheU9n&8 z2@&iW8PeZn(=->2dL2&)Raf9^(>kupqh&>QD4hqIrkUtGAS=(v_!E2rjP7renhXg< P00000NkvXXu0mjf`KhAG diff --git a/Resources/Textures/Objects/Storage/boxicons.rsi/meson.png b/Resources/Textures/Objects/Storage/boxicons.rsi/meson.png index a124ba5d967cc4fb82a7b750d84f0191646fecd5..ba5fc1ad8c9aa667802e38bce346cca1480daafc 100644 GIT binary patch delta 416 zcmV;R0bl-)1Gxi`BYyw^b5ch_0Itp)=>Px$b4f%&R9J=Wmc2^@F&M@l#p%p^A408T zuh3d5bXDn~{vWqGDwGc5AVP8N-_kl1buDN=giE0aPTu84xn9RQohY118d_ZPn?myD zeV)98ya6;Cjpm=(kO`_(OAA$j;ma#mLujBQfM6;O&!NN(mtsQ0Kgs2Gv_;XAB92zp69LCKs25L09xfPF2|?8*4phh z27|$R4YbPL%rSaOy5Fqq4yYomKpZCs!Vp0i3X{cgvU&q<(M6+q0YVI+c=~dtFct~B zq4XWd?dG}bY0pSzF#upR90|n%K|4M)1CIlcBYy!_NklNmhxX8%=Z&L4bjQVLBomP~8EblnrwPaw3GK z19Y{-rUQZwc>dxA+%Qs7H^>nny@UW!?Ezy01G3r!XD?hJ%KT9<3I+}^FfafBFXwug T+X)MX00000NkvXXu0mjf@QPx$ZAnByR9J=Wma$61P!xv0h*QkmBtorg z3dNE@SCtN>&){pgh=VwYOJ75L1aS~`Ewr=7EOMZNKQu@~@RjSlCBNJGDQ5EkzhX4Qo07*qoM6N<$ Ef_5>&+yDRo delta 356 zcmV-q0h|7_1O5V#BYy!!NklU;zN` zCldgIAOIkWA^?<90EA%(z{7m*tmz!U)GA6VGsXrX1X^o5*M(Z&0b_1fUdD_G$Lbpe zFes&%ZBlzb+g+r4Z5$q6!4awKJO zI~>*$g^x}9vRd&R$3J>Fod-rzHaZVfnYXn33ElyAlW!M7eZz480000=Z8BYyw^b5ch_0Itp)=>Px$fk{L`R9J=WmN84iKp2K!#VKZP5~0RT zQYh96T~!3drBmr25r@)297KPCe?cgnx`>0QYeCy0YeqtCI5SOGjr!<6NWQ1aw6>xG60D!mz8!KzfM7{SnI5`L7 zQ3Ogun3jdW_vHbS84#C1*EPHj*`?HV4a6m|?X2+ZnE;;?*K4Oj$#Qr*flXFn3 zA4AtQE@<-SOhjqO?S{fjkX^Nz-;<`P4fH2LYx1{quy+CN6@Ms-mhMMj=(??vM{(SZ zz|(TsO27oIKqe(;o>#5|-!IQj2Lk}!*6VUFieq|?1HfyVZZDuv$$qxAs>PXb-N25}}l%C`8vRd&R pMYT1I-UH(xX!Rb@6}MRa1YhOzU)Y^YDx&}Z002ovPDHLkV1m=grDXsB diff --git a/Resources/Textures/Objects/Storage/boxicons.rsi/pillbox.png b/Resources/Textures/Objects/Storage/boxicons.rsi/pillbox.png index bde84ad2b35b70d539bc08d07df55950e3163d20..408ade8fad57546bac4254192e5c960d24b4cda8 100644 GIT binary patch delta 452 zcmV;#0XzPP1Kk6VBYyw^b5ch_0Itp)=>Px$mq|oHR9J=WmN84iKp2K!i*$&Yn?$H} z>5xKcsUS3qii7wII$3ab(8Zy25C`#hbk<1+aS-cLp-|gW%@w2|QcSL!lB8~RkQ5c0 zT(4r6JY(|Rz0Z9Yat8zi1O!Z(8J41SCOO~@Xxz0tGkgWonSbP9d3lK|yjrdKO3eC& zudc0dg_o~yAW0EW+ViX%DUi-22a*&4(aG51l=dJ=5vE$t4yXwg06=tt)cm67M9r5c zs0kI0ZGqArWJQ5#82ke63W!c1iUK-s-mMfx0YoQ=#iGos_Z0X#aj|g7G}+Pd0fae` zIh;uV02En-GAu_Rj^>go;9OAEGFXtT{VBg=IOzKc@?&Jw4ykkohBwF2p?FyJv=DTL6G& uqv;zC_#DR@o9o>7fXj<3rn^Q!K)?sNh<`>2H#2 zr0CXhk}}~Bo|l`yZ?d^Lpe?aX5xqqJ^BW-Ct0;j!Rsc=6C zsu6e^jYC!@Hv_2Ykm-L&~5|pA?5A@8ClqJTQ{{hR%%7M zG68@)*9AZbLBHSE*P|$6KA$5~$@}5ZIMY}lYpY1#EQ+GF8X*KyN?lv2!1Cq*E%%tW z_r?183!InnT4zn=0-HE_9OLZpe4#&~+%VPOHv_z@!Pc5>7Px$aY;l$R9J=Wmc35HFcgJP5L58n{79v& zsT2_v)D;i|;wADH3{?ljfOwC-1Y$tIS{2#~Dei*ARL2=nnv7u~h@sf7X~p7ia+I5U zj<2tB4Hygt!#`uG1Vx>&(iNDzyb3j>2BJ<_b-M>z;=|#y)PKabO#JxdNK5?j;R%k@ z0Oy%7?pFg*C#)Q&0h-X2#W~O5I1Qy(VFiMA005u~#lF8MOf;RpBWMRG7CAW2;CdcX z#`F!;JD>>#AvWGV#HA#}22Chht)}wsg$8~m?)R>gl3m|i!rmdu;z|Ypz;j)=o+pf% z&1NeJ*KBEhwSR=NEH`Vw_kF-RL>$N8>-ss4V=Zw&@dyBbF$UiQ=7SL|%Yy%PBJ;rr z05BepH*27(s-^3{vbG-3MOuM8FTm0iEKQ}!^1N8TfuJ3r*S`QEwp6_SbJlR4NvEN5 z4>WgM!uR#eC>A*YU^&1CIlcBYy!_NklNmhxX8%=~8GLP+VLL=Yudv4Jm-65CFyT&6_td#F54B5s~td0nrWsrEHi5$cYdZ z|LAIoO$P)W@chLKxM8HEZjd8DdIPx$R!KxbR9J=WmOo3xFc^n_ic`(pKf+np z7K)|Httt-U_qc*|cQ|ek2k}GPeGhREbv;n72u&Bk$u=FO*R@Us5lqsY;*#IkyySWE zCNu$bbaZt7IcqXSVHC8gfW`9*mmw4gqo5rQ_mtrC`IAs$Lw^K6JUUQ{m zaqE5*2&162EE6=Nz2S^iuq;!mmfHc(_W%GiquAZr;ZBskzrpi8G|L){Rj?fgWl^XL zbSt141tA7rKlrUA!~o4GTz4S7dal6Ni6`SrsmZRcFJNpEX}FXC064Y{+i|!xd7k$I z_YwerIF7mFNqdqg39R=io=vAx-}*$l16|I(0cR`W6$JKI1g<175}boS5vc11MOjK6 zvbt`5U%>M{j3?(H#1O)}KW7)lD&cJ?y#<49mpk6w8O^c=0Hljl2nPh$@yY42@;l)6 g=1%IZp`)Yo36yeW2^@bb)Bpeg07*qoM6N<$f~2LbP5=M^ delta 327 zcmV-N0l5C01K|RYBYy!XNklb;z6o!9LFF@%CLXA2{k=jcj^#UwhAj2ED zK(D~S1z4Do8s!v~qRiFnf<%TA9|0C@;R?wwCRGOfO_BZbzb`Ky3NSY^cjNikdQS+za5CD!YiGHKhf1q;#=P%HlM}OLlz+^o33NOmC9f56@ zc?n2x3e-yBC5p^*631rmc{Bn5{OopSttd-84h8^#Z|2(tG&<~Ztk*_dD`iQyCIA2_ z5h6!0Gh?+}iZjImdaMf~eC9dcr&DWRucbt$wp9TD*4KaJxh-&|rgec!-h5xYMSz)+ z5&?h4uSto(fPx$XGugsR9J=Wmc2{EKp4iK6sPp&d!KggkU5C`#35(iP&(ock(i{NB(86{1}xOg<6y}KM0mwO-(?%v$*dEX=V z9$;i-Wc1InRD!y_xY7kIW-mg9)IhfvSA#)c3qBrCr6%@d@PCujV=eg8<1<{>0b{u^ zZmWTAFRonI0ZnLQIAb|n*HMZURv?T*002!Wj`k0Q3oSq15k?`(RRP9wc)pJ;P4x}% z3}`|@h>f>TaVZJ0K@*A~=qP6|G*Dl7G`vUbbs?qzW>gu53JW~EdxpwsKY0EN5WPqSD;?*CUY_=SD@}FCDJTInq`=^#F-XFxqAa)6k<5K1R=K6C_g#57|W&IP9p~qf1(+&>{wxDujcs9sCjwSsb!D z^s{7e&CsQDhwdG^3L&6f{yQf+ ziyoq=unC_`r^@^@o#G@6@v+?+6~E|q0iaMxoEoM60!J56zJG$6s-?#fxa{|>!m~VY zM_@LeTM6i(6kwd=Itau)2}3b=)$0KO-q&j}mgPA*o(BMUqx9zjHFcQW)%5)7A@*hBjbWLAkwEIxste6i%K|{N4_X&soFiHS6cn-4XIbWMS?&XtaP57d{9O(S zDQ*V?FwS*d0hAl@WwpX{mVH}8>pUPx$nMp)JR9J=WmOoFzKp4g!jSKaf7)fYP zgJms-K+v!-sBs`}ehC+M2f{!c2;acP4`LjQx{@dmW6OYvll?Q=qwR)+0bRUa8;DDv z@$Sw0{O-+r_a2ZcRjO3~tQC=@RH~(Et$((c$h_BkiiB8;GCw>z zNM!zS{|H6N!Esz}+@AoIYH6w{IhckS+uU(nC`wK!mRkY6r~?2@!$f(jz)dv#c!yrp z;ZGPG$AwBMY|BaxFgt;1m>@*L+b6%2gh((A6PlJ6K0O!Ucj8v_QYcxc+lI7Ggw2Hj z0D!70R7$xqqkqvTmT@cq0FViR#~3K3$Y!(i^)L)E9*+?O!EynJEJG#)TA_f~vvXiO z5A4@aK5ZbA$)H}ZV`EcV9su*ac?EW_uYT6U5J3>2-|wT-Z7&bNV+;Ub30$o>T3u+i z1d6NxV?Hd~hGpB4$r$q&51=Em w84iY#=0Lb-?pIA{ils_;nTpfmZNr0RSOHS**&$os{e6 zC+~6sS(f4ZK2Vlr9qmUl0)FNoTrAob$dzKXTmkwa%#|{p1FgU|P0O%4)152DHchqn pjNSu}uG{E6@FAs9eos%Qd;=XqWTBj!fpP!<002ovPDHLkV1f*{pyL1l diff --git a/Resources/Textures/Objects/Storage/boxicons.rsi/throwing_knives.png b/Resources/Textures/Objects/Storage/boxicons.rsi/throwing_knives.png index b2af7bce88436ed9b060cec8bd6f97019537caa9..ecb3efdf3e31688179b573e8cac6e137c83b40f1 100644 GIT binary patch delta 413 zcmV;O0b>5}3c~}CFnITc-2#EWKvUWWDD_KZ z3(1(RQ@4&SeF<-Qn1G=vbrKv(@nRf^MTTTaOpA#mi$E8BlQ^C4|2fW*0E59`_-8Iu zk{DwV2thB?Y5S99LG`1c^ZQ3T)jk$K@bE=#U_&p8jXgsxRLznTPbd0U|=rE42dX-@b$4u&d=3LOvz75)vL%Y z0PC`;umUo3Q%e#RDspr3imfVamB1>jfNYSkzLEl1NlCV?QiN}Sf^&XRs)CuGfu4bq z9hZWFf=y9MnpKdC8&o@xXRDM^Qc_^0uU}qXu2*iXmtT~wZ)j<0sc&GUZ)BtkRH0j3 znOBlnp_^B%3^4>|j!SBBa#3bMNoIbY0?6FNr2NtnTO}osMQ{LdXG${Mo`TY%9I!1Z z$@-}|sky0nCB^!NdWQPg^p#|$AzYYO3=Ixo!03ZyfZ7bOYV#~8Nj3q7lxqdhJy8Dv z9hwZbx40xlA4!3}k%57Qu7Q!Rk)=M|e?aHkq$FFFWR~Qlf&&ijA8-gd=9Hj{g4Bb8 zASV+PvQ{~XdFi%F6}l;@X^EvdB}#Tl`4#c`Y4Iuf`MEaw5QV4)Ktxf^wb94o1RIdY zts;X`i}Q0zK|yb4WM*Om4h|GiL?l3TL}1l{EQ+opAS1sdADF0$GLt>?N>Ymoihv0W zVk6W(+$zw`LRcP}msw(G1T_Fn7)cjW1X(#2m6YcfWru(x10^JJs)CvX300(Y3dscE z7y#x1J1!f2c#g8;T5vFZ7clEqd%8G=L~y$v&<~>y})k!b$Ij_*Boec?7c@H{qFghl3r*G!+?2O}8vz5m}+81h%=^c1PKS83O{n;1@QN}0Z7^Xpv`mc7*YUNB{2a+8@u z6VE;{x%R3Bx1%7%JU02a%^lN%F zE%jh-`3kPxCsNfyV%|*TT~Hz7n*90eUlmUe899+_S!k}&6*}S*Quc$Du?mypn?RQoOuZK{=k6;xQ!K#XyN7Ju|PyZWn zMDN`Biup!2tQbXXfBj=p>r*o7QRYk6np)zppMvt=Rf6n1)cS_o?!bBEpWVW zzxWC@_m8>zq*a)GFBhEM{dHDPx$qDe$SR9J=WmOo3wKp4g!MLNU`fkKl= zYhBY)ED<^h8cHdp-^E=V#Gwd&hpv7Fkt$KBU<>vSLT(ZqifsyoAZdzS;*^qNn_ME| zlHYW>_vN1F-aGOh5D^g(@y~3~B<1Ct9af;%dG*xrHISEcc7LI85K6q=e(^Q27OP#JgV|=O z#iyR)T;}j}{TxWxVUsp-(lNl5Vn61&QVf%hf!S>Kw*~;fXw0EB zlZ$VqnS{}phZ1(6Is!N9;Q+O-lg0SA1U8^FlM7+@I4psVfGfq81l7aA%6kz6-wK$f zh2dy~Y*m6YHJzzjqkAGJ&P?9JIfD8dy&cnmS zaQ74b@&Kd;q!#7~syP5;a7t1ZLv&RH!_u}DSj~mW&6zh1t2{PAqC)_rSzlkD;rNPE z3})Fn45y}EK`{?3w&Dr{FE1~OI3W&M1rf;d^jA)Bvq5Zh2f-x?Fh~jkWV2?9?PFLi zKLso_lVKmS6n{xQ|zyOF15+er?9Rgpzd}FwH@gg`E ztZ3WBaPQtd6#G^bZ(^{FFazfhkXm8^-o^sR5Kw~zmZxE50Y1Y)mLsdDN`nO1LRmTd z^#aI|qyVC#0NGGvHZF^ZQG-kGsQ73IjJyy40J0cyttzYTQ#b$s01jnXNoGw=04e|g b00;m8000000Mb*F00000NkvXXu0mjf`zEHM diff --git a/Resources/Textures/Objects/Storage/boxicons.rsi/vials.png b/Resources/Textures/Objects/Storage/boxicons.rsi/vials.png index 07a428bbb4a96bdcf89ea1945897ea100902a33b..4d8f9d19618712e18423f878405c90b4abf26c85 100644 GIT binary patch delta 418 zcmV;T0bTx_3&;bIFnmlK*gt`-2_9Ck#K@x-3hBKM z(3j{S9->3^k)lIXSD{RT9WOzrbQbI&>w2_9ta!+oaY(w%@ANS9GSBnQEIR{eG#br6 zlaMJYmI^afgV&cgu7@x{u~e9q%ZEzlozAl`#HPsn_@t_2{(t!J1j{nPSir4Y8lYGz z%q+_U_36syj0LbPQ>vD`176+(08pReU?;;}sQ38+FYh6mgkUUy?Kl_?2I>Lg4yaE- zh=KPpe=7+wKz$0=O-pyr4Y0UyyLBbC*!9gNj3kjZmkIy?j%~ws9Bxg&-(Sf%W<$2{ ztWiN_Kf6>n4~0DBALDo7mx0N8F8(LNtpT>T453~X;Sq#kgu!r#dM<@}E`@Hl`>T#?|2%+~_t0uzfDnF{VHnN-oH2|A z!rM^#BTVnQ-1+#OV M07*qoM6N<$f>5`_nE(I) literal 1436 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}e5nzhX}-P; zT0k}j5QD&_;K@Lev%n*=n1MlK76>znTPbd0U|?RB84^(v;p=0SoS&h?X&sHg;q@=(~U%$M(T(8_%FTW^V-_X+1Qs2Nx-^fT8s6w~6 zGOr}DLN~8i8Da>`9GBGM~RsBTId_|A5Z7NlCUU$t=l91qU45Kj08_%qc+?1*r!G zK~5$pWUX=%^U`gVDs)p)(-KQ_N|fx3jZ6$u%ng%tQ_|85bWM_tl5~M#oTzJLlwxX` zWSEkeY?^AL4>1ANWQZuLg*N(F+-3s`5v$0c)Z+Y{Qc#@O8JU^bfWrwz6cIZR9T8Y{ zAd8~w2*}7U$p@ykqReE^ypq(Sf+AqbgV+eQ54Q?*vk;bt=4F=H89@y|6Gqa76mwRN zMJ46=McEjLS{dAw-JdD3gX?CSylY!@6xYk!AAM&Jogqd^2_y2qsQG5#l(7*<`E9 z!DI3J%jP=9doivL6`yaL;1JdyZWu60gS~-=G4kBu!$%9g3;+AXu!L=i*fWk*mJBHc zUO{4tpAUR0e&(y}CF>!0QIR2N&HDA{C(M>O_uA@-k7_ zsUT#;n^d9wo^cz)k-Fs%IMcY5JB4$t0~9?K8H^%g9A_S!;4PBF-jU0Y+O62xtlFvK z!N)jZ=lp&Do22`@dBYtV9H%k=u((39JVk!{H!{(M6MvR;e5e_r$?qSDin8=F`NmCwEXjxX@!6itH4u+6z7RI ocjzd&@#^he{0JDvpPU#N9ClEX>4Tx04R~O5e0Pte@a#8zW@LMXGugs zR9J=WmOo3wKp2OAic`Efe}r1s6oR2bR}}~GGvsqPln%y0{3Q7d;vni;P#T0>AP7z- zm$9VDSf`X$@a~dYUG6s}ce&5&J)@iz0Dy233gLiYJ3hZSYkdy5zk856YpAHGd;y{~dPglZ S+B5(F002ov22Mn-LSTYCT)?0J literal 9482 zcmeHKdpuO>8$Sq9?xK>6skYFWyD>96Dwjf1-%9d>vv9c(a=%(5>vAUq8_MBm)b~o&A`~Cj-IrEu0@8x;E&-eMh&w1ZDF`f%u zbhIaG0|21o=IYEw?ilntS_Ao&MMOLYfKg=;-hOg66o!#V#R2?a7$aXTfiZA6KL7y2 z>sox5gqmB8?Fk%re$-S;{ZfdT5mr&!YICenP@ip7eAV}WapwABiS6eqQolFd=Zlty zC(evcy(}%G-*vNHEDG{Fw?FiP@y}iRqgySzqpB_Tt8K?QfHyo!JGxzF+pApS@)D?Qjbde z%P{M`fIFQi-3D(mkDvs6#-W>G8&S+#4sNbJtoN!Z z7Tfh$?@@TmweAy5Ez={Ly6)t4ZsJYwxO(bU{N?tVl;VPpGg%$^Cj?eSXVVq{SY@#I5w?*}@7 zsY9;g1Ve&8Ifk9?mpI0tJLqpk3Vl*j4^P{}K2cSq8iO96LL?-bWQ!uC9Tu`v;bW|N z48`3maI}!Z4d30aiu}Ie+jHlO>YmpJIBP{)Hf?@dHREPfV%CXl+rp|@OQR1gZPR?D zS8+=1MN;->KFfEr)1div0>`MY)t+8=`Tb#X8i{HoQbmeI`wZJ-zMHyfyD3;-=f5`D z+@Sgsr6z2Zv~?)=a4HrDAbGwaD;c8C3>Mvzgv3u|+&=E2ISj-;t&^=DICsYQ0T zo}R0eSXXa-PA>4+`JLMO9c`T=^H~$;fYHBZCtC=f&WWw@78LgYjr+)3W)TVQiJsHu zp9UNBKiT!^lS>B*%E8U1Z0Lp-#!qv6+2T0&JH;i>?$oxyC0-${PZ$1jMB=(bXO*Db zSorMv@%uZDSnM%nd(AA;YDs^YA6q2&rCwN>eM>7+bdZ(x)?CS=Aeo^8{5_c4-Z9MVR$L zQ7~2-+UgNE5=kd8cM2%6Q>wJoG3wH_&LR32stg|_J z@09JjT8~OIb5J^JY_OW?4Rcnb8ZK<@q3KIWQ(fARTNj^x*Yib&eWAs!m(nxO539B#2T%teIcWS?3m9Cn5C`$Z z92gfalpqHY05E5VOCYWQmSZ?@AYWvUZ7nFoV)#6JtgkJLz>+w@L44N;DeM)o(3=|} z;L>^6*|W5n;S2;o2+JW%xG-2GV}#pd6}SwfjSl0n7=?*kV2|}FA$Z(=e@TcmSdk8oi-&_@ zAz~^+q7vT;>Eg!n?Ds$=2;>VT3NJ+LcP!=nfVX13!wsELq%)8R;@*$@j+z^zWo3lL@jnCkTxqKc&(WFqgBpz(X0m+;I2&5400zeLpz(sxncr-f>#g0aU z2SB-rWO7Kvg;6L39LGm+sAL{Yq`(xAKn%0}4AKH92p1XwqLH`?C?1zFPb?Ke$a3<9 zP#}z#hyoQ8sNf6-Pd9rk2}gK4;u#Fd0}uz~8Q_a};xO6UDQ~_I_L4)WouHD84$NOhztsadj&=OdZ)NS zkSGvFp76esQjYWgV!7-fDuF|XxFCf@p@9@0F#tr;rGg}6xp;Ikl}aGmD$?jjmx%-9 zVUQGd2t+bPvO!8nkqu@>pO{wf+J^*OSza#{GXP)*I>XN zhse@9hU}flR*di8i~ICKE94_yeP#9$BOuTtL58L8h+HFb4NHMx8IM%gh+M-`U|7Z@ z)%CB*rTzA84i+JQ@WPOHwR=H1TaouX4UW5uGw=re96X;9kBn$ZT$jiIV2ly^RRNMy z#v_B8ayQmo&E~PAbtaBx+Ksvl0Qxp=&JNywS}GX*rdGsa00%70<O0sq=y{C-kO_o;^nakNqGCw+ hgOMDWA5q|=Dv(5#Y$)Hlbt4+YZSF$nOve@L{{Z4cg+l-U diff --git a/Resources/Textures/Objects/Storage/donkpocket.rsi/icon.png b/Resources/Textures/Objects/Storage/donkpocket.rsi/icon.png deleted file mode 100644 index c84d483006f82ba29d72845ff3f6fb0f2990a300..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 309 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyApt%it_KbruoDn)7ZRGJt-UQZ zb-up-v7VkdNy!{p*(7P{LV5W%b@d#1`D$h5Tz%m(W#x8t_3i-K`H@PMu2K_&NcZWMeadhfkZ{ ztZ(4>+59GVLP|sWB*sl5H{v~aGr3nixS-(OX#Jfn(v?qc*6y`2K<yy85}Sb4q9e E002f^@*0Z zuGYCT=Yuzd8eBAf@JQ#pkLF2+qMqIz7REuwmyNv?<~*8oWKxJiu%@c1y6}qSn-mN! ztqpBMJG+flH?NRbGPm1!t%jkw=n=CgL16`7iy5OC7$(@t*=ZJ>5(iqJ;OXKR;?bF$ zAi=6E#K9#g?GSOyt%)f@gkz_Lqo~AAi^O1sMN61M6BaFL@@*8{#K{&R!Vt?KYL;Md zY*~UxPg9`5hlZOGfdc!PM8#eIaLt)AhjZoup98!+KSX<)7#SD@-8tSIv3m0wXcvR0 LtDnm{r-UW|ATDeI diff --git a/Resources/Textures/Objects/Storage/donkpocket.rsi/inhand-right.png b/Resources/Textures/Objects/Storage/donkpocket.rsi/inhand-right.png deleted file mode 100644 index 2dfb972cef32f28f7ff14d8479cdf492170c4a84..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 317 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e{s5m4*Z=?jPl+>Il3{bSCwXU? zOV!R4NuU&CNswPKgTu2MX+TbKRY*jMOKNd)QD#9&W_}(6L&conu!5q}?_YuoK7M_o z<*loA?#%h%4WR}XjUPPHIq#!+lA)-lcZY>>knv?>FNHaeCLNg+q7ba9YN{^0V)-To zLrZHz+tAK#W7W+oB$mwWHeRb?XfArh>`72q!PjEOXap;*5@i2$sOG8y&>{v;S3j3^ HP61t`+z0~`Bu!=L zU^KC${UShrtQhSL2kvxlzJL9!^gRbjeYnElvSxs`~S)>}s<9sz? zzluGd_}$tMvAvuIY%f5q2(QJTSoYT?ix z;%Wn$qcPK6g@5U;LUT06)dn2e!(6#m6}ONWRjZbS{a;*O)9rS#EDO^#X*3!DY&IJV z!$8+{7K;ThPj^B|B)7c)+Y1uTRDgKW_))mp0LO7?wOW{_34mc3ESF1ERi$R%ADvz# u&kaxn(b<~g00hAQ1UTMq{K@zE?tf`qD+HJpZ>fz+i?_Wo z&piu4?f@1Kqe-Ozm=hspMFJERe~?e0`Epz6mB~p045An|*K3d^EY#mU2US)1v*&rx z>|N$UW6sh5c>$k+oi_A3Ur7cqpGbfpTHH@c3czP?up_O&R?ZR3BYY{$T?p_!fP#2E zXaQpkG))83G=I5g7zQ|w1Ck{1qoHzTi3FIE`s}B_cX$R`(s5T? zJB3I43d)KEINDgHSNk{MBtsAcyr5-S+{U@7KCIBb;NHmX!ibI{&p#6&FQ96r0Q$p8we9~~fE-0j00;m9@D6&5j_w~!zzYBX N002ovPDHLkV1kLJyx0H$ diff --git a/Resources/Textures/Objects/Storage/medalcase.rsi/meta.json b/Resources/Textures/Objects/Storage/medalcase.rsi/meta.json index 2d22408056..8c9647fc3e 100644 --- a/Resources/Textures/Objects/Storage/medalcase.rsi/meta.json +++ b/Resources/Textures/Objects/Storage/medalcase.rsi/meta.json @@ -1,17 +1,17 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Beestation-Hornet at https://github.com/BeeStation/BeeStation-Hornet/commit/d06dde90f7bb6e6ba1b4a34bcc2a4624dbb1518c", + "copyright": "Taken from Beestation-Hornet at https://github.com/BeeStation/BeeStation-Hornet/commit/d06dde90f7bb6e6ba1b4a34bcc2a4624dbb1518c, modified by ps3moira (github)", "size": { "x": 32, "y": 32 }, "states": [ { - "name": "closed" + "name": "open" }, { - "name": "open" + "name": "closed" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Storage/medalcase.rsi/open.png b/Resources/Textures/Objects/Storage/medalcase.rsi/open.png index ed80d96b7413f76229f578a3c054429a5b4502d8..b9e3ac2fea41d3e6cc143bce4b7edb7b8b7313f4 100644 GIT binary patch delta 435 zcmV;k0Zjhr1I+`FB!2;OQb$4nuFf3k0004pNklXXoAdy~_hE zEG#Vk8692l-tWq`iC)FGmaD5Hzr7}H^8@HgorpaFj1uYhI)C^q%mv8U1e8($K%VEg zN?uMW~5c>sVkO);H5VzF4D5V29fc;Fb%l#(z? zDqheUgHa+M@)Djg{rO0%l~V#n$$0|W z7Eue~lpx8=<9{A#V(B>GZtH*K9*iv*t~gf-DSw?;n0|A_opyz$lT; z%YJWnoUsXn5b%8;K@b1{=JWY)tT_=yW0EF$3AS~=QY`+H0@^^5m-VVOyw-%RDmX%J dVPRnb06&;O%u(GL)ZhRB002ovPDHLkV1iG4!SMh9 delta 462 zcmV;<0Wto~1Ly;gB!3BTNLh0L01m_e01m_fl`9S#0004+Nkl7Qi8x5YBn>#BF?9AKOw{x4v$<6>0Oa#|YTGs% zjRq{s5#J5pKW)7`9F74>BajUO zSkNnQ5|%X^UGcUiSyQRVunNDYtz@WXi>$P#E5-+O8y z5}DeM77QJl`xfv>aD^2tt}T-kAS7)g%!6;+JUGJR-3`i>6I@@Mjm?)Ur>I|@W3zaO zHhV_4erAB(Ed}w@Epo+u)M_=+7YYU8ZZ@03m$CO?ut#T9>mPc-YyfW`6Fz9(JvLZ3 z@Sag;<4~b*fcYc^cx5$US(4TPEKz^=pD+PP0R9cY7sdUe;HN-HX#fBK07*qoM6N<$ Ef)Q}elK=n! diff --git a/Resources/Textures/Objects/Tools/Cowtools/cow_toolbox.rsi/icon-open.png b/Resources/Textures/Objects/Tools/Cowtools/cow_toolbox.rsi/icon-open.png deleted file mode 100644 index e66d0bc97cb7e68ac40854c4af6c18603022c0ee..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 256 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}Ea{HEjtmSN z`?>!lvI6;>1s;*b3=DjSL74G){)!Z!V6~@T=}Ds!(Ko4(t+9i z^B3scX^=2YVayN_X!Yz}w{S9>gNb1(I;x!EDmyaVpw-h<|UA`$J50zB%(DrL4tL0f=EwOpuvHL zi6Td(iZ1={46S~AF?i7#wOfoJ?q!uo2@~U0fk)P#&v1RHUv>J#hsW3R7s)zKVNRH~ zm^tNm$hK{U20-xV$Jg17&An3}9$$a|N?}9WoGqOVD8|pn`M!3?X$g0^tl5LDS8G0feKdt o<9B>+Sh6V<>`E@TgBlDBhb?R!3)_y>0zJau>FVdQ&MBb@00-!3IRF3v delta 207 zcmZo-dcZhAvYwfNfx%@-*D)Z)SRCZ;#IWw1%u67LCEd~2k%3`jKlh(RRv@20z$e5N zNNdPR_nFIYpFa!8cA22S4Ww90g8YL20|CSDZG6E%0nP%C$YKTtzQZ8Qcszea3Q*9~ z)5S5w!vF1AM=k~h4ws8T@9UpQ346@yWewbYFKAy>&SUn&XBSM8U}Rmi>d_{L2_-LC yEX>4Tx04R~ObOv<+e;7KfkpKVz=Sf6C zR9J=WmN9GFKp2LfmYTDWFE&`<1QE$084MyzpwJc!T^lIQA1EFCACjqFI;H=@_$PP> zm=3{S0)Z^SAVLOXqrsrX$i_M{xI-J$43T6(+C}ejp!;;s!#8|)kR?l&EdM#Lk`!5% zwMq*ZkH?XWSOLqje^%9MH5Gg`8pTSyiG$Z_wN!A|bukPB-}fWyo)xexYbB+`^Sq7W zK@eaVMxxrt4w$A1faiJqczB3B=rotZG)=-VBnSdDO=G!SrWcS>uHixmz6lX|koZ$u zE|=H;CP`!m0E7@U8V#;4FL?Ly69ClXm7E-#qQe;}XFCx!#OPEu4X76Gtr zn{Kaa;a_?dkbkuo;I(5`} z1*4!dx&KE3f4c`Y{P_ZLHf6v7aW=)DFW5auH!TwhD5aRqX4tLPx&t?ZTZSKgax=JH zcffA7P)cnq@a!ewIL_+tNho3lky7f(X;p z$8@jIk;|(WW1n5Wkhnr(NHg-H1J?VZ@Owp!N86J_+9@4?vOK3{rHRvel*UqAQx zGl9G9$8z|99xL1RZr)QnH(#`Z`Nx$=>Y|LNY3st9b?k$l4!C+Y;;Gakg>)NQ+0xnP z9C}-unj3C9pIBK{(4uTwshmJ5!Yy|0^&MYo*1l%s>S)xqf?N9^roMgHEUVrXTaP+H zEUlIm#Gko(_fmDbaZg_nB5=`^MDVoSHHok1Tdlfp_D9^3 z%YiWqQat7#ZXw@sxoW-venDUG7D;FaZj%>N1^V%#?x9< z34l>*$cx-MzLKX-CP!tnstW9+`;H*n;u%-;GWub3Bg))TcSQEK4NDr~1>BmF0+N1^ z$u76wW~-ZRG~TM9npU7%p;rt$?3Xr9AE+<_d#+yFv~H2sZKpCKzszOB?oxa2%@qWl zr#RZ8Hyu@#mgh!Vqw|)i6xwuTw>Ib=BKgz?91A*T7oG2N+{5EIV_QPz!QUPqf7Wv= z|H%1z?}bij?||!6^CIfZ84iud3V@wMh`j)gh0MmK(L$dOnilfOjJLt#bJtIQcy@VWaaZ8- zj{!Zew-@qOJx(FE1kF6gzyMKx7M-^?AIj=34T(f5AhZUNfBc3$JE#hi2S9X3TlzZ30uB7EQ{m<{mOsTH~0iC@tFYJZJsT z@0oXY#x=8b?{2ztZ_2?49{VWDZU3ItCQJO1O2YUW1u(D5+p~w8Xesuj7O&ArH!&RF zvx%V4eKC`pJXsWw{3j7d*rSS4W+&$<_;S)!*ow3ZJ33t$E>D z_gC8v=O%~ZS3iFM^Lj$EG$*v}nQkyoQFRtqqGNLJM}(Pn zsy%~o$9?sYXN}ue*)7_zsCJ%uaLHXZCR`K$)WdD0{^TVKJtb9-$FPuWe+`$L&+>7+ zlU4Lo%_dK+0i{)&QRQ*_YJ7@cR;U%R#4nykG)b>x+RU1^)<+@2b)AS7U{i(0x^3-u zb*n<=&AlkOQQoF(aw304V@8U?x(vgfBisL&q4tte`LOMDywmmWspUcOrX;lcCeN^z z8yNL>uo;U?c-#0KgX71YKO`H*I}W61nY>d!TfTIwChYDU5j?_kit}l|kS6P~rgLqs z=NOj9`@^S_5F@J>2A6~??^+RYL`+_JkRJ6!iyKxG5~L|DxN+$NJ#)A>) zJX$dvv%fPmgnTad%CpQ-$Bk5*Zj@iUR4osM@i%L(Fl`r}N~hPiZt*;-b}?4*rphUU zoF{P)T)NWjn)^O&{AlciSy1`Tu(iwg)IGybCJYl8Okpk8!NJqT!Qso^0qqz&5^|{Y zOLn?xT_vuL3o>G~qZ&PT_U}bz?w`3~#hw#01EVojueAyZCi5*bQzB|>chwzA-Eh2I zvpfayPO+!|L2)0_bWOpGz{}ExD6PSS!6sR3Qp*wCt^RcQA&%Ztn)|ih<#ja+r>Fy4 zId;sFqH7kMZu0pT-493qSQ{4CK2BE3OSuBuMV|{+13CijW?mrWNkWhILN~RSeRNX&3=Sl7*c(c0RUC9m-%_6_r{{_>J=-U&}Q?Ykt9{N$RA4w49cR2d?d9y^I zVs{z)v`55TRSTo^8MMaIeJKkpXyNU2Y);9mt?Lu7y*$upy7@5NDRb&yyX{3|4-$vY zRC1y?9SpVlr2DfwKW>G=&)6LXI=dQ9$tVhA%{5zYzicn888dsjDRY)BT&Xg7!}H8} zg9-(UYWg-?>g5{0=c?8rht@cC)kWa~T)f%l#Sd6qbNz39toB&{E11LVG<7X0uo-1XvNE1i=Ku zxO^&d@XQ4yg3G2Nms>F~450%U&ZWnTK%aOIUsiksi_AtYwpFu{QXl{xC;<>sUL;>k zky4QpxD@DK-i$^fCQKv|RHQ${6X75bfe3;n!4iXVlyYNmNLw|8jfl;mc+;FdLqJbd zWVl2kq@dBUv9Xr1cuRpO42>m|$!H7?jl-cJ3zRsHF9D<|zSvj}F^NF~#Viq5DB%kD z2stLe6hup?NF>yc_!1va$Y6Yh=ZinH0P%sA0zx#_5`*UP(BFHAC5|x=$mf9mqlefR zdL=@8gJMCnhy^;vfP9JZ_YiE>SASu&C~_hlHVX|#f;`An42_EYVMu2ehUZrgIR#-{ zo^ZkoBKrqR377MYtRG^N_e`YoeIStgSKJ@0zvMn)3|TQ46q|0=KsgiyZpnpk zICuaA*c?0x!?6ZX1dt7)NMsfkWzED}<4D#-jujsJ9mG-*7g8k<`F&J!C^iH|w6bP# z2smhX4wHi-5J55u;4m>LCJskrvB_)#o(xVvu~`%+frtk{<>c~!Fc2-|hfQ?I38yUa zbfF?~mY8oXo{@lr135r*fXinKV#VLOe7QW(M*_(C#9CuWSgbVxM<5U|c!KpeBR^0i zhO{V0#bPY+goz$`VJJ{K5Ve3@sSvLrK_TRxU%MI5gkl2{ zfCflF2o!@OP%t!%p_DdS)2`oGbo_U)_)@}U>JSm-2}_H1er zbc$4Bx;fM2$4MCMy~CMA=%Om52Z&*?-=@pI3b4W*x=^FC#D(Fg+y~d5sc2yc=l%x$ zRj|c{w#3)}(m?)FH~13W`a~D2j_P=S2d1i4oVH1=rPqVmLw_bHUvMZIUUA?9y={J0 zin2p?-!$C%nsujQxXN15=BBA*n+s{9!JMse_eT=8ZW{p*c1fQyPr9s)B#u%9IWcF( zc{|^5r#%vpBRh+#DgfORfn~>bv>ZB$(5|p;N+@@?v)%P6D%mA#NN{2gw-833U)4Wi zHoVlD=){~gtW=z*VnmwGL@r-Fq>P-^Hq~Cmq6w+jb@@*V`>dt?=_t)jytkKU?P)lW zlYm{$ukR^R>c+$5PK zt?0SYRjt1c8ei3V9h@bTaN^*3-lR;2L*9BtcE{H^jK0g@jB}*$gRWB>qC8zuFC3VK z^Ue>lI^X&Z?9aQ1QNP%Y@xJ@uBamjrt_q_pp1 VwzKxo>{s%Fx;T2!%I#OA{1X~9gcJY( diff --git a/Resources/Textures/Objects/Tools/Decoys/commander_decoy.rsi/folded.png b/Resources/Textures/Objects/Tools/Decoys/commander_decoy.rsi/folded.png index f16130ef38b86554da775ac9d8dcd94255e19c38..7e7f4c822d417a1a11a117aec0f674d037e19e56 100644 GIT binary patch delta 563 zcmV-30?hriF}eqkBNYLJX+uL$Nkc;*aB^>EX>4Tx04R~O;s$jAe;7KfkpKVz@kvBM zR9J=WmcMHgVHn3his4OYjzn^hmLqqm$q+o~7I3L_b&w2o5JVjMH?*D1P^bD|gdj+< zL&?y!B!iW1g-8Zz(}Yt4hZ62W?&uJg8rq@v3#!X~$9tc9KOdeu-sgolapJ`J&$$<* zNLAHYRKQ>`@MQQ3f2gWDD;A59;QfBzSK@&myi%z|g7y!6~?E0I7^6dcFFvMf@m6w~Q6x_~4}bGQ(Kw?cSs zB(7?6x!nBSAo1(~fDnROt;X@uAy3wx0nlnR=j+ekyawR-f9R0W7?R0kU^u}2AVrx> z1^`XdXf>KtOC^@`i&RS`T8$=}riFrr7WkX?#s&bUJwZ+{VA_)#&+k-VseQs`wG1$a z%jpFGHmhZp+9#0&eE)&#Is5*D^_Q=3ck{epl@1-&w;yr#@k1ndXn}oWLgApz*Um#m z>Cc$6cD4RxPpU76k$YM*i{t74SgL@N8kIM^N#1e`OiM5)7^EezN-4F?(N%2^Iqnv ztvN#z27_t4yU~20D_nl6t3toR`1ny6OtmE5H$dbA#KQRk9-9*Z!bNd>5DtntY#2=3 zF&q$>KWM2n5n^;s*;f66KzVxas80O5#4US#7v|X=T$>c*gEf`tjfV+TKJ>mY`gGCa zZtK#yk=3&J?iKOw>SbKu_nf#LbXA63q?7Vp?# z@M`@!(>^NzQ^6uXQ<4?mIJD%=I*q^>SIn9ddNO+-KApU_2$tT;Mp1L#k zx7N-E$0d=$(;n8URQl;&*#S=(myL%?1~l473!9{|SIiCif=4kK%;(PH7L7)6##;v-80lX6m_BjmJIn7U$=43yDK{+*M_RX*x(8p|%EZpIlQ4qs}k+|{<)vno+qO zdEPjR537y}KWf*1C`6e)P%Y%0i`5^p%C->)NtUn<=D3;}y3D3_^f~=@GbG>r=F`b$B$4|fCxhUM^=(+};#2DS)%D!&$ zY7b#M?jen)Yw@Ibqr}id`SFmUv~-s+=2U=(;92p>0~TVH1(xp3yIn%Gw2U*-{OY4j zTCY{wj=R>Yp!SMAAA%@SG!HkPSL0uGsAAt)vqk4_JKE#wbzis7CycPh%d{Pe#5EJ^ zZtvB^MU|u$j(c+VD;dCXiT$avMs!`#@;IgPEM)z=d$#onng!hqIM13=F=VCu`Q+=F zNc=^n!)@#Jx?RWP9dBE3sBzUD=7*xQ_?kjVsQBIw(7+F86Ddd_hW4-PnSvn$I9BKp(xn|6lj&1v}{za+o6iV2Gl z3M$~js_YPYqu`-KZVw{VV>}d1uHnQipI9je#tyn3nDy(9@Nv_(=ICQ+tvias! z&+hnA#>!{Tucbn-vt!pPomb^473$2IJIzMB6tSmYc^Uw>LjI*<7L?N?)v4N-aVwq_ zFG_JE;Xi8~e`yW3UPAqt9z;EPi(uik;dFgA!f{}~_AIrHGutvdVQxhs`TO+6GnQ7t z)7npX5S;=Ul<2bUZDE3CK8AyT2CXCTRji7ECpmv0^-XtD+{-11gX_lB0-|cmmn?QI zIoGoV?tb)!npHchR1e0ll-I>RkI0dekoCBBqoZM`i4(chmBQP7ZXQy z+8UetIu(?pslcP$`zQ=Q-_<6oNdj8WEYSU|^I~g&G!AZimTrC|YrwdGK#NE%Fdvx_ zD@~^kOSApdq?W#VudaG8N*FZmMmq=Rb~fu+Re`?VH@BNOY}&1vrMu`{^6}!=v_R!2 z?a2=<2WBVh5BF8}B!fExw=C-(lUPdCRnN}efctwC@v-EkpNdK$yM3YMI}LBC2`6Cd zwdDs~FNLGEX2k1ey*22*9Gw?Rs<(XOLJu`k%($R7vX!2!_1Jk?uf4k3Df8rx*ukx< zX6b~$UEB(JvAw%(a&cvQPfwz(j1%jG!(#O)^Y;kz$6Ed`xPOT_!SbDn!U1(!Bx zE;!J3w@cCb(DNr2c{c{6PXo3MzC1(Ms5+&g?z({L5ed|K@X;L{gWd&a{(4z{?swy2 z)wnsyZ~V);?Jj@Jts6WM(Q_-})DD|uQ;AnWLLpqV3PsNEj_HK|>b+-ZKO(ElC?j~^DWjlh%-K=hBK&+SR8~s(g$sKxAKsL4@|e!C z6!=@Eo}uo8eTW4c3JilTiJPKyUnIV`(G{C~y9#%AC{6J&+pM4Fb@QqJWvR8Y7Es7u z!YD7fX~TX*Zg~Fa@rN~=L*ir;WYyf1Yp}g;v%p$FpQqQt4WjfW_UKuAYL1Xcave?P zZ+KEW^lE1B&PK%+EwlTgViL_Jzc%1G!;k3O6WAl!AC`-Lvf7Wti}E`X-QHl41V~Dc zvd%0EpQT|lH_ecCwemp9LK|AB%nh4U{;zBI!qq{>&`n#fqvm8#4y8etV%% zut?gs3uU%*-aC%QWyH%3E)R3nTp~AqBGmAPg~f|ufdhA6Y4iE&Uip>@U5~pGyAnUt zly{w<;|B=-D8J>>34`gZX8`7LNg<#9ThKvw*><4q`sQ36zE33VG22Cg>akMvCTr55Z!7v*$+(A|}&eG0|WI$c0pekXP&vE?wQ}-rp?b6ohcN z{7EZ_>>o5m9QHqC{ScdcWHO!a1A)xH;r^igHTOwnNQ+LV(0I&fd3f$LdxYFSg~elX zSd__IJAgqZ*s@tj5{ZdJ;xP<7k^urlB!-0}vxxx9mH^s*2jw0q6akS;P!0uwqc{)_ z1Yygx!?Te%21X8H%SHk?76XaH5;0^llSsnjG2cNf7jU4i1R}nVN)E+>poj!JCL51~ z+_M>MB%TP8kpP>4K{9YSB9ldC;cdy_BovEDap4KL08~y67YG5-{K$~W0Xg9mM{jp~ z1P(RjbyDIT0f^X;0W=3Vkt|-U@E>Jg4i{V@0_1#R?Jy)P)(%g^VTf1^8T*ftA1Dw) zy(mY;VoF z8ARG*SY#v~WRs92GSp9a5X;09i3BEr@!!yeJhmtn5P*&$5RVX7P=ii#1-JZCDytu( zi46tib$}>CLhUA}j6lId++h&te?L7I15dC6q4KaWb_^ummSu}1W9{sa1b~Sr*o)0^rD+}HG|X!(NpwU|`&|0wsA!gnhuM9Y*6TA87R9{p{l|H2m(>%Vz? zX|sRR1swj%$xre7i>_aE{S*T~rTnYAe$n+)4E&VxukQMPqf7IjZ$&T?+Tg`PUxG6U zRy6134a&(Eg>dBSA00Ac0~w{gm40U>dFNbj?>9b| zf(kliu-*7~w@wfKbt^TtUv;Ivb{KwF`m?HME$^O_U++mczY(VJX_3oE^+Ub`ao#y$ z)$jK;hoYw)yuQ@x*Jymcg3a|&EX`%S z=M`l(Yf;7 zy|K0Gk3Njq&wSZozN1N@(nu4A4f`AT`LPa`w`R_lb4 z>vi+2jYkW!`p(F9Wo*t|>2q26evQtyVaj{#>UG7jcM~%dtQL4!+1y|d_g45>dXq)F zt(Vs<;;%eEZ%rK}Yx>h>wTvs%rfQVslCm~&iqz+>*RDI3QO?=i2;}-~TE4U?szX+n mnNfmBST`R2Sw%rnS*(!wxy(8A`J4cGh25Q((T*(*PWdl~(YufU diff --git a/Resources/Textures/Objects/Tools/Decoys/elite_decoy.rsi/folded.png b/Resources/Textures/Objects/Tools/Decoys/elite_decoy.rsi/folded.png index c335a79daa3ee031ee93ff5070211bd289f694ff..71a43e2286d867ac8769f760dd71f44319add5c5 100644 GIT binary patch delta 506 zcmVOd5Rzk9hd zD_;a=DZ@pzC@nE`;E>5Sb5&kJwhLmEJ8vW(EL+5R676=JPp|$pir3_tW#~ zbegUgiv_|?G)=?zeQevtFpQgoZ!+-7csvF` zDMc8DD5b9U?`mMRTH(4bK@cE>pxJC9gdhk4T-Rkbo88v{!0B`%0iL&8!Z74{yCwP9 zFH3F_enm>jqiLoYSOSkqmFg9r+>`;+GPumAu6 literal 5797 zcmeHKc{G&!{~xl1Y_|m|rb%6HW*@^$){GbolI$(d%sj(j7BgcRC1op;B2>79s3_W~ z5K@?2rDVBWLD%FAF4*kNV*IWhYTNo8J34_TWjq>moxdRb!zJSMKhk$UAm=D6iNHz-wi@f*J z%P)Po(Y*JA3%16ufy=dMs@uI#eKVC)*qX<_u(f+6X(p!><7RG9upntkw^fYal!`i7 zzU*9Qha+ihAWPS1@oO{ve$adZ_13mWqt0q_*EFnPRe{T30J7)3Ureov*($p|F~51V znB1~bJHPFEg?cRN#&zVxn_9U_C$~Z&e3R^CU-vrS%=`DX zEAzt4=h^9cx&9-s?|jgB2f+JZ-)hemUiO{5Wp(qoN=w|^nE+zhOACfpwu=A8a$0}Y zS-(R)%UU<|!0xmzo5E5g+jZ|JAJ?0kAWkWIvh<9dtp6fm?z*C;%6~K!o!idKDlMkO zb&Q;(9>497y7`UiVrme(M0r7r($>NnWM~SUjydio(1q(s;6N zv@UidWhCU#BZ)YPZEbMxsmFb_y370aJ;~kyuQ@ogn_yOzk07_`JMSmnQkt*xTC7mi z<^=PX>zc=)%gS0KSEjDeTVsH2Oj`&ua&D0+RFgyCY1&lMqXkME1YO>UP}dbJMT(Pg zZ9C+iWGJ0xQ)N7Frc9;zYudIZ;qh9F%KN;X{SK6tLXHu?B`1>Rk~eAb&ofxnA~%CN4Zp#xG61X z_mHSDRR>nIf4PR%E|?50_3k>x%>fCCWk08W#Y*k#sdrOSwKdvS{pME-Xbn+1)25Mq zu>l>Vu`{7%=OOW30&gGv`Tnj4GCQ7BrUWldsm)@Rd*s6IBI_AwAi5`Fpj3yyL;m ze=n>X>~9aZaceKzMBHAXq}yLuG4s}QDQfkxla|9HEz1(?BCHynUJcbF)zDE@C-szy zi%fABX&B7LgRXveV@oSpl1;1@`5jv$#YqN7^qN>q4KsTNabRt*3x44ss`sco{m!Ft zU@`nya^~f2C0yJ6rA^$!X~_hc&?Mv;KfGydvV($!z;T zpR>8=QL$=+wO8W3Qw})!3j=`{3;VXwcfu2k*CZ+C>i1?dgYO~^Uot3b%Bs43s@+n? zxN5f_e@g}VS)HL*@YQ>Oz4dP!HLu0(UEQOpx$Vd`TQ7J2nY=>a)Rm;JvpejwyT z&vgyaeSC1R)S>z!;-<=n`4^S4T2%B@^f$hV-j|@2^sz@TZlu8usamg>+cvgypd@1A zxu)N);?<6O9vbG-98R2O4n3={eaF+-&B1T+Ngg|ee)!&QX`b(8H0GnE?3iE7&LDU^ z!segYy)9H`PIKe4GfDN!QzRdgC7xF;t-%ehI<8ZMCFudID<2#8r6|vLby?bb2>Db| ze|yQ*F}yy}?7YeTla7Al7APfj`V)Pdk8yCDZIxqadwla@W3!JhVKA9^wymuj)zfYHaY8 zEBQ^OaeK~{tCh#Xr{+9<@$l#nV#W4@3w*CdwuGvWMvwm0AF<=sNnF>9B-v7y&U1=$ z+f%QmhE;O&fI}>6dP!cJG3ybjZsgIE>5cIL;+`3jLPqR$SiZv&uo}?hX|!{E$%E04 zHC8z(kCVnTY_trv4^+RH&>c*_D%(C!=dLK%jAEQs?L9*GBzipdd3?GsC<8s*nc!PN~z2T(fc%ipn;nh;~#*FMNlT+7}0!Q=w(r7+hL<}=(ip~~ma zbwUz9%5aDY>z>4|=bLv!VB=H_e&M;Bim@lSc0khxYk?T8sYk%sObdjU2@ONz+k$~?hbRHKKFY;|5f#iJF%edl%I1+| z2!I2M0C*%PgexRRS|Da|$*K2ydDj+?FQ*;RF-`g+bayvcqu*OJ%sZ zfXO1eQ`UZlfSxQ6fg%x~j7CR9M4%$@D4rkyjU|ytXbcXG!yzFHq)^Ni0g*_qaJdxX z69xqoG6ZbCh|S}|rI-Mn7bdbmARs;bOMDzYjrJ9uEBwp?#0NSO;G?l944T71fA1j_ z*@Z(Op9A`j9zqZ3ZwT5Q6!O9Z4A3qdx$fk5tGaeuJ>lKZSNWJRNqDLh7) zG(0NB0wGp zdVW>YpbfueF(G5Vv*$6{Eb;$kE!{qF^G`*0 zU<;x3#j~PMdulxx`swM@V+eb8Gr{4r+ky-*KBXW8!a?S2oDkM06(bPf27u7~_}s8x zla-=#lTM)|LU$^bo~?qKV|%@yZ+zk zQvP8k{kNPg{T0OW)A*gd|G;-DQc?xke zm#Lm*T@~WoKeXoUvVCk;M?UjUwei8f_T)B~?#b%Kj+cfTtdb)gvk^ZaL%qP^`CZK|x00o##g~5XlJhb_V%R z%NPv~QTI)Q!8~euJXQOwRjw6B<4@hQWnt@fl5SO2b&ji-?dZ;~lu+fn7jBF>2Mb2} zWNFIDAR7OEd-&}%tZh2Fxo+QX4LKQ~tcA_nB)cfVw7kJpRBxC?o`&bhBA^L zFV54NZhu+TVPL+m#;KwG!L9L$V0uvJ@ld4)Sz`r;RVlQy(rQudTqxyhw#5DqwxIp4 diff --git a/Resources/Textures/Objects/Tools/Decoys/juggernaut_decoy.rsi/folded.png b/Resources/Textures/Objects/Tools/Decoys/juggernaut_decoy.rsi/folded.png index 7b3b7b9846bdf8f145c69f52f480b1b1e31d2839..65dd090d198a58634ae8c1a59a455a97b635c3d2 100644 GIT binary patch delta 525 zcmV+o0`mR&FQf;MBa<@*69Ooavq%PY0e=`etdRf!0ozGLK~z|U?UpfX+dvqGpA?I; zgM>va8iE|jTMdFh{z3mhaG^uUAMsWS?dCNUymcvb>fkI{J$CC-gKJVSazvmQfst%U zcyI?NYBfZXRZ55I9l!f@&wJn9eJ3bYs#K|eti3!*hGA@q0&Lq(Wn>yK3}e%3wSNl1 zr_*VsiAol{-EJ3xkH=#)O=CWvr{+Csz%Y!Bq9{0yvoqZDJTy(qm77`tUDp9{9EaX| zojOrhlF)UXFbwfLk6Nup5Cp{yD2fupg%G?FB6T8hpWA3O;&1aPwE_S_2s)ikB6fCl z4Zvi%;@ic`I6fE*s8*}F;Q&waB!AWGbxhO5G)>N~t~qTU$79bve!?_OBuUx{ypw?k zom}=gZ65RGc9w|SuivoFI3s^-;N-Fo5W^?SRbu@6yM7@9nP=cZljVxTyB|DXY;VS- z4d>%+*@yKNHzHS4EpDKiZR3+Xg6f6CT|-%d$4VcS4cTh@vP; zbWT-OnayUIuVL;jc$-n;?)~b+Fa*d2hm7agvaG`Y0i)5V*tIBC>c7)Zq+^;yv~w*Z P00000NkvXXu0mjfB24wI literal 6137 zcmeHLX;f3$vJQv{v>+%TErKDAv}6t;iG(pA5o0q-zyVH@lMsOzTnN=JjC=G~+ zpfV_ehzJoxBIs2b1lub^J0YNgBVv1T0(~c-HvQgR>n+#4{m-m*l08&?RrOWvz0XdX z*P503dh_&PFql5wgXRPM!qtzCHuNotiFpl!X=}y!F{M6$3@#E2x%_YtE|rTwI2g_6 z!eG(2o-@6(2A0hn8#Ip9N;XUy(9s%xu0Q&AUDJ!zGRorv(oc$UO)WOvkM2Ux`7~bN zVbt2l%(V~4P2bzc#@?n=9WR>i zlROo=ylCWU#AwqBQH-6^g2lg)zC1JXE6W0sIo8K9}!!9>}FUyrQxIZ2^fAw)>pVGD0F)VOHY)4P( zBhAv*v&U=8pBZ&UmWn!URn=l0hnYrI!`tec%4RUnu;*L6*@0Yg{VYpiYFj~)Irb-{ zk*}p|C1<)Hp$5`@Jd^VppUKwKOEbKu*A5&zbmLluPjrsTq|)XkJTKYNJ`%8`fI$GP zjyg6k-nl^&X5@$8ou;L&3R z`%@k#$QR);iB}OCc6*FD58GZYXfbg(wmR>?xk}N)e*~32Xeu(c&Nue=5F2J85dOKL zMY+qneTuqnov68~L*KuSe`8Y^!-Qh8&qTP~v~=|5@xk`OY*fQ&SEMS=-O~Qobnlhs zn_8}>JD$v8p5;;oQkGw{muFd@X(vWr>@-dNW$vjePG@Jr>60g-!Lrl;*N}kuFO6RZSs#Xlu%Y zc!Q4x+ufp{r)}tq9oky+LsCrszp6%JU3-R1saJ-J9M(tWwmCe>Uuo#tTNd23pxm>u zmNaHn1&-!ir^GH?SgUK9^Yj&nKUGi{w61jH$pM&(Y~SE!RHuq%U`3j@yXJ$|U@;w9zIv$%89%F@OvJmJR&NK6{Z;Er{(VnI*% zr6a%18^u++l%=V_+sx7(YY!b=J!X*j)&aPr*`_FL-R8Y)mG|zN<^(rD=pDb*o%|~) z{(4`|qlQzxZ~6p?7jxR+2FOb;`KT!H9{Whu{FEYl=hD$MNk=WJu!Y0R{A2vZJ1yhIcZ4h zANLCOx+4$y{ye9=%i7rWz5M?0GQHtuow^Kd)y&uA%`>+6`8tvJ zArvwEgD4Sx=Rkt?7K=Oj2|M6(uIT?JbMwa)AHT-lb}J;)p|z*X;9&B#VEy%8b2XZ= z1;B1azgyc9+K=fT<|Tcw!kE)X4fygs4^59+-#?j`kUDF}IIQv|VOYt0lX;rh`&M^) z04c7VWN4O6@^;@d{nLxY3`DMLpHoi2JO4gSp4eNXb6I@$C(GBl_wLrbW(I6ZHayW< zMo==^V7Egqo6$#n7dX|Cos!?^CdM_btB!qha6fv>>4fUw?MLEU{&*dF7%d9-+aIa| z4^Q80;lNw@K!cM2blg~|3SZ`ufzW8m8jw@q-m$qCMCsuNQipcg>q}~O2M0zi{rx4O zl?d<6o98Cp^|SA@TA$|u}~iX`~kY5mXc9~(j}-kNP3bSe7E=2^pW!>xB^3D-~JI-jL!p5XrYn6|p@ zVZde8a;=#_4%dlQoZn`{?IT}!(Kqm6LkdscJx)KeQ8Pl$o9!>hmh8EiGfz2rXBWHVj+epdP#rw-N-4)Ys z7PyGV?#I8ZujOv$-eTzeBjMiM+aGgan)Oa)!0p~EHFqf*V;!nrx<_2a&U@A$fx5ihs8_h!y;7bJePtrb3(fj#Fd1HOSD_e$6Ho*c2I&^fkHR4w^x*bl z4wvFXbN>th^{9wYsZ>Nkqh&G~N`^-X#XK~YOeUi-I5ZB2gd~s>xj+g;BL$L$YKTb; z8Yp3l`64M_D1fUm0hTaQN<|=`dH5IqB18BP7TFfhz-3{OEF6x==8!oAJQI_hQ*gEB z*J%c{pg4dOpaD`40>$766bz1nCHi5B6bznX3o&3z!Ay}Ca`;^N|0k_pK5+ZVq=xz@7|20z`q6>4LB(r`Vx@fCobR$LE6mGS2@u z#el`)IBYT*MB*_VGListNk|eIswV=7WfO=*TedChf1yi+T&WBYgU&pNM~Ew^Kqt6@ zFZ-M->j~DrdLs)3)p>v@Lt=19HD$IG0>m8#f&Tl$1GylEOeEovfF0fzN#NqRNB|3U zxoi#rDoz|3&z-D|ukQZm;Z0VA-Iws}(drHHOET@z|0ms(0#kNSh?dDQXlI5tdi2+w z{xe^YuYc#~bD8~}CgAYzM!t#P?{s~q>zf$(CgJbZ^_{M7V&I#EzgO3PjV`@E?~0%R zdcl)HH^FA6mJM`^)Mk0Eq)pr>Veee)Z8B#jKZN`wM zp~*C|xOdNe=&yoQI?dUS+59}KVbwHeh(V$AmugL$=W{$69)7x#9#wfA;iyb{hYd_pmdtx}Z^fXh;SI*nswsYD zc#sP!`vWucSm&nkt8)%N)M%{|&F2YN8@l<#gL5QZYwsp`IBm(_TCqAI;&$Vb9AZj5 zTVKB!=Cq3bcsy>?R&0jOO&d`ASf-8@$%M73!tBvrnvGk6VUkOsp|Z9639P!FYPomT zw9}i;){WWTBfMx98Qm#1EqF}EG=pM)^=J&l%@UIBrRo!W@pYh^wdwa7TqHMi} z+5X!42B)#&=-CRRJ=b51_Qb@odo5-%W9KR?XTu29mKH`o1UOlnlqehM$rocH8eG^t zuRM(ghz%DvnrUYGC@Xdi$}_vV$sQ$|BWoHv;<)Dav$`X_S0RU8S!UW7h6hLnEbRqe zs|ue|S~#<q`tb4XmOeS2-1nv~Rcp(*{vON2B}-gVboRg0E&7l=UnQL9t4<-^ MZ4Ir$B_!#803)<^zyJUM diff --git a/Resources/Textures/Objects/Tools/Decoys/operative_decoy.rsi/folded.png b/Resources/Textures/Objects/Tools/Decoys/operative_decoy.rsi/folded.png index ba4af386a3185035469c1862169bfa066bc0ea8f..2c2bc7e35daedbb4fe479d478de8fe366e0c968a 100644 GIT binary patch delta 561 zcmV-10?z%}F1QDfBNYLJX+uL$Nkc;*aB^>EX>4Tx04R~OZ3cA#e;7KfkpKVz?@2^K zR9J=Wma%K%U>JuVkCPZ|&^rTd34XD(L%7fmg~Ba`n+jJr?9%bL!T+I~F1Ou(A&xgX z6gm|hS}3@P5Qfr zD;N%kfsW7sLWo7Fe^iPk9}EVeA>N0{4a0~fw=4@)RT+=RfpxD25JD^zMZs~LwdJns zqN-}7+Q1HIng)R5IQ)8g3f$--okr6%JkP^*U1V8iKA*=ApeV{xE=dwqNebLZ`deEl z6qf%+A+Q4gk|a?sm$|*ZMJC13=ex zn)L=dn_C?1?y|GFMYG;O*Y&leYX|s8t5N~LozECgXSnm(%J(-7u-&?&a(c$W;{%GE zMcv4v$XN~^AE=z3vE90R+W-Jp_ZH&0%Hi=o-(Q)W`FtMRwnJ~j$Y=UzU~eShxzd7ks^c3QncQ+>odW%fLPJMkuqno&F79GyK#B+y3OL*V5Fri;1QDQ&%YngU51+ev z7WFMwoseqNqTXAw$;S&^8!~rx9Wi+4(&6@oR{Y`Ofh3Rrd^EZmCPP4t%>~YgM*A)KlPC=(p z{fRvHJ8!BlHwPO#^>9x-Yje^d82!EeAAY9CiML1QYm6kM|D9~9ueH8?=RxnR5x>5D z;}1M9d6XV&G_`x7^#Ry+bCi>5-kW&TusEpr=HMs21} zx2(2xw~<;~M9$w|efOkBKtT)4)nEDZW0P*1l}QWW66OMf+={o&C*IwqMP>{84yBY3 zUi$!lNiJFCX#LHqcQST{6CKJ5G~jEa9aVhmy7s7@ym*`1o=Y6>rQ|zq3_RL2=S-z6 z&Ty5qO`;z@R2i}l<%!bqx{;b7Vd)sHysnoo5$?Vq}kWe z!!u*N|D8LBQlqBAft}7hw4FRvIq>Psl)v{BE{Oi@14XPvRB zU{#+rasN2#(ad7ElB8i|vSQhygs^?>D~><6w;7}lJ&Xn#bC~adM=^)85{5eOjkZ-^ z9M#I{0@(}5j6%O+bMYDtSpCS^!{#qO6_gIv32K`3ko8)J2in#v@AOd$KbGx3K#A(! zMyj;Tf`^aO&yCUsD_f?;axMl9zOOJ6Ys8rscda9Kgz}3@ueI%CXoNI`=VI_Wx43C!)b4nNu!m9Z`et_*qsWuCsLW%Z{WQa*hxBg8 z)sn}<-p3f;4+8w>Wfb!=PbjBH86DhXdpkeR9;R!sCu~<4ce8*RZo5NCmXX$;5PhQ- zewonbs6%UB%Ik`4EYxVbB{P;L?n_FT?K5yV>^jo2QMz#27>Kme(>;C(H-0~@`t$)k zhUHj(cf^5hqxMtlb^cnonLn%Wgz37w5_cBGWKM^1r$K#et)ZG;Qzp#TE?=a!=E0VK zPhPrmPLL)+L^K)KszlpP3CO;%VZTp;om<^%;eln|%0|1)1)4pMcbuDVNWxCl%dUQi zdX>Ls!z@+2(y+-|#ivGz98t|X*Wx-&iP@@B<$;Ig2Y7h90aVdmeJ#wjC#M`+GwR-@ z=7vd+wkKCR><>%7NPR?GoTd_z(tV$M>#)_P`7=uA?To=bZb7Al^J+GE&LFJm$(k|} zwMSCDb<^n>WMpf%nbLBlj7$De^R62!=G@xSxzxZ`Vb$$1?VZlZD_KtS?z)F1F1ohy zc|;htXitvwe4UE9Rec<}yoNZK8-1)A+)JV_uQ8|k(e5Gme)!f#@ zYDUeTYj+ykM5}aJ$x;cidaZrfGaA;H8|`#`z@>Fup;}AgjmfPhWLi({SjcHRtG%^I--1e(L~+N$ ztOYl{bp4#SXFc8yXP&uRo}Qne-&uDpBW72$$X)q!eVNOH5t}$Cr8|h8-KkGVjIN1S zS~=&|mCSxidHb*mQ~PY<)0;{F22+UQ+SoWb*w}pAG@z{_ZEFI}{;K7?n6CVlwoCQ| z&j_k_N*~Hb#^=r6>yve9wub~;I;xdQG%!ZTNBUp6a+r1(X~aLL@l8X!6;E>J56~TN_qo+oFICn6QaF~({EXYnIFBin zFCO=dZ;bK{X_=r*NsPP!J8G{BmH}|Vj0T_qSJri zs$zr2{5EkKnZE2$nfnW-tBK2#4NnTPHz#6xydAXPq#Cgb2zZTIs zxBXKJO!2biDWJXUdQk^e;bTK}QuC{p)as9m2IAu9m@7^x-oAG*-e_1Md3p8IgXsAO z^vAerb;y_Dc3p{6?fBb2k%|S+MQP@+4bPfJGy?-w9S*(p&+Oc)KIKQK6p(`Lf zl7GkU5wy7nbD>S#o#9Aj33zCLEntFZ87~mpjV5Cwh zT1r3*guWOYg+jq#@fbWF1zDg(A$&0)L-9rWa)>V&bWp?+as$O&0Usg91egMen1)0` zdc?Q*c!3PYcX+<&D+>@G7#R?V!J)Aj9uM=ghe&K241s(N=s$XhT%d0uj58<_NQ5lV zHW=iK^?!z7v%dQWN`wKE>9AQCFaYF1rXpxm+%H3}a9}un_mETI%jE@5dO>9WVkzcw zevtJ`Y;w(HIzI;jxqrv~#rj+Blg5x0gF&SWSQ2@74s;q)K0cK#U~$>h$w!VUnaCvL zSttSp$3_u3Y*Q3KVo^{4*@QsE5&<%nV)7G|179Qt_$*Kk1%acv5DsXP}kk$_^7nK%^WNo0~Z1QHG){{*o{$c4HR2>3ZFITRa$VzJ0LQzC(Y!h#SAk%VQT z015?%A`!?qEQLt`*`Vnp6q`l069{<#R8B4r@C7k}eBVihoN%g@lLHNjM`M3ToB{wb z2XcVs0GH1eNJT$XE?geCP7KKT#F=8rI5L(@B9n0h0s;TS$Q2Zdpk9=t;;?7}aZ)2M z3>8WTq85;MDg-bohq9sC2thzB5V{Bi0W_pMD1_YeyP5$_C^jGl=zti6K(Tlt6^p0h zOkJ=PDiKR1nV_&FD)uLP0h`MS`M<2?(+6SprRert5j1|tr0C0>S_cMwdHeDjz@3~- z2*l*HpaQHfDTshzkUbeEg!M(m@&ow3AhdpbZP;&e?tf?o7LGt>l1OY60mPF~L;!Ds zA`^)u6qy6E05%T96FFb9`i?FVaKutT2wM3uMn+=3CX11;7~irr!~8Ek%q9(fT4Er-FEVK9f>uJz_oeVFUr?<7&EMBL{5OX{ zApQ*UTm1f^>knPO#lUYF|LLwjbo~|szh(TVyZ+zkQvY$70{PGvkQ6#9k(^aMp<~t* z=BgERm<6l`wtQ@+1rm~|1=?>A!C=#7$u9+1YT7(VI92Sxu$}r;5k7q}mBdxQ4xOcs zI?%0L+^;@AbY-RDTJ0E%yt4f0Ms4_x(t>CM&DQ+&o^yHE;?{I8zw{vbd1z8+W**v0 z6|D`Z>d{|V`(+x}m1;K{>F;QCFw7ovOAh-iYG|nF|ET-&aZi;#Hg5mQJnw$S{mq4y zcP`>@sl)(2?M3~ysrmQ(h(^N5stJ|Kh}oFWWB!Ww2S)eJa$H(dbuXsutP&!x_t{v; zlFv+uWEn?~gvg_-T3PKn;q~h7!rkunb5-@QjDrC_TdFYmFlPSypt+eRw9ZK1etY})?JQDkqP{!NqK9c(3?VRO0@MlRzD{kOB zilhn_q1#)50})9&VcR2;^n+8pGGKYy@jWvza|Vh~p@)~eSve~rG|vIEF0Z|4*WA72 z_#MuhgOqlk9V|J!m)A}xOm)qMU)5d5J+|gSAHvTMv_(?h%I0_5kk_j4A3) zPcA5!rEFkaB&29IVVXeKA$7Hbfma!yM0sptp78kBflgf)Ni8kC!v$aeu{OPu00H-E fH=sj4@-Z-2r&}MITb+3u=w}8`S3j3^P6Px%21!IgR9J=Wmd{JuU>t`ZH|Zp1G8mmk zh@nRZWu=22c4*ytD7|g}fkzKAko_UTPCfQ7817VdSk)a16FZ?f78|guVIVFIDoA$d z-V&Q1o!#qY>vPJRF`{sSWfhqqxGf@{Z*|aA+?C{_ykbgHD6`spImz@vbjY`B8u2e31FXn7%0uPl3{B$qJ3ygNU zYhnce689q)%B{G%4qsGb1)@62B2u8&JEdmXXpiQkg>}y^Adws|kjbXKcp9%zuR|cG`_N=X?*W?;{}AJ*)ma81*>yBv4E;7m@N~-&?DbIAmHz;uNb&} zhviCjcs{qiFg$K-od?>2lZ|zhc@?X3j54pripK5(%YT(BS}HYcr(PHM@@h~gwAABa zJ6|tgz4z6RN|m#Bo3X)ydw+D7k9@sAzAmp?-daG6fGk3%z;Rq)Fqc%STYY*yc**q9>M~SP7HjI4=HYEomCf!)D;OEcPSRSB!}T z%$5m&+bwqhLc<~Cr?gZq-bwlURQoKas7#si&+!X{6};Yc1$rm|0000PG}g-E;-EGB}gc)Wa;$A4@=asgP{oR7+tvJ{?K zo|0bzNrTA^fZX9AZ(&D-_ib@~*huV_5Z1%F9-YqvhY_Sx-A7ybo+%ZMHjC;Jxz0y;rzKWasrG#DKq0P642%5Sw_ zHSXe`=VWL-3?!^v0BE|=q$4pB!j~4#ssLZ_-|_zs&G1jasSe<_`Y`smknXq55W+jg zL4-m?8hC`N18P@5`1bV47&X6>Ite)hA1MmC~-!YU){`5 z_fj383xMF4T?L&1Y@%^FW9@*;<2H9ZfOnv92YvvstK%Va6i{gZ0000*55Fo~A$pF1LdL4CP`T|MiQm{^DO8u4?>e`Lvrp zM>MR;e`q@2PBFId^>vuSeCU~xft}^X*^NNJ=++O>r~x#kA&P;)rb5DVcEiup3_#%N L>gTe~DWM4frIadS 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 index 2414fe500b9c2b40ebef5cb62e86645fad9e8d47..b98a250319129bc36ed70a9341e71f5f4e4f64e7 100644 GIT binary patch delta 177 zcmZ3)c#Cm@Vf_?O7srr@*5m{U*2M`TJxzfQia++8c<~Mo%$Od_W$^T^fiYz)I2q2bIP&Q>KE>LQdI)7*nrFJpa#$t b4bK=DqSwR}Fu8BHW&i?DS3j3^P6*55Fo~A$pE;mNW2j`ex{&!s$^*`~;s+6|>Pi7r; z>1%z?XP=reJLed~VogRDONQC4{(f)V7H0Cj)0yyZzt+r$_C3q`*TM}s=)u5XxW|xR The^(o0SG)@{an^LB{Ts5@xm|M 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 index 1784e7f62362b27f1e9b8614bd602746862d5267..a39f0598d03c6f22fa25e23b35dbc366e3d6659e 100644 GIT binary patch delta 188 zcmcb_c!P0*NGZx^prw85kHQdAc};M6@O+NU$zW5b0?OY+(NL|Ns1lpOqH> z2ZHp3goFiB(y|5*i;vvCU%%p<8+*?U7JGf8U-r5GrP=Jm&Ddtz*YI3P`0TAwKe_1E zN#78TJ%9hUH#X00Y>b}JoRyO^?QzM0@^kq-jgGH)PKVbXGCj@5ds$_Lnt{h$$8(># nu1%1G+HAn(c2Gk?gn{9G^^AOjP-70D^B6o`{an^LB{Ts5+xt*G delta 182 zcmcb?c!_a>O8rbv7srqY_v93bgaZ}_z8UveC77_dIYWqwmIHHHFa2Mx`!xMT*S`}C zi+-2IE8j|X(RNw4<$~^(3A>Ly2%mLe!^&#LIefFdV{DzLFn4Uca3XBh!#fX`^C--k z5} 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 deleted file mode 100644 index d68f85845e5ab392a34b0eebbeb210fc8129f981..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 553 zcmV+^0@nSBP)EX>4Tx04R}tkv&MmKpe$iQ%glEB6d)5$WWauii$W&6^me@v=v%)FuC+YXws0R zxHt-~1qVMCs}3&Cx;nTDg5U>;lcSTOi`{MF0Z`p%-HkGxbDzAp_6xbq^n3@1i`*``n+STgjUY@QK8;OgAjzb>itw zOXs{#9A+g+AwDM_HRyuGk6f2se&bwpSm2pqBa@mV4ik&THkR9%l?;`5ia4UE8s!UF zmle)ioYiubHSft^7|LtQX|B^8LL7@oAPEsNs@Omo7NWFjq?kz2e$2x^==hW5lF79J zMvi$@ph9x|;D7MDTeC1Z;UpV2qvfWBLxYt`+oxsTHaAVXa(-2exN zz(|p@*F4_c+1}f~XPW)}0Fwf8w7;AxtN;K2Ur9tkR9J=W(lHHyKoCUH2{sM^v}{En zlr#vy00yqX6cvu}0U?V8iX+?nCt&i6kpKYr;ArIMBHtu0y%A_P)EX>4Tx04R}tkv&MmKpe$iQ%glEB6d)5$WWauii$W&6^me@v=v%)FuC+YXws0R zxHt-~1qVMCs}3&Cx;nTDg5U>;lcSTOi`{MF0Z`p%-HkGxbDzAp_6xbq^n3@1i`*``n+STgjUY@QK8;OgAjzb>itw zOXs{#9A+g+AwDM_HRyuGk6f2se&bwpSm2pqBa@mV4ik&THkR9%l?;`5ia4UE8s!UF zmle)ioYiubHSft^7|LtQX|B^8LL7@oAPEsNs@Omo7NWFjq?kz2e$2x^==hW5lF79J zMvi$@ph9x|;D7MDTeC1Z;UpV2qvfWBLxYt`+oxsTHaAVXa(-2exN zz(|p@*F4_c+1}f~XPW)}0Fwf8w7;AxtN;K2a7jc#R9J;$U>F6XU=)mkQ7{UK02?$I z{@)K{_+QGv@E;eOT(g;|=}?+E;FmQ6!(T6HhTlfG*)(;4k*zd?jD;(Ml_736O&vf> zz(|au0wae1R)!1=$Ie6e*w_=!5ogvY7zLwX6pVsVFbdEC07WV(eb9>nF8}}l07*qo IM6N<$g3^ioQ~&?~ 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 deleted file mode 100644 index 94a2272c80048506e931774b2a3fa041b1eee9ee..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 569 zcmV-90>=G`P)EX>4Tx04R}tkv&MmKpe$iQ%glEB6d)5$WWauii$W&6^me@v=v%)FuC+YXws0R zxHt-~1qVMCs}3&Cx;nTDg5U>;lcSTOi`{MF0Z`p%-HkGxbDzAp_6xbq^n3@1i`*``n+STgjUY@QK8;OgAjzb>itw zOXs{#9A+g+AwDM_HRyuGk6f2se&bwpSm2pqBa@mV4ik&THkR9%l?;`5ia4UE8s!UF zmle)ioYiubHSft^7|LtQX|B^8LL7@oAPEsNs@Omo7NWFjq?kz2e$2x^==hW5lF79J zMvi$@ph9x|;D7MDTeC1Z;UpV2qvfWBLxYt`+oxsTHaAVXa(-2exN zz(|p@*F4_c+1}f~XPW)}0Fwf8w7;AxtN;K2Z%IT!R9J;$U>F6XU=)mkQ7{UK02?$I z{@)K{_+QGv@SjvRA+wq2;Q@*r@XMNk;jfo8!*3(f*;H|Wk*zd?jD;(Ml_BYDsyKj_ zfRPwQ1x5`2tqd6$j-7|_NnuYoN1Pp_U=)mkQ7{Td!N>&wwq-*fUcKXC00000NkvXX Hu0mjfYr6k{ 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 b2728ab02b..942f06d0b8 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 vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/ca674eff9d23e04357b7609ef7e07eadfc1a993f, modified by ps3moira (github)", "size": { "x": 32, "y": 32 @@ -10,9 +10,6 @@ { "name": "base" }, - { - "name": "base-b" - }, { "name": "mag-1" }, @@ -21,15 +18,6 @@ }, { "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/base-10x24.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/base-10x24.png deleted file mode 100644 index 225ec3175894fe9e531626fdd9cc156db69d2139..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 355 zcmV-p0i6DcP)I_N7>Oo^jf9_IuTx1ww0*5L#DqJM zlyJ`LqYs=s&oN{sgVINVzZJ;Rke#AE8$=*WL*{#~4Yt032oKf^*w_WKfbGh)1U|uS z?1EC@SC#WPvQbQd7iHaDuXaaAS70hzteO_Sr+x^R%+iqQibw@iDasnY=XSebA|h=8 z0Gy&d3)TxITnraUZVw#dvsA)p63XD>J(MT~4)NJZZVxhCCDsr59T59$3l0!l!21|% zH<-@3YYV7Ebm7JVqKIkbJmh0oH7&%`@NQif4iE-W zKm6;*hf`73#&9Enz6bzg_*Vk9@}GajqrfO&GcRGAtzKlog>wJ^002ovPDHLkV1iWl BlI;Kh diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/base-b.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/base-b.png deleted file mode 100644 index 010fae34ad47291254adaf6177d6d7f684947fb6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 292 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJ*PbqpAr*6yZ3-SR9Clz@#<;ci z3gcoviP8fJ1q|GFCnt5?`hR7^lI4qMPSjyH00I`aHsctZ>Q0^Ruf1O-uC0&n4Ci$O z%iO6hnVZ8dz{EU{jqMJji>qUGI)7x_e5=A)MeJ+h_fJZ2TEz08^uX)q>m|;deXF_Y z!IP8CPplgn87DC_F&{p;Y0iuZhi7w$>&@v5Y5>~68KWPI;St~t5%v`q1+!fq$q?6I5mBF%h;E^l?LtSpzp)XQrZUVi{;OXk;vd$@?2>>}daIOFV diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/base.png index 1685543539f9418a3a94ed59046ef494269f66b1..b9cf1dcee468afb81e31a83e9993d26d03b1def0 100644 GIT binary patch delta 504 zcmVPx$%Sl8*R9J=WR!vI+Q4~E=)DR?YY-R#6 zanU9+y)5l7p)C?gI3L{*!(#eI@Y$8o6sMkVXsX5M_ z5ZcVy%*>l}?>+Zp-W$Mz1q=TSn;G)tl#fxl`Kud}?|w7EgMYzkDjfhAMFdH}VI#!}<1vcV-cAzp)H=+7V4Y}MU zDo?NQI_)GIT>+b`Gc2!a5JfNQFExyA?*IUTTR)C->(4FEhqo&b#Suty0NLCrlz ze)d3@7Oc&WvE6LR7E>Z@Hj#wv@wB`TrNTI0%6wk|pm9H>U-1QD->BK00e}(!0000{IOGAT0Qw=saL`y@MP>*QwajqOuv3Kt^!{weuuikt9zw zn^+$dfO0@Npd1+NKp2K44zW0n2j{@^gAPYgR9cn=MNvSSrhjah4h4}0An_zgz%)%T z41)pe-dwZm{==hGPN~gJaTG%Uio@iN-KO6^QXs+r*mKu)0V}5<0BnbC+pu$XQolox z`_DO?K4(icgaA<7ah$r}q>|@3_`Y9@KOI#71akZS0WT#ih2R48RgNNEae_jKEX!ba zdCne<0)W-)x_{0RVhd3GqIhHLX4PHsQ30sJjra;S*Jj|XuC)GT`o#Yg0F!qiu;M{v!Xdfg&M0VwE8D)UVG8<0sZvR45p2PSu5 Z0X1f}A#t3`&;S4c07*qoM6N<$f&k*jzLEd{ 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 c9f029f32a3f3b60421403eb401f88ff6434a890..c5e936e0ae00b4118c759fdac5a6bb5bc14fab4a 100644 GIT binary patch delta 490 zcmVt ztRyMK=fvX%U6A;Z>$1yloQn<%JTq)$QuD-NVzJo4atE`Lp%PCMM-)|~d?D+y!g-6c zTB)(tJ^2emd2J=lb(+J7V+jc)AwotCWmI4xN~=bSi4^U}Jp4nBKS?f`TxBqFET9S% zlH&*egWuhng{et5DHMML0x!1xF$x5Cfo9#dzmILZc>?&Kfh(=;uQq_$PtxmcEpi0( zZ37qAZB5<-E_Z;zCtWfmNAlAY3I*W(jJ_!c^xpzKYi@6?eVjf38R}~J1~@nb#)_1^ z?(y#K&ffk#)9UXBIXZHX+~_Q>00013Nkl0I9#hqPg5cPh$p1^5c>fn+a delta 497 zcmV}%`|Xd6xINKS!^UHyPj)iRYMZSj2xD#50?g&Uv3W z%u13%d`>)W&;^Mfxh}i>#<}RQz%#=}CN)nSCKihwEO#&~87lEKaYRuy$``UOE1b7D ztCbpS-IKpCl-E|$T&FpVIF^t=5+Y>OP(}q7qO@wHm`Krn%)>wA_><(4$yEj;#{#NQ zAvu2VKlt6PS(uu1lR|$nAn;<_A0t3;7iiXP`}^3onsb!v*z~J+Q;bwkfE-YZ-9eCV6;ft z>mKj!?(FT~Gp+u90BwF6XU=(GHf>AIEMgf^%RWieW zYM8@Bj;0?s68RMmx!O#00000NkvXXu0mjfq9Wnk 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 index 84725cfd32184f4ac0afd44571cbeceeb5217096..71e225a8d128aff9ba58eff53e7b1b398280e944 100644 GIT binary patch delta 487 zcmVt ztRyMK=fvX%U6A;Z>$1yloQn<%JTq)$QuD-NVzJo4atE`Lp%PCMM-)|~d?D+y!g-6c zTB)(tJ^2emd2J=lb(+J7V+jc)AwotCWmI4xN~=bSi4^U}Jp4nBKS?f`TxBqFET9S% zlH&*egWuhng{et5DHMML0x!1xF$x5Cfo9#dzmILZc>?&Kfh(=;uQq_$PtxmcEpi0( zZ37qAZB5<-E_Z;zCtWfmNAlAY3I*W(jJ_!c^xpzKYi@6?eVjf38R}~J1~@nb#)_1^ z?(y#K&ffk#)9UXBIXZHX+~_Q>00010Nkl}%`|Xd6xINKS!^UHyPj)iRYMZSj2xD#50?g&Uv3W z%u13%d`>)W&;^Mfxh}i>#<}RQz%#=}CN)nSCKihwEO#&~87lEKaYRuy$``UOE1b7D ztCbpS-IKpCl-E|$T&FpVIF^t=5+Y>OP(}q7qO@wHm`Krn%)>wA_><(4$yEj;#{#NQ zAvu2VKlt6PS(uu1lR|$nAn;<_A0t3;7iiXP`}^3onsb!v*z~J+Q;bwkfE-YZ-9eCV6;ft z>mKj!?(FT~Gp+u90BwzuK#M&F|0W9ou z16fiA0ybikBc!mg6t=LEfGM`LO|v!A-^@IiD0(h;b!A(iI^#lE0Q0+j^v+r#mJS+V~jBXcmtX6M4$tXSf&5~002ovPDHLkV1klZ9NGW? 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 index 532baa546b3c5bbf7bd40806509774e04ddfd482..5bf9d3a7a7047b528a14cdbaa5c7f7d68132b9ce 100644 GIT binary patch delta 122 zcmcb_wv1)N7RDlm7*7|+kcigg1PRu~2_ijBfd*V|RtYMh&WqdM)LU|@wYls6GZa|# zy4*%B!_IgmpGWWS`wN8Lo;mR4u@JMJ)wVYpf%B9#S)Qq%_`iJGdG~`FaC0&k7@F)& UZo8&`O=187Pgg&ebxsLQ093IrRsaA1 delta 425 zcmV;a0apH|1kwhuv;ltsh)G02R9J=WmOV%UVHn4M7p*0MTOU(XkZu(YA+AXvNFP%! zEk#>FOG`lnwngvI7q%=(PpyE!SYLsF~iYf&}-68}4}S{r&E_ z_l`$141-~2WTqF TE2QGx00000NkvXXu0mjf==;do 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 deleted file mode 100644 index 8b49392b77de26554c51dae3d1cbff5021ab6cd4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 550 zcmV+>0@?kEP)EX>4Tx04R}tkv&MmKpe$iQ%glEB6d)5$WWauii$W&6^me@v=v%)FuC+YXws0R zxHt-~1qVMCs}3&Cx;nTDg5U>;lcSTOi`{MF0Z`p%-HkGxbDzAp_6xbq^n3@1i`*``n+STgjUY@QK8;OgAjzb>itw zOXs{#9A+g+AwDM_HRyuGk6f2se&bwpSm2pqBa@mV4ik&THkR9%l?;`5ia4UE8s!UF zmle)ioYiubHSft^7|LtQX|B^8LL7@oAPEsNs@Omo7NWFjq?kz2e$2x^==hW5lF79J zMvi$@ph9x|;D7MDTeC1Z;UpV2qvfWBLxYt`+oxsTHaAVXa(-2exN zz(|p@*F4_c+1}f~XPW)}0Fwf8w7;AxtN;K2TuDShR9J;$U>F6XU=)mkQ7{Td!6={* ztV(A1|Kmo&{{gl9&I0NGtCAVWas(44miv_^Fg!W2o8jEyrwokxiHvl0fKJRLMr6y6 op1nh^QKMiKjDk@x3Pv~p0O^<@v-(1Z7XSbN07*qoM6N<$g8C@=XaE2J 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 deleted file mode 100644 index 80e504f560e71393f82e30b32974cafc621898cb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 643 zcmV-}0(||6P)EX>4Tx04R}tkv&MmKpe$iQ%glEB6d)5$WWauii$W&6^me@v=v%)FuC+YXws0R zxHt-~1qVMCs}3&Cx;nTDg5U>;lcSTOi`{MF0Z`p%-HkGxbDzAp_6xbq^n3@1i`*``n+STgjUY@QK8;OgAjzb>itw zOXs{#9A+g+AwDM_HRyuGk6f2se&bwpSm2pqBa@mV4ik&THkR9%l?;`5ia4UE8s!UF zmle)ioYiubHSft^7|LtQX|B^8LL7@oAPEsNs@Omo7NWFjq?kz2e$2x^==hW5lF79J zMvi$@ph9x|;D7MDTeC1Z;UpV2qvfWBLxYt`+oxsTHaAVXa(-2exN zz(|p@*F4_c+1}f~XPW)}0Fwf8w7;AxtN;K2xk*GpR9J;$U>F6XU=)mkQ7{Sy7%-Bm zVfCa$IQ!_?I}8&R9)|N*B{Td#@koo|pOi2ovN%4#M5+VuS?*Vwz>pRFk->`P@PA^> zAqhJ(_ df>AJX0RT0;Xd6z}ZuEX>4Tx04R}tkv&MmKpe$iQ%glEB6d)5$WWauii$W&6^me@v=v%)FuC+YXws0R zxHt-~1qVMCs}3&Cx;nTDg5U>;lcSTOi`{MF0Z`p%-HkGxbDzAp_6xbq^n3@1i`*``n+STgjUY@QK8;OgAjzb>itw zOXs{#9A+g+AwDM_HRyuGk6f2se&bwpSm2pqBa@mV4ik&THkR9%l?;`5ia4UE8s!UF zmle)ioYiubHSft^7|LtQX|B^8LL7@oAPEsNs@Omo7NWFjq?kz2e$2x^==hW5lF79J zMvi$@ph9x|;D7MDTeC1Z;UpV2qvfWBLxYt`+oxsTHaAVXa(-2exN zz(|p@*F4_c+1}f~XPW)}0Fwf8w7;AxtN;K3Pf0{UR9J=Wma$92Kop0+l;FSN(oMxe zxAuRK4s~*Amke$W;!xsHap=^&OWbwH?h*)vE>%IY6@pOR9E9v~C?}zi+~s-_3i(Yp zg!g^-c<+c61OZj1Q7OF^*joYLbGg60sz$)~T)OS15qN2VEZph0jC4U+!1T>a3FN^| zbU`ZcUpE)Aik@N>_H76j;e7T}yhw0h% zfXj;?Es;Wj(Rj-2=}ih>FP?b`Kgo)8+fAhb)#^YVT%4`bp_QGDodmYKU=j{st9~eo znuLR74YTn*7iVw|z`@5PmBFJpVKkmf>ne8uAbNiV;OOMWIzEK;Vk4ppFD;NKGJAN` zf@=$8MRad2qP&JtoaDXEX>4Tx04R}tkv&MmKpe$iQ%glEB6d)5$WWauii$W&6^me@v=v%)FuC+YXws0R zxHt-~1qVMCs}3&Cx;nTDg5U>;lcSTOi`{MF0Z`p%-HkGxbDzAp_6xbq^n3@1i`*``n+STgjUY@QK8;OgAjzb>itw zOXs{#9A+g+AwDM_HRyuGk6f2se&bwpSm2pqBa@mV4ik&THkR9%l?;`5ia4UE8s!UF zmle)ioYiubHSft^7|LtQX|B^8LL7@oAPEsNs@Omo7NWFjq?kz2e$2x^==hW5lF79J zMvi$@ph9x|;D7MDTeC1Z;UpV2qvfWBLxYt`+oxsTHaAVXa(-2exN zz(|p@*F4_c+1}f~XPW)}0Fwf8w7;AxtN;K2RY^oaR9J=W&Y=x}KoAAd384#U0u;g1 z4<*qDp5SNz33VKnL!H>5=9w`+n*~Wyfw?E0OOxJ>x?Pow#tzzH%KGaA0N1`|jZ&A4 hwgce)RFWh~F&>H<7vj7Ty{iBK002ovPDHLkV1k|}^>hFL 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 deleted file mode 100644 index 8fd938dce0bef410c8cd7f9897c7d089989ac4df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 541 zcmV+&0^EX>4Tx04R}tkv&MmKpe$iQ%glEB6d)5$WWauii$W&6^me@v=v%)FuC+YXws0R zxHt-~1qVMCs}3&Cx;nTDg5U>;lcSTOi`{MF0Z`p%-HkGxbDzAp_6xbq^n3@1i`*``n+STgjUY@QK8;OgAjzb>itw zOXs{#9A+g+AwDM_HRyuGk6f2se&bwpSm2pqBa@mV4ik&THkR9%l?;`5ia4UE8s!UF zmle)ioYiubHSft^7|LtQX|B^8LL7@oAPEsNs@Omo7NWFjq?kz2e$2x^==hW5lF79J zMvi$@ph9x|;D7MDTeC1Z;UpV2qvfWBLxYt`+oxsTHaAVXa(-2exN zz(|p@*F4_c+1}f~XPW)}0Fwf8w7;AxtN;K2Q%OWYR9J=W&an|dP!t8x9it1HATo0O zC`li3Bh!G8I=&X}4`h3iP42vTAV~_WBjw(@lC<`AlZ@s8`e}*!%L4$ zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|uk{c-u{m&`(2uMN*j>BhFZm`GS2edu5XOc-~ z^JBLv-EKpJ5R#sF&~E(wZMwg3u~>3JEyWz8#}#tOTu@2=T&E--_W!>4>caa|ySsNV zngpes*ElZuf_8lyVBu=7&+X3Ir6*mA$UjXjYvxt&mywqu;nPmnyUW*r5+B^T9&VS~ zn_DmM!4QnD&?oG82#MeSd}fmK6g-N57F~k43*J`?Nq8SWcMshM0le2<;^%Lc$y+#% zqMKXsB~Dj6=}WuZr{O1yi0?D=qeTdG@{iX;{O0Uw&T+geAv%OBUQXRy*)<4Ogj4pg zh}-Ze>bCEUJNe=pQ0s8DI$!aUi4pNhfjSkMGRhG5x=iFNQ>e6(aBLORx z+Ip;=OZB5RhqqE@#R}_E=SWs0TZprDtg;>k6tp<%04+?~7B&euK=fI9n}H!zs8@BC zI#w)K#ZfCnDmGf2Jr0o3=>AoY_%0KSG%9GbP7q1#7->4eN8M6W0`<&Fb!tsPXAM#j z3#y2RM(E=7V94E!2P@o{%)ov*L+A_tQ|T2{J1l$M0Nij`XVp(iodSdU(ufN7TNkZl zjRbSlGTa1LRHURH_d)OS3g2}#XLzL^ zOo%18DiLSMbd1ffT;o0^BiZl)u}LT+vY!Ya0f^qRVHM!sbX?nZNAb5F6nTBct&Zb> zfA7qB*>P+*VYtn7T8iSRJ1#h?+&uUJ3@@d-Rb~cF^b(iWUE&l~-)t($-@IAU&latA zcRIc=bkqBp)$Ui!-&WVO&c7f<*gWv%h1jh0btiw*f@Mc-rGj6{Mmn^D$IRbkk0_0T zqoU>5L2=FB2D)n`J`X?)*j*wBu=f_NheL;P!TI?v?0(0-|3}gPQIX6!T?ezce*kyK zu25=XE_eU{0flKpLr_UWLm+T+Z)Rz1WdHzpoPCi!NW(xJ#a~lPMJgh8P;tmmoh*uq zI7$_ZV4<`XT6HkF^h0RUkfgXc3a$kQKNhPFF3!3-xC(;c2Z)oSlcI~1_`jskBF2N` ze!RQ)xO)c(^)ge3t5*H&Rd+-a+Njj$zK@CYs+b_(;Pw^i%1{|5i+XSKp7UI zv}&Z7NYQ@G!$0WwljM@gwE;$sc~qc6a{SW+rMX;{rv!w0&=vsPvC0+000JJOGiWi z{{a60|De66lK=n!32;bRa{vG?BLDy{BLR4&KXw2B00(qQO+^Rf1sM!C53N!lkN^Mx z{YgYYR9M4fJaFIu!$1Nih5-hn4j6U7r~?Mv0WA0=ODbxqVo6U&Gx;G97#PlA^Xu^c z6&d&blS5M_3aktn7-TG5$)c&22A-VQO%_d28i0Xg=NT9n7@m?xvr)kT-u)*T85kHC zyyKvJB56^z(+mvjS5oGH_3KwMtS4Xy&9dR^=dT#d&Fv|&;N;1Jl!d^(N7oqw1H;L( zoS2Zqn+p~$oQcA}c=i&*#j}^-Y;0*V2UBxV6~Qb$4nuFf3k0000)Nkl{_b>S`LI`K!| P00000NkvXXu0mjf$%ihs delta 285 zcmV+&0pk9O0k{H?B!B%$L_t(oM`L6dV8A%Q_A`t+U^E0qLtr!nMniyVA+Rk{{y(T# z_gemtBr{1;jIZ9fk*5Q8z`fU>!ODnr2-O?_vJ~bBm_v>|`OeUC_!V9|sOA8WUNiSnYP zNoz^Pk;n+e4cFb9xgIawh9b2-c*Rx+GmA&>(|wVWacpgRP_CsgWTE6PcZ0&4do jMjbF30;3@S02UA&ej)b7MPUE{002ovPDHLkV1fVuTw-=Q diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/rubber-b.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/rubber-b.png deleted file mode 100644 index cf04605a79b0de71bca79034d60b6cd99efadc63..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJcuyC{kcie~3D(64B0Wuk23&3j zH6%VZOq{}S;luhL{EL#;rbvj(SAUXsY5t*LwrQ8Nv~`Es^wv2N4%-Eu2}rEC=dmZ! wXGv6Fp5&%x2a{coLE1rP@#GyiaDag!&qn%;h5U*~K&u!$UHx3vIVCg!0D^il_5c6? diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/rubber.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/rubber.png deleted file mode 100644 index 5a75c53666330617d561ffa0f9f4e2d8ea6eee5f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 312 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJf1WOmArbD$DG~_>EDn4#?y*WR zVR3T?6Af943oh*VWWOS!K0w}Y(o7Z2W8wKH{H<8Z7#{zAo{)OPswIn$A(E?@<&2{I z`gti8`&aR=mklXqIPs~yvMk|q0^iTd=S+vsi}Qc5YSQ9!_-1)VP^fb9fj}o?_5(Vu z-%NKsH7R5`kuG!S5zl{C)xb+CW~Vb>F-&;)qL1OIrICWjp9e?0vL^G0F`fA3z^8b; zXp=0%C5|q(ln;;JdRt7Fn15JgvJ6vGqU(bzXZ02~JmQ$a?6Gmq8i9tLGS39+a*Hr({}e<^R$F}pA&Ibvg_d7LSW zEJ&u{@j2g3vJM;j^!#?i(njcWdPT2HY~IQr}^i?EO?!+K`BJ%7$6B<4Cy zWL58rQ@GE_!!tn!XsFk;r$<_3?z!w(@|eMku?T2G#mt5nvjayaJ}sQt$j8xkpndv% z!y^}T4^F+m@ue%fO1g8-G{ttVl}ptEZwlNkDsg`xw0swH2XECX>j#Ivy7REjDpHB` w$O#dMm7Ex@D9F^aSaxzCdyiGZ0$B!z?6BzmC8s8M07HPm)78&qol`;+0Njvx8UO$Q diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/base.png index ef44262042f0ef922d928d0561992b052fb0b6d1..8ee34cf21e0d3f8f941974561c9379e6217ff2c2 100644 GIT binary patch delta 480 zcmV<60U!S01Nj4xBYyw^b5ch_0Itp)=>Px$vq?ljR9J=WmBCBGP#njq!s=qA^B3IZaYY zZq!+v?>hi68VSQM(5SOi1SaA75Cs&|Og1eayF^O@JMK+N0>0M4B8e?SdSVZvZV1GFpe z2wncRr=N4rjiomO0KzoPWYcowAhPVsXplxjbUGX{93XswyXw6I0JXJ%6mDZ<0{}l? Wt(|*K!a4Z>0000^rtPS62Co@U_U z*2`KEY$zxMU=D!U4s!^|au5JHfLO~3Isj$~%prj`kSvDoh}UmF!9(Nb!tZ!fJ$kSa z%!bGsieja~A!4W@fZ_<41J2+0z|gn&DM@CMq!{KHm_S3^tmVK$AP10RInhyoE1|+1 x0+J`y=P)zL3IV+NkVMH*2aJZmXb1oR3I)O;BMg`E00000NkvXXu0mjf007=c%g+D+ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/incendiary.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/incendiary.png index 907b6040c276f1f2358c1d7df2f0955a37c964be..82278c4b7e931b73842f9c584e0fdcd10730bb34 100644 GIT binary patch delta 172 zcmV;d08{_`0muQ6B!2;OQb$4nuFf3k0001jNkl;1?{@4O}DjJ3UyWngf zv4WzWJ29% a`h*4hVjxXz(7A*F0000B*plO?foZCfgP}E(`K+TVjV&i2f!>xb|A41q1XX1%N;Guz-FO4rn|F;VcYsu zIPIax0qB;YJL2)9M+_^LucDm;u=yAk4Is-wfaVT>S%@4OFj>p#>HwHS7Oh$X&JDy^ z4pKu=8o-tl2}%Xa9YM)eRNwUImOfYA^b4S~@R81N7P a0EKB-A?Db$_W%F@07*qoM6N<$f&c*WZ(rpA 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 36c872a426860a18e3133cc6c0b069e4cd0d4a1f..5568c0496aaf06d92873d08b4023a5fffe7a1486 100644 GIT binary patch delta 115 zcmZ3)vVdj7R>tfwPZ!6Kh}Pr;3D(64B0Wuk23&4d2}_nG_R4Mg|5Rm$gxuaA#~b{v zzpv=Is;8D^<#6;Bb8}UnC|mF8A~rUywgZ1ye*RzbqXw$=poRo%GaCcLe`lpaoq#)z P3_#%N>gTe~DWM4ftU4`l delta 117 zcmZ3$vWR8FR>s^2PZ!6Kh}Pr;3D(64B0Wuk23&58k`Ipew*0?h)ZHm_dj6anXE$ig zY}D#gILT;m`n+u2sRW^%(;mF+8zwBO2>#B*1_Y}j?YP_yYCy~Yi!g{R5%U%9EYe^A N0#8>zmvv4FO#o_WDI5R* 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 index 025bec650e00863c13198bc49d43bdf7d618b6c0..8bc91cf1c2a3d5cd06e1245275245fa74407bd90 100644 GIT binary patch delta 121 zcmZo=UBkK1eNf|e^`G0?~nVFJYjM|l0w_M z`yVA%$DVm&wVlEb383CZfsg?Ve1vfVN!MC-|{QZ;YJ+PkT79j@G`e_ T5|UMa#Q+4Ju6{1-oD!MSe|eCu~)(*RiPu>AYVN()L>pbQTFXq|1#0?Ar4Gb1U z#@b%^N|mL9t1q4wIPVWAu1yZT8^Arf);CQ zI4HzPYG??tK?tG-BN`$KqrX6e7F!evocxhoL`xLeCIq(Bat-!ITIzc$h;Sb`jyt~h zKF@pa_kJkxc$`kg)=|18U&8n%DeqS2~|X#oL$NnJBH zeD@>r=5_Jrb(t3EX%?PN7FgQSD2o(u4wh?j-x32Saj7vC*^f~zcsf~NwuDk$pSwj$ zL~03S;D)ARXzI^3&dKt2<#M$qAUkvAB8dh?e+9KfTk5Iyh#RKRE4s$x{Z z#ap_>TUV#j`wBS0tABWMRJ7G`yjJKNtdF zcV`oTiN3!zj%howM6oG2NcMm~7{VV6k$w7LedD!e-Tp>p$rKz+ya|6N=vf2c>~IKx z<4}?8(+4}J=cdPMN}yTEX>4Tx04R}tkv&MmKpe$iQ%glEB6d)5$WWauii$W&6^me@v=v%)FuC+YXws0R zxHt-~1qVMCs}3&Cx;nTDg5U>;lcSTOi`{MF0Z`p%-HkGxbDzAp_6xbq^n3@1i`*``n+STgjUY@QK8;OgAjzb>itw zOXs{#9A+g+AwDM_HRyuGk6f2se&bwpSm2pqBa@mV4ik&THkR9%l?;`5ia4UE8s!UF zmle)ioYiubHSft^7|LtQX|B^8LL7@oAPEsNs@Omo7NWFjq?kz2e$2x^==hW5lF79J zMvi$@ph9x|;D7MDTeC1Z;UpV2qvfWBLxYt`+oxsTHaAVXa(-2exN zz(|p@*F4_c+1}f~XPW)}0Fwf8w7;AxtN;K2RY^oaR9J=W&Y=x}KoAAd384#U0u;g1 z4<*qDp5SNz33VKnL!H>5=9w`+n*~Wyfw?E0OOxJ>x?Pow#tzzH%KGaA0N1`|jZ&A4 hwgce)RFWh~F&>H<7vj7Ty{iBK002ovPDHLkV1k|}^>hFL 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 deleted file mode 100644 index 8fd938dce0bef410c8cd7f9897c7d089989ac4df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 541 zcmV+&0^EX>4Tx04R}tkv&MmKpe$iQ%glEB6d)5$WWauii$W&6^me@v=v%)FuC+YXws0R zxHt-~1qVMCs}3&Cx;nTDg5U>;lcSTOi`{MF0Z`p%-HkGxbDzAp_6xbq^n3@1i`*``n+STgjUY@QK8;OgAjzb>itw zOXs{#9A+g+AwDM_HRyuGk6f2se&bwpSm2pqBa@mV4ik&THkR9%l?;`5ia4UE8s!UF zmle)ioYiubHSft^7|LtQX|B^8LL7@oAPEsNs@Omo7NWFjq?kz2e$2x^==hW5lF79J zMvi$@ph9x|;D7MDTeC1Z;UpV2qvfWBLxYt`+oxsTHaAVXa(-2exN zz(|p@*F4_c+1}f~XPW)}0Fwf8w7;AxtN;K2Q%OWYR9J=W&an|dP!t8x9it1HATo0O zC`li3Bh!G8I=&X}4`h3iP42vTAV~_WBjw(@lC<`AlZ@s8`e}*!%L4$ zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|uk{c-u{m&`(2uMN*j>BhFZm`GS2edu5XOc-~ z^JBLv-EKpJ5R#sF&~E(wZMwg3u~>3JEyWz8#}#tOTu@2=T&E--_W!>4>caa|ySsNV zngpes*ElZuf_8lyVBu=7&+X3Ir6*mA$UjXjYvxt&mywqu;nPmnyUW*r5+B^T9&VS~ zn_DmM!4QnD&?oG82#MeSd}fmK6g-N57F~k43*J`?Nq8SWcMshM0le2<;^%Lc$y+#% zqMKXsB~Dj6=}WuZr{O1yi0?D=qeTdG@{iX;{O0Uw&T+geAv%OBUQXRy*)<4Ogj4pg zh}-Ze>bCEUJNe=pQ0s8DI$!aUi4pNhfjSkMGRhG5x=iFNQ>e6(aBLORx z+Ip;=OZB5RhqqE@#R}_E=SWs0TZprDtg;>k6tp<%04+?~7B&euK=fI9n}H!zs8@BC zI#w)K#ZfCnDmGf2Jr0o3=>AoY_%0KSG%9GbP7q1#7->4eN8M6W0`<&Fb!tsPXAM#j z3#y2RM(E=7V94E!2P@o{%)ov*L+A_tQ|T2{J1l$M0Nij`XVp(iodSdU(ufN7TNkZl zjRbSlGTa1LRHURH_d)OS3g2}#XLzL^ zOo%18DiLSMbd1ffT;o0^BiZl)u}LT+vY!Ya0f^qRVHM!sbX?nZNAb5F6nTBct&Zb> zfA7qB*>P+*VYtn7T8iSRJ1#h?+&uUJ3@@d-Rb~cF^b(iWUE&l~-)t($-@IAU&latA zcRIc=bkqBp)$Ui!-&WVO&c7f<*gWv%h1jh0btiw*f@Mc-rGj6{Mmn^D$IRbkk0_0T zqoU>5L2=FB2D)n`J`X?)*j*wBu=f_NheL;P!TI?v?0(0-|3}gPQIX6!T?ezce*kyK zu25=XE_eU{0flKpLr_UWLm+T+Z)Rz1WdHzpoPCi!NW(xJ#a~lPMJgh8P;tmmoh*uq zI7$_ZV4<`XT6HkF^h0RUkfgXc3a$kQKNhPFF3!3-xC(;c2Z)oSlcI~1_`jskBF2N` ze!RQ)xO)c(^)ge3t5*H&Rd+-a+Njj$zK@CYs+b_(;Pw^i%1{|5i+XSKp7UI zv}&Z7NYQ@G!$0WwljM@gwE;$sc~qc6a{SW+rMX;{rv!w0&=vsPvC0+000JJOGiWi z{{a60|De66lK=n!32;bRa{vG?BLDy{BLR4&KXw2B00(qQO+^Rf1sM!C53N!lkN^Mx z{YgYYR9M4fJaFIu!$1Nih5-hn4j6U7r~?Mv0WA0=ODbxqVo6U&Gx;G97#PlA^Xu^c z6&d&blS5M_3aktn7-TG5$)c&22A-VQO%_d28i0Xg=NT9n7@m?xvr)kT-u)*T85kHC zyyKvJB56^z(+mvjS5oGH_3KwMtS4Xy&9dR^=dT#d&Fv|&;N;1Jl!d^(N7oqw1H;L( zoS2Zqn+p~$oQcA}c=i&*#j}^-Y;;fohw%(- zz#z=QKFq){NE9xpNEf{%4*5MPDSS%vxi$dC7-NhvKXzCxrj&LKW9AuSyvjW8n(!oC ztDm&u?c_OUwf;`Ha}FZ%S_8~Hi3p{X+n&9)5xM{?qKs`RyGd vf?Dg{K%3s00000NkvXXu0mjfJ1$iC delta 218 zcmcc1_>FObO8p*B7srqY_v93bgaZ}_z8UveC77_dIRl9{e-59I6Mpb(g%+3XQ8*c_ zqIoPl=l+SyjMfR~*P17!9$H(MVOqA&E+#YXyN2H9_9tan{^43~ zD`LrT*Qmt3!Rg`A>-AfT8O-DlFJcs9H7RE}EDn4#?y*WR zVR3T?5^eq*9#4FK@oR;~`F^ZRlVD)z79Uv4X6$#B=G#J$1k;qz|xEyWCG@`o2Oim{rMGn{dH za-kuT&u_{WKE^L|7*F>diQo%z4wO1DO*fHG;Ysm~xLFnr5vMbSn3@t@|9?!i{t~db tietj96SAcTGB|qLfCNtk2Lr?VT@i}+bv;#qK4I{5^>bP0l+eV$001HESX=-A diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/uranium.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/uranium.png index 7fefe0c6b9f7fb00f70ecb9e3fcc2c5c7b3fd46e..bcf68ecf45e9c67db590eb6ce6ef691c5ae88006 100644 GIT binary patch delta 167 zcmV;Y09gOk0mA{1B!2;OQb$4nuFf3k0001eNklh=_>(Bz2k z8k*Hc0l>G4q!ff9TEKY&wzyZ0EzIT(?SZM$!-t{`0KnXZTObRp=Y6Zua3Z2lSODD{ VAPR3TZ~p)Q002ovPDHLkV1nsYM7#h1 delta 185 zcmX@ic$IO2O8p#97srr@!^sH}tcw#wdYS?aVjPZqY56aBS@_@NRs9pQ^ekR~ncvvh zsQ74#3^NcM?mENT^QD;KO3@Sn#Y>7kA)D`1$Sa#2&-nT`X~(uN9Dda^Ry->%X;)}v zvU8ZpJVB?~nn_pp!Zk(%_XUPx$>`6pHR9J=WmQ70=Q51$BwP>2+R4Rdt z5Xulr3pE;S&7uo!6_M9)T>`UhID8*wH50e-B4l&Vozfl7uT?Ji9R5^M-9 ziIui!Zx?oG)XdBo5ZuhOxm@OayywjQf`EX4E2hnladIf3q<^;gy@DwAH9yHysRvSX z03{J25|A89sK-x6#hJG@vrOG?0}`Gh#2wh$%!&n^CYK=+U{^7j9#@Y-RZsiwa2JiE zUzaD~eDKS}w*Y|74)+%SJ`ryge**qk`{WxTA0FMF7UI=1(H~Xm!I)?DHfwud(0fkB zzTN%o=p^dEM1Ox&*})|3&6pN?Pl$L#v)7Dr65&~npVQA~Alzt94nV$CZP^Le4!oQi zP%9;c^bk7waY!!rfy(!v#3P!>r^D&PtLMY&WBD80ig6=+oyeO-MxK45Hn($TjB6%w z&7?NBL*rqRvE&Oa2)~6NVe>z~A zW{utn!|>z_3_bwjmSs^81oHzpj#C?kL0Ohjnx^vth~gaGDSsfON&s=&wke9DgRwCS zfGED*ZmFuONg<9pz~V`g9Ei3d%CcBfoit4&-}eWDi~`-6#znSmv>F}5j(LzhSVSDNc8}hfE{1}{I(M!+x=X_ zNdbn64|0HAxb-}`x%e)D=)f59!2oRA6H)!)IK)G0tTFg#00u!cWoQ1cQTnqW-2+_* ioVvaOtPU*hz!!jn956o@c?JLg002ovPDHLkV1fXcK*X~E diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/cap.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/cap.png deleted file mode 100644 index 63a58f01fd31bb4836d126bf6dbab4cadf2327cb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJdQTU}kO=qW6p4fb76-l=_gE#E zu(&y+5FUJtv-Ru$%Rfw1iug+L>e& W!_Hle0y>4k)78&qol`;+0|NkKxIVG~ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/capbase.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/capbase.png index 153b43e441c891179d90b2b611b7dde80e7b2a39..e7112fd7ce79d8da14d6cd90e5ec54094e0fcb8e 100644 GIT binary patch delta 585 zcmV-P0=E6*1K|XaBYyw^b5ch_0Itp)=>Px%8%ab#R9J=WmN94(aTvvaHBDQKJxn0x z+Fpq!4q`(kL%}41P@ADpM5Q<=I+|Tj#LcB+hi;{lii?J$NTEZqBGfpjSiwpMbFuYO zV?tCElCxOO>52`><$qAO;PUVtM5X!+nt!7 zJbOfx4q%Fe5K7q>_nYDIeqm>AzCc=5m?`QlJ0aWwZN4BJAT2AxT%iEgDF!DL^YXU8 zCBLV;li$@pdl#U-_+G+s0DumU{pf6M3onZ^q@uE;$|7rfz=`?TsR3d0R8%%cJrdW? z9JLK0bOouXY=8D1?&9X7*FtM+@go7rni=!K^5=%ymIa->{Va@nr2owUSXnRAD1>bX z?p+)*XNo%E@qVVq?gNlWB*F9Prt#*+ZvEzob{5`$u{8&qE2tMeTUsI+=|ojk0BY4LwOXy29DvoH zEf$xHwsR)DhUwEC0F+84g25o4aybA3Ya4W_3k23Si06wt{2zs?&?mViVQ@k*dygL? z{5;2pazY#5P^wi{nN1mgpcBYy#?Nkl81fjDjO`7??`QQIuYEjP1%2}Tl z0RPhgr?wg*J8tuR<^vdS0P(G3haNB7>;ZO8Hp0q5nR@pF>VH2BvIS7ZxpmWk&?*7M zw`-f!x%4K+MkWBNxL7Mt@HR>nVyXiy?%j4LM57SFFp&3KjTbFP)y-lbh!e-dQGn9! zGA%hawVNGdkVF6~1jN0YZ- zUYf;Z}TT0bnwjOezgR%%sYM z#YLRJ<%|=E6?#zk@Axl)NC18+>pVnK8vCvCcDdG?Z7Dj=Ns@-A-j(g_9%DN#y|-?+ e0{{R3pK<}m-61RK-xI9>0000a!oKXl5zQ(`met*li7$`@|uWRE! z$)+2%_1XS4b7Yve$~aDAcG%a+&8--zzb!!Fra%BkPY%0C*wugLCKu#)XfUwapAh_; zdsf9=KJ*g9*5865A6ZrVq)HEDaPU-cFo-ksPLfe%+Y#W-00f?{elF{r5}Fto0AQyz A)&Kwi 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 8b7d23dc6c4dc883b5a0abb72b32cfe591709269..6edae95812d8c65e99100265d464b75b246589f0 100644 GIT binary patch delta 113 zcmZol4*{;a-04?Rhc0nxA(_!hQ+VT zZPYUCgty8pNc!67XnUN?PdM3>7zz|i%uoM17}Ch}kqZ{HAtA7rn<29hL6 tmqsJ@tdSaDy~Jp|pGb`Zq{byl-#8hS8;qu^)D8du002ovPDHLkV1g#}BVzyn 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 index 6d2b4034e1f168c15cd752c69ff6b55a51d42dfe..cb9729751ebf3462944783f9081c56ff9ef2906b 100644 GIT binary patch delta 113 zcmbQkIGb^TVOFT8i(^PcYjT1F>*55Fo~A$pE;p-$B`%-;u>AbrANMDD!sLXc18&#f zSNL40QS*{nFfaM&f~2pE+P*zcd3Z!x92U2~srRa}<8nKw0X4#rnc>74HM>iWSuYuY Nz|+;wWt~$(698pxEpz|? delta 114 zcmbQuIEQh9VRo3Oi(^PcYjT1F>*55Fo~A$pE;p-$CDR;NPm=sMzhcSJ13++L`){eM zXO3no8vQ=r+w#9$%;Uei*z%Q6Pl)x&oK8$|&^`Wa0^`OSsP=;!7#Wsjy2TjO??1=@ N1fH&bF6*2UngCP*55Fo~A$pE;p+Ll~Cu!?QiNWIn~*55Fo~A$pE;b2+psWL{QriBj%VioG0Ku2H``k8F zidZIu8Xd0Re~G0{UA@eBj`g1@jY91cQh)YKbN+v?GvQzVIk~NKo+UWw9)C80abpd{ dG`E8r7#V`vBa~z(rI#`Qfv2mV%Q~loCII1kGW-Al diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-cap-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-cap-1.png new file mode 100644 index 0000000000000000000000000000000000000000..e134075bcc0448374f8d705873951733f161d74b GIT binary patch literal 135 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}j-D=#ArY;~ z2@D{weQv`RXUeuRk>qYBg9H YVwWkF#Az+K3^a_v)78&qol`;+0Jmr=P5=M^ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-cap-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-cap-2.png new file mode 100644 index 0000000000000000000000000000000000000000..f75e4eba6e0c707e3a7839ed0c5359c302a10ab9 GIT binary patch literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}(Vi}jArY;~ z2@xCLIFPRN5vsn-ST^%hU z^0d|wmF0C0u} X5pE?b=^8(u00000NkvXXu0mjf`mQUd delta 106 zcmV-w0G0oe0fzyQBx6oVL_t(o!|l?+2>>w&L{Uj8TS96{KepynmK;(+7GW;`fk$N+ zi~s-tz@w_#o%hD;f~3|ELUjv!x{ec;=>JE|fOVS>?C4FCWD M07*qoM6N<$f*h_aP5=M^ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/practice.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/practice.png index 7aa10042614a36d7b0c2ee1a19b61cdff5b74168..4d5e7f4cd0e4b4daeb7badd408a400cda9e2b71a 100644 GIT binary patch delta 109 zcmV-z0FwW@0g3^TBxV6~Qb$4nuFf3k0000)Nkl{_b>S`LI`K!| P00000NkvXXu0mjf$@MO` delta 158 zcmeBT+{HLSrM}+N#W5tpJvl`p;ef?~Z^k`V2_`IV&M1TjU!!!T)qhj9Sj9;Bb#447 z*?d1v`0;*`+93yB_X$rKCgc~D?NNx--xi>7Qy_q&Cx`vYjjq4bAEZg`&|qM-KOv~w z9zRj0HpG+p$~*UfqvBI6vaT>LRy25^$RN&;7$l?kRps(=1|aZs^>bP0l+eV$000F+ BIiLUl diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/rubber.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/rubber.png deleted file mode 100644 index 020a8d3851d831e7949606ddae7a7e59da0f6fad..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJdQTU}kO=qW6p4fb76-l=_gE#E zu(&y+5FUJtKRw(3*`L|094Wu9jsGN@=M&#w=hr12aL{$1@RVUfew@!KkW>!2?AGhBPf1 XMOT~5IG|G)JYD@<);T3KF)#oC4z)Wq diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/uranium.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/uranium.png index 90238cf3c27596debbca11238774ce8ad68c6817..93af337b36100b55ae8f77f44785c0e4b72dc10e 100644 GIT binary patch delta 117 zcmV-*0E+*D0g?fbByIt7Qb$4nuFf3k0000?NklubgtK0Q^+8b4gWYviFgc{aPa_Grg7VjQfb~%=B*GZ3h4V0N(Tf XMyMmnuNXYW00000NkvXXu0mjf?qo3# delta 101 zcmbQl*u*$NCC<~+#W5t}aB_kK>*55Fo~A$pF1Ldk609msckVv@&whD%Yr^n zGG^(N%t~~Sb?`O#BD3J?_v{D7O<`Nk{=fJMq%Dz|!Onum)bqH(dPx$&PhZ;R9J=WmOV?uP!xvWs%Q~fy3{s8 zsilL9wMDU@h*d)=*{rMJfAA;x2Xu9mZZ3XIMYLZM5CTd?9Gu#iq1G;9wWy%iL9SYD zk`obJ@+`^CJsJ<}j~oPP*=-F(e3JrSnmSlRtJqy5dV$pHXmwb8K?h8m!hb^*cT z{M{lna+=8}I*zwOmA2=NUM~)0BjY x@3aO~RU;=S3E(0qcAWie&eD&Ljg8H}@&@UXsbRZf&t(7r002ovPDHLkV1iC$>RkW; delta 458 zcmV;*0X6=V1mgpcBYy#?Nkl;CpjrtBC)^d> zlVgELGqzwS)^f0;iLDJgi#`7f3-U3%egBE!1 zCCGK#Pm%0%n3;Gr26>u6s#t496gR*e0Ll%NSWYkmU_-W|I|No1P-;2R4nTJZh))g6 zNp=9XY(%LT*@=fzi-}5v)UpJhIin#k8Ug^(Y~LX*ky>E@0000YM z#YLRJ<%|=E6?#zk@Axl)NC18+>pVnK8vCvCcDdG?Z7Dj=Ns@-A-j(g_9%DN#y|-?+ e0{{R3pK<}m-61RK-xI9>0000_B22LXiV-S&rN|i~%R!Ezi330eqx%-!=dfs?nPmfD7GMi@Vl4-$BRdVC zXGxGlU@4!Npoi(Fngc)v!U`io!H(>Bsyl!b%c&X#Aj1l)YX9TQ^VmvKs)hhLt*cQ7 mjE2By2#kinXb6mk001X-c_EVbo!S5Z002ovPDHLkV1fYbglF3T diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/incendiarydisplay.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/incendiarydisplay.png index 1d8de97957ef2eb23d269a003d60aa48d14e6362..654a600e2baa13d23a58ab5139d462d1b143b6ed 100644 GIT binary patch delta 589 zcmV-T00%Y5lAgTcG$_81Aj3ZIc+ua=}=!cmwtVOK?J@o z&-eK}&+~b|pPyeCGGxgAgg@XB{(wgSBIVWzK&Y|PaoL>uL4U+Up&*U=Aqzo0t1TA~ z9^NMu3eqk9$53B%vf?w*2%kRWNb!zEZgK6pr`>)!{^s=tNxP2af*`w@)6|eQkloCY za_d;!7Wf0l;@#p&`|q@8W5VF*0LH% zN?!u`TL921ZhukVD|1m_VXs>1SzfwOg>PTZ*1+tfRU~{iT;YA(sc_#iy?cb$SZ8i( zLUTE!4&m&iRVXF{QJ3Izxy4nhUb9T^9-){FIL+gX8Ar($YAmI9x@z?`Ap4-4#A~d# z#Z`Kl&^(0mNv~Kg2xg)YDdA@0fK28irTs&k=5eVpJ%0@>+`A#Ng&G!%lV;<9D^H#R z5PE!^IP>UhNBzb2T`ZQ%SQQ`X%qtQ;8_;|9ps@vWQxjq-y`zgKV&dk?8j8cw(LTK% z;qC2>b_r0*=XsxqVO12$r4p^;7K+KxQ(SWev<6MDN4nOZIr1Ix+K8E#Y3-MApm#t; zow53TvPP~_sZ{$u!ys`B;)$5B+il!&KmTjbyPbhTp(rgbWk59{(@$k}Wo@9J+>jwd b{wcozJ(vs_Xn*pT00000NkvXXu0mjfNf;rM delta 434 zcmV;j0Zsn$1lR+RFn921BK$)CqtEp*P*IF(s0-fMfit=@>>wjHEh9Y2u1IUUv2MKrA zc3VWI6ou2Xb1@WwUhqbqbltR$C4p}6^7w%i94yShj^86zMh~I(12lqV;2_z79lu8e z)<&B5?%Hl!>y7Yy;fBq?`e24I8dAlga)%c5l89Hi&(+&RWZ``aL_?}ra%I@q3scFa z=pKERZz<+OeF7w z0!ER>&H;+0cgt`v8Ny=eo#aWO=X&ZgZy63I9WWFZ04tH8cc5^P{2}qL`kE)(AmDcF c*!dUv1bvawWZ)!Y`v3p{07*qoM6N<$f@lfSwg3PC 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 43d1f0f5f71c53b309d385fef54bcf908453841a..ce3c6c42ec7f2c424ecca8f7d98a5cf50d5cb9e0 100644 GIT binary patch delta 114 zcmZ35Qf9iv3?YP_yYCw%}WM;52k_ubx{IZY% O2s~Z=T-G@yGywp$DJfn6 delta 125 zcmbQovXW)P7RJ&9PZ!6Kh}Pr;3D(64B0Wuk23&3jH58cFc%}XL|Jd!&f2HuX|C!T% z&SkyyKU~!~;0=RXknVSF--L>yB=f^N5Bp0>d=-{_`HErg49}hu)8uWd+k<|)AJl*t b$Hc}Uby8_^lgCF31|aZs^>bP0l+XkKp?NXC 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 index 5d6d61f5dbfb5be2a3b2ce127791c574801f9ee8..7e0cce6ea545ceed177bda54a94e936268ee54ee 100644 GIT binary patch delta 122 zcmcc1wv=VVX2v3h7*7|+kcigg1PRu~2_ijBfd*V|RtYMh&WqdM)LU|@wYls6GZa|# zy4*%B!_IgmpGWWS`wN8Lo;mR4u@JMJ)wVYpf%B9#S)Qq%_`iJGdG~`FaC0&k7@F)& UZo8&`O=187Pgg&ebxsLQ09gVrUjP6A delta 437 zcmV;m0ZRU*1lDj zDJ~A;Aju$f(7`Spq#!M>I+TKwOCS`w^q-OA3wTvHgFbbFC$d9z-mhP5T{O zA`3kNC!8vhJ&s1E*Q+cqM_?Y@id6;Q1^$DRk|6{KJTze?o5A_L1j+zeum~IwtUx83 z!ST_ieNPo>rt~bl`U#x4GGxu_x@?oc@qqxsyBel^B3BBF3^fpSsBVaTATmkRo| zH^jpoI7L_?UO0c3fD_&@24F?TTL;MJhMwSnOB0rhDpE=kK$7%px0Ho9i~&gWj8yAg zdl#Z`R{;PpKbio5-Tf=Fw*y!r7Tn6+(-@kEQ2Ut zH+vJ$aKNPr&E5osm)6|*>zkZsIKcTe%xV_^fK(y|0H`h2yS~7=1)L%Pe1QuKEF=fp~00000NkvXXu0mjffA_!4 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 dd1e88cffc..1dbd2630ee 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 @@ -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/89456d18dd3e7c330839121e3c6bc8c609700137/icons/obj/ammo.dmi , tweaked by Alekshhh", + "copyright": "Taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/ca674eff9d23e04357b7609ef7e07eadfc1a993f, modified by ps3moira (github)", "size": { "x": 32, "y": 32 @@ -25,9 +25,6 @@ { "name": "practice" }, - { - "name": "rubber" - }, { "name": "uranium" } diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/practice.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/practice.png index 6911805ffae2069f358d869f068a74e6aa28e775..4d5e7f4cd0e4b4daeb7badd408a400cda9e2b71a 100644 GIT binary patch delta 109 zcmV-z0FwWR0*V2UBxV6~Qb$4nuFf3k0000)Nkl{_b>S`LI`K!| P00000NkvXXu0mjfwHGdi delta 236 zcmeBT>|mOpQh(0V#W5tpJvl`p;ef?~Z^k`V2_`IU{v19ZC;Z?)6=-Q4H{prqB$3Cb zHYuErz2b7+>nT9VimqWj)BB*{8WWG;y8dow}xdA#8knYz}?a+_ou@^&6u zqTOTuspP;*hGT54hq~AQU-6zHNtfNSO^uI1vgciN$^65M8q-qw8X_BXZ**>zSNvD}I9RPWJzn{aAxLL=mPiB7>W!km`}NN!YkRJgVtTS= jotvzI6w_iw7{Q=*sZw#Fwtyi65O})!xvXEDn4#?y*WR zVQKT{@Oa|;i~m%hzS`4?Pc$cqJU+Ea;q=W=o&%Tc-^VaqK4R69#I6wC_r@Vf)@dSh zL1f>X3I6V827BVKwqKUpB-@bp^RSJz+fUE-11}klv9%sLFV4T>JwuW%`*O}G3x*Vf zUHKPl`MTL=Su&(CZc9+VRy4tC(`AOLX)Km3(>`@_R?VneWyz4Du*N`1ubgtK0Q^+8b4gWYviFgc{aPa_Grg7VjQfb~%=B*GZ3h4V0N(Tf XMyMmnuNXYW00000NkvXXu0mjf6xT6i delta 186 zcmbQlc#Uy_O8s0<7srr@!^sH}tcw#wc*F$^Z6DSj`O@-#$*bfg)1GRdk#oGU{D}kz zgr(>uEa_&RpzAKEeo3)s%LWAr*6yZ3-SR9Clz@#<;ci z3gcoviP8fJ1q|GFC$H@~^#96+CA(J6pQyub00c`~B@AS2tJ`(D*Y<`=q^;fA5YFoe zmWkQ>ztx9bAk6qdX2JnkhY%5;93Pd_A68F4AN;N%GF#8UK)}Oe3d0`0ioc&Yo10tN zT*YK83Y%+ynjMN9qBj2o*u w)^V@9x8GrtatCA2;=fIS>^)WqN30nbju?d5s=6{;0fT_S)78&qol`;+04m>ckN^Mx diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/base-big.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/base-big.png new file mode 100644 index 0000000000000000000000000000000000000000..50491a417442877b5530da516991dd44c5bcbf00 GIT binary patch literal 506 zcmVPx$v`IukR9J=WmCsAUU>L{0Qdn3?7qtlz9t}ofutNteJ&3pZ4?KE^K>9-jPdn}} z2s=rK{B;zPqCY@v;F=>4Qz;?VK{jmeoj>+=YTwKD>>bbd^Zt0A7jWe0zst4ghiHsd zX&61VUQE3<7nyV12@QV$P|YBS0MQt$o}DMCIM=FmTpqdruyYWWD^RP}sQ^sP%|!&z zNYj~=db+LH0@(9x;bZ)@8h|muUuh`-0B~VBv~H9ATNLkhxJ%2PM`5g0%Ea_@I?ZRWL=MS@dElcS31Pn07k_tbS|g00RW(p zq;o+n1<=i90bT%C@S>R?pj~=L=z2Of8@EfhklKbbV8~@w0RW*4)0vbSIf|?}mwAmx wLv%VK(HtPGz+HPx$z)3_wR9J=WmOV?uKpcmEwHk}>P@<+F z8qq}vEfp#__&Sts+E3u<>L<`|Aav^J=;~AiwXI`8@nxtTbTD8|1Jc$utp$yPrVuqR zmqQ%P1A$z)-0#U9`QHI9E-rtJ$4;kESWsy~F3ztFb2{yWM}H!-H2DCa8cCQ6gu;Tl zw7f`_oJnV~KJEb^{3u~L1DSM|O5h{h7*hewI2v13=Y6sxf&QLuJS#8G1ilXR8`u^A z0LE+Ur_s@RHUEK#1gr*gf-M0_Dj_Ax;D&sTLW<=kz_88)LSaE=TQXw7F-J>qaDETj zAlylVIeEPRlZ3S4gmNJH^X!WXsV!6uOXK^ z!zjn$u~;M*(9D&34T0od`*~z{pnad)s(x!fY;K^Zw@){Q868#~0?9paJm0>=gdbwU z4}L8Uj_1Lz#dU2>R+F%Ts15+Y!U^5xL@fXSrz>O|lx8HA49^5!qnDpZ}g`xKV8RyKx!HWn5st;`l0>?KB2RuLk1;D%vHCYfYmQF5#N%;bD??wQE|7F>e` z>q8IFJMi}%IJ35M+DW7MQF%ei6Zma=wZE5Jt1HE$o0nI1t$za28bB21!Bjw60r293 z@fzflkJ9t335YTP_WWpbg9)Pe^!W#Nx0Wj*;@LOcy??@FTAmLj0GW7|6LSObJTE_a zxCacKxN=^czeaJa&JOs#pPQx$Q53=H;S>8P*nx-)bQCtLZ90v|AFKR<4I$jHa6A%I`48zin4TnPpczk;;O?=s8DS%-ZfEl1F z10iu7gINiJK7UeqtTDE{kn9x1_zk3(?;XXAg6gp)esnUz-S1JhQMeDjD`R?ApiiV8k!+`wwvw% R0000*55Fo~A$pF1LdW%x+my*Ip?8j`wToe0Z_Dp65i# zqo#I?w~33EF^8V(&tW^VKP6ZRgj``9#vt(5d PGXR07tDnm{r-UW|rYA02 delta 118 zcmbQsxPWnjVSbdSi(^PcYjT1F>*55Fo~A$pF1Ldk3m8OpX8m1$g-6ZHB>F^b@{dC0 zhxVp2PDT+^&wTiQytn0lxtPcQ_^D?c;@NptJmuk;uw(ybhpL38I;athTNxQT^_BFJ S{pH>=0D-5gpUXO@geCyl7A<-J 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 index 24cf3a37fb93b0a38c533a798846649b408ed32a..2830c2ada0ea0da6171ef0d74edd34991aaf54ca 100644 GIT binary patch delta 121 zcmZ3&xR`N*VNtB7i(^PcYjT1F>*55Fo~A$pF1LdW%x+#L=2a*DO`n{QRPp7JJhPou z;X&s)-wc8uHC);8pI7VRIUXN-J;Mi!9{-Ae_*LbmqC?O7*X1_LG+NvbYCw&e$jIO( Wsu%H_)BHFC5O})!xvX*55Fo~A$pF1LdLEUxRK{;y0G6J9CxPG`cue8uwK zhsS$c{$DBKxHxUSSK5#NkKGQ{rO--gJ(vx+7D%rJv87#UL4 WU6t1^pZJLZ2s~Z=T-G@yGywo*55Fo~A$pF1LdW%x+1d=lm!9|Nr8sJ)0$`8e7oI zBdq*|w+{QPVLtV|!qnjJjw1_%-kx#blD+<)YrT3WSEC#M&Hq=v{nS91lfb}GY3h92 TSvzGi0}yz+`njxgN@xNAZZ$7x delta 128 zcmZ3?xQcOtVP%S^i(^PcYjT1F>*55Fo~A$pE;mNb1t&sZ+iyLaq7?RUF6*WLx=+>_ z{@F3{!+bG5#f+b;QriC8=c)X0PrH0nafi{yiKfTeiluK+)78&qol`;+0Gp*W3IG5A diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-big-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-big-1.png new file mode 100644 index 0000000000000000000000000000000000000000..fa9078d13092c8fa023f731d6d158e446c0d4272 GIT binary patch literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}VV*9IArY;~ z2@AbLp=|()@Gnx|DBZzbpq}<0&QUMboFyt=akR{009;=s{jB1 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-big-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-big-2.png new file mode 100644 index 0000000000000000000000000000000000000000..991de0716e27870c1cbd0b9e107c397eefbcf145 GIT binary patch literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}F`h1tArY;~ z2@+XM)SRH%jiPeIdzHsKt{oXuU z7tisuytuJxv4yQy7>7yKiGRzlJck=`P(#9mfx*k%(n&~G{T0w222WQ%mvv4FO#r;F BH%;V;O1m7Fl1c!Yu&Z;sUgrF22WQ%mvv4FO#l+B BH&*}v literal 0 HcmV?d00001 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 deleted file mode 100644 index 39e05c721147d7bd6501ac0372632365ccbe9bd0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 543 zcmV+)0^t3LP)EX>4Tx04R}tkv&MmKpe$iQ%glEB6d)5$WWauii$W&6^me@v=v%)FuC+YXws0R zxHt-~1qVMCs}3&Cx;nTDg5U>;lcSTOi`{MF0Z`p%-HkGxbDzAp_6xbq^n3@1i`*``n+STgjUY@QK8;OgAjzb>itw zOXs{#9A+g+AwDM_HRyuGk6f2se&bwpSm2pqBa@mV4ik&THkR9%l?;`5ia4UE8s!UF zmle)ioYiubHSft^7|LtQX|B^8LL7@oAPEsNs@Omo7NWFjq?kz2e$2x^==hW5lF79J zMvi$@ph9x|;D7MDTeC1Z;UpV2qvfWBLxYt`+oxsTHaAVXa(-2exN zz(|p@*F4_c+1}f~XPW)}0Fwf8w7;AxtN;K2RY^oaR9J=W&Y=x}KoAAd384#U0u;g1 z4<*qDp5SNz33VKnL!H>5=9w`+n*~Wyfw?E0OOxJ>x?Pow#tzzH%KGaA0N1`|jZ&A4 hwgce)RFWh~F&>H<7vj7Ty{iBK002ovPDHLkV1k|}^>hFL 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 deleted file mode 100644 index 8fd938dce0bef410c8cd7f9897c7d089989ac4df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 541 zcmV+&0^EX>4Tx04R}tkv&MmKpe$iQ%glEB6d)5$WWauii$W&6^me@v=v%)FuC+YXws0R zxHt-~1qVMCs}3&Cx;nTDg5U>;lcSTOi`{MF0Z`p%-HkGxbDzAp_6xbq^n3@1i`*``n+STgjUY@QK8;OgAjzb>itw zOXs{#9A+g+AwDM_HRyuGk6f2se&bwpSm2pqBa@mV4ik&THkR9%l?;`5ia4UE8s!UF zmle)ioYiubHSft^7|LtQX|B^8LL7@oAPEsNs@Omo7NWFjq?kz2e$2x^==hW5lF79J zMvi$@ph9x|;D7MDTeC1Z;UpV2qvfWBLxYt`+oxsTHaAVXa(-2exN zz(|p@*F4_c+1}f~XPW)}0Fwf8w7;AxtN;K2Q%OWYR9J=W&an|dP!t8x9it1HATo0O zC`li3Bh!G8I=&X}4`h3iP42vTAV~_WBjw(@lC<`AlZ@s8`e}*!%L4$ zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|uk{c-u{m&`(2uMN*j>BhFZm`GS2edu5XOc-~ z^JBLv-EKpJ5R#sF&~E(wZMwg3u~>3JEyWz8#}#tOTu@2=T&E--_W!>4>caa|ySsNV zngpes*ElZuf_8lyVBu=7&+X3Ir6*mA$UjXjYvxt&mywqu;nPmnyUW*r5+B^T9&VS~ zn_DmM!4QnD&?oG82#MeSd}fmK6g-N57F~k43*J`?Nq8SWcMshM0le2<;^%Lc$y+#% zqMKXsB~Dj6=}WuZr{O1yi0?D=qeTdG@{iX;{O0Uw&T+geAv%OBUQXRy*)<4Ogj4pg zh}-Ze>bCEUJNe=pQ0s8DI$!aUi4pNhfjSkMGRhG5x=iFNQ>e6(aBLORx z+Ip;=OZB5RhqqE@#R}_E=SWs0TZprDtg;>k6tp<%04+?~7B&euK=fI9n}H!zs8@BC zI#w)K#ZfCnDmGf2Jr0o3=>AoY_%0KSG%9GbP7q1#7->4eN8M6W0`<&Fb!tsPXAM#j z3#y2RM(E=7V94E!2P@o{%)ov*L+A_tQ|T2{J1l$M0Nij`XVp(iodSdU(ufN7TNkZl zjRbSlGTa1LRHURH_d)OS3g2}#XLzL^ zOo%18DiLSMbd1ffT;o0^BiZl)u}LT+vY!Ya0f^qRVHM!sbX?nZNAb5F6nTBct&Zb> zfA7qB*>P+*VYtn7T8iSRJ1#h?+&uUJ3@@d-Rb~cF^b(iWUE&l~-)t($-@IAU&latA zcRIc=bkqBp)$Ui!-&WVO&c7f<*gWv%h1jh0btiw*f@Mc-rGj6{Mmn^D$IRbkk0_0T zqoU>5L2=FB2D)n`J`X?)*j*wBu=f_NheL;P!TI?v?0(0-|3}gPQIX6!T?ezce*kyK zu25=XE_eU{0flKpLr_UWLm+T+Z)Rz1WdHzpoPCi!NW(xJ#a~lPMJgh8P;tmmoh*uq zI7$_ZV4<`XT6HkF^h0RUkfgXc3a$kQKNhPFF3!3-xC(;c2Z)oSlcI~1_`jskBF2N` ze!RQ)xO)c(^)ge3t5*H&Rd+-a+Njj$zK@CYs+b_(;Pw^i%1{|5i+XSKp7UI zv}&Z7NYQ@G!$0WwljM@gwE;$sc~qc6a{SW+rMX;{rv!w0&=vsPvC0+000JJOGiWi z{{a60|De66lK=n!32;bRa{vG?BLDy{BLR4&KXw2B00(qQO+^Rf1sM!C53N!lkN^Mx z{YgYYR9M4fJaFIu!$1Nih5-hn4j6U7r~?Mv0WA0=ODbxqVo6U&Gx;G97#PlA^Xu^c z6&d&blS5M_3aktn7-TG5$)c&22A-VQO%_d28i0Xg=NT9n7@m?xvr)kT-u)*T85kHC zyyKvJB56^z(+mvjS5oGH_3KwMtS4Xy&9dR^=dT#d&Fv|&;N;1Jl!d^(N7oqw1H;L( zoS2Zqn+p~$oQcA}c=i&*#j}^-Y;dne;jmrcnSjNOqRx!X uGd#A+95zy6Z_Fq;-U~D1PD5iOBg2(7GBK|jLcD=iF?hQAxvX@ZRsLY4!NE!UWIh4Dt74m=u2bqL80K(`!b zAwEaE`1+5bVVM@7!85Z5Eu;sazX$AcYB&4K(}wY00000NkvXXu0mjf E0BbF63IG5A diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/rubber.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/rubber.png deleted file mode 100644 index 1f883d1572decbe4b50966a66501103a5374c6bd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 282 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJ2c9mDArbD$DG~_>EDn4#?y*WR zVQH)5@Oa|;i~qEzzS`4?Zxkn)Dx^nGc=|?*tzhB&a=nI|ODtM)*cU|iy)g)qahk?F zLAQQJ`f&~WmjX6Y9;F;7`5d;(q$%3D|Ec-d@bK>{yESDKpD@%+d(6cdP!e#LQQ`E2 z+P)l1Bk5^kE1ofY>Eaf7)1t%va$zU4!$rnZc^h^de^%@?t@(+k7xRr(c_r-!n&wKJ zUipY&#^MRyE=jt}S1~)Z9h7O*KX=i2;v)?Q{aKzH=e$yM@cZ1iO3~m|!$koJ-bN6? cSmeaO&{sW6F-`0($jc0#u6{1-oD!NC0D6gS^#A|> diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/uranium.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/uranium.png index 8dede3071ea2d4f942a33fde1ce23769953fa0a8..3219da558d19723937d0feef4fd059ac3c13b950 100644 GIT binary patch delta 168 zcmV;Z09XI@0mK22B!2;OQb$4nuFf3k0001fNklyU5QO1>?@o|ZS7LZR z6c19x^I?$4h6GV=YiYuf6ai*FxtGcA4Ty+{h{#2%)_iXs?p%J!0aa^m&+>aZ3dY8m zyKMh1eY}DLtb-F9BfpCU95;~aa|NY3{A7KCrT5*B6dM5ej3N2d0o&Xzopr028uW^#A|> diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/base.png index f460615079dcbc3bc4f0244f62ee6d194767a522..008a7363151567ea158dfe51ea94b1e02772f004 100644 GIT binary patch delta 426 zcmV;b0agCw0>cB4BYyw^b5ch_0Itp)=>Px$eMv+?R9J=Wma$92KorKms>Bi_xWw9_ zW=vM+t8<&Q0}3g9?q&eBdXTv*j`mqa>j`d$Q*cGN5Y;G|r}^K51gAWpzS2FI}x zO(#+#$Fade2G6UIPcH@dX&z1i|@-|epA`2M+AYCK?fbnQd`jkowS|jbI@&3K*+|xH#u3Z0G9}O;p UT*mMi;s5{u07*qoM6N<$g3rOi+W-In delta 330 zcmV-Q0k!_a1LOjbBYy!aNklhx<)!^4}S z=qr;oC$=T7E*eH6r?v$|0={nqU@&~GWz|}{fhhEq1nVMsSbq_SLSJ<|EzZw8C@m#g^i1oU7DOB0zbHo1Fc4o4c&=Vb6~v7y^(rM`bmzH$f9NI?25K|=C` z$>8aH$IIyb=>A4S*!1c&z53C*qTygT1M7GTz|Hj~0MDaO0PgSFK=HvVEuf1$1h=f? zZK+_P(s!V0xI>Y^biS(;lttkd{0x{{Ie# c!}0If1D%0)YL{J{9smFU07*qoM6N<$f(|94`v3p{ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/beanbag.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/beanbag.png index a2fe9e8f1d2bd99a05493cb4db4d7b8a83003fec..e6f277ba843b6b5017016090072fff7df2065d39 100644 GIT binary patch delta 525 zcmV+o0`mQg0;U9zB!2;OQb$4nuFf3k0005tNklPD$ms&)`i_lv^=%Mr*^ic59la?NO=?9P^_!X2=#N;Z}7^*u55&Q!to4pjf zZd#$Nhq9oeGqan99-8Mg?7lqDZ{D4q8R+UCt4F7(P|62!%zw8wzbXB1>x7SujmF6b z2viVKfI=xBj6Z!6E4jR0;hEV3k&rt0e^p$)~0#g2#PsB!Gd`9e((~ z+5@<1*a>L^03>?#+6r*?Tkpq-1fXjgMOpxk(`5C?C3Ckgl6n36Pe`QO11Oa8LHf+) z%XUM*|G?zKp?|Nm8*L9qx!y?H%HqcTqN-baeX;Ek)jV88b>Dew+8gp9D0clv=VgRn&_y0wAB0m6N zxliC=S9@r!`VoAb<|1Kiva}4|oD-LF?gCXJm%+1EaDnv^K-uc?to)Xx<@j;W2bS%3 q7N`=*(t5#-pfslO_bv#6&^9l%CPKtaR diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/flare.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/flare.png index 3b65c7acbe02d7abf6603a0635157ddea8579efe..d734c66d19dde4e1c08c2d3f50059bafb12fa210 100644 GIT binary patch delta 598 zcmV-c0;&Dw0q+EmB!2;OQb$4nuFf3k0006hNkl7+9Y*Rvr+?u%Bn<%IKPuN&fWx0sKfz!CvZjMb3ZT(wvbAFoJ~cIvdF|VG@P|eN z(2ckgI<$EEu`b_#;OhAq#}X6=I5N)S)6-{!xqUm}E~S<~gl>cedifSe754-Ha92UI zY;xi3IZvbF?q{@^M(e;PoBhB{I841(8y>)Y0<&xq41X$o+G~0m1%nD^*+f+%(ogRR z&}kf*Rk^i%+cR%%eU+UrRg@D!>Ea;x2wgpV@Q8XQN#OKL5{X35u?TP^003LrW54>U z?>G<$j2A$pcDp^)ebP(u&3h1yMyXVKk2f}ksxJnx?H12pJSCUQ0g%t&1p(rd4f)ml=(!$XD k@0+ddf%cDyCi;K%3#rlYN|_xgX8-^I07*qoM6N<$f-^lEu>b%7 delta 201 zcmV;)05<>c1myvcB!8?)L_t(oh3%BF4FWL?MgJkX%;6EBHB+zxGqD0wh=wW~ zT>U8!*PTc%(Yf)H(pmm5l5N0ooQ|XjiU_SeARNpNyjt^qe&6+m zp|tO@wD2bZya0gHIOC*Y2?pwdyO1K-ecv6&arWi|ytPQ)duV{k00000NkvXXu0mjf Da+zK5 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/incendiary.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/incendiary.png index 7841707b120f3e1f4577f6c4320b31e2cac551b4..554baa942411b074a5453fb3dff01963f547f2c9 100644 GIT binary patch delta 612 zcmV-q0-OEm0sRD!B!2;OQb$4nuFf3k0006vNkl-YXy^(63vZXX-Mhhy%6Ud_4A<2+$|aL4WKy}NJ%j*J zC2Yh;uLF?&kYkEvrWq!7wSMJ|a*GQ~j7u(F6%0!VApkhrc2nchPwTb-OeMxfjB7nw zv(kn-?mNnMb$?d~aKwpWCuAD{z;oF0d#cmkcSBs{6u_>j6WIbNmCC%{)CivFab#Zn zS_4m@J%FeZHUfJZi|b$P?>`V9IAv&p<^YE}*}Sjsw6M164wy4Q^8|=00Y`_gfvx72 z008C`RP!nq&z`e1%6|Tc9FeK+=p>UXoCyZmDi&J@Fn?E|=2iTD9~+gjrIFw7L(Qv5 zQpon|EdhQt4)se+PTaDro1L3s^HTxeF~9BRAovJP-Me$2t))2Llh298Vhv*vU|RqH zy05}^;bqg<>-Dw-V0#kI-|Zz-t1-CSIKKJ*TW0|hPbBLKQy<;k;0OirW#NT<_W z82mGyon4zj*QKN~00007I7-de^0d65_(FY-%ZF_(x6h#)$E z=TqhIl;5O;C(Qt9*f}@(cuw!LhOl#vr1=JwES#bikfwOkiAL9O_3y>)9!(5AZ?7fR zZ997BaetqOBbw?09|_1vyiA~&sBC(B- zuAbb@vPckm@K9svAMh;n;6D%#f)`IJ9=!MidMNZ4^x#EI;;~@UP~6dj&{}AkEQ08E zqm8m2WJ{Iq&g{nECGY8DXL#RdzMY*N80$YP6E%>{W)Ex2Hh+RN=5IIOWdH_)LFAlM zG84--g4x+?Y4QPr5F!KyCJU$e>VF>&;BUiGNErYicT%mb00%$SKAc1Vs-{V#1kmmFc(LPBIy;fb zyz}`RE zvtl9~!J{V+rJ!cT{Nq`-+heFJ*-@2e^w@FX2mt(j4}kVYTN)0MTk-tDT^7t)W9aG11ZLcrX>w5@0*(T<^A7lS`Y-mAvv+iiPhL1BJw5i?|d?phzN|rs1Gm; zaT{(kjZL`m8}RotN+MMf{cNuP{bRc_ZOhcOuudzkhcy6Y(qv3H=j`cVEeWvLo!kom zERzeshe$!t2G?oT6o%$KtpvJ6{LAwl+yl?1SYP#qd%IT!~_O8cNpWzqlu002ovPDHLkV1kE$Y)t?F diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-1.png index d77e6507b00fc0910aba7e959d2561f9e0b122e9..8a48bb884df03db43a5400ac122e07057eed2ba6 100644 GIT binary patch delta 104 zcmV-u0GI!3h5?WyVgYkfM?wIu&K&6g002NqL_t(oh3(Bz2>>AgM8QoUHn4#ijA9fU zm`1DkX^Hz^ONemrroc!509@3HJbUok)$j8t4`qK!?{feEfL}Y`W(=zR>{xgJ0000< KMNUMnLSTX*dMSed delta 77 zcmZo;%$}g)Zsh6W7!uL?_M9OvgMt8yL77kDJ8_YP?8@!zVnUa+GO`&Cw1)VvdLEl_ gKBc#uk>PFVdQ&MBb@0OaNx00000 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-2.png index eaff18cf28880d84ede6b5409c7d43bb9bd15c0a..db541f8acbcf1012b850265fdedbb94af66bf0c9 100644 GIT binary patch delta 114 zcmZo;>}Q;ylFe8gfc5c6GcbJFCRtyQ_NWwS OD1)b~pUXO@geCxMGb(ui delta 105 zcmV-v0G9uc0fqsPBw|fTL_t(oh3(L>4Zt8215s166nmwnVW22GptKo)9a5Vj8~h;A z+#BFzSpon60j}Au*(+KpG+;FAIid?@e)DMdRhB#f006d`&-4?1^)p3g00000 LNkvXXu0mjfvW_Yh diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-3.png index 1563f21fe714c532f4b0ba1623076bca6da822b0..b6a01032d942a7ebd3104ba5e3861b9a1331a62a 100644 GIT binary patch delta 114 zcmeBU>}Q;ylFe8gq#Z~yxF z@BTXbhxNW|48qLb>WC-&*gw_r{eN+`pZ|BX)q#Z~yxF z@BTXbhxNW|3>?i$b;T2Y?4RoR{=Yce&;Lg@tjzkUfzaW0a05HT+YDpPnC&|vfrc`8 My85}Sb4q9e0J%&oVE_OC delta 126 zcmV-^0D=FH0hTr0pdW&e zU}*&*xo3d;U-BgY0RGIev18+!MkqZjN$N*wpQLTQV#D#eS2iFgKM&tSLbnw4ia95H gZmV7Z002IB0##@oe=~p?D*ylh07*qoM6N<$f{L9mG5`Po diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-alt-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-alt-1.png deleted file mode 100644 index 0b8f096ef92436b8f578bcb4389f7f5d4f9d4d06..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 106 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzLr)jSkcif|XAK1z40xC~#$>Yi zOU%kYt$01~*8O!%3}Tb+sC++u?WT)y@ZGy^xL(e jS6z<0vSeWR(aX)dQ?BLIq?BnulNmf+{an^LB{Ts519mUd diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-alt-4.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-alt-4.png deleted file mode 100644 index 60be778fdfd459489e53186dddd46287574d4860..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJI8PVHkcif|7Y%t281T4Uynl&9 zZZoIMXM=_h9U=_JCg$Cp?Xgzt?(ICwXe$9h!Jo$E^WWK(TlHN%%#h~xe(o8T1=oJ< zcpp=F;Ecx73sK6(@Bi#FJl4~(mea+>#lZ&O)=-MRXEfi^LCy85}Sb4q9e0Ns>1 Ah5!Hn diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-beanbag-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-beanbag-1.png new file mode 100644 index 0000000000000000000000000000000000000000..12b18cf8b4d9c59ec946b9e893714b9f9b126ecc GIT binary patch literal 141 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}?w&4=ArY;~ z2@fH`*U}u;Y&!ur=>1=bLkqn-$elF{r5}E+*XDx03 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-beanbag-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-beanbag-2.png new file mode 100644 index 0000000000000000000000000000000000000000..e71c0f5418efc76ce2b2e17c58d9d7f29605ca4a GIT binary patch literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}fu1goArY;~ z2@$ql(Sp>aJ?NX8(U#6Tifku rNr?@cHlH*ohiGy;r~xwJ2ou8%JDD>F!!Aw+8qVP9>gTe~DWM4fjFm8c literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-beanbag-4.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-beanbag-4.png new file mode 100644 index 0000000000000000000000000000000000000000..e167574f17cecb3bd53d352d7b27a2c5caab5efa GIT binary patch literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}fu1goArY-_ z&nOBuIEc7j^lmie(3vNcVP(*~oT-UzN#rU80hgaHH{>74l^&hVK1oG&u5n?!>b(5! xZA&M|h9uti9^>s-BZr{>XBu$<1M2*# literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-flare-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-flare-2.png new file mode 100644 index 0000000000000000000000000000000000000000..3581b4b9002dfebb7ebc91b2907a059e972184a1 GIT binary patch literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}VV*9IArY-_ z&u$cS2oQ0(D4OlcXte7>pV^iLoM|ah6*C{SMn$aj`QU!Y_M%(4D#L;Mp-US#P8Tmf z<-_}S<=c!YGrKw-eOp{P>3it5?EBwe9|xK_zlc$6n%oM}6Uvo99)qW=pUXO@geCy~ CtvOWy literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-flare-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-flare-3.png new file mode 100644 index 0000000000000000000000000000000000000000..fb1c27958a824c75c828762c34b67bde1124e91a GIT binary patch literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}VV*9IArY;~ z2@|ArY-_ z&nk*G1c)?0T)5JSL1xPWKGPKroEGfvt|vXYh3Ob6Mw<&;$U=FE+;j literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-incend-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-incend-3.png new file mode 100644 index 0000000000000000000000000000000000000000..d7e2b98a72e597c167f705ce81495011f7504ed1 GIT binary patch literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}L7py-ArY;~ z2@G1KEV#aq-MjUQkdQzNYluO(yJ`u)&@Z-a|L#vwobJKUa5eYhqsXr8bGL$n wq@6d{e3iR5uPSfn-c7X@lj^O3c0?Rv|94i$FaP{EAE4n3p00i_>zopr04X;#IRF3v literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-practice-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-practice-1.png new file mode 100644 index 0000000000000000000000000000000000000000..cdb6cc85fad6d1ed68321c53468e30d9482bd939 GIT binary patch literal 127 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}mYyz-ArY-_ z&jxZHFc4rp_PN-k+ht-YUyH*<;d|g>yfwJ9_ePMOU`Fc3I;;k*jhbP0l+XkKcZe`N literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-practice-4.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-practice-4.png new file mode 100644 index 0000000000000000000000000000000000000000..2dfd5a4beb875ed80f5a939d908746ee9ed299f9 GIT binary patch literal 131 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}ww^AIArY-_ z&l(CIFyJ|Q;rtTuWlIG`jwQ?873GpM`uasJ*Gt7ys!I4@29Di8nw literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-slug-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-slug-2.png new file mode 100644 index 0000000000000000000000000000000000000000..73135e3f3b34e6f1623fb7d9e64d8cf1c77aaa57 GIT binary patch literal 136 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}PM$7~ArY-_ z&ny&VFyvspSYNteWwX?aUa^(UD~tnYcAl}@nx)Ec;Pt-Sj-kCXJtysou1|mV_4kn- izg>>x@G>woBy&G3C#=GI&58LwY; eE(fUlMx6U!*=6tM?Ysr#FnGH9xvX#P6so}asT{}WJ&+d&Pe cdPQCarEIy2#YN je^K67_C3x7XvVhM&UVa)jKn{batDnm{r-UW|qDw6L literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-uranium-4.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-uranium-4.png new file mode 100644 index 0000000000000000000000000000000000000000..7c1d53e83158f300127c29dd810ad25f1be8c1a8 GIT binary patch literal 137 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}&YmugArY-_ z&lvI^2;gB36n8%EahFNsz(29BgA<)re7`q4Z-Wja!@qY$?RWPIDtgY6tSt?_dB3mr j+}@cx)0i0;4t!%ON|jwzajxqV&^QK9S3j3^P6Jp0qz8lB!2;OQb$4nuFf3k0006gNklr0ghFPah(mD7;vl#D49-})_((-vMif`IXFKmCgOcs zr1gmCRZsaU2~X&}oou~>{`Izg#e{u8&0{VwhtpqZ;AIGxOsWO)Ln`L%ucfS{QO1NT-y#!G8cBzIGgqg24cqsu7Jwgjeqf zFlZcEjIw$Au4CTL?ly;?4hWnL3Ks{Lm(bFK`wwZASMXnWPAZieId%iIlkh=wy!3+E ze%yBK_x~IVK&S&E>h*e)1*m7Ul-AZ9$K%L#3k;*nv#lp=Rw@8gt5r5ejCXdoF^ult z2aw_tnog?m_~|28P$@1A&9&Pd$GdaFuF00000NkvXXu0mjfPih+= delta 193 zcmV;y06zcj1l<9UB!8qyL_t(oh3%8E4Fe$zMNO10BczC2u|`&4Jf`qACw;06k^ZMb zN`rC`bX?(ATmBE^FXA}PL;x_Wa<#{~L;$Q6`6X~UO2h@0u=D`UY;JhZYkI=FZs08s zl58#?>HW25_*>-0mxK^P4IbGuEKniIQp!Io*4J?N55yQlRyyUg6uCEMwrvv;k(5%H vA=f0U5&%gO0L_fkYqy6Qet59sIL=Hy5vpHI=yev$00000NkvXXu0mjfMrBjv diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/slug.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/slug.png index b55085e398ea1f2ecb6f5477a62a21d1728a009b..c8fe67cce6e5bc6f2c298e3198bd9c4f8d8c7f91 100644 GIT binary patch delta 549 zcmV+=0^0q70=@*0B!2;OQb$4nuFf3k0005_Nkl#W7Ac$tE zu1Gvc#*`-SCAE0z_w*z0@%?_@?7&{(HGe;e`RlzmDS**v6guaW z$iy%;e{u0zl6(L^fJg*jn3}(Q^G2fN`qnnL)D)okyUo2&2w?~6Tib~Meus+{2@tez zWp&BFKIg;&IGa7qH}A(}0Dl`!L(%{MnUivD1vvaE_u<3>kTs1XDS&=|!1H~F{JFVU z=Djc9A(NX7z<)3`KX>R*fBRX!|G@H<^S&bp2RJd!@cH=*!nvUx2##MTlfy7`u{PfU zsqjbufZ!CgEt{*CE=L-*KfXsV>39b&J3Ftqn9uX6*Gmo%tiZNx6eY{MuY*VGetg-*0OZJQ+9S(w*Fn`efdk<(d8g#o|%H{IdS_Bv- z>4T_Rtx_x&sZ=Us>sqar2tcX>G8ztt(+B8uI>I`xgj?Xc9#5Y=rrB%)&}y~D*6SN< zxUTo_0rZlNZP`3}@=yq>m-IiL_4@-Rx{@7NVL^=?w=Ek0@4yA1z1tRsgWy)YvbvP` n|NCO|<^?w8vly#Nt$+x6Ub{YWGfH^y>fEF)q9vtAehr4#_5tm@0UUcq~h z;&222>~|XgfOGES>`4NFvZ`?!hFfvqCjvnN0PaP+_s_*qxr-P9=UfPW5Sdb(gzH4| ff4hPp2;Xo9cZ^oa(r~ID00000NkvXXu0mjfnyYCB diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/tranquilizer.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/tranquilizer.png index 373d6a2a0c91a69c140798bcf956464736eb65bd..fdd3b5e5d23af7b864cc75fd886aeb40eadf29af 100644 GIT binary patch delta 526 zcmV+p0`dK%0;dF!B!2;OQb$4nuFf3k0005uNkllN20WR7Au@D0C}y=qwKHAarrEr9+qEoI&t!5Rsx;0~&*J?d7jVvz4zYtg|7awdUT3%g{&XN{C{BoQ0d>N6FxrvI7&W% zuY!;Qxu)9-=1n?_dEh#`iJ~uz(PxL#X0PZF3^40s^ z9>AZ5osc#FK&)4L2EDK#>T1i}`WW?FmpQh@8m=~0vC&t6FD z);Efro_r=TU}%SfVi5*fe)XDqX^QxR59IUt8^-~KID`O#S!Rp%;C8(9LetXtv zG?n*4?b9$lYD(V=TL9o)x&TxUs#=#)X~Eq5Oyu)-Yx85M^P{V-{$KqBTk)-EqPib$ Q00000Ne4wvM6N<$f=5RA@&Et; delta 265 zcmV+k0rvi<1f&9xB!BBkL_t(oh3%6)j>0eyMqi>m2wLPKEj{HHh_sYZBo43=7eYcV z=K#@O!tEB8Q4WGM6c9+WD}xMa{5t<=zBm4XOeT|%N<`Onty6nYiD)H~MQ#%Rt(Wf- z$pVuw=>z=OZqtT8(oOPkfOTE#$~pbs?fxu2{Ci_eylm{oV}IN7Wi0?J=MFi@A#6oc1Byf{$%`neV#jnhyz#MF5Pol-}QipCDS`ce5!F z(Q(~xR0-$pZ5DAwr=#sF~gnD=5zWGo(fJvC896+a+ypf^G?q6I%Uv_PY+B0 P0000P|o%eLrJY^{Y5Mt}0jt zP&GR@tz2KtB-T{)+ zM=b8^Yx5;ARa_SUK)nUUipb=|dEG>%5APA80?h-Ne1CqEbACS`Yc=ZtY6oIP#N%=E z?sG#ok;mgktcZj{0n^><0{odc5Dal^{YYzlKmYY1x zEU`BK6k~uwp}<=5xV^Hvj4U_*J%A7u5Gx}0AKWtp6{14dw|c$Nc^6s+P!$McaNzAtG-Q-|h#$5)px3=yd_7 z+i}|Pkk^ESXTF76YdhHu0oX5&oqbNSS>3#6=e_~}`FaGv@>Vdn&mu0k+{^%IF#a<` z1iD1dm(wFSYF2b-D^gzL!-E8jF&SV1lv1B++|hftf_|Wt;8i3hI0;&7>tqB$5dM}s XtTH=wmQOP{00000NkvXXu0mjf74~6L diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/CaselessRifle/caseless_pistol_mag.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/CaselessRifle/caseless_pistol_mag.rsi/meta.json index 8aa221dcb7..296090da5d 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/CaselessRifle/caseless_pistol_mag.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/CaselessRifle/caseless_pistol_mag.rsi/meta.json @@ -19,9 +19,6 @@ { "name": "red-icon" }, - { - "name": "rubber" - }, { "name": "uranium" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/CaselessRifle/caseless_pistol_mag.rsi/rubber.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/CaselessRifle/caseless_pistol_mag.rsi/rubber.png deleted file mode 100644 index ef8982b1b77d53e02e48cfe183e0d42d8903355d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv#^NA%C&rs6b?Si}&H|6fVg?3o zVGw3ym^DWNC@2x&6XFV_?d|PDLqj<@I8;?trEDilx-3_Td%S^f=OmyUM@f)hFvEWc zxOytY2q@;`>EaktF()}e;*Ns=M*vGpkBDd>iwvu)O8_g+MOKcL34$UeC5~bVVqzsF z4uS?>VJTU+O diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/CaselessRifle/caseless_rifle_mag.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/CaselessRifle/caseless_rifle_mag.rsi/meta.json index 1d75c67608..71fb04b7f3 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/CaselessRifle/caseless_rifle_mag.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/CaselessRifle/caseless_rifle_mag.rsi/meta.json @@ -16,9 +16,6 @@ { "name": "red" }, - { - "name": "rubber" - }, { "name": "mag-1" } diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/CaselessRifle/caseless_rifle_mag.rsi/rubber.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/CaselessRifle/caseless_rifle_mag.rsi/rubber.png deleted file mode 100644 index f7aadbfcb8c7790ea5d0044a2846a934d9e488db..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2155 zcmV-x2$c7UP) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-_bmg6W4{bv=k1SBCOmc#R$*}*J-F19O`q^o8s zRsGp^VnD`v-HRa1fBs(KFI>#YLsIixa*nuCNrfvq9?$D+DW>CjTztL4_(2|SFBl?0 zE9WrJYkq}X-#@T)$=jnmSiki6rHJB#Y1x){e_T#piiA%&UE@%$4{E*(=lXNM)V_uF zG){(O423@7z*9)#@#NEzod1fy;z^>INaE-#-t1@oHGkojx(^a~>pkT!zIi6^={Oa= zg_WQ3bjeAda(tF? z8~%#E9e2U)vBnP6210EiHVg_eGQKF$ph}D8(RS)^G4W(W%iLKGnTv7ZE*pZhZ(3|Y ziVPsa(t(^n%r{@?uv@l07;{)2gqciG28?5?w_L$5-u!|a8@c_& zEC535%BddtrEoU!`P#q=5Y!{hjsRjRD+5pRn2PZTC`@#DQnKz@~%_W#FD9HGjl6eT|BvZc60aQwQv!XF%2abD_%;e z6-H~S&{Z+NLeRKLOHEsD*1VNgJLuC>*Pgp|@1@tlLk3Df7)puGx_Q&dR7@>?lZcKqUZ+wfBbe-yo@sLjkE&?-3M$OH*4iBFBK ztTYGd5-gJhersP9OvP*m(NIBn+5po6UTcc|P+Rw*EU}+q86cq`G2(A9{PQ|C_4tVoqgS!t%@8-7zPM4eivfkfLv& zPFG_@zqN*Hc{HilWQElR8S-7vj^Jp;_#D5S_0U8KYwhg(v_+}i$XZsEg^`Qq?w$=b zv9Ez9DT?HFT}M1WLs`8&yus}=aJ{H%RY4+{<>2uQ8Tnb;AXnmH`Ztto% zC^4$1o(4V9;d{8n&?D&3PFCy&iJ!Ce!foWEt(jG1dOHAY#C}h{@FP0EwV+?H%|8rB zEsA<-I7swqac1ecHvA~>=O`5$>MEn#8U+=1`VL&ZX-(654JHG7&>VR|7l1ng$HoM% zV}(AxGAr6??8YZf+(3<_mKleFkZI>~V~9=}-lhY(L9?EeGb+u$fLnNld!Sr{KTW41 zB2|AHBVB%zO@DG?AkNL~^c8M{Yd1;AdzW+WN2xhBL-^7R zhrSaX|Du)f8;ZyuML$=B(`&(={x5_gKj2`9{|W#A0fcEoLr_UWLm+T+Z)Rz1WdHzp zoPCi!NW(xJ#a~lPi&Q$;LBt_Lb+RBT;wV)tf`!snXw|{w(l2PzkfgXc3a$kQKNhPF zF3!3-xC(;c2Z)oSlcI~1_`jskBF2N`e!RQ)xO)c(tr}C!z6n6pEF+Uli21^*7<@$l z5rhziPhzH?$}Z;MIlk`UFGy6jh^qA@8!nd5g1JYp~8e z`3u8EZ6(Wfnj=VJ2`Qu@LPi5s)Ls4+u0lJHAF$0003hNklI|MAH$m^+z~rVe0WU|=vXGRG?Z;K3t?g3`AC6S}JyY3hIr=T0&R2uWgyD=5e@ zJb3Vkwow4HSV2J!L(b01glq>8od`d?dk(i8W*NDb4&7`B^D!(WVDzD5XBgt5f*1-) z+y2wc0qEI`TG2pK2z+?=eBcTq1_lNOCUI+q7yQZ$&-Kh17;G6B-ZL=3>GKQ>49UF? z3`rFe{?BWRV5CV1pc^cC=_CqGmt64b+Fhzf0VAnRvV`Q^{{ljiSPLXrp|oh(ItF5k zWs*aH+PQ(Of{2>Af$WkHSD{2o@RRKTTy_702agy?t&&;D4S^5uo-Lf6LrA0t!lo~O-;SLyt1;g7^J-f8FmVLy?vk(^A9M;Q4-`A%A{;fJxU5sp0sEQOq(`MtU*U0E-tQ5 zNq~!`aYfsz6%va$RtN|s91$^aD&<%_QFvJc*R0!9djnag^ak$L*3dX%u!DgiW-Y(< Up=-83ftE0My85}Sb4q9e0IVZO?EnA( diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Magnum/magnum_smg_mag.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Magnum/magnum_smg_mag.rsi/meta.json index 15964feef9..b766264c79 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Magnum/magnum_smg_mag.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Magnum/magnum_smg_mag.rsi/meta.json @@ -16,9 +16,6 @@ { "name": "red" }, - { - "name": "rubber" - }, { "name": "uranium" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Magnum/magnum_smg_mag.rsi/rubber.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Magnum/magnum_smg_mag.rsi/rubber.png deleted file mode 100644 index 9cde22c568cccc27d156e8685fb1abfc6f0330cd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv#^NA%C&rs6b?Si}&H|6fVg?3o zVGw3ym^DWNC@3A^6XFV_m6es#($c0*o$Bc5D6gQ#rr{=JTQ8M(Mu_!=7D#VNkY6yv ze<(0#ntcT*=;i6+7*a7OIbnf%f{2T-fRUJpgP=f|QJ9NxK#_~#p%X`48A2UATU{6v zMa4yo4RsERaL5UyFPT1l`a+JBl9DY8IhHUwGBLkpV7RqO!2WdNWqF{f44$rjF6*2U FngGf|J=_2Q diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi/meta.json index a01c6d97bc..aa11185ac3 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi/meta.json @@ -16,9 +16,6 @@ { "name": "red" }, - { - "name": "rubber" - }, { "name": "uranium" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi/rubber.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_high_capacity_mag.rsi/rubber.png deleted file mode 100644 index ad77f0f12665dfd9ba76d36b4167477380dc5014..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv#^NA%C&rs6b?Si}&H|6fVg?3o zVGw3ym^DWNC@2@;6XFV_6A}_iN=nwPTQ_CO6l-g1Dci}CF3VNo9xLR%UwBD;H&6vv zNswPK!+#j4>l6tCin@EcIEGZrNlsXxoFF3NA{=1mCYlsdXlUjl7*Ja1C@4@=SSY5T z@SsagplKCT2Is1oH&~q58jWvgSy?T6SiV9*V8IQiR0f7OaYFgNlRbX|jb!k2^>bP0 Hl+XkK7NA9) diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/meta.json index 77af40592a..1aed17caca 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/meta.json @@ -19,9 +19,6 @@ { "name": "red-icon" }, - { - "name": "rubber" - }, { "name": "uranium" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/rubber.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Pistol/pistol_mag.rsi/rubber.png deleted file mode 100644 index 8be70a07eadecbebc20fda9ec3c27620f8b574f7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv#^NA%C&rs6b?Si}&H|6fVg?3o zVGw3ym^DWNC@2@;6XFV_6A}_iN=nwPTQ_CO6l-g1Dci}CF3VNo9xLR%UwBD;H&6vv zNswPK!+#j4>l6tCiaL3^IEGZrNluUmX$TAu@O8K;5!w-W^ym!%SBI-dSzR4Y96cJz zu-}1W6~hIe5M=|_j0DbTSNG#4f3|TkF?KC1VP{Bf(;OXk; Jvd$@?2>>S~Mw9>m diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Magnum/magnum_speed_loader.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Magnum/magnum_speed_loader.rsi/meta.json index a94453eb74..4aff585ea3 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Magnum/magnum_speed_loader.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Magnum/magnum_speed_loader.rsi/meta.json @@ -49,24 +49,6 @@ { "name": "practice-6" }, - { - "name": "rubber-1" - }, - { - "name": "rubber-2" - }, - { - "name": "rubber-3" - }, - { - "name": "rubber-4" - }, - { - "name": "rubber-5" - }, - { - "name": "rubber-6" - }, { "name": "uranium-1" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Magnum/magnum_speed_loader.rsi/rubber-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Magnum/magnum_speed_loader.rsi/rubber-1.png deleted file mode 100644 index d4ee09b545203976b59dcd6dfb23d125582076aa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv#^NA%C&rs6b?Si}&H|6fVg?3o zVGw3ym^DWNC@31>6XFV_r{^0>*-n;pS-zv+_V|_vg}nC@rreAIO0bs%`2{ol2ZN>c z%YFleWISCQLn`JZCrG?;2ndjDJ^w-~DXk&=sKx?01_mQ$#%_}{zDI!S7(8A5T-G@y GGywn{JTe>r diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Magnum/magnum_speed_loader.rsi/rubber-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Magnum/magnum_speed_loader.rsi/rubber-2.png deleted file mode 100644 index 1f3b9965b1fbb9874a90ec18cc4d49ad4d1819e3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv#^NA%C&rs6b?Si}&H|6fVg?3o zVGw3ym^DWNC@31>6XFV_r{^0>*-n;pS-zv+_V|_vg}nC@rreAIO0bs%`2{ol2ZN>c z%YFle6XFV_r{^0>*-n;pS-zv+_V|_vg}nC@rreAIO0bs%`2{ol2ZN>c z%YFleFVdQ I&MBb@0PLqV*#H0l diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Magnum/magnum_speed_loader.rsi/rubber-4.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Magnum/magnum_speed_loader.rsi/rubber-4.png deleted file mode 100644 index bef55e248b5161d79c5c10364aba25ba4ebbec6f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv#^NA%C&rs6b?Si}&H|6fVg?3o zVGw3ym^DWNC@31>6XFV_r{^0>*-n;pS-zv+_V|_vg}nC@rreAIO0bs%`2{ol2ZN>c z%YFlelssJ=Ln`JZCrG?;2ndjDJ^w-~DXk%#wX#ZM`*f*od}a&`n~m5srHZcT164D4 My85}Sb4q9e095-k$^ZZW diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Magnum/magnum_speed_loader.rsi/rubber-5.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Magnum/magnum_speed_loader.rsi/rubber-5.png deleted file mode 100644 index 052192ed04b678bf6d5f2d4c6a5f24e2aa2f7543..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv#^NA%C&rs6b?Si}&H|6fVg?3o zVGw3ym^DWNC@31>6XFV_r{^0>*-n;pS-zv+_V|_vg}nC@rreAIO0bs%`2{ol2ZN>c z%YFlev^`xMLn`JZCrG?;2ndjDJ^w-~DXk%#wX({<$03l>=pf5co)Xb38%jSgGSn_) V`#rbhS07LtgQu&X%Q~loCIE7YIi~;s diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Magnum/magnum_speed_loader.rsi/rubber-6.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Magnum/magnum_speed_loader.rsi/rubber-6.png deleted file mode 100644 index e33105c761022fc06308ad77601946439ce895a8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv#^NA%C&rs6b?Si}&H|6fVg?3o zVGw3ym^DWNC@31>6XFV_r{^0>*-n;pS-zv+_V|_vg}nC@rreAIO0bs%`2{ol2ZN>c z%YFlebUj@hLn`JZCrG?;2ndjDJ^w-~DXk%#bwa-q)1}0wMeMPxVbPvu%_YKGX6 XZ?K=e^M1J+P$Pq zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|alH@21{pS>O1SBB@#}Qk^++dDB5A4dS%I@sx zEnUD$IZWUg0ks%#uS=E4k(zaip3mJ8nw6j%%ct&hI(+eud{x^6+@U z5D7-P9`n5CJLLNQfu&pCKFfpkTTi(aQT$|Dw&i_4ZYOU=!k3)x=TPqtJbwu1zPR6N z-@b=+}k-T&JsO#ur?5C3$fv$5(Du?i3T|>nrH0P;bP*+hLO1g@hvN2T)Be`lC)1+ zY(c6FDPW?5If0lTzR=muusjGenV<|De?G&r;AhWIiq_g`P87=nEBM7bzu?AZ zZvSEy2%&Xjss~>R*ASnNO{{=HJunvp=&@ZYn$ml2$>CX|224%yS}$bdRse`#Tj2}| z7>JofDN{6NBLa>E{5U*kN!-8yX;2>Ul9NaVIfb`vd}DOxvhpQHc>xhBSq#)vagddg zri}GgkU}0*G^uJ<)1p;9OHNsH&X#wbauZ9Ymd&hKH7`<9(UOamQfl$aRZzw>)LgBW zTB|#ZdUEJ;%y$SHH)*M9%gtJ8wRuPS^whQIZoTx{eejTh5)einHp-~OCrzZ%OjBo` zHp{Hj7jkXMN=sK>w#ur@AFSQ1erD~Nxo@*ZH*0)|+Vkw4HHgjLRM0Lbx;X=5oCu8D zW&jDzo3mIbCEmF|V=E{w78@YBA(#2T5jFmAKR$W3?)ZBP4D6rn6sM!!8n4+I#_{h~hSYska*ai1X|M6&^b&5zwc4*6Jvk&W7*LZwt_t9c@F_O3v`ei z8y0QO}pzT@$T+a=p` zg-}|C*$E&c*%*zFQP__gg)xwWT1kPvqOsY_9t572bQghW^t}Spc2hDIIC4Wzz)9e8-C*Mr8*~AW=4oO{&9tD>*DEV|Ephvn&&rVxMCl|PF94@C=IYDFIW3tcfn%tap&NB{rD-Ko=amdg*hy_s*N2y{FER?oFs}3fYenFFl zB*n#1a4k6au~>C*an{wrRS*O}K%5+%6kVjm|0RVMF&-TEBH7MVq}mGo)uy^TZ)yq1eGv2eXo{5Kj|_WkscY zZ`NU%^A=~NQe&-q@)rj4>PnjHG)EA}5)w#4fP@;#sK7*&R+SV3DcX;@_=jzOl3WtG z%3$PJKotr^+YkN+zq>UGQuoK31oUqM7uRh~+5;|kfT1T%)J0qJ(exGy!220}Qw|uo1$x$;-dg)OeE>4l)$$E+ za0rYRDSO@J-QAtN{d=a>-w&(sa=r!8`e^_F00v@9M??Vs0RI60puMM)00009a7bBm z001r{001r{0eGc9b^rhX2XskIMF->s6$>*Tn-E;h0004hNklKTE?v9ERWP zAbx=cqL3j95{Gu^T9=l*baMAvn!GBK<;On?b60VWWdK%v&P3$?Dj5`jXk zYk%hQ;C8p*S0WY`oHq?uEp&lOwZ2g6D;fKycunE6=htY?K&4uTC`c}ezLK#Ik2dje z`v%26cEK-Ca>T0u`R_S)-~fn&U29EQZxdhAW^up^l_epVGLa7B8bGF z0_AcZn%1LmYcj@sIzzjCj`?&($2qlSLcDy-Wx0en&n zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|amg6=I{O2ih1Ogxk@;F@I%MEh;6ezVj?r~3M zCjIg?k}XO!g{2A$9oAoe?(hc=mc${cm0WXH=J2mIojW%3Tk zCFsqq`~jzXp7g`KJk;=$MZ^!y{AAI51j0A??LEuh>+-Ip8~|6ooqBWS++kq{oN`{v zI1OLLy`8h-EV0D_)+Su-A$B}eVj#FF(WFM3))@y4n3#C6VPqaa+~733 zEl8Cq1*{A(Cz$4kEp+r&*9T<a}0wPqh7^tbzKvqhc zGV-k;gj!J1q^em>i&kw}a>|->w(NDPnOHKlY-Yu(wIU@IExA}JrIuE?3d)#O5`X{Dtr zFI#2R)iz>n%T8N&-nPrGyFFODS$$^hBXi$pjc(TX5asLaoi$9Gy@?<%C+eJmF-`== z%^5&IvvU>;rNqvha~3O05K)Ge>f}sv#=u}&#JcIh-8*xi@)m&Z&+^8vmbDEpIPao9&caIRtqY0#j5-LHg|!8y9@yua4or3ivJPx1cW*v{6RdY!&&BY@2Dc zHg%<*Q6!MU9huyxwn~^o)tfZZM&7NO@z}cW8f97^YACe|5lBlUY1h=+mid-09j)WX z?F#?8urJGPqbAj!u+dX|_;v^x-0SMocGi$5ZxhUG+^7^N1ewQlzi_d*bynM*KK`QUMSY+4zp&cT4`gog^q%pwj4f}ai5fY z9Oyb%4734qtX!cr4E_0Ktb`wkHgT|4L6qN71EIcmnP7)_!X5#g z@q#zVnjO9qAG_KfBy%<@eS6zMNX52ug7i{b*Z_O#h6CQc(1F0v@d6#zgDJrd-AbdW zM=Bvmu+}D|Y^s2Np-&--1L9OXCuUpda+zij{m$4PT7i2F- zXjrXz#FGb>BZX-0LA4Vj&Q3OJ8SrU2vZbK~kBIQWs{^*KPhlGlTR53|aJ#wokS=tx z8yV-RtVm@f_V5|B>kG`w$c25$IJe;^9eYn6uPm3Fj4eYBWln_$TFr zLlDbXw50GlOOZ2|MpVjLZnx_9B!w?&v%dxXkAh_HFhOeg8{52%SPVIt9{>OWg=s@W zP)S2WAaHVTW@&6?004NLeUUv#!$2IxUt3E>D-Ko=amdg*hy_s*N2y{FER?oFs}3fY zenFFlB*n#1a4k6au~>C*an{wrRS*O}K%5+%6kVjm|0RVMF&-TEBH7MVq}mGo)uy^TZ)yq1eGv2eXo{5Kj|_ zWkscYZ`NU%^A=~NQe&-q@)rj4>PnjHG)EA}5)w#4fP@;#sK7*&R+SV3DcX;@_=jzO zl3WtG%3$PJKotr^+YkN+zq>UGQuoK31oUqM7uRh~+5;|kfT1T%)J0qJ(exGy!220}Qw|uo1$x$;-dg)OeE>4l z)$$E+a0rYRDSO@J-QAtN{d=a>-w&(sa=r!8`e^_F00v@9M??Vs0RI60puMM)00009 za7bBm001r{001r{0eGc9b^rhX2XskIMF->s6$>*AAFdq}0004xNklze@sP z9LAqlqW?g{k|T~luAzozL1>YtZW3B<2vSUh#K6VLMM82rs!asJ=^Pv!8cvGfhKhoc zARO$6q%=2PL)^<<4&CV+F7LA(eDC1%x#xQvFVS@!vy2Zj4j148T!0HO6G&FtX0p;Y zXCjcSw9T*0Ei9~t;8nuM3cftJcg&aztiDoux zrZY>pxp>3=FiqiJo0xM82LM@)Lsjcod_JRa0JypZTA3PlpF*?=<||m=SfkhXl|5pI z|8By{$w7=vEl@5M(d&1|=0^_^VuxEYv6qr-xa$VWr6M$~0RXtW{@Jl8NVuGjIGXVC z=AHypwGLU1Qwb}gAmQ*lOziOOW1TSj59IO%sA`?=Ulb%5Mu*<-^}Fx~1JFLhWD@wF z0-_*MxK+JB7=U4P9N&dqf~i0%wF6CSP zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|uvLh!9{Ld+J1V9MEaR7;`+#ttKi zs#2+n$2K!~Mo8T)AqV^8_Z@!2E0o@b^ z@k7QGVWjJ_+I|1PJU<_ha?j7V^Fh{ar`?89e6uw9%6_i5leZzt*L=FKL%$yw^;J0c zC$HP=OIYu&ivSE|*rOb>QKERh^R*IPpMekKJ5%x-@%zAaJm2Xfe&GS#CjdUq-r*Nt zJfkNZm!X%i>N}k7`NZ$$>9I_H<59|wmGf(lSRO+7fZyKQ_O>g!QJ|w<>K)WeDCZ0} zPQXd$v5G_RVVui3I*t}cTwqNR>I`w>qNfbRcPdHKNITgXS6XnfWXpmv=LN)lu94)P z7l2Px{75@XpiW8+tSm4`n9dJh(pk6rdRVMsWlgv0rE;xRs@JI@Bt=-Nh&1Uk8nx26)h4aA z-bT-zP{ug)+NHPN`xsbslmS}<_YX|WJZYB6vrd_9_Bj^hv&!OCm#nt>8k&_9B_L>3 z(WYI8C4-c#7+W>5X5Gey);8_3dDktw?Y_r@wVTzqti5OMuUShsYxxl6_sNqrOpCmj zNM26ZIRj&;?O{T>9Xp8+&^YUykDwrbF6t>#3?UsdZ3XT z84H54I^#A(1V~n5M1=T2i@ z;R=5f9xR}+j_n^iOG8Ac!qzHyAG0{}AxQ=xV zuYY6NDRscsyMN^C2T6sW$h7AuZ7TW@gi5}vJ37J33N)1q&nHX3gQ_4ja?Xj zofZd=fe|Sxq+6LqP@Go1B4Gv&2wb0mqj944iJ##+fu&O@Q3*`baRL=Hv}SgSLY_JI z>5VObZAa{B&W5@#HUY6gG=AO(LiBB=yABXWA;EvpaOFp--`Uw-kKyaoL^Zxv1X6T| z1z^8;AjDsF<$pu}h9SXUf({-038n&tla_U8L;wH*g=s@WP)S2WAaHVTW@&6?004NL zeUUv#!$2IxUt3E>D-Ko=amdg*hy_s*N2y{FER?oFs}3fYenFFlB*n#1a4k6au~>C* zan{wrRS*O}K%5+%6kVjm|0RVMF&-TEBH7MVq}mGo)uy^TZ)yq1eGv2eXo{5Kj|_WkscYZ`NU%^A=~NQe&-q z@)rj4>PnjHG)EA}5)w#4fP@;#sK7*&R+SV3DcX;@_=jzOl3WtG%3$PJKotr^+YkN+ zzq>UGQuoK31oUqM7uRh~ z+5;|kfT1T%)J0qJ(exGy!220}Qw|uo1$x$;-dg)OeE>4l)$$E+a0rYRDSO@J-QAtN z{d=a>-w&(sa=r!8`e^_F00v@9M??Vs0RI60puMM)00009a7bBm001r{001r{0eGc9 zb^rhX2XskIMF->s6$>&nF1M7-0005RNklu}dRC6oVOL3D;B+dSs9cBi;kM|zSh)SixAfqwhL;{gOB+#=!zEt&=)=#{F2;@suuQmRW z*HoIY5?ZftfcU+GJ~k3cB9wr8H0zZHz4PLu`24K3DlW_O(iPu!Rt9EFraMQ5ZdPs;M{KxIvdBNI~aK9z0mC#h-0LkPc z>*sSK2%njJTVE`nb<9IwTQD&-F2AS0mqif%Wp$X^^)p|+TpRr0TT1jSuv6Hi(X4mu z-wY*05bjrH{?DE=T)6@}g-vX`48YybdjL$s;$|oz{+)+z;K~BU;xWnOqLlDs8Wy?B zQ4xeMe6NVU{Rh_a8x)Jjvj3)G;W$_FywR)^i|g3GMnxF-e+5j#l5oHDvAB-oT(!+b zP@=B_*=!oyE=zc$S?8tYa(KAUOUsq_{Jk&{D$nvvW`$T>?*L^oD*&P4$^!j@^&}8I f$s&PB;Jxw})`-ybr=puD00000NkvXXu0mjf@>|d3 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Pistol/pistol_speed_loader.rsi/rubber-4.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Pistol/pistol_speed_loader.rsi/rubber-4.png deleted file mode 100644 index 9bb14be66175df59b7fcf69db0285a133107bfdb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2621 zcmV-D3c~e?P) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|uvLh!9{Ld+J1P}8`xj~MfhMDKL&+lWi zo6V0@t;aSqct%LwEg=X0>(3Sbz>7+Wp|G^tYmIo7UOFjGTD)G@m|{8K=SBBVxPCJq z9zPJKGRAyeR=@98%=7C5Qto+sJ0E1+cG_(y#Wzdmz4AVvx0AP_OxJw6uS35d(E3d{ z_lL%9_9d*R>mmSSGVEmvSdzUf*iUmwMX@l84H8}Ym1I-Z&S9>4H_?gIcHXHWRW z7tiu59G9V&u<8>|_k7}~`TSUh-guPgu`+$@QC$xqyu)v;+1BzaIxRH-u6hUc63RKl zjRrXLd930Pd>H3)j*g>6jRUMrglZugE_xy$zEVjuX8z{CJ^8PoLeC7pHqUJr{ktUMF$qy%H&`0Wv%Cw}&LV`!}{^ORzH zUkDpd=Jq%40wHPLnDW6lg=>hB64Jn#3o}<1ZroXGuBCFVRqC!&Dp`uKR1s;?MO$vAajQ*Q zYrScwo>9g)^xCDj-n%Lm)uOPaxL+}0WZ8W$sr{#&R$)-d3RmV+RCdeUUkW8t1o@9cC-4HwP)tOW-Z;U(IINzC$FqwTI9t< z+U0~dXJCv<0^_n7fS_q}7F#NXHglV^*eQpcncyXFa%S3$fx+U5c%=t-ugrbQTL8L0 z${T&eT-en83g*J5?i=Rb^Y#I2Q%||ghoGH>z!ViSBmGv1N)7M$vt#(T27Vj*{~KCK zb!tb}LF2QGsuK#7IwKjB>#O3P3em3KJr2pyWcD=#TW#_#=+?q;sJ86BZ8EGNACMh0 z7LtKol<}@q+jX|Pq0h$fy&FCs*^%NSw=v)=2SY5=rmtCCN3O|mwb;0giE!0T4V45l zRK}ELB~KLuY{RM}LSJ6YQdrr#*J!ThV@*FcX~Gcp89+leOCPJZQ5(mFVl$DxQC&93 zma}O_bz7lqCt(fwkKM`ZWMv-?=qL95g{|*|(Yjt|D5f8d;jLt0wg0bqQZlM!sQ?i#cVbf^e-@D=t2fI$_*bv+qI7jl#k@7*=~8jB9N`F zGPI%-mBqUtPO;S^qtb3Oa|n7f20p-zcm4F56C}n9Gr>g^CuCzON-D~vah|mm;CnQy zqd=GEEPgSDPku0$igh%pwNbDijRns#qaw2vs=x{HLP)HJ{bscQIe>ZwrHZ0VR_Dqx z#}bRy+S=8eW(D2lXaSraw-@#vv<{AlWBqGSWVVQc|zE`R$rRT>Ib4y4c*I2d4~|nh86V)e=vaT zgkPF`0B>ZlG-kK8o0(qiE=e<@!}?SW;d^os6uG@SOleR&Ix@6I1PZoy*dq|=Ns$~< zA9;$L$SXQILi2fDZSW=pp13DgaEt$11HR+0E}AC9yRBFe6thuRIFT^R)=`~DM;CYg zRUq%j@Q?I= z@6f0d&q@kEvo(G+1{pg?&Wb=P-(dmRAG8$WFLLR(q5r~=;4ef6-G2l9RG()dDppMZ z00D(*LqkwWLqi~Na&Km7Y-Iodc$|HaJxIeq9K~N-OGPUVRuFN>&^m|(Q4vR}Vi7Eq zwnD28CYOFelZGV4#ZhoAIQX$xb#QUk)xlK|1V2EW9Gw(hq{ROvg%&X$9QWhhy~o`< zz}u)W#ps#<6xGyI@tBa!tqOrx_%VoHL@*{YLrbI=GjJVW_wexbF3Pjq&;2?26NhC*rF?JJVVUz5XQfhOt$Xqp2J`Aln(H)25XTY{NJ4;w8p^1^M3h#Q6ay*R zkGc4VZGVzn61mD??&J zfh)D`uQq_$PtxmcEqny@Zvz+CZB5z(E_Z;TCr#8vTk_HL77D=o8GTa@7`O#`)|}p2 z`#607GSt=b4RCM>j20<--R0fgoxS~grq$mMtMGEZ1=0Fx00006VoOIv0RI600RN!9 zr;`8x010qNS#tmYE+YT{E+YYWr9XB6000McNliru)~fejs+At-?pr_OR6!oB1W+RG&+%RS2r&mDX|JkR%zSJ<{qFH51v z6$``yu|UTHhFS3*FMjZPB4C&muQ8b8dTN@e5=y6V0PWO4&88zsL=te{J@Cx2bqNP> zfBXVyTSAEfAIkRwuy%4U09UhV)NC5Vtax1)C>cuu_~F3?03(NG2?rRTnP7ZoBJ?Db zu<%qe!|GXHw8Fn0HJ`6!UQ0N@=CK<(6G~V(fUXx<+}o@{C%&dZYiPuelB%?yu&FR}Kva z5MggbC1VL)FL3hxRQ781Do<}8ctiRAKrSA=utir_u(9zTT`yo+JAr;GnW4NlAYQ$U z1_!tmCV>9_Q^^dDvrjH}Urr#QsaOpJM?bxG;s2aKE8HJ_LQ`>^{Xi}fnu>KbAfo(L z|0=MsFpXvHNO-MY<+9M>2#dve5}JAgR4mQ|M25HZ6?6mEkwAPU fiv?nV|5bkg)CAY%k^UdU00000NkvXXu0mjfC@I1+ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Pistol/pistol_speed_loader.rsi/rubber-5.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/SpeedLoaders/Pistol/pistol_speed_loader.rsi/rubber-5.png deleted file mode 100644 index a52d8764c1802cfa11458770d3351500854d60be..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2574 zcmV+p3i0)cP) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|ulI$i7{Ld+J1dtGd2cA_xI=ipyRevZ$l|QP0c>DpU-=dw;`shKi$`%-49s#!kzm^ z<2L)|*2{HPfH4L3m;xF38Z^t7TxkD2Mq6={74;RAkq&${=zyt7;a;3~IMZ?2p(4D5iD z&tnCL;wL!Qb2J<^S{z_)!qpyP$3;s7#COVRCQCc5(~dN-#7v76Eztnt-d9IoLB~fa$v4-&|<$#bV={p;=?mX2^gB=6)#EWZ2%Bq zZoy&_gMnBQODZWUk){M3EBG<2oH$bl14)9=#40H>7m!oQ=f*Rd&R7zV5}v!KwR#xsSYk!rHWxZut=8Q3y#-DA&uNwH@(0||1PG-{@q7E9L zc@&#apq3f^rWB(-<0?G*E>$)zm#U$qKDI&lvxV7(XQ_F&dQ98M=W%@FkF?>tALs*N zS2eZji%{Af!8f=gvGEe`SSz2y;Rs*Bnwf!me!W)o<)a^Bx8vu6Ew(81{fV6;MeBrtKuXufTaU$ zUh5a23f~xjDXsT{{4xrPjAejot+}?cX`EF(y&w%0(2wOD2{bNn$V3Q9v5KaN8XQ|} zgR>|^R-3#8`)Gv=Fl>Ei8eLH`*xC*@<`})Ku9#=#-qYq(2P6aRFg@Vjy4v=l0sAvD z=+RbO5&P>(n9Q)RNZ>IFV@B8)V2o6VjIIqTY>Fi7DR;)UQ6}IS@X_o#!^ZQ}hS!eI zT1?<>V(-VcQY&?&;8hD2Zyj15gKY(1IVO1*07$Ln-2nyiGnVM?RMOruC*Xvb5F0Af zmp1BDlo*D7a#aSDgMvA1o!~n$);z{IebDG^MS4Rp!gQY#TZD8Kps1U$_t#zLi%Ne+ zq~TqqCku?7>raF%)qs;DI!h4LB|uw@&1#uA)`GeXllxZ7-gr5TGaw}pKLSGFM{6ad z1hteb0ObH5Fp#jni(V$m6Wvv@e{fH-K zY}lxg62PVu=hn8~?1qYky9V6}5r_aQvA9xPa%Itu^8P#WZTR|tozx6zXGP^H2Qp7e zQbun665who91ZaagoB|Z5yd-R@gPT$KwXhyGR#1nBn}-a2F8m}TNCduqDX_QAr($N zKoLmjIT%7J_hrz7iKA<=xI->bi5pcD@}lBR1%Zk(WO|8n3uK|*8gCj1KP(z-AjLP3 z(g*xC&nP9y4Aq@2DAb`Ilvae?j`FtmdVD7`ynpd^<))CbFmxa%K^85dP(-GM1Y2-G z3|7S0(;Z))pi-N->g7_?VNbtsh(%g=s@WP)S2WAaHVTW@&6?004NLeUUv#!$2IxUt3E>D-Ko= zamdg*hy_s*N2y{FER?oFs}3fYenFFlB*n#1a4k6au~>C*an{wrRS*O}K%5+%6kVjm z|0RVMF&-TEBH7MVq}m zGo)uy^TZ)yq1eGv2eXo{5Kj|_WkscYZ`NU%^A=~NQe&-q@)rj4>PnjHG)EA}5)w#4 zfP@;#sK7*&R+SV3DcX;@_=jzOl3WtG%3$PJKotr^+YkN+zq>UGQuoK31oUqM7uRh~+5;|kfT1T%)J0qJ(exGy z!220}Qw|uo1$x$;-dg)OeE>4l)$$E+a0rYRDSO@J-QAtN{d=a>-w&(sa=r!8`e^_F z00v@9M??Vs0RI60puMM)00009a7bBm001r{001r{0eGc9b^rhX2XskIMF->s6$>&7 z@79TD0005mNkl&r9227{@yu$^A~8@VLcSJ5ZTE;ARb2FHI!{h+SyBZv8)`IU$Sfe+`tewj z{7$DU6Moa;3y|)n zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|cvg9TV{bv>$g}5%%pn-E-%4 zld4pz#_l#Y20hM^1P=DspF8}4BbAy$VbR)ZjW|jxEp^;zypF4-SkCnv>3)Uhr~dGG zk?tPjiwKPEn z0eGCWlLYXvvVxTf<}$j|!xlPvo9lxzh2}*VnFzwb@$(s8J3f0p3EJDkoG9u8E7+Ah zzF>wk=U0pZA+&Ey`QS_8YU1nR#AYza2WEwXJ&sGnV0w?Oe0a{01BRA(m48%&AsZx}bga|k)`021b<&p*%AP$@stV|{63UV~LZp;xnV-u&V8|B4QBiAgT z28jZ)O5swGZ;BA=fio9ot}LwFxYt}u@2sI)m-_{Gn*;hzflE$II*XjAX2H)I`R ze3e=ILIg@((O+`yX{=~9&#|lW#-oXJv}w%U5%{ZxH8`)TWj8&d`z&WVe(_h@@Y55< zMB1rPQ#V4=9!S2mds|4~nSD^3xF9j?PCkEPwP%GaOKiw$Gtox6SC!eZQ-EYtMxJ|4l#@}?#`v8fV__{aS%Ety z8jv=;mFaWvtEuXB=exw8X~TC1z%n>HSO|5I+GaN10#`@F&I8Eo8yKv#GV(f8+7QVr zAqaAtfYpGnwmutTLhCNpc4{v`nm&*WA3|v*gPpuRatxz3rZ`C0V!7J@SDOq1M$NG8 z&zoD=33f?tM++JSSe&z|K84-7!p@^^bjnt*h#uH#U3cL#NwHCswVT#%zHq?~Uuoll zFN|zxP30ilI+9|^6eL9xLAD@oY%JSYo%5W)I&M|3;wbyD4cT-e+wkFGKSUYeG|

    >Z0Y*In#HI$KNgt8a5VN-(*(OuD`(6nDGX;&N0jTcSm z!~Wh9suwhn`!}ltT0AXj`K0Og^O`438$K+X()9$4@I@eku@%WQfRe`HTp^dSiopv= z!RFG7Azhv<)XA}Z57)dj9$ZHYpL68Hntc^!STMZe!U|OAl!rQXSTD7sc+Lo5`(a*D zDp2@P1lFl~h-@|kK6FG15fK86zfum!ZhdY7I5W2 zza;6~?QcQOzkh$s{jB2g=s@WP)S2WAaHVTW@&6?004NLeUUv# z!$2IxUt3E>D-Ko=amdg*hy_s*N2y{FER?oFs}3fYenFFlB*n#1a4k6au~>C*an{wr zRS*O}K%5+%6kVjm|0RVMF&-TEBH7MVq}mGo)uy^TZ)yq1eGv2eXo{5Kj|_WkscYZ`NU%^A=~NQe&-q@)rj4 z>PnjHG)EA}5)w#4fP@;#sK7*&R+SV3DcX;@_=jzOl3WtG%3$PJKotr^+YkN+zq>UG zQuoK31oUqM7uRh~+5;|k zfT1T%)J0qJ(exGy!220}Qw|uo1$x$;-dg)OeE>4l)$$E+a0rYRDSO@J-QAtN{d=a> z-w&(sa=r!8`e^_F00v@9M??Vs0RI60puMM)00009a7bBm001r{001r{0eGc9b^rhX z2XskIMF->s6$>#i0`~(J0005ZNklu}d3K9Du(UO80s@qwMxYKsU z1s3$>5d7!&W6r+(;%*6VWF-=^@KiF*S}h~?-+b`lcS`^`msi|QPDz(Y$ie}#*&L;t zf(XJrnOE+j4-b~;*%k~x8S Date: Tue, 4 Feb 2025 07:53:17 +0000 Subject: [PATCH 070/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 362e8427e2..f24c993ded 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,15 +1,4 @@ Entries: -- author: ArchRBX - changes: - - message: Mass scanners and shuttle consoles now display coordinates beneath IFF - labels - type: Add - - message: IFF labels that are beyond the viewport extents maintain their heading - and don't hug corners - type: Fix - id: 7396 - time: '2024-09-19T01:25:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31501 - author: coffeeware changes: - message: a powered TEG won't produce infinite power when destroyed @@ -3910,3 +3899,10 @@ id: 7895 time: '2025-02-03T23:33:14.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32934 +- author: ps3moira + changes: + - message: Changed 3D item sprites to cabinet perspective + type: Tweak + id: 7896 + time: '2025-02-04T07:52:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34293 From a71a79d7859bd2bc0329cc4839fa05b8397b0e7e Mon Sep 17 00:00:00 2001 From: pubbi <63283968+impubbi@users.noreply.github.com> Date: Tue, 4 Feb 2025 10:11:46 -0600 Subject: [PATCH 071/313] Fixed bola effect stacking (#34723) --- .../Components/EnsnareableComponent.cs | 4 ++-- .../Components/EnsnaringComponent.cs | 6 ++++++ .../Ensnaring/SharedEnsnareableSystem.cs | 21 +++++++------------ .../Objects/Weapons/Throwable/bola.yml | 1 + 4 files changed, 17 insertions(+), 15 deletions(-) diff --git a/Content.Shared/Ensnaring/Components/EnsnareableComponent.cs b/Content.Shared/Ensnaring/Components/EnsnareableComponent.cs index 307a5e1986..126031dc6b 100644 --- a/Content.Shared/Ensnaring/Components/EnsnareableComponent.cs +++ b/Content.Shared/Ensnaring/Components/EnsnareableComponent.cs @@ -13,13 +13,13 @@ public sealed partial class EnsnareableComponent : Component /// /// How much should this slow down the entities walk? /// - [DataField] + [DataField, AutoNetworkedField] public float WalkSpeed = 1.0f; /// /// How much should this slow down the entities sprint? /// - [DataField] + [DataField, AutoNetworkedField] public float SprintSpeed = 1.0f; /// diff --git a/Content.Shared/Ensnaring/Components/EnsnaringComponent.cs b/Content.Shared/Ensnaring/Components/EnsnaringComponent.cs index f900d863c2..b05ce151d8 100644 --- a/Content.Shared/Ensnaring/Components/EnsnaringComponent.cs +++ b/Content.Shared/Ensnaring/Components/EnsnaringComponent.cs @@ -38,6 +38,12 @@ public sealed partial class EnsnaringComponent : Component [DataField] public float StaminaDamage = 55f; + /// + /// How many times can the ensnare be applied to the same target? + /// + [DataField] + public float MaxEnsnares = 1; + /// /// Should this ensnare someone when thrown? /// diff --git a/Content.Shared/Ensnaring/SharedEnsnareableSystem.cs b/Content.Shared/Ensnaring/SharedEnsnareableSystem.cs index 551c76ff8d..dacb773470 100644 --- a/Content.Shared/Ensnaring/SharedEnsnareableSystem.cs +++ b/Content.Shared/Ensnaring/SharedEnsnareableSystem.cs @@ -256,23 +256,18 @@ public abstract class SharedEnsnareableSystem : EntitySystem if (!TryComp(target, out var ensnareable)) return false; - // Need to insert before free legs check. - Container.Insert(ensnare, ensnareable.Container); + var numEnsnares = ensnareable.Container.ContainedEntities.Count; - var legs = _body.GetBodyChildrenOfType(target, BodyPartType.Leg).Count(); - var ensnaredLegs = (2 * ensnareable.Container.ContainedEntities.Count); - var freeLegs = legs - ensnaredLegs; - - if (freeLegs > 0) + //Don't do anything if the maximum number of ensnares is applied. + if (numEnsnares >= component.MaxEnsnares) return false; - // Apply stamina damage to target if they weren't ensnared before. - if (ensnareable.IsEnsnared != true) + Container.Insert(ensnare, ensnareable.Container); + + // Apply stamina damage to target + if (TryComp(target, out var stamina)) { - if (TryComp(target, out var stamina)) - { - _stamina.TakeStaminaDamage(target, component.StaminaDamage, with: ensnare, component: stamina); - } + _stamina.TakeStaminaDamage(target, component.StaminaDamage, with: ensnare, component: stamina); } component.Ensnared = target; diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/bola.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/bola.yml index f8d5efb8c6..f6630adbb3 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/bola.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/bola.yml @@ -47,4 +47,5 @@ staminaDamage: 0 # anything but this is gamebreaking canThrowTrigger: true canMoveBreakout: true + maxEnsnares: 1 - type: LandAtCursor From 1d5b01190ddeb51f0b796e1d631e265f0afa5d8f Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 4 Feb 2025 16:12:55 +0000 Subject: [PATCH 072/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f24c993ded..4ea524d19a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: coffeeware - changes: - - message: a powered TEG won't produce infinite power when destroyed - type: Fix - id: 7397 - time: '2024-09-19T02:15:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29972 - author: Boaz1111 changes: - message: Added plasma and uranium arrows. @@ -3906,3 +3899,10 @@ id: 7896 time: '2025-02-04T07:52:10.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34293 +- author: impubbi + changes: + - message: Bolas will now only be applied once. + type: Fix + id: 7897 + time: '2025-02-04T16:11:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34723 From 6a017ef17b8e24caa0f690dab8a0d9e0b8da8d0b Mon Sep 17 00:00:00 2001 From: ActiveMammmoth <140334666+ActiveMammmoth@users.noreply.github.com> Date: Tue, 4 Feb 2025 11:25:54 -0500 Subject: [PATCH 073/313] Mind Swap Fix (#33553) * Stores owned by mind instead of body * Requested changes, traitor uplink fixed * Store, listings fixed and now use Entity * Removed duplicate code * test change * test change 2 * back to mind entityuid * MilonPL requested minor changes * ScarKy0 requested changes --- .../Store/Conditions/BuyerAntagCondition.cs | 7 +++---- .../Store/Conditions/BuyerDepartmentCondition.cs | 8 +++----- Content.Server/Store/Conditions/BuyerJobCondition.cs | 8 +++----- .../Store/Conditions/BuyerSpeciesCondition.cs | 6 +++++- Content.Server/Store/Systems/StoreSystem.cs | 8 ++++++-- Content.Server/Traitor/Uplink/UplinkSystem.cs | 12 +++++++++--- Content.Shared/Store/Components/StoreComponent.cs | 4 ++-- Resources/Prototypes/Magic/mindswap_spell.yml | 1 + 8 files changed, 32 insertions(+), 22 deletions(-) diff --git a/Content.Server/Store/Conditions/BuyerAntagCondition.cs b/Content.Server/Store/Conditions/BuyerAntagCondition.cs index 4b1b6013eb..0d1c33a61a 100644 --- a/Content.Server/Store/Conditions/BuyerAntagCondition.cs +++ b/Content.Server/Store/Conditions/BuyerAntagCondition.cs @@ -27,13 +27,12 @@ public sealed partial class BuyerAntagCondition : ListingCondition public override bool Condition(ListingConditionArgs args) { var ent = args.EntityManager; - var minds = ent.System(); - if (!minds.TryGetMind(args.Buyer, out var mindId, out var mind)) - return true; + if (!ent.HasComponent(args.Buyer)) + return true; // inanimate objects don't have minds var roleSystem = ent.System(); - var roles = roleSystem.MindGetAllRoleInfo(mindId); + var roles = roleSystem.MindGetAllRoleInfo(args.Buyer); if (Blacklist != null) { diff --git a/Content.Server/Store/Conditions/BuyerDepartmentCondition.cs b/Content.Server/Store/Conditions/BuyerDepartmentCondition.cs index 43c06efad3..ce2cb47073 100644 --- a/Content.Server/Store/Conditions/BuyerDepartmentCondition.cs +++ b/Content.Server/Store/Conditions/BuyerDepartmentCondition.cs @@ -30,14 +30,12 @@ public sealed partial class BuyerDepartmentCondition : ListingCondition var prototypeManager = IoCManager.Resolve(); var ent = args.EntityManager; - var minds = ent.System(); - // this is for things like surplus crate - if (!minds.TryGetMind(args.Buyer, out var mindId, out _)) - return true; + if (!ent.TryGetComponent(args.Buyer, out var _)) + return true; // inanimate objects don't have minds var jobs = ent.System(); - jobs.MindTryGetJob(mindId, out var job); + jobs.MindTryGetJob(args.Buyer, out var job); if (Blacklist != null && job != null) { diff --git a/Content.Server/Store/Conditions/BuyerJobCondition.cs b/Content.Server/Store/Conditions/BuyerJobCondition.cs index 1ff4a97c33..eb452e0dcf 100644 --- a/Content.Server/Store/Conditions/BuyerJobCondition.cs +++ b/Content.Server/Store/Conditions/BuyerJobCondition.cs @@ -27,14 +27,12 @@ public sealed partial class BuyerJobCondition : ListingCondition public override bool Condition(ListingConditionArgs args) { var ent = args.EntityManager; - var minds = ent.System(); - // this is for things like surplus crate - if (!minds.TryGetMind(args.Buyer, out var mindId, out _)) - return true; + if (!ent.TryGetComponent(args.Buyer, out var _)) + return true; // inanimate objects don't have minds var jobs = ent.System(); - jobs.MindTryGetJob(mindId, out var job); + jobs.MindTryGetJob(args.Buyer, out var job); if (Blacklist != null) { diff --git a/Content.Server/Store/Conditions/BuyerSpeciesCondition.cs b/Content.Server/Store/Conditions/BuyerSpeciesCondition.cs index 1df4fce177..a4f1227ecc 100644 --- a/Content.Server/Store/Conditions/BuyerSpeciesCondition.cs +++ b/Content.Server/Store/Conditions/BuyerSpeciesCondition.cs @@ -2,6 +2,7 @@ using Content.Shared.Humanoid; using Content.Shared.Store; using Content.Shared.Humanoid.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set; +using Content.Shared.Mind; namespace Content.Server.Store.Conditions; @@ -27,7 +28,10 @@ public sealed partial class BuyerSpeciesCondition : ListingCondition { var ent = args.EntityManager; - if (!ent.TryGetComponent(args.Buyer, out var appearance)) + if (!ent.TryGetComponent(args.Buyer, out var mind)) + return true; // needed to obtain body entityuid to check for humanoid appearance + + if (!ent.TryGetComponent(mind.OwnedEntity, out var appearance)) return true; // inanimate or non-humanoid entities should be handled elsewhere, main example being surplus crates if (Blacklist != null) diff --git a/Content.Server/Store/Systems/StoreSystem.cs b/Content.Server/Store/Systems/StoreSystem.cs index 7bdf550301..a57895364d 100644 --- a/Content.Server/Store/Systems/StoreSystem.cs +++ b/Content.Server/Store/Systems/StoreSystem.cs @@ -10,6 +10,7 @@ using JetBrains.Annotations; using Robust.Shared.Prototypes; using Robust.Shared.Utility; using System.Linq; +using Content.Shared.Mind; namespace Content.Server.Store.Systems; @@ -69,10 +70,13 @@ public sealed partial class StoreSystem : EntitySystem if (!component.OwnerOnly) return; - component.AccountOwner ??= args.User; + if (!_mind.TryGetMind(args.User, out var mind, out _)) + return; + + component.AccountOwner ??= mind; DebugTools.Assert(component.AccountOwner != null); - if (component.AccountOwner == args.User) + if (component.AccountOwner == mind) return; _popup.PopupEntity(Loc.GetString("store-not-account-owner", ("store", uid)), uid, args.User); diff --git a/Content.Server/Traitor/Uplink/UplinkSystem.cs b/Content.Server/Traitor/Uplink/UplinkSystem.cs index 4c0a990b14..f30d2d7b4c 100644 --- a/Content.Server/Traitor/Uplink/UplinkSystem.cs +++ b/Content.Server/Traitor/Uplink/UplinkSystem.cs @@ -5,6 +5,7 @@ using Content.Shared.FixedPoint; using Content.Shared.Hands.EntitySystems; using Content.Shared.Implants; using Content.Shared.Inventory; +using Content.Shared.Mind; using Content.Shared.PDA; using Content.Shared.Store; using Content.Shared.Store.Components; @@ -19,6 +20,7 @@ public sealed class UplinkSystem : EntitySystem [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly StoreSystem _store = default!; [Dependency] private readonly SharedSubdermalImplantSystem _subdermalImplant = default!; + [Dependency] private readonly SharedMindSystem _mind = default!; [ValidatePrototypeId] public const string TelecrystalCurrencyPrototype = "Telecrystal"; @@ -61,8 +63,12 @@ public sealed class UplinkSystem : EntitySystem /// private void SetUplink(EntityUid user, EntityUid uplink, FixedPoint2 balance, bool giveDiscounts) { + if (!_mind.TryGetMind(user, out var mind, out _)) + return; + var store = EnsureComp(uplink); - store.AccountOwner = user; + + store.AccountOwner = mind; store.Balance.Clear(); _store.TryAddCurrency(new Dictionary { { TelecrystalCurrencyPrototype, balance } }, @@ -70,10 +76,10 @@ public sealed class UplinkSystem : EntitySystem store); var uplinkInitializedEvent = new StoreInitializedEvent( - TargetUser: user, + TargetUser: mind, Store: uplink, UseDiscounts: giveDiscounts, - Listings: _store.GetAvailableListings(user, uplink, store) + Listings: _store.GetAvailableListings(mind, uplink, store) .ToArray()); RaiseLocalEvent(ref uplinkInitializedEvent); } diff --git a/Content.Shared/Store/Components/StoreComponent.cs b/Content.Shared/Store/Components/StoreComponent.cs index e5171dec41..19d13e6d05 100644 --- a/Content.Shared/Store/Components/StoreComponent.cs +++ b/Content.Shared/Store/Components/StoreComponent.cs @@ -37,10 +37,10 @@ public sealed partial class StoreComponent : Component public HashSet> CurrencyWhitelist = new(); /// - /// The person who "owns" the store/account. Used if you want the listings to be fixed + /// The person/mind who "owns" the store/account. Used if you want the listings to be fixed /// regardless of who activated it. I.E. role specific items for uplinks. /// - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public EntityUid? AccountOwner = null; /// diff --git a/Resources/Prototypes/Magic/mindswap_spell.yml b/Resources/Prototypes/Magic/mindswap_spell.yml index 19b3d41e70..bc2a8d11be 100644 --- a/Resources/Prototypes/Magic/mindswap_spell.yml +++ b/Resources/Prototypes/Magic/mindswap_spell.yml @@ -9,6 +9,7 @@ whitelist: components: - Body + - MindContainer canTargetSelf: false interactOnMiss: false sound: !type:SoundPathSpecifier From 80354550223679aa185a635bf84830e782d464c5 Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Tue, 4 Feb 2025 22:46:49 +0100 Subject: [PATCH 074/313] Add binoculars (#34687) * add binoculars * tabs evil * give one to warden * buff --- .../Catalog/Fills/Lockers/security.yml | 1 + .../Markers/Spawners/Random/maintenance.yml | 1 + .../Entities/Objects/Tools/binoculars.yml | 24 ++++++++++++++ .../Objects/Tools/binoculars.rsi/icon.png | Bin 0 -> 611 bytes .../Tools/binoculars.rsi/inhand-left.png | Bin 0 -> 295 bytes .../Tools/binoculars.rsi/inhand-right.png | Bin 0 -> 295 bytes .../Objects/Tools/binoculars.rsi/meta.json | 30 ++++++++++++++++++ .../binoculars.rsi/wielded-inhand-left.png | Bin 0 -> 421 bytes .../binoculars.rsi/wielded-inhand-right.png | Bin 0 -> 421 bytes 9 files changed, 56 insertions(+) create mode 100644 Resources/Prototypes/Entities/Objects/Tools/binoculars.yml create mode 100644 Resources/Textures/Objects/Tools/binoculars.rsi/icon.png create mode 100644 Resources/Textures/Objects/Tools/binoculars.rsi/inhand-left.png create mode 100644 Resources/Textures/Objects/Tools/binoculars.rsi/inhand-right.png create mode 100644 Resources/Textures/Objects/Tools/binoculars.rsi/meta.json create mode 100644 Resources/Textures/Objects/Tools/binoculars.rsi/wielded-inhand-left.png create mode 100644 Resources/Textures/Objects/Tools/binoculars.rsi/wielded-inhand-right.png diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml index 01038f4196..93ea12404e 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml @@ -48,6 +48,7 @@ amount: 2 - id: RemoteSignaller amount: 2 + - id: Binoculars - type: entity id: LockerSecurityFilled diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml index 96cf75d935..0ff3c2776c 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml @@ -280,6 +280,7 @@ - !type:GroupSelector weight: 2 children: + - id: Binoculars - id: LanternFlash - id: PowerCellHigh - id: NetProbeCartridge diff --git a/Resources/Prototypes/Entities/Objects/Tools/binoculars.yml b/Resources/Prototypes/Entities/Objects/Tools/binoculars.yml new file mode 100644 index 0000000000..06712e67de --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Tools/binoculars.yml @@ -0,0 +1,24 @@ +- type: entity + name: binoculars + parent: BaseItem + id: Binoculars + description: Used for long-distance surveillance. + components: + - type: Sprite + sprite: Objects/Tools/binoculars.rsi + state: icon + - type: Item + size: Normal + - type: Wieldable + - type: UseDelay + delay: 1.0 + - type: CursorOffsetRequiresWield + - type: EyeCursorOffset + maxOffset: 5 + pvsIncrease: 0.5 + - type: PhysicalComposition + materialComposition: + Steel: 100 + Glass: 50 + - type: StaticPrice + price: 100 diff --git a/Resources/Textures/Objects/Tools/binoculars.rsi/icon.png b/Resources/Textures/Objects/Tools/binoculars.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ee368b680dfc3424f7176c18abb0a9f334f1c313 GIT binary patch literal 611 zcmV-p0-XJcP)_q((fuuMTRg1fcg0LI!%v^&`C5(;jJJ8*bDB{ z^1>K>#CmBcK1_FO2h^-}S4^jn#Fc8F>I7ik*JxD07-^f>?g4-_LcUG%uFlia;RTx) z`#~%Vgwi0%RKmOuD)vC?^LssRlDJ8-NU>{-Je2~(&ud{Us-`BC1yiv!Fh*?)^$oEk zWMkeNDk%YAz>P%7r9pr2PM6J}t}ofx>Cz~9pSBNxxFTCY9R_9+OJgSN8YTP4=h?!p zwiZ0jx&dLo2TBk{;bt0N zJmhphVVaz~H}Cb+Txo#<#hj z@4ddkIQ90Hw@=HT2rAexa`-bG5^ngwf`hpykTGt*L;csEIUx+sD(&>Pr$+iI^KgH- zwolnl@elWbmn;bv-aX%!a&84fs=Z$iSHLuw`^@94W#bA{6%2u%WbkzLb6Mw<&;$VD Cf@-G# literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Tools/binoculars.rsi/inhand-right.png b/Resources/Textures/Objects/Tools/binoculars.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..fd6ca1a7e3bbb0cdac9b13bd7407e666152c4c31 GIT binary patch literal 295 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fAQ1GUw zi(^Q|oVPbO@-`cYus!UavQVPMP_kvMP}3w0)=9mWKa~8x9?&qMcGKM-eKAZ5(-}^v zG8Az(pfFAD+21=a{k5cb?@p#=nYZeM5Z*Ys{O&5N` zBB-o$@FHi5ZZ- z_L#7i^-Q{P_4hA5f1R6;9<|)F@o$9QaS?t!(R9zDz2!5VY> zce2WfC43*$XTLh){zVLEB14f1!xImN6B8LGC^IU!Gdc9JK&(QM*vQHe{GlE%ZlA{Bv*Z5 bs$+bxHP^TIy3Z6~xHEXV`njxgN@xNAXK||_ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Tools/binoculars.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Tools/binoculars.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..d91a914e442ac3caaa102130f418ae578760c041 GIT binary patch literal 421 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|R5Y zr;B4q#hkaZ484vxNVLv3;BY&^sIpD-(%X5C0wN;b+WLt*BOM5Z*Ys{O&5N` zBB-o$@FHi5ZZ- z_L#7i^-Q{P_4hA5f1R6;9<|)F@o$9QaS?t!(R9zDz2!5VY> zce2WfC43*$XTLh){zVLEB14f1!xImN6B8LGC^IU!Gdc9JK&(QM*vQHe{GlE%ZlA{Bv*Z5 bs$+bxHP^TIy3Z6~xHEXV`njxgN@xNAXK||_ literal 0 HcmV?d00001 From b5125f040c96c2d7b8a175513e3d907c0082ce3d Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 4 Feb 2025 21:47:58 +0000 Subject: [PATCH 075/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 4ea524d19a..1d2f7f4868 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Boaz1111 - changes: - - message: Added plasma and uranium arrows. - type: Add - id: 7398 - time: '2024-09-19T08:41:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31241 - author: Ertanic changes: - message: Wanted list program and its cartridge. @@ -3906,3 +3899,10 @@ id: 7897 time: '2025-02-04T16:11:46.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34723 +- author: slarticodefast + changes: + - message: Added binoculars. You can find them in maints loot and the warden's locker. + type: Add + id: 7898 + time: '2025-02-04T21:46:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34687 From 5af55bbf2bfb8f82e1a199b352e9b12aaded756b Mon Sep 17 00:00:00 2001 From: Menshin Date: Tue, 4 Feb 2025 23:56:42 +0100 Subject: [PATCH 076/313] Dehardcoded Space Heaters UI window title (#34884) --- Content.Client/Atmos/UI/SpaceHeaterWindow.xaml | 2 +- Resources/Locale/en-US/components/space-heater-component.ftl | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Content.Client/Atmos/UI/SpaceHeaterWindow.xaml b/Content.Client/Atmos/UI/SpaceHeaterWindow.xaml index 1b7bd490b8..003a2203d5 100644 --- a/Content.Client/Atmos/UI/SpaceHeaterWindow.xaml +++ b/Content.Client/Atmos/UI/SpaceHeaterWindow.xaml @@ -1,6 +1,6 @@ + MinSize="280 160" Title="{Loc comp-space-heater-ui-title}"> diff --git a/Resources/Locale/en-US/components/space-heater-component.ftl b/Resources/Locale/en-US/components/space-heater-component.ftl index 48cd17cbf1..a9089e7559 100644 --- a/Resources/Locale/en-US/components/space-heater-component.ftl +++ b/Resources/Locale/en-US/components/space-heater-component.ftl @@ -1,4 +1,5 @@ -comp-space-heater-ui-thermostat = Thermostat: +comp-space-heater-ui-title = Temperature Control Unit +comp-space-heater-ui-thermostat = Thermostat: comp-space-heater-ui-mode = Mode comp-space-heater-ui-status-disabled = Off comp-space-heater-ui-status-enabled = On From 26cff2c98000e11198b8315ba4bae3566582279f Mon Sep 17 00:00:00 2001 From: compilatron <40789662+Compilatron144@users.noreply.github.com> Date: Wed, 5 Feb 2025 09:56:57 +1100 Subject: [PATCH 077/313] Plasma evac shuttle timer fix (#34847) Update emergency_plasma.yml Co-authored-by: jbox1 <40789662+jbox144@users.noreply.github.com> --- Resources/Maps/Shuttles/emergency_plasma.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Resources/Maps/Shuttles/emergency_plasma.yml b/Resources/Maps/Shuttles/emergency_plasma.yml index 79bd43cc58..05dea9c3b0 100644 --- a/Resources/Maps/Shuttles/emergency_plasma.yml +++ b/Resources/Maps/Shuttles/emergency_plasma.yml @@ -541,7 +541,11 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - - type: EmergencyShuttle + - type: DeviceNetwork + configurators: [] + deviceLists: [] + transmitFrequencyId: ShuttleTimer + deviceNetId: Wireless - proto: AirAlarm entities: - uid: 218 From d9d451d3d837235e7a14ddc3a5a2e79c1599367b Mon Sep 17 00:00:00 2001 From: Dinner <180707738+DinnerCalzone@users.noreply.github.com> Date: Tue, 4 Feb 2025 17:57:13 -0500 Subject: [PATCH 078/313] Fix Oasis evac timer (#34849) fix oasis evac timer --- Resources/Maps/Shuttles/emergency_accordia.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Resources/Maps/Shuttles/emergency_accordia.yml b/Resources/Maps/Shuttles/emergency_accordia.yml index 65959a909d..b97ad1813f 100644 --- a/Resources/Maps/Shuttles/emergency_accordia.yml +++ b/Resources/Maps/Shuttles/emergency_accordia.yml @@ -66,6 +66,11 @@ entities: bodyType: Dynamic - type: Fixtures fixtures: {} + - type: DeviceNetwork + configurators: [] + deviceLists: [] + transmitFrequencyId: ShuttleTimer + deviceNetId: Wireless - type: OccluderTree - type: SpreaderGrid - type: Shuttle From 8482767109f6a24f0922b3187c5d2b92478b7fb7 Mon Sep 17 00:00:00 2001 From: ToxicSonicFan04 <167356917+ToxicSonicFan04@users.noreply.github.com> Date: Tue, 4 Feb 2025 14:57:47 -0800 Subject: [PATCH 079/313] Omega Armory Restock (#34810) --- Resources/Maps/omega.yml | 226 +++++++++++++++++++++++++++++++++------ 1 file changed, 194 insertions(+), 32 deletions(-) diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index a048ce2483..ca48ac3b10 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -395,7 +395,6 @@ entities: 2109: -42,-13 2152: -37,22 2153: -36,22 - 2182: -34,20 2183: -38,15 2310: -51,8 2411: -60,1 @@ -420,6 +419,7 @@ entities: 2841: -48,6 2861: -42,-16 2862: -40,-16 + 2871: -36,20 - node: angle: 4.71238898038469 rad color: '#DE3A3AFF' @@ -1729,12 +1729,10 @@ entities: 515: -30,13 516: -30,15 517: -30,17 - 518: -30,19 525: -28,16 526: -28,19 543: -32,11 545: -32,18 - 546: -32,19 547: -32,20 592: -32,26 593: -32,27 @@ -2263,7 +2261,6 @@ entities: 523: -31,12 533: -26,16 534: -26,19 - 535: -29,18 536: -29,15 537: -29,13 614: -27,11 @@ -2411,7 +2408,6 @@ entities: 2166: -37,14 2172: -35,18 2176: -34,18 - 2177: -36,18 2180: -30,11 2184: -33,18 2717: 51,-5 @@ -2422,6 +2418,7 @@ entities: 2730: 29,-8 2731: 30,-8 2732: 31,-8 + 2876: -36,18 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 @@ -2593,8 +2590,8 @@ entities: 617: -27,10 2173: -35,18 2175: -34,18 - 2178: -36,18 2185: -33,18 + 2875: -36,18 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 @@ -2844,7 +2841,6 @@ entities: decals: 287: 31,4 431: -2,-25 - 2158: -34,16 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 @@ -3005,6 +3001,7 @@ entities: id: WarnEndS decals: 2142: -37,20 + 2868: -35,20 - node: color: '#52B4E996' id: WarnFullGreyscale @@ -3024,7 +3021,6 @@ entities: 1900: 26,15 2097: -60,0 2099: -60,2 - 2146: -35,20 2338: -47,-3 2339: -47,-2 2390: -55,4 @@ -3051,6 +3047,7 @@ entities: 2792: 6,15 2802: 8,17 2835: -53,8 + 2867: -35,20 - node: color: '#52B4E996' id: WarnLineGreyscaleE @@ -3155,11 +3152,9 @@ entities: 924: 21,8 2133: -59,4 2140: -59,5 - 2147: -35,20 2167: -37,14 2168: -37,15 2169: -37,16 - 2179: -36,18 2342: -43,-3 2343: -43,-2 2387: -53,4 @@ -3192,6 +3187,7 @@ entities: 2831: -46,7 2834: -46,8 2838: -46,5 + 2866: -35,20 - node: color: '#FFFFFFFF' id: WarnLineW @@ -4859,6 +4855,54 @@ entities: - type: Transform pos: -49.383278,-8.450993 parent: 4812 +- proto: ActionToggleBlock + entities: + - uid: 12052 + components: + - type: Transform + parent: 7935 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 7935 + - uid: 13922 + components: + - type: Transform + parent: 13921 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 13921 +- proto: ActionToggleInternals + entities: + - uid: 10945 + components: + - type: Transform + parent: 13680 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 13680 + - uid: 13919 + components: + - type: Transform + parent: 13917 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 13917 +- proto: ActionToggleJetpack + entities: + - uid: 8332 + components: + - type: Transform + parent: 13680 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 13680 + - uid: 13918 + components: + - type: Transform + parent: 13917 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 13917 - proto: ActionToggleLight entities: - uid: 6594 @@ -5918,6 +5962,11 @@ entities: - type: Transform pos: -34.5,13.5 parent: 4812 + - uid: 8043 + components: + - type: Transform + pos: -32.5,18.5 + parent: 4812 - uid: 10941 components: - type: Transform @@ -7584,11 +7633,6 @@ entities: - type: Transform pos: -30.5,25.5 parent: 4812 - - uid: 12052 - components: - - type: Transform - pos: -32.5,18.5 - parent: 4812 - proto: AirlockServiceLocked entities: - uid: 6675 @@ -21403,6 +21447,16 @@ entities: - type: Transform pos: -17.5,32.5 parent: 4812 + - uid: 13926 + components: + - type: Transform + pos: -36.5,10.5 + parent: 4812 + - uid: 13928 + components: + - type: Transform + pos: -36.5,9.5 + parent: 4812 - proto: CableApcStack entities: - uid: 6196 @@ -28096,6 +28150,16 @@ entities: - type: Transform pos: -40.5,8.5 parent: 4812 + - uid: 13929 + components: + - type: Transform + pos: -36.5,10.5 + parent: 4812 + - uid: 13930 + components: + - type: Transform + pos: -36.5,9.5 + parent: 4812 - proto: CableMVStack entities: - uid: 8586 @@ -60798,29 +60862,51 @@ entities: - uid: 12053 components: - type: Transform + anchored: True pos: -37.5,22.5 parent: 4812 + - type: Physics + bodyType: Static +- proto: GunSafePistolMk58 + entities: + - uid: 13920 + components: + - type: Transform + anchored: True + pos: -33.5,20.5 + parent: 4812 + - type: Physics + bodyType: Static - proto: GunSafeRifleLecter entities: - uid: 12215 components: - type: Transform + anchored: True pos: -37.5,20.5 parent: 4812 + - type: Physics + bodyType: Static - proto: GunSafeShotgunKammerer entities: - uid: 12054 components: - type: Transform + anchored: True pos: -34.5,22.5 parent: 4812 + - type: Physics + bodyType: Static - proto: GunSafeSubMachineGunDrozd entities: - uid: 8377 components: - type: Transform + anchored: True pos: -37.5,21.5 parent: 4812 + - type: Physics + bodyType: Static - proto: Handcuffs entities: - uid: 4865 @@ -61818,8 +61904,35 @@ entities: - uid: 13680 components: - type: Transform - pos: -33.539055,21.668404 + pos: -33.729538,21.689896 parent: 4812 + - type: GasTank + toggleActionEntity: 10945 + - type: Jetpack + toggleActionEntity: 8332 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 8332 + - 10945 + - uid: 13917 + components: + - type: Transform + pos: -33.3936,21.666458 + parent: 4812 + - type: GasTank + toggleActionEntity: 13919 + - type: Jetpack + toggleActionEntity: 13918 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 13918 + - 13919 - proto: KitchenKnife entities: - uid: 1642 @@ -62728,6 +62841,11 @@ entities: - type: Transform pos: -31.5,19.5 parent: 4812 + - uid: 13915 + components: + - type: Transform + pos: -31.5,17.5 + parent: 4812 - proto: LockerFreezer entities: - uid: 1538 @@ -64436,11 +64554,16 @@ entities: parent: 4812 - proto: PortableFlasher entities: - - uid: 11923 + - uid: 13914 components: - type: Transform - pos: -33.5,20.5 + anchored: False + pos: -35.5,20.5 parent: 4812 + - type: TriggerOnProximity + enabled: False + - type: Physics + bodyType: Dynamic - proto: PortableGeneratorJrPacman entities: - uid: 741 @@ -70911,12 +71034,50 @@ entities: - type: Transform pos: -33.720795,21.923859 parent: 4812 + - uid: 13923 + components: + - type: Transform + pos: -33.713516,21.77357 + parent: 4812 - proto: RiotLaserShield entities: - uid: 7935 components: - type: Transform - pos: -33.356216,21.923859 + pos: -33.463516,22.047007 + parent: 4812 + - type: Blocking + blockingToggleActionEntity: 12052 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 12052 + - uid: 13924 + components: + - type: Transform + pos: -33.44008,21.882944 + parent: 4812 +- proto: RiotShield + entities: + - uid: 13921 + components: + - type: Transform + pos: -33.244766,22.062632 + parent: 4812 + - type: Blocking + blockingToggleActionEntity: 13922 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 13922 + - uid: 13925 + components: + - type: Transform + pos: -33.19008,21.890757 parent: 4812 - proto: RobocopCircuitBoard entities: @@ -71073,10 +71234,10 @@ entities: parent: 4812 - proto: SecurityTechFab entities: - - uid: 10945 + - uid: 11923 components: - type: Transform - pos: -35.5,20.5 + pos: -36.5,18.5 parent: 4812 - proto: SeedExtractor entities: @@ -74150,6 +74311,12 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-7.5 parent: 4812 + - uid: 13927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,9.5 + parent: 4812 - proto: Stool entities: - uid: 1752 @@ -74506,11 +74673,6 @@ entities: parent: 4812 - proto: SuitStorageSec entities: - - uid: 8043 - components: - - type: Transform - pos: -36.5,18.5 - parent: 4812 - uid: 8045 components: - type: Transform @@ -87695,6 +87857,12 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,15.5 parent: 4812 + - uid: 13916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,18.5 + parent: 4812 - proto: WindoorSecureAtmosphericsLocked entities: - uid: 7369 @@ -87880,12 +88048,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,19.5 parent: 4812 - - uid: 8332 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,18.5 - parent: 4812 - proto: Window entities: - uid: 187 From 26d9f222c4c7692031f3f68d854b6f8afda0394d Mon Sep 17 00:00:00 2001 From: Spessmann <156740760+Spessmann@users.noreply.github.com> Date: Tue, 4 Feb 2025 14:58:30 -0800 Subject: [PATCH 080/313] Adds randomized maintenance rooms to convex station (#34866) added maints --- Resources/Maps/convex.yml | 532 ++++++++++++++++++++------------------ 1 file changed, 275 insertions(+), 257 deletions(-) diff --git a/Resources/Maps/convex.yml b/Resources/Maps/convex.yml index 88c29d31cd..8ee0d2ff76 100644 --- a/Resources/Maps/convex.yml +++ b/Resources/Maps/convex.yml @@ -6,6 +6,7 @@ tilemap: 65: FloorArcadeBlue 61: FloorArcadeBlue2 62: FloorArcadeRed + 32: FloorAstroAsteroidSand 11: FloorAstroGrass 28: FloorBar 9: FloorBlueCircuit @@ -65,19 +66,19 @@ entities: version: 6 1,4: ind: 1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 1,5: ind: 1,5 - tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 1,6: ind: 1,6 - tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACBQAAAAADBQAAAAABBQAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAABBQAAAAADBQAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAABBQAAAAACBQAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAAA + tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACBQAAAAABBQAAAAADBQAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAAABQAAAAADBQAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAAABQAAAAABBQAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAAA version: 6 1,7: ind: 1,7 - tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAABQAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAACBQAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAACBgAAAAABBgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABgAAAAACBgAAAAADBgAAAAABBgAAAAABBgAAAAAABgAAAAAABgAAAAABBgAAAAABAgAAAAAAAgAAAAAAAwAAAAACAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAABBgAAAAABBgAAAAADAgAAAAAABgAAAAACBgAAAAACBgAAAAAABgAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAABQAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAACBQAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAIAAAAAACAgAAAAAABgAAAAACBgAAAAACBgAAAAACAgAAAAAAIAAAAAAAIAAAAAAHIAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAACBgAAAAACBgAAAAACBgAAAAABBgAAAAACAgAAAAAAAgAAAAAAIAAAAAAEAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABgAAAAABBgAAAAADBgAAAAABBgAAAAACBgAAAAAABgAAAAAABgAAAAADBgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAADBgAAAAABBgAAAAADAgAAAAAABgAAAAACBgAAAAABBgAAAAACBgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 1,8: ind: 1,8 @@ -89,35 +90,35 @@ entities: version: 6 10,2: ind: 10,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA version: 6 10,3: ind: 10,3 - tiles: AwAAAAABAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA + tiles: AwAAAAADAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA version: 6 10,4: ind: 10,4 - tiles: AgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAADBwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAABBwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAADBwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAACBwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAACBwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAABBwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAACBwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAABBwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,5: ind: 10,5 - tiles: AwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,6: ind: 10,6 - tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,7: ind: 10,7 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,8: ind: 10,8 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,9: ind: 10,9 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAAACgAAAAAACAAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAAACgAAAAABCAAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAACCgAAAAAACAAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAABCgAAAAABCAAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 11,2: ind: 11,2 @@ -137,31 +138,31 @@ entities: version: 6 2,1: ind: 2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAADCAAAAAADBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAABCAAAAAACCAAAAAABAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACQAAAAAAAgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAABAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAAACAAAAAABCQAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAACAAAAAAABQAAAAABAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAACAAAAAADBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAADCAAAAAABCQAAAAAACAAAAAADCAAAAAADCAAAAAADAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACQAAAAAAAgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAADCAAAAAADCQAAAAAACAAAAAADCAAAAAABCAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAADCAAAAAACBQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAA version: 6 2,2: ind: 2,2 - tiles: AQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAACCAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAACAAAAAACCAAAAAABCAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAABCAAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAACCAAAAAABAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAA + tiles: AQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAABCAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAACAAAAAACCAAAAAABCAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAACCAAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAABCAAAAAAACAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAADAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAD version: 6 2,3: ind: 2,3 - tiles: AgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAADCAAAAAADCAAAAAABAgAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAACAAAAAAACgAAAAADAgAAAAAACAAAAAACCAAAAAAACAAAAAABCgAAAAADCAAAAAABCgAAAAACCAAAAAACCAAAAAAAFAAAAAAACAAAAAAACAAAAAADCAAAAAABAgAAAAAACAAAAAABCAAAAAACAgAAAAAACAAAAAABCgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAACFAAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAABFAAAAAAACAAAAAACCAAAAAADCAAAAAADAgAAAAAACAAAAAABCAAAAAAACAAAAAADCgAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAAACAAAAAAACgAAAAADCAAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAACAgAAAAAACAAAAAABAgAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAACAAAAAACCAAAAAABCAAAAAACCgAAAAABCAAAAAABAgAAAAAACwAAAAACAgAAAAAACAAAAAAACgAAAAACCAAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAABAgAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAABCAAAAAAAAgAAAAAACwAAAAABAgAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAACCgAAAAAACAAAAAAAAgAAAAAACwAAAAACAgAAAAAACAAAAAABCgAAAAAACAAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAACAgAAAAAACwAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAADAgAAAAAACAAAAAACCAAAAAADCAAAAAADFAAAAAAACAAAAAAACAAAAAABCAAAAAAACgAAAAAACAAAAAACAgAAAAAACwAAAAACAgAAAAAACAAAAAABCgAAAAABCAAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAACFAAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAABCAAAAAAAAgAAAAAACwAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADFAAAAAAACAAAAAACCAAAAAACCAAAAAADCgAAAAACCAAAAAACAgAAAAAACwAAAAAAAgAAAAAACAAAAAAACgAAAAADCAAAAAABAgAAAAAACAAAAAADCAAAAAADCAAAAAABAgAAAAAACAAAAAAACgAAAAADCAAAAAABCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAADFAAAAAAACAAAAAACCAAAAAADCAAAAAACAgAAAAAAAgAAAAAACgAAAAAACAAAAAADCgAAAAADCAAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAADCgAAAAADCAAAAAADFAAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAACAAAAAABCgAAAAACCAAAAAACCAAAAAACCgAAAAAACAAAAAAACgAAAAABCAAAAAACCgAAAAABCAAAAAAACAAAAAADFAAAAAAACAAAAAACCAAAAAAACAAAAAADAgAAAAAACAAAAAACCAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAADCAAAAAACCAAAAAADAgAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAACAAAAAADCgAAAAABAgAAAAAACAAAAAAACAAAAAABCAAAAAAACgAAAAACCAAAAAADCgAAAAAACAAAAAADCAAAAAAAFAAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAACAAAAAAACAAAAAAAAgAAAAAACAAAAAABCgAAAAADCAAAAAABCAAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAADFAAAAAAACAAAAAACCAAAAAACCAAAAAACAgAAAAAACAAAAAABCAAAAAADCAAAAAACCAAAAAACCAAAAAACCAAAAAADCAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAAAFAAAAAAACAAAAAABCAAAAAACCAAAAAABAgAAAAAACAAAAAACCAAAAAABCAAAAAADCgAAAAADCAAAAAABCAAAAAACCAAAAAABCAAAAAAACAAAAAADCgAAAAACCAAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAAAAgAAAAAACAAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAACAAAAAADCAAAAAADCAAAAAADAgAAAAAACAAAAAABCAAAAAACCAAAAAAACgAAAAADCAAAAAADAgAAAAAACwAAAAADAgAAAAAACAAAAAAACgAAAAADCAAAAAABAgAAAAAACAAAAAADCAAAAAADCAAAAAACAgAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAABCAAAAAACAgAAAAAACwAAAAACAgAAAAAACAAAAAAACAAAAAACCAAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAACCgAAAAADCAAAAAABAgAAAAAACwAAAAACAgAAAAAACAAAAAADCgAAAAACCAAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAACAgAAAAAACwAAAAABAgAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAACAAAAAACCAAAAAABCAAAAAACFAAAAAAACAAAAAADCAAAAAADCAAAAAABCgAAAAACCAAAAAACAgAAAAAACwAAAAAAAgAAAAAACAAAAAADCgAAAAACCAAAAAABAgAAAAAACAAAAAADCAAAAAABCAAAAAADFAAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAACCAAAAAADAgAAAAAACwAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAACAAAAAACCAAAAAADCAAAAAACFAAAAAAACAAAAAACCAAAAAABCAAAAAAACgAAAAABCAAAAAAAAgAAAAAACwAAAAADAgAAAAAACAAAAAABCgAAAAADCAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAABAgAAAAAACAAAAAABCgAAAAADCAAAAAAACAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAAAFAAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAAAgAAAAAACgAAAAAACAAAAAADCgAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAAACgAAAAABCAAAAAADFAAAAAAACAAAAAAACAAAAAADCAAAAAAAAgAAAAAACAAAAAABCgAAAAABCAAAAAADCAAAAAABCgAAAAACCAAAAAADCgAAAAACCAAAAAABCgAAAAAACAAAAAADCAAAAAABFAAAAAAACAAAAAAACAAAAAACCAAAAAAAAgAAAAAACAAAAAAACAAAAAAC version: 6 2,4: ind: 2,4 - tiles: CAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAADAgAAAAAACAAAAAABCAAAAAACCAAAAAAAAgAAAAAACAAAAAAACgAAAAACAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAABCgAAAAADDAAAAAACDAAAAAABDAAAAAADDAAAAAAAAgAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAACAgAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAACAAAAAAACAAAAAACDAAAAAADDAAAAAABDAAAAAABDAAAAAADBwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAACAgAAAAAACAAAAAABCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAADAAAAAAADQAAAAAADAAAAAADDAAAAAAAAgAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAAAAgAAAAAACAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAABCAAAAAADAgAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAABCAAAAAADBwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABAgAAAAAACAAAAAABCAAAAAACCAAAAAADAgAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAAACAAAAAABCAAAAAAACAAAAAACBwAAAAADBwAAAAABBwAAAAACBwAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACCAAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAADCAAAAAACCAAAAAACCAAAAAACCAAAAAABAgAAAAAACAAAAAADCAAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAACAAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABCAAAAAACBwAAAAABBwAAAAADBwAAAAABBwAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAACAgAAAAAACAAAAAADCAAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAACAAAAAADBwAAAAADBwAAAAABBwAAAAAABwAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAA + tiles: CAAAAAABCAAAAAADCAAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAACAAAAAABCAAAAAACCAAAAAACAgAAAAAACAAAAAAACgAAAAADAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAAACgAAAAABDAAAAAABDAAAAAABDAAAAAACDAAAAAACAgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACAgAAAAAACAAAAAADCAAAAAAACAAAAAABAgAAAAAACAAAAAADCAAAAAACDAAAAAACDAAAAAACDAAAAAAADAAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADAgAAAAAACAAAAAAACAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAADAAAAAACDQAAAAAADAAAAAABDAAAAAAAAgAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAAABwAAAAABBwAAAAABBwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAADCAAAAAACAgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAADCAAAAAABCAAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAADBwAAAAADBwAAAAADAgAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAAACAAAAAADCAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAACAAAAAADBwAAAAACBwAAAAACBwAAAAADBwAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAADAgAAAAAACAAAAAAACAAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADCAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAABCAAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAACAAAAAACBwAAAAADBwAAAAADBwAAAAACBwAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAAAAgAAAAAACAAAAAADCAAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAACAAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAA version: 6 2,5: ind: 2,5 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACBQAAAAAABQAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAwAAAAABBQAAAAADAwAAAAAABQAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACBQAAAAABBAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAAABQAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAADBQAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAADBQAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADBAAAAAAABAAAAAAAAgAAAAAAAwAAAAACBQAAAAABAwAAAAABBQAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAACBQAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADBQAAAAABBAAAAAAABAAAAAAABAAAAAAAAwAAAAADBQAAAAAAAwAAAAADBQAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACBAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAD + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABBQAAAAADBQAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADBQAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAAABQAAAAADAwAAAAABBQAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADBQAAAAABBAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAADAwAAAAACBQAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADBQAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAABQAAAAABAwAAAAABBQAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAADAwAAAAADBQAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAACBQAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAABBQAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAABBQAAAAAAAwAAAAABBQAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADBAAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAC version: 6 2,6: ind: 2,6 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAABCwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAADAgAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAACCAAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAgAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAACCAAAAAACAwAAAAAAAwAAAAAAAwAAAAADCAAAAAADCAAAAAACCAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAACAAAAAAACAAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAACgAAAAABCgAAAAACCgAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAACwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAABCAAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAACAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAACCAAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAACAwAAAAABAwAAAAACAwAAAAABCAAAAAACCAAAAAACCAAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAACAAAAAADCAAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAADAwAAAAACAgAAAAAAAwAAAAADAgAAAAAACgAAAAADCgAAAAACCgAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAACgAAAAABCgAAAAADAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAD version: 6 2,7: ind: 2,7 - tiles: AwAAAAAABQAAAAADBQAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABBQAAAAACBQAAAAAABQAAAAADAwAAAAACBQAAAAADBQAAAAAABQAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAABQAAAAABAwAAAAADBQAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAABCgAAAAACCgAAAAACCgAAAAABCAAAAAACCAAAAAACCAAAAAACAwAAAAADBQAAAAADAwAAAAAABQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACgAAAAACCgAAAAAACgAAAAADCAAAAAACAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAACwAAAAAACwAAAAACAgAAAAAACAAAAAAACgAAAAACCgAAAAAACgAAAAAACAAAAAADAgAAAAAACwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAgAAAAAACwAAAAABCwAAAAAAAgAAAAAACAAAAAABCgAAAAADCgAAAAADCgAAAAADCAAAAAACAgAAAAAACwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADBwAAAAADAgAAAAAABwAAAAABBwAAAAACFgAAAAADBwAAAAADAgAAAAAABwAAAAACAgAAAAAACwAAAAAACwAAAAAACwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABAgAAAAAAAgAAAAAABwAAAAACBwAAAAABBwAAAAADAgAAAAAACwAAAAAACwAAAAAACwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABAgAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAABBwAAAAAAAgAAAAAACwAAAAADCwAAAAABCwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAFgAAAAAFBwAAAAAABwAAAAACAgAAAAAABwAAAAABAgAAAAAABwAAAAADAgAAAAAAAgAAAAAACwAAAAABCwAAAAADAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAADBwAAAAABFgAAAAABBwAAAAADAwAAAAABCwAAAAABCwAAAAABAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAAABQAAAAACBQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADBQAAAAABBQAAAAACBQAAAAADAwAAAAACBQAAAAADBQAAAAACBQAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAABQAAAAAAAwAAAAADBQAAAAACAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAADCgAAAAABCgAAAAADCgAAAAADCAAAAAACCAAAAAACCAAAAAACAwAAAAAABQAAAAADAwAAAAADBQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCgAAAAAACgAAAAADCgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAACwAAAAABCwAAAAADAgAAAAAACAAAAAADCgAAAAADCgAAAAAACgAAAAACCAAAAAADAgAAAAAACwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAACwAAAAADCwAAAAABAgAAAAAACAAAAAADCgAAAAADCgAAAAAACgAAAAABCAAAAAABAgAAAAAACwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABBwAAAAACAgAAAAAABwAAAAAABwAAAAAAFgAAAAAABwAAAAAAAgAAAAAABwAAAAADAgAAAAAACwAAAAABCwAAAAAACwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAADAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAACAgAAAAAACwAAAAADCwAAAAAACwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAgAAAAAACwAAAAACCwAAAAADCwAAAAADAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAFgAAAAADBwAAAAACBwAAAAABAgAAAAAABwAAAAACAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAACwAAAAAACwAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABFgAAAAADBwAAAAAAAwAAAAACCwAAAAADCwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 2,8: ind: 2,8 @@ -177,43 +178,43 @@ entities: version: 6 3,1: ind: 3,1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABBAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACBQAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAAABQAAAAACAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADBAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACBQAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABBQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACBAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 3,10: ind: 3,10 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAABAwAAAAACBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAwAAAAACAwAAAAAABAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAAAAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAwAAAAAAAwAAAAAACAAAAAAACAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAwAAAAABAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABBAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAACAAAAAACBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAACAAAAAADBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAACAAAAAACBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAAAAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAACAwAAAAADBAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAwAAAAABAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAwAAAAADAwAAAAABCAAAAAAACAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAADAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABBAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAACAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAACAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAACAAAAAADBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAA version: 6 3,3: ind: 3,3 - tiles: CAAAAAACCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACAgAAAAAADAAAAAADDAAAAAACAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACDAAAAAAADAAAAAADDAAAAAACAgAAAAAABwAAAAACCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAABBwAAAAACBwAAAAACAgAAAAAADAAAAAACDAAAAAABAgAAAAAABwAAAAADCAAAAAADCAAAAAAACAAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADCAAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAAACAAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAABCAAAAAACAgAAAAAABwAAAAACCAAAAAABCAAAAAABCAAAAAADCAAAAAACCAAAAAABCAAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAACAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAAAwAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAADCAAAAAAACAAAAAACAgAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAACCAAAAAADCAAAAAABCAAAAAACAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAACCAAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAABCAAAAAACCAAAAAABAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAABCAAAAAACCAAAAAAAAgAAAAAACgAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAACgAAAAACAgAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAAAAgAAAAAACgAAAAACCgAAAAABCgAAAAABCgAAAAABCgAAAAADCgAAAAACCgAAAAAABQAAAAAAAgAAAAAACgAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAADAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAB + tiles: CAAAAAACCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACAgAAAAAADAAAAAACDAAAAAADAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAADDAAAAAACDAAAAAABDAAAAAACAgAAAAAABwAAAAADCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAABAgAAAAAADAAAAAACDAAAAAACAgAAAAAABwAAAAAACAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABCAAAAAABCAAAAAADCAAAAAAACAAAAAABCAAAAAAACAAAAAABAgAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAABwAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAABCAAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAACAgAAAAAAAwAAAAABCAAAAAABCAAAAAADCAAAAAABCAAAAAACCAAAAAADCAAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAACAgAAAAAAAwAAAAACCAAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAAACAAAAAACAgAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAABCAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAADCAAAAAACCAAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAACCAAAAAACAgAAAAAACgAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAACgAAAAACAgAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAACgAAAAADCgAAAAACCgAAAAAACgAAAAAACgAAAAACCgAAAAAACgAAAAADBQAAAAAAAgAAAAAACgAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAADAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAB version: 6 3,4: ind: 3,4 - tiles: CAAAAAADCAAAAAAACgAAAAADCgAAAAABBQAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABCgAAAAACCAAAAAACCgAAAAACCgAAAAABBQAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAACAAAAAADCAAAAAAACAAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAABAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAACAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAAACAAAAAADAgAAAAAACAAAAAAACAAAAAADCAAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAAACQAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAACAAAAAABCgAAAAAACgAAAAADCAAAAAADCAAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAA + tiles: CAAAAAABCAAAAAABCgAAAAABCgAAAAABBQAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAAACgAAAAABCAAAAAABCgAAAAADCgAAAAADBQAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAACAAAAAABCAAAAAACCAAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAAACAAAAAACCAAAAAACCAAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADAgAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAACCAAAAAADAgAAAAAACAAAAAADCAAAAAACCAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAADCQAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAACAAAAAADCgAAAAAACgAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAA version: 6 3,5: ind: 3,5 - tiles: AwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAABCAAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAACFAAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAAACAAAAAABBQAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABFAAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAAACAAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAADFAAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABFAAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAADFAAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAADCAAAAAAABQAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAACFAAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAADCAAAAAADBQAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACBQAAAAAAAwAAAAADBQAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAACBQAAAAADAwAAAAACBQAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAACBQAAAAAAAwAAAAABBQAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAA + tiles: AwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAACCAAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAACFAAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAABCAAAAAAABQAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAFAAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAFAAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABFAAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAACCAAAAAAABQAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACFAAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAADCAAAAAABBQAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAABQAAAAADAwAAAAACBQAAAAACAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADBQAAAAABAwAAAAAABQAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAAABQAAAAABAwAAAAADBQAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACFAAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAB version: 6 3,6: ind: 3,6 - tiles: AwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADFAAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAABQAAAAABBQAAAAADBQAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAEAAAAAAAEQAAAAAAEAAAAAADEQAAAAACEAAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAABFAAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAEAAAAAAAEQAAAAACEAAAAAAAEQAAAAADEAAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADFAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAEAAAAAACEQAAAAADEAAAAAAAEQAAAAABEAAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAADCAAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADCAAAAAADAgAAAAAACAAAAAABCAAAAAABCAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABCgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAFAAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACBQAAAAADBQAAAAACBQAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAEAAAAAADEAAAAAADEAAAAAACEAAAAAAAEAAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAEAAAAAABEQAAAAAAEAAAAAADEQAAAAADEAAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAEAAAAAABEQAAAAACEAAAAAACEQAAAAACEAAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADFAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAEAAAAAACEQAAAAACEAAAAAACEQAAAAACEAAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAABEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAEAAAAAADEAAAAAAAEAAAAAABEAAAAAADEAAAAAACCAAAAAABCAAAAAACCAAAAAAACAAAAAACCAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACCAAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACCgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 3,7: ind: 3,7 - tiles: AwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADFAAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADFAAAAAAAAwAAAAABAwAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABCwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAACEAAAAAAAEAAAAAABCwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAACEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAACAgAAAAAAEAAAAAABAgAAAAAAEAAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAACAgAAAAAAEAAAAAADAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAACwAAAAADCwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAADCwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAACCwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAACCwAAAAABCwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAADCwAAAAABCwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAA + tiles: AwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACFAAAAAAAAwAAAAABAwAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACFAAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAABEAAAAAACEAAAAAADEAAAAAABCwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAEAAAAAABEAAAAAAAEAAAAAABEAAAAAACEAAAAAADEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAABAgAAAAAAEAAAAAACAgAAAAAAEAAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAADAgAAAAAAEAAAAAABAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAACwAAAAACCwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAACCwAAAAABCwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAABCwAAAAACCwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAACCwAAAAACCwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAABCwAAAAAACwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAA version: 6 3,8: ind: 3,8 - tiles: AAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAA + tiles: AAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAA version: 6 3,9: ind: 3,9 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAADEwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACCgAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADCgAAAAADAgAAAAAAEwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACCgAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAAAAgAAAAAAAwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABEwAAAAAEAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABCgAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACCgAAAAAAAgAAAAAAEwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADCgAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAAEAgAAAAAAAwAAAAAD version: 6 4,0: ind: 4,0 @@ -221,35 +222,35 @@ entities: version: 6 4,1: ind: 4,1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,10: ind: 4,10 - tiles: AwAAAAABEwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAEwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACEwAAAAAEAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAEwAAAAADAwAAAAAAAwAAAAADAwAAAAABEwAAAAACAwAAAAABAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AwAAAAADEwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAEwAAAAAEAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACEwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAEwAAAAAEAwAAAAABAwAAAAACAwAAAAADEwAAAAACAwAAAAACAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAAEAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,2: ind: 4,2 - tiles: AgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAACBwAAAAAC + tiles: AgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAAD version: 6 4,3: ind: 4,3 - tiles: AgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAgAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAACBwAAAAACBwAAAAABBwAAAAADBwAAAAABBwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAADBwAAAAACBwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAABHwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAABwAAAAADBwAAAAACAgAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAACBwAAAAADBwAAAAACBwAAAAABHwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAACHwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAADHwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAABwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAC + tiles: AgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAACAwAAAAABAwAAAAAAAwAAAAABAgAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAACAwAAAAABAwAAAAADAwAAAAADAgAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAADBwAAAAABAwAAAAACAwAAAAABAwAAAAABAgAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAABBwAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAABAgAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAACBwAAAAACBwAAAAADBwAAAAABBwAAAAABBwAAAAACBwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAACBwAAAAACBwAAAAADBwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAADBwAAAAABHwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAABwAAAAACBwAAAAADAgAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAABBwAAAAACBwAAAAACHwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAADBwAAAAABHwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAACBwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAADHwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAACBwAAAAABBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAABwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAB version: 6 4,4: ind: 4,4 - tiles: AwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAACFAAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAACCAAAAAABAgAAAAAACwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAABBwAAAAADBwAAAAABBwAAAAABCAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAADAgAAAAAACwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAACAgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAADAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAACAgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAADCAAAAAABCAAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAACCAAAAAADCAAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAACCAAAAAABCAAAAAAACAAAAAADCAAAAAABAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAACgAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAABCAAAAAAACAAAAAADCAAAAAADAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABAgAAAAAACAAAAAACCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABFAAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADFAAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAAAAgAAAAAACwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAABBwAAAAABBwAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAADAgAAAAAACwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAABBwAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAABAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAACCAAAAAACCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAADAgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAADCAAAAAABCAAAAAACCAAAAAADCAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAACCAAAAAABCAAAAAADAgAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAABAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAACgAAAAABCAAAAAADCAAAAAABCAAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAACAAAAAACCAAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 4,5: ind: 4,5 - tiles: AgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAACAwAAAAADBQAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAACAwAAAAADBQAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAABQAAAAAAAwAAAAAAAwAAAAAABQAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAABCAAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAEQAAAAACEQAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAADAgAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAACEAAAAAADEAAAAAABAgAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAABAgAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAACEAAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAADEAAAAAAAAgAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAADAgAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAABEAAAAAABEAAAAAACEAAAAAABEAAAAAABEAAAAAABEAAAAAADAgAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAAAEAAAAAABEAAAAAADAgAAAAAAEQAAAAACEQAAAAAAEQAAAAACEAAAAAAAEQAAAAACEQAAAAABEAAAAAAAEQAAAAAAEQAAAAABEQAAAAABAgAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAADAgAAAAAAEQAAAAAAEQAAAAACEQAAAAADEAAAAAAAEQAAAAABEQAAAAABEAAAAAABEQAAAAADEQAAAAACEQAAAAAC + tiles: AgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAwAAAAAAAwAAAAADBQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAAAAwAAAAABBQAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACBQAAAAACAwAAAAACAwAAAAACBQAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAACCAAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAADAgAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAAAEAAAAAABEAAAAAACEAAAAAACEAAAAAACEAAAAAADEAAAAAAAAgAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAABAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAABEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACAgAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAADAgAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAACAgAAAAAAEQAAAAADEQAAAAABEQAAAAACEAAAAAAAEQAAAAABEQAAAAABEAAAAAADEQAAAAACEQAAAAACEQAAAAACAgAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAACAgAAAAAAEQAAAAADEQAAAAADEQAAAAACEAAAAAACEQAAAAACEQAAAAADEAAAAAADEQAAAAAAEQAAAAAAEQAAAAAA version: 6 4,6: ind: 4,6 - tiles: AgAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAADEAAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAABEAAAAAACEAAAAAACEAAAAAACEAAAAAABEAAAAAACEAAAAAADAgAAAAAAEAAAAAABEAAAAAACEAAAAAADEAAAAAADAgAAAAAAEAAAAAABEAAAAAAAEQAAAAADEQAAAAABEQAAAAADEQAAAAABEQAAAAAAEQAAAAADEAAAAAAAEAAAAAAAAgAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAADEAAAAAABEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADAgAAAAAAEQAAAAABEQAAAAAAEQAAAAAAEAAAAAABEQAAAAABEQAAAAAAEAAAAAAAEQAAAAADEQAAAAAAEQAAAAABAgAAAAAAEAAAAAACEAAAAAACEAAAAAADEAAAAAACAgAAAAAAEQAAAAABEQAAAAACEQAAAAADEAAAAAAAEQAAAAAAEQAAAAADEAAAAAADEQAAAAABEQAAAAAAEQAAAAADAgAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAAAEQAAAAACAgAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAADAgAAAAAAAgAAAAAAEAAAAAACEAAAAAAAEAAAAAACEAAAAAAAEQAAAAABAgAAAAAAEAAAAAABEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAABEAAAAAADEAAAAAAAEAAAAAADAgAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAABEQAAAAADAgAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAACEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAACEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAACwAAAAADCwAAAAACCwAAAAABCwAAAAACCwAAAAAACwAAAAABCwAAAAAACwAAAAABCwAAAAABCwAAAAADCwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AgAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAABEAAAAAADEAAAAAACEAAAAAADEAAAAAADEAAAAAABEAAAAAABEAAAAAABAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACAgAAAAAAEAAAAAAAEAAAAAACEQAAAAACEQAAAAAAEQAAAAADEQAAAAABEQAAAAACEQAAAAADEAAAAAAAEAAAAAADAgAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAABAgAAAAAAEQAAAAAAEQAAAAACEQAAAAABEAAAAAADEQAAAAABEQAAAAABEAAAAAABEQAAAAABEQAAAAABEQAAAAADAgAAAAAAEAAAAAABEAAAAAAAEAAAAAABEAAAAAADAgAAAAAAEQAAAAABEQAAAAADEQAAAAADEAAAAAAAEQAAAAAAEQAAAAAAEAAAAAADEQAAAAACEQAAAAAAEQAAAAABAgAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAABEQAAAAACAgAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAADAgAAAAAAAgAAAAAAEAAAAAABEAAAAAACEAAAAAACEAAAAAABEQAAAAADAgAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAACEAAAAAAAAgAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAAAEQAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAABEAAAAAACEAAAAAAAEAAAAAADEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAADEAAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAACwAAAAACCwAAAAADCwAAAAACCwAAAAAACwAAAAACCwAAAAAACwAAAAACCwAAAAABCwAAAAACCwAAAAABCwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 4,7: ind: 4,7 - tiles: AwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAACEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAABBQAAAAABBQAAAAACBQAAAAABAwAAAAACAgAAAAAAAwAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAABQAAAAABBQAAAAAABQAAAAADAwAAAAAAAgAAAAAAAwAAAAACEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 4,8: ind: 4,8 @@ -257,7 +258,7 @@ entities: version: 6 4,9: ind: 4,9 - tiles: BAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADEwAAAAADAwAAAAACEwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAA + tiles: BAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAEwAAAAADAwAAAAACEwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 5,0: ind: 5,0 @@ -265,43 +266,43 @@ entities: version: 6 5,1: ind: 5,1 - tiles: AwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAQAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAQAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAA + tiles: AwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAQAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAC version: 6 5,10: ind: 5,10 - tiles: AwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAAEAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAABEwAAAAAEAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADEwAAAAAEAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAEwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACEwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAEwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA + tiles: AwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAEwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACEwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAEwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACEwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAEwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA version: 6 5,2: ind: 5,2 - tiles: AAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABCAAAAAADCAAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAAACAAAAAABCAAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABAgAAAAAACAAAAAACCAAAAAAACAAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACBwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAD + tiles: AAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAABCAAAAAAACAAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAACCAAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAABwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAD version: 6 5,3: ind: 5,3 - tiles: BwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADBwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADBwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABBwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAABwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACBwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAABwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACBwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAABwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAA + tiles: BwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAADBwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABBwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAAABwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAABwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAABwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAADBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAABwAAAAABBwAAAAABBwAAAAADBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAgAAAAAABwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAADBwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAgAAAAAABwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAA version: 6 5,4: ind: 5,4 - tiles: AwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAACwAAAAAACwAAAAABCwAAAAACCwAAAAACCwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAACwAAAAABCwAAAAACCwAAAAABCwAAAAADCwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAACCgAAAAAACgAAAAAACgAAAAABCAAAAAAACAAAAAACAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAACCAAAAAABCAAAAAACCAAAAAADCAAAAAADCAAAAAABCAAAAAABCAAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAABCAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAABwAAAAAABwAAAAAACgAAAAACCgAAAAADCgAAAAAACgAAAAABCAAAAAABCgAAAAAACgAAAAACCgAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAACCAAAAAAACAAAAAADCAAAAAACCAAAAAADCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAADCAAAAAABCAAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACCAAAAAACCAAAAAAACgAAAAADCgAAAAABCgAAAAAACAAAAAADCAAAAAADAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAA + tiles: AwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAACwAAAAACCwAAAAADCwAAAAACCwAAAAACCwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAACwAAAAADCwAAAAACCwAAAAAACwAAAAAACwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAgAAAAAACAAAAAABCAAAAAADCgAAAAACCgAAAAACCgAAAAABCAAAAAACCAAAAAABAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAABCAAAAAADCAAAAAABCAAAAAABCAAAAAACCAAAAAACCAAAAAACCAAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAAABwAAAAABCAAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAADCAAAAAADCAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAABwAAAAACBwAAAAABCgAAAAABCgAAAAAACgAAAAADCgAAAAAACAAAAAACCgAAAAABCgAAAAADCgAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAABCAAAAAADCAAAAAABCAAAAAACCAAAAAACCAAAAAACCAAAAAADCAAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAABCAAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAACCAAAAAADCAAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAACCAAAAAACCAAAAAABCAAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACCAAAAAAACAAAAAACCgAAAAACCgAAAAABCgAAAAAACAAAAAADCAAAAAADAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAA version: 6 5,5: ind: 5,5 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAACAgAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAABEAAAAAADEAAAAAADAgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAADAgAAAAAACAAAAAABCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAACEAAAAAADEAAAAAACCAAAAAABCAAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAADAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAABCAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAACAgAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAACAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAADCAAAAAABCAAAAAACCAAAAAADCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 5,6: ind: 5,6 - tiles: EAAAAAADEAAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAEAAAAAABEAAAAAABEAAAAAAAEAAAAAACAgAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAFQAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAFQAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAABFQAAAAAAAgAAAAAAEAAAAAABEAAAAAAAEAAAAAACAgAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAFQAAAAAAAgAAAAAAEAAAAAADEAAAAAAAEAAAAAADAgAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAABEAAAAAADAwAAAAABAwAAAAABAwAAAAACFQAAAAAAAwAAAAADFQAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAACEAAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAFQAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACAgAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADFQAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAADAgAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAABEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABEAAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADEAAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAACEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: EAAAAAAAEAAAAAABEAAAAAACEAAAAAADEAAAAAACEAAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADAgAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAFQAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABFQAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAACAgAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAACFQAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAADAgAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAABEAAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADFQAAAAAAAgAAAAAAEAAAAAACEAAAAAABEAAAAAADAgAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAADEAAAAAABAwAAAAADAwAAAAABAwAAAAAAFQAAAAAAAwAAAAABFQAAAAAAEAAAAAABEAAAAAABEAAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAAAEAAAAAACEAAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAFQAAAAAAEAAAAAABEAAAAAABEAAAAAABEAAAAAABAgAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAADEAAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABFQAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADAgAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAgAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAACEAAAAAADEAAAAAABEAAAAAACEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAABEAAAAAACEAAAAAADEAAAAAABEAAAAAADEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 5,7: ind: 5,7 - tiles: AwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADFAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAABCAAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAFAAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADCAAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAACCAAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAADFAAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAADCAAAAAABCAAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACCAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAACAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACCAAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAACAAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADBQAAAAADBQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAAABQAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAA + tiles: AwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADFAAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAABCAAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAACCAAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAADFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADCAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAADCAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADCAAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABCAAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACCAAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABBQAAAAACBQAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAABBQAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAB version: 6 5,8: ind: 5,8 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAD version: 6 5,9: ind: 5,9 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAEwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAB + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAEwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAC version: 6 6,0: ind: 6,0 @@ -309,147 +310,147 @@ entities: version: 6 6,1: ind: 6,1 - tiles: AgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAFAAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACFAAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAC + tiles: AgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAFAAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAB version: 6 6,10: ind: 6,10 - tiles: CAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCgAAAAACCgAAAAABCgAAAAABCAAAAAAACAAAAAAAAgAAAAAAAwAAAAACBQAAAAAABQAAAAADBQAAAAABBQAAAAACBQAAAAACBQAAAAAABQAAAAACCAAAAAADCAAAAAABCgAAAAACCQAAAAAACgAAAAABCAAAAAACCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAACgAAAAABCgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABwAAAAABAgAAAAAAFgAAAAABBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAEwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAADBwAAAAADBwAAAAADFgAAAAACBwAAAAABBwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAABAgAAAAAAAwAAAAAABQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCgAAAAABCgAAAAABCgAAAAACCAAAAAAACAAAAAAAAgAAAAAAAwAAAAAABQAAAAACBQAAAAADBQAAAAABBQAAAAADBQAAAAACBQAAAAADBQAAAAAACAAAAAABCAAAAAACCgAAAAACCQAAAAAACgAAAAADCAAAAAADCAAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAACgAAAAACCgAAAAAACgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAEBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBwAAAAADAgAAAAAAFgAAAAACBwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAEwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAABBwAAAAADBwAAAAAAFgAAAAAEBwAAAAAABwAAAAADAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,2: ind: 6,2 - tiles: AwAAAAADAwAAAAADAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAACAwAAAAABAwAAAAAABwAAAAACBwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAABAgAAAAAAAwAAAAACAwAAAAABAgAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAADAwAAAAADAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAACAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAABAwAAAAACAwAAAAACBwAAAAADBwAAAAACBwAAAAADBwAAAAADBwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAACAAAAAAACAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADBwAAAAABBwAAAAACBwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACBwAAAAABBwAAAAACBwAAAAADBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 6,3: ind: 6,3 - tiles: AwAAAAACAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAACBwAAAAADBwAAAAAABwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACFAAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAABwAAAAADBwAAAAABFgAAAAAGAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAABGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAABwAAAAACGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACBwAAAAABBwAAAAACBwAAAAADBwAAAAADBwAAAAACBwAAAAAABwAAAAABAwAAAAADAwAAAAAC + tiles: AwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAAAFAAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAABwAAAAABBwAAAAAAFgAAAAAEAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAABGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAABwAAAAABGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAADBwAAAAACBwAAAAABBwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAAAAwAAAAACAwAAAAAB version: 6 6,4: ind: 6,4 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAACBwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACBwAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAABBwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAADBwAAAAACBwAAAAACBwAAAAADBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAAAFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACFAAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAFAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAD + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADBwAAAAACBwAAAAACBwAAAAADBwAAAAABBwAAAAABBwAAAAADBwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADBwAAAAACBwAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACFAAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABFAAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAA version: 6 6,5: ind: 6,5 - tiles: AgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAABGwAAAAABAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAABGwAAAAACAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAAAGwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAACwAAAAAABwAAAAADBwAAAAABBwAAAAAAAgAAAAAAAwAAAAADFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAACwAAAAABCwAAAAAABwAAAAADBwAAAAADBwAAAAADAgAAAAAAAwAAAAADFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAACwAAAAAACwAAAAABBwAAAAACBwAAAAAABwAAAAAAAwAAAAADAwAAAAADFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAACwAAAAAACwAAAAACBwAAAAAABwAAAAADBwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAACwAAAAACCwAAAAACBwAAAAACBwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAA + tiles: AgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAgAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAACAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAgAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAACGwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAADGwAAAAACAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAADGwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADGwAAAAADGwAAAAABGwAAAAADGwAAAAACGwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAACwAAAAABBwAAAAADBwAAAAACBwAAAAAAAgAAAAAAAwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAACwAAAAACCwAAAAADBwAAAAACBwAAAAAABwAAAAABAgAAAAAAAwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAACwAAAAAACwAAAAAABwAAAAABBwAAAAABBwAAAAACAwAAAAADAwAAAAABFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAACwAAAAADCwAAAAABBwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAACwAAAAABCwAAAAADBwAAAAAABwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAA version: 6 6,6: ind: 6,6 - tiles: AwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAABAwAAAAAAAwAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAABDwAAAAAADwAAAAAADwAAAAADDwAAAAAACwAAAAADCwAAAAAACwAAAAADCwAAAAADFQAAAAAAAwAAAAADAwAAAAACAwAAAAAADwAAAAACDwAAAAACDwAAAAAADwAAAAABDwAAAAAADwAAAAADDwAAAAAADwAAAAACCwAAAAACCwAAAAAACwAAAAABCwAAAAAAFQAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAAACwAAAAACCwAAAAACCwAAAAAACwAAAAAAFQAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACwAAAAACCwAAAAADCwAAAAADCwAAAAADFQAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAgAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAADAgAAAAAACwAAAAACCwAAAAADCwAAAAADCwAAAAACFQAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAgAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAADBwAAAAACAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAgAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAADBwAAAAADAwAAAAABAgAAAAAAAwAAAAABHAAAAAACHAAAAAAAHAAAAAACHAAAAAACAwAAAAADBwAAAAACBwAAAAABBwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAADAwAAAAADAgAAAAAAAwAAAAABHAAAAAADHAAAAAADHAAAAAACHAAAAAADAwAAAAADBwAAAAACBwAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAABBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAwAAAAABHAAAAAACHAAAAAADHAAAAAACHAAAAAABAwAAAAABBwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAABBwAAAAADBwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAACAwAAAAABAwAAAAACBwAAAAADBwAAAAAABwAAAAABBwAAAAACBwAAAAADBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAwAAAAACHAAAAAACHAAAAAACHAAAAAADHAAAAAABHAAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAB + tiles: AwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAACAwAAAAACAwAAAAADDwAAAAADDwAAAAADDwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAABDwAAAAACCwAAAAABCwAAAAAACwAAAAADCwAAAAACFQAAAAAAAwAAAAADAwAAAAADAwAAAAABDwAAAAABDwAAAAADDwAAAAADDwAAAAABDwAAAAADDwAAAAAADwAAAAADDwAAAAAACwAAAAABCwAAAAADCwAAAAAACwAAAAADFQAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAACFQAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAACCwAAAAACCwAAAAABFQAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAADBwAAAAABAgAAAAAACwAAAAADCwAAAAABCwAAAAAACwAAAAABFQAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAADAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABAwAAAAACAgAAAAAAAwAAAAABHAAAAAABHAAAAAAAHAAAAAABHAAAAAABAwAAAAACBwAAAAABBwAAAAADBwAAAAABBwAAAAADBwAAAAACBwAAAAACBwAAAAAABwAAAAABAwAAAAABAgAAAAAAAwAAAAABHAAAAAADHAAAAAABHAAAAAABHAAAAAAAAwAAAAABBwAAAAADBwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAwAAAAADHAAAAAACHAAAAAACHAAAAAAAHAAAAAAAAwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAABBwAAAAACAgAAAAAAAwAAAAAAAwAAAAACHAAAAAABHAAAAAABHAAAAAABHAAAAAADAwAAAAAAAwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAABHAAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAC version: 6 6,7: ind: 6,7 - tiles: CAAAAAADAgAAAAAAAwAAAAADHAAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAADCAAAAAAAAgAAAAAAAwAAAAACHAAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAAAHAAAAAADHAAAAAABHAAAAAACCAAAAAADAgAAAAAAAwAAAAADAwAAAAABHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAABHAAAAAADHAAAAAADCAAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADFAAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAACwAAAAACCwAAAAACCwAAAAABAgAAAAAAAwAAAAADBQAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAABQAAAAACAwAAAAABBQAAAAACBQAAAAAABQAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: CAAAAAADAgAAAAAAAwAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACCAAAAAABAgAAAAAAAwAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAAAHAAAAAAACAAAAAADAgAAAAAAAwAAAAAAAwAAAAACHAAAAAADHAAAAAADHAAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAAACAAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADFAAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACwAAAAACCwAAAAABCwAAAAACAgAAAAAAAwAAAAABBQAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABBQAAAAABAwAAAAABBQAAAAADBQAAAAADBQAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 6,8: ind: 6,8 - tiles: AwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAAACgAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAACBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAAACgAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAA + tiles: AwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAADCgAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAABBQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADBQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAAACgAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAA version: 6 6,9: ind: 6,9 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAACgAAAAACCgAAAAACCgAAAAAAAwAAAAABAwAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACCgAAAAADCgAAAAABCgAAAAACAwAAAAAAAwAAAAADAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAADCgAAAAAACgAAAAACCgAAAAAAAwAAAAACBQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAACAwAAAAADCgAAAAACCgAAAAABCgAAAAAAAwAAAAACBQAAAAACAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAABCgAAAAABCgAAAAACCgAAAAABAwAAAAAABQAAAAACAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAACCAAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAABBQAAAAADBQAAAAADBQAAAAAABQAAAAADBQAAAAACBQAAAAADBQAAAAAD + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADCgAAAAADCgAAAAADCgAAAAABAwAAAAAAAwAAAAABAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADCgAAAAABCgAAAAAACgAAAAACAwAAAAAAAwAAAAACAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAABQAAAAADAwAAAAACCgAAAAABCgAAAAACCgAAAAACAwAAAAACBQAAAAACAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAADCgAAAAACCgAAAAADCgAAAAADAwAAAAADBQAAAAABAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAACAwAAAAAACgAAAAABCgAAAAACCgAAAAADAwAAAAADBQAAAAABAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAABCAAAAAABCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADCAAAAAACCAAAAAACCAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAABAgAAAAAAAwAAAAABBQAAAAACBQAAAAABBQAAAAADBQAAAAAABQAAAAADBQAAAAACBQAAAAAC version: 6 7,1: ind: 7,1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAA version: 6 7,10: ind: 7,10 - tiles: BQAAAAABAwAAAAACAgAAAAAACAAAAAADCgAAAAADCQAAAAAACgAAAAACCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABQAAAAAAAwAAAAADAgAAAAAACAAAAAACCgAAAAABCgAAAAACCgAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAFgAAAAAGBwAAAAACAgAAAAAABwAAAAADAgAAAAAAEwAAAAAEAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAABwAAAAACBwAAAAADAgAAAAAAFgAAAAAFAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAABwAAAAACAgAAAAAABwAAAAADBwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAFgAAAAAEFgAAAAAEBwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAABwAAAAACFgAAAAAFBwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BQAAAAACAwAAAAACAgAAAAAACAAAAAACCgAAAAAACQAAAAAACgAAAAACCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABQAAAAACAwAAAAACAgAAAAAACAAAAAABCgAAAAACCgAAAAAACgAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAFgAAAAABBwAAAAADAgAAAAAABwAAAAAAAgAAAAAAEwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAABwAAAAABBwAAAAADAgAAAAAAFgAAAAAEAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAABwAAAAAAAgAAAAAABwAAAAADBwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAFgAAAAAFFgAAAAABBwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAABwAAAAAAFgAAAAAFBwAAAAADBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,2: ind: 7,2 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACEAAAAAADAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAACEAAAAAABEAAAAAABEAAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAC + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAAAEAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAwAAAAABBQAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAAB version: 6 7,3: ind: 7,3 - tiles: AgAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAACEAAAAAADAgAAAAAAAwAAAAABBQAAAAAAAwAAAAACAgAAAAAAAwAAAAADBQAAAAABAgAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAABEAAAAAADEAAAAAADEAAAAAABAgAAAAAAAwAAAAAABQAAAAAAAwAAAAAAAgAAAAAAAwAAAAABBQAAAAADAgAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAACEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAACBQAAAAAAAgAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAAAEAAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAEAAAAAADEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAAABQAAAAADBQAAAAACBQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADBwAAAAADBwAAAAACBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAGgAAAAAAGgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAABwAAAAABBwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAA + tiles: AgAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAACAgAAAAAAAwAAAAAABQAAAAACAwAAAAACAgAAAAAAAwAAAAACBQAAAAABAgAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACAgAAAAAAAwAAAAADBQAAAAACAwAAAAABAgAAAAAAAwAAAAABBQAAAAABAgAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAADEAAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAABBQAAAAADAgAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAABEAAAAAAAEAAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAEAAAAAADEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAAABQAAAAACBQAAAAACBQAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAABwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAGgAAAAAAGgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAAABwAAAAABBwAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAA version: 6 7,4: ind: 7,4 - tiles: AwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACFAAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABFAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAADAgAAAAAAAgAAAAAAAwAAAAAC + tiles: AwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACFAAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADFAAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAFAAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAACFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAwAAAAAD version: 6 7,5: ind: 7,5 - tiles: AwAAAAACAwAAAAABAwAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAABEAAAAAACEAAAAAACEAAAAAACEAAAAAACEAAAAAADEAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAEAAAAAAAEQAAAAADEQAAAAABEQAAAAABEQAAAAABEAAAAAABEAAAAAABEAAAAAABEAAAAAAAEAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAEAAAAAACEQAAAAACEQAAAAADEQAAAAAAEQAAAAADEAAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAEAAAAAABEQAAAAACEQAAAAACEQAAAAAAEQAAAAABEAAAAAABEAAAAAADEAAAAAABEAAAAAADEAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAEAAAAAADEQAAAAABEQAAAAAAEQAAAAABEQAAAAABEAAAAAACEAAAAAADAgAAAAAAAgAAAAAAEAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAgAAAAAAEAAAAAADEQAAAAADEQAAAAAAEQAAAAADEQAAAAACEAAAAAAAEAAAAAABAgAAAAAAEAAAAAABEAAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAgAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAAAEAAAAAABEAAAAAABEAAAAAADAgAAAAAAEAAAAAABEAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABCwAAAAAACwAAAAADAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABCwAAAAACCwAAAAADAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADCwAAAAABCwAAAAACAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACCwAAAAAACwAAAAADAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAACwAAAAABCwAAAAABAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAA + tiles: AwAAAAADAwAAAAABAwAAAAAAAgAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAACEAAAAAADEAAAAAABEAAAAAABEAAAAAADEAAAAAAAEAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAEAAAAAAAEQAAAAADEQAAAAABEQAAAAADEQAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAAAEAAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAEAAAAAACEQAAAAACEQAAAAACEQAAAAACEQAAAAACEAAAAAADEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAgAAAAAAEAAAAAABEQAAAAADEQAAAAACEQAAAAAAEQAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAgAAAAAAEAAAAAAAEQAAAAABEQAAAAADEQAAAAABEQAAAAABEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAEAAAAAAAEQAAAAAAEQAAAAACEQAAAAABEQAAAAACEAAAAAADEAAAAAACAgAAAAAAEAAAAAACEAAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAABAgAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAACwAAAAACCwAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABCwAAAAAACwAAAAADAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACCwAAAAABCwAAAAADAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACCwAAAAACCwAAAAACAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABCwAAAAACCwAAAAADAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAB version: 6 7,6: ind: 7,6 - tiles: AwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACDwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACDwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAABwAAAAAAAwAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAACAwAAAAADAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAADBwAAAAAAAwAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAADAwAAAAADAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABBwAAAAAAAwAAAAACHAAAAAABHAAAAAADHAAAAAABHAAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAACAwAAAAACAwAAAAADBwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACAgAAAAAAAwAAAAADAwAAAAACHAAAAAADHAAAAAADHAAAAAABHAAAAAAAHAAAAAADAwAAAAACAgAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAAAAgAAAAAAAwAAAAAD + tiles: AwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACDwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADDwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABBwAAAAACAwAAAAADHAAAAAADHAAAAAACHAAAAAAAHAAAAAACAwAAAAACAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABBwAAAAACAwAAAAACHAAAAAAAHAAAAAACHAAAAAADHAAAAAACAwAAAAABAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAABwAAAAACAwAAAAABHAAAAAACHAAAAAABHAAAAAABHAAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACHAAAAAADHAAAAAAAHAAAAAACHAAAAAAAAwAAAAACAwAAAAADBwAAAAABBwAAAAADBwAAAAABBwAAAAADBwAAAAABBwAAAAAAAgAAAAAAAwAAAAADAwAAAAABHAAAAAABHAAAAAABHAAAAAACHAAAAAACHAAAAAAAAwAAAAABAgAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAADAgAAAAAAAwAAAAAB version: 6 7,7: ind: 7,7 - tiles: HAAAAAABHAAAAAADHAAAAAABHAAAAAACHAAAAAACHAAAAAADAwAAAAACAgAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAADFAAAAAAAAwAAAAADHAAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAACAwAAAAADAgAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAABFAAAAAAAAwAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAACAwAAAAABAwAAAAACAgAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAADBwAAAAAAFAAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAAAgAAAAAAAwAAAAABFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABFAAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAFAAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAADBQAAAAABBQAAAAACBQAAAAABAwAAAAACAwAAAAABAwAAAAADBQAAAAADBQAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADBQAAAAAABQAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABBQAAAAACBQAAAAABBQAAAAADAwAAAAACBQAAAAABBQAAAAAABQAAAAACAwAAAAABAgAAAAAAAwAAAAAABQAAAAABBQAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAAABQAAAAAABQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACBQAAAAABBQAAAAAB + tiles: HAAAAAABHAAAAAACHAAAAAACHAAAAAAAHAAAAAABHAAAAAADAwAAAAABAgAAAAAABwAAAAABPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAACFAAAAAAAAwAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACAwAAAAAAAgAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAACFAAAAAAAAwAAAAACHAAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABAwAAAAACAwAAAAADAgAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAABFAAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADAgAAAAAAAwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAACFAAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAACFAAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAAAFAAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADBQAAAAACBQAAAAACBQAAAAADAwAAAAAAAwAAAAADAwAAAAADBQAAAAAABQAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAABBQAAAAADBQAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAABBQAAAAACBQAAAAACBQAAAAADAwAAAAACBQAAAAADBQAAAAABBQAAAAAAAwAAAAADAgAAAAAAAwAAAAADBQAAAAAABQAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAAABQAAAAACBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADBQAAAAABBQAAAAAB version: 6 7,8: ind: 7,8 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAABQAAAAABBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADBQAAAAADBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAACCgAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABBQAAAAACAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADBQAAAAABAwAAAAABAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABBQAAAAADAwAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAADBQAAAAABAwAAAAACAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAACBQAAAAACBQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAABCgAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAAB + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABBQAAAAACBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAADBQAAAAACBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAADCgAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACBQAAAAADAwAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACBQAAAAACAwAAAAACAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAAABQAAAAACAwAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAABQAAAAAAAwAAAAADAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADBQAAAAABBQAAAAABAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAABCgAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAACAAAAAABCAAAAAACCAAAAAAC version: 6 7,9: ind: 7,9 - tiles: AQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAABBQAAAAACBQAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACBQAAAAACBQAAAAACBQAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAADAwAAAAABAgAAAAAACAAAAAADCgAAAAACCgAAAAAACgAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA + tiles: AQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAADBQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACBQAAAAABBQAAAAACBQAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAwAAAAABAgAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAABAwAAAAABAgAAAAAACAAAAAACCgAAAAABCgAAAAACCgAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA version: 6 8,2: ind: 8,2 - tiles: AQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAwAAAAADBQAAAAADAwAAAAACBQAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAwAAAAACBQAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAgAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAABCAAAAAACAgAAAAAAAwAAAAACAwAAAAABBQAAAAABAwAAAAADBQAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAACCAAAAAACAgAAAAAA + tiles: AQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAwAAAAAABQAAAAADAwAAAAADBQAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAwAAAAACBQAAAAABAwAAAAADBQAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAAAAgAAAAAAAwAAAAADAwAAAAABBQAAAAADAwAAAAABBQAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAADCAAAAAAAAgAAAAAA version: 6 8,3: ind: 8,3 - tiles: AwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAACCAAAAAAAAgAAAAAAAwAAAAADAwAAAAACBQAAAAABAwAAAAABBQAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAAAAgAAAAAAAwAAAAADAwAAAAABBQAAAAABAwAAAAACBQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAABQAAAAACAwAAAAAABQAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADFAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACCAAAAAACCAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACCAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACAAAAAACAwAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAACAAAAAACFAAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAgAAAAAACAAAAAADAwAAAAABAgAAAAAACAAAAAACCgAAAAACCAAAAAACCAAAAAAACgAAAAAACAAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAACAAAAAABAgAAAAAAAgAAAAAA + tiles: AwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAABAgAAAAAAAwAAAAACAwAAAAABBQAAAAACAwAAAAAABQAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAACAgAAAAAAAwAAAAADAwAAAAAABQAAAAAAAwAAAAABBQAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABBQAAAAADAwAAAAABBQAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAACFAAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABFAAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADFAAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAAAFAAAAAAACAAAAAADCAAAAAADCAAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACFAAAAAAACAAAAAABCAAAAAADCAAAAAACCAAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACFAAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAgAAAAAACAAAAAACAwAAAAABAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAADFAAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAABCAAAAAAACAAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAACAAAAAADAwAAAAACAgAAAAAACAAAAAACCgAAAAAACAAAAAAACAAAAAACCgAAAAADCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAADAgAAAAAAAgAAAAAA version: 6 8,4: ind: 8,4 - tiles: AwAAAAACAgAAAAAACAAAAAAACgAAAAADCAAAAAABCAAAAAAACgAAAAADCAAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAACAwAAAAADAgAAAAAACAAAAAABCgAAAAABCAAAAAABCAAAAAACCgAAAAADCAAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAAAAwAAAAADAgAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAACCAAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAABCAAAAAADAwAAAAACAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAABAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAAACAAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAgAAAAAACAAAAAADCgAAAAACCAAAAAACCAAAAAABCgAAAAACCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABCAAAAAAACAAAAAACCgAAAAABCAAAAAABCAAAAAADCgAAAAADCAAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAACAAAAAAACgAAAAAACAAAAAADCAAAAAACCgAAAAACCAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAADAgAAAAAACAAAAAACCgAAAAADCAAAAAACCAAAAAADCgAAAAABCAAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAABAwAAAAABAgAAAAAACAAAAAADCgAAAAABCAAAAAAACAAAAAACCgAAAAACCAAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAACAwAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAADCAAAAAABCAAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAACAAAAAADCAAAAAADCAAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAAAAwAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAAACAAAAAACAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAACCAAAAAACCAAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCgAAAAADCAAAAAAACAAAAAADCgAAAAAACAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADCAAAAAADCAAAAAABCgAAAAABCAAAAAADCAAAAAACCgAAAAACCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAACCgAAAAACCAAAAAACCAAAAAABCgAAAAABCAAAAAACAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAABCAAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 8,5: ind: 8,5 - tiles: AwAAAAADAwAAAAABAgAAAAAACwAAAAAACwAAAAACCwAAAAAACwAAAAABCwAAAAAACwAAAAADCwAAAAACCwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAACwAAAAACCwAAAAACCwAAAAABCwAAAAAACwAAAAAACwAAAAABCwAAAAABCwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAACAgAAAAAACwAAAAABCwAAAAABCwAAAAABCwAAAAADCwAAAAAACwAAAAACCwAAAAAACwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAACwAAAAAACwAAAAADCwAAAAADCwAAAAABCwAAAAACCwAAAAACCwAAAAACCwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAABCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAABCAAAAAADDgAAAAAADgAAAAACDgAAAAACDgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAABAwAAAAACAwAAAAABAgAAAAAACAAAAAABCAAAAAADDgAAAAACCAAAAAAACAAAAAABCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAwAAAAADAwAAAAACCAAAAAABCAAAAAAACAAAAAABDgAAAAAACAAAAAAACgAAAAAACAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAAADgAAAAABCAAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAABCAAAAAACDgAAAAACDgAAAAADDgAAAAACDgAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAA + tiles: AwAAAAACAwAAAAACAgAAAAAACwAAAAACCwAAAAAACwAAAAAACwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAACwAAAAAACwAAAAADCwAAAAAACwAAAAABCwAAAAACCwAAAAAACwAAAAADCwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAACwAAAAABCwAAAAABCwAAAAADCwAAAAABCwAAAAABCwAAAAACCwAAAAACCwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAACwAAAAADCwAAAAADCwAAAAABCwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAAAAwAAAAACAwAAAAABAgAAAAAACAAAAAABCAAAAAACDgAAAAAADgAAAAACDgAAAAACDgAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAADCAAAAAAADgAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAACAwAAAAACCAAAAAAACAAAAAABCAAAAAADDgAAAAADCAAAAAAACgAAAAADCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAACCAAAAAADDgAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAAACAAAAAACDgAAAAADDgAAAAADDgAAAAACDgAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAAA version: 6 8,6: ind: 8,6 - tiles: AwAAAAACAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABFAAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAgAAAAAACAAAAAACCAAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAACAAAAAAACAAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAACAAAAAABCAAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACAAAAAACCAAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAACAAAAAAACAAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAACAAAAAABAwAAAAACAwAAAAADFAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAwAAAAADAwAAAAAAFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAADAwAAAAAAAwAAAAABFAAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADBQAAAAACAwAAAAABBQAAAAABAwAAAAABAgAAAAAACAAAAAAACAAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAACAwAAAAABBQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAFAAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADFAAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAACAAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAACAAAAAABCAAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAACAAAAAAACAAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAACAAAAAADCAAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAACAAAAAACCAAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAACCAAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAACAAAAAACAwAAAAAAAwAAAAADFAAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAACAAAAAABCAAAAAABAwAAAAAAAwAAAAACFAAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAgAAAAAACAAAAAACCAAAAAADAwAAAAABAwAAAAABFAAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAABQAAAAABAwAAAAAABQAAAAACAwAAAAABAgAAAAAACAAAAAACCAAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAACAwAAAAACBQAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 8,7: ind: 8,7 - tiles: AwAAAAABAwAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAABBQAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAFAAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAABFAAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAFAAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAACgAAAAACCAAAAAABCAAAAAAACAAAAAAACgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBQAAAAACAwAAAAABAgAAAAAACgAAAAACCAAAAAACCAAAAAAACAAAAAABCgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBQAAAAACAwAAAAAAAgAAAAAACgAAAAABCAAAAAACCAAAAAABCAAAAAABCgAAAAABAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBQAAAAACAwAAAAAAAwAAAAABAwAAAAAABQAAAAADAwAAAAADBQAAAAADAwAAAAACBQAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAABAwAAAAACAgAAAAAAAwAAAAABBQAAAAAAAwAAAAAABQAAAAAAAwAAAAABBQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAB + tiles: AwAAAAADAwAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAADAwAAAAADBQAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACFAAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAFAAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAFAAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAACgAAAAABCAAAAAACCAAAAAACCAAAAAACCgAAAAACAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABQAAAAACAwAAAAADAgAAAAAACgAAAAAACAAAAAADCAAAAAAACAAAAAADCgAAAAABAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABQAAAAADAwAAAAABAgAAAAAACgAAAAADCAAAAAAACAAAAAACCAAAAAADCgAAAAABAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBQAAAAACAwAAAAADAwAAAAABAwAAAAAABQAAAAACAwAAAAADBQAAAAAAAwAAAAABBQAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAwAAAAADAgAAAAAAAwAAAAAABQAAAAACAwAAAAACBQAAAAADAwAAAAACBQAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAC version: 6 8,8: ind: 8,8 - tiles: BQAAAAAAAwAAAAACAgAAAAAAAwAAAAABBQAAAAABAwAAAAACBQAAAAAAAwAAAAADBQAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAABQAAAAACBQAAAAAABQAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADBQAAAAAABQAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACQAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADBQAAAAADAwAAAAADBQAAAAADBQAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADBQAAAAABAwAAAAADBQAAAAACBQAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADBQAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABBQAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAABQAAAAABAwAAAAAABQAAAAABBQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABAwAAAAADAgAAAAAA + tiles: BQAAAAADAwAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAAABQAAAAAAAwAAAAAABQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAABQAAAAABBQAAAAACBQAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACBQAAAAABBQAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACBQAAAAABAwAAAAABBQAAAAADBQAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACBQAAAAADAwAAAAACBQAAAAAABQAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAABQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAADBQAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAABQAAAAADAwAAAAAABQAAAAACBQAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAAABwAAAAACBwAAAAACAwAAAAADAgAAAAAA version: 6 8,9: ind: 8,9 - tiles: CAAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAADAwAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAADBwAAAAABBwAAAAADBwAAAAADAgAAAAAACAAAAAABAgAAAAAACAAAAAACCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAABAwAAAAABCAAAAAABCAAAAAAACAAAAAAACAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAABBwAAAAACAgAAAAAACAAAAAABAgAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAACCAAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 9,2: ind: 9,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 9,3: ind: 9,3 - tiles: AwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADBQAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABBQAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACCAAAAAACCAAAAAABCAAAAAACCAAAAAABCAAAAAABCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACBQAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADBQAAAAABAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAABCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 9,4: ind: 9,4 - tiles: CAAAAAABCAAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAACCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAADCAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAD + tiles: CAAAAAABCAAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAADCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAACCAAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAA version: 6 9,5: ind: 9,5 - tiles: AwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 9,6: ind: 9,6 - tiles: AwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAADFAAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAACAAAAAADCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAgAAAAAACAAAAAADCAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAgAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAACAAAAAADCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAAACAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAA + tiles: AwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAFAAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAFAAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAACAAAAAABCAAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCAAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAACAAAAAADCAAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADCAAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABCAAAAAACCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAA version: 6 9,7: ind: 9,7 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAABwAAAAABBwAAAAACBwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABBwAAAAACBwAAAAABBwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAACBwAAAAAABwAAAAABBwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADBwAAAAACBwAAAAABBwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAABwAAAAABBwAAAAACBwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAABwAAAAACBwAAAAACBwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAABwAAAAABBwAAAAACBwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADBwAAAAABBwAAAAABBwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAADBwAAAAAABwAAAAAABwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADBwAAAAACBwAAAAADBwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACBwAAAAABBwAAAAAABwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAABwAAAAADBwAAAAADBwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAD version: 6 9,8: ind: 9,8 - tiles: BwAAAAACBwAAAAACBwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAABwAAAAABBwAAAAACAgAAAAAABwAAAAAABwAAAAACAgAAAAAABwAAAAACBwAAAAABAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAABwAAAAACBwAAAAABAgAAAAAABwAAAAAABwAAAAABAgAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAABwAAAAACBwAAAAACAgAAAAAABwAAAAAABwAAAAABAgAAAAAABwAAAAABBwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADBwAAAAABBwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADBwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAACBwAAAAADBwAAAAADBwAAAAACAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAACFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAABwAAAAADBwAAAAACAgAAAAAABwAAAAACBwAAAAAAAgAAAAAABwAAAAABBwAAAAABAwAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAAAAgAAAAAABwAAAAACBwAAAAADAgAAAAAABwAAAAAABwAAAAABAgAAAAAABwAAAAACBwAAAAADAwAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAADCAAAAAADCAAAAAADAgAAAAAABwAAAAADBwAAAAACAgAAAAAABwAAAAAABwAAAAACAgAAAAAABwAAAAAABwAAAAAC + tiles: BwAAAAADBwAAAAACBwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAABwAAAAABBwAAAAADAgAAAAAABwAAAAABBwAAAAABAgAAAAAABwAAAAAABwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAABwAAAAADBwAAAAABAgAAAAAABwAAAAADBwAAAAACAgAAAAAABwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAACAgAAAAAABwAAAAABBwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAACAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAADBwAAAAACBwAAAAACBwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABBwAAAAACBwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAACBwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAACAgAAAAAABwAAAAACBwAAAAAAAgAAAAAABwAAAAAABwAAAAADAgAAAAAABwAAAAADBwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAACCAAAAAABAgAAAAAABwAAAAADBwAAAAAAAgAAAAAABwAAAAADBwAAAAACAgAAAAAABwAAAAAABwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAACAAAAAACCAAAAAAACAAAAAACAgAAAAAABwAAAAACBwAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAADBwAAAAAA version: 6 9,9: ind: 9,9 - tiles: AwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,6: ind: 0,6 @@ -645,7 +646,6 @@ entities: 2900: 48,105 2901: 46,100 2902: 46,101 - 2905: 38,84 2907: 52,86 2996: 40,110 2998: 38,110 @@ -855,6 +855,13 @@ entities: 14697: 134,135 14698: 134,133 14699: 133,133 + 14777: 37,82 + 14778: 39,82 + 14779: 38,86 + 14780: 49,80 + 14781: 50,80 + 14782: 44,48 + 14783: 44,50 - node: zIndex: 1 angle: 1.5707963267948966 rad @@ -1248,6 +1255,7 @@ entities: 14515: 43,114 14568: 99,90 14569: 61,90 + 14776: 38,82 - node: zIndex: 1 color: '#FFFFFFFF' @@ -1293,6 +1301,7 @@ entities: 14691: 131,140 14692: 133,134 14693: 134,134 + 14784: 44,49 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -1598,9 +1607,6 @@ entities: 10418: 37,120 10419: 41,119 10420: 44,119 - 10476: 29,122 - 10477: 27,121 - 10478: 21,121 10493: 21,111 10494: 24,113 10500: 24,110 @@ -1630,6 +1636,15 @@ entities: 12208: 63,82 12209: 63,84 13907: 101,54 + 14800: 128,148 + 14801: 125,151 + 14802: 126,153 + 14803: 130,149 + 14804: 21,121 + 14805: 28,121 + 14806: 29,121 + 14807: 29,121 + 14808: 29,122 - node: cleanable: True zIndex: 1 @@ -2308,7 +2323,6 @@ entities: 8574: 129,148 8575: 127,148 8576: 125,148 - 8577: 125,149 8578: 125,151 8579: 125,154 8580: 125,156 @@ -2808,15 +2822,6 @@ entities: 10415: 40,125 10416: 37,122 10417: 39,119 - 10479: 21,121 - 10480: 21,121 - 10481: 27,121 - 10482: 29,122 - 10483: 29,121 - 10484: 28,121 - 10485: 28,121 - 10486: 29,121 - 10487: 29,122 10488: 24,112 10489: 23,113 10490: 22,112 @@ -2984,6 +2989,10 @@ entities: 14737: 135,132 14738: 136,134 14739: 135,136 + 14787: 127,149 + 14789: 126,153 + 14790: 129,149 + 14791: 130,149 - node: cleanable: True zIndex: 1 @@ -3848,6 +3857,12 @@ entities: 14558: 129,110 14559: 133,107 14560: 133,105 + 14792: 126,148 + 14794: 125,150 + 14796: 126,152 + 14797: 125,153 + 14798: 128,148 + 14799: 130,148 - node: cleanable: True zIndex: 1 @@ -7612,6 +7627,13 @@ entities: 2196: 135,99 9970: 156,110 9971: 156,106 + - node: + zIndex: 1 + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 14786: 126,152 - node: color: '#FFFFFFFF' id: LoadingArea @@ -7629,6 +7651,7 @@ entities: 708: 109,145 709: 108,145 710: 107,145 + 14785: 129,149 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -15664,13 +15687,13 @@ entities: 30,37: 1: 61166 31,37: - 1: 43566 + 1: 61166 31,38: 1: 10990 32,36: 1: 3581 32,37: - 1: 65391 + 1: 65407 32,38: 1: 4095 32,39: @@ -20395,12 +20418,6 @@ entities: - type: Transform pos: 88.5,124.5 parent: 1 - - type: Door - secondsUntilStateChange: -28749.21 - state: Opening - - type: DeviceLinkSource - lastSignals: - DoorStatus: True - uid: 2530 components: - type: MetaData @@ -29019,6 +29036,11 @@ entities: - type: Transform pos: 54.5,116.5 parent: 1 + - uid: 5566 + components: + - type: Transform + pos: 44.5,44.5 + parent: 1 - uid: 6136 components: - type: Transform @@ -29056,11 +29078,6 @@ entities: - type: Transform pos: 124.5,83.5 parent: 1 - - uid: 23938 - components: - - type: Transform - pos: 42.5,44.5 - parent: 1 - uid: 24718 components: - type: Transform @@ -51064,6 +51081,26 @@ entities: - type: Transform pos: 162.5,122.5 parent: 1 + - uid: 30586 + components: + - type: Transform + pos: 91.5,68.5 + parent: 1 + - uid: 30587 + components: + - type: Transform + pos: 58.5,42.5 + parent: 1 + - uid: 30589 + components: + - type: Transform + pos: 90.5,139.5 + parent: 1 + - uid: 30593 + components: + - type: Transform + pos: 92.5,139.5 + parent: 1 - uid: 30664 components: - type: Transform @@ -51819,6 +51856,11 @@ entities: - type: Transform pos: 114.5,36.5 parent: 1 + - uid: 32585 + components: + - type: Transform + pos: 93.5,139.5 + parent: 1 - uid: 32932 components: - type: Transform @@ -90425,71 +90467,6 @@ entities: - type: Transform pos: 132.5,148.5 parent: 1 - - uid: 30578 - components: - - type: Transform - pos: 131.5,148.5 - parent: 1 - - uid: 30579 - components: - - type: Transform - pos: 130.5,148.5 - parent: 1 - - uid: 30580 - components: - - type: Transform - pos: 129.5,148.5 - parent: 1 - - uid: 30581 - components: - - type: Transform - pos: 128.5,148.5 - parent: 1 - - uid: 30582 - components: - - type: Transform - pos: 127.5,148.5 - parent: 1 - - uid: 30583 - components: - - type: Transform - pos: 125.5,148.5 - parent: 1 - - uid: 30584 - components: - - type: Transform - pos: 125.5,149.5 - parent: 1 - - uid: 30585 - components: - - type: Transform - pos: 125.5,150.5 - parent: 1 - - uid: 30586 - components: - - type: Transform - pos: 125.5,151.5 - parent: 1 - - uid: 30587 - components: - - type: Transform - pos: 125.5,152.5 - parent: 1 - - uid: 30588 - components: - - type: Transform - pos: 125.5,154.5 - parent: 1 - - uid: 30589 - components: - - type: Transform - pos: 125.5,155.5 - parent: 1 - - uid: 30590 - components: - - type: Transform - pos: 125.5,156.5 - parent: 1 - uid: 30591 components: - type: Transform @@ -90500,11 +90477,6 @@ entities: - type: Transform pos: 27.5,76.5 parent: 1 - - uid: 30593 - components: - - type: Transform - pos: 125.5,153.5 - parent: 1 - uid: 30595 components: - type: Transform @@ -102691,11 +102663,6 @@ entities: - type: Transform pos: 139.5,133.5 parent: 1 - - uid: 20890 - components: - - type: Transform - pos: 53.5,80.5 - parent: 1 - uid: 21014 components: - type: Transform @@ -102817,10 +102784,10 @@ entities: - type: Transform pos: 38.5,82.5 parent: 1 - - uid: 11360 + - uid: 10318 components: - type: Transform - pos: 51.5,80.5 + pos: 49.5,80.5 parent: 1 - uid: 20853 components: @@ -121320,16 +121287,16 @@ entities: - type: Transform pos: 140.5,106.5 parent: 1 + - uid: 10317 + components: + - type: Transform + pos: 53.5,80.5 + parent: 1 - uid: 13616 components: - type: Transform pos: 40.5,71.5 parent: 1 - - uid: 21006 - components: - - type: Transform - pos: 49.5,80.5 - parent: 1 - uid: 27261 components: - type: Transform @@ -123376,11 +123343,6 @@ entities: - type: DeviceNetwork deviceLists: - 10326 - - uid: 1513 - components: - - type: Transform - pos: 126.5,152.5 - parent: 1 - uid: 1561 components: - type: Transform @@ -125570,11 +125532,6 @@ entities: deviceLists: - 33283 - 1457 - - uid: 5568 - components: - - type: Transform - pos: 126.5,148.5 - parent: 1 - uid: 5578 components: - type: Transform @@ -126621,16 +126578,6 @@ entities: - type: DeviceNetwork deviceLists: - 33284 - - uid: 10317 - components: - - type: Transform - pos: 130.5,149.5 - parent: 1 - - uid: 10318 - components: - - type: Transform - pos: 126.5,153.5 - parent: 1 - uid: 10700 components: - type: Transform @@ -128199,11 +128146,6 @@ entities: - 29340 - 28745 - 25419 - - uid: 30178 - components: - - type: Transform - pos: 129.5,149.5 - parent: 1 - uid: 30188 components: - type: Transform @@ -128238,6 +128180,11 @@ entities: - type: Transform pos: 138.5,135.5 parent: 1 + - uid: 30584 + components: + - type: Transform + pos: 125.5,156.5 + parent: 1 - uid: 30649 components: - type: Transform @@ -184093,6 +184040,11 @@ entities: - type: Transform pos: 147.5,128.5 parent: 1 + - uid: 30581 + components: + - type: Transform + pos: 20.5,95.5 + parent: 1 - uid: 30602 components: - type: Transform @@ -189028,6 +188980,28 @@ entities: - type: Transform pos: 22.5,75.5 parent: 1 +- proto: MaintsRoomMarker + entities: + - uid: 5567 + components: + - type: Transform + pos: 149.5,79.5 + parent: 1 + - uid: 5646 + components: + - type: Transform + pos: 18.5,90.5 + parent: 1 + - uid: 6102 + components: + - type: Transform + pos: 57.5,36.5 + parent: 1 + - uid: 23938 + components: + - type: Transform + pos: 127.5,150.5 + parent: 1 - proto: MakeshiftShield entities: - uid: 33555 @@ -190286,7 +190260,8 @@ entities: - uid: 2958 components: - type: Transform - pos: 42.547894,45.688747 + rot: -25.132741228718352 rad + pos: 42.531677,44.6992 parent: 1 - uid: 4299 components: @@ -190917,12 +190892,6 @@ entities: - type: Transform pos: 132.5,152.5 parent: 1 - - uid: 35489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 128.5,149.5 - parent: 1 - uid: 35862 components: - type: Transform @@ -192047,6 +192016,12 @@ entities: rot: -1.5707963267948966 rad pos: 136.5,43.5 parent: 1 + - uid: 30590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,92.5 + parent: 1 - uid: 32123 components: - type: Transform @@ -194825,6 +194800,11 @@ entities: rot: 1.5707963267948966 rad pos: 139.5,126.5 parent: 1 + - uid: 30588 + components: + - type: Transform + pos: 59.5,40.5 + parent: 1 - uid: 30829 components: - type: Transform @@ -195847,6 +195827,12 @@ entities: rot: -1.5707963267948966 rad pos: 99.5,19.5 parent: 1 + - uid: 11360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 126.5,153.5 + parent: 1 - uid: 18933 components: - type: Transform @@ -195877,6 +195863,12 @@ entities: rot: -1.5707963267948966 rad pos: 54.5,152.5 parent: 1 + - uid: 21006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 126.5,151.5 + parent: 1 - uid: 26611 components: - type: Transform @@ -195933,6 +195925,30 @@ entities: rot: 1.5707963267948966 rad pos: 111.5,91.5 parent: 1 + - uid: 30178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 128.5,149.5 + parent: 1 + - uid: 30579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 127.5,149.5 + parent: 1 + - uid: 30582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 130.5,149.5 + parent: 1 + - uid: 30583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 126.5,150.5 + parent: 1 - uid: 32074 components: - type: Transform @@ -196030,6 +196046,12 @@ entities: rot: 1.5707963267948966 rad pos: 99.5,23.5 parent: 1 + - uid: 30578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 126.5,149.5 + parent: 1 - uid: 34441 components: - type: Transform @@ -197130,7 +197152,7 @@ entities: - uid: 30271 components: - type: Transform - pos: 135.5,75.5 + pos: 136.5,72.5 parent: 1 - uid: 30272 components: @@ -197227,6 +197249,11 @@ entities: - type: Transform pos: 123.5,120.5 parent: 1 + - uid: 30585 + components: + - type: Transform + pos: 129.5,74.5 + parent: 1 - uid: 30666 components: - type: Transform @@ -207803,6 +207830,12 @@ entities: - type: Transform pos: 33.5,73.5 parent: 1 + - uid: 20890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 125.5,155.5 + parent: 1 - uid: 24511 components: - type: Transform @@ -207843,6 +207876,12 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,93.5 parent: 1 + - uid: 30580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 131.5,148.5 + parent: 1 - proto: StairStageWood entities: - uid: 1952 @@ -212663,6 +212702,11 @@ entities: - type: Transform pos: 32.5,64.5 parent: 1 + - uid: 1513 + components: + - type: Transform + pos: 42.5,44.5 + parent: 1 - uid: 1796 components: - type: Transform @@ -231875,16 +231919,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,106.5 parent: 1 - - uid: 5566 - components: - - type: Transform - pos: 126.5,150.5 - parent: 1 - - uid: 5567 - components: - - type: Transform - pos: 126.5,149.5 - parent: 1 - uid: 5576 components: - type: Transform @@ -231995,11 +232029,6 @@ entities: - type: Transform pos: 127.5,46.5 parent: 1 - - uid: 5646 - components: - - type: Transform - pos: 128.5,149.5 - parent: 1 - uid: 5658 components: - type: Transform @@ -235955,12 +235984,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,103.5 parent: 1 - - uid: 6102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,95.5 - parent: 1 - uid: 6111 components: - type: Transform @@ -237480,16 +237503,6 @@ entities: rot: 3.141592653589793 rad pos: 92.5,160.5 parent: 1 - - uid: 32585 - components: - - type: Transform - pos: 126.5,151.5 - parent: 1 - - uid: 32586 - components: - - type: Transform - pos: 127.5,149.5 - parent: 1 - uid: 32588 components: - type: Transform @@ -239697,6 +239710,11 @@ entities: - type: Transform pos: 105.5,85.5 parent: 1 + - uid: 5568 + components: + - type: Transform + pos: 20.5,95.5 + parent: 1 - uid: 5569 components: - type: Transform From 7478af2d2af5c874540118f185a584816f04f157 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 4 Feb 2025 22:59:38 +0000 Subject: [PATCH 081/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1d2f7f4868..fdac881077 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,15 +1,4 @@ Entries: -- author: Ertanic - changes: - - message: Wanted list program and its cartridge. - type: Add - - message: The cartridge has been added to the HOS locker. - type: Add - - message: Added target to thief on wanted list cartridge. - type: Add - id: 7399 - time: '2024-09-19T10:22:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31223 - author: Errant changes: - message: Crew monitor list can now be filtered by name and job. @@ -3906,3 +3895,11 @@ id: 7898 time: '2025-02-04T21:46:50.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34687 +- author: Spacemann + changes: + - message: Added 4 randomized maintenance rooms to in Convex station. These will + change every round with a different layout. + type: Add + id: 7899 + time: '2025-02-04T22:58:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34866 From 265de76c9a3480f624e5279cba51cf6f5399b8f1 Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Wed, 5 Feb 2025 02:26:06 +0300 Subject: [PATCH 082/313] Add clientside personal pointlight for observers (#33607) * Observer personal pointlight * Bigger light * combine actions --------- Co-authored-by: Winkarst <74284083+Winkarst-cpu@users.noreply.github.co> Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Content.Client/Ghost/GhostSystem.cs | 24 +++++++++++++++++-- Resources/Locale/en-US/ghost/ghost-gui.ftl | 4 +++- .../Entities/Mobs/Player/observer.yml | 7 ++++-- 3 files changed, 30 insertions(+), 5 deletions(-) diff --git a/Content.Client/Ghost/GhostSystem.cs b/Content.Client/Ghost/GhostSystem.cs index f4f7e3459f..8e977b418b 100644 --- a/Content.Client/Ghost/GhostSystem.cs +++ b/Content.Client/Ghost/GhostSystem.cs @@ -13,6 +13,7 @@ namespace Content.Client.Ghost [Dependency] private readonly IClientConsoleHost _console = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly PointLightSystem _pointLightSystem = default!; [Dependency] private readonly ContentEyeSystem _contentEye = default!; public int AvailableGhostRoleCount { get; private set; } @@ -79,8 +80,27 @@ namespace Content.Client.Ghost if (args.Handled) return; - Popup.PopupEntity(Loc.GetString("ghost-gui-toggle-lighting-manager-popup"), args.Performer); - _contentEye.RequestToggleLight(uid, component); + TryComp(uid, out var light); + + if (!component.DrawLight) + { + // normal lighting + Popup.PopupEntity(Loc.GetString("ghost-gui-toggle-lighting-manager-popup-normal"), args.Performer); + _contentEye.RequestEye(component.DrawFov, true); + } + else if (!light?.Enabled ?? false) // skip this option if we have no PointLightComponent + { + // enable personal light + Popup.PopupEntity(Loc.GetString("ghost-gui-toggle-lighting-manager-popup-personal-light"), args.Performer); + _pointLightSystem.SetEnabled(uid, true, light); + } + else + { + // fullbright mode + Popup.PopupEntity(Loc.GetString("ghost-gui-toggle-lighting-manager-popup-fullbright"), args.Performer); + _contentEye.RequestEye(component.DrawFov, false); + _pointLightSystem.SetEnabled(uid, false, light); + } args.Handled = true; } diff --git a/Resources/Locale/en-US/ghost/ghost-gui.ftl b/Resources/Locale/en-US/ghost/ghost-gui.ftl index 7d3939abb1..02beef12db 100644 --- a/Resources/Locale/en-US/ghost/ghost-gui.ftl +++ b/Resources/Locale/en-US/ghost/ghost-gui.ftl @@ -3,7 +3,9 @@ ghost-gui-ghost-warp-button = Ghost Warp ghost-gui-ghost-roles-button = Ghost Roles ({$count}) ghost-gui-toggle-ghost-visibility-popup-on = Enabled visibility of ghosts. ghost-gui-toggle-ghost-visibility-popup-off = Disabled visibility of ghosts. -ghost-gui-toggle-lighting-manager-popup = Toggled all lighting. +ghost-gui-toggle-lighting-manager-popup-normal = Lighting normal. +ghost-gui-toggle-lighting-manager-popup-personal-light = Enabled personal light. +ghost-gui-toggle-lighting-manager-popup-fullbright = Fullbright mode. ghost-gui-toggle-fov-popup = Toggled field-of-view. ghost-gui-toggle-hearing-popup-on = You can now hear all messages. diff --git a/Resources/Prototypes/Entities/Mobs/Player/observer.yml b/Resources/Prototypes/Entities/Mobs/Player/observer.yml index 32a481491c..351fab6efe 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/observer.yml @@ -63,6 +63,9 @@ - type: Tag tags: - BypassInteractionRangeChecks + - type: PointLight + radius: 6 + enabled: false # proto for player ghosts specifically - type: entity @@ -85,8 +88,8 @@ - type: entity id: ActionToggleLighting - name: Toggle All Lighting - description: Toggle all light rendering to better observe dark areas. + name: Toggle Lighting + description: Toggle light rendering to better observe dark areas. components: - type: InstantAction icon: Interface/VerbIcons/light.svg.192dpi.png From 5b41728863b0ebfc73d771c91f75705c0d52025d Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 4 Feb 2025 23:27:12 +0000 Subject: [PATCH 083/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index fdac881077..bc2c141126 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Errant - changes: - - message: Crew monitor list can now be filtered by name and job. - type: Add - id: 7400 - time: '2024-09-19T10:23:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31659 - author: deltanedas changes: - message: Removed the flare blueprint from salvage, it's now unlocked roundstart @@ -3903,3 +3896,10 @@ id: 7899 time: '2025-02-04T22:58:30.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34866 +- author: Winkarst-cpu + changes: + - message: Observers now have a personal point light and can toggle it. + type: Add + id: 7900 + time: '2025-02-04T23:26:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33607 From f52116ba3bb60bedd700382c612493109950309c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 5 Feb 2025 01:58:38 +0100 Subject: [PATCH 084/313] Update Credits (#34815) Co-authored-by: PJBot --- Resources/Credits/GitHub.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index cbd4e77d55..bd26b55de1 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0tito, 0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, Agoichi, Ahion, aiden, ajcm, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alithsko, ALMv1, Alpaccalypse, Alpha-Two, AlphaQwerty, Altoids1, amatwiedle, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, ApolloVector, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, AzzyIsNotHere, baa14453, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, ben, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Booblesnoot42, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainMaru, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, compilatron144, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, CrafterKolyan, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, Deerstop, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, DylanWhittingham, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, FirinMaLazors, Fishfish458, fl-oz, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, flymo5678, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, frobnic8, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, gansulalan, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, hyperb1, hyperDelegate, hyphenationc, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, JerryImMouse, jerryimmouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, lettern, LetterN, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, Litraxx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, manelnavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, milon, MilonPL, Minemoder5000, Minty642, minus1over12, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, monotheonist, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, Nox38, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Palladinium, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, pinkbat5, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, ReeZer2, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, Shaddap1, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stewie523, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TeenSarlacc, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, Tezzaide, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, Tr1bute, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, Vasilis, VasilisThePikachu, veliebm, Velken, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, Vexerot, VigersRay, violet754, Visne, vlados1408, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, widgetbeck, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xqzpop7, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, yunii, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zHonys, zionnBE, ZNixian, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex +0tito, 0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, Agoichi, Ahion, aiden, ajcm, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alithsko, ALMv1, Alpaccalypse, Alpha-Two, AlphaQwerty, Altoids1, amatwiedle, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, ApolloVector, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, AzzyIsNotHere, baa14453, BackeTako, BananaFlambe, Baptr0b0t, BarryNorfolk, BasedUser, beck-thompson, bellwetherlogic, ben, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Booblesnoot42, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainMaru, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, CheesePlated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, compilatron144, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, CrafterKolyan, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, Deerstop, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, dinnercalzone, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, DR-DOCTOR-EVIL-EVIL, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, DylanWhittingham, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, FirinMaLazors, Fishfish458, fl-oz, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, flymo5678, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, frobnic8, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, gansulalan, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Helm4142, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, hyperb1, hyperDelegate, hyphenationc, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, jukereise, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, lettern, LetterN, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, Litraxx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, lmsnoise, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, lucas, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, manelnavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, MilonPL, Minemoder5000, Minty642, minus1over12, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, monotheonist, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, Nox38, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OnyxTheBrave, Orange-Winds, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Palladinium, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, pinkbat5, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, ReeZer2, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, Shaddap1, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, slimmslamm, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, starbuckss14, Stealthbomber16, stellar-novas, stewie523, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TeenSarlacc, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, Tezzaide, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, ToxicSonicFan04, Tr1bute, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, Vasilis, VasilisThePikachu, veliebm, Velken, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, Vexerot, VigersRay, violet754, Visne, vlados1408, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, widgetbeck, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xqzpop7, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, yunii, YuriyKiss, yuriykiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, ZeWaka, zHonys, zionnBE, ZNixian, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex From 5092681729cadd56c6194ab42c1f7c3e96e96e6e Mon Sep 17 00:00:00 2001 From: Whatstone <166147148+whatston3@users.noreply.github.com> Date: Tue, 4 Feb 2025 22:23:30 -0500 Subject: [PATCH 085/313] HealingSystem: check blood restoration, staunching (#33526) * HealingSystem: check blood restoration, staunching * Milon's suggestions * beck-thompson's requests --- Content.Server/Medical/HealingSystem.cs | 32 ++++++++++++++++--------- 1 file changed, 21 insertions(+), 11 deletions(-) diff --git a/Content.Server/Medical/HealingSystem.cs b/Content.Server/Medical/HealingSystem.cs index 74bce0eee6..6c1a7f2c85 100644 --- a/Content.Server/Medical/HealingSystem.cs +++ b/Content.Server/Medical/HealingSystem.cs @@ -118,15 +118,15 @@ public sealed class HealingSystem : EntitySystem _audio.PlayPvs(healing.HealingEndSound, entity.Owner, AudioHelpers.WithVariation(0.125f, _random).WithVolume(1f)); // Logic to determine the whether or not to repeat the healing action - args.Repeat = (HasDamage(entity.Comp, healing) && !dontRepeat); + args.Repeat = (HasDamage(entity, healing) && !dontRepeat); if (!args.Repeat && !dontRepeat) _popupSystem.PopupEntity(Loc.GetString("medical-item-finished-using", ("item", args.Used)), entity.Owner, args.User); args.Handled = true; } - private bool HasDamage(DamageableComponent component, HealingComponent healing) + private bool HasDamage(Entity ent, HealingComponent healing) { - var damageableDict = component.Damage.DamageDict; + var damageableDict = ent.Comp.Damage.DamageDict; var healingDict = healing.Damage.DamageDict; foreach (var type in healingDict) { @@ -136,6 +136,23 @@ public sealed class HealingSystem : EntitySystem } } + if (TryComp(ent, out var bloodstream)) + { + // Is ent missing blood that we can restore? + if (healing.ModifyBloodLevel > 0 + && _solutionContainerSystem.ResolveSolution(ent.Owner, bloodstream.BloodSolutionName, ref bloodstream.BloodSolution, out var bloodSolution) + && bloodSolution.Volume < bloodSolution.MaxVolume) + { + return true; + } + + // Is ent bleeding and can we stop it? + if (healing.BloodlossModifier < 0 && bloodstream.BleedAmount > 0) + { + return true; + } + } + return false; } @@ -175,14 +192,7 @@ public sealed class HealingSystem : EntitySystem if (TryComp(uid, out var stack) && stack.Count < 1) return false; - var anythingToDo = - HasDamage(targetDamage, component) || - component.ModifyBloodLevel > 0 // Special case if healing item can restore lost blood... - && TryComp(target, out var bloodstream) - && _solutionContainerSystem.ResolveSolution(target, bloodstream.BloodSolutionName, ref bloodstream.BloodSolution, out var bloodSolution) - && bloodSolution.Volume < bloodSolution.MaxVolume; // ...and there is lost blood to restore. - - if (!anythingToDo) + if (!HasDamage((target, targetDamage), component)) { _popupSystem.PopupEntity(Loc.GetString("medical-item-cant-use", ("item", uid)), uid, user); return false; From a725de14775247d92921e47fd715d6ee369d3e15 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 5 Feb 2025 03:24:37 +0000 Subject: [PATCH 086/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index bc2c141126..4a9185ba0e 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: deltanedas - changes: - - message: Removed the flare blueprint from salvage, it's now unlocked roundstart - in autolathes. - type: Remove - id: 7401 - time: '2024-09-19T13:45:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32303 - author: deltanedas changes: - message: Increased the thieving beacon's range to 2 tiles. @@ -3903,3 +3895,10 @@ id: 7900 time: '2025-02-04T23:26:06.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33607 +- author: whatston3 + changes: + - message: Healing items that reduce bleeding can now be applied to undamaged mobs. + type: Tweak + id: 7901 + time: '2025-02-05T03:23:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33526 From 2cea673610d736295f6e86efe1a5f9e81346478c Mon Sep 17 00:00:00 2001 From: DuckManZach <144298822+DuckManZach@users.noreply.github.com> Date: Wed, 5 Feb 2025 08:42:27 +0000 Subject: [PATCH 087/313] Expand variety of strange pills (#34843) * Added da pills * Revert "Added da pills" This reverts commit 3d6b8fce3386107ac4c46543252fc31764a0c1c7. * Updated to use existing weights, added larger chem variety * Reweighed charcoal * Rebalance of certain quantities * Removed grey matter, weight balancing changes * corrected comment * adjusted balance for lead --- .../Objects/Specific/Medical/randompill.yml | 26 ++++++++++++++++--- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/randompill.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/randompill.yml index cdff0cdbe4..941abd1a43 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/randompill.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/randompill.yml @@ -11,10 +11,15 @@ weight: 5 reagents: - Ichor + - Necrosol - quantity: 5 - weight: 5 + weight: 4 reagents: - Cognizine + - quantity: 10 + weight: 1 + reagents: + - Vestine # Good - weight: 25 - quantity: 20 weight: 25 @@ -24,21 +29,29 @@ - Omnizine - Tricordrazine - Vitamin + - PolypyryliumOligomers + - Charcoal # Neutral - weight: 20 - quantity: 20 weight: 17.5 reagents: - - Ipecac + - Ipecac - SodiumPolyacrylate - SpaceDrugs - SpaceGlue - Laughter - JuiceThatMakesYouWeh - Lipozine + - Carpetium + - Bananadine + - THC + - MindbreakerToxin + - Mustard + - HorseradishSauce - quantity: 5 weight: 2.5 reagents: - - Honk + - Honk # Bad - weight: 25 - quantity: 20 weight: 10.5 @@ -46,12 +59,15 @@ - MuteToxin - Pax - Fresium + - Cryptobiolin - quantity: 10 weight: 10.5 reagents: - Uranium - Licoxide - Razorium + - Potassium + - Phlogiston - quantity: 5 weight: 4 reagents: @@ -60,7 +76,7 @@ - quantity: 20 weight: 2.5 reagents: - - ChloralHydrate + - Nocturine - quantity: 10 weight: 10 reagents: @@ -68,10 +84,12 @@ - CarpoToxin - BuzzochloricBees - Amatoxin + - Tazinide - quantity: 5 weight: 2.5 reagents: - Lexorin + - Lead - type: entity name: strange pill From 16b91ce2ec8f19d4c87e5062337c3c5b57b76b24 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 5 Feb 2025 08:43:33 +0000 Subject: [PATCH 088/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 4a9185ba0e..a17bfd1230 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: deltanedas - changes: - - message: Increased the thieving beacon's range to 2 tiles. - type: Tweak - id: 7402 - time: '2024-09-19T13:55:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31340 - author: Winkarst-cpu changes: - message: The first editable line in the dialog window now grabs the keyboard focus @@ -3902,3 +3895,10 @@ id: 7901 time: '2025-02-05T03:23:31.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33526 +- author: DuckManZach + changes: + - message: Floor pills have some new interesting surprises! + type: Add + id: 7902 + time: '2025-02-05T08:42:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34843 From e9c033888476b5a8d628a10d3a2459cf355852a8 Mon Sep 17 00:00:00 2001 From: K-Dynamic <20566341+K-Dynamic@users.noreply.github.com> Date: Thu, 6 Feb 2025 00:39:26 +1200 Subject: [PATCH 089/313] Remove Vector assets and renames Vector SMG magazines (#34603) * remove vector and assets * reverts vector magazine removal; vector magazines renamed to SMG magazine (.45 magnum) * remove vector from suspicion loot table * vector migration set to null --- .../Catalog/Fills/Boxes/ammunition.yml | 9 ++-- .../Guns/Ammunition/Magazines/magnum.yml | 13 ++--- .../Objects/Weapons/Guns/SMGs/smgs.yml | 48 ------------------ .../LootTables/suspicion_loot_table.yml | 3 -- .../Weapons/Guns/SMGs/vector.rsi/base.png | Bin 357 -> 0 bytes .../Guns/SMGs/vector.rsi/bolt-open.png | Bin 346 -> 0 bytes .../SMGs/vector.rsi/equipped-BACKPACK.png | Bin 853 -> 0 bytes .../SMGs/vector.rsi/equipped-SUITSTORAGE.png | Bin 853 -> 0 bytes .../Weapons/Guns/SMGs/vector.rsi/icon.png | Bin 380 -> 0 bytes .../Guns/SMGs/vector.rsi/inhand-left.png | Bin 334 -> 0 bytes .../Guns/SMGs/vector.rsi/inhand-right.png | Bin 339 -> 0 bytes .../Weapons/Guns/SMGs/vector.rsi/mag-0.png | Bin 175 -> 0 bytes .../Weapons/Guns/SMGs/vector.rsi/meta.json | 39 -------------- Resources/migration.yml | 5 +- 14 files changed, 16 insertions(+), 101 deletions(-) delete mode 100644 Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/base.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/bolt-open.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/equipped-BACKPACK.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/equipped-SUITSTORAGE.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/icon.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/inhand-left.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/inhand-right.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/mag-0.png delete mode 100644 Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/meta.json diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/ammunition.yml b/Resources/Prototypes/Catalog/Fills/Boxes/ammunition.yml index a9fffddd2a..a42d653d52 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/ammunition.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/ammunition.yml @@ -56,11 +56,12 @@ - id: MagazineLightRiflePractice amount: 4 +# Magnum - type: entity - name: box of Vector magazines + name: box of SMG .45 magnum magazines parent: BoxMagazine id: BoxMagazineMagnumSubMachineGun - description: A box full of Vector magazines. + description: A box full of SMG .45 magnum magazines. components: - type: StorageFill contents: @@ -68,10 +69,10 @@ amount: 3 - type: entity - name: box of Vector (practice) magazines + name: box of SMG .45 magnum (practice) magazines parent: BoxMagazine id: BoxMagazineMagnumSubMachineGunPractice - description: A box full of Vector (practice) magazines. + description: A box full of SMG .45 magnum (practice) magazines. components: - type: StorageFill contents: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/magnum.yml index 4f6f101be4..b7378b9991 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/magnum.yml @@ -16,7 +16,7 @@ - type: entity id: BaseMagazineMagnumSubMachineGun - name: "Vector magazine (.45 magnum)" + name: SMG magazine (.45 magnum) parent: BaseItem abstract: true components: @@ -116,9 +116,10 @@ - state: mag-1 map: ["enum.GunVisualLayers.Mag"] + - type: entity id: MagazineMagnumSubMachineGunEmpty - name: "Vector magazine (.45 magnum any)" + name: SMG magazine (.45 magnum any) suffix: empty parent: BaseMagazineMagnumSubMachineGun components: @@ -131,7 +132,7 @@ - type: entity id: MagazineMagnumSubMachineGun - name: "Vector magazine (.45 magnum)" + name: SMG magazine (.45 magnum) parent: BaseMagazineMagnumSubMachineGun components: - type: BallisticAmmoProvider @@ -145,7 +146,7 @@ - type: entity id: MagazineMagnumSubMachineGunPractice - name: "Vector magazine (.45 magnum practice)" + name: SMG magazine (.45 magnum practice) parent: BaseMagazineMagnumSubMachineGun components: - type: BallisticAmmoProvider @@ -159,7 +160,7 @@ - type: entity id: MagazineMagnumSubMachineGunUranium - name: "Vector magazine (.45 magnum uranium)" + name: SMG magazine (.45 magnum uranium) parent: BaseMagazineMagnumSubMachineGun components: - type: BallisticAmmoProvider @@ -173,7 +174,7 @@ - type: entity id: MagazineMagnumSubMachineGunPiercing - name: "Vector magazine (.45 magnum armor-piercing)" + name: SMG magazine (.45 magnum armour-piercing) parent: BaseMagazineMagnumSubMachineGun components: - type: BallisticAmmoProvider diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml index 6d768f67be..2fc2fc41e5 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml @@ -177,54 +177,6 @@ zeroVisible: true - type: Appearance -- type: entity - name: Vector - parent: BaseWeaponSubMachineGun - id: WeaponSubMachineGunVector - suffix: Deprecated use Drozd - description: An excellent fully automatic Heavy SMG. Uses .45 magnum ammo. - components: - - type: Sprite - sprite: Objects/Weapons/Guns/SMGs/vector.rsi - layers: - - state: base - map: ["enum.GunVisualLayers.Base"] - - state: mag-0 - map: ["enum.GunVisualLayers.Mag"] - - type: Clothing - sprite: Objects/Weapons/Guns/SMGs/vector.rsi - - type: Gun - fireRate: 6 - selectedMode: FullAuto - soundGunshot: - path: /Audio/Weapons/Guns/Gunshots/atreides.ogg - availableModes: - - FullAuto - - type: ItemSlots - slots: - gun_magazine: - name: Magazine - startingItem: MagazineMagnumSubMachineGun - insertSound: /Audio/Weapons/Guns/MagIn/smg_magin.ogg - ejectSound: /Audio/Weapons/Guns/MagOut/smg_magout.ogg - priority: 2 - whitelist: - tags: - - MagazineMagnumSubMachineGun - gun_chamber: - name: Chamber - startingItem: CartridgeMagnum - priority: 1 - whitelist: - tags: - - CartridgeMagnum - whitelistFailPopup: gun-magazine-whitelist-fail - - type: MagazineVisuals - magState: mag - steps: 1 - zeroVisible: true - - type: Appearance - - type: entity name: WT550 parent: [ BaseWeaponSubMachineGun, BaseRestrictedContraband ] diff --git a/Resources/Prototypes/LootTables/suspicion_loot_table.yml b/Resources/Prototypes/LootTables/suspicion_loot_table.yml index c2b00488a8..58414f3d28 100644 --- a/Resources/Prototypes/LootTables/suspicion_loot_table.yml +++ b/Resources/Prototypes/LootTables/suspicion_loot_table.yml @@ -68,9 +68,6 @@ - id: WeaponSubMachineGunC20r amount: 0 maxAmount: 5 - - id: WeaponSubMachineGunVector - amount: 0 - maxAmount: 5 - id: WeaponSubMachineGunWt550 amount: 0 maxAmount: 5 diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/base.png deleted file mode 100644 index 4545503c5783e087e03759dea7613b671d2d8e13..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 357 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jPK-BC>eK@{oCO|{#S9F3 z${@^GvDCf{DCipC6XFV_B_t%&)YN2UWg{aa_4M={9UW&dFmQ2kSz207ojO%YO3KjC zP+m?}Sy|c7&reWLaPs5{J9logHZd;ANf8zn4)*i8_+cXp&>-=WAirRS|5(9>?&AAE zCDS}z978JRyq$2D?~npd>usx7UN`%lYyZ1X6*?gyB`mD}eQLMb^OkQS51y0@{JwtD zWqPt`Y5|*3y!%7h^EvT6o?*kV((X8lHyA+7trjG zOky(3f2okM+Wy)a`{dpSv-n$z?n~bZzZrs& b|0%2YX7gTe~DWM4fVpN3< diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/bolt-open.png deleted file mode 100644 index f616d25f874791042cf4ffe6ea41266dfdc575ad..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 346 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jPK-BC>eK@{oCO|{#S9F3 z${@^GvDCf{C}tqx#}+mpUi7uDEMUE@mMx#(dmy@Qn>hx z;?p0_J@H0Wt$T8_XZqDoJ$pi~iQ44a<|%nHn8gVg-hX?;oaum`fU1D_ro>6xIToxu zFCTq!{?1;3T})0-ZMhz1zYG2%dyn;PdO`9D{@E^DT3y8-sW0@5cy9euUqAFZyZn|- S9fm;XF?hQAxvXPx#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0_sUbK~#8N?V3SL z8$lGuCk2g3kY0?$hS&roSW0P;f;o7~t%uw^c(IqB#A829KY-sO=bVI6N<*P=k{l2!YnFXNyxD?>Cd)$jHsFV6A7mLA@N<|6>CgQ;Z^%R1qhXMg|nT!-a zKQ|{HE-uP|s9RdhBmnh#-KbMrF!KmBj#{l2P})QM&x;H3eK-`z1`{F&pwVbti;pw? ziB_wX%IEXK@AU-4e>pi3nS}*)_lj3rTQWH6^iCoTn8c4pBhhR&V;2vq<#K@8{&9Jv zRoY|bsrFFG$e+=Umt_wBYE2PVcp?HiBFY7KBL9;uI-1|%Mf z9H8gEP5J|;LZU!IX|+d2P*5lfY)DK1CQ+?af=oJn<1uK;O#TzRPf!ZB;u(fv7=~dO zhG7_nVWt8zLNybE?wGZ9gs>5bJvepx*MqU%w#%lW6#(qH!GlW*7%RrCgVCO#srBp< zcoy&mVzI}u>4=mvwVqu8;jqkMj1)>GS+cqtrP>*wQwBEHR8-(oX0ut@hGFx~_qEd> z7?l8+wz^^#RMQ!7sB^iTY{MC{d0J@)fXd+Q{=T~M8*+NTllINdj#2sp ztuH=bUzY-5LbN?kbUg3+cbIufL04`uWgGep_qnpX9K5Jj<+}ku$1*b-FjiQ&v!APx#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0_sUbK~#8N?V3SL z8$lGuCk2g3kY0?$hS&roSW0P;f;o7~t%uw^c(IqB#A829KY-sO=bVI6N<*P=k{l2!YnFXNyxD?>Cd)$jHsFV6A7mLA@N<|6>CgQ;Z^%R1qhXMg|nT!-a zKQ|{HE-uP|s9RdhBmnh#-KbMrF!KmBj#{l2P})QM&x;H3eK-`z1`{F&pwVbti;pw? ziB_wX%IEXK@AU-4e>pi3nS}*)_lj3rTQWH6^iCoTn8c4pBhhR&V;2vq<#K@8{&9Jv zRoY|bsrFFG$e+=Umt_wBYE2PVcp?HiBFY7KBL9;uI-1|%Mf z9H8gEP5J|;LZU!IX|+d2P*5lfY)DK1CQ+?af=oJn<1uK;O#TzRPf!ZB;u(fv7=~dO zhG7_nVWt8zLNybE?wGZ9gs>5bJvepx*MqU%w#%lW6#(qH!GlW*7%RrCgVCO#srBp< zcoy&mVzI}u>4=mvwVqu8;jqkMj1)>GS+cqtrP>*wQwBEHR8-(oX0ut@hGFx~_qEd> z7?l8+wz^^#RMQ!7sB^iTY{MC{d0J@)fXd+Q{=T~M8*+NTllINdj#2sp ztuH=bUzY-5LbN?kbUg3+cbIufL04`uWgGep_qnpX9K5Jj<+}ku$1*b-FjiQ&v!AeK@{oCO|{#S9F3 z${@^GvDCf{DCiO36XFV_B_t%&)YN2UWg{aa_4M={9UW&dFmQ2kSz207ojO%YO3KjC zP+m?}Sy|c7&reWLaPs5{J9logHZd;ANf8zn4)*g&OG`^;U#tQ$t0c%TnBhNm@bZp} z8BoniPZ!6KiaBp5+~qr@z~dGzQ~HPJc|hfV^Ql57B(#ojzyEWJ^`zy(Ee!u_e>Qj?*{L}%Q&Lil_4OR>Y`wj`t98~a1?epb@(X78 z4+Z8-v#$UJw|lxchE&XXJH?mpkb+3d!GZ>_)B8dn$vtLt*j;d2dB;Phw%^(;IukqB z+I_CFbN7)8H zzi)z8>e(Bc3(jA-W!}qd_EHP9*>MU^Iv14h)2ahR=hH^~i&r1{)USGc9dTzx&rrZB#ihKPKvMb(g RG#lsz22WQ%mvv4FO#qR_eR}`^ diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/inhand-right.png deleted file mode 100644 index afb543219fa67f4b8f3b0777b7cc1da392b11ee2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 339 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e#^NA%C&rs6b?Si}&H|6fVg?3o zVGw3ym^DWNC@3A^6XFV_B_$<|jEwB;>{L}%Q&Lil_4OR>Y?YOjw=LNu1kzg)FVdQ&MBb@08veC8UO$Q diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/mag-0.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/mag-0.png deleted file mode 100644 index 6aafc0267003aa46d97f6e54933ef80eceff8aa6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv#^NA%C&rs6b?Si}&H|6fVg?31 zWe{epSZZGe6yy)^32_C|%F4=VX=#p*j#H;j-9IaN6;Oz^B*-tA;Xe?_Tu=iUui@$9 z7*a7OIYEMznX`o_@Mn)(R|b Date: Wed, 5 Feb 2025 08:08:53 -0500 Subject: [PATCH 090/313] Changed utensil sprites to appear smaller. (#34277) * Changed utensil sprites to appear smaller. * Added self to author section * Added my name and update to copyright section * Adjusted plastic spoon sprite * Adjusted spoon sprite --- .../Textures/Objects/Misc/utensils.rsi/fork.png | Bin 175 -> 202 bytes .../Objects/Misc/utensils.rsi/meta.json | 2 +- .../Objects/Misc/utensils.rsi/plastic_fork.png | Bin 169 -> 194 bytes .../Objects/Misc/utensils.rsi/plastic_knife.png | Bin 181 -> 173 bytes .../Objects/Misc/utensils.rsi/plastic_spoon.png | Bin 195 -> 211 bytes .../Objects/Misc/utensils.rsi/spoon.png | Bin 199 -> 205 bytes 6 files changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Textures/Objects/Misc/utensils.rsi/fork.png b/Resources/Textures/Objects/Misc/utensils.rsi/fork.png index e9b3816db5e217eff85d820497b92b80422239e2..cf2d1e3bb7de74ea96f04c2e81d12edae9f5046d 100644 GIT binary patch delta 147 zcmZ3_c#3g?gct`i0|SH0lCEPwim^Dz-HBn{IhmIe6}5^uOM?7@8U90oIn(SbKqVfY zE{-7E)6M!MUS<(ty{NugMaBoaJ^a`+{J3XGvS;05E@Ifrq_l_q u{~^&Cxf`?uT{f4B2i*E}3W%y1SbnK0|P^2Nc!=KdRi%rB|(0{3=Yq3qyYt;JY5_^G|nd{9N?3Xl;q^# zFf!s25J+$p=iqe_72xGoRX89a*73~9k+EdCk$_ObvTg?MT@J2{vl_Y%1q2>sNoHVp X)6UhjbGmgi&@={5S3j3^P6!5sMIn|$P9hPQ{0Wc+@^sv&q^^R(0E8ny%m2PT6D94B~B%$gYd ve4+J~4)%s;MLZMlzS+TWL;0`#yemvTw-`P-MBZcsn#thl>gTe~DWM4fB3C;3 delta 120 zcmV-;0Ehp=0jU9y7zqRe0001iRAl8ojuQv);sRt&cfi~tk5fS3T9fRVu<6~J&Q a+;afW!U_F%j8T990000xRr5&1SbnK0|P^2Nc!=Kih5~`B|(0{3=Yq3qyYt8JY5_^G|nd{9AI_2z}j>1 z$C`5)Ob6XEm~>t+DP}OOQG1~k!`8`_ULtzVD?@9>Mb;SxAreBDoa9A&+FD{xDRgLy aGBAig;`kgI#d#QL9)qW=pUXO@geCyFxG3!a diff --git a/Resources/Textures/Objects/Misc/utensils.rsi/plastic_spoon.png b/Resources/Textures/Objects/Misc/utensils.rsi/plastic_spoon.png index 50bea293058679db746058ead717fe357e3a63d5..7abfafd32ac936fdfbf7718907f2b3352db526ac 100644 GIT binary patch delta 195 zcmX@ic$sm6L_G&H0|SH0lCEPwim^Dz-HBn{IhmJ0j&y)eh%1mzOiU~;E}l7a=KA&P zPn|k->C&Zl@7@8$Z#eAa08*SKL4Lsu|DnK~Y4#PMV4$aqV~9oX-HQi#4;b(;IS9$z zsDE6=^k+p>Xz9E;8`dz`&slZK@~DPam<`LOwb2iD#4}y!WQ`5nx!~x8{fwW&8BE%F oFVAd0-)!1&b}r+!3H8N#YuFgo*{1$i2b#{{>FVdQ&MBb@0NTA!Jpcdz delta 179 zcmcc2c$jg5L_G^L0|P^2NcwRg#aJBV?!>U}oXkrgMvp delta 128 zcmX@hc${&91SbnK0|P^2Nc!=KidH#{B|(0{3=Yq3qyYuJJY5_^G$tk|D2TPNE%+2^ z9UaJe$of{`RF9G}js;w2<}|7W1U70Z#KrY#9f*kNc*f_*=)`n}$3!5(QQX7dK{y~# gLQ89gL Date: Wed, 5 Feb 2025 13:09:59 +0000 Subject: [PATCH 091/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a17bfd1230..3c93e6d5ee 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: The first editable line in the dialog window now grabs the keyboard focus - once it's open. - type: Fix - id: 7403 - time: '2024-09-19T14:01:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31294 - author: Plykiya changes: - message: You can now transfer someone from a rollerbed to a bed directly. @@ -3902,3 +3894,10 @@ id: 7902 time: '2025-02-05T08:42:27.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34843 +- author: Gavin-TC + changes: + - message: Changed common utensil sprites to appear smaller and more proportionate. + type: Tweak + id: 7903 + time: '2025-02-05T13:08:53.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34277 From ded6b46b80ac299fd9c018807280ad0c8cd48e50 Mon Sep 17 00:00:00 2001 From: Booblesnoot42 <108703193+Booblesnoot42@users.noreply.github.com> Date: Wed, 5 Feb 2025 09:46:21 -0500 Subject: [PATCH 092/313] Remove instant cryobed insertion (#34619) * added optional delay to DragInsertContainerComponent * comments * Change EntryDelay on DragInsertContainerComponent to use TimeSpan + cleanup * changed drag insert container comp to match naming conventions --- .../DragInsertContainerComponent.cs | 12 ++++++ .../Containers/DragInsertContainerSystem.cs | 40 ++++++++++++++++++- .../Structures/cryogenic_sleep_unit.yml | 1 + 3 files changed, 51 insertions(+), 2 deletions(-) diff --git a/Content.Shared/Containers/DragInsertContainerComponent.cs b/Content.Shared/Containers/DragInsertContainerComponent.cs index e4cae26fcb..23cf3f6558 100644 --- a/Content.Shared/Containers/DragInsertContainerComponent.cs +++ b/Content.Shared/Containers/DragInsertContainerComponent.cs @@ -17,4 +17,16 @@ public sealed partial class DragInsertContainerComponent : Component /// [DataField, ViewVariables(VVAccess.ReadWrite)] public bool UseVerbs = true; + + /// + /// The delay in seconds before a drag will be completed. + /// + [DataField] + public TimeSpan EntryDelay = TimeSpan.Zero; + + /// + /// If entry delay isn't zero, this sets whether an entity dragging itself into the container should be delayed. + /// + [DataField] + public bool DelaySelfEntry = false; } diff --git a/Content.Shared/Containers/DragInsertContainerSystem.cs b/Content.Shared/Containers/DragInsertContainerSystem.cs index b7f5eb500b..8ccf003703 100644 --- a/Content.Shared/Containers/DragInsertContainerSystem.cs +++ b/Content.Shared/Containers/DragInsertContainerSystem.cs @@ -2,24 +2,28 @@ using Content.Shared.ActionBlocker; using Content.Shared.Administration.Logs; using Content.Shared.Climbing.Systems; using Content.Shared.Database; +using Content.Shared.DoAfter; using Content.Shared.DragDrop; using Content.Shared.Verbs; using Robust.Shared.Containers; +using Robust.Shared.Serialization; namespace Content.Shared.Containers; -public sealed class DragInsertContainerSystem : EntitySystem +public sealed partial class DragInsertContainerSystem : EntitySystem { [Dependency] private readonly ISharedAdminLogManager _adminLog = default!; [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; [Dependency] private readonly ClimbSystem _climb = default!; [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnDragDropOn, before: new []{ typeof(ClimbSystem)}); + SubscribeLocalEvent(OnDragFinished); SubscribeLocalEvent(OnCanDragDropOn); SubscribeLocalEvent>(OnGetAlternativeVerb); } @@ -33,7 +37,34 @@ public sealed class DragInsertContainerSystem : EntitySystem if (!_container.TryGetContainer(ent, comp.ContainerId, out var container)) return; - args.Handled = Insert(args.Dragged, args.User, ent, container); + if (comp.EntryDelay <= TimeSpan.Zero || + !comp.DelaySelfEntry && args.User == args.Dragged) + { + //instant insertion + args.Handled = Insert(args.Dragged, args.User, ent, container); + return; + } + + //delayed insertion + var doAfterArgs = new DoAfterArgs(EntityManager, args.User, comp.EntryDelay, new DragInsertContainerDoAfterEvent(), ent, args.Dragged, ent) + { + BreakOnDamage = true, + BreakOnMove = true, + NeedHand = false, + }; + _doAfter.TryStartDoAfter(doAfterArgs); + args.Handled = true; + } + + private void OnDragFinished(Entity ent, ref DragInsertContainerDoAfterEvent args) + { + if (args.Handled || args.Cancelled || args.Args.Target == null) + return; + + if (!_container.TryGetContainer(ent, ent.Comp.ContainerId, out var container)) + return; + + Insert(args.Args.Target.Value, args.User, ent, container); } private void OnCanDragDropOn(Entity ent, ref CanDropTargetEvent args) @@ -117,4 +148,9 @@ public sealed class DragInsertContainerSystem : EntitySystem _adminLog.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(user):player} inserted {ToPrettyString(target):player} into container {ToPrettyString(containerEntity)}"); return true; } + + [Serializable, NetSerializable] + public sealed partial class DragInsertContainerDoAfterEvent : SimpleDoAfterEvent + { + } } diff --git a/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml b/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml index e9e9294e63..6ba988dc80 100644 --- a/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml +++ b/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml @@ -25,6 +25,7 @@ canCollide: false - type: DragInsertContainer containerId: storage + entryDelay: 2 - type: ExitContainerOnMove containerId: storage - type: PointLight From 4964aae503f1fcdadfdfba5d48bc4eeed3b1f509 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 5 Feb 2025 14:47:28 +0000 Subject: [PATCH 093/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 3c93e6d5ee..eb442a1b77 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: You can now transfer someone from a rollerbed to a bed directly. - type: Tweak - id: 7404 - time: '2024-09-19T14:08:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32089 - author: SaphireLattice changes: - message: Fland now has public glass airlocks sectioning the hallway. @@ -3901,3 +3894,11 @@ id: 7903 time: '2025-02-05T13:08:53.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34277 +- author: Booblesnoot42 + changes: + - message: Inserting another person into a cryogenic sleeping unit is no longer + instant. + type: Tweak + id: 7904 + time: '2025-02-05T14:46:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34619 From 54d5ef93add2fb956c3190e6f313b23bb9fc91eb Mon Sep 17 00:00:00 2001 From: hyperDelegate Date: Wed, 5 Feb 2025 05:54:45 -0900 Subject: [PATCH 094/313] Reduce NukeOps Reinforcement price from 35TC to 30TC (#34675) * Reduce NukeOps Reinforcement to 25TC from 35TC * price adjustment to 30 * Revert "price adjustment to 30" This reverts commit f337f5a178a344db34a414a47283f43242ea531f. * revert "price adjustment to 30" This reverts commit f337f5a178a344db34a414a47283f43242ea531f. submodule?! YAML preserve me... * Revert "price adjustment to 30" This reverts commit f337f5a178a344db34a414a47283f43242ea531f. submodule!?!? yaml save me * attempt #2 at changing to 30 --- Resources/Prototypes/Catalog/uplink_catalog.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index ee3cc773a6..29517ad10e 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -1155,7 +1155,7 @@ productEntity: ReinforcementRadioSyndicateNukeops icon: { sprite: Objects/Devices/communication.rsi, state: old-radio-nukeop } cost: - Telecrystal: 35 + Telecrystal: 30 categories: - UplinkAllies conditions: From 1e7b4140a41c23a22273859ecdf4f0ab80111da6 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 5 Feb 2025 14:55:52 +0000 Subject: [PATCH 095/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index eb442a1b77..62a8da8bd7 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: SaphireLattice - changes: - - message: Fland now has public glass airlocks sectioning the hallway. - type: Fix - id: 7405 - time: '2024-09-19T19:17:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32264 - author: Plykiya changes: - message: Cockroaches and mothroaches can no longer damage things with their bites. @@ -3902,3 +3895,10 @@ id: 7904 time: '2025-02-05T14:46:21.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34619 +- author: hyperDelegate + changes: + - message: The Nuclear Operative Reinforcement Teleporter now costs 30TC (was 35). + type: Tweak + id: 7905 + time: '2025-02-05T14:54:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34675 From d0bdbc875e6c0ada328ec487f7647d2102999228 Mon Sep 17 00:00:00 2001 From: Farrellka <104170263+Farrellka-dev@users.noreply.github.com> Date: Wed, 5 Feb 2025 19:49:04 +0300 Subject: [PATCH 096/313] Elf Ears (#33572) * Elf Supremacy * Delete old ears * Review Fix --- Resources/Locale/en-US/markings/ears.ftl | 7 ++- .../Mobs/Customization/Markings/ears.yml | 59 +++++++++++++++++- .../Mobs/Customization/ears.rsi/long_ears.png | Bin 186 -> 0 bytes .../ears.rsi/long_ears_small.png | Bin 0 -> 753 bytes .../ears.rsi/long_ears_standard.png | Bin 0 -> 686 bytes .../Customization/ears.rsi/long_ears_tall.png | Bin 0 -> 826 bytes .../Customization/ears.rsi/long_ears_thin.png | Bin 0 -> 601 bytes .../ears.rsi/long_ears_upwards.png | Bin 0 -> 789 bytes .../Customization/ears.rsi/long_ears_wide.png | Bin 0 -> 675 bytes .../Mobs/Customization/ears.rsi/meta.json | 25 +++++++- 10 files changed, 85 insertions(+), 6 deletions(-) delete mode 100644 Resources/Textures/Mobs/Customization/ears.rsi/long_ears.png create mode 100644 Resources/Textures/Mobs/Customization/ears.rsi/long_ears_small.png create mode 100644 Resources/Textures/Mobs/Customization/ears.rsi/long_ears_standard.png create mode 100644 Resources/Textures/Mobs/Customization/ears.rsi/long_ears_tall.png create mode 100644 Resources/Textures/Mobs/Customization/ears.rsi/long_ears_thin.png create mode 100644 Resources/Textures/Mobs/Customization/ears.rsi/long_ears_upwards.png create mode 100644 Resources/Textures/Mobs/Customization/ears.rsi/long_ears_wide.png diff --git a/Resources/Locale/en-US/markings/ears.ftl b/Resources/Locale/en-US/markings/ears.ftl index 62921f5e44..4c35ed9f41 100644 --- a/Resources/Locale/en-US/markings/ears.ftl +++ b/Resources/Locale/en-US/markings/ears.ftl @@ -1 +1,6 @@ -marking-HumanLongEars = Long Ears +marking-HumanLongEars = Long Ears Standard +marking-LongEarsWide = Long Ears Wide +marking-LongEarsSmall = Long Ears Small +marking-LongEarsUpwards = Long Ears Upwards +marking-LongEarsTall = Long Ears Tall +marking-LongEarsThin = Long Ears Thin diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/ears.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/ears.yml index 6e35088032..c32348b273 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/ears.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/ears.yml @@ -2,9 +2,64 @@ id: HumanLongEars bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Human, Dwarf] forcedColoring: true followSkinColor: true + speciesRestriction: [Human, Dwarf] sprites: - sprite: Mobs/Customization/ears.rsi - state: long_ears + state: long_ears_standard + +- type: marking + id: LongEarsWide + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + followSkinColor: true + speciesRestriction: [Human] + sprites: + - sprite: Mobs/Customization/ears.rsi + state: long_ears_wide + +- type: marking + id: LongEarsSmall + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + followSkinColor: true + speciesRestriction: [Human, Dwarf] + sprites: + - sprite: Mobs/Customization/ears.rsi + state: long_ears_small + +- type: marking + id: LongEarsUpwards + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + followSkinColor: true + speciesRestriction: [Human] + sprites: + - sprite: Mobs/Customization/ears.rsi + state: long_ears_upwards + +- type: marking + id: LongEarsTall + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + followSkinColor: true + speciesRestriction: [Human] + sprites: + - sprite: Mobs/Customization/ears.rsi + state: long_ears_tall + +- type: marking + id: LongEarsThin + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + followSkinColor: true + speciesRestriction: [Human, Dwarf] + sprites: + - sprite: Mobs/Customization/ears.rsi + state: long_ears_thin diff --git a/Resources/Textures/Mobs/Customization/ears.rsi/long_ears.png b/Resources/Textures/Mobs/Customization/ears.rsi/long_ears.png deleted file mode 100644 index 6779427f10a258cdba250d689807facf126133d0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|N<3X0Ln`LH zy|t0^Z~za>h0{XvHm%>~or5|43Hd!eXHl3abh!GhqTk*r3Tc%G+iM@XMbNP*WrehM3)1LmDd+yzr{SV9` bs(u`kF4>WGs!jRi3Xp)OtDnm{r-UW|q1j2p diff --git a/Resources/Textures/Mobs/Customization/ears.rsi/long_ears_small.png b/Resources/Textures/Mobs/Customization/ears.rsi/long_ears_small.png new file mode 100644 index 0000000000000000000000000000000000000000..c6cdebef00521c119c35fbefe0efc9c82d6b4b29 GIT binary patch literal 753 zcmVEX>4Tx04R}tkv&MmP!xqvQ^g_`1v`i+WT;MdQ4z;lg(6f4wL+^7CNKSiCJjl7 zi=*ILaPVib>fqw6tAnc`2>yULJ2)x2NQw6)g%&YBxV(?^-Z|WNA0RX;OtZS;fTr7K zI++l&xmB^}6(NK%Ks72e%b1g-6nxj$Jpz2ci}5V~dw;GzHE%H>AQH!!VcNtS#50?= z!FiuJ!b-AAd`>)JQiH^gTvt4P<6LxE;F%FKlb$Dz5R1hQRyvrKOpSP&II3zo)|5Tqat9cCGGtSBr6841C;;zg^i4Tn@D}J@^XAq%$LRx*p;@JFfP+I| zyhz#WKJN~7&h6hjt@-@`ULSWNx zf)4Io{0hE&*jm4WOZE&E(j}5kMhHzIAjic>3`7$Wwd()31@6sr?mc%r5&-;T?z086 z=|sbQ&x-HE^KtE-hdcjm-SRPZl5~1`-KoH8eq9aa>>|HOwrf&E7RHif+s6lT&eiTQ zGh59UlH>*>ueUCh^NYI6Wtf>HnIyH%-)OREF!B@yzI*+7t<`*?DDZndd^JB$QdN84 zoKv2pUzQI500000000000KZ=FQEDoj?TumxjWR>-p)s}65oCSd6L@m(^663x9YrW`w|K#7gt)R3%I|%k<@)8 j2LJ#700000fIsX7D^!sPg4vV500000NkvXXu0mjf7kgDr literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/ears.rsi/long_ears_standard.png b/Resources/Textures/Mobs/Customization/ears.rsi/long_ears_standard.png new file mode 100644 index 0000000000000000000000000000000000000000..38d7137e61b3d457bc55880eb9ae2caa0b210bd5 GIT binary patch literal 686 zcmV;f0#W^mP)EX>4Tx04R}tkv&MmP!xqvQ^g_`1v`i+WT;MdQ4z;lg(6f4wL+^7CNKSiCJjl7 zi=*ILaPVib>fqw6tAnc`2>yULJ2)x2NQw6)g%&YBxV(?^-Z|WNA0RX;OtZS;fTr7K zI++l&xmB^}6(NK%Ks72e%b1g-6nxj$Jpz2ci}5V~dw;GzHE%H>AQH!!VcNtS#50?= z!FiuJ!b-AAd`>)JQiH^gTvt4P<6LxE;F%FKlb$Dz5R1hQRyvrKOpSP&II3zo)|5Tqat9cCGGtSBr6841C;;zg^i4Tn@D}J@^XAq%$LRx*p;@JFfP+I| zyhz#WKJN~7&h6hjt@-@`ULb7kh-rFMN+8^##XzBzY&+k|tKySq^5YLQpf z)^Bv_?4i-6S+YI=00000000000Q|Jx^Ybi@#Np@-o)K8nm|2EVvN-BJqhHfk<^!IK zU}pd}w*YmnCd~)zh6ep06h)edN-J5U$>u(RB28qamE4~_erx~$00000006i>0AZ`i U|6;tX>;M1&07*qoM6N<$f&!T?2LJ#7 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/ears.rsi/long_ears_tall.png b/Resources/Textures/Mobs/Customization/ears.rsi/long_ears_tall.png new file mode 100644 index 0000000000000000000000000000000000000000..f42a86613a91e271169c6539cca1b69bd1e56120 GIT binary patch literal 826 zcmV-A1I7G_P)EX>4Tx04R}tkv&MmP!xqvQ^g_`1v`i+WT;MdQ4z;lg(6f4wL+^7CNKSiCJjl7 zi=*ILaPVib>fqw6tAnc`2>yULJ2)x2NQw6)g%&YBxV(?^-Z|WNA0RX;OtZS;fTr7K zI++l&xmB^}6(NK%Ks72e%b1g-6nxj$Jpz2ci}5V~dw;GzHE%H>AQH!!VcNtS#50?= z!FiuJ!b-AAd`>)JQiH^gTvt4P<6LxE;F%FKlb$Dz5R1hQRyvrKOpSP&II3zo)|5Tqat9cCGGtSBr6841C;;zg^i4Tn@D}J@^XAq%$LRx*p;@JFfP+I| zyhz#WKJN~7&h6hjt@-@`UL?m{+ z>d?KPqAwpd#@)%q-629i2xRL?4+A}rr;CwTt#?Tyk^29wUha9x#pOAG=%g%8k;SQ$ zd`7Z3{TJ~803ss3Nn~*Z@CskVSvSW1ORCFx+mA> zzc0okL}7p^4E|hrai4at`|F-j80_NL6?^YH{QCHW&l}jTtNni{kH0;Q$4+Ra_${AB zok1VV=>!0jW2stBC+H0NwKgD+pUh{LaxyooHLNzuYU5oz;GXv%boJrs8SP#dxA%7kbNVJ5V70+!wMH_Z zc^6-*0Y5*7$CtN@YCwLCr%drgL_|bHL_|bHL_}BS8_B69Xc=)$qyPW_07*qoM6N<$ Ef=F$8X#fBK literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/ears.rsi/long_ears_thin.png b/Resources/Textures/Mobs/Customization/ears.rsi/long_ears_thin.png new file mode 100644 index 0000000000000000000000000000000000000000..a910e67f6d07167dd7bdcc25745d90da09a95c24 GIT binary patch literal 601 zcmV-f0;c_mP)EX>4Tx04R}tkv&MmP!xqvQ^g_`1v`i+WT;MdQ4z;lg(6f4wL+^7CNKSiCJjl7 zi=*ILaPVib>fqw6tAnc`2>yULJ2)x2NQw6)g%&YBxV(?^-Z|WNA0RX;OtZS;fTr7K zI++l&xmB^}6(NK%Ks72e%b1g-6nxj$Jpz2ci}5V~dw;GzHE%H>AQH!!VcNtS#50?= z!FiuJ!b-AAd`>)JQiH^gTvt4P<6LxE;F%FKlb$Dz5R1hQRyvrKOpSP&II3zo)|5Tqat9cCGGtSBr6841C;;zg^i4Tn@D}J@^XAq%$LRx*p;@JFfP+I| zyhz#WKJN~7&h6hjt@-@`UL>rFpo zZfx@b00000000=X?EbuK+K7nH_3v+Z{1*@rsi?}Vy_4J_*8@|;rGuZ&XFqd`$6Xz# n{UH{sW%8y0000000G>Dliy|+{59 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/ears.rsi/long_ears_upwards.png b/Resources/Textures/Mobs/Customization/ears.rsi/long_ears_upwards.png new file mode 100644 index 0000000000000000000000000000000000000000..8454708d9e41e25fcae454885b23a85f80053214 GIT binary patch literal 789 zcmV+w1M2*VP)EX>4Tx04R}tkv&MmP!xqvQ^g_`1v`i+WT;MdQ4z;lg(6f4wL+^7CNKSiCJjl7 zi=*ILaPVib>fqw6tAnc`2>yULJ2)x2NQw6)g%&YBxV(?^-Z|WNA0RX;OtZS;fTr7K zI++l&xmB^}6(NK%Ks72e%b1g-6nxj$Jpz2ci}5V~dw;GzHE%H>AQH!!VcNtS#50?= z!FiuJ!b-AAd`>)JQiH^gTvt4P<6LxE;F%FKlb$Dz5R1hQRyvrKOpSP&II3zo)|5Tqat9cCGGtSBr6841C;;zg^i4Tn@D}J@^XAq%$LRx*p;@JFfP+I| zyhz#WKJN~7&h6hjt@-@`UL#eG)o>TsHRYBl7zn^a&?*FZ|znA~>^!$3#!VmKU*ZFhIz;%xD zPtD%Dr@lYGq|Oc$b)7#0Y`&_>;U?Sf+T>5_6iw$diF{8)#8i};$oFJApLKcxZ2o4o zGx|vRN&A$p-)c00000006+n>E*rqz;m3m2+$EPzTdeOZ(((e7s2)h zG;L34)E{6~^$852Jf|l80hPBvd5}CwB@1Jdg|YP12-5mwW??K@7@IsvYcIa`Gr$g3 z^a#k+-K`nh39xgDe6LYwNTY?6Z->Xl%Tc4kkSE~d{jJf?0{{R300000aDjdRWC-8- TTJhfo00000NkvXXu0mjfU0HEx literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/ears.rsi/long_ears_wide.png b/Resources/Textures/Mobs/Customization/ears.rsi/long_ears_wide.png new file mode 100644 index 0000000000000000000000000000000000000000..2a643bf6c61c3eb38eddf9c80e635360a6a451ed GIT binary patch literal 675 zcmV;U0$lxxP)EX>4Tx04R}tkv&MmP!xqvQ^g_`1v`i+WT;MdQ4z;lg(6f4wL+^7CNKSiCJjl7 zi=*ILaPVib>fqw6tAnc`2>yULJ2)x2NQw6)g%&YBxV(?^-Z|WNA0RX;OtZS;fTr7K zI++l&xmB^}6(NK%Ks72e%b1g-6nxj$Jpz2ci}5V~dw;GzHE%H>AQH!!VcNtS#50?= z!FiuJ!b-AAd`>)JQiH^gTvt4P<6LxE;F%FKlb$Dz5R1hQRyvrKOpSP&II3zo)|5Tqat9cCGGtSBr6841C;;zg^i4Tn@D}J@^XAq%$LRx*p;@JFfP+I| zyhz#WKJN~7&h6hjt@-@`UL Date: Wed, 5 Feb 2025 16:50:11 +0000 Subject: [PATCH 097/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 62a8da8bd7..3569fe5ed0 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: Cockroaches and mothroaches can no longer damage things with their bites. - type: Tweak - id: 7406 - time: '2024-09-19T22:15:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32221 - author: PopGamer46 changes: - message: The rat king's rats now follow you instead of idling when there is no @@ -3902,3 +3895,12 @@ id: 7905 time: '2025-02-05T14:54:46.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34675 +- author: Farrellka + changes: + - message: Removed the old long ears for human! + type: Remove + - message: Added more long (elf) ears for human! + type: Add + id: 7906 + time: '2025-02-05T16:49:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33572 From 0d9f9e96159bee861c1214f4d3c0e6bbfb3fef9e Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Wed, 5 Feb 2025 11:48:28 -0800 Subject: [PATCH 098/313] Make hacking energy swords predicted (#34877) * Make hacking energy swords predicted * Fix up component, add dirty call * access * Dirty Entity * false --- .../Melee/EnergySword/EnergySwordComponent.cs | 28 ------------- .../Melee/EnergySword/EnergySwordComponent.cs | 40 +++++++++++++++++++ .../Melee/EnergySword/EnergySwordSystem.cs | 32 +++++++++------ 3 files changed, 59 insertions(+), 41 deletions(-) delete mode 100644 Content.Server/Weapons/Melee/EnergySword/EnergySwordComponent.cs create mode 100644 Content.Shared/Weapons/Melee/EnergySword/EnergySwordComponent.cs rename {Content.Server => Content.Shared}/Weapons/Melee/EnergySword/EnergySwordSystem.cs (53%) diff --git a/Content.Server/Weapons/Melee/EnergySword/EnergySwordComponent.cs b/Content.Server/Weapons/Melee/EnergySword/EnergySwordComponent.cs deleted file mode 100644 index 458c88af3e..0000000000 --- a/Content.Server/Weapons/Melee/EnergySword/EnergySwordComponent.cs +++ /dev/null @@ -1,28 +0,0 @@ -namespace Content.Server.Weapons.Melee.EnergySword; - -[RegisterComponent] -internal sealed partial class EnergySwordComponent : Component -{ - [ViewVariables(VVAccess.ReadWrite), DataField("activatedColor"), AutoNetworkedField] - public Color ActivatedColor = Color.DodgerBlue; - - /// - /// A color option list for the random color picker. - /// - [DataField("colorOptions")] - public List ColorOptions = new() - { - Color.Tomato, - Color.DodgerBlue, - Color.Aqua, - Color.MediumSpringGreen, - Color.MediumOrchid - }; - - public bool Hacked = false; - /// - /// RGB cycle rate for hacked e-swords. - /// - [DataField("cycleRate")] - public float CycleRate = 1f; -} diff --git a/Content.Shared/Weapons/Melee/EnergySword/EnergySwordComponent.cs b/Content.Shared/Weapons/Melee/EnergySword/EnergySwordComponent.cs new file mode 100644 index 0000000000..ba84acb617 --- /dev/null +++ b/Content.Shared/Weapons/Melee/EnergySword/EnergySwordComponent.cs @@ -0,0 +1,40 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Weapons.Melee.EnergySword; + +[RegisterComponent, NetworkedComponent, Access(typeof(EnergySwordSystem))] +[AutoGenerateComponentState] +public sealed partial class EnergySwordComponent : Component +{ + /// + /// What color the blade will be when activated. + /// + [DataField, AutoNetworkedField] + public Color ActivatedColor = Color.DodgerBlue; + + /// + /// A color option list for the random color picker. + /// + [DataField] + public List ColorOptions = new() + { + Color.Tomato, + Color.DodgerBlue, + Color.Aqua, + Color.MediumSpringGreen, + Color.MediumOrchid + }; + + /// + /// Whether the energy sword has been pulsed by a multitool, + /// causing the blade to cycle RGB colors. + /// + [DataField, AutoNetworkedField] + public bool Hacked; + + /// + /// RGB cycle rate for hacked e-swords. + /// + [DataField] + public float CycleRate = 1f; +} diff --git a/Content.Server/Weapons/Melee/EnergySword/EnergySwordSystem.cs b/Content.Shared/Weapons/Melee/EnergySword/EnergySwordSystem.cs similarity index 53% rename from Content.Server/Weapons/Melee/EnergySword/EnergySwordSystem.cs rename to Content.Shared/Weapons/Melee/EnergySword/EnergySwordSystem.cs index c9be87c623..7ca3de9cc5 100644 --- a/Content.Server/Weapons/Melee/EnergySword/EnergySwordSystem.cs +++ b/Content.Shared/Weapons/Melee/EnergySword/EnergySwordSystem.cs @@ -5,7 +5,7 @@ using Content.Shared.Toggleable; using Content.Shared.Tools.Systems; using Robust.Shared.Random; -namespace Content.Server.Weapons.Melee.EnergySword; +namespace Content.Shared.Weapons.Melee.EnergySword; public sealed class EnergySwordSystem : EntitySystem { @@ -22,18 +22,22 @@ public sealed class EnergySwordSystem : EntitySystem SubscribeLocalEvent(OnInteractUsing); } // Used to pick a random color for the blade on map init. - private void OnMapInit(EntityUid uid, EnergySwordComponent comp, MapInitEvent args) + private void OnMapInit(Entity entity, ref MapInitEvent args) { - if (comp.ColorOptions.Count != 0) - comp.ActivatedColor = _random.Pick(comp.ColorOptions); + if (entity.Comp.ColorOptions.Count != 0) + { + entity.Comp.ActivatedColor = _random.Pick(entity.Comp.ColorOptions); + Dirty(entity); + } - if (!TryComp(uid, out AppearanceComponent? appearanceComponent)) + if (!TryComp(entity, out AppearanceComponent? appearanceComponent)) return; - _appearance.SetData(uid, ToggleableLightVisuals.Color, comp.ActivatedColor, appearanceComponent); + + _appearance.SetData(entity, ToggleableLightVisuals.Color, entity.Comp.ActivatedColor, appearanceComponent); } - // Used to make the make the blade multicolored when using a multitool on it. - private void OnInteractUsing(EntityUid uid, EnergySwordComponent comp, InteractUsingEvent args) + // Used to make the blade multicolored when using a multitool on it. + private void OnInteractUsing(Entity entity, ref InteractUsingEvent args) { if (args.Handled) return; @@ -42,14 +46,16 @@ public sealed class EnergySwordSystem : EntitySystem return; args.Handled = true; - comp.Hacked = !comp.Hacked; + entity.Comp.Hacked = !entity.Comp.Hacked; - if (comp.Hacked) + if (entity.Comp.Hacked) { - var rgb = EnsureComp(uid); - _rgbSystem.SetCycleRate(uid, comp.CycleRate, rgb); + var rgb = EnsureComp(entity); + _rgbSystem.SetCycleRate(entity, entity.Comp.CycleRate, rgb); } else - RemComp(uid); + RemComp(entity); + + Dirty(entity); } } From f96490875631e9a94ebfd4aedc8de7b396941c85 Mon Sep 17 00:00:00 2001 From: keronshb <54602815+keronshb@users.noreply.github.com> Date: Wed, 5 Feb 2025 18:12:07 -0500 Subject: [PATCH 099/313] Sec Balance Part 1: Buffs Disabler and Disabler SMG (#34890) * Increases Disabler Bolt to 47 stamina damage per. Increases fire rate to 3 and lowers shot cost by 50 for practice and disabler * lowers stam per shot to 40 * increases disabler proj speed to 35 * ACTUALLY 4 shot * Reverts disabler projectile to be 33 stamina damage per again. decreased disabler fire rate to 2.5 and increased projectile speed to 35. decrease disabler smg fire rate to 3.5 * Fire rate back down to 2 --- .../Objects/Weapons/Guns/Battery/battery_guns.yml | 9 +++++---- .../Objects/Weapons/Guns/Projectiles/projectiles.yml | 4 ++-- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml index a270f16191..28cfe6b1a9 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -434,11 +434,12 @@ price: 100 - type: Gun fireRate: 2 + projectileSpeed: 35 # any higher and this causes issues in lag soundGunshot: path: /Audio/Weapons/Guns/Gunshots/taser2.ogg - type: ProjectileBatteryAmmoProvider proto: BulletDisablerPractice - fireCost: 100 + fireCost: 50 - type: Tag tags: - Taser @@ -466,7 +467,7 @@ - Belt - type: ProjectileBatteryAmmoProvider proto: BulletDisabler - fireCost: 100 + fireCost: 50 - type: GuideHelp guides: - Security @@ -493,7 +494,7 @@ shader: unshaded - type: Gun selectedMode: FullAuto - fireRate: 4 + fireRate: 4.5 availableModes: - SemiAuto - FullAuto @@ -501,7 +502,7 @@ path: /Audio/Weapons/Guns/Gunshots/taser2.ogg - type: ProjectileBatteryAmmoProvider proto: BulletDisablerSmg - fireCost: 33 + fireCost: 25 - type: MagazineVisuals magState: mag steps: 5 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml index 7d11dffbfa..9f34a1c5d1 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml @@ -229,7 +229,7 @@ fly-by: *flybyfixture - type: Ammo - type: StaminaDamageOnCollide - damage: 30 + damage: 33 - type: Projectile impactEffect: BulletImpactEffectDisabler damage: @@ -1051,4 +1051,4 @@ - type: ProjectileSpread proto: BulletDisablerSmg count: 3 #bit stronger than a disabler if you hit your shots you goober, still not a 2 hit stun though - spread: 9 \ No newline at end of file + spread: 9 From 3a3268bad36520f26199ff04c95ab79480a019c1 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 5 Feb 2025 23:13:15 +0000 Subject: [PATCH 100/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 3569fe5ed0..2496849770 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: PopGamer46 - changes: - - message: The rat king's rats now follow you instead of idling when there is no - one to attack during the CheeseEm order - type: Tweak - id: 7407 - time: '2024-09-19T23:27:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32181 - author: JIPDawg changes: - message: Small Hydraulic clamp now correctly consumes 2% battery instead of recharging @@ -3904,3 +3896,12 @@ id: 7906 time: '2025-02-05T16:49:04.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33572 +- author: keronshb + changes: + - message: Disabler - decreased fire cost, increased projectile speed. + type: Tweak + - message: Disabler SMG - decreased fire cost, increased fire rate. + type: Tweak + id: 7907 + time: '2025-02-05T23:12:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34890 From 0c2baf91f3e44c09b6713dcd14a863fd1050ebb3 Mon Sep 17 00:00:00 2001 From: Vasilis The Pikachu Date: Thu, 6 Feb 2025 01:18:03 +0100 Subject: [PATCH 101/313] Update engine properly --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index f8410a4674..ee906af16e 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit f8410a4674a4978fcea3fd267c6fb26b2ba6e7de +Subproject commit ee906af16e136c7e09930d88872ab9bba3137c8e From 001d61c6d5999e6d66ad4824ef547acdc6be02ce Mon Sep 17 00:00:00 2001 From: Palladinium Date: Thu, 6 Feb 2025 16:10:21 +1100 Subject: [PATCH 102/313] Add air alarm admin logs (#33426) --- .../Atmos/Monitor/Systems/AirAlarmSystem.cs | 20 +++++ .../Monitor/Systems/AtmosMonitoringSystem.cs | 56 ++++++++++++++ .../Unary/EntitySystems/GasVentPumpSystem.cs | 41 ++++++++++ .../EntitySystems/GasVentScrubberSystem.cs | 40 ++++++++++ Content.Shared.Database/LogType.cs | 5 ++ .../Atmos/Monitor/AtmosAlarmThreshold.cs | 75 ++++++++++++++++++- 6 files changed, 236 insertions(+), 1 deletion(-) diff --git a/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs b/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs index 63dbb19a57..0ed91a9bc8 100644 --- a/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs +++ b/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs @@ -9,10 +9,12 @@ using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; using Content.Shared.Access.Components; using Content.Shared.Access.Systems; +using Content.Shared.Administration.Logs; using Content.Shared.Atmos; using Content.Shared.Atmos.Monitor; using Content.Shared.Atmos.Monitor.Components; using Content.Shared.Atmos.Piping.Unary.Components; +using Content.Shared.Database; using Content.Shared.DeviceLinking; using Content.Shared.DeviceNetwork; using Content.Shared.DeviceNetwork.Systems; @@ -37,6 +39,7 @@ namespace Content.Server.Atmos.Monitor.Systems; public sealed class AirAlarmSystem : EntitySystem { [Dependency] private readonly AccessReaderSystem _access = default!; + [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly AtmosAlarmableSystem _atmosAlarmable = default!; [Dependency] private readonly AtmosDeviceNetworkSystem _atmosDevNet = default!; [Dependency] private readonly DeviceNetworkSystem _deviceNet = default!; @@ -296,6 +299,7 @@ public sealed class AirAlarmSystem : EntitySystem addr = netConn.Address; } + _adminLogger.Add(LogType.AtmosDeviceSetting, LogImpact.Medium, $"{ToPrettyString(args.Actor)} changed {ToPrettyString(uid)} mode to {args.Mode}"); SetMode(uid, addr, args.Mode, false); } else @@ -307,15 +311,26 @@ public sealed class AirAlarmSystem : EntitySystem private void OnUpdateAutoMode(EntityUid uid, AirAlarmComponent component, AirAlarmUpdateAutoModeMessage args) { component.AutoMode = args.Enabled; + + _adminLogger.Add(LogType.AtmosDeviceSetting, LogImpact.Medium, $"{ToPrettyString(args.Actor)} changed {ToPrettyString(uid)} auto mode to {args.Enabled}"); UpdateUI(uid, component); } private void OnUpdateThreshold(EntityUid uid, AirAlarmComponent component, AirAlarmUpdateAlarmThresholdMessage args) { if (AccessCheck(uid, args.Actor, component)) + { + if (args.Gas != null) + _adminLogger.Add(LogType.AtmosDeviceSetting, LogImpact.Medium, $"{ToPrettyString(args.Actor)} changed {args.Address} {args.Gas} {args.Type} threshold using {ToPrettyString(uid)}"); + else + _adminLogger.Add(LogType.AtmosDeviceSetting, LogImpact.Medium, $"{ToPrettyString(args.Actor)} changed {args.Address} {args.Type} threshold using {ToPrettyString(uid)}"); + SetThreshold(uid, args.Address, args.Type, args.Threshold, args.Gas); + } else + { UpdateUI(uid, component); + } } private void OnUpdateDeviceData(EntityUid uid, AirAlarmComponent component, AirAlarmUpdateDeviceDataMessage args) @@ -323,6 +338,8 @@ public sealed class AirAlarmSystem : EntitySystem if (AccessCheck(uid, args.Actor, component) && _deviceList.ExistsInDeviceList(uid, args.Address)) { + _adminLogger.Add(LogType.AtmosDeviceSetting, LogImpact.Medium, $"{ToPrettyString(args.Actor)} changed {args.Address} settings using {ToPrettyString(uid)}"); + SetDeviceData(uid, args.Address, args.Data); } else @@ -344,6 +361,7 @@ public sealed class AirAlarmSystem : EntitySystem case GasVentPumpData ventData: foreach (string addr in component.VentData.Keys) { + _adminLogger.Add(LogType.AtmosDeviceSetting, LogImpact.Medium, $"{ToPrettyString(args.Actor)} copied settings to vent {addr}"); SetData(uid, addr, args.Data); } break; @@ -351,6 +369,7 @@ public sealed class AirAlarmSystem : EntitySystem case GasVentScrubberData scrubberData: foreach (string addr in component.ScrubberData.Keys) { + _adminLogger.Add(LogType.AtmosDeviceSetting, LogImpact.Medium, $"{ToPrettyString(args.Actor)} copied settings to scrubber {addr}"); SetData(uid, addr, args.Data); } break; @@ -379,6 +398,7 @@ public sealed class AirAlarmSystem : EntitySystem if (!_access.IsAllowed(user.Value, uid, reader)) { _popup.PopupEntity(Loc.GetString("air-alarm-ui-access-denied"), user.Value, user.Value); + _adminLogger.Add(LogType.AtmosDeviceSetting, LogImpact.Low, $"{ToPrettyString(user)} attempted to access {ToPrettyString(uid)} without access"); return false; } diff --git a/Content.Server/Atmos/Monitor/Systems/AtmosMonitoringSystem.cs b/Content.Server/Atmos/Monitor/Systems/AtmosMonitoringSystem.cs index 3805c012b7..99cf0109bb 100644 --- a/Content.Server/Atmos/Monitor/Systems/AtmosMonitoringSystem.cs +++ b/Content.Server/Atmos/Monitor/Systems/AtmosMonitoringSystem.cs @@ -9,9 +9,11 @@ using Content.Server.NodeContainer.EntitySystems; using Content.Server.NodeContainer.Nodes; using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; +using Content.Shared.Administration.Logs; using Content.Shared.Atmos; using Content.Shared.Atmos.Monitor; using Content.Shared.Atmos.Piping.Components; +using Content.Shared.Database; using Content.Shared.DeviceNetwork; using Content.Shared.Power; using Content.Shared.Tag; @@ -25,6 +27,7 @@ namespace Content.Server.Atmos.Monitor.Systems; // a danger), and atmos (which triggers based on set thresholds). public sealed class AtmosMonitorSystem : EntitySystem { + [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; [Dependency] private readonly AtmosDeviceSystem _atmosDeviceSystem = default!; [Dependency] private readonly DeviceNetworkSystem _deviceNetSystem = default!; @@ -393,21 +396,74 @@ public sealed class AtmosMonitorSystem : EntitySystem if (!Resolve(uid, ref monitor)) return; + // Used for logging after the switch statement + string logPrefix = ""; + string logValueSuffix = ""; + AtmosAlarmThreshold? logPreviousThreshold = null; + switch (type) { case AtmosMonitorThresholdType.Pressure: + logPrefix = "pressure"; + logValueSuffix = "kPa"; + logPreviousThreshold = monitor.PressureThreshold; + monitor.PressureThreshold = threshold; break; case AtmosMonitorThresholdType.Temperature: + logPrefix = "temperature"; + logValueSuffix = "K"; + logPreviousThreshold = monitor.TemperatureThreshold; + monitor.TemperatureThreshold = threshold; break; case AtmosMonitorThresholdType.Gas: if (gas == null || monitor.GasThresholds == null) return; + + logPrefix = ((Gas) gas).ToString(); + logValueSuffix = "kPa"; + monitor.GasThresholds.TryGetValue((Gas) gas, out logPreviousThreshold); + monitor.GasThresholds[(Gas) gas] = threshold; break; } + // Admin log each change separately rather than logging the whole state + if (logPreviousThreshold != null) + { + if (threshold.Ignore != logPreviousThreshold.Ignore) + { + string enabled = threshold.Ignore ? "disabled" : "enabled"; + _adminLogger.Add( + LogType.AtmosDeviceSetting, + LogImpact.Medium, + $"{ToPrettyString(uid)} {logPrefix} thresholds {enabled}" + ); + } + + foreach (var change in threshold.GetChanges(logPreviousThreshold)) + { + if (change.Current.Enabled != change.Previous?.Enabled) + { + string enabled = change.Current.Enabled ? "enabled" : "disabled"; + _adminLogger.Add( + LogType.AtmosDeviceSetting, + LogImpact.Medium, + $"{ToPrettyString(uid)} {logPrefix} {change.Type} {enabled}" + ); + } + + if (change.Current.Value != change.Previous?.Value) + { + _adminLogger.Add( + LogType.AtmosDeviceSetting, + LogImpact.Medium, + $"{ToPrettyString(uid)} {logPrefix} {change.Type} changed from {change.Previous?.Value} {logValueSuffix} to {change.Current.Value} {logValueSuffix}" + ); + } + } + } } /// diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs index 23016debeb..c58d6eb14b 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs @@ -9,6 +9,7 @@ using Content.Server.DeviceNetwork.Components; using Content.Server.DeviceNetwork.Systems; using Content.Server.NodeContainer.EntitySystems; using Content.Server.NodeContainer.Nodes; +using Content.Shared.Administration.Logs; using Content.Shared.Atmos; using Content.Shared.Atmos.Monitor; using Content.Shared.Atmos.Piping.Components; @@ -16,6 +17,7 @@ using Content.Shared.Atmos.Piping.Unary; using Content.Shared.Atmos.Piping.Unary.Components; using Content.Shared.Atmos.Visuals; using Content.Shared.Audio; +using Content.Shared.Database; using Content.Shared.DeviceNetwork; using Content.Shared.DoAfter; using Content.Shared.Examine; @@ -30,6 +32,7 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems [UsedImplicitly] public sealed class GasVentPumpSystem : EntitySystem { + [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; [Dependency] private readonly DeviceNetworkSystem _deviceNetSystem = default!; [Dependency] private readonly DeviceLinkSystem _signalSystem = default!; @@ -232,6 +235,44 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems if (!args.Data.TryGetValue(DeviceNetworkConstants.CmdSetState, out GasVentPumpData? setData)) break; + var previous = component.ToAirAlarmData(); + + if (previous.Enabled != setData.Enabled) + { + string enabled = setData.Enabled ? "enabled" : "disabled" ; + _adminLogger.Add(LogType.AtmosDeviceSetting, LogImpact.Medium, $"{ToPrettyString(uid)} {enabled}"); + } + + if (previous.PumpDirection != setData.PumpDirection) + _adminLogger.Add(LogType.AtmosDeviceSetting, LogImpact.Medium, $"{ToPrettyString(uid)} direction changed to {setData.PumpDirection}"); + + if (previous.PressureChecks != setData.PressureChecks) + _adminLogger.Add(LogType.AtmosDeviceSetting, LogImpact.Medium, $"{ToPrettyString(uid)} pressure check changed to {setData.PressureChecks}"); + + if (previous.ExternalPressureBound != setData.ExternalPressureBound) + { + _adminLogger.Add( + LogType.AtmosDeviceSetting, + LogImpact.Medium, + $"{ToPrettyString(uid)} external pressure bound changed from {previous.ExternalPressureBound} kPa to {setData.ExternalPressureBound} kPa" + ); + } + + if (previous.InternalPressureBound != setData.InternalPressureBound) + { + _adminLogger.Add( + LogType.AtmosDeviceSetting, + LogImpact.Medium, + $"{ToPrettyString(uid)} internal pressure bound changed from {previous.InternalPressureBound} kPa to {setData.InternalPressureBound} kPa" + ); + } + + if (previous.PressureLockoutOverride != setData.PressureLockoutOverride) + { + string enabled = setData.PressureLockoutOverride ? "enabled" : "disabled" ; + _adminLogger.Add(LogType.AtmosDeviceSetting, LogImpact.Medium, $"{ToPrettyString(uid)} pressure lockout override {enabled}"); + } + component.FromAirAlarmData(setData); UpdateState(uid, component); diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs index a633d29e41..0207535398 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs @@ -10,12 +10,14 @@ using Content.Server.NodeContainer; using Content.Server.NodeContainer.EntitySystems; using Content.Server.NodeContainer.Nodes; using Content.Server.Power.Components; +using Content.Shared.Administration.Logs; using Content.Shared.Atmos; using Content.Shared.Atmos.Piping.Unary.Visuals; using Content.Shared.Atmos.Monitor; using Content.Shared.Atmos.Piping.Components; using Content.Shared.Atmos.Piping.Unary.Components; using Content.Shared.Audio; +using Content.Shared.Database; using Content.Shared.DeviceNetwork; using Content.Shared.Power; using Content.Shared.Tools.Systems; @@ -27,6 +29,7 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems [UsedImplicitly] public sealed class GasVentScrubberSystem : EntitySystem { + [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; [Dependency] private readonly DeviceNetworkSystem _deviceNetSystem = default!; [Dependency] private readonly NodeContainerSystem _nodeContainer = default!; @@ -163,6 +166,43 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems if (!args.Data.TryGetValue(DeviceNetworkConstants.CmdSetState, out GasVentScrubberData? setData)) break; + var previous = component.ToAirAlarmData(); + + if (previous.Enabled != setData.Enabled) + { + string enabled = setData.Enabled ? "enabled" : "disabled" ; + _adminLogger.Add(LogType.AtmosDeviceSetting, LogImpact.Medium, $"{ToPrettyString(uid)} {enabled}"); + } + + // TODO: IgnoreAlarms? + + if (previous.PumpDirection != setData.PumpDirection) + _adminLogger.Add(LogType.AtmosDeviceSetting, LogImpact.Medium, $"{ToPrettyString(uid)} direction changed to {setData.PumpDirection}"); + + // TODO: This is iterating through both sets, it could probably be faster but they're both really small sets anyways + foreach (Gas gas in previous.FilterGases) + if (!setData.FilterGases.Contains(gas)) + _adminLogger.Add(LogType.AtmosDeviceSetting, LogImpact.Medium, $"{ToPrettyString(uid)} {gas} filtering disabled"); + + foreach (Gas gas in setData.FilterGases) + if (!previous.FilterGases.Contains(gas)) + _adminLogger.Add(LogType.AtmosDeviceSetting, LogImpact.Medium, $"{ToPrettyString(uid)} {gas} filtering enabled"); + + if (previous.VolumeRate != setData.VolumeRate) + { + _adminLogger.Add( + LogType.AtmosDeviceSetting, + LogImpact.Medium, + $"{ToPrettyString(uid)} volume rate changed from {previous.VolumeRate} L to {setData.VolumeRate} L" + ); + } + + if (previous.WideNet != setData.WideNet) + { + string enabled = setData.WideNet ? "enabled" : "disabled" ; + _adminLogger.Add(LogType.AtmosDeviceSetting, LogImpact.Medium, $"{ToPrettyString(uid)} WideNet {enabled}"); + } + component.FromAirAlarmData(setData); UpdateState(uid, component); diff --git a/Content.Shared.Database/LogType.cs b/Content.Shared.Database/LogType.cs index 1bbaa96223..c2896b33be 100644 --- a/Content.Shared.Database/LogType.cs +++ b/Content.Shared.Database/LogType.cs @@ -444,4 +444,9 @@ public enum LogType /// A player interacted with a PDA or its cartridge component /// PdaInteract = 96, + + /// + /// An atmos networked device (such as a vent or pump) has had its settings changed, usually through an air alarm + /// + AtmosDeviceSetting = 97, } diff --git a/Content.Shared/Atmos/Monitor/AtmosAlarmThreshold.cs b/Content.Shared/Atmos/Monitor/AtmosAlarmThreshold.cs index c37c70a3ab..f80a887b4f 100644 --- a/Content.Shared/Atmos/Monitor/AtmosAlarmThreshold.cs +++ b/Content.Shared/Atmos/Monitor/AtmosAlarmThreshold.cs @@ -253,10 +253,57 @@ public sealed partial class AtmosAlarmThreshold break; } } + + /// + /// Iterates through the changes that these threshold settings would make from a + /// previous instance. Basically, diffs the two settings. + /// + public IEnumerable GetChanges(AtmosAlarmThreshold previous) + { + if (LowerBound != previous.LowerBound) + yield return new AtmosAlarmThresholdChange(AtmosMonitorLimitType.LowerDanger, previous.LowerBound, LowerBound); + + if (LowerWarningBound != previous.LowerWarningBound) + yield return new AtmosAlarmThresholdChange(AtmosMonitorLimitType.LowerWarning, previous.LowerWarningBound, LowerWarningBound); + + if (UpperBound != previous.UpperBound) + yield return new AtmosAlarmThresholdChange(AtmosMonitorLimitType.UpperDanger, previous.UpperBound, UpperBound); + + if (UpperWarningBound != previous.UpperWarningBound) + yield return new AtmosAlarmThresholdChange(AtmosMonitorLimitType.UpperWarning, previous.UpperWarningBound, UpperWarningBound); + } +} + +/// +/// A change of a single value between two AtmosAlarmThreshold, for a given AtmosMonitorLimitType +/// +public readonly struct AtmosAlarmThresholdChange +{ + /// + /// The type of change between the two threshold sets + /// + public readonly AtmosMonitorLimitType Type; + + /// + /// The value in the old threshold set + /// + public readonly AlarmThresholdSetting? Previous; + + /// + /// The value in the new threshold set + /// + public readonly AlarmThresholdSetting Current; + + public AtmosAlarmThresholdChange(AtmosMonitorLimitType type, AlarmThresholdSetting? previous, AlarmThresholdSetting current) + { + Type = type; + Previous = previous; + Current = current; + } } [DataDefinition, Serializable] -public readonly partial struct AlarmThresholdSetting +public readonly partial struct AlarmThresholdSetting: IEquatable { [DataField("enabled")] public bool Enabled { get; init; } = true; @@ -289,6 +336,32 @@ public readonly partial struct AlarmThresholdSetting { return this with {Enabled = enabled}; } + + public bool Equals(AlarmThresholdSetting other) + { + if (Enabled != other.Enabled) + return false; + + if (Value != other.Value) + return false; + + return true; + } + + public static bool operator ==(AlarmThresholdSetting lhs, AlarmThresholdSetting rhs) + { + return lhs.Equals(rhs); + } + + public static bool operator !=(AlarmThresholdSetting lhs, AlarmThresholdSetting rhs) + { + return !lhs.Equals(rhs); + } + + public override int GetHashCode() + { + return HashCode.Combine(Enabled, Value); + } } public enum AtmosMonitorThresholdBound From 43da2cc31ff00118146c918766416a420c40a1d9 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 6 Feb 2025 05:11:29 +0000 Subject: [PATCH 103/313] Automatic changelog update --- Resources/Changelog/Admin.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 5badea1abe..6b380572b0 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -744,5 +744,13 @@ Entries: id: 92 time: '2025-02-02T20:00:27.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34824 +- author: Palladinium + changes: + - message: Added atmospherics device information (air alarms, vents, scrubbers) + to admin logs + type: Add + id: 93 + time: '2025-02-06T05:10:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33426 Name: Admin Order: 1 From a0fe21ac2f890922677e10760b15301b1edd7ad7 Mon Sep 17 00:00:00 2001 From: centcomofficer24 Date: Thu, 6 Feb 2025 05:49:41 +0000 Subject: [PATCH 104/313] Added Genderqueer pin! (Properly this time.) (#34561) * Added Genderqueer pin! (Properly this time.) * Update meta.json --- .../Catalog/VendingMachines/Inventories/pride.yml | 1 + .../Prototypes/Entities/Clothing/Neck/pins.yml | 11 +++++++++++ .../Markers/Spawners/Random/maintenance.yml | 1 + .../Loadouts/Miscellaneous/trinkets.yml | 6 ++++++ Resources/Prototypes/Loadouts/loadout_groups.yml | 1 + .../Neck/Misc/pins.rsi/gender-equipped-NECK.png | Bin 0 -> 327 bytes .../Clothing/Neck/Misc/pins.rsi/gender.png | Bin 0 -> 273 bytes .../Clothing/Neck/Misc/pins.rsi/meta.json | 9 ++++++++- 8 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 Resources/Textures/Clothing/Neck/Misc/pins.rsi/gender-equipped-NECK.png create mode 100644 Resources/Textures/Clothing/Neck/Misc/pins.rsi/gender.png diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/pride.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/pride.yml index 5b99555c3b..5dcdce41dd 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/pride.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/pride.yml @@ -11,6 +11,7 @@ ClothingNeckNonBinaryPin: 3 ClothingNeckPansexualPin: 3 ClothingNeckOmnisexualPin: 3 + ClothingNeckGenderqueerPin: 3 ClothingNeckTransPin: 3 ClothingNeckAutismPin: 3 ClothingNeckGoldAutismPin: 3 diff --git a/Resources/Prototypes/Entities/Clothing/Neck/pins.yml b/Resources/Prototypes/Entities/Clothing/Neck/pins.yml index 155bb9a82f..a402791f5a 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/pins.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/pins.yml @@ -122,6 +122,17 @@ - type: Clothing equippedPrefix: omni +- type: entity + parent: ClothingNeckPinBase + id: ClothingNeckGenderqueerPin + name: genderqueer pin + description: be crime, do gender + components: + - type: Sprite + state: gender + - type: Clothing + equippedPrefix: gender + - type: entity parent: ClothingNeckPinBase id: ClothingNeckTransPin diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml index 0ff3c2776c..a6b2324792 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml @@ -150,6 +150,7 @@ - id: ClothingNeckNonBinaryPin - id: ClothingNeckPansexualPin - id: ClothingNeckOmnisexualPin + - id: ClothingNeckGenderqueerPin - id: ClothingNeckTransPin - id: ClothingNeckAutismPin - id: ClothingNeckGoldAutismPin diff --git a/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml b/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml index 8e998d602f..5abc708afd 100644 --- a/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml +++ b/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml @@ -160,6 +160,12 @@ back: - ClothingNeckOmnisexualPin +- type: loadout + id: ClothingNeckGenderqueerPin + storage: + back: + - ClothingNeckGenderqueerPin + - type: loadout id: ClothingNeckTransPin storage: diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml index b35fcef66f..ba76e8a1ee 100644 --- a/Resources/Prototypes/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/Loadouts/loadout_groups.yml @@ -28,6 +28,7 @@ - ClothingNeckNonBinaryPin - ClothingNeckPansexualPin - ClothingNeckOmnisexualPin + - ClothingNeckGenderqueerPin - ClothingNeckTransPin - ClothingNeckAutismPin - ClothingNeckGoldAutismPin diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/gender-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/gender-equipped-NECK.png new file mode 100644 index 0000000000000000000000000000000000000000..b61709256750cfd963c750d40fb608ab7603af06 GIT binary patch literal 327 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVC405aSW-5dpp%p@Q{N5i#bz8 zq1c2%O_>kRoB3HDH2eRvSWslNK_HI9!sSlLs%6`h6O6umY15o!AN=XQJi~#8CoC3? zPnbRkf@v_j=RfzJ`1${CEAgp5s|U-p*JyxsyA&L1IO$4BHJ~ uHN76jqy=S#5((xrcNkDt@tk`N_WX4sjz>=l90i6CgQu&X%Q~loCI$dP1b^iK literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/gender.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/gender.png new file mode 100644 index 0000000000000000000000000000000000000000..10680e55ff2afbce6e717b757cba1a1ae1fcf996 GIT binary patch literal 273 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJ>z*!-ArbD$DG~_>EDn4#?y*WR zVR3T?5^Z@LGB+xI+ZSoRda&MWTDr%zmYk2X-38P;PAJZCTIGDAh~Z39nO?_H`~8YC zPQmOAHT;`o(hRFy*@`$cOgsu%JQWLGTv+&j+qP{L+7}MD^Bdo|c~dY~?;@AuHohIq zNnASrx=(*H*y~yC{ M>gTe~DWQo00O{pn!2kdN literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json index bb1013b21a..78cf15fc4e 100644 --- a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "PixelTK leaves his mark on upstream, BackeTako made the gay, autism pins by Terraspark, omnisexual pin by juliangiebel", + "copyright": "PixelTK leaves his mark on upstream, BackeTako made the gay, autism pins by Terraspark, omnisexual pin by juliangiebel, genderqueer by centcomofficer24", "size": { "x": 32, "y": 32 @@ -97,6 +97,13 @@ { "name": "omni-equipped-NECK", "directions": 4 + }, + { + "name": "gender" + }, + { + "name": "gender-equipped-NECK", + "directions": 4 } ] } From 6d2e0f57c1b4d08fa9d41bca1ed77894d216bef9 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 6 Feb 2025 05:50:48 +0000 Subject: [PATCH 105/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 2496849770..e30745b0ad 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: JIPDawg - changes: - - message: Small Hydraulic clamp now correctly consumes 2% battery instead of recharging - the battery by 2% - type: Fix - id: 7408 - time: '2024-09-20T04:09:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32320 - author: clinux changes: - message: Added the psychologist's stamp. Prescribe treatments for your less mentally @@ -3905,3 +3897,10 @@ id: 7907 time: '2025-02-05T23:12:07.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34890 +- author: centcomofficer24 + changes: + - message: Added a genderqueer pin! + type: Add + id: 7908 + time: '2025-02-06T05:49:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34561 From 4cc5b5bec18bfb3a45cd31735797280b2be5d21d Mon Sep 17 00:00:00 2001 From: Emisse <99158783+Emisse@users.noreply.github.com> Date: Thu, 6 Feb 2025 01:38:08 -0700 Subject: [PATCH 106/313] bagel fix hos locker (#34919) bagel update --- Resources/Maps/bagel.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index c41d254048..913d49ed3a 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -111143,7 +111143,7 @@ entities: showEnts: False occludes: True ent: null -- proto: LockerHeadOfSecurityFilled +- proto: LockerHeadOfSecurityFilledHardsuit entities: - uid: 5456 components: From 16aad5a16871192d8b451aa9b7ec950e7c5a9bfb Mon Sep 17 00:00:00 2001 From: SG6732 <151011904+SG6732@users.noreply.github.com> Date: Thu, 6 Feb 2025 20:45:33 +0900 Subject: [PATCH 107/313] Swapped butter w/ olive oil for making spaghetti (#34904) * > Swapped the butter in boiled spaghetti with olive oil * Update meal_recipes.yml --------- Co-authored-by: beck-thompson <107373427+beck-thompson@users.noreply.github.com> --- Resources/Prototypes/Recipes/Cooking/meal_recipes.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index abfd0fd321..a33f78cac2 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -660,8 +660,7 @@ reagents: Flour: 15 Egg: 6 - solids: - FoodButter: 1 + OilOlive: 5 - type: microwaveMealRecipe id: RecipePastaTomato From 5020cfac5cb37ae81a34ed76df74682e55769760 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 6 Feb 2025 11:46:42 +0000 Subject: [PATCH 108/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e30745b0ad..e64f0ba51c 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: clinux - changes: - - message: Added the psychologist's stamp. Prescribe treatments for your less mentally - sane crew! - type: Add - id: 7409 - time: '2024-09-20T14:42:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31881 - author: saga3152 changes: - message: You can now make vodka and soda water. @@ -3904,3 +3896,11 @@ id: 7908 time: '2025-02-06T05:49:41.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34561 +- author: SG6732 + changes: + - message: Swapped the stick of butter with 5 u of olive oil in the boiled spaghetti + recipe. + type: Tweak + id: 7909 + time: '2025-02-06T11:45:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34904 From e675ea42735a842fa8d9d1145f37eeb12ccc167c Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Thu, 6 Feb 2025 13:45:13 +0000 Subject: [PATCH 109/313] hide icons for invisible entities (#34825) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Content.Client/StatusIcon/StatusIconSystem.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Content.Client/StatusIcon/StatusIconSystem.cs b/Content.Client/StatusIcon/StatusIconSystem.cs index 63f5776769..50128baf5f 100644 --- a/Content.Client/StatusIcon/StatusIconSystem.cs +++ b/Content.Client/StatusIcon/StatusIconSystem.cs @@ -4,6 +4,7 @@ using Content.Shared.StatusIcon; using Content.Shared.StatusIcon.Components; using Content.Shared.Stealth.Components; using Content.Shared.Whitelist; +using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.Player; using Robust.Shared.Configuration; @@ -85,6 +86,9 @@ public sealed class StatusIconSystem : SharedStatusIconSystem if (data.HideOnStealth && TryComp(ent, out var stealth) && stealth.Enabled) return false; + if (TryComp(ent, out var sprite) && !sprite.Visible) + return false; + if (data.ShowTo != null && !_entityWhitelist.IsValid(data.ShowTo, viewer)) return false; From 6c7170e482eaa691b37eb98ce55f24379ac1c715 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 6 Feb 2025 13:46:20 +0000 Subject: [PATCH 110/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e64f0ba51c..54c84c24c8 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: saga3152 - changes: - - message: You can now make vodka and soda water. - type: Add - id: 7410 - time: '2024-09-20T22:27:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32252 - author: goet changes: - message: Hides character sprite in health analyzer window if the scan becomes @@ -3904,3 +3897,10 @@ id: 7909 time: '2025-02-06T11:45:35.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34904 +- author: deltanedas + changes: + - message: Fixed huds showing for chameleon projector users. + type: Fix + id: 7910 + time: '2025-02-06T13:45:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34825 From cd91effefb5f0c6d59cd1de618a723b4477f14ce Mon Sep 17 00:00:00 2001 From: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Date: Thu, 6 Feb 2025 07:14:55 -0800 Subject: [PATCH 111/313] HOTFIX: Fix lineedit focus (#34621) * Test entered tree fix * Use Opened override * Fix keyboard focus on window open for DialogWindow This affects Phone, Pray, Rename, and multiple other admin verbs. * Clean up --- Content.Client/Labels/UI/HandLabelerWindow.xaml.cs | 7 ++++++- .../UserInterface/Controls/DialogWindow.xaml.cs | 11 ++++++++--- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/Content.Client/Labels/UI/HandLabelerWindow.xaml.cs b/Content.Client/Labels/UI/HandLabelerWindow.xaml.cs index 7a0627b3e2..528e227f55 100644 --- a/Content.Client/Labels/UI/HandLabelerWindow.xaml.cs +++ b/Content.Client/Labels/UI/HandLabelerWindow.xaml.cs @@ -33,8 +33,13 @@ namespace Content.Client.Labels.UI _focused = false; LabelLineEdit.Text = _label; }; + } - // Give the editor keybard focus, since that's the only + protected override void Opened() + { + base.Opened(); + + // Give the editor keyboard focus, since that's the only // thing the user will want to be doing with this UI LabelLineEdit.GrabKeyboardFocus(); } diff --git a/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs b/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs index 733dbe3265..d831f60247 100644 --- a/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs +++ b/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs @@ -87,9 +87,6 @@ public sealed partial class DialogWindow : FancyWindow Prompts.AddChild(box); } - // Grab keyboard focus for the first dialog entry - _promptLines[0].Item2.GrabKeyboardFocus(); - OkButton.OnPressed += _ => Confirm(); CancelButton.OnPressed += _ => @@ -110,6 +107,14 @@ public sealed partial class DialogWindow : FancyWindow OpenCentered(); } + protected override void Opened() + { + base.Opened(); + + // Grab keyboard focus for the first dialog entry + _promptLines[0].Item2.GrabKeyboardFocus(); + } + private void Confirm() { var results = new Dictionary(); From 11e5d59171739c11c8b1fe2271b3aceca8ff03ed Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Thu, 6 Feb 2025 16:17:58 +0100 Subject: [PATCH 112/313] HOTFIX: fix minibomb implant and syndicats not exploding (#34923) fix minibomb implant not exploding --- Content.Server/Implants/ImplantedSystem.cs | 20 ++++++++++++------- .../Implants/Components/ImplantedComponent.cs | 1 + 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/Content.Server/Implants/ImplantedSystem.cs b/Content.Server/Implants/ImplantedSystem.cs index 16b2c79d25..c5048cbd8d 100644 --- a/Content.Server/Implants/ImplantedSystem.cs +++ b/Content.Server/Implants/ImplantedSystem.cs @@ -1,5 +1,6 @@ using Content.Server.Body.Components; using Content.Shared.Implants.Components; +using Content.Shared.Storage; using Robust.Shared.Containers; namespace Content.Server.Implants; @@ -13,21 +14,26 @@ public sealed partial class ImplanterSystem SubscribeLocalEvent(OnGibbed); } - private void OnImplantedInit(EntityUid uid, ImplantedComponent component, ComponentInit args) + private void OnImplantedInit(Entity ent, ref ComponentInit args) { - component.ImplantContainer = _container.EnsureContainer(uid, ImplanterComponent.ImplantSlotId); - component.ImplantContainer.OccludesLight = false; + ent.Comp.ImplantContainer = _container.EnsureContainer(ent.Owner, ImplanterComponent.ImplantSlotId); + ent.Comp.ImplantContainer.OccludesLight = false; } - private void OnShutdown(EntityUid uid, ImplantedComponent component, ComponentShutdown args) + private void OnShutdown(Entity ent, ref ComponentShutdown args) { //If the entity is deleted, get rid of the implants - _container.CleanContainer(component.ImplantContainer); + _container.CleanContainer(ent.Comp.ImplantContainer); } private void OnGibbed(Entity ent, ref BeingGibbedEvent args) { - //If the entity is gibbed, get rid of the implants - _container.CleanContainer(ent.Comp.ImplantContainer); + // Drop the storage implant contents before the implants are deleted by the body being gibbed + foreach (var implant in ent.Comp.ImplantContainer.ContainedEntities) + { + if (TryComp(implant, out var storage)) + _container.EmptyContainer(storage.Container, destination: Transform(ent).Coordinates); + } + } } diff --git a/Content.Shared/Implants/Components/ImplantedComponent.cs b/Content.Shared/Implants/Components/ImplantedComponent.cs index 727213907a..2744d0291b 100644 --- a/Content.Shared/Implants/Components/ImplantedComponent.cs +++ b/Content.Shared/Implants/Components/ImplantedComponent.cs @@ -10,5 +10,6 @@ namespace Content.Shared.Implants.Components; [RegisterComponent, NetworkedComponent] public sealed partial class ImplantedComponent : Component { + [ViewVariables(VVAccess.ReadOnly)] public Container ImplantContainer = default!; } From 64ebcb5277c5f3ec33becfb59d86bcc5ff38ce60 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Thu, 6 Feb 2025 19:42:57 +0100 Subject: [PATCH 113/313] cleanup not needed locale string (#34922) * cleanup not needed locale string * Update Resources/Prototypes/Actions/types.yml --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Resources/Locale/en-US/implant/implant.ftl | 3 --- Resources/Prototypes/Actions/types.yml | 4 ++-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Resources/Locale/en-US/implant/implant.ftl b/Resources/Locale/en-US/implant/implant.ftl index 813ed3e7a9..073757f53c 100644 --- a/Resources/Locale/en-US/implant/implant.ftl +++ b/Resources/Locale/en-US/implant/implant.ftl @@ -17,9 +17,6 @@ implanter-label = [color=green]{$implantName}[/color] implanter-contained-implant-text = [color=green]{$desc}[/color] -action-name-toggle-fake-mindshield = [color=green]Toggle Fake Mindshield[/color] -action-description-toggle-fake-mindshield = Turn the Fake Mindshield implants transmission on/off - ## Implant Popups scramble-implant-activated-popup = Your appearance shifts and changes! diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml index 89c8e56b78..d7c97aaef4 100644 --- a/Resources/Prototypes/Actions/types.yml +++ b/Resources/Prototypes/Actions/types.yml @@ -331,8 +331,8 @@ - type: entity id: FakeMindShieldToggleAction - name: action-name-toggle-fake-mindshield - description: action-description-toggle-fake-mindshield + name: '[color=green]Toggle Fake Mindshield[/color]' + description: Turn the Fake Mindshield implant's transmission on/off components: - type: InstantAction icon: { sprite: Interface/Actions/actions_fakemindshield.rsi, state: icon } From b6ccbef14758c3b0e345f37dd95b0515de322a6c Mon Sep 17 00:00:00 2001 From: 12rabbits <53499656+12rabbits@users.noreply.github.com> Date: Thu, 6 Feb 2025 11:09:59 -0800 Subject: [PATCH 114/313] DNA scrambler examine fixes (#34920) * Remove custom character description after using DNA scrambler * Mark grammar as dirty when updating identity * Update Content.Server/Implants/SubdermalImplantSystem.cs --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Content.Server/IdentityManagement/IdentitySystem.cs | 2 ++ Content.Server/Implants/SubdermalImplantSystem.cs | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Content.Server/IdentityManagement/IdentitySystem.cs b/Content.Server/IdentityManagement/IdentitySystem.cs index ff6901f5a9..d90bf6021d 100644 --- a/Content.Server/IdentityManagement/IdentitySystem.cs +++ b/Content.Server/IdentityManagement/IdentitySystem.cs @@ -103,6 +103,8 @@ public sealed class IdentitySystem : SharedIdentitySystem // If presumed name is null and we're using that, we set proper noun to be false ("the old woman") if (name != representation.TrueName && representation.PresumedName == null) identityGrammar.ProperNoun = false; + + Dirty(ident, identityGrammar); } if (name == Name(ident)) diff --git a/Content.Server/Implants/SubdermalImplantSystem.cs b/Content.Server/Implants/SubdermalImplantSystem.cs index 9d074cec74..cb41e55ba5 100644 --- a/Content.Server/Implants/SubdermalImplantSystem.cs +++ b/Content.Server/Implants/SubdermalImplantSystem.cs @@ -22,6 +22,7 @@ using System.Numerics; using Content.Shared.Movement.Pulling.Components; using Content.Shared.Movement.Pulling.Systems; using Content.Server.IdentityManagement; +using Content.Server.DetailExaminable; using Content.Shared.Store.Components; using Robust.Shared.Collections; using Robust.Shared.Map.Components; @@ -225,6 +226,7 @@ public sealed class SubdermalImplantSystem : SharedSubdermalImplantSystem { fingerprint.Fingerprint = _forensicsSystem.GenerateFingerprint(); } + RemComp(ent); // remove MRP+ custom description if one exists _identity.QueueIdentityUpdate(ent); // manually queue identity update since we don't raise the event _popup.PopupEntity(Loc.GetString("scramble-implant-activated-popup"), ent, ent); } From d204480be31e3e1c5ab84d04c665ae50bff61fa4 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 6 Feb 2025 19:11:06 +0000 Subject: [PATCH 115/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 54c84c24c8..27f13823d1 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: goet - changes: - - message: Hides character sprite in health analyzer window if the scan becomes - inactive. - type: Fix - id: 7411 - time: '2024-09-21T05:54:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31879 - author: TGRCDev changes: - message: Station maps now have a directory for finding specific departments and @@ -3904,3 +3896,11 @@ id: 7910 time: '2025-02-06T13:45:13.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34825 +- author: 12rabbits + changes: + - message: Activating a DNA scrambler implant no longer retains the previous identity's + description. + type: Fix + id: 7911 + time: '2025-02-06T19:09:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34920 From 8ff90a6d2013741efb890e86c404dba270fc80f9 Mon Sep 17 00:00:00 2001 From: GrownSamoyedDog <61863648+GrownSamoyedDog@users.noreply.github.com> Date: Thu, 6 Feb 2025 12:16:57 -0700 Subject: [PATCH 116/313] Guide Control Button Now Redirects Properly (#34914) fixed control button - a single line of code --- Resources/ServerInfo/Guidebook/NewPlayer/Controls/Controls.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/ServerInfo/Guidebook/NewPlayer/Controls/Controls.xml b/Resources/ServerInfo/Guidebook/NewPlayer/Controls/Controls.xml index 72a3d63c6f..7454523638 100644 --- a/Resources/ServerInfo/Guidebook/NewPlayer/Controls/Controls.xml +++ b/Resources/ServerInfo/Guidebook/NewPlayer/Controls/Controls.xml @@ -2,7 +2,7 @@ # Controls You can change your keybinds at any time here: - + ## Movement You can move around the game world by using [color=yellow][bold][keybind="MoveUp"][keybind="MoveLeft"][keybind="MoveDown"][keybind="MoveRight"][/bold][/color]. From 727935c0f704b094132a9bafe1dfd78044dbad26 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 6 Feb 2025 19:18:04 +0000 Subject: [PATCH 117/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 27f13823d1..8fdd080bc8 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: TGRCDev - changes: - - message: Station maps now have a directory for finding specific departments and - areas. - type: Add - id: 7412 - time: '2024-09-21T07:33:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31156 - author: TheShuEd changes: - message: Cores from floral anomalies are now seeds for hydroponics! @@ -3904,3 +3896,10 @@ id: 7911 time: '2025-02-06T19:09:59.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34920 +- author: GrownSamoyedDog + changes: + - message: Control Button in Guidebook has been redirected to Controls properly + type: Fix + id: 7912 + time: '2025-02-06T19:16:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34914 From ed01ad772d59cf748b981c047df5ee7e2c7145fe Mon Sep 17 00:00:00 2001 From: themias <89101928+themias@users.noreply.github.com> Date: Thu, 6 Feb 2025 18:07:26 -0500 Subject: [PATCH 118/313] Buff the Combat Bakery Kit uplink item (#34927) * Buff the Combat Bakery Kit uplink item * whitespace --- Resources/Prototypes/Catalog/uplink_catalog.yml | 5 ++++- .../Prototypes/Entities/Objects/Weapons/Melee/baguette.yml | 1 + .../Entities/Objects/Weapons/Throwable/croissant.yml | 3 +++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index 29517ad10e..3f3221d14b 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -2136,8 +2136,11 @@ description: uplink-combat-bakery-desc icon: { sprite: Objects/Consumable/Food/Baked/bread.rsi, state: baguette} productEntity: CombatBakeryKit + discountCategory: usualDiscounts + discountDownTo: + Telecrystal: 2 cost: - Telecrystal: 6 + Telecrystal: 4 categories: - UplinkJob conditions: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/baguette.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/baguette.yml index 25830216ff..125184d1dc 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/baguette.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/baguette.yml @@ -4,6 +4,7 @@ suffix: Weapon components: - type: MeleeWeapon + attackRate: 1.4 wideAnimationRotation: -120 damage: types: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/croissant.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/croissant.yml index f5cfd35b1d..fa0d4b7672 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/croissant.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/croissant.yml @@ -17,7 +17,10 @@ sound: /Audio/Weapons/star_hit.ogg - type: LandAtCursor - type: DamageOtherOnHit + ignoreResistances: true damage: types: Slash: 5 Piercing: 10 + - type: ThrowingAngle + angularVelocity: true # spins From c5d1aba8f0d56099c3173223e09e44b199336585 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 6 Feb 2025 23:08:33 +0000 Subject: [PATCH 119/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 8fdd080bc8..ca81778dc4 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: TheShuEd - changes: - - message: Cores from floral anomalies are now seeds for hydroponics! - type: Add - id: 7413 - time: '2024-09-21T19:54:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31987 - author: Plykiya changes: - message: The rat king is now capable of butchering things, like animals. @@ -3903,3 +3896,11 @@ id: 7912 time: '2025-02-06T19:16:57.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34914 +- author: themias + changes: + - message: Combat bakery kit price is reduced from 6TC to 4TC, increased baguette + sword attack speed, throwing croissants ignore armor + type: Tweak + id: 7913 + time: '2025-02-06T23:07:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34927 From 14d96e0716378f5dc3d72545fd2b7c25bfc2d60e Mon Sep 17 00:00:00 2001 From: Spessmann <156740760+Spessmann@users.noreply.github.com> Date: Thu, 6 Feb 2025 17:31:06 -0800 Subject: [PATCH 120/313] Convex fixes (#34934) fixed --- Resources/Maps/convex.yml | 1096 +++++++++++++++++++++---------------- 1 file changed, 623 insertions(+), 473 deletions(-) diff --git a/Resources/Maps/convex.yml b/Resources/Maps/convex.yml index 8ee0d2ff76..5b4e1af882 100644 --- a/Resources/Maps/convex.yml +++ b/Resources/Maps/convex.yml @@ -66,19 +66,19 @@ entities: version: 6 1,4: ind: 1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 1,5: ind: 1,5 - tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 1,6: ind: 1,6 - tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACBQAAAAABBQAAAAADBQAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAAABQAAAAADBQAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAAABQAAAAABBQAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAAA + tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABBQAAAAADBQAAAAABBQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAABQAAAAACBQAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAACBQAAAAAABQAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAAC version: 6 1,7: ind: 1,7 - tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAABQAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAACBQAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAIAAAAAACAgAAAAAABgAAAAACBgAAAAACBgAAAAACAgAAAAAAIAAAAAAAIAAAAAAHIAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAACBgAAAAACBgAAAAACBgAAAAABBgAAAAACAgAAAAAAAgAAAAAAIAAAAAAEAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABgAAAAABBgAAAAADBgAAAAABBgAAAAACBgAAAAAABgAAAAAABgAAAAADBgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAADBgAAAAABBgAAAAADAgAAAAAABgAAAAACBgAAAAABBgAAAAACBgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAABQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAAABQAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAIAAAAAAAAgAAAAAABgAAAAABBgAAAAAABgAAAAABAgAAAAAAIAAAAAAAIAAAAAAJIAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAAABgAAAAACBgAAAAADBgAAAAADBgAAAAABAgAAAAAAAgAAAAAAIAAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABgAAAAABBgAAAAABBgAAAAAABgAAAAAABgAAAAACBgAAAAACBgAAAAAABgAAAAACAgAAAAAAAgAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 1,8: ind: 1,8 @@ -90,35 +90,35 @@ entities: version: 6 10,2: ind: 10,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA version: 6 10,3: ind: 10,3 - tiles: AwAAAAADAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA + tiles: AwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA version: 6 10,4: ind: 10,4 - tiles: AgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAACBwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAABBwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAACBwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAABBwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAADBwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAABBwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAAABwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAADAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAABBwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,5: ind: 10,5 - tiles: AwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,6: ind: 10,6 - tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,7: ind: 10,7 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,8: ind: 10,8 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,9: ind: 10,9 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAACCgAAAAAACAAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAABCgAAAAABCAAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAAACgAAAAADCAAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAADCgAAAAACCAAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 11,2: ind: 11,2 @@ -138,31 +138,31 @@ entities: version: 6 2,1: ind: 2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAACAAAAAADBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAADCAAAAAABCQAAAAAACAAAAAADCAAAAAADCAAAAAADAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACQAAAAAAAgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAADCAAAAAADCQAAAAAACAAAAAADCAAAAAABCAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAADCAAAAAACBQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAADCAAAAAABBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAABCAAAAAADCQAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACQAAAAAAAgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAABCAAAAAACCQAAAAAACAAAAAADCAAAAAADCAAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAACCAAAAAACBQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAA version: 6 2,2: ind: 2,2 - tiles: AQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAABCAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAACAAAAAACCAAAAAABCAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAACCAAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAABCAAAAAAACAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAADAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAD + tiles: AQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAACCAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAACAAAAAACCAAAAAACCAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAAACAAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAABCAAAAAABCAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAABCAAAAAADCAAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAADCAAAAAABAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAA version: 6 2,3: ind: 2,3 - tiles: AgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAADCAAAAAACCAAAAAADAgAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAACAAAAAADCgAAAAABAgAAAAAACAAAAAAACAAAAAABCAAAAAAACgAAAAACCAAAAAADCgAAAAAACAAAAAADCAAAAAAAFAAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAACAAAAAAACAAAAAAAAgAAAAAACAAAAAABCgAAAAADCAAAAAABCAAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAADFAAAAAAACAAAAAACCAAAAAACCAAAAAACAgAAAAAACAAAAAABCAAAAAADCAAAAAACCAAAAAACCAAAAAACCAAAAAADCAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAAAFAAAAAAACAAAAAABCAAAAAACCAAAAAABAgAAAAAACAAAAAACCAAAAAABCAAAAAADCgAAAAADCAAAAAABCAAAAAACCAAAAAABCAAAAAAACAAAAAADCgAAAAACCAAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAAAAgAAAAAACAAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAACAAAAAADCAAAAAADCAAAAAADAgAAAAAACAAAAAABCAAAAAACCAAAAAAACgAAAAADCAAAAAADAgAAAAAACwAAAAADAgAAAAAACAAAAAAACgAAAAADCAAAAAABAgAAAAAACAAAAAADCAAAAAADCAAAAAACAgAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAABCAAAAAACAgAAAAAACwAAAAACAgAAAAAACAAAAAAACAAAAAACCAAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAACCgAAAAADCAAAAAABAgAAAAAACwAAAAACAgAAAAAACAAAAAADCgAAAAACCAAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAACAgAAAAAACwAAAAABAgAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAACAAAAAACCAAAAAABCAAAAAACFAAAAAAACAAAAAADCAAAAAADCAAAAAABCgAAAAACCAAAAAACAgAAAAAACwAAAAAAAgAAAAAACAAAAAADCgAAAAACCAAAAAABAgAAAAAACAAAAAADCAAAAAABCAAAAAADFAAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAACCAAAAAADAgAAAAAACwAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAACAAAAAACCAAAAAADCAAAAAACFAAAAAAACAAAAAACCAAAAAABCAAAAAAACgAAAAABCAAAAAAAAgAAAAAACwAAAAADAgAAAAAACAAAAAABCgAAAAADCAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAABAgAAAAAACAAAAAABCgAAAAADCAAAAAAACAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAAAFAAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAAAgAAAAAACgAAAAAACAAAAAADCgAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAAACgAAAAABCAAAAAADFAAAAAAACAAAAAAACAAAAAADCAAAAAAAAgAAAAAACAAAAAABCgAAAAABCAAAAAADCAAAAAABCgAAAAACCAAAAAADCgAAAAACCAAAAAABCgAAAAAACAAAAAADCAAAAAABFAAAAAAACAAAAAAACAAAAAACCAAAAAAAAgAAAAAACAAAAAAACAAAAAAC + tiles: AgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAADCAAAAAADCAAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAACAgAAAAAACAAAAAABCgAAAAADAgAAAAAACAAAAAABCAAAAAACCAAAAAABCgAAAAABCAAAAAAACgAAAAACCAAAAAACCAAAAAACFAAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAACAAAAAAACAAAAAACAgAAAAAACAAAAAAACgAAAAACCAAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAACCAAAAAADFAAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAACCAAAAAADCAAAAAABFAAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAACAAAAAACCAAAAAADCAAAAAACCgAAAAADCAAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAAACgAAAAAACAAAAAACAgAAAAAACAAAAAABCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAACAgAAAAAACAAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAABCgAAAAADCAAAAAABAgAAAAAACwAAAAADAgAAAAAACAAAAAACCgAAAAACCAAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAADCAAAAAABAgAAAAAACwAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAACCgAAAAABCAAAAAABAgAAAAAACwAAAAADAgAAAAAACAAAAAADCgAAAAACCAAAAAABAgAAAAAACAAAAAADCAAAAAADCAAAAAABAgAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAABCAAAAAADAgAAAAAACwAAAAABAgAAAAAACAAAAAADCAAAAAABCAAAAAACAgAAAAAACAAAAAAACAAAAAACCAAAAAACFAAAAAAACAAAAAADCAAAAAACCAAAAAADCgAAAAAACAAAAAACAgAAAAAACwAAAAAAAgAAAAAACAAAAAAACgAAAAABCAAAAAADAgAAAAAACAAAAAACCAAAAAABCAAAAAAAFAAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAADCAAAAAAAAgAAAAAACwAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAABAgAAAAAACAAAAAADCAAAAAABCAAAAAACFAAAAAAACAAAAAABCAAAAAAACAAAAAADCgAAAAACCAAAAAAAAgAAAAAACwAAAAAAAgAAAAAACAAAAAACCgAAAAAACAAAAAADAgAAAAAACAAAAAACCAAAAAADCAAAAAADAgAAAAAACAAAAAABCgAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAABFAAAAAAACAAAAAABCAAAAAACCAAAAAADAgAAAAAAAgAAAAAACgAAAAABCAAAAAADCgAAAAABCAAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAAACgAAAAABCAAAAAAAFAAAAAAACAAAAAABCAAAAAABCAAAAAADAgAAAAAACAAAAAAACgAAAAADCAAAAAACCAAAAAAACgAAAAABCAAAAAAACgAAAAABCAAAAAACCgAAAAAACAAAAAABCAAAAAACFAAAAAAACAAAAAABCAAAAAADCAAAAAACAgAAAAAACAAAAAADCAAAAAAD version: 6 2,4: ind: 2,4 - tiles: CAAAAAABCAAAAAADCAAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAACAAAAAABCAAAAAACCAAAAAACAgAAAAAACAAAAAAACgAAAAADAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAAACgAAAAABDAAAAAABDAAAAAABDAAAAAACDAAAAAACAgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACAgAAAAAACAAAAAADCAAAAAAACAAAAAABAgAAAAAACAAAAAADCAAAAAACDAAAAAACDAAAAAACDAAAAAAADAAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADAgAAAAAACAAAAAAACAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAADAAAAAACDQAAAAAADAAAAAABDAAAAAAAAgAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAAABwAAAAABBwAAAAABBwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAADCAAAAAACAgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAADCAAAAAABCAAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAADBwAAAAADBwAAAAADAgAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAAACAAAAAADCAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAACAAAAAADBwAAAAACBwAAAAACBwAAAAADBwAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAADAgAAAAAACAAAAAAACAAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADCAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAABCAAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAACAAAAAACBwAAAAADBwAAAAADBwAAAAACBwAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAAAAgAAAAAACAAAAAADCAAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAACAAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAA + tiles: CAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAACCAAAAAADAgAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAACAAAAAABCgAAAAADAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAAACgAAAAACDAAAAAABDAAAAAABDAAAAAABDAAAAAACAgAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAAAAgAAAAAACAAAAAAACAAAAAADDAAAAAADDAAAAAACDAAAAAABDAAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAACAgAAAAAACAAAAAADCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAADAAAAAABDQAAAAAADAAAAAABDAAAAAABAgAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAACAgAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAACCAAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAADBwAAAAABCAAAAAADAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAABCAAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACAgAAAAAACAAAAAABCAAAAAABCAAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAABCAAAAAACBwAAAAADBwAAAAADBwAAAAADBwAAAAABAgAAAAAACAAAAAABCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAACAAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAAAAgAAAAAACAAAAAADCAAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACCAAAAAACBwAAAAABBwAAAAAABwAAAAADBwAAAAABAgAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAACAAAAAACBwAAAAACBwAAAAADBwAAAAABBwAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAACAAAAAACCAAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACCAAAAAABBwAAAAADBwAAAAACBwAAAAACBwAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAA version: 6 2,5: ind: 2,5 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABBQAAAAADBQAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADBQAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAAABQAAAAADAwAAAAABBQAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADBQAAAAABBAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAADAwAAAAACBQAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADBQAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAABQAAAAABAwAAAAABBQAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAADAwAAAAADBQAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAACBQAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAABBQAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAABBQAAAAAAAwAAAAABBQAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADBAAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAC + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAABBQAAAAACBQAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAADBQAAAAADAwAAAAABBQAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAABQAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAAABQAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAADBQAAAAACBAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAAABQAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACBAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAACAwAAAAABBQAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAACBAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAADBQAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAABQAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAAABQAAAAADAwAAAAAABQAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABBAAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAB version: 6 2,6: ind: 2,6 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAACwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAABCAAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAACAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAACCAAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAACAwAAAAABAwAAAAACAwAAAAABCAAAAAACCAAAAAACCAAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAACAAAAAADCAAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAADAwAAAAACAgAAAAAAAwAAAAADAgAAAAAACgAAAAADCgAAAAACCgAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAACgAAAAABCgAAAAADAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAD + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAABCwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAACwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAABCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAACAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAACAAAAAABCAAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAgAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAAACAAAAAABAwAAAAABAwAAAAADAwAAAAACCAAAAAADCAAAAAADCAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAACAAAAAABCAAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAACgAAAAAACgAAAAAACgAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAACgAAAAACCgAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAAC version: 6 2,7: ind: 2,7 - tiles: AwAAAAAABQAAAAACBQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADBQAAAAABBQAAAAACBQAAAAADAwAAAAACBQAAAAADBQAAAAACBQAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAABQAAAAAAAwAAAAADBQAAAAACAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAADCgAAAAABCgAAAAADCgAAAAADCAAAAAACCAAAAAACCAAAAAACAwAAAAAABQAAAAADAwAAAAADBQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCgAAAAAACgAAAAADCgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAACwAAAAABCwAAAAADAgAAAAAACAAAAAADCgAAAAADCgAAAAAACgAAAAACCAAAAAADAgAAAAAACwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAACwAAAAADCwAAAAABAgAAAAAACAAAAAADCgAAAAADCgAAAAAACgAAAAABCAAAAAABAgAAAAAACwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABBwAAAAACAgAAAAAABwAAAAAABwAAAAAAFgAAAAAABwAAAAAAAgAAAAAABwAAAAADAgAAAAAACwAAAAABCwAAAAAACwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAADAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAACAgAAAAAACwAAAAADCwAAAAAACwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAgAAAAAACwAAAAACCwAAAAADCwAAAAADAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAFgAAAAADBwAAAAACBwAAAAABAgAAAAAABwAAAAACAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAACwAAAAAACwAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABFgAAAAADBwAAAAAAAwAAAAACCwAAAAADCwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAACBQAAAAAABQAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABBQAAAAACBQAAAAABBQAAAAAAAwAAAAADBQAAAAAABQAAAAABBQAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAgAAAAAABQAAAAADAwAAAAADBQAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAABCgAAAAABCgAAAAAACgAAAAAACAAAAAABCAAAAAADCAAAAAADAwAAAAAABQAAAAAAAwAAAAACBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCgAAAAADCgAAAAABCgAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAADAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAACwAAAAABCwAAAAADAgAAAAAACAAAAAADCgAAAAAACgAAAAABCgAAAAAACAAAAAAAAgAAAAAACwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAACwAAAAABCwAAAAAAAgAAAAAACAAAAAAACgAAAAAACgAAAAADCgAAAAAACAAAAAADAgAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAEAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABBwAAAAAAAgAAAAAABwAAAAADBwAAAAADFgAAAAAEBwAAAAADAgAAAAAABwAAAAABAgAAAAAACwAAAAADCwAAAAABCwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAABAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAABAgAAAAAACwAAAAAACwAAAAABCwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAABAgAAAAAACwAAAAAACwAAAAADCwAAAAACAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAFgAAAAACBwAAAAACBwAAAAABAgAAAAAABwAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAACwAAAAACCwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAAABwAAAAADBwAAAAACBwAAAAADFgAAAAAGBwAAAAACAwAAAAABCwAAAAADCwAAAAABAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 2,8: ind: 2,8 @@ -178,43 +178,43 @@ entities: version: 6 3,1: ind: 3,1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADBAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACBQAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABBQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACBAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABBAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABBQAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABBQAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAABBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADBAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 3,10: ind: 3,10 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAAAAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAACAwAAAAADBAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAwAAAAABAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAwAAAAADAwAAAAABCAAAAAAACAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAADAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABBAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAACAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAACAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAACAAAAAADBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAwAAAAACAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAwAAAAAAAwAAAAAABAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAwAAAAADAwAAAAACBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAADAwAAAAADCAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAABAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACBAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACAAAAAABBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAACAAAAAACBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAACAAAAAABBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAA version: 6 3,3: ind: 3,3 - tiles: CAAAAAACCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACAgAAAAAADAAAAAACDAAAAAADAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAADDAAAAAACDAAAAAABDAAAAAACAgAAAAAABwAAAAADCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAABAgAAAAAADAAAAAACDAAAAAACAgAAAAAABwAAAAAACAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABCAAAAAABCAAAAAADCAAAAAAACAAAAAABCAAAAAAACAAAAAABAgAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAABwAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAABCAAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAACAgAAAAAAAwAAAAABCAAAAAABCAAAAAADCAAAAAABCAAAAAACCAAAAAADCAAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAACAgAAAAAAAwAAAAACCAAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAAACAAAAAACAgAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAABCAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAADCAAAAAACCAAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAACCAAAAAACAgAAAAAACgAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAACgAAAAACAgAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAACgAAAAADCgAAAAACCgAAAAAACgAAAAAACgAAAAACCgAAAAAACgAAAAADBQAAAAAAAgAAAAAACgAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAADAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAB + tiles: CAAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAADAgAAAAAADAAAAAACDAAAAAACAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAADBwAAAAADDAAAAAADDAAAAAACDAAAAAACAgAAAAAABwAAAAACCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAADBwAAAAACAgAAAAAADAAAAAACDAAAAAABAgAAAAAABwAAAAAACAAAAAACCAAAAAAACAAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAABwAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAACCAAAAAABCAAAAAABAgAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAABCAAAAAABCAAAAAACCAAAAAABAgAAAAAAAwAAAAADCAAAAAACCAAAAAABCAAAAAACCAAAAAABCAAAAAACCAAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAACCAAAAAACCAAAAAABAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAACCAAAAAADCAAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAAACAAAAAABCAAAAAADCAAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAADAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAADCAAAAAAAAgAAAAAACgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAACgAAAAABAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAACgAAAAABCgAAAAABCgAAAAABCgAAAAAACgAAAAAACgAAAAABCgAAAAABBQAAAAAAAgAAAAAACgAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAADAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAB version: 6 3,4: ind: 3,4 - tiles: CAAAAAABCAAAAAABCgAAAAABCgAAAAABBQAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAAACgAAAAABCAAAAAABCgAAAAADCgAAAAADBQAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAACAAAAAABCAAAAAACCAAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAAACAAAAAACCAAAAAACCAAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADAgAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAACCAAAAAADAgAAAAAACAAAAAADCAAAAAACCAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAADCQAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAACAAAAAADCgAAAAAACgAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAA + tiles: CAAAAAADCAAAAAAACgAAAAAACgAAAAACBQAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADCgAAAAACCAAAAAACCgAAAAAACgAAAAAABQAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADCAAAAAABCAAAAAADCAAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAABAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAABAgAAAAAACAAAAAACCAAAAAADCAAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAABCQAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAgAAAAAACAAAAAADCgAAAAACCgAAAAADCAAAAAAACAAAAAABAgAAAAAACAAAAAABCAAAAAACCAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAA version: 6 3,5: ind: 3,5 - tiles: AwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAACCAAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAACFAAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAABCAAAAAAABQAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAFAAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAFAAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABFAAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAACCAAAAAAABQAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACFAAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAADCAAAAAABBQAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAABQAAAAADAwAAAAACBQAAAAACAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADBQAAAAABAwAAAAAABQAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAAABQAAAAABAwAAAAADBQAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACFAAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAB + tiles: AwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAACCAAAAAAACAAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAADBQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADFAAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAADCAAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAFAAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAACCAAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAFAAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAAABQAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAADFAAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAADBQAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAAABQAAAAADAwAAAAABBQAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAwAAAAAABQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAABQAAAAADAwAAAAABBQAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACFAAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAA version: 6 3,6: ind: 3,6 - tiles: AwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAFAAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACBQAAAAADBQAAAAACBQAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAEAAAAAADEAAAAAADEAAAAAACEAAAAAAAEAAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAEAAAAAABEQAAAAAAEAAAAAADEQAAAAADEAAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAEAAAAAABEQAAAAACEAAAAAACEQAAAAACEAAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADFAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAEAAAAAACEQAAAAACEAAAAAACEQAAAAACEAAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAABEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAEAAAAAADEAAAAAAAEAAAAAABEAAAAAADEAAAAAACCAAAAAABCAAAAAACCAAAAAAACAAAAAACCAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACCAAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACCgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAABEAAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAEAAAAAAAEQAAAAADEAAAAAAAEQAAAAACEAAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACFAAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAEAAAAAAAEQAAAAADEAAAAAAAEQAAAAACEAAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAAAFAAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAEAAAAAADEQAAAAABEAAAAAABEQAAAAADEAAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAABCAAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADCAAAAAADAgAAAAAACAAAAAACCAAAAAADCAAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABCgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 3,7: ind: 3,7 - tiles: AwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACFAAAAAAAAwAAAAABAwAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACFAAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAABEAAAAAACEAAAAAADEAAAAAABCwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAEAAAAAABEAAAAAAAEAAAAAABEAAAAAACEAAAAAADEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAABAgAAAAAAEAAAAAACAgAAAAAAEAAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAADAgAAAAAAEAAAAAABAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAACwAAAAACCwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAACCwAAAAABCwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAABCwAAAAACCwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAACCwAAAAACCwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAABCwAAAAAACwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAA + tiles: AwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAFAAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAABFAAAAAAAAwAAAAABAwAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAFAAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADCwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACCwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAADAgAAAAAAEAAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAACwAAAAACCwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAAACwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAACwAAAAADCwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAAACwAAAAADCwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAAACwAAAAACCwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAA version: 6 3,8: ind: 3,8 - tiles: AAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAA + tiles: AAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAA version: 6 3,9: ind: 3,9 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABEwAAAAAEAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABCgAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACCgAAAAAAAgAAAAAAEwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADCgAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAAEAgAAAAAAAwAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAADEwAAAAAEAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAACgAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACCgAAAAADAgAAAAAAEwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACCgAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAAAAgAAAAAAAwAAAAAD version: 6 4,0: ind: 4,0 @@ -222,35 +222,35 @@ entities: version: 6 4,1: ind: 4,1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,10: ind: 4,10 - tiles: AwAAAAADEwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAEwAAAAAEAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACEwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAEwAAAAAEAwAAAAABAwAAAAACAwAAAAADEwAAAAACAwAAAAACAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAAEAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AwAAAAADEwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAEwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADEwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAABEwAAAAAAAwAAAAACAwAAAAADAwAAAAABEwAAAAAEAwAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAAEAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,2: ind: 4,2 - tiles: AgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAAD + tiles: AgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAADBwAAAAAC version: 6 4,3: ind: 4,3 - tiles: AgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAACAwAAAAABAwAAAAAAAwAAAAABAgAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAACAwAAAAABAwAAAAADAwAAAAADAgAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAADBwAAAAABAwAAAAACAwAAAAABAwAAAAABAgAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAABBwAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAABAgAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAACBwAAAAACBwAAAAADBwAAAAABBwAAAAABBwAAAAACBwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAACBwAAAAACBwAAAAADBwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAADBwAAAAABHwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAABwAAAAACBwAAAAADAgAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAABBwAAAAACBwAAAAACHwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAADBwAAAAABHwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAACBwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAADHwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAACBwAAAAABBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAABwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAB + tiles: AgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAADBwAAAAABBwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAACBwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAABBwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAADBwAAAAABBwAAAAABBwAAAAADBwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAABBwAAAAABBwAAAAAABwAAAAADBwAAAAAABwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAADBwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAACBwAAAAACBwAAAAABBwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAgAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAACBwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAADBwAAAAADHwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAABwAAAAADBwAAAAACAgAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABHwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAAHwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAAABwAAAAADBwAAAAACHwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAACAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAABwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAA version: 6 4,4: ind: 4,4 - tiles: AwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABFAAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADFAAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAAAAgAAAAAACwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAABBwAAAAABBwAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAADAgAAAAAACwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAABBwAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAABAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAACCAAAAAACCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAADAgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAADCAAAAAABCAAAAAACCAAAAAADCAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAACCAAAAAABCAAAAAADAgAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAABAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAACgAAAAABCAAAAAADCAAAAAABCAAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAACAAAAAACCAAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAADFAAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAACFAAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAABAgAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAADCAAAAAADAgAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAABAgAAAAAACwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAABAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAACCAAAAAACCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAACgAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAADCAAAAAABCAAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAABCAAAAAACCAAAAAADAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAADCAAAAAABAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 4,5: ind: 4,5 - tiles: AgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAwAAAAAAAwAAAAADBQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAAAAwAAAAABBQAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACBQAAAAACAwAAAAACAwAAAAACBQAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAACCAAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAADAgAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAAAEAAAAAABEAAAAAACEAAAAAACEAAAAAACEAAAAAADEAAAAAAAAgAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAABAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAABEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACAgAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAADAgAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAACAgAAAAAAEQAAAAADEQAAAAABEQAAAAACEAAAAAAAEQAAAAABEQAAAAABEAAAAAADEQAAAAACEQAAAAACEQAAAAACAgAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAACAgAAAAAAEQAAAAADEQAAAAADEQAAAAACEAAAAAACEQAAAAACEQAAAAADEAAAAAADEQAAAAAAEQAAAAAAEQAAAAAA + tiles: AgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAADAwAAAAACBQAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAABAwAAAAAABQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACBQAAAAACAwAAAAACAwAAAAABBQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADCAAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAEAAAAAABAgAAAAAAAgAAAAAAEQAAAAADEQAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAACAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAABAgAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAABEAAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAADAgAAAAAAEAAAAAAAEAAAAAADEAAAAAABEAAAAAABAgAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAADEAAAAAADEAAAAAADEAAAAAADEAAAAAADEAAAAAAAEAAAAAABAgAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAADAgAAAAAAEQAAAAADEQAAAAACEQAAAAAAEAAAAAADEQAAAAABEQAAAAABEAAAAAABEQAAAAABEQAAAAABEQAAAAABAgAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAADAgAAAAAAEQAAAAADEQAAAAADEQAAAAACEAAAAAAAEQAAAAABEQAAAAABEAAAAAAAEQAAAAADEQAAAAAAEQAAAAAC version: 6 4,6: ind: 4,6 - tiles: AgAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAABEAAAAAADEAAAAAACEAAAAAADEAAAAAADEAAAAAABEAAAAAABEAAAAAABAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACAgAAAAAAEAAAAAAAEAAAAAACEQAAAAACEQAAAAAAEQAAAAADEQAAAAABEQAAAAACEQAAAAADEAAAAAAAEAAAAAADAgAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAABAgAAAAAAEQAAAAAAEQAAAAACEQAAAAABEAAAAAADEQAAAAABEQAAAAABEAAAAAABEQAAAAABEQAAAAABEQAAAAADAgAAAAAAEAAAAAABEAAAAAAAEAAAAAABEAAAAAADAgAAAAAAEQAAAAABEQAAAAADEQAAAAADEAAAAAAAEQAAAAAAEQAAAAAAEAAAAAADEQAAAAACEQAAAAAAEQAAAAABAgAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAABEQAAAAACAgAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAADAgAAAAAAAgAAAAAAEAAAAAABEAAAAAACEAAAAAACEAAAAAABEQAAAAADAgAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAACEAAAAAAAAgAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAAAEQAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAABEAAAAAACEAAAAAAAEAAAAAADEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAADEAAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAACwAAAAACCwAAAAADCwAAAAACCwAAAAAACwAAAAACCwAAAAAACwAAAAACCwAAAAABCwAAAAACCwAAAAABCwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AgAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAABEAAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAACEAAAAAACEAAAAAADEAAAAAACEAAAAAABEAAAAAADEAAAAAAAAgAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAACAgAAAAAAEAAAAAACEAAAAAACEQAAAAAAEQAAAAADEQAAAAACEQAAAAADEQAAAAABEQAAAAAAEAAAAAAAEAAAAAACAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAADEAAAAAACEAAAAAABEAAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACAgAAAAAAEQAAAAACEQAAAAADEQAAAAADEAAAAAABEQAAAAAAEQAAAAACEAAAAAABEQAAAAACEQAAAAADEQAAAAABAgAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAABAgAAAAAAEQAAAAAAEQAAAAABEQAAAAAAEAAAAAAAEQAAAAABEQAAAAADEAAAAAABEQAAAAACEQAAAAABEQAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAADEQAAAAACAgAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAABEAAAAAACAgAAAAAAAgAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEQAAAAABAgAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAEAAAAAABAgAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAADEQAAAAADAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAADEAAAAAABEAAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAACwAAAAACCwAAAAACCwAAAAAACwAAAAADCwAAAAABCwAAAAAACwAAAAACCwAAAAADCwAAAAAACwAAAAACCwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 4,7: ind: 4,7 - tiles: AwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAABQAAAAABBQAAAAAABQAAAAADAwAAAAAAAgAAAAAAAwAAAAACEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAABEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAACBQAAAAAABQAAAAAABQAAAAAAAwAAAAADAgAAAAAAAwAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 4,8: ind: 4,8 @@ -258,7 +258,7 @@ entities: version: 6 4,9: ind: 4,9 - tiles: BAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAEwAAAAADAwAAAAACEwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: BAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACEwAAAAACAwAAAAACEwAAAAAEAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAA version: 6 5,0: ind: 5,0 @@ -266,43 +266,43 @@ entities: version: 6 5,1: ind: 5,1 - tiles: AwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAQAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAC + tiles: AwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADFAAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAFAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAB version: 6 5,10: ind: 5,10 - tiles: AwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAEwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACEwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAEwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACEwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAEwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA + tiles: AwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAEwAAAAAEAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADEwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAEwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAEwAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA version: 6 5,2: ind: 5,2 - tiles: AAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAABCAAAAAAACAAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAACCAAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAABwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAD + tiles: AAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAADCAAAAAACCAAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABAgAAAAAACAAAAAAACAAAAAABCAAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAABwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAB version: 6 5,3: ind: 5,3 - tiles: BwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAADBwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABBwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAAABwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAABwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAABwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAADBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAABwAAAAABBwAAAAABBwAAAAADBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAgAAAAAABwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAADBwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAgAAAAAABwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAA + tiles: BwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADBwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABBwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADBwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAABwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABBwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAABwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABBwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAABwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAA version: 6 5,4: ind: 5,4 - tiles: AwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAACwAAAAACCwAAAAADCwAAAAACCwAAAAACCwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAACwAAAAADCwAAAAACCwAAAAAACwAAAAAACwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAgAAAAAACAAAAAABCAAAAAADCgAAAAACCgAAAAACCgAAAAABCAAAAAACCAAAAAABAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAABCAAAAAADCAAAAAABCAAAAAABCAAAAAACCAAAAAACCAAAAAACCAAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAAABwAAAAABCAAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAADCAAAAAADCAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAABwAAAAACBwAAAAABCgAAAAABCgAAAAAACgAAAAADCgAAAAAACAAAAAACCgAAAAABCgAAAAADCgAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAABCAAAAAADCAAAAAABCAAAAAACCAAAAAACCAAAAAACCAAAAAADCAAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAABCAAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAACCAAAAAADCAAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAACCAAAAAACCAAAAAABCAAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACCAAAAAAACAAAAAACCgAAAAACCgAAAAABCgAAAAAACAAAAAADCAAAAAADAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAACwAAAAACCwAAAAADCwAAAAADCwAAAAACCwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAACwAAAAACCwAAAAADCwAAAAABCwAAAAACCwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAACAAAAAABCAAAAAAACgAAAAADCgAAAAACCgAAAAADCAAAAAABCAAAAAADAgAAAAAACAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAABCAAAAAAACAAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAABBwAAAAACCAAAAAADCAAAAAABCAAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAgAAAAAABwAAAAAABwAAAAAACgAAAAABCgAAAAAACgAAAAACCgAAAAACCAAAAAACCgAAAAADCgAAAAACCgAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAACCAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAADCAAAAAADCAAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABCAAAAAABCAAAAAABCgAAAAADCgAAAAADCgAAAAACCAAAAAABCAAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAA version: 6 5,5: ind: 5,5 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAADAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAABCAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAACAgAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAACAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAADCAAAAAABCAAAAAACCAAAAAADCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAACAgAAAAAACAAAAAADCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAABAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAABCAAAAAACCAAAAAACCAAAAAADCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAAAEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 5,6: ind: 5,6 - tiles: EAAAAAAAEAAAAAABEAAAAAACEAAAAAADEAAAAAACEAAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADAgAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAFQAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABFQAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAACAgAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAACFQAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAADAgAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAABEAAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADFQAAAAAAAgAAAAAAEAAAAAACEAAAAAABEAAAAAADAgAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAADEAAAAAABAwAAAAADAwAAAAABAwAAAAAAFQAAAAAAAwAAAAABFQAAAAAAEAAAAAABEAAAAAABEAAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAAAEAAAAAACEAAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAFQAAAAAAEAAAAAABEAAAAAABEAAAAAABEAAAAAABAgAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAADEAAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABFQAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADAgAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAgAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAACEAAAAAADEAAAAAABEAAAAAACEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAABEAAAAAACEAAAAAADEAAAAAABEAAAAAADEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: EAAAAAADEAAAAAACEAAAAAABEAAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAACEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAEAAAAAADEAAAAAAAEAAAAAABEAAAAAADAgAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACFQAAAAAAEAAAAAABEAAAAAACEAAAAAACEAAAAAADAgAAAAAAAgAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABFQAAAAAAAgAAAAAAEAAAAAABEAAAAAABEAAAAAACAgAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAABFQAAAAAAAgAAAAAAEAAAAAABEAAAAAAAEAAAAAACAgAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAAAEAAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABFQAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAABAgAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABEAAAAAACAwAAAAABAwAAAAABAwAAAAACFQAAAAAAAwAAAAAAFQAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAADEAAAAAADEAAAAAADEAAAAAABEAAAAAADEAAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAFQAAAAAAEAAAAAADEAAAAAAAEAAAAAACEAAAAAACAgAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAACEAAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACFQAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAADAgAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADEAAAAAADEAAAAAABEAAAAAAAEAAAAAACEAAAAAABEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACEAAAAAADEAAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAABEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 5,7: ind: 5,7 - tiles: AwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADFAAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAABCAAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAACCAAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAADFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADCAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAADCAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADCAAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABCAAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACCAAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABBQAAAAACBQAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAABBQAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAB + tiles: AwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAFAAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAgAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAACCAAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADCAAAAAABCAAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADFAAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAAACAAAAAACCAAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAACAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAACAAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABCAAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADCAAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAABQAAAAAABQAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAACBQAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAC version: 6 5,8: ind: 5,8 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAD + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAD version: 6 5,9: ind: 5,9 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAEwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAC + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAEwAAAAAEAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAD version: 6 6,0: ind: 6,0 @@ -310,147 +310,147 @@ entities: version: 6 6,1: ind: 6,1 - tiles: AgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAFAAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAB + tiles: AgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAFAAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAACFAAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAA version: 6 6,10: ind: 6,10 - tiles: CAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAABAgAAAAAAAwAAAAAABQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCgAAAAABCgAAAAABCgAAAAACCAAAAAAACAAAAAAAAgAAAAAAAwAAAAAABQAAAAACBQAAAAADBQAAAAABBQAAAAADBQAAAAACBQAAAAADBQAAAAAACAAAAAABCAAAAAACCgAAAAACCQAAAAAACgAAAAADCAAAAAADCAAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAACgAAAAACCgAAAAAACgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAEBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBwAAAAADAgAAAAAAFgAAAAACBwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAEwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAABBwAAAAADBwAAAAAAFgAAAAAEBwAAAAAABwAAAAADAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAABCAAAAAADCAAAAAADCAAAAAABCAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAwAAAAADBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCgAAAAABCgAAAAADCgAAAAACCAAAAAAACAAAAAABAgAAAAAAAwAAAAACBQAAAAADBQAAAAACBQAAAAABBQAAAAAABQAAAAABBQAAAAAABQAAAAACCAAAAAACCAAAAAACCgAAAAADCQAAAAAACgAAAAABCAAAAAAACAAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAACCgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAEBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABwAAAAADAgAAAAAAFgAAAAAGBwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAADBwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAEwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAEBwAAAAACBwAAAAABFgAAAAAGBwAAAAABBwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,2: ind: 6,2 - tiles: AwAAAAADAwAAAAADAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAACAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAABAwAAAAACAwAAAAACBwAAAAADBwAAAAACBwAAAAADBwAAAAADBwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAACAAAAAAACAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADBwAAAAABBwAAAAACBwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACBwAAAAABBwAAAAACBwAAAAADBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAACAwAAAAADAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAABwAAAAABBwAAAAABBwAAAAADBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAACAgAAAAAAAwAAAAACAwAAAAACAgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAADCAAAAAADAwAAAAACAwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAACAAAAAAACAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAABwAAAAABBwAAAAACBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACBwAAAAAABwAAAAADBwAAAAADBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 6,3: ind: 6,3 - tiles: AwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAAAFAAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAABwAAAAABBwAAAAAAFgAAAAAEAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAABGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAABwAAAAABGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAADBwAAAAACBwAAAAABBwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAAAAwAAAAACAwAAAAAB + tiles: AwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAADBwAAAAADBwAAAAAABwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAABwAAAAABBwAAAAAAFgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAACBwAAAAABAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAABwAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACBwAAAAACBwAAAAADBwAAAAABBwAAAAADBwAAAAAABwAAAAACBwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAABAwAAAAAAAwAAAAAC version: 6 6,4: ind: 6,4 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADBwAAAAACBwAAAAACBwAAAAADBwAAAAABBwAAAAABBwAAAAADBwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADBwAAAAACBwAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACFAAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABFAAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAADBwAAAAADBwAAAAAABwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAABwAAAAABBwAAAAABBwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAAABwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAAABwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAFAAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAB version: 6 6,5: ind: 6,5 - tiles: AgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAgAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAACAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAgAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAACGwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAADGwAAAAACAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAADGwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADGwAAAAADGwAAAAABGwAAAAADGwAAAAACGwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAACwAAAAABBwAAAAADBwAAAAACBwAAAAAAAgAAAAAAAwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAACwAAAAACCwAAAAADBwAAAAACBwAAAAAABwAAAAABAgAAAAAAAwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAACwAAAAAACwAAAAAABwAAAAABBwAAAAABBwAAAAACAwAAAAADAwAAAAABFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAACwAAAAADCwAAAAABBwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAACwAAAAABCwAAAAADBwAAAAAABwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAA + tiles: AgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAAAGwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAgAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAACGwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAACwAAAAACBwAAAAABBwAAAAAABwAAAAACAgAAAAAAAwAAAAABFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAACwAAAAADCwAAAAACBwAAAAACBwAAAAADBwAAAAABAgAAAAAAAwAAAAACFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAACwAAAAAACwAAAAACBwAAAAADBwAAAAABBwAAAAAAAwAAAAABAwAAAAABFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAACwAAAAABCwAAAAADBwAAAAACBwAAAAAABwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAACwAAAAABCwAAAAAABwAAAAAABwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAA version: 6 6,6: ind: 6,6 - tiles: AwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAACAwAAAAACAwAAAAADDwAAAAADDwAAAAADDwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAABDwAAAAACCwAAAAABCwAAAAAACwAAAAADCwAAAAACFQAAAAAAAwAAAAADAwAAAAADAwAAAAABDwAAAAABDwAAAAADDwAAAAADDwAAAAABDwAAAAADDwAAAAAADwAAAAADDwAAAAAACwAAAAABCwAAAAADCwAAAAAACwAAAAADFQAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAACFQAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAACCwAAAAACCwAAAAABFQAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAADBwAAAAABAgAAAAAACwAAAAADCwAAAAABCwAAAAAACwAAAAABFQAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAADAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABAwAAAAACAgAAAAAAAwAAAAABHAAAAAABHAAAAAAAHAAAAAABHAAAAAABAwAAAAACBwAAAAABBwAAAAADBwAAAAABBwAAAAADBwAAAAACBwAAAAACBwAAAAAABwAAAAABAwAAAAABAgAAAAAAAwAAAAABHAAAAAADHAAAAAABHAAAAAABHAAAAAAAAwAAAAABBwAAAAADBwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAwAAAAADHAAAAAACHAAAAAACHAAAAAAAHAAAAAAAAwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAABBwAAAAACAgAAAAAAAwAAAAAAAwAAAAACHAAAAAABHAAAAAABHAAAAAABHAAAAAADAwAAAAAAAwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAABHAAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAC + tiles: AwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAAAAwAAAAADAwAAAAADDwAAAAACDwAAAAABDwAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAABDwAAAAACCwAAAAACCwAAAAACCwAAAAADCwAAAAACFQAAAAAAAwAAAAACAwAAAAADAwAAAAADDwAAAAABDwAAAAABDwAAAAADDwAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAAACwAAAAACCwAAAAAACwAAAAABCwAAAAABFQAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABCwAAAAACCwAAAAAACwAAAAAACwAAAAACFQAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAAACwAAAAACCwAAAAABFQAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAADAgAAAAAACwAAAAAACwAAAAABCwAAAAADCwAAAAAAFQAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAABAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAADBwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAADBwAAAAACBwAAAAADBwAAAAACAwAAAAAAAgAAAAAAAwAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAABAwAAAAADBwAAAAABBwAAAAACBwAAAAADBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAABAwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAACAgAAAAAAAgAAAAAAAwAAAAABHAAAAAABHAAAAAADHAAAAAACHAAAAAABAwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAADAgAAAAAAAwAAAAACAwAAAAADHAAAAAACHAAAAAAAHAAAAAADHAAAAAADAwAAAAABAwAAAAADBwAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAwAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAA version: 6 6,7: ind: 6,7 - tiles: CAAAAAADAgAAAAAAAwAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACCAAAAAABAgAAAAAAAwAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAAAHAAAAAAACAAAAAADAgAAAAAAAwAAAAAAAwAAAAACHAAAAAADHAAAAAADHAAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAAACAAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADFAAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACwAAAAACCwAAAAABCwAAAAACAgAAAAAAAwAAAAABBQAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABBQAAAAABAwAAAAABBQAAAAADBQAAAAADBQAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: CAAAAAABAgAAAAAAAwAAAAADHAAAAAADHAAAAAABHAAAAAADHAAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAACCAAAAAADAgAAAAAAAwAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAADHAAAAAABCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACHAAAAAABHAAAAAADHAAAAAADHAAAAAACHAAAAAACHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAADHAAAAAAACAAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABFAAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABFAAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAACwAAAAACCwAAAAAACwAAAAAAAgAAAAAAAwAAAAACBQAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAABQAAAAABAwAAAAACBQAAAAADBQAAAAAABQAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 6,8: ind: 6,8 - tiles: AwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAADCgAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAABBQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADBQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAAACgAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAA + tiles: AwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAADCgAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAACBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACBQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAAACgAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAA version: 6 6,9: ind: 6,9 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADCgAAAAADCgAAAAADCgAAAAABAwAAAAAAAwAAAAABAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADCgAAAAABCgAAAAAACgAAAAACAwAAAAAAAwAAAAACAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAABQAAAAADAwAAAAACCgAAAAABCgAAAAACCgAAAAACAwAAAAACBQAAAAACAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAADCgAAAAACCgAAAAADCgAAAAADAwAAAAADBQAAAAABAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAACAwAAAAAACgAAAAABCgAAAAACCgAAAAADAwAAAAADBQAAAAABAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAABCAAAAAABCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADCAAAAAACCAAAAAACCAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAABAgAAAAAAAwAAAAABBQAAAAACBQAAAAABBQAAAAADBQAAAAAABQAAAAADBQAAAAACBQAAAAAC + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADCgAAAAABCgAAAAABCgAAAAADAwAAAAADAwAAAAADAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAACgAAAAABCgAAAAACCgAAAAABAwAAAAABAwAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACBQAAAAADAwAAAAACCgAAAAAACgAAAAAACgAAAAABAwAAAAABBQAAAAABAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAAACgAAAAABCgAAAAADCgAAAAAAAwAAAAACBQAAAAADAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAABQAAAAADAwAAAAABCgAAAAADCgAAAAABCgAAAAABAwAAAAACBQAAAAABAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAACAgAAAAAAAwAAAAACBQAAAAACBQAAAAADBQAAAAACBQAAAAAABQAAAAACBQAAAAADBQAAAAAA version: 6 7,1: ind: 7,1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAA version: 6 7,10: ind: 7,10 - tiles: BQAAAAACAwAAAAACAgAAAAAACAAAAAACCgAAAAAACQAAAAAACgAAAAACCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABQAAAAACAwAAAAACAgAAAAAACAAAAAABCgAAAAACCgAAAAAACgAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAFgAAAAABBwAAAAADAgAAAAAABwAAAAAAAgAAAAAAEwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAABwAAAAABBwAAAAADAgAAAAAAFgAAAAAEAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAABwAAAAAAAgAAAAAABwAAAAADBwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAFgAAAAAFFgAAAAABBwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAABwAAAAAAFgAAAAAFBwAAAAADBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BQAAAAAAAwAAAAABAgAAAAAACAAAAAABCgAAAAABCQAAAAAACgAAAAADCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABQAAAAACAwAAAAABAgAAAAAACAAAAAACCgAAAAABCgAAAAACCgAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAFgAAAAAABwAAAAADAgAAAAAABwAAAAADAgAAAAAAEwAAAAABAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAABwAAAAAABwAAAAACAgAAAAAAFgAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAABwAAAAACAgAAAAAABwAAAAACBwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAFgAAAAAAFgAAAAAGBwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAABwAAAAACFgAAAAAABwAAAAABBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,2: ind: 7,2 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAAAEAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAwAAAAABBQAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAAB + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAACEAAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAEAAAAAADEAAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAAAEAAAAAABEAAAAAABAgAAAAAAAwAAAAADBQAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAD version: 6 7,3: ind: 7,3 - tiles: AgAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAACAgAAAAAAAwAAAAAABQAAAAACAwAAAAACAgAAAAAAAwAAAAACBQAAAAABAgAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACAgAAAAAAAwAAAAADBQAAAAACAwAAAAABAgAAAAAAAwAAAAABBQAAAAABAgAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAADEAAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAABBQAAAAADAgAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAABEAAAAAAAEAAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAEAAAAAADEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAAABQAAAAACBQAAAAACBQAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAABwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAGgAAAAAAGgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAAABwAAAAABBwAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAA + tiles: AgAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAACEAAAAAABEAAAAAABAgAAAAAAAwAAAAADBQAAAAADAwAAAAADAgAAAAAAAwAAAAADBQAAAAAAAgAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAACEAAAAAAAAgAAAAAAAwAAAAADBQAAAAADAwAAAAAAAgAAAAAAAwAAAAACBQAAAAAAAgAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAAAEAAAAAADEAAAAAADEAAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAgAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAAAEAAAAAADEAAAAAADEAAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAEAAAAAABAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABBQAAAAAABQAAAAAABQAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABGgAAAAAAGgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAABBwAAAAADBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAD version: 6 7,4: ind: 7,4 - tiles: AwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACFAAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADFAAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAFAAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAACFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAwAAAAAD + tiles: AwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADFAAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACFAAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAFAAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAABFAAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADFAAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAADAgAAAAAAAgAAAAAAAwAAAAAC version: 6 7,5: ind: 7,5 - tiles: AwAAAAADAwAAAAABAwAAAAAAAgAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAACEAAAAAADEAAAAAABEAAAAAABEAAAAAADEAAAAAAAEAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAEAAAAAAAEQAAAAADEQAAAAABEQAAAAADEQAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAAAEAAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAEAAAAAACEQAAAAACEQAAAAACEQAAAAACEQAAAAACEAAAAAADEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAgAAAAAAEAAAAAABEQAAAAADEQAAAAACEQAAAAAAEQAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAgAAAAAAEAAAAAAAEQAAAAABEQAAAAADEQAAAAABEQAAAAABEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAEAAAAAAAEQAAAAAAEQAAAAACEQAAAAABEQAAAAACEAAAAAADEAAAAAACAgAAAAAAEAAAAAACEAAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAABAgAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAACwAAAAACCwAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABCwAAAAAACwAAAAADAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACCwAAAAABCwAAAAADAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACCwAAAAACCwAAAAACAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABCwAAAAACCwAAAAADAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAB + tiles: AwAAAAADAwAAAAAAAwAAAAABAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAABEAAAAAAAEAAAAAAAEAAAAAADEAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAEAAAAAAAEQAAAAABEQAAAAADEQAAAAADEQAAAAABEAAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAEAAAAAACEQAAAAAAEQAAAAAAEQAAAAADEQAAAAABEAAAAAACEAAAAAAAEAAAAAACEAAAAAACEAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAgAAAAAAEAAAAAAAEQAAAAACEQAAAAACEQAAAAADEQAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAEAAAAAABEQAAAAAAEQAAAAABEQAAAAACEQAAAAAAEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAEAAAAAACEQAAAAACEQAAAAABEQAAAAAAEQAAAAADEAAAAAADEAAAAAACAgAAAAAAEAAAAAAAEAAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAgAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAADEAAAAAABEAAAAAAAAgAAAAAAEAAAAAABEAAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAACwAAAAAACwAAAAABAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABCwAAAAADCwAAAAADAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABCwAAAAABCwAAAAADAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADCwAAAAACCwAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAACwAAAAAACwAAAAACAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAC version: 6 7,6: ind: 7,6 - tiles: AwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACDwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADDwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABBwAAAAACAwAAAAADHAAAAAADHAAAAAACHAAAAAAAHAAAAAACAwAAAAACAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABBwAAAAACAwAAAAACHAAAAAAAHAAAAAACHAAAAAADHAAAAAACAwAAAAABAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAABwAAAAACAwAAAAABHAAAAAACHAAAAAABHAAAAAABHAAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACHAAAAAADHAAAAAAAHAAAAAACHAAAAAAAAwAAAAACAwAAAAADBwAAAAABBwAAAAADBwAAAAABBwAAAAADBwAAAAABBwAAAAAAAgAAAAAAAwAAAAADAwAAAAABHAAAAAABHAAAAAABHAAAAAACHAAAAAACHAAAAAAAAwAAAAABAgAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAADAgAAAAAAAwAAAAAB + tiles: AwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACDwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABDwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADBwAAAAAAAwAAAAABHAAAAAADHAAAAAADHAAAAAADHAAAAAABAwAAAAAAAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABBwAAAAABAwAAAAACHAAAAAADHAAAAAADHAAAAAACHAAAAAADAwAAAAABAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABBwAAAAADAwAAAAADHAAAAAAAHAAAAAADHAAAAAADHAAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADHAAAAAADHAAAAAADHAAAAAADHAAAAAACAwAAAAABAwAAAAADBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAADBwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAABHAAAAAACAwAAAAADAgAAAAAABwAAAAABPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAACAgAAAAAAAwAAAAAB version: 6 7,7: ind: 7,7 - tiles: HAAAAAABHAAAAAACHAAAAAACHAAAAAAAHAAAAAABHAAAAAADAwAAAAABAgAAAAAABwAAAAABPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAACFAAAAAAAAwAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACAwAAAAAAAgAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAACFAAAAAAAAwAAAAACHAAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABAwAAAAACAwAAAAADAgAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAABFAAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADAgAAAAAAAwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAACFAAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAACFAAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAAAFAAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADBQAAAAACBQAAAAACBQAAAAADAwAAAAAAAwAAAAADAwAAAAADBQAAAAAABQAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAABBQAAAAADBQAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAABBQAAAAACBQAAAAACBQAAAAADAwAAAAACBQAAAAADBQAAAAABBQAAAAAAAwAAAAADAgAAAAAAAwAAAAADBQAAAAAABQAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAAABQAAAAACBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADBQAAAAABBQAAAAAB + tiles: HAAAAAACHAAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAABAwAAAAAAAgAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAAAFAAAAAAAAwAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAADHAAAAAADHAAAAAADAwAAAAABAgAAAAAABwAAAAACPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAADFAAAAAAAAwAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACAwAAAAABAwAAAAADAgAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAABFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADAgAAAAAAAwAAAAACFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADFAAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABFAAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAAABQAAAAACBQAAAAADBQAAAAABAwAAAAACAwAAAAABAwAAAAADBQAAAAACBQAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAACBQAAAAABBQAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADBQAAAAACBQAAAAAABQAAAAACAwAAAAADBQAAAAABBQAAAAAABQAAAAAAAwAAAAACAgAAAAAAAwAAAAADBQAAAAADBQAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAABBQAAAAACBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAAABQAAAAACBQAAAAAB version: 6 7,8: ind: 7,8 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABBQAAAAACBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAADBQAAAAACBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAADCgAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACBQAAAAADAwAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACBQAAAAACAwAAAAACAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAAABQAAAAACAwAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAABQAAAAAAAwAAAAADAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADBQAAAAABBQAAAAABAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAABCgAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAACAAAAAABCAAAAAACCAAAAAAC + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAABBQAAAAADBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAAABQAAAAACBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACBQAAAAADAwAAAAACAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADBQAAAAABAwAAAAADAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAABQAAAAADAwAAAAACAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABBQAAAAADAwAAAAADAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAACBQAAAAABBQAAAAABAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAADCgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAADCAAAAAADCAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAACAAAAAABCAAAAAADCAAAAAAA version: 6 7,9: ind: 7,9 - tiles: AQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAADBQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACBQAAAAABBQAAAAACBQAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAwAAAAABAgAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAABAwAAAAABAgAAAAAACAAAAAACCgAAAAABCgAAAAACCgAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA + tiles: AQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAgAAAAAACAAAAAABCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAACBQAAAAADBQAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABBQAAAAADBQAAAAACBQAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAADAwAAAAABAgAAAAAACAAAAAAACgAAAAACCgAAAAAACgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA version: 6 8,2: ind: 8,2 - tiles: AQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAwAAAAAABQAAAAADAwAAAAADBQAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAwAAAAACBQAAAAABAwAAAAADBQAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAAAAgAAAAAAAwAAAAADAwAAAAABBQAAAAADAwAAAAABBQAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAADCAAAAAAAAgAAAAAA + tiles: AQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAAABQAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAwAAAAAABQAAAAADAwAAAAACBQAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAADAgAAAAAAAwAAAAACAwAAAAADBQAAAAABAwAAAAAABQAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAADCAAAAAABAgAAAAAA version: 6 8,3: ind: 8,3 - tiles: AwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAABAgAAAAAAAwAAAAACAwAAAAABBQAAAAACAwAAAAAABQAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAACAgAAAAAAAwAAAAADAwAAAAAABQAAAAAAAwAAAAABBQAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABBQAAAAADAwAAAAABBQAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAACFAAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABFAAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADFAAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAAAFAAAAAAACAAAAAADCAAAAAADCAAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACFAAAAAAACAAAAAABCAAAAAADCAAAAAACCAAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACFAAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAgAAAAAACAAAAAACAwAAAAABAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAADFAAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAABCAAAAAAACAAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAACAAAAAADAwAAAAACAgAAAAAACAAAAAACCgAAAAAACAAAAAAACAAAAAACCgAAAAADCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAADAgAAAAAAAgAAAAAA + tiles: AwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAACCAAAAAACAgAAAAAAAwAAAAACAwAAAAABBQAAAAADAwAAAAABBQAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAABCAAAAAACAgAAAAAAAwAAAAAAAwAAAAAABQAAAAABAwAAAAAABQAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACBQAAAAABAwAAAAAABQAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABFAAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADFAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADFAAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAFAAAAAAACAAAAAAACAAAAAAACAAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADFAAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADFAAAAAAACAAAAAADCAAAAAABCAAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAACAAAAAADAwAAAAADAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAACAAAAAABFAAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAADCAAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAACAAAAAABAwAAAAAAAgAAAAAACAAAAAACCgAAAAADCAAAAAABCAAAAAACCgAAAAADCAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAA version: 6 8,4: ind: 8,4 - tiles: AwAAAAADAgAAAAAACAAAAAACCgAAAAADCAAAAAACCAAAAAADCgAAAAABCAAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAABAwAAAAABAgAAAAAACAAAAAADCgAAAAABCAAAAAAACAAAAAACCgAAAAACCAAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAACAwAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAADCAAAAAABCAAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAACAAAAAADCAAAAAADCAAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAAAAwAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAAACAAAAAACAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAACCAAAAAACCAAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCgAAAAADCAAAAAAACAAAAAADCgAAAAAACAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADCAAAAAADCAAAAAABCgAAAAABCAAAAAADCAAAAAACCgAAAAACCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAACCgAAAAACCAAAAAACCAAAAAABCgAAAAABCAAAAAACAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAABCAAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAACAgAAAAAACAAAAAABCgAAAAACCAAAAAACCAAAAAADCgAAAAACCAAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAADAwAAAAABAgAAAAAACAAAAAAACgAAAAABCAAAAAACCAAAAAACCgAAAAAACAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAACCAAAAAACCAAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAAAAwAAAAACAgAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAAACAAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAABCAAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAACAAAAAADCgAAAAADCAAAAAACCAAAAAADCgAAAAABCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABCAAAAAADCAAAAAACCgAAAAABCAAAAAADCAAAAAAACgAAAAADCAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAAACgAAAAABCAAAAAADCAAAAAAACgAAAAACCAAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAABCAAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 8,5: ind: 8,5 - tiles: AwAAAAACAwAAAAACAgAAAAAACwAAAAACCwAAAAAACwAAAAAACwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAACwAAAAAACwAAAAADCwAAAAAACwAAAAABCwAAAAACCwAAAAAACwAAAAADCwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAACwAAAAABCwAAAAABCwAAAAADCwAAAAABCwAAAAABCwAAAAACCwAAAAACCwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAACwAAAAADCwAAAAADCwAAAAABCwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAAAAwAAAAACAwAAAAABAgAAAAAACAAAAAABCAAAAAACDgAAAAAADgAAAAACDgAAAAACDgAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAADCAAAAAAADgAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAACAwAAAAACCAAAAAAACAAAAAABCAAAAAADDgAAAAADCAAAAAAACgAAAAADCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAACCAAAAAADDgAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAAACAAAAAACDgAAAAADDgAAAAADDgAAAAACDgAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAAA + tiles: AwAAAAABAwAAAAABAgAAAAAACwAAAAACCwAAAAAACwAAAAADCwAAAAACCwAAAAAACwAAAAACCwAAAAACCwAAAAABAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAACwAAAAACCwAAAAAACwAAAAADCwAAAAADCwAAAAADCwAAAAAACwAAAAACCwAAAAACAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAwAAAAADAwAAAAACAgAAAAAACwAAAAAACwAAAAABCwAAAAACCwAAAAAACwAAAAABCwAAAAACCwAAAAAACwAAAAABAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAACwAAAAADCwAAAAADCwAAAAACCwAAAAAACwAAAAABCwAAAAAACwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAABCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAwAAAAADAwAAAAADAgAAAAAACAAAAAAACAAAAAACDgAAAAABDgAAAAACDgAAAAADDgAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAADAwAAAAAAAwAAAAAAAgAAAAAACAAAAAABCAAAAAAADgAAAAADCAAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAADAwAAAAADCAAAAAACCAAAAAAACAAAAAACDgAAAAABCAAAAAABCgAAAAAACAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAgAAAAAACAAAAAABCAAAAAABDgAAAAADCAAAAAADCAAAAAADCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAADCAAAAAABDgAAAAACDgAAAAAADgAAAAABDgAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACFAAAAAAAFAAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAD version: 6 8,6: ind: 8,6 - tiles: AwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAFAAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADFAAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAACAAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAACAAAAAABCAAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAACAAAAAAACAAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAACAAAAAADCAAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAACAAAAAACCAAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAACCAAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAACAAAAAACAwAAAAAAAwAAAAADFAAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAACAAAAAABCAAAAAABAwAAAAAAAwAAAAACFAAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAgAAAAAACAAAAAACCAAAAAADAwAAAAABAwAAAAABFAAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAABQAAAAABAwAAAAAABQAAAAACAwAAAAABAgAAAAAACAAAAAACCAAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAACAwAAAAACBQAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAABAwAAAAADFAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABFAAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAACAAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAgAAAAAACAAAAAACCAAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAgAAAAAACAAAAAAACAAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCAAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAACAAAAAABCAAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAACAAAAAAACAAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAACAAAAAAAAwAAAAABAwAAAAADFAAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADFAAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAACAAAAAAACAAAAAABAwAAAAADAwAAAAADFAAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAFAAAAAAAAwAAAAAABQAAAAADAwAAAAAABQAAAAADAwAAAAACAgAAAAAACAAAAAAACAAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAACAwAAAAAABQAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAA version: 6 8,7: ind: 8,7 - tiles: AwAAAAADAwAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAADAwAAAAADBQAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACFAAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAFAAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAFAAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAACgAAAAABCAAAAAACCAAAAAACCAAAAAACCgAAAAACAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABQAAAAACAwAAAAADAgAAAAAACgAAAAAACAAAAAADCAAAAAAACAAAAAADCgAAAAABAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABQAAAAADAwAAAAABAgAAAAAACgAAAAADCAAAAAAACAAAAAACCAAAAAADCgAAAAABAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBQAAAAACAwAAAAADAwAAAAABAwAAAAAABQAAAAACAwAAAAADBQAAAAAAAwAAAAABBQAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAwAAAAADAgAAAAAAAwAAAAAABQAAAAACAwAAAAACBQAAAAADAwAAAAACBQAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAC + tiles: AwAAAAACAwAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAACAwAAAAACBQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABFAAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACFAAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACgAAAAABCAAAAAAACAAAAAADCAAAAAAACgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBQAAAAAAAwAAAAAAAgAAAAAACgAAAAAACAAAAAADCAAAAAAACAAAAAACCgAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBQAAAAACAwAAAAABAgAAAAAACgAAAAAACAAAAAABCAAAAAADCAAAAAACCgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBQAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABQAAAAACAwAAAAADAwAAAAADAwAAAAABBQAAAAABAwAAAAABBQAAAAABAwAAAAABBQAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAACAwAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAADBQAAAAADAwAAAAADBQAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAA version: 6 8,8: ind: 8,8 - tiles: BQAAAAADAwAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAAABQAAAAAAAwAAAAAABQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAABQAAAAABBQAAAAACBQAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACBQAAAAABBQAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACBQAAAAABAwAAAAABBQAAAAADBQAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACBQAAAAADAwAAAAACBQAAAAAABQAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAABQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAADBQAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAABQAAAAADAwAAAAAABQAAAAACBQAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAAABwAAAAACBwAAAAACAwAAAAADAgAAAAAA + tiles: BQAAAAACAwAAAAACAgAAAAAAAwAAAAAABQAAAAACAwAAAAACBQAAAAAAAwAAAAADBQAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAABQAAAAACBQAAAAACBQAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACBQAAAAADBQAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACQAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACBQAAAAABAwAAAAAABQAAAAABBQAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACBQAAAAADAwAAAAACBQAAAAACBQAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABBQAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAABBQAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAABQAAAAADAwAAAAABBQAAAAAABQAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAACAwAAAAACAgAAAAAA version: 6 8,9: ind: 8,9 - tiles: CAAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAABAwAAAAABCAAAAAABCAAAAAAACAAAAAAACAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAABBwAAAAACAgAAAAAACAAAAAABAgAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAACCAAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAABAgAAAAAACAAAAAADCAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAADAwAAAAADCAAAAAACCAAAAAAACAAAAAACCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAAAgAAAAAACAAAAAADAgAAAAAACAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAACCAAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 9,2: ind: 9,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 9,3: ind: 9,3 - tiles: AwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACBQAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADBQAAAAABAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAABCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABBQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADBQAAAAADAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADCAAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAACCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAA version: 6 9,4: ind: 9,4 - tiles: CAAAAAABCAAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAADCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAACCAAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAA + tiles: CAAAAAAACAAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAADCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAAA version: 6 9,5: ind: 9,5 - tiles: AwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: HQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 9,6: ind: 9,6 - tiles: AwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAFAAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAFAAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAACAAAAAABCAAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCAAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAACAAAAAADCAAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADCAAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABCAAAAAACCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAFAAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAACCAAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACAAAAAADCAAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAACAAAAAAACAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACCAAAAAACCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACCAAAAAADCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAA version: 6 9,7: ind: 9,7 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAABwAAAAABBwAAAAACBwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADBwAAAAABBwAAAAABBwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAADBwAAAAAABwAAAAAABwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADBwAAAAACBwAAAAADBwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACBwAAAAABBwAAAAAABwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAABwAAAAADBwAAAAADBwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAD + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAABBwAAAAAABwAAAAACBwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADBwAAAAACBwAAAAABBwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABBwAAAAAABwAAAAACBwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACBwAAAAACBwAAAAABBwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADBwAAAAACBwAAAAABBwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAC version: 6 9,8: ind: 9,8 - tiles: BwAAAAADBwAAAAACBwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAABwAAAAABBwAAAAADAgAAAAAABwAAAAABBwAAAAABAgAAAAAABwAAAAAABwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAABwAAAAADBwAAAAABAgAAAAAABwAAAAADBwAAAAACAgAAAAAABwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAACAgAAAAAABwAAAAABBwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAACAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAADBwAAAAACBwAAAAACBwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABBwAAAAACBwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAACBwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAACAgAAAAAABwAAAAACBwAAAAAAAgAAAAAABwAAAAAABwAAAAADAgAAAAAABwAAAAADBwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAACCAAAAAABAgAAAAAABwAAAAADBwAAAAAAAgAAAAAABwAAAAADBwAAAAACAgAAAAAABwAAAAAABwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAACAAAAAACCAAAAAAACAAAAAACAgAAAAAABwAAAAACBwAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAADBwAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAABwAAAAAABwAAAAABAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAABBwAAAAACAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAABwAAAAADBwAAAAABAgAAAAAABwAAAAACBwAAAAAAAgAAAAAABwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAABwAAAAAABwAAAAADAgAAAAAABwAAAAADBwAAAAACAgAAAAAABwAAAAACBwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAADBwAAAAACBwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAACBwAAAAADBwAAAAADBwAAAAACBwAAAAADBwAAAAACBwAAAAABBwAAAAADBwAAAAADAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAABFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAAAAgAAAAAABwAAAAADBwAAAAADAgAAAAAABwAAAAAABwAAAAADAgAAAAAABwAAAAADBwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAAAAgAAAAAABwAAAAADBwAAAAADAgAAAAAABwAAAAADBwAAAAACAgAAAAAABwAAAAAABwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAABwAAAAABBwAAAAABAgAAAAAABwAAAAAABwAAAAABAgAAAAAABwAAAAAABwAAAAAA version: 6 9,9: ind: 9,9 - tiles: AwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,6: ind: 0,6 @@ -1645,6 +1645,7 @@ entities: 14806: 29,121 14807: 29,121 14808: 29,122 + 14810: 35,120 - node: cleanable: True zIndex: 1 @@ -1692,7 +1693,6 @@ entities: 8220: 151,85 8221: 141,85 8222: 136,86 - 8223: 133,85 8224: 140,91 10198: 77,156 13842: 50,100 @@ -3863,6 +3863,7 @@ entities: 14797: 125,153 14798: 128,148 14799: 130,148 + 14812: 32,119 - node: cleanable: True zIndex: 1 @@ -4301,6 +4302,7 @@ entities: 12197: 63,85 12198: 62,81 14556: 129,113 + 14811: 30,119 - node: cleanable: True zIndex: 1 @@ -6718,7 +6720,6 @@ entities: 12089: 124,108 12289: 55,114 13646: 55,105 - 13647: 55,106 13648: 55,107 13725: 66,50 13726: 66,51 @@ -6731,6 +6732,7 @@ entities: 14069: 87,118 14243: 82,48 14360: 109,53 + 14809: 55,106 - node: zIndex: 1 color: '#D4D4D496' @@ -11527,6 +11529,8 @@ entities: 14024: 102,149 14025: 102,150 14026: 102,151 + 14813: 135,109 + 14814: 135,110 - node: zIndex: 1 color: '#FFFFFFFF' @@ -11936,6 +11940,8 @@ entities: 14022: 97,150 14498: 28,70 14499: 28,71 + 14815: 135,109 + 14816: 135,110 - node: zIndex: 1 color: '#FFFFFFFF' @@ -15798,7 +15804,7 @@ entities: 36,19: 1: 51709 33,21: - 1: 20408 + 1: 20440 33,22: 1: 65535 33,23: @@ -16427,6 +16433,13 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 27186 + - uid: 28191 + components: + - type: Transform + parent: 23071 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 23071 - proto: AirAlarm entities: - uid: 143 @@ -21806,11 +21819,6 @@ entities: - type: Transform pos: 140.5,95.5 parent: 1 - - uid: 28294 - components: - - type: Transform - pos: 131.5,116.5 - parent: 1 - uid: 30229 components: - type: MetaData @@ -22061,6 +22069,11 @@ entities: parent: 1 - proto: AirlockMaintLocked entities: + - uid: 110 + components: + - type: Transform + pos: 131.5,116.5 + parent: 1 - uid: 184 components: - type: Transform @@ -23172,15 +23185,6 @@ entities: - type: Transform pos: 85.5,87.5 parent: 1 -- proto: AirlockMedicalScienceLocked - entities: - - uid: 17778 - components: - - type: MetaData - name: robotics airlock - - type: Transform - pos: 60.5,98.5 - parent: 1 - proto: AirlockQuartermasterGlassLocked entities: - uid: 19375 @@ -23364,6 +23368,13 @@ entities: parent: 1 - proto: AirlockScienceLocked entities: + - uid: 124 + components: + - type: MetaData + name: surgery airlock + - type: Transform + pos: 60.5,98.5 + parent: 1 - uid: 216 components: - type: MetaData @@ -29303,7 +29314,8 @@ entities: - uid: 23772 components: - type: Transform - pos: 59.678555,57.596046 + rot: -12.566370614359172 rad + pos: 59.88987,57.573822 parent: 1 - uid: 27072 components: @@ -29369,12 +29381,14 @@ entities: - uid: 22806 components: - type: Transform - pos: 135.56174,72.2539 + rot: -18.84955592153876 rad + pos: 135.58865,73.32894 parent: 1 - uid: 23138 components: - type: Transform - pos: 142.50137,52.19984 + rot: -18.84955592153876 rad + pos: 142.52057,52.14776 parent: 1 - proto: BoxInflatable entities: @@ -29461,7 +29475,15 @@ entities: - uid: 22758 components: - type: Transform - pos: 135.43674,73.41015 + rot: -18.84955592153876 rad + pos: 135.42892,73.65533 + parent: 1 +- proto: BrbSign + entities: + - uid: 33873 + components: + - type: Transform + pos: 59.343575,57.763638 parent: 1 - proto: BriefcaseBrownFilled entities: @@ -30236,6 +30258,11 @@ entities: - type: Transform pos: 76.5,132.5 parent: 1 + - uid: 2180 + components: + - type: Transform + pos: 110.5,23.5 + parent: 1 - uid: 2202 components: - type: Transform @@ -30971,6 +30998,11 @@ entities: - type: Transform pos: 95.5,56.5 parent: 1 + - uid: 3801 + components: + - type: Transform + pos: 31.5,119.5 + parent: 1 - uid: 3830 components: - type: Transform @@ -31311,6 +31343,11 @@ entities: - type: Transform pos: 76.5,149.5 parent: 1 + - uid: 4790 + components: + - type: Transform + pos: 110.5,27.5 + parent: 1 - uid: 4822 components: - type: Transform @@ -38581,6 +38618,16 @@ entities: - type: Transform pos: 60.5,97.5 parent: 1 + - uid: 17750 + components: + - type: Transform + pos: 144.5,81.5 + parent: 1 + - uid: 17900 + components: + - type: Transform + pos: 140.5,81.5 + parent: 1 - uid: 18022 components: - type: Transform @@ -52291,11 +52338,6 @@ entities: - type: Transform pos: 112.5,27.5 parent: 1 - - uid: 33101 - components: - - type: Transform - pos: 112.5,28.5 - parent: 1 - uid: 33102 components: - type: Transform @@ -54651,11 +54693,6 @@ entities: - type: Transform pos: 30.5,119.5 parent: 1 - - uid: 35703 - components: - - type: Transform - pos: 29.5,119.5 - parent: 1 - uid: 35704 components: - type: Transform @@ -76026,11 +76063,6 @@ entities: - type: Transform pos: 72.5,47.5 parent: 1 - - uid: 18353 - components: - - type: Transform - pos: 135.5,86.5 - parent: 1 - uid: 18356 components: - type: Transform @@ -86086,8 +86118,8 @@ entities: - uid: 20973 components: - type: Transform - rot: -31.415926535897945 rad - pos: 50.349102,92.35627 + rot: -25.132741228718352 rad + pos: 50.56542,92.32306 parent: 1 - proto: CaptainIDCard entities: @@ -87840,18 +87872,6 @@ entities: rot: -1.5707963267948966 rad pos: 139.5,91.5 parent: 1 - - uid: 3854 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 136.5,85.5 - parent: 1 - - uid: 3861 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 138.5,85.5 - parent: 1 - uid: 3873 components: - type: Transform @@ -88635,11 +88655,6 @@ entities: - type: Transform pos: 88.5,33.5 parent: 1 - - uid: 13632 - components: - - type: Transform - pos: 134.5,86.5 - parent: 1 - uid: 13658 components: - type: Transform @@ -89181,12 +89196,6 @@ entities: - type: Transform pos: 110.5,35.5 parent: 1 - - uid: 18310 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,26.5 - parent: 1 - uid: 18350 components: - type: Transform @@ -89626,12 +89635,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,79.5 parent: 1 - - uid: 23596 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,120.5 - parent: 1 - uid: 23660 components: - type: Transform @@ -89742,12 +89745,6 @@ entities: rot: 1.5707963267948966 rad pos: 147.5,81.5 parent: 1 - - uid: 25217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 137.5,85.5 - parent: 1 - uid: 25288 components: - type: Transform @@ -89813,11 +89810,6 @@ entities: rot: 1.5707963267948966 rad pos: 88.5,47.5 parent: 1 - - uid: 28191 - components: - - type: Transform - pos: 33.5,119.5 - parent: 1 - uid: 28436 components: - type: Transform @@ -95994,30 +95986,6 @@ entities: rot: 1.5707963267948966 rad pos: 92.5,31.5 parent: 1 - - uid: 33872 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,23.5 - parent: 1 - - uid: 33873 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,23.5 - parent: 1 - - uid: 33874 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,24.5 - parent: 1 - - uid: 33876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,27.5 - parent: 1 - uid: 33877 components: - type: Transform @@ -96036,12 +96004,6 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,30.5 parent: 1 - - uid: 33881 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,25.5 - parent: 1 - uid: 33883 components: - type: Transform @@ -96270,30 +96232,6 @@ entities: rot: 1.5707963267948966 rad pos: 61.5,24.5 parent: 1 - - uid: 33958 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,22.5 - parent: 1 - - uid: 33959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,21.5 - parent: 1 - - uid: 33960 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,23.5 - parent: 1 - - uid: 33961 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,20.5 - parent: 1 - uid: 33986 components: - type: Transform @@ -97256,24 +97194,6 @@ entities: rot: 3.141592653589793 rad pos: 60.5,149.5 parent: 1 - - uid: 35919 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,119.5 - parent: 1 - - uid: 35922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,119.5 - parent: 1 - - uid: 35923 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,119.5 - parent: 1 - uid: 35924 components: - type: Transform @@ -97321,12 +97241,6 @@ entities: rot: 3.141592653589793 rad pos: 96.5,84.5 parent: 1 - - uid: 35959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,119.5 - parent: 1 - uid: 35960 components: - type: Transform @@ -98340,24 +98254,6 @@ entities: rot: -1.5707963267948966 rad pos: 132.5,86.5 parent: 1 - - uid: 37204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 133.5,86.5 - parent: 1 - - uid: 37205 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 135.5,86.5 - parent: 1 - - uid: 37209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 135.5,85.5 - parent: 1 - proto: Chair entities: - uid: 107 @@ -98420,6 +98316,12 @@ entities: - type: Transform pos: 130.5,113.5 parent: 1 + - uid: 3464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,108.5 + parent: 1 - uid: 3793 components: - type: Transform @@ -98821,6 +98723,12 @@ entities: rot: -1.5707963267948966 rad pos: 81.5,84.5 parent: 1 + - uid: 18091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,107.5 + parent: 1 - uid: 18135 components: - type: Transform @@ -101024,12 +100932,6 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,92.5 parent: 1 - - uid: 20417 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,86.5 - parent: 1 - uid: 20476 components: - type: Transform @@ -102035,7 +101937,8 @@ entities: - uid: 26504 components: - type: Transform - pos: 86.52094,55.628357 + rot: -25.132741228718352 rad + pos: 86.396255,55.013668 parent: 1 - proto: CigPackGreen entities: @@ -103410,8 +103313,8 @@ entities: - uid: 20971 components: - type: Transform - rot: -12.566370614359172 rad - pos: 49.668606,86.363846 + rot: -25.132741228718352 rad + pos: 47.357082,86.58625 parent: 1 - proto: ClothingBeltUtilityFilled entities: @@ -103438,7 +103341,8 @@ entities: - uid: 20976 components: - type: Transform - pos: 50.490788,92.148834 + rot: -25.132741228718352 rad + pos: 50.53764,92.05917 parent: 1 - proto: ClothingEyesGlassesChemical entities: @@ -103452,8 +103356,8 @@ entities: - uid: 16079 components: - type: Transform - rot: -12.566370614359172 rad - pos: 129.44867,135.59929 + rot: -18.84955592153876 rad + pos: 129.40298,135.78955 parent: 1 - proto: ClothingEyesGlassesSunglasses entities: @@ -103544,7 +103448,8 @@ entities: - uid: 20956 components: - type: Transform - pos: 63.492237,92.968124 + rot: -25.132741228718352 rad + pos: 61.578194,97.46602 parent: 1 - proto: ClothingHeadHatBeretFrench entities: @@ -103769,7 +103674,8 @@ entities: - uid: 20952 components: - type: Transform - pos: 63.406113,93.697296 + rot: -25.132741228718352 rad + pos: 63.369854,93.452126 parent: 1 - proto: ClothingMaskGas entities: @@ -103989,7 +103895,8 @@ entities: - uid: 37222 components: - type: Transform - pos: 129.5,134.5 + rot: -18.84955592153876 rad + pos: 128.46548,134.56732 parent: 1 - uid: 37309 components: @@ -104583,6 +104490,11 @@ entities: rot: -1.5707963267948966 rad pos: 89.5,56.5 parent: 1 + - uid: 37608 + components: + - type: Transform + pos: 94.5,115.5 + parent: 1 - proto: ComputerFrame entities: - uid: 6549 @@ -104750,11 +104662,11 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,104.5 parent: 1 - - uid: 20422 + - uid: 29624 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,86.5 + pos: 46.5,87.5 parent: 1 - proto: ComputerRoboticsControl entities: @@ -105697,10 +105609,10 @@ entities: parent: 1 - proto: CrateServiceTheatre entities: - - uid: 26764 + - uid: 37602 components: - type: Transform - pos: 104.5,61.5 + pos: 105.5,61.5 parent: 1 - proto: CrateTrainingBombs entities: @@ -106178,6 +106090,13 @@ entities: - type: Transform pos: 114.5,17.5 parent: 1 +- proto: DefaultStationBeaconEvac + entities: + - uid: 25217 + components: + - type: Transform + pos: 145.5,152.5 + parent: 1 - proto: DefaultStationBeaconEVAStorage entities: - uid: 2553 @@ -106478,21 +106397,29 @@ entities: - type: Transform pos: 75.5,115.5 parent: 1 + missingComponents: + - Item - uid: 16579 components: - type: Transform pos: 115.5,122.5 parent: 1 + missingComponents: + - Item - uid: 18215 components: - type: Transform pos: 84.539505,109.665535 parent: 1 + missingComponents: + - Item - uid: 19391 components: - type: Transform pos: 137.52434,102.312515 parent: 1 + missingComponents: + - Item - uid: 20972 components: - type: Transform @@ -106503,16 +106430,22 @@ entities: - type: Transform pos: 132.35202,75.57144 parent: 1 + missingComponents: + - Item - uid: 26579 components: - type: Transform pos: 117.713455,105.588936 parent: 1 + missingComponents: + - Item - uid: 26580 components: - type: Transform pos: 99.25979,105.57845 parent: 1 + missingComponents: + - Item - uid: 27183 components: - type: Transform @@ -107754,6 +107687,17 @@ entities: rot: 1.5707963267948966 rad pos: 95.5,50.5 parent: 1 + - uid: 20417 + components: + - type: Transform + pos: 57.5,107.5 + parent: 1 + - uid: 20422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,63.5 + parent: 1 - uid: 20587 components: - type: Transform @@ -107817,6 +107761,17 @@ entities: rot: 3.141592653589793 rad pos: 139.5,55.5 parent: 1 + - uid: 22953 + components: + - type: Transform + pos: 57.5,77.5 + parent: 1 + - uid: 22963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 150.5,117.5 + parent: 1 - uid: 25513 components: - type: Transform @@ -107883,18 +107838,6 @@ entities: rot: 3.141592653589793 rad pos: 129.5,101.5 parent: 1 - - uid: 110 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,107.5 - parent: 1 - - uid: 124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,63.5 - parent: 1 - uid: 1747 components: - type: Transform @@ -107960,18 +107903,6 @@ entities: - type: Transform pos: 122.5,141.5 parent: 1 - - uid: 17039 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,63.5 - parent: 1 - - uid: 17750 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,112.5 - parent: 1 - uid: 17800 components: - type: Transform @@ -107984,12 +107915,6 @@ entities: rot: 3.141592653589793 rad pos: 120.5,64.5 parent: 1 - - uid: 17900 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,77.5 - parent: 1 - uid: 17910 components: - type: Transform @@ -116564,12 +116489,6 @@ entities: rot: 1.5707963267948966 rad pos: 151.5,117.5 parent: 1 - - uid: 29624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 150.5,117.5 - parent: 1 - uid: 29625 components: - type: Transform @@ -118968,6 +118887,17 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,96.5 parent: 1 + - uid: 20983 + components: + - type: Transform + pos: 84.5,63.5 + parent: 1 + - uid: 22940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,112.5 + parent: 1 - uid: 25538 components: - type: Transform @@ -119175,8 +119105,8 @@ entities: - uid: 16152 components: - type: Transform - rot: -12.566370614359172 rad - pos: 129.7259,135.31372 + rot: -18.84955592153876 rad + pos: 128.93076,134.63676 parent: 1 - uid: 19475 components: @@ -119553,8 +119483,8 @@ entities: - uid: 18741 components: - type: Transform - rot: -37.69911184307754 rad - pos: 89.53657,57.55711 + rot: -25.132741228718352 rad + pos: 86.58144,55.643295 parent: 1 - uid: 35171 components: @@ -120953,8 +120883,8 @@ entities: - uid: 20957 components: - type: Transform - rot: -12.566370614359172 rad - pos: 63.685715,93.891304 + rot: -25.132741228718352 rad + pos: 63.661522,93.75074 parent: 1 - proto: ExosuitFabricator entities: @@ -121048,11 +120978,6 @@ entities: - type: Transform pos: 80.5,105.5 parent: 1 - - uid: 18124 - components: - - type: Transform - pos: 86.5,105.5 - parent: 1 - uid: 19502 components: - type: Transform @@ -121083,6 +121008,11 @@ entities: - type: Transform pos: 79.5,62.5 parent: 1 + - uid: 30031 + components: + - type: Transform + pos: 85.5,105.5 + parent: 1 - uid: 30831 components: - type: Transform @@ -121110,8 +121040,8 @@ entities: pos: 57.5,59.5 parent: 1 - type: FaxMachine - name: HOP - destinationAddress: HOP + name: Head of personnel + destinationAddress: Head of personnel - uid: 18187 components: - type: Transform @@ -121144,6 +121074,14 @@ entities: - type: FaxMachine name: Science destinationAddress: Science + - uid: 26764 + components: + - type: Transform + pos: 142.5,53.5 + parent: 1 + - type: FaxMachine + name: Security + destinationAddress: Security - uid: 26952 components: - type: Transform @@ -121176,6 +121114,22 @@ entities: - type: FaxMachine name: Court destinationAddress: Court + - uid: 30247 + components: + - type: Transform + pos: 125.5,142.5 + parent: 1 + - type: FaxMachine + name: Chief engineer + destinationAddress: Chief engineer + - uid: 30277 + components: + - type: Transform + pos: 38.5,108.5 + parent: 1 + - type: FaxMachine + name: Research director + destinationAddress: Research director - uid: 32398 components: - type: Transform @@ -121192,6 +121146,62 @@ entities: - type: FaxMachine name: Lawyer destinationAddress: Lawyer + - uid: 33876 + components: + - type: Transform + pos: 135.5,72.5 + parent: 1 + - type: FaxMachine + name: Warden + destinationAddress: Warden + - uid: 35922 + components: + - type: Transform + pos: 141.5,67.5 + parent: 1 + - type: FaxMachine + name: Head of security + destinationAddress: Head of security + - uid: 37596 + components: + - type: Transform + pos: 145.5,102.5 + parent: 1 + - type: FaxMachine + name: Quartermaster + destinationAddress: Quartermaster + - uid: 37598 + components: + - type: Transform + pos: 129.5,134.5 + parent: 1 + - type: FaxMachine + name: Engineering + destinationAddress: Engineering + - uid: 37599 + components: + - type: Transform + pos: 89.5,90.5 + parent: 1 + - type: FaxMachine + name: Chief medical officer + destinationAddress: Chief medical officer + - uid: 37603 + components: + - type: Transform + pos: 104.5,61.5 + parent: 1 + - type: FaxMachine + name: Theater + destinationAddress: Theater + - uid: 37604 + components: + - type: Transform + pos: 89.5,57.5 + parent: 1 + - type: FaxMachine + name: Detective + destinationAddress: Detective - proto: FaxMachineCaptain entities: - uid: 13494 @@ -125542,12 +125552,6 @@ entities: - 28348 - 18539 - 15935 - - uid: 5585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 164.5,126.5 - parent: 1 - uid: 5602 components: - type: Transform @@ -128488,11 +128492,6 @@ entities: rot: -25.132741228718352 rad pos: 135.30386,65.6239 parent: 1 - - uid: 22953 - components: - - type: Transform - pos: 144.52515,67.61508 - parent: 1 - uid: 22954 components: - type: Transform @@ -128502,7 +128501,8 @@ entities: - uid: 22955 components: - type: Transform - pos: 152.02014,66.68728 + rot: -62.83185307179591 rad + pos: 151.94147,66.552444 parent: 1 - uid: 30328 components: @@ -128979,7 +128979,8 @@ entities: - uid: 16583 components: - type: Transform - pos: 128.5,134.5 + rot: -18.84955592153876 rad + pos: 129.60437,135.3937 parent: 1 - proto: FoodBoxDonut entities: @@ -129490,10 +129491,10 @@ entities: parent: 1 - proto: FoodSoupClown entities: - - uid: 30031 + - uid: 26826 components: - type: Transform - pos: 145.46883,60.96853 + pos: 144.5,60.5 parent: 1 - proto: FoodSoupEscargot entities: @@ -178095,6 +178096,11 @@ entities: - type: Transform pos: 89.5,36.5 parent: 1 + - uid: 2643 + components: + - type: Transform + pos: 134.5,85.5 + parent: 1 - uid: 3239 components: - type: Transform @@ -178106,6 +178112,12 @@ entities: rot: 3.141592653589793 rad pos: 94.5,81.5 parent: 1 + - uid: 4836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 117.5,44.5 + parent: 1 - uid: 8595 components: - type: Transform @@ -185077,6 +185089,16 @@ entities: - type: Transform pos: 62.5,38.5 parent: 1 + - uid: 33960 + components: + - type: Transform + pos: 81.5,21.5 + parent: 1 + - uid: 33961 + components: + - type: Transform + pos: 69.5,21.5 + parent: 1 - uid: 34048 components: - type: Transform @@ -185282,6 +185304,11 @@ entities: - type: Transform pos: 64.5,158.5 parent: 1 + - uid: 35489 + components: + - type: Transform + pos: 81.5,22.5 + parent: 1 - uid: 35688 components: - type: Transform @@ -185298,6 +185325,11 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,98.5 parent: 1 + - uid: 35703 + components: + - type: Transform + pos: 69.5,22.5 + parent: 1 - uid: 35742 components: - type: Transform @@ -185788,8 +185820,8 @@ entities: - uid: 18826 components: - type: Transform - rot: -37.69911184307754 rad - pos: 86.52753,54.626137 + rot: -25.132741228718352 rad + pos: 86.60922,54.45348 parent: 1 - uid: 22765 components: @@ -186998,12 +187030,6 @@ entities: parent: 1 - proto: IntercomSecurity entities: - - uid: 22940 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 140.5,65.5 - parent: 1 - uid: 22941 components: - type: Transform @@ -187038,6 +187064,12 @@ entities: - type: Transform pos: 92.5,116.5 parent: 1 + - uid: 37205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 142.5,63.5 + parent: 1 - proto: IntercomService entities: - uid: 26517 @@ -187447,8 +187479,25 @@ entities: - uid: 23071 components: - type: Transform - pos: 142.37183,67.84626 + rot: -18.84955592153876 rad + pos: 142.08,67.657 parent: 1 + - type: HandheldLight + toggleActionEntity: 28191 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 28191 + - type: Physics + canCollide: True + - type: ActionsContainer - uid: 25290 components: - type: Transform @@ -187653,11 +187702,6 @@ entities: - type: Physics canCollide: True - type: ActionsContainer - - uid: 30034 - components: - - type: Transform - pos: 144.5,60.5 - parent: 1 - uid: 30170 components: - type: Transform @@ -187702,7 +187746,8 @@ entities: - uid: 20951 components: - type: Transform - pos: 63.2839,93.33271 + rot: -25.132741228718352 rad + pos: 63.30041,92.979904 parent: 1 - proto: LightBulb entities: @@ -188170,11 +188215,6 @@ entities: - type: Transform pos: 36.5,116.5 parent: 1 - - uid: 20983 - components: - - type: Transform - pos: 46.5,87.5 - parent: 1 - uid: 37551 components: - type: Transform @@ -188488,6 +188528,13 @@ entities: - type: Transform pos: 33.5,112.5 parent: 1 +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 28294 + components: + - type: Transform + pos: 144.45,67.81 + parent: 1 - proto: MailingUnit entities: - uid: 6255 @@ -189053,8 +189100,8 @@ entities: - uid: 20974 components: - type: Transform - rot: -31.415926535897945 rad - pos: 50.64077,91.76252 + rot: -6.217248937900877E-15 rad + pos: 46.63486,86.61769 parent: 1 - proto: Mattress entities: @@ -189373,6 +189420,11 @@ entities: - type: Transform pos: 59.5,50.5 parent: 1 + - uid: 17778 + components: + - type: Transform + pos: 142.5,82.5 + parent: 1 - proto: MMI entities: - uid: 20900 @@ -191137,11 +191189,10 @@ entities: parent: 1 - proto: PosterLegitPeriodicTable entities: - - uid: 19544 + - uid: 23596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,105.5 + pos: 86.5,105.5 parent: 1 - proto: PosterLegitRenault entities: @@ -191242,6 +191293,12 @@ entities: parent: 1 - proto: PosterLegitSecWatch entities: + - uid: 5696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,21.5 + parent: 1 - uid: 23111 components: - type: Transform @@ -191620,10 +191677,10 @@ entities: - type: Transform pos: 90.5,39.5 parent: 1 - - uid: 19336 + - uid: 37597 components: - type: Transform - pos: 145.5,102.5 + pos: 145.5,106.5 parent: 1 - proto: PottedPlant23 entities: @@ -191690,16 +191747,16 @@ entities: - type: Transform pos: 134.5,131.5 parent: 1 - - uid: 16104 - components: - - type: Transform - pos: 125.5,142.5 - parent: 1 - uid: 17709 components: - type: Transform pos: 65.5,97.5 parent: 1 + - uid: 37601 + components: + - type: Transform + pos: 128.5,146.5 + parent: 1 - proto: PottedPlant29 entities: - uid: 13885 @@ -191724,11 +191781,6 @@ entities: - type: Transform pos: 115.5,125.5 parent: 1 - - uid: 18091 - components: - - type: Transform - pos: 89.5,90.5 - parent: 1 - uid: 18230 components: - type: Transform @@ -191863,10 +191915,10 @@ entities: parent: 1 - proto: PottedPlantRD entities: - - uid: 5696 + - uid: 37606 components: - type: Transform - pos: 38.5,108.5 + pos: 39.5,108.5 parent: 1 - proto: PowerCellRecharger entities: @@ -194379,6 +194431,12 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,34.5 parent: 1 + - uid: 16104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,20.5 + parent: 1 - uid: 16584 components: - type: Transform @@ -195068,7 +195126,8 @@ entities: - uid: 11419 components: - type: Transform - pos: 63.742237,93.42646 + rot: -25.132741228718352 rad + pos: 63.65458,93.06324 parent: 1 - proto: Rack entities: @@ -196849,6 +196908,11 @@ entities: - type: Transform pos: 113.5,148.5 parent: 1 + - uid: 18124 + components: + - type: Transform + pos: 108.5,53.5 + parent: 1 - uid: 18206 components: - type: Transform @@ -197089,11 +197153,6 @@ entities: - type: Transform pos: 151.5,122.5 parent: 1 - - uid: 30253 - components: - - type: Transform - pos: 147.5,133.5 - parent: 1 - uid: 30254 components: - type: Transform @@ -197174,11 +197233,6 @@ entities: - type: Transform pos: 112.5,50.5 parent: 1 - - uid: 30277 - components: - - type: Transform - pos: 104.5,53.5 - parent: 1 - uid: 30281 components: - type: Transform @@ -197269,6 +197323,11 @@ entities: - type: Transform pos: 117.5,67.5 parent: 1 + - uid: 35959 + components: + - type: Transform + pos: 147.5,134.5 + parent: 1 - uid: 36537 components: - type: Transform @@ -197749,13 +197808,6 @@ entities: - type: Transform pos: 155.5,81.5 parent: 1 -- proto: RandomVending - entities: - - uid: 30247 - components: - - type: Transform - pos: 89.5,112.5 - parent: 1 - proto: RandomVendingDrinks entities: - uid: 5656 @@ -199101,6 +199153,11 @@ entities: - type: Transform pos: 96.5,150.5 parent: 1 + - uid: 2603 + components: + - type: Transform + pos: 69.5,21.5 + parent: 1 - uid: 2615 components: - type: Transform @@ -200654,6 +200711,11 @@ entities: - type: Transform pos: 146.5,103.5 parent: 1 + - uid: 18310 + components: + - type: Transform + pos: 69.5,22.5 + parent: 1 - uid: 18939 components: - type: Transform @@ -200934,6 +200996,11 @@ entities: - type: Transform pos: 137.5,152.5 parent: 1 + - uid: 33872 + components: + - type: Transform + pos: 81.5,22.5 + parent: 1 - uid: 33974 components: - type: Transform @@ -201029,6 +201096,11 @@ entities: - type: Transform pos: 125.5,171.5 parent: 1 + - uid: 35923 + components: + - type: Transform + pos: 81.5,21.5 + parent: 1 - uid: 36024 components: - type: Transform @@ -201221,8 +201293,8 @@ entities: - uid: 20980 components: - type: Transform - rot: -12.566370614359172 rad - pos: 49.335274,86.63468 + rot: -25.132741228718352 rad + pos: 49.357082,86.49597 parent: 1 - proto: ResearchAndDevelopmentServer entities: @@ -201759,7 +201831,8 @@ entities: - uid: 3624 components: - type: Transform - pos: 129.49147,136.44685 + rot: -18.84955592153876 rad + pos: 129.54881,136.51176 parent: 1 - type: Stack count: 5 @@ -202760,7 +202833,7 @@ entities: - type: DeviceLinkSource linkedPorts: 29743: - - Pressed: Toggle + - Pressed: DoorBolt - uid: 29753 components: - type: Transform @@ -202770,7 +202843,7 @@ entities: - type: DeviceLinkSource linkedPorts: 29744: - - Pressed: Toggle + - Pressed: DoorBolt - uid: 29754 components: - type: Transform @@ -202780,7 +202853,7 @@ entities: - type: DeviceLinkSource linkedPorts: 29745: - - Pressed: Toggle + - Pressed: DoorBolt - uid: 29755 components: - type: Transform @@ -202789,7 +202862,7 @@ entities: - type: DeviceLinkSource linkedPorts: 29740: - - Pressed: Toggle + - Pressed: DoorBolt - uid: 29756 components: - type: Transform @@ -202798,7 +202871,7 @@ entities: - type: DeviceLinkSource linkedPorts: 29741: - - Pressed: Toggle + - Pressed: DoorBolt - uid: 29757 components: - type: Transform @@ -202807,7 +202880,7 @@ entities: - type: DeviceLinkSource linkedPorts: 29742: - - Pressed: Toggle + - Pressed: DoorBolt - uid: 31970 components: - type: MetaData @@ -203713,12 +203786,6 @@ entities: rot: 1.5707963267948966 rad pos: 68.50426,66.69697 parent: 1 - - uid: 27695 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 130.50452,81.90488 - parent: 1 - uid: 27699 components: - type: Transform @@ -203730,6 +203797,12 @@ entities: rot: 1.5707963267948966 rad pos: 58.50455,115.29977 parent: 1 + - uid: 33101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 130.50095,81.30136 + parent: 1 - uid: 37588 components: - type: Transform @@ -206693,13 +206766,6 @@ entities: - type: Transform pos: 40.5,108.5 parent: 1 -- proto: SpawnMobBoxingKangaroo - entities: - - uid: 26826 - components: - - type: Transform - pos: 106.5,82.5 - parent: 1 - proto: SpawnMobButterfly entities: - uid: 26630 @@ -206770,6 +206836,13 @@ entities: - type: Transform pos: 37.5,70.5 parent: 1 +- proto: SpawnMobKangarooWillow + entities: + - uid: 33874 + components: + - type: Transform + pos: 106.5,82.5 + parent: 1 - proto: SpawnMobMcGriff entities: - uid: 22967 @@ -206899,10 +206972,11 @@ entities: parent: 1 - proto: SpawnMobShiva entities: - - uid: 3464 + - uid: 37204 components: - type: Transform - pos: 141.5,65.5 + rot: 3.141592653589793 rad + pos: 143.5,64.5 parent: 1 - proto: SpawnMobSlothPaperwork entities: @@ -207279,6 +207353,13 @@ entities: - type: Transform pos: 112.5,59.5 parent: 1 +- proto: SpawnPointObserver + entities: + - uid: 37209 + components: + - type: Transform + pos: 108.5,112.5 + parent: 1 - proto: SpawnPointParamedic entities: - uid: 17719 @@ -207795,6 +207876,12 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,87.5 parent: 1 + - uid: 2426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,119.5 + parent: 1 - uid: 2491 components: - type: Transform @@ -207810,6 +207897,12 @@ entities: - type: Transform pos: 84.5,47.5 parent: 1 + - uid: 3854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 138.5,85.5 + parent: 1 - uid: 4162 components: - type: Transform @@ -207825,11 +207918,23 @@ entities: - type: Transform pos: 82.5,47.5 parent: 1 + - uid: 5585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,27.5 + parent: 1 - uid: 13585 components: - type: Transform pos: 33.5,73.5 parent: 1 + - uid: 13632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,23.5 + parent: 1 - uid: 20890 components: - type: Transform @@ -207882,6 +207987,12 @@ entities: rot: 1.5707963267948966 rad pos: 131.5,148.5 parent: 1 + - uid: 35919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 133.5,86.5 + parent: 1 - proto: StairStageWood entities: - uid: 1952 @@ -208390,8 +208501,8 @@ entities: - uid: 23130 components: - type: Transform - rot: -31.415926535897945 rad - pos: 142.45264,53.33612 + rot: -18.84955592153876 rad + pos: 142.42798,52.68017 parent: 1 - proto: SubstationBasic entities: @@ -211061,21 +211172,6 @@ entities: - type: Transform pos: 70.5,91.5 parent: 1 - - uid: 2603 - components: - - type: Transform - pos: 74.5,67.5 - parent: 1 - - uid: 2643 - components: - - type: Transform - pos: 75.5,67.5 - parent: 1 - - uid: 2702 - components: - - type: Transform - pos: 76.5,67.5 - parent: 1 - uid: 2862 components: - type: Transform @@ -212337,6 +212433,12 @@ entities: - type: Transform pos: 146.5,154.5 parent: 1 + - uid: 37607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,97.5 + parent: 1 - proto: TableCarpet entities: - uid: 1983 @@ -213131,6 +213233,12 @@ entities: rot: 1.5707963267948966 rad pos: 65.5,96.5 parent: 1 + - uid: 18353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,86.5 + parent: 1 - uid: 19173 components: - type: Transform @@ -213149,6 +213257,12 @@ entities: rot: -1.5707963267948966 rad pos: 140.5,104.5 parent: 1 + - uid: 19336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,86.5 + parent: 1 - uid: 19360 components: - type: Transform @@ -213544,6 +213658,11 @@ entities: rot: 1.5707963267948966 rad pos: 123.5,98.5 parent: 1 + - uid: 37600 + components: + - type: Transform + pos: 125.5,142.5 + parent: 1 - proto: TableWood entities: - uid: 118 @@ -214057,6 +214176,11 @@ entities: - type: Transform pos: 143.5,110.5 parent: 1 + - uid: 19544 + components: + - type: Transform + pos: 104.5,61.5 + parent: 1 - uid: 20627 components: - type: Transform @@ -214235,6 +214359,11 @@ entities: - type: Transform pos: 159.5,143.5 parent: 1 + - uid: 30034 + components: + - type: Transform + pos: 145.5,102.5 + parent: 1 - uid: 30038 components: - type: Transform @@ -214247,12 +214376,32 @@ entities: rot: 1.5707963267948966 rad pos: 140.5,142.5 parent: 1 + - uid: 30253 + components: + - type: Transform + pos: 89.5,90.5 + parent: 1 - uid: 30439 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,125.5 parent: 1 + - uid: 33881 + components: + - type: Transform + pos: 76.5,67.5 + parent: 1 + - uid: 33958 + components: + - type: Transform + pos: 74.5,67.5 + parent: 1 + - uid: 33959 + components: + - type: Transform + pos: 75.5,67.5 + parent: 1 - uid: 34171 components: - type: Transform @@ -214455,6 +214604,11 @@ entities: rot: -1.5707963267948966 rad pos: 104.5,44.5 parent: 1 + - uid: 37605 + components: + - type: Transform + pos: 38.5,108.5 + parent: 1 - proto: TargetClown entities: - uid: 22696 @@ -218777,11 +218931,6 @@ entities: - type: Transform pos: 69.5,24.5 parent: 1 - - uid: 2180 - components: - - type: Transform - pos: 69.5,22.5 - parent: 1 - uid: 2184 components: - type: Transform @@ -219038,11 +219187,6 @@ entities: - type: Transform pos: 81.5,24.5 parent: 1 - - uid: 2426 - components: - - type: Transform - pos: 81.5,22.5 - parent: 1 - uid: 2445 components: - type: Transform @@ -226065,12 +226209,6 @@ entities: rot: 3.141592653589793 rad pos: 69.5,23.5 parent: 1 - - uid: 4790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,21.5 - parent: 1 - uid: 4791 components: - type: Transform @@ -226089,12 +226227,6 @@ entities: rot: 3.141592653589793 rad pos: 81.5,23.5 parent: 1 - - uid: 4836 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,21.5 - parent: 1 - uid: 4885 components: - type: Transform @@ -235776,6 +235908,11 @@ entities: - type: Transform pos: 124.5,34.5 parent: 1 + - uid: 2702 + components: + - type: Transform + pos: 133.5,85.5 + parent: 1 - uid: 3005 components: - type: Transform @@ -235827,12 +235964,6 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,97.5 parent: 1 - - uid: 3801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 134.5,85.5 - parent: 1 - uid: 3993 components: - type: Transform @@ -238273,12 +238404,6 @@ entities: rot: 1.5707963267948966 rad pos: 135.5,66.5 parent: 1 - - uid: 22963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 141.5,67.5 - parent: 1 - uid: 23129 components: - type: Transform @@ -238289,6 +238414,12 @@ entities: - type: Transform pos: 152.5,58.5 parent: 1 + - uid: 27695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 142.5,67.5 + parent: 1 - uid: 32414 components: - type: Transform @@ -238331,6 +238462,13 @@ entities: rot: -163.36281798666897 rad pos: 104.70838,64.387856 parent: 1 +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 32586 + components: + - type: Transform + pos: 144.736,67.525 + parent: 1 - proto: WeaponTurretSyndicateBroken entities: - uid: 12957 @@ -238802,6 +238940,18 @@ entities: parent: 1 - proto: WindoorCargoLocked entities: + - uid: 3861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 134.5,109.5 + parent: 1 + - uid: 17039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 134.5,110.5 + parent: 1 - uid: 19314 components: - type: Transform From f37d5c9f0f2d8cd1c4ea702f391e895deb6e76c8 Mon Sep 17 00:00:00 2001 From: TemporalOroboros Date: Fri, 7 Feb 2025 03:49:22 -0800 Subject: [PATCH 121/313] Purge uses of TransformComponent.AttachToGridOrMap (#34940) Switches over all extant uses of TransformComponent.AttachToGridOrMap to use SharedTransformSystem.AttachToGridOrMap --- Content.Server/Administration/Commands/WarpCommand.cs | 3 ++- Content.Server/Construction/ConstructionSystem.Graph.cs | 6 +++--- Content.Shared/Construction/SharedConstructionSystem.cs | 1 + Content.Shared/Containers/ContainerFillSystem.cs | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Content.Server/Administration/Commands/WarpCommand.cs b/Content.Server/Administration/Commands/WarpCommand.cs index 0d6da0d993..c4aa41db20 100644 --- a/Content.Server/Administration/Commands/WarpCommand.cs +++ b/Content.Server/Administration/Commands/WarpCommand.cs @@ -118,8 +118,9 @@ namespace Content.Server.Administration.Commands } var xform = _entManager.GetComponent(playerEntity); + var xformSystem = _entManager.System(); xform.Coordinates = coords; - xform.AttachToGridOrMap(); + xformSystem.AttachToGridOrMap(playerEntity, xform); if (_entManager.TryGetComponent(playerEntity, out PhysicsComponent? physics)) { _entManager.System().SetLinearVelocity(playerEntity, Vector2.Zero, body: physics); diff --git a/Content.Server/Construction/ConstructionSystem.Graph.cs b/Content.Server/Construction/ConstructionSystem.Graph.cs index 1b74fd9d4e..4c73cef703 100644 --- a/Content.Server/Construction/ConstructionSystem.Graph.cs +++ b/Content.Server/Construction/ConstructionSystem.Graph.cs @@ -304,8 +304,8 @@ namespace Content.Server.Construction return null; // [Optional] Exit if the new entity's prototype is a parent of the original - // E.g., if an entity with the 'AirlockCommand' prototype was to be replaced with a new entity that - // had the 'Airlock' prototype, and DoNotReplaceInheritingEntities was true, the code block would + // E.g., if an entity with the 'AirlockCommand' prototype was to be replaced with a new entity that + // had the 'Airlock' prototype, and DoNotReplaceInheritingEntities was true, the code block would // exit here because 'AirlockCommand' is derived from 'Airlock' if (GetCurrentNode(uid, construction)?.DoNotReplaceInheritingEntities == true && metaData.EntityPrototype?.ID != null) @@ -362,7 +362,7 @@ namespace Content.Server.Construction // Transform transferring. var newTransform = Transform(newUid); - newTransform.AttachToGridOrMap(); // in case in hands or a container + TransformSystem.AttachToGridOrMap(newUid, newTransform); // in case in hands or a container newTransform.LocalRotation = transform.LocalRotation; newTransform.Anchored = transform.Anchored; diff --git a/Content.Shared/Construction/SharedConstructionSystem.cs b/Content.Shared/Construction/SharedConstructionSystem.cs index 901b2f834d..a2b647ae92 100644 --- a/Content.Shared/Construction/SharedConstructionSystem.cs +++ b/Content.Shared/Construction/SharedConstructionSystem.cs @@ -10,6 +10,7 @@ namespace Content.Shared.Construction { [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] protected readonly IPrototypeManager PrototypeManager = default!; + [Dependency] protected readonly SharedTransformSystem TransformSystem = default!; /// /// Get predicate for construction obstruction checks. diff --git a/Content.Shared/Containers/ContainerFillSystem.cs b/Content.Shared/Containers/ContainerFillSystem.cs index 51c7c48e40..90eccb0341 100644 --- a/Content.Shared/Containers/ContainerFillSystem.cs +++ b/Content.Shared/Containers/ContainerFillSystem.cs @@ -40,7 +40,7 @@ public sealed class ContainerFillSystem : EntitySystem if (!_containerSystem.Insert(ent, container, containerXform: xform)) { Log.Error($"Entity {ToPrettyString(uid)} with a {nameof(ContainerFillComponent)} failed to insert an entity: {ToPrettyString(ent)}."); - Transform(ent).AttachToGridOrMap(); + _transform.AttachToGridOrMap(ent); break; } } From 1f5fab576154d84f0146f5882d4ad6f2399d5c67 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Fri, 7 Feb 2025 18:22:49 +0000 Subject: [PATCH 122/313] move lathe recipes into packs (easier for forks and maintaining) (#33095) * add LatheRecipePackPrototype * change Lathe and EmagLathe to use packs * add AddRecipesFromPacks helper to SharedLatheSystem * update lathe logic to work with packs and clean up some stuff * migrate individual recipes to recipe packs * update client * remove node/artifact scanner from techs * :trollface: * fix test and make it include emag recipes * add test that every dynamic recipe must be researched * pro * fix * fix * fix all tests, genuinely good test i wonder who made it * add unused uranium and incendiary drozd mags to tech and lathe * add recipes * add incendiary prototype * undo some changes * troll * :trollface: * true Co-authored-by: pathetic meowmeow * shitmed real Co-authored-by: pathetic meowmeow * update funny test * :trollface: * :trollface: --------- Co-authored-by: deltanedas <@deltanedas:kde.org> Co-authored-by: pathetic meowmeow --- Content.Client/Lathe/UI/LatheMenu.xaml.cs | 2 +- .../Tests/Lathe/LatheTest.cs | 13 +- .../Tests/ResearchTest.cs | 30 +- Content.Server/Lathe/LatheSystem.cs | 52 +- Content.Shared/Lathe/EmagLatheComponent.cs | 10 +- Content.Shared/Lathe/LatheComponent.cs | 9 +- .../Prototypes/LatheRecipePackPrototype.cs | 31 + Content.Shared/Lathe/SharedLatheSystem.cs | 13 + .../Guns/Ammunition/Magazines/pistol.yml | 8 + .../Entities/Structures/Machines/lathe.yml | 945 +++--------------- .../Recipes/Lathes/Packs/animal_cubes.yml | 19 + .../Recipes/Lathes/Packs/bedsheets.yml | 23 + .../Recipes/Lathes/Packs/biogen.yml | 30 + .../Prototypes/Recipes/Lathes/Packs/cargo.yml | 31 + .../Recipes/Lathes/Packs/clothing.yml | 227 +++++ .../Recipes/Lathes/Packs/engineering.yml | 87 ++ .../Recipes/Lathes/Packs/medical.yml | 101 ++ .../Prototypes/Recipes/Lathes/Packs/ore.yml | 27 + .../Recipes/Lathes/Packs/robotics.yml | 74 ++ .../Recipes/Lathes/Packs/science.yml | 127 +++ .../Recipes/Lathes/Packs/security.yml | 131 +++ .../Recipes/Lathes/Packs/service.yml | 62 ++ .../Recipes/Lathes/Packs/shared.yml | 51 + .../Recipes/Lathes/Packs/sheetifier.yml | 7 + .../Prototypes/Recipes/Lathes/Packs/tiles.yml | 49 + .../Prototypes/Recipes/Lathes/security.yml | 17 + Resources/Prototypes/Research/arsenal.yml | 2 + .../Prototypes/Research/experimental.yml | 1 - 28 files changed, 1304 insertions(+), 875 deletions(-) create mode 100644 Content.Shared/Lathe/Prototypes/LatheRecipePackPrototype.cs create mode 100644 Resources/Prototypes/Recipes/Lathes/Packs/animal_cubes.yml create mode 100644 Resources/Prototypes/Recipes/Lathes/Packs/bedsheets.yml create mode 100644 Resources/Prototypes/Recipes/Lathes/Packs/biogen.yml create mode 100644 Resources/Prototypes/Recipes/Lathes/Packs/cargo.yml create mode 100644 Resources/Prototypes/Recipes/Lathes/Packs/clothing.yml create mode 100644 Resources/Prototypes/Recipes/Lathes/Packs/engineering.yml create mode 100644 Resources/Prototypes/Recipes/Lathes/Packs/medical.yml create mode 100644 Resources/Prototypes/Recipes/Lathes/Packs/ore.yml create mode 100644 Resources/Prototypes/Recipes/Lathes/Packs/robotics.yml create mode 100644 Resources/Prototypes/Recipes/Lathes/Packs/science.yml create mode 100644 Resources/Prototypes/Recipes/Lathes/Packs/security.yml create mode 100644 Resources/Prototypes/Recipes/Lathes/Packs/service.yml create mode 100644 Resources/Prototypes/Recipes/Lathes/Packs/shared.yml create mode 100644 Resources/Prototypes/Recipes/Lathes/Packs/sheetifier.yml create mode 100644 Resources/Prototypes/Recipes/Lathes/Packs/tiles.yml diff --git a/Content.Client/Lathe/UI/LatheMenu.xaml.cs b/Content.Client/Lathe/UI/LatheMenu.xaml.cs index 02464d22e1..fa99a9dd8e 100644 --- a/Content.Client/Lathe/UI/LatheMenu.xaml.cs +++ b/Content.Client/Lathe/UI/LatheMenu.xaml.cs @@ -64,7 +64,7 @@ public sealed partial class LatheMenu : DefaultWindow if (_entityManager.TryGetComponent(Entity, out var latheComponent)) { - if (!latheComponent.DynamicRecipes.Any()) + if (!latheComponent.DynamicPacks.Any()) { ServerListButton.Visible = false; } diff --git a/Content.IntegrationTests/Tests/Lathe/LatheTest.cs b/Content.IntegrationTests/Tests/Lathe/LatheTest.cs index 88aece967b..2fe347f636 100644 --- a/Content.IntegrationTests/Tests/Lathe/LatheTest.cs +++ b/Content.IntegrationTests/Tests/Lathe/LatheTest.cs @@ -26,6 +26,7 @@ public sealed class LatheTest var compFactory = server.ResolveDependency(); var materialStorageSystem = server.System(); var whitelistSystem = server.System(); + var latheSystem = server.System(); await server.WaitAssertion(() => { @@ -74,14 +75,14 @@ public sealed class LatheTest } } - // Collect all the recipes assigned to this lathe - var recipes = new List>(); - recipes.AddRange(latheComp.StaticRecipes); - recipes.AddRange(latheComp.DynamicRecipes); + // Collect all possible recipes assigned to this lathe + var recipes = new HashSet>(); + latheSystem.AddRecipesFromPacks(recipes, latheComp.StaticPacks); + latheSystem.AddRecipesFromPacks(recipes, latheComp.DynamicPacks); if (latheProto.TryGetComponent(out var emagRecipesComp, compFactory)) { - recipes.AddRange(emagRecipesComp.EmagStaticRecipes); - recipes.AddRange(emagRecipesComp.EmagDynamicRecipes); + latheSystem.AddRecipesFromPacks(recipes, emagRecipesComp.EmagStaticPacks); + latheSystem.AddRecipesFromPacks(recipes, emagRecipesComp.EmagDynamicPacks); } // Check each recipe assigned to this lathe diff --git a/Content.IntegrationTests/Tests/ResearchTest.cs b/Content.IntegrationTests/Tests/ResearchTest.cs index 7ae29a79ff..4661a1ea9e 100644 --- a/Content.IntegrationTests/Tests/ResearchTest.cs +++ b/Content.IntegrationTests/Tests/ResearchTest.cs @@ -52,13 +52,16 @@ public sealed class ResearchTest await using var pair = await PoolManager.GetServerClient(); var server = pair.Server; + var entMan = server.ResolveDependency(); var protoManager = server.ResolveDependency(); var compFact = server.ResolveDependency(); + var latheSys = entMan.System(); + await server.WaitAssertion(() => { var allEnts = protoManager.EnumeratePrototypes(); - var allLathes = new HashSet(); + var latheTechs = new HashSet>(); foreach (var proto in allEnts) { if (proto.Abstract) @@ -69,30 +72,31 @@ public sealed class ResearchTest if (!proto.TryGetComponent(out var lathe, compFact)) continue; - allLathes.Add(lathe); - } - var latheTechs = new HashSet(); - foreach (var lathe in allLathes) - { - if (lathe.DynamicRecipes == null) - continue; + latheSys.AddRecipesFromPacks(latheTechs, lathe.DynamicPacks); - foreach (var recipe in lathe.DynamicRecipes) - { - latheTechs.Add(recipe); - } + if (proto.TryGetComponent(out var emag, compFact)) + latheSys.AddRecipesFromPacks(latheTechs, emag.EmagDynamicPacks); } Assert.Multiple(() => { + // check that every recipe a tech adds can be made on some lathe + var unlockedTechs = new HashSet>(); foreach (var tech in protoManager.EnumeratePrototypes()) { + unlockedTechs.UnionWith(tech.RecipeUnlocks); foreach (var recipe in tech.RecipeUnlocks) { - Assert.That(latheTechs, Does.Contain(recipe), $"Recipe \"{recipe}\" cannot be unlocked on any lathes."); + Assert.That(latheTechs, Does.Contain(recipe), $"Recipe '{recipe}' from tech '{tech.ID}' cannot be unlocked on any lathes."); } } + + // now check that every dynamic recipe a lathe lists can be unlocked + foreach (var recipe in latheTechs) + { + Assert.That(unlockedTechs, Does.Contain(recipe), $"Recipe '{recipe}' is dynamic on a lathe but cannot be unlocked by research."); + } }); }); diff --git a/Content.Server/Lathe/LatheSystem.cs b/Content.Server/Lathe/LatheSystem.cs index ba82e65aa7..68a5228bdf 100644 --- a/Content.Server/Lathe/LatheSystem.cs +++ b/Content.Server/Lathe/LatheSystem.cs @@ -19,6 +19,7 @@ using Content.Shared.Emag.Components; using Content.Shared.Emag.Systems; using Content.Shared.Examine; using Content.Shared.Lathe; +using Content.Shared.Lathe.Prototypes; using Content.Shared.Materials; using Content.Shared.Power; using Content.Shared.ReagentSpeed; @@ -57,6 +58,7 @@ namespace Content.Server.Lathe /// Per-tick cache /// private readonly List _environments = new(); + private readonly HashSet> _availableRecipes = new(); public override void Initialize() { @@ -156,19 +158,16 @@ namespace Content.Server.Lathe public List> GetAvailableRecipes(EntityUid uid, LatheComponent component, bool getUnavailable = false) { + _availableRecipes.Clear(); + AddRecipesFromPacks(_availableRecipes, component.StaticPacks); var ev = new LatheGetRecipesEvent(uid, getUnavailable) { - Recipes = new HashSet>(component.StaticRecipes) + Recipes = _availableRecipes }; RaiseLocalEvent(uid, ev); return ev.Recipes.ToList(); } - public static List> GetAllBaseRecipes(LatheComponent component) - { - return component.StaticRecipes.Union(component.DynamicRecipes).ToList(); - } - public bool TryAddToQueue(EntityUid uid, LatheRecipePrototype recipe, LatheComponent? component = null) { if (!Resolve(uid, ref component)) @@ -277,35 +276,42 @@ namespace Content.Server.Lathe _uiSys.SetUiState(uid, LatheUiKey.Key, state); } + /// + /// Adds every unlocked recipe from each pack to the recipes list. + /// + public void AddRecipesFromDynamicPacks(ref LatheGetRecipesEvent args, TechnologyDatabaseComponent database, IEnumerable> packs) + { + foreach (var id in packs) + { + var pack = _proto.Index(id); + foreach (var recipe in pack.Recipes) + { + if (args.getUnavailable || database.UnlockedRecipes.Contains(recipe)) + args.Recipes.Add(recipe); + } + } + } + private void OnGetRecipes(EntityUid uid, TechnologyDatabaseComponent component, LatheGetRecipesEvent args) { if (uid != args.Lathe || !TryComp(uid, out var latheComponent)) return; - foreach (var recipe in latheComponent.DynamicRecipes) - { - if (!(args.getUnavailable || component.UnlockedRecipes.Contains(recipe)) || args.Recipes.Contains(recipe)) - continue; - args.Recipes.Add(recipe); - } + AddRecipesFromDynamicPacks(ref args, component, latheComponent.DynamicPacks); } private void GetEmagLatheRecipes(EntityUid uid, EmagLatheRecipesComponent component, LatheGetRecipesEvent args) { - if (uid != args.Lathe || !TryComp(uid, out var technologyDatabase)) + if (uid != args.Lathe) return; + if (!args.getUnavailable && !_emag.CheckFlag(uid, EmagType.Interaction)) return; - foreach (var recipe in component.EmagDynamicRecipes) - { - if (!(args.getUnavailable || technologyDatabase.UnlockedRecipes.Contains(recipe)) || args.Recipes.Contains(recipe)) - continue; - args.Recipes.Add(recipe); - } - foreach (var recipe in component.EmagStaticRecipes) - { - args.Recipes.Add(recipe); - } + + AddRecipesFromPacks(args.Recipes, component.EmagStaticPacks); + + if (TryComp(uid, out var database)) + AddRecipesFromDynamicPacks(ref args, database, component.EmagDynamicPacks); } private void OnHeatStartPrinting(EntityUid uid, LatheHeatProducingComponent component, LatheStartPrintingEvent args) diff --git a/Content.Shared/Lathe/EmagLatheComponent.cs b/Content.Shared/Lathe/EmagLatheComponent.cs index 9fe53c8d49..672748308c 100644 --- a/Content.Shared/Lathe/EmagLatheComponent.cs +++ b/Content.Shared/Lathe/EmagLatheComponent.cs @@ -1,4 +1,4 @@ -using Content.Shared.Research.Prototypes; +using Content.Shared.Lathe.Prototypes; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; @@ -9,15 +9,15 @@ namespace Content.Shared.Lathe public sealed partial class EmagLatheRecipesComponent : Component { /// - /// All of the dynamic recipes that the lathe is capable to get using EMAG + /// All of the dynamic recipe packs that the lathe is capable to get using EMAG /// [DataField, AutoNetworkedField] - public List> EmagDynamicRecipes = new(); + public List> EmagDynamicPacks = new(); /// - /// All of the static recipes that the lathe is capable to get using EMAG + /// All of the static recipe packs that the lathe is capable to get using EMAG /// [DataField, AutoNetworkedField] - public List> EmagStaticRecipes = new(); + public List> EmagStaticPacks = new(); } } diff --git a/Content.Shared/Lathe/LatheComponent.cs b/Content.Shared/Lathe/LatheComponent.cs index de4311e559..aaf273e0fe 100644 --- a/Content.Shared/Lathe/LatheComponent.cs +++ b/Content.Shared/Lathe/LatheComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Construction.Prototypes; +using Content.Shared.Lathe.Prototypes; using Content.Shared.Research.Prototypes; using Robust.Shared.Audio; using Robust.Shared.GameStates; @@ -10,16 +11,16 @@ namespace Content.Shared.Lathe public sealed partial class LatheComponent : Component { /// - /// All of the recipes that the lathe has by default + /// All of the recipe packs that the lathe has by default /// [DataField] - public List> StaticRecipes = new(); + public List> StaticPacks = new(); /// - /// All of the recipes that the lathe is capable of researching + /// All of the recipe packs that the lathe is capable of researching /// [DataField] - public List> DynamicRecipes = new(); + public List> DynamicPacks = new(); /// /// The lathe's construction queue diff --git a/Content.Shared/Lathe/Prototypes/LatheRecipePackPrototype.cs b/Content.Shared/Lathe/Prototypes/LatheRecipePackPrototype.cs new file mode 100644 index 0000000000..ada880f459 --- /dev/null +++ b/Content.Shared/Lathe/Prototypes/LatheRecipePackPrototype.cs @@ -0,0 +1,31 @@ +using Content.Shared.Research.Prototypes; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Array; + +namespace Content.Shared.Lathe.Prototypes; + +/// +/// A pack of lathe recipes that one or more lathes can use. +/// Packs will inherit the parents recipes when using inheritance, so you don't need to copy paste them. +/// +[Prototype] +public sealed partial class LatheRecipePackPrototype : IPrototype, IInheritingPrototype +{ + [ViewVariables] + [IdDataField] + public string ID { get; private set; } = default!; + + [ParentDataField(typeof(AbstractPrototypeIdArraySerializer))] + public string[]? Parents { get; } + + [NeverPushInheritance] + [AbstractDataField] + public bool Abstract { get; } + + /// + /// The lathe recipes contained by this pack. + /// + [DataField(required: true)] + [AlwaysPushInheritance] + public HashSet> Recipes = new(); +} diff --git a/Content.Shared/Lathe/SharedLatheSystem.cs b/Content.Shared/Lathe/SharedLatheSystem.cs index 7328787f25..ae5519d16c 100644 --- a/Content.Shared/Lathe/SharedLatheSystem.cs +++ b/Content.Shared/Lathe/SharedLatheSystem.cs @@ -2,6 +2,7 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; using Content.Shared.Emag.Systems; using Content.Shared.Examine; +using Content.Shared.Lathe.Prototypes; using Content.Shared.Localizations; using Content.Shared.Materials; using Content.Shared.Research.Prototypes; @@ -33,6 +34,18 @@ public abstract class SharedLatheSystem : EntitySystem BuildInverseRecipeDictionary(); } + /// + /// Add every recipe in the list of recipe packs to a single hashset. + /// + public void AddRecipesFromPacks(HashSet> recipes, IEnumerable> packs) + { + foreach (var id in packs) + { + var pack = _proto.Index(id); + recipes.UnionWith(pack.Recipes); + } + } + private void OnExamined(Entity ent, ref ExaminedEvent args) { if (!args.IsInDetailsRange) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml index 1853962544..b554a15a98 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml @@ -301,3 +301,11 @@ map: ["enum.GunVisualLayers.Base"] - state: mag-1 map: ["enum.GunVisualLayers.Mag"] + +- type: entity + parent: BaseMagazinePistolSubMachineGun + id: MagazinePistolSubMachineGunIncendiary + name: SMG magazine (.35 auto incendiary) + components: + - type: BallisticAmmoProvider + proto: CartridgePistolIncendiary diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index a3cb8c014c..2616effd47 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -117,115 +117,23 @@ runningState: building unlitIdleState: unlit unlitRunningState: unlit-building - staticRecipes: - - Wirecutter - - Igniter - - Signaller - - Screwdriver - - Welder - - Wrench - - CrowbarGreen - - Multitool - - NetworkConfigurator - - SprayPainter - - FlashlightLantern - - CableStack - - CableMVStack - - CableHVStack - - HandheldGPSBasic - - TRayScanner - - AirTank - - GasAnalyzer - - UtilityBelt - - Pickaxe - - ModularReceiver - - AppraisalTool - - SheetRGlass - - Beaker - - Syringe - - HandLabeler - - LightTube - - LedLightTube - - SodiumLightTube - - ExteriorLightTube - - LightBulb - - LedLightBulb - - DimLightBulb - - WarmLightBulb - - Bucket - - DrinkMug - - DrinkMugMetal - - DrinkGlass - - DrinkShotGlass - - DrinkGlassCoupeShaped - - CustomDrinkJug - - FoodPlate - - FoodPlateSmall - - FoodPlatePlastic - - FoodPlateSmallPlastic - - FoodBowlBig - - FoodPlateTin - - FoodPlateMuffinTin - - FoodKebabSkewer - - SprayBottle - - MopItem - - Holoprojector - - Mousetrap - - LightReplacer - - TrashBag - - PowerCellSmall - - PowerCellMedium - - RollerBedSpawnFolded - - CheapRollerBedSpawnFolded - - EmergencyRollerBedSpawnFolded - - MicroManipulatorStockPart - - MatterBinStockPart - - CapacitorStockPart - - ConveyorBeltAssembly - - IntercomElectronics - - FirelockElectronics - - DoorElectronics - - AirAlarmElectronics - - StationMapElectronics - - FireAlarmElectronics - - MailingUnitElectronics - - SignalTimerElectronics - - APCElectronics - - SMESMachineCircuitboard - - SubstationMachineCircuitboard - - WallmountSubstationElectronics - - CellRechargerCircuitboard - - WeaponCapacitorRechargerCircuitboard - - HandheldStationMap - - ClothingHeadHatWelding - - WetFloorSign - - ClothingHeadHatCone - - FreezerElectronics + staticPacks: + - ToolsStatic + - PartsStatic + - AtmosStatic + - CablesStatic + - CargoStatic + - MaterialsStatic + - BasicChemistryStatic + - RollerBedsStatic + - LightsStatic + - ServiceStatic + - PowerCellsStatic + - ElectronicsStatic - type: EmagLatheRecipes - emagStaticRecipes: - - BoxLethalshot - - BoxShotgunSlug - - CombatKnife - - MagazineBoxLightRifle - - MagazineBoxMagnum - - MagazineBoxPistol - - MagazineBoxRifle - - MagazineLightRifle - - MagazineLightRifleEmpty - - MagazinePistol - - MagazinePistolEmpty - - MagazinePistolSubMachineGun - - MagazinePistolSubMachineGunEmpty - - MagazinePistolSubMachineGunTopMounted - - MagazinePistolSubMachineGunTopMountedEmpty - - MagazineRifle - - MagazineRifleEmpty - - MagazineShotgun - - MagazineShotgunEmpty - - MagazineShotgunSlug - - RiotShield - - SpeedLoaderMagnum - - SpeedLoaderMagnumEmpty + emagStaticPacks: + - SecurityAmmoStatic + - SecurityWeaponsStatic - type: BlueprintReceiver whitelist: tags: @@ -282,117 +190,29 @@ runningState: building unlitIdleState: unlit unlitRunningState: unlit-building - staticRecipes: - - LargeBeaker - - Dropper - - ClothingEyesGlassesChemical - dynamicRecipes: - - PowerDrill - - MiningDrill - - MiningDrillDiamond - - AnomalyScanner - - AnomalyLocator - - AnomalyLocatorWide - - Scalpel - - Retractor - - Cautery - - Drill - - WeaponParticleDecelerator - - HoloprojectorField - - Saw - - Hemostat - - CryostasisBeaker - - SyringeCryostasis - - Syringe - - Implanter - - PillCanister - - ChemistryEmptyBottle01 - - AdvMopItem - - WeaponSprayNozzle - - ClothingBackpackWaterTank - - MegaSprayBottle - - TimerTrigger - - ChemicalPayload - - FlashPayload - - Signaller - - SignallerAdvanced - - SignalTrigger - - VoiceTrigger - - Igniter - - HandHeldMassScanner - - PowerCellMicroreactor - - PowerCellHigh - - WeaponPistolCHIMP - - ClothingMaskWeldingGas - - MineralScannerEmpty - - AdvancedMineralScannerEmpty - - WeaponGauntletGorilla - - SynthesizerInstrument - - ClothingShoesBootsMagSci - - ClothingShoesBootsMoon - - ClothingShoesBootsSpeed - - NodeScanner - - HolofanProjector - - BluespaceBeaker - - SyringeBluespace - - WeaponForceGun - - WeaponLaserSvalinn - - WeaponProtoKineticAccelerator - - WeaponTetherGun - - ClothingBackpackHolding - - ClothingBackpackSatchelHolding - - ClothingBackpackDuffelHolding - - WelderExperimental - - JawsOfLife - - FauxTileAstroGrass - - FauxTileMowedAstroGrass - - FauxTileJungleAstroGrass - - FauxTileAstroIce - - FauxTileAstroSnow - - FauxTileAstroAsteroidSand - - OreBagOfHolding - - DeviceQuantumSpinInverter + staticPacks: + - ChemistryStatic + - SurgeryStatic + dynamicPacks: + - AdvancedTools + - ScienceEquipment + - ScienceClothing + - PowerCells + - ScienceWeapons + - Mining + - AtmosTools + - EngineeringWeapons + - Chemistry + - Janitor + - Instruments + - Equipment + - FauxTiles - type: EmagLatheRecipes - emagDynamicRecipes: - - BoxBeanbag - - BoxShotgunIncendiary - - BoxShotgunUranium - - BoxShellTranquilizer - - ExplosivePayload - - GrenadeBlast - - GrenadeEMP - - GrenadeFlash - - HoloprojectorSecurity - - MagazineBoxLightRifleIncendiary - - MagazineBoxLightRifleUranium - - MagazineBoxMagnumIncendiary - - MagazineBoxMagnumUranium - - MagazineBoxPistolIncendiary - - MagazineBoxPistolUranium - - MagazineBoxRifleIncendiary - - MagazineBoxRifleUranium - - MagazineGrenadeEmpty - - MagazineLightRifleIncendiary - - MagazineLightRifleUranium - - MagazinePistolIncendiary - - MagazinePistolUranium - - MagazineRifleIncendiary - - MagazineRifleUranium - - MagazineShotgunBeanbag - - MagazineShotgunIncendiary - - MagazineShotgunIncendiary - - PortableRecharger - - PowerCageHigh - - PowerCageMedium - - PowerCageSmall - - SpeedLoaderMagnumIncendiary - - SpeedLoaderMagnumUranium - - TelescopicShield - - Truncheon - - WeaponAdvancedLaser - - WeaponLaserCannon - - WeaponLaserCarbine - - WeaponXrayCannon + emagDynamicPacks: + - SecurityAmmo + - SecurityExplosives + - SecurityEquipment + - SecurityWeapons - type: entity id: ProtolatheHyperConvection @@ -428,106 +248,25 @@ producingSound: /Audio/Machines/circuitprinter.ogg idleState: icon runningState: building - staticRecipes: - - ProtolatheMachineCircuitboard - - AutolatheMachineCircuitboard - - CircuitImprinterMachineCircuitboard - - BiogeneratorMachineCircuitboard - - OreProcessorMachineCircuitboard - - ElectrolysisUnitMachineCircuitboard - - CentrifugeMachineCircuitboard - - ChemDispenserMachineCircuitboard - - ChemMasterMachineCircuitboard - - CondenserMachineCircuitBoard - - HotplateMachineCircuitboard - - UniformPrinterMachineCircuitboard - - FloorGreenCircuit - - FloorBlueCircuit - - FloorRedCircuit - - MicrowaveMachineCircuitboard - - ReagentGrinderMachineCircuitboard - - ElectricGrillMachineCircuitboard - - BoozeDispenserMachineCircuitboard - - SodaDispenserMachineCircuitboard - - SpaceHeaterMachineCircuitBoard - - CutterMachineCircuitboard - - SalvageMagnetMachineCircuitboard - - BorgChargerCircuitboard - dynamicRecipes: - - ThermomachineFreezerMachineCircuitBoard - - HellfireFreezerMachineCircuitBoard - - PortableScrubberMachineCircuitBoard - - CloningPodMachineCircuitboard - - MedicalScannerMachineCircuitboard - - CryoPodMachineCircuitboard - - VaccinatorMachineCircuitboard - - DiagnoserMachineCircuitboard - - BiomassReclaimerMachineCircuitboard - - BiofabricatorMachineCircuitboard - - SurveillanceCameraRouterCircuitboard - - SurveillanceCameraMonitorCircuitboard - - SurveillanceWirelessCameraMonitorCircuitboard - - SurveillanceCameraWirelessRouterCircuitboard - - ComputerTelevisionCircuitboard - - SurveillanceWirelessCameraMovableCircuitboard - - SurveillanceWirelessCameraAnchoredCircuitboard - - HydroponicsTrayMachineCircuitboard - - SolarControlComputerCircuitboard - - SolarTrackerElectronics - - TurboItemRechargerCircuitboard - - AutolatheHyperConvectionMachineCircuitboard - - ProtolatheHyperConvectionMachineCircuitboard - - CircuitImprinterHyperConvectionMachineCircuitboard - - FatExtractorMachineCircuitboard - - FlatpackerMachineCircuitboard - - SheetifierMachineCircuitboard - - ShuttleConsoleCircuitboard - - RadarConsoleCircuitboard - - TechDiskComputerCircuitboard - - DawInstrumentMachineCircuitboard - - CloningConsoleComputerCircuitboard - - StasisBedMachineCircuitboard - - OreProcessorIndustrialMachineCircuitboard - - CargoTelepadMachineCircuitboard - - RipleyCentralElectronics - - RipleyPeripheralsElectronics - - HonkerCentralElectronics - - HonkerPeripheralsElectronics - - HonkerTargetingElectronics - - HamtrCentralElectronics - - HamtrPeripheralsElectronics - - PortableGeneratorPacmanMachineCircuitboard - - PortableGeneratorSuperPacmanMachineCircuitboard - - PortableGeneratorJrPacmanMachineCircuitboard - - WallmountSubstationElectronics - - PowerCageRechargerCircuitboard - - EmitterCircuitboard - - ThrusterMachineCircuitboard - - GyroscopeMachineCircuitboard - - MiniGravityGeneratorCircuitboard - - ShuttleGunKineticCircuitboard - - GasRecyclerMachineCircuitboard - - SeedExtractorMachineCircuitboard - - AnalysisComputerCircuitboard - - ExosuitFabricatorMachineCircuitboard - - AnomalyVesselCircuitboard - - AnomalyVesselExperimentalCircuitboard - - AnomalySynchronizerCircuitboard - - APECircuitboard - - ArtifactAnalyzerMachineCircuitboard - - ArtifactCrusherMachineCircuitboard - - TelecomServerCircuitboard - - MassMediaCircuitboard - - ReagentGrinderIndustrialMachineCircuitboard - - JukeboxCircuitBoard - - SMESAdvancedMachineCircuitboard - - HolopadMachineCircuitboard + staticPacks: + - ScienceBoardsStatic + - ServiceBoardsStatic + - CargoBoardsStatic + - MedicalBoardsStatic + - EngineeringBoardsStatic + - CircuitFloorsStatic + dynamicPacks: + - EngineeringBoards + - CargoBoards + - MedicalBoards + - ServiceBoards + - ScienceBoards + - CameraBoards + - MechBoards + - ShuttleBoards - type: EmagLatheRecipes - emagDynamicRecipes: - - ShuttleGunDusterCircuitboard - - ShuttleGunFriendshipCircuitboard - - ShuttleGunPerforatorCircuitboard - - ShuttleGunSvalinnMachineGunCircuitboard + emagDynamicPacks: + - SecurityBoards - type: MaterialStorage whitelist: tags: @@ -567,51 +306,15 @@ - type: Lathe idleState: fab-idle runningState: fab-active - staticRecipes: - - MMI - - PositronicBrain - - SciFlash - - BorgModuleCable - - BorgModuleFireExtinguisher - - BorgModuleRadiationDetection - - BorgModuleTool - - CyborgEndoskeleton - - LeftArmBorg - - RightArmBorg - - LeftLegBorg - - RightLegBorg - - LightHeadBorg - - TorsoBorg - dynamicRecipes: - - ProximitySensor - - BorgModuleAdvancedCleaning - - BorgModuleAdvancedTool - - BorgModuleGPS - - BorgModuleArtifact - - BorgModuleAnomaly - - BorgModuleGardening - - BorgModuleHarvesting - - BorgModuleDefibrillator - - BorgModuleAdvancedTreatment - - RipleyHarness - - RipleyLArm - - RipleyRArm - - RipleyLLeg - - RipleyRLeg - - MechEquipmentGrabber - - HonkerHarness - - HonkerLArm - - HonkerRArm - - HonkerLLeg - - HonkerRLeg - - MechEquipmentHorn - - MechEquipmentGrabberSmall - - HamtrHarness - - HamtrLArm - - HamtrRArm - - HamtrLLeg - - HamtrRLeg - - VimHarness + staticPacks: + - RoboticsStatic + - BorgModulesStatic + - BorgLimbsStatic + dynamicPacks: + - Robotics + - BorgModules + - MechParts + - MechEquipment - type: MaterialStorage whitelist: tags: @@ -655,19 +358,11 @@ - type: Lathe idleState: icon runningState: building - staticRecipes: - - MonkeyCube - - KoboldCube - - CowCube - - GoatCube - - MothroachCube - - MouseCube - - CockroachCube + staticPacks: + - FriendlyCubesStatic - type: EmagLatheRecipes - emagStaticRecipes: - - AbominationCube - - SpaceCarpCube - - SpaceTickCube + emagStaticPacks: + - HostileCubesStatic - type: entity id: SecurityTechFab @@ -693,98 +388,17 @@ - type: Lathe idleState: icon runningState: icon - staticRecipes: - - BoxLethalshot - - BoxShotgunPractice - - BoxShotgunSlug - - ClothingEyesHudSecurity - - CombatKnife - - Flash - - ForensicPad - - Handcuffs - - MagazineBoxLightRifle - - MagazineBoxLightRiflePractice - - MagazineBoxMagnum - - MagazineBoxMagnumPractice - - MagazineBoxPistol - - MagazineBoxPistolPractice - - MagazineBoxRifle - - MagazineBoxRiflePractice - - MagazineLightRifle - - MagazineLightRifleEmpty - - MagazinePistol - - MagazinePistolEmpty - - MagazinePistolSubMachineGun - - MagazinePistolSubMachineGunEmpty - - MagazinePistolSubMachineGunTopMounted - - MagazinePistolSubMachineGunTopMountedEmpty - - MagazineRifle - - MagazineRifleEmpty - - MagazineShotgun - - MagazineShotgunEmpty - - MagazineShotgunSlug - - RiotShield - - SpeedLoaderMagnum - - SpeedLoaderMagnumEmpty - - Stunbaton - - TargetClown - - TargetHuman - - TargetSyndicate - - WeaponDisablerPractice - - WeaponFlareGunSecurity - - WeaponLaserCarbinePractice - - Zipties - dynamicRecipes: - - BoxBeanbag - - BoxShotgunIncendiary - - BoxShotgunUranium - - BoxShellTranquilizer - - ClothingBackpackElectropack - - ExplosivePayload - - FlashPayload - - GrenadeBlast - - GrenadeEMP - - GrenadeFlash - - HoloprojectorSecurity - - MagazineBoxLightRifleIncendiary - - MagazineBoxLightRifleUranium - - MagazineBoxMagnumIncendiary - - MagazineBoxMagnumUranium - - MagazineBoxPistolIncendiary - - MagazineBoxPistolUranium - - MagazineBoxRifleIncendiary - - MagazineBoxRifleUranium - - MagazineGrenadeEmpty - - MagazineLightRifleIncendiary - - MagazineLightRifleUranium - - MagazinePistolIncendiary - - MagazinePistolUranium - - MagazineRifleIncendiary - - MagazineRifleUranium - - MagazineShotgunBeanbag - - MagazineShotgunIncendiary - - PortableRecharger - - PowerCageHigh - - PowerCageMedium - - PowerCageSmall - - ShuttleGunDusterCircuitboard - - ShuttleGunFriendshipCircuitboard - - ShuttleGunPerforatorCircuitboard - - ShuttleGunSvalinnMachineGunCircuitboard - - Signaller - - SignalTrigger - - SpeedLoaderMagnumIncendiary - - SpeedLoaderMagnumUranium - - TelescopicShield - - TimerTrigger - - Truncheon - - VoiceTrigger - - WeaponAdvancedLaser - - WeaponDisabler - - WeaponDisablerSMG - - WeaponLaserCannon - - WeaponLaserCarbine - - WeaponXrayCannon + staticPacks: + - SecurityEquipmentStatic + - SecurityPracticeStatic + - SecurityAmmoStatic + - SecurityWeaponsStatic + dynamicPacks: + - SecurityEquipment + - SecurityBoards + - SecurityExplosives + - SecurityAmmo + - SecurityWeapons - type: MaterialStorage whitelist: tags: @@ -816,25 +430,8 @@ - type: Lathe idleState: icon runningState: icon - staticRecipes: - - BoxLethalshot - - BoxShotgunSlug - - BoxShellTranquilizer - - MagazineBoxLightRifle - - MagazineBoxMagnum - - MagazineBoxPistol - - MagazineBoxRifle - - MagazineLightRifle - - MagazineLightRifleEmpty - - MagazinePistol - - MagazinePistolEmpty - - MagazineRifle - - MagazineRifleEmpty - - MagazineShotgun - - MagazineShotgunEmpty - - MagazineShotgunSlug - - SpeedLoaderMagnum - - SpeedLoaderMagnumEmpty + staticPacks: + - SecurityAmmoStatic - type: MaterialStorage whitelist: tags: @@ -864,51 +461,16 @@ - type: Lathe idleState: icon runningState: icon - staticRecipes: - - Brutepack - - Ointment - - Gauze - - HandLabeler - - Defibrillator - - HandheldHealthAnalyzer - - ClothingHandsGlovesLatex - - ClothingHandsGlovesNitrile - - ClothingMaskSterile - - DiseaseSwab - - Beaker - - LargeBeaker - - Dropper - - Jug - - Syringe - - Implanter - - PillCanister - - BodyBag - - ChemistryEmptyBottle01 - - RollerBedSpawnFolded - - CheapRollerBedSpawnFolded - - EmergencyRollerBedSpawnFolded - - Medkit - - MedkitBurn - - MedkitToxin - - MedkitO2 - - MedkitBrute - - MedkitAdvanced - - MedkitRadiation - - MedkitCombat - - Scalpel - - Retractor - - Cautery - - Drill - - Saw - - Hemostat - - ClothingEyesGlassesChemical - - WhiteCane - dynamicRecipes: - - ChemicalPayload - - CryostasisBeaker - - BluespaceBeaker - - SyringeBluespace - - SyringeCryostasis + staticPacks: + - TopicalsStatic + - ChemistryStatic + - MedicalStatic + - RollerBedsStatic + - MedicalClothingStatic + - EmptyMedkitsStatic + - SurgeryStatic + dynamicPacks: + - Chemistry - type: Machine board: MedicalTechFabCircuitboard - type: StealTarget @@ -934,202 +496,24 @@ producingSound: /Audio/Machines/uniformprinter.ogg idleState: icon runningState: building - staticRecipes: - - ClothingUniformJumpsuitColorGrey - - ClothingUniformJumpskirtColorGrey - - ClothingUniformJumpsuitBartender - - ClothingUniformJumpskirtBartender - - ClothingHeadHatCapcap - - ClothingHeadHatCaptain - - ClothingUniformJumpsuitCaptain - - ClothingUniformJumpskirtCaptain - - ClothingUniformJumpsuitCapFormal - - ClothingUniformJumpskirtCapFormalDress - - ClothingUniformJumpsuitCargo - - ClothingUniformJumpskirtCargo - - ClothingUniformJumpsuitSalvageSpecialist - - ClothingHeadHatBeretEngineering - - ClothingUniformJumpsuitChiefEngineer - - ClothingUniformJumpskirtChiefEngineer - - ClothingUniformJumpsuitChiefEngineerTurtle - - ClothingUniformJumpskirtChiefEngineerTurtle - - ClothingUniformJumpsuitChaplain - - ClothingUniformJumpskirtChaplain - - ClothingUniformJumpsuitChef - - ClothingUniformJumpskirtChef - - ClothingUniformJumpsuitChemistry - - ClothingUniformJumpskirtChemistry - - ClothingUniformJumpsuitClown - - ClothingHeadHatBeretCmo - - ClothingUniformJumpsuitCMO - - ClothingUniformJumpskirtCMO - - ClothingUniformJumpsuitCMOTurtle - - ClothingUniformJumpskirtCMOTurtle - - ClothingUniformJumpsuitDetective - - ClothingUniformJumpskirtDetective - - ClothingUniformJumpsuitEngineering - - ClothingUniformJumpskirtEngineering - - ClothingUniformJumpsuitSeniorEngineer - - ClothingUniformJumpskirtSeniorEngineer - - ClothingHeadHatHopcap - - ClothingUniformJumpsuitHoP - - ClothingUniformJumpskirtHoP - - ClothingHeadHatBeretHoS - - ClothingHeadHatHoshat - - ClothingUniformJumpsuitHoS - - ClothingUniformJumpskirtHoS - - ClothingUniformJumpsuitHosFormal - - ClothingUniformJumpskirtHosFormal - - ClothingUniformJumpsuitHoSAlt - - ClothingUniformJumpskirtHoSAlt - - ClothingUniformJumpsuitHoSBlue - - ClothingUniformJumpsuitHoSGrey - - ClothingUniformJumpsuitHoSParadeMale - - ClothingUniformJumpskirtHoSParadeMale - - ClothingUniformJumpsuitHydroponics - - ClothingUniformJumpskirtHydroponics - - ClothingUniformJumpsuitJanitor - - ClothingUniformJumpskirtJanitor - - ClothingUniformJumpsuitLawyerBlack - - ClothingUniformJumpsuitLibrarian - - ClothingUniformJumpskirtColorLightBrown - - ClothingHeadHatBeretSeniorPhysician - - ClothingUniformJumpsuitMedicalDoctor - - ClothingUniformJumpskirtMedicalDoctor - - ClothingUniformJumpsuitSeniorPhysician - - ClothingUniformJumpskirtSeniorPhysician - - ClothingUniformJumpsuitMime - - ClothingUniformJumpskirtMime - - ClothingUniformJumpsuitMusician - - ClothingUniformJumpsuitParamedic - - ClothingUniformJumpskirtParamedic - - ClothingUniformJumpsuitSeniorOfficer - - ClothingUniformJumpskirtSeniorOfficer - - ClothingUniformJumpsuitPrisoner - - ClothingUniformJumpskirtPrisoner - - ClothingHeadHatQMsoft - - ClothingHeadHatBeretQM - - ClothingUniformJumpsuitQM - - ClothingUniformJumpskirtQM - - ClothingUniformJumpsuitQMTurtleneck - - ClothingUniformJumpskirtQMTurtleneck - - ClothingUniformJumpsuitQMFormal - - ClothingHeadHatBeretRND - - ClothingUniformJumpsuitResearchDirector - - ClothingUniformJumpskirtResearchDirector - - ClothingUniformJumpsuitScientist - - ClothingUniformJumpskirtScientist - - ClothingUniformJumpsuitSeniorResearcher - - ClothingUniformJumpskirtSeniorResearcher - - ClothingHeadHatBeretSecurity - - ClothingUniformJumpsuitSec - - ClothingUniformJumpskirtSec - - ClothingHeadHatBeretBrigmedic - - ClothingUniformJumpsuitBrigmedic - - ClothingUniformJumpskirtBrigmedic - - ClothingHeadHatBeretWarden - - ClothingHeadHatWarden - - ClothingUniformJumpsuitWarden - - ClothingUniformJumpskirtWarden - - ClothingHeadHatParamedicsoft - # Winter outfits - - ClothingOuterWinterCap - - ClothingOuterWinterCE - - ClothingOuterWinterCMO - - ClothingOuterWinterHoP - - ClothingOuterWinterHoSUnarmored - - ClothingOuterWinterWardenUnarmored - - ClothingOuterWinterQM - - ClothingOuterWinterRD - - ClothingOuterWinterMusician - - ClothingOuterWinterClown - - ClothingOuterWinterMime - - ClothingOuterWinterCoat - - ClothingOuterWinterJani - - ClothingOuterWinterBar - - ClothingOuterWinterChef - - ClothingOuterWinterHydro - - ClothingOuterWinterAtmos - - ClothingOuterWinterEngi - - ClothingOuterWinterCargo - - ClothingOuterWinterMiner - - ClothingOuterWinterMed - - ClothingOuterWinterPara - - ClothingOuterWinterChem - - ClothingOuterWinterGen - - ClothingOuterWinterViro - - ClothingOuterWinterSci - - ClothingOuterWinterRobo - - ClothingOuterWinterSec - # Ties - - ClothingNeckTieRed - - ClothingNeckTieDet - - ClothingNeckTieSci - # Scarfs - All scarfs avaible in winterdrobe - - ClothingNeckScarfStripedGreen - - ClothingNeckScarfStripedBlue - - ClothingNeckScarfStripedRed - - ClothingNeckScarfStripedBrown - - ClothingNeckScarfStripedLightBlue - - ClothingNeckScarfStripedOrange - - ClothingNeckScarfStripedBlack - - ClothingNeckScarfStripedPurple - # Carpets - - Carpet - - CarpetBlack - - CarpetPink - - CarpetBlue - - CarpetGreen - - CarpetOrange - - CarpetPurple - - CarpetCyan - - CarpetWhite - # Bedsheets - - BedsheetBlack - - BedsheetBlue - - BedsheetBrown - - BedsheetGreen - - BedsheetGrey - - BedsheetOrange - - BedsheetPurple - - BedsheetRed - - BedsheetWhite - - BedsheetYellow - - BedsheetClown - - BedsheetCosmos - - BedsheetIan - - BedsheetMedical - - BedsheetMime - - BedsheetNT - - BedsheetRainbow - - BedsheetBrigmedic + staticPacks: + - ClothingCivilian + - ClothingCargo + - ClothingCommand + - ClothingEngineering + - ClothingMedical + - ClothingScience + - ClothingSecurity + - ClothingService + - WinterCoats + - Ties + - Scarves + - Carpets + - Bedsheets - type: EmagLatheRecipes - emagStaticRecipes: - # Clothing - - ClothingHeadHatCentcomcap - - ClothingHeadHatCentcom - - ClothingUniformJumpsuitCentcomAgent - - ClothingUniformJumpsuitCentcomFormal - - ClothingUniformJumpskirtCentcomFormalDress - - ClothingUniformJumpsuitCentcomOfficer - - ClothingUniformJumpsuitCentcomOfficial - - ClothingHeadHatSyndieMAA - - ClothingHeadHatSyndie - - ClothingUniformJumpsuitOperative - - ClothingUniformJumpskirtOperative - - ClothingUniformJumpsuitSyndieFormal - - ClothingUniformJumpskirtSyndieFormalDress - - ClothingHeadPyjamaSyndicateBlack - - ClothingUniformJumpsuitPyjamaSyndicateBlack - - ClothingHeadPyjamaSyndicatePink - - ClothingUniformJumpsuitPyjamaSyndicatePink - - ClothingHeadPyjamaSyndicateRed - - ClothingUniformJumpsuitPyjamaSyndicateRed - - ClothingOuterWinterCentcom - - ClothingOuterWinterSyndie - - ClothingOuterWinterSyndieCap - # Bedsheets - - BedsheetSyndie + emagStaticPacks: + - ClothingCentComm + - ClothingSyndie - type: MaterialStorage whitelist: tags: @@ -1176,28 +560,9 @@ reagentOutputSlotId: beaker_slot idleState: icon runningState: building - staticRecipes: - - BioGenMilk - - BioGenMilkSoy - - BioGenEthanol - - BioGenCream - - BioGenBlackpepper - - BioGenEnzyme - - BioGenFlour - - BioGenSugar - - BioGenMonkeyCube - - BioGenKoboldCube - - BioGenMaterialCloth1 - - BioGenMaterialCardboard1 - - BioGenPaper - - BioGenPaperRolling1 - - BioGenCandle - - BioGenPlantBGone - - BioGenWeedKiller - - BioGenPestKiller - - BioGenLeft4Zed - - BioGenEZNutrient - - BioGenRobustHarvest + staticPacks: + - BioGenIngredientsStatic + - BioGenMaterialsStatic - type: entity parent: BaseLathe @@ -1228,18 +593,9 @@ idleState: icon runningState: building defaultProductionAmount: 10 - staticRecipes: - - SheetSteel - - SheetGlass1 - - SheetRGlassRaw - - SheetPlasma1 - - SheetPGlass1 - - SheetRPGlass1 - - SheetUranium1 - - IngotGold1 - - IngotSilver1 - - MaterialBananium1 - - MaterialDiamond + staticPacks: + - OreSmelting + - RGlassSmelting - type: entity parent: OreProcessor @@ -1254,21 +610,10 @@ - type: Lathe materialUseMultiplier: 0.75 timeMultiplier: 0.5 - staticRecipes: - - SheetSteel - - SheetGlass1 - - SheetRGlassRaw - - SheetPlasma1 - - SheetPGlass1 - - SheetRPGlass1 - - SheetPlasteel1 - - SheetUranium1 - - SheetUGlass1 - - SheetRUGlass1 - - IngotGold1 - - IngotSilver1 - - MaterialBananium1 - - MaterialDiamond + staticPacks: + - OreSmelting + - RGlassSmelting + - AdvancedSmelting - type: entity parent: BaseLathe @@ -1297,9 +642,8 @@ - type: Lathe idleState: base_machine runningState: base_machine_processing - staticRecipes: - - MaterialSheetMeat - - SheetPaper + staticPacks: + - SheetifierStatic - type: entity parent: BaseLathe @@ -1326,51 +670,8 @@ producingSound: /Audio/Machines/cutter.ogg idleState: icon runningState: building - staticRecipes: - - FloorTileItemDark - - FloorTileItemDarkDiagonalMini - - FloorTileItemDarkDiagonal - - FloorTileItemDarkHerringbone - - FloorTileItemDarkMini - - FloorTileItemDarkMono - - FloorTileItemDarkPavement - - FloorTileItemDarkPavementVertical - - FloorTileItemDarkOffset - - FloorTileItemSteelCheckerDark - - FloorTileItemSteel - - FloorTileItemSteelOffset - - FloorTileItemSteelDiagonalMini - - FloorTileItemSteelDiagonal - - FloorTileItemSteelHerringbone - - FloorTileItemSteelMini - - FloorTileItemSteelMono - - FloorTileItemSteelPavement - - FloorTileItemSteelPavementVertical - - FloorTileItemWhite - - FloorTileItemWhiteOffset - - FloorTileItemWhiteDiagonalMini - - FloorTileItemWhiteDiagonal - - FloorTileItemWhiteHerringbone - - FloorTileItemWhiteMini - - FloorTileItemWhiteMono - - FloorTileItemWhitePavement - - FloorTileItemWhitePavementVertical - - FloorTileItemSteelCheckerLight - - FloorTileItemGratingMaint - - FloorTileItemTechmaint - - FloorTileItemSteelMaint - - FloorTileItemWood - - FloorTileItemWoodLarge - - FloorTileItemWoodPattern - - FloorTileItemConcrete - - FloorTileItemConcreteMono - - FloorTileItemConcreteSmooth - - FloorTileItemGrayConcrete - - FloorTileItemGrayConcreteMono - - FloorTileItemGrayConcreteSmooth - - FloorTileItemOldConcrete - - FloorTileItemOldConcreteMono - - FloorTileItemOldConcreteSmooth + staticPacks: + - FloorTilesStatic - type: MaterialStorage whitelist: tags: diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/animal_cubes.yml b/Resources/Prototypes/Recipes/Lathes/Packs/animal_cubes.yml new file mode 100644 index 0000000000..1a1cd50ae7 --- /dev/null +++ b/Resources/Prototypes/Recipes/Lathes/Packs/animal_cubes.yml @@ -0,0 +1,19 @@ +## Static + +- type: latheRecipePack + id: FriendlyCubesStatic + recipes: + - MonkeyCube + - KoboldCube + - CowCube + - GoatCube + - MothroachCube + - MouseCube + - CockroachCube + +- type: latheRecipePack + id: HostileCubesStatic + recipes: + - AbominationCube + - SpaceCarpCube + - SpaceTickCube diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/bedsheets.yml b/Resources/Prototypes/Recipes/Lathes/Packs/bedsheets.yml new file mode 100644 index 0000000000..7d55c710c6 --- /dev/null +++ b/Resources/Prototypes/Recipes/Lathes/Packs/bedsheets.yml @@ -0,0 +1,23 @@ +## Static + +- type: latheRecipePack + id: Bedsheets + recipes: + - BedsheetBlack + - BedsheetBlue + - BedsheetBrown + - BedsheetGreen + - BedsheetGrey + - BedsheetOrange + - BedsheetPurple + - BedsheetRed + - BedsheetWhite + - BedsheetYellow + - BedsheetClown + - BedsheetCosmos + - BedsheetIan + - BedsheetMedical + - BedsheetMime + - BedsheetNT + - BedsheetRainbow + - BedsheetBrigmedic diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/biogen.yml b/Resources/Prototypes/Recipes/Lathes/Packs/biogen.yml new file mode 100644 index 0000000000..49ac26c52b --- /dev/null +++ b/Resources/Prototypes/Recipes/Lathes/Packs/biogen.yml @@ -0,0 +1,30 @@ +## Static + +- type: latheRecipePack + id: BioGenIngredientsStatic + recipes: + - BioGenMilk + - BioGenMilkSoy + - BioGenEthanol + - BioGenCream + - BioGenBlackpepper + - BioGenEnzyme + - BioGenFlour + - BioGenSugar + - BioGenMonkeyCube + - BioGenKoboldCube + - BioGenCandle + - BioGenPlantBGone + - BioGenWeedKiller + - BioGenPestKiller + - BioGenLeft4Zed + - BioGenEZNutrient + - BioGenRobustHarvest + +- type: latheRecipePack + id: BioGenMaterialsStatic + recipes: + - BioGenMaterialCloth1 + - BioGenMaterialCardboard1 + - BioGenPaper + - BioGenPaperRolling1 diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/cargo.yml b/Resources/Prototypes/Recipes/Lathes/Packs/cargo.yml new file mode 100644 index 0000000000..6ca2ef8566 --- /dev/null +++ b/Resources/Prototypes/Recipes/Lathes/Packs/cargo.yml @@ -0,0 +1,31 @@ +## Static + +- type: latheRecipePack + id: CargoStatic + recipes: + - AppraisalTool + - Pickaxe + +- type: latheRecipePack + id: CargoBoardsStatic + recipes: + - OreProcessorMachineCircuitboard + - SalvageMagnetMachineCircuitboard + +## Dynamic + +- type: latheRecipePack + id: Mining + recipes: + - MiningDrill + - MiningDrillDiamond + - MineralScannerEmpty + - AdvancedMineralScannerEmpty + - OreBagOfHolding + +- type: latheRecipePack + id: CargoBoards + recipes: + - OreProcessorIndustrialMachineCircuitboard + - CargoTelepadMachineCircuitboard + - ShuttleGunKineticCircuitboard diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/clothing.yml b/Resources/Prototypes/Recipes/Lathes/Packs/clothing.yml new file mode 100644 index 0000000000..15ba04b88c --- /dev/null +++ b/Resources/Prototypes/Recipes/Lathes/Packs/clothing.yml @@ -0,0 +1,227 @@ +## Static + +- type: latheRecipePack + id: ClothingCivilian + recipes: + - ClothingUniformJumpsuitColorGrey + - ClothingUniformJumpskirtColorGrey + +- type: latheRecipePack + id: ClothingCargo + recipes: + - ClothingUniformJumpsuitCargo + - ClothingUniformJumpskirtCargo + - ClothingUniformJumpsuitSalvageSpecialist + - ClothingHeadHatQMsoft + - ClothingHeadHatBeretQM + - ClothingUniformJumpsuitQM + - ClothingUniformJumpskirtQM + - ClothingUniformJumpsuitQMTurtleneck + - ClothingUniformJumpskirtQMTurtleneck + - ClothingUniformJumpsuitQMFormal + +- type: latheRecipePack + id: ClothingCommand + recipes: + # Captain + - ClothingHeadHatCapcap + - ClothingHeadHatCaptain + - ClothingUniformJumpsuitCaptain + - ClothingUniformJumpskirtCaptain + - ClothingUniformJumpsuitCapFormal + - ClothingUniformJumpskirtCapFormalDress + # HoP + - ClothingHeadHatHopcap + - ClothingUniformJumpsuitHoP + - ClothingUniformJumpskirtHoP + +- type: latheRecipePack + id: ClothingEngineering + recipes: + - ClothingHeadHatBeretEngineering + - ClothingUniformJumpsuitChiefEngineer + - ClothingUniformJumpskirtChiefEngineer + - ClothingUniformJumpsuitChiefEngineerTurtle + - ClothingUniformJumpskirtChiefEngineerTurtle + - ClothingUniformJumpsuitEngineering + - ClothingUniformJumpskirtEngineering + - ClothingUniformJumpsuitSeniorEngineer + - ClothingUniformJumpskirtSeniorEngineer + +- type: latheRecipePack + id: ClothingMedical + recipes: + - ClothingUniformJumpsuitChemistry + - ClothingUniformJumpskirtChemistry + - ClothingHeadHatBeretCmo + - ClothingUniformJumpsuitCMO + - ClothingUniformJumpskirtCMO + - ClothingUniformJumpsuitCMOTurtle + - ClothingUniformJumpskirtCMOTurtle + - ClothingHeadHatBeretSeniorPhysician + - ClothingUniformJumpsuitMedicalDoctor + - ClothingUniformJumpskirtMedicalDoctor + - ClothingUniformJumpsuitSeniorPhysician + - ClothingUniformJumpskirtSeniorPhysician + - ClothingUniformJumpsuitParamedic + - ClothingUniformJumpskirtParamedic + - ClothingHeadHatParamedicsoft + +- type: latheRecipePack + id: ClothingScience + recipes: + - ClothingHeadHatBeretRND + - ClothingUniformJumpsuitResearchDirector + - ClothingUniformJumpskirtResearchDirector + - ClothingUniformJumpsuitScientist + - ClothingUniformJumpskirtScientist + - ClothingUniformJumpsuitSeniorResearcher + - ClothingUniformJumpskirtSeniorResearcher + +- type: latheRecipePack + id: ClothingSecurity + recipes: + - ClothingUniformJumpsuitDetective + - ClothingUniformJumpskirtDetective + - ClothingHeadHatBeretHoS + - ClothingHeadHatHoshat + - ClothingUniformJumpsuitHoS + - ClothingUniformJumpskirtHoS + - ClothingUniformJumpsuitHosFormal + - ClothingUniformJumpskirtHosFormal + - ClothingUniformJumpsuitHoSAlt + - ClothingUniformJumpskirtHoSAlt + - ClothingUniformJumpsuitHoSBlue + - ClothingUniformJumpsuitHoSGrey + - ClothingUniformJumpsuitHoSParadeMale + - ClothingUniformJumpskirtHoSParadeMale + - ClothingUniformJumpsuitSeniorOfficer + - ClothingUniformJumpskirtSeniorOfficer + - ClothingUniformJumpsuitPrisoner + - ClothingUniformJumpskirtPrisoner + - ClothingHeadHatBeretSecurity + - ClothingUniformJumpsuitSec + - ClothingUniformJumpskirtSec + - ClothingHeadHatBeretBrigmedic + - ClothingUniformJumpsuitBrigmedic + - ClothingUniformJumpskirtBrigmedic + - ClothingHeadHatBeretWarden + - ClothingHeadHatWarden + - ClothingUniformJumpsuitWarden + - ClothingUniformJumpskirtWarden + +- type: latheRecipePack + id: ClothingService + recipes: + - ClothingUniformJumpsuitBartender + - ClothingUniformJumpskirtBartender + - ClothingUniformJumpsuitChaplain + - ClothingUniformJumpskirtChaplain + - ClothingUniformJumpsuitChef + - ClothingUniformJumpskirtChef + - ClothingUniformJumpsuitClown + - ClothingUniformJumpsuitHydroponics + - ClothingUniformJumpskirtHydroponics + - ClothingUniformJumpsuitJanitor + - ClothingUniformJumpskirtJanitor + - ClothingUniformJumpsuitLawyerBlack + - ClothingUniformJumpsuitLibrarian + - ClothingUniformJumpskirtColorLightBrown + - ClothingUniformJumpsuitMime + - ClothingUniformJumpskirtMime + - ClothingUniformJumpsuitMusician + +- type: latheRecipePack + id: WinterCoats + recipes: + - ClothingOuterWinterCap + - ClothingOuterWinterCE + - ClothingOuterWinterCMO + - ClothingOuterWinterHoP + - ClothingOuterWinterHoSUnarmored + - ClothingOuterWinterWardenUnarmored + - ClothingOuterWinterQM + - ClothingOuterWinterRD + - ClothingOuterWinterMusician + - ClothingOuterWinterClown + - ClothingOuterWinterMime + - ClothingOuterWinterCoat + - ClothingOuterWinterJani + - ClothingOuterWinterBar + - ClothingOuterWinterChef + - ClothingOuterWinterHydro + - ClothingOuterWinterAtmos + - ClothingOuterWinterEngi + - ClothingOuterWinterCargo + - ClothingOuterWinterMiner + - ClothingOuterWinterMed + - ClothingOuterWinterPara + - ClothingOuterWinterChem + - ClothingOuterWinterGen + - ClothingOuterWinterViro + - ClothingOuterWinterSci + - ClothingOuterWinterRobo + - ClothingOuterWinterSec + +- type: latheRecipePack + id: Ties + recipes: + - ClothingNeckTieRed + - ClothingNeckTieDet + - ClothingNeckTieSci + +- type: latheRecipePack + id: Scarves + recipes: + - ClothingNeckScarfStripedGreen + - ClothingNeckScarfStripedBlue + - ClothingNeckScarfStripedRed + - ClothingNeckScarfStripedBrown + - ClothingNeckScarfStripedLightBlue + - ClothingNeckScarfStripedOrange + - ClothingNeckScarfStripedBlack + - ClothingNeckScarfStripedPurple + +- type: latheRecipePack + id: Carpets + recipes: + - Carpet + - CarpetBlack + - CarpetPink + - CarpetBlue + - CarpetGreen + - CarpetOrange + - CarpetPurple + - CarpetCyan + - CarpetWhite + +- type: latheRecipePack + id: ClothingCentComm + recipes: + - ClothingHeadHatCentcomcap + - ClothingHeadHatCentcom + - ClothingUniformJumpsuitCentcomAgent + - ClothingUniformJumpsuitCentcomFormal + - ClothingUniformJumpskirtCentcomFormalDress + - ClothingUniformJumpsuitCentcomOfficer + - ClothingUniformJumpsuitCentcomOfficial + +- type: latheRecipePack + id: ClothingSyndie + recipes: + - ClothingHeadHatSyndieMAA + - ClothingHeadHatSyndie + - ClothingUniformJumpsuitOperative + - ClothingUniformJumpskirtOperative + - ClothingUniformJumpsuitSyndieFormal + - ClothingUniformJumpskirtSyndieFormalDress + - ClothingHeadPyjamaSyndicateBlack + - ClothingUniformJumpsuitPyjamaSyndicateBlack + - ClothingHeadPyjamaSyndicatePink + - ClothingUniformJumpsuitPyjamaSyndicatePink + - ClothingHeadPyjamaSyndicateRed + - ClothingUniformJumpsuitPyjamaSyndicateRed + - ClothingOuterWinterCentcom + - ClothingOuterWinterSyndie + - ClothingOuterWinterSyndieCap + - BedsheetSyndie diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/engineering.yml b/Resources/Prototypes/Recipes/Lathes/Packs/engineering.yml new file mode 100644 index 0000000000..63d529fe4c --- /dev/null +++ b/Resources/Prototypes/Recipes/Lathes/Packs/engineering.yml @@ -0,0 +1,87 @@ +## Static + +- type: latheRecipePack + id: ToolsStatic + recipes: + - Wirecutter + - Screwdriver + - Welder + - Wrench + - CrowbarGreen + - Multitool + - NetworkConfigurator + - Signaller + - SprayPainter + - FlashlightLantern + - HandheldGPSBasic + - TRayScanner + - UtilityBelt + - HandheldStationMap + - ClothingHeadHatWelding + - ClothingHeadHatCone + +- type: latheRecipePack + id: AtmosStatic + recipes: + - AirTank + - GasAnalyzer + +- type: latheRecipePack + id: ElectronicsStatic + recipes: + - IntercomElectronics + - FirelockElectronics + - DoorElectronics + - AirAlarmElectronics + - StationMapElectronics + - FireAlarmElectronics + - MailingUnitElectronics + - SignalTimerElectronics + - APCElectronics + - SMESMachineCircuitboard + - SubstationMachineCircuitboard + - WallmountSubstationElectronics + - CellRechargerCircuitboard + - WeaponCapacitorRechargerCircuitboard + - FreezerElectronics + +- type: latheRecipePack + id: EngineeringBoardsStatic + recipes: + - SpaceHeaterMachineCircuitBoard + +## Dynamic + +- type: latheRecipePack + id: AdvancedTools + recipes: + - PowerDrill + - WelderExperimental + - JawsOfLife + +- type: latheRecipePack + id: AtmosTools + recipes: + - HolofanProjector + +- type: latheRecipePack + id: EngineeringWeapons + recipes: + - WeaponParticleDecelerator + +- type: latheRecipePack + id: EngineeringBoards + recipes: + - ThermomachineFreezerMachineCircuitBoard + - HellfireFreezerMachineCircuitBoard + - PortableScrubberMachineCircuitBoard + - SolarControlComputerCircuitboard + - SolarTrackerElectronics + - GasRecyclerMachineCircuitboard + - PortableGeneratorPacmanMachineCircuitboard + - PortableGeneratorSuperPacmanMachineCircuitboard + - PortableGeneratorJrPacmanMachineCircuitboard + - EmitterCircuitboard + - TelecomServerCircuitboard + - SMESAdvancedMachineCircuitboard + - HolopadMachineCircuitboard diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/medical.yml b/Resources/Prototypes/Recipes/Lathes/Packs/medical.yml new file mode 100644 index 0000000000..c92cb13820 --- /dev/null +++ b/Resources/Prototypes/Recipes/Lathes/Packs/medical.yml @@ -0,0 +1,101 @@ +## Static + +- type: latheRecipePack + id: TopicalsStatic + recipes: + - Brutepack + - Ointment + - Gauze + +- type: latheRecipePack + id: BasicChemistryStatic + recipes: + - Beaker + - LargeBeaker + - Syringe + - PillCanister + - HandLabeler + +- type: latheRecipePack + parent: BasicChemistryStatic + id: ChemistryStatic + recipes: + - Jug + - ChemistryEmptyBottle01 + - ClothingEyesGlassesChemical + +- type: latheRecipePack + id: SurgeryStatic + recipes: + - Scalpel + - Retractor + - Cautery + - Drill + - Saw + - Hemostat + +- type: latheRecipePack + id: MedicalStatic + recipes: + - Implanter + - Defibrillator + - HandheldHealthAnalyzer + - DiseaseSwab + - BodyBag + - WhiteCane + +- type: latheRecipePack + id: RollerBedsStatic + recipes: + - RollerBedSpawnFolded + - CheapRollerBedSpawnFolded + - EmergencyRollerBedSpawnFolded + +- type: latheRecipePack + id: MedicalClothingStatic + recipes: + - ClothingHandsGlovesLatex + - ClothingHandsGlovesNitrile + - ClothingMaskSterile + +# These are all empty +- type: latheRecipePack + id: EmptyMedkitsStatic + recipes: + - Medkit + - MedkitBurn + - MedkitToxin + - MedkitO2 + - MedkitBrute + - MedkitAdvanced + - MedkitRadiation + - MedkitCombat + +- type: latheRecipePack + id: MedicalBoardsStatic + recipes: + - ElectrolysisUnitMachineCircuitboard + - CentrifugeMachineCircuitboard + - ChemDispenserMachineCircuitboard + - ChemMasterMachineCircuitboard + - CondenserMachineCircuitBoard + - HotplateMachineCircuitboard + +## Dynamic + +# Shared with protolathe +- type: latheRecipePack + id: Chemistry + recipes: + - ChemicalPayload + - CryostasisBeaker + - SyringeCryostasis + - BluespaceBeaker + - SyringeBluespace + +- type: latheRecipePack + id: MedicalBoards + recipes: + - StasisBedMachineCircuitboard + - CryoPodMachineCircuitboard + - BiomassReclaimerMachineCircuitboard diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/ore.yml b/Resources/Prototypes/Recipes/Lathes/Packs/ore.yml new file mode 100644 index 0000000000..c84436c0bd --- /dev/null +++ b/Resources/Prototypes/Recipes/Lathes/Packs/ore.yml @@ -0,0 +1,27 @@ +## Static + +- type: latheRecipePack + id: OreSmelting + recipes: + - SheetSteel + - SheetGlass1 + - SheetPlasma1 + - SheetUranium1 + - IngotGold1 + - IngotSilver1 + - MaterialBananium1 + - MaterialDiamond + +- type: latheRecipePack + id: RGlassSmelting + recipes: + - SheetRGlassRaw + - SheetPGlass1 + - SheetRPGlass1 + +- type: latheRecipePack + id: AdvancedSmelting + recipes: + - SheetPlasteel1 + - SheetUGlass1 + - SheetRUGlass1 diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/robotics.yml b/Resources/Prototypes/Recipes/Lathes/Packs/robotics.yml new file mode 100644 index 0000000000..19bff4a94e --- /dev/null +++ b/Resources/Prototypes/Recipes/Lathes/Packs/robotics.yml @@ -0,0 +1,74 @@ +## Static + +- type: latheRecipePack + id: RoboticsStatic + recipes: + - MMI + - PositronicBrain + - SciFlash + - CyborgEndoskeleton + +- type: latheRecipePack + id: BorgModulesStatic + recipes: + - BorgModuleCable + - BorgModuleFireExtinguisher + - BorgModuleRadiationDetection + - BorgModuleTool + +- type: latheRecipePack + id: BorgLimbsStatic + recipes: + - LeftArmBorg + - RightArmBorg + - LeftLegBorg + - RightLegBorg + - LightHeadBorg + - TorsoBorg + +## Dynamic + +- type: latheRecipePack + id: Robotics + recipes: + - ProximitySensor + +- type: latheRecipePack + id: BorgModules + recipes: + - BorgModuleAdvancedCleaning + - BorgModuleAdvancedTool + - BorgModuleGPS + - BorgModuleArtifact + - BorgModuleAnomaly + - BorgModuleGardening + - BorgModuleHarvesting + - BorgModuleDefibrillator + - BorgModuleAdvancedTreatment + +- type: latheRecipePack + id: MechParts + recipes: + - RipleyHarness + - RipleyLArm + - RipleyRArm + - RipleyLLeg + - RipleyRLeg + - HonkerHarness + - HonkerLArm + - HonkerRArm + - HonkerLLeg + - HonkerRLeg + - HamtrHarness + - HamtrLArm + - HamtrRArm + - HamtrLLeg + - HamtrRLeg + - VimHarness + +- type: latheRecipePack + id: MechEquipment + recipes: + - MechEquipmentGrabber + - MechEquipmentHorn + - MechEquipmentGrabberSmall diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/science.yml b/Resources/Prototypes/Recipes/Lathes/Packs/science.yml new file mode 100644 index 0000000000..42786937a7 --- /dev/null +++ b/Resources/Prototypes/Recipes/Lathes/Packs/science.yml @@ -0,0 +1,127 @@ +## Static + +- type: latheRecipePack + id: ScienceBoardsStatic + recipes: + - ProtolatheMachineCircuitboard + - AutolatheMachineCircuitboard + - CircuitImprinterMachineCircuitboard + - ExosuitFabricatorMachineCircuitboard + - CutterMachineCircuitboard + - BorgChargerCircuitboard + +- type: latheRecipePack + id: CircuitFloorsStatic + recipes: + - FloorGreenCircuit + - FloorBlueCircuit + - FloorRedCircuit + +## Dynamic + +- type: latheRecipePack + id: ScienceEquipment + recipes: + - AnomalyScanner + - NodeScanner + - AnomalyLocator + - AnomalyLocatorWide + - HoloprojectorField + - SignallerAdvanced + - DeviceQuantumSpinInverter + +- type: latheRecipePack + id: ScienceClothing + recipes: + - ClothingShoesBootsMagSci + - ClothingShoesBootsMoon + - ClothingShoesBootsSpeed + - ClothingBackpackHolding + - ClothingBackpackSatchelHolding + - ClothingBackpackDuffelHolding + +- type: latheRecipePack + id: PowerCells + recipes: + - PowerCellMicroreactor + - PowerCellHigh + +- type: latheRecipePack + id: ScienceWeapons + recipes: + - WeaponPistolCHIMP + - WeaponForceGun + - WeaponLaserSvalinn + - WeaponProtoKineticAccelerator + - WeaponTetherGun + - WeaponGauntletGorilla + +- type: latheRecipePack + id: FauxTiles + recipes: + - FauxTileAstroGrass + - FauxTileMowedAstroGrass + - FauxTileJungleAstroGrass + - FauxTileAstroIce + - FauxTileAstroSnow + - FauxTileAstroAsteroidSand + +# Only contains parts for making basic modular grenades, no actual explosives +- type: latheRecipePack + id: ScienceExplosives + recipes: + - ChemicalPayload + - FlashPayload + - TimerTrigger + - SignalTrigger + - VoiceTrigger + +- type: latheRecipePack + id: ScienceBoards + recipes: + - TurboItemRechargerCircuitboard + - AutolatheHyperConvectionMachineCircuitboard + - ProtolatheHyperConvectionMachineCircuitboard + - CircuitImprinterHyperConvectionMachineCircuitboard + - TechDiskComputerCircuitboard + - FlatpackerMachineCircuitboard + - SheetifierMachineCircuitboard + - PowerCageRechargerCircuitboard + - AnalysisComputerCircuitboard + - AnomalyVesselCircuitboard + - AnomalyVesselExperimentalCircuitboard + - AnomalySynchronizerCircuitboard + - APECircuitboard + - ArtifactAnalyzerMachineCircuitboard + - ArtifactCrusherMachineCircuitboard + +- type: latheRecipePack + id: CameraBoards + recipes: + - SurveillanceCameraRouterCircuitboard + - SurveillanceCameraMonitorCircuitboard + - SurveillanceWirelessCameraMonitorCircuitboard + - SurveillanceCameraWirelessRouterCircuitboard + - ComputerTelevisionCircuitboard + - SurveillanceWirelessCameraMovableCircuitboard + - SurveillanceWirelessCameraAnchoredCircuitboard + +- type: latheRecipePack + id: MechBoards + recipes: + - RipleyCentralElectronics + - RipleyPeripheralsElectronics + - HonkerCentralElectronics + - HonkerPeripheralsElectronics + - HonkerTargetingElectronics + - HamtrCentralElectronics + - HamtrPeripheralsElectronics + +- type: latheRecipePack + id: ShuttleBoards + recipes: + - ShuttleConsoleCircuitboard + - RadarConsoleCircuitboard + - ThrusterMachineCircuitboard + - GyroscopeMachineCircuitboard + - MiniGravityGeneratorCircuitboard diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/security.yml b/Resources/Prototypes/Recipes/Lathes/Packs/security.yml new file mode 100644 index 0000000000..77f2131e71 --- /dev/null +++ b/Resources/Prototypes/Recipes/Lathes/Packs/security.yml @@ -0,0 +1,131 @@ +## Static recipes + +- type: latheRecipePack + id: SecurityEquipmentStatic + recipes: + - ClothingEyesHudSecurity + - ForensicPad + - Handcuffs + - TargetClown + - TargetHuman + - TargetSyndicate + - Zipties + +# Practice ammo/mags and practice weapons +- type: latheRecipePack + id: SecurityPracticeStatic + recipes: + - BoxShotgunPractice + - MagazineBoxLightRiflePractice + - MagazineBoxMagnumPractice + - MagazineBoxPistolPractice + - MagazineBoxRiflePractice + - WeaponDisablerPractice + - WeaponLaserCarbinePractice + - WeaponFlareGunSecurity + +# Shared between secfab and emagged autolathe +- type: latheRecipePack + id: SecurityAmmoStatic + recipes: + - BoxLethalshot + - BoxShotgunSlug + - MagazineBoxLightRifle + - MagazineBoxMagnum + - MagazineBoxPistol + - MagazineBoxRifle + - MagazineLightRifle + - MagazineLightRifleEmpty + - MagazinePistol + - MagazinePistolEmpty + - MagazinePistolSubMachineGun + - MagazinePistolSubMachineGunEmpty + - MagazinePistolSubMachineGunTopMounted + - MagazinePistolSubMachineGunTopMountedEmpty + - MagazineRifle + - MagazineRifleEmpty + - MagazineShotgun + - MagazineShotgunEmpty + - MagazineShotgunSlug + - SpeedLoaderMagnum + - SpeedLoaderMagnumEmpty + +- type: latheRecipePack + id: SecurityWeaponsStatic + recipes: + - Flash + - Stunbaton + - CombatKnife + - RiotShield + +## Dynamic recipes + +- type: latheRecipePack + id: SecurityEquipment + recipes: + - ClothingBackpackElectropack + - HoloprojectorSecurity + - PortableRecharger + - PowerCageHigh + - PowerCageMedium + - PowerCageSmall + - TelescopicShield + +- type: latheRecipePack + id: SecurityBoards + recipes: + - ShuttleGunDusterCircuitboard + - ShuttleGunFriendshipCircuitboard + - ShuttleGunPerforatorCircuitboard + - ShuttleGunSvalinnMachineGunCircuitboard + +- type: latheRecipePack + parent: + - ScienceExplosives # sec gets everything for modular grenade making that sci does + id: SecurityExplosives + recipes: + - ExplosivePayload + - GrenadeBlast + - GrenadeEMP + - GrenadeFlash + - MagazineGrenadeEmpty + +# Shared between secfab and emagged protolathe +- type: latheRecipePack + id: SecurityAmmo + recipes: + - BoxBeanbag + - BoxShotgunIncendiary + - BoxShotgunUranium + - BoxShellTranquilizer + - MagazineBoxLightRifleIncendiary + - MagazineBoxLightRifleUranium + - MagazineBoxMagnumIncendiary + - MagazineBoxMagnumUranium + - MagazineBoxPistolIncendiary + - MagazineBoxPistolUranium + - MagazineBoxRifleIncendiary + - MagazineBoxRifleUranium + - MagazineLightRifleIncendiary + - MagazineLightRifleUranium + - MagazinePistolIncendiary + - MagazinePistolUranium + - MagazinePistolSubMachineGunIncendiary + - MagazinePistolSubMachineGunUranium + - MagazineRifleIncendiary + - MagazineRifleUranium + - MagazineShotgunBeanbag + - MagazineShotgunIncendiary + - SpeedLoaderMagnumIncendiary + - SpeedLoaderMagnumUranium + +- type: latheRecipePack + id: SecurityWeapons + recipes: + - Truncheon + - WeaponAdvancedLaser + - WeaponDisabler + - WeaponDisablerSMG + - WeaponLaserCannon + - WeaponLaserCarbine + - WeaponXrayCannon diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/service.yml b/Resources/Prototypes/Recipes/Lathes/Packs/service.yml new file mode 100644 index 0000000000..bbf5ec0eb1 --- /dev/null +++ b/Resources/Prototypes/Recipes/Lathes/Packs/service.yml @@ -0,0 +1,62 @@ +## Static + +- type: latheRecipePack + id: ServiceStatic + recipes: + - Bucket + - DrinkMug + - DrinkMugMetal + - DrinkGlass + - DrinkShotGlass + - DrinkGlassCoupeShaped + - CustomDrinkJug + - FoodPlate + - FoodPlateSmall + - FoodPlatePlastic + - FoodPlateSmallPlastic + - FoodBowlBig + - FoodPlateTin + - FoodPlateMuffinTin + - FoodKebabSkewer + - SprayBottle + - MopItem + - Holoprojector + - WetFloorSign + +- type: latheRecipePack + id: ServiceBoardsStatic + recipes: + - BiogeneratorMachineCircuitboard + - UniformPrinterMachineCircuitboard + - MicrowaveMachineCircuitboard + - ReagentGrinderMachineCircuitboard + - ElectricGrillMachineCircuitboard + - BoozeDispenserMachineCircuitboard + - SodaDispenserMachineCircuitboard + +## Dynamic + +- type: latheRecipePack + id: Janitor + recipes: + - AdvMopItem + - WeaponSprayNozzle + - ClothingBackpackWaterTank + - MegaSprayBottle + +- type: latheRecipePack + id: Instruments + recipes: + - SynthesizerInstrument + +- type: latheRecipePack + id: ServiceBoards + recipes: + - BiofabricatorMachineCircuitboard + - FatExtractorMachineCircuitboard + - HydroponicsTrayMachineCircuitboard # roundstart gear being unlocked roundstart when + - SeedExtractorMachineCircuitboard # ^ + - MassMediaCircuitboard + - ReagentGrinderIndustrialMachineCircuitboard + - JukeboxCircuitBoard + - DawInstrumentMachineCircuitboard diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/shared.yml b/Resources/Prototypes/Recipes/Lathes/Packs/shared.yml new file mode 100644 index 0000000000..44ba33cf8b --- /dev/null +++ b/Resources/Prototypes/Recipes/Lathes/Packs/shared.yml @@ -0,0 +1,51 @@ +## Static + +- type: latheRecipePack + id: MaterialsStatic + recipes: + - SheetRGlass + +- type: latheRecipePack + id: PartsStatic + recipes: + - Igniter + - ModularReceiver + - MicroManipulatorStockPart + - MatterBinStockPart + - CapacitorStockPart + - ConveyorBeltAssembly + +- type: latheRecipePack + id: LightsStatic + recipes: + - LightTube + - LedLightTube + - SodiumLightTube + - ExteriorLightTube + - LightBulb + - LedLightBulb + - DimLightBulb + - WarmLightBulb + +- type: latheRecipePack + id: PowerCellsStatic + recipes: + - PowerCellSmall + - PowerCellMedium + +- type: latheRecipePack + id: CablesStatic + recipes: + - CableStack + - CableMVStack + - CableHVStack + +## Dynamic + +# Things you'd expect sci salv and engi to make use of +- type: latheRecipePack + id: Equipment + recipes: + - HandHeldMassScanner + - ClothingMaskWeldingGas + - SignallerAdvanced diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/sheetifier.yml b/Resources/Prototypes/Recipes/Lathes/Packs/sheetifier.yml new file mode 100644 index 0000000000..18aaef55c6 --- /dev/null +++ b/Resources/Prototypes/Recipes/Lathes/Packs/sheetifier.yml @@ -0,0 +1,7 @@ +## Static + +- type: latheRecipePack + id: SheetifierStatic + recipes: + - MaterialSheetMeat + - SheetPaper diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/tiles.yml b/Resources/Prototypes/Recipes/Lathes/Packs/tiles.yml new file mode 100644 index 0000000000..51db1dc861 --- /dev/null +++ b/Resources/Prototypes/Recipes/Lathes/Packs/tiles.yml @@ -0,0 +1,49 @@ +## Static + +- type: latheRecipePack + id: FloorTilesStatic + recipes: + - FloorTileItemDark + - FloorTileItemDarkDiagonalMini + - FloorTileItemDarkDiagonal + - FloorTileItemDarkHerringbone + - FloorTileItemDarkMini + - FloorTileItemDarkMono + - FloorTileItemDarkPavement + - FloorTileItemDarkPavementVertical + - FloorTileItemDarkOffset + - FloorTileItemSteelCheckerDark + - FloorTileItemSteel + - FloorTileItemSteelOffset + - FloorTileItemSteelDiagonalMini + - FloorTileItemSteelDiagonal + - FloorTileItemSteelHerringbone + - FloorTileItemSteelMini + - FloorTileItemSteelMono + - FloorTileItemSteelPavement + - FloorTileItemSteelPavementVertical + - FloorTileItemWhite + - FloorTileItemWhiteOffset + - FloorTileItemWhiteDiagonalMini + - FloorTileItemWhiteDiagonal + - FloorTileItemWhiteHerringbone + - FloorTileItemWhiteMini + - FloorTileItemWhiteMono + - FloorTileItemWhitePavement + - FloorTileItemWhitePavementVertical + - FloorTileItemSteelCheckerLight + - FloorTileItemGratingMaint + - FloorTileItemTechmaint + - FloorTileItemSteelMaint + - FloorTileItemWood + - FloorTileItemWoodLarge + - FloorTileItemWoodPattern + - FloorTileItemConcrete + - FloorTileItemConcreteMono + - FloorTileItemConcreteSmooth + - FloorTileItemGrayConcrete + - FloorTileItemGrayConcreteMono + - FloorTileItemGrayConcreteSmooth + - FloorTileItemOldConcrete + - FloorTileItemOldConcreteMono + - FloorTileItemOldConcreteSmooth diff --git a/Resources/Prototypes/Recipes/Lathes/security.yml b/Resources/Prototypes/Recipes/Lathes/security.yml index f6f303e5e3..c72701711b 100644 --- a/Resources/Prototypes/Recipes/Lathes/security.yml +++ b/Resources/Prototypes/Recipes/Lathes/security.yml @@ -245,6 +245,23 @@ materials: Steel: 300 +- type: latheRecipe + parent: BaseAmmoRecipe + id: MagazinePistolSubMachineGunUranium + result: MagazinePistolSubMachineGunUranium + materials: + Steel: 25 + Plastic: 250 + Uranium: 250 + +- type: latheRecipe + parent: BaseAmmoRecipe + id: MagazinePistolSubMachineGunIncendiary + result: MagazinePistolSubMachineGunIncendiary + materials: + Steel: 25 + Plastic: 275 + - type: latheRecipe parent: BaseEmptyAmmoRecipe id: MagazinePistolSubMachineGunTopMountedEmpty diff --git a/Resources/Prototypes/Research/arsenal.yml b/Resources/Prototypes/Research/arsenal.yml index 553258fdb3..6cecc49035 100644 --- a/Resources/Prototypes/Research/arsenal.yml +++ b/Resources/Prototypes/Research/arsenal.yml @@ -27,6 +27,7 @@ - BoxShotgunIncendiary - MagazineRifleIncendiary - MagazinePistolIncendiary + - MagazinePistolSubMachineGunIncendiary - MagazineLightRifleIncendiary - SpeedLoaderMagnumIncendiary - MagazineShotgunIncendiary @@ -74,6 +75,7 @@ recipeUnlocks: - MagazineRifleUranium - MagazinePistolUranium + - MagazinePistolSubMachineGunUranium - MagazineLightRifleUranium - SpeedLoaderMagnumUranium - MagazineBoxPistolUranium diff --git a/Resources/Prototypes/Research/experimental.yml b/Resources/Prototypes/Research/experimental.yml index 34443e78f0..be19a11702 100644 --- a/Resources/Prototypes/Research/experimental.yml +++ b/Resources/Prototypes/Research/experimental.yml @@ -11,7 +11,6 @@ cost: 5000 recipeUnlocks: - ProximitySensor - - ExosuitFabricatorMachineCircuitboard - type: technology id: BasicAnomalousResearch From d7d77ff3d4691697a1744d8085f50ac64a9dc813 Mon Sep 17 00:00:00 2001 From: compilatron <40789662+Compilatron144@users.noreply.github.com> Date: Sat, 8 Feb 2025 11:31:37 +1100 Subject: [PATCH 123/313] Plasma fixes 2 (#34962) Update plasma.yml Co-authored-by: jbox1 <40789662+jbox144@users.noreply.github.com> --- Resources/Maps/plasma.yml | 3411 +++++++++---------------------------- 1 file changed, 836 insertions(+), 2575 deletions(-) diff --git a/Resources/Maps/plasma.yml b/Resources/Maps/plasma.yml index 17be213616..910e5bcaa9 100644 --- a/Resources/Maps/plasma.yml +++ b/Resources/Maps/plasma.yml @@ -70,21 +70,21 @@ entities: - type: MetaData name: PlasmaStation - type: Transform - pos: -3.2317429,-1.9012489 + pos: 61.5,15.5 parent: 1 - type: MapGrid chunks: -10,-4: ind: -10,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAHwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAA version: 6 -1,0: ind: -1,0 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAALBwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAFBwAAAAAKAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAABBwAAAAAKBwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: gwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAACgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAADgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAABgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAABgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAABgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAA + tiles: gwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAACBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAACgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAADgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAABgwAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAABgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAA version: 6 0,-2: ind: 0,-2 @@ -96,207 +96,207 @@ entities: version: 6 -5,-5: ind: -5,-5 - tiles: BwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAgwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAGBwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAALBwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAIgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAMBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAHgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAALgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAKBwAAAAAAgwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAKBwAAAAAAgwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAFgwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAAgwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHBwAAAAABBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAABBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAALBwAAAAAABwAAAAADBwAAAAALBwAAAAADBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAACBwAAAAAGBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: BwAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAECgAAAAAACgAAAAAACgAAAAAABwAAAAADBwAAAAAABwAAAAAAgwAAAAAABAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACAgAAAAAAAgAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJAgAAAAAABwAAAAADgwAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAACgwAAAAAAAwAAAAADBwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABgwAAAAAAgwAAAAAABwAAAAAJAgAAAAAABwAAAAAFgwAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAKgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAABgwAAAAAABAAAAAADBAAAAAADBAAAAAABgwAAAAAAgwAAAAAABwAAAAAIAgAAAAAABwAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAACgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAACgwAAAAAAAwAAAAACAwAAAAADAwAAAAABgwAAAAAAgwAAAAAABwAAAAABAgAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: BwAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAGBwAAAAAABwAAAAAFBwAAAAAABwAAAAACgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAADBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAIgwAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAADgwAAAAAAAwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAADgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAADgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAADgwAAAAAABAAAAAADBAAAAAABBAAAAAADgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAADgwAAAAAAAwAAAAADAwAAAAADAwAAAAACgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 -3,0: ind: -3,0 - tiles: gwAAAAAABQAAAAACBQAAAAAABQAAAAABBQAAAAADBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBQAAAAAABQAAAAACBQAAAAACBQAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAACBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAACgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAAA + tiles: gwAAAAAABQAAAAABBQAAAAADBQAAAAAABQAAAAADBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBQAAAAAABQAAAAACBQAAAAACBQAAAAABBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAABBQAAAAAABQAAAAABBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAACgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAACgwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAMgwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAB version: 6 -3,-1: ind: -3,-1 - tiles: BwAAAAAABwAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAFCgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAADgwAAAAAABwAAAAAKAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAADBAAAAAACBAAAAAAAAwAAAAAAAwAAAAAAgwAAAAAABQAAAAADBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAAABAAAAAACBAAAAAAAAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAADBAAAAAABBAAAAAACAwAAAAACAwAAAAADgwAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAACBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAADAwAAAAAABQAAAAABBQAAAAABBQAAAAACBQAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAABgwAAAAAABQAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAADBAAAAAADBAAAAAACAwAAAAADAwAAAAAAgwAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAACBAAAAAAABAAAAAABAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAACBAAAAAACBAAAAAAAAwAAAAACAwAAAAABgwAAAAAAAwAAAAADgwAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: BwAAAAAABwAAAAALBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAIBwAAAAAABwAAAAAEBwAAAAAABwAAAAAGBwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAADBAAAAAACBAAAAAADAwAAAAAAAwAAAAADgwAAAAAABQAAAAACBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAADBAAAAAACBAAAAAACAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAADBAAAAAADBAAAAAADAwAAAAABAwAAAAADgwAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAAAAwAAAAABBQAAAAACBQAAAAADBQAAAAAABQAAAAADBQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAAAgwAAAAAABQAAAAADBQAAAAABBQAAAAACBQAAAAADBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAADBAAAAAACBAAAAAADAwAAAAABAwAAAAABgwAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABBAAAAAACBAAAAAADBAAAAAACAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAABBAAAAAACBAAAAAAAAwAAAAAAAwAAAAADgwAAAAAAAwAAAAADgwAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 -6,0: ind: -6,0 - tiles: AwAAAAACAwAAAAAAAwAAAAADgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAABAAAAAACDAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAACgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAABAAAAAABDAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADAwAAAAADgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAABAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAAAAwAAAAACgwAAAAAAAwAAAAACBAAAAAAABAAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAADAwAAAAAAgwAAAAAAAwAAAAADBAAAAAAABAAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABBAAAAAAABAAAAAADAwAAAAAAgwAAAAAAAwAAAAACBAAAAAACBAAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAwAAAAADBAAAAAADBAAAAAACAwAAAAABgwAAAAAAAwAAAAAABAAAAAACBAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAwAAAAADBAAAAAACBAAAAAADAwAAAAADgwAAAAAAAwAAAAADBAAAAAABBAAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAADBAAAAAACAwAAAAADgwAAAAAAAwAAAAADBAAAAAADBAAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAABCgAAAAAACgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAACBAAAAAACCgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAA + tiles: AwAAAAABAwAAAAACAwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAABAAAAAACDAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAgwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAABAAAAAACDAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAACgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAABAAAAAADDAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAACAwAAAAABgwAAAAAAAwAAAAADBAAAAAACBAAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAACAwAAAAAAgwAAAAAAAwAAAAAABAAAAAABBAAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAALgwAAAAAAgwAAAAAAAwAAAAADBAAAAAACBAAAAAACAwAAAAABgwAAAAAAAwAAAAACBAAAAAABBAAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAwAAAAABBAAAAAADBAAAAAABAwAAAAADgwAAAAAAAwAAAAAABAAAAAADBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAwAAAAACBAAAAAAABAAAAAABAwAAAAADgwAAAAAAAwAAAAADBAAAAAABBAAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAACAwAAAAACgwAAAAAAAwAAAAAABAAAAAADBAAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAADCgAAAAAACgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAIgAAAAACIgAAAAADBAAAAAACCgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAgwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABQAAAAABBQAAAAABBQAAAAAABQAAAAAABQAAAAABBQAAAAABgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAAABQAAAAADBQAAAAADgwAAAAAAAgAAAAAAAgAAAAAABwAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAABwAAAAAABQAAAAACBQAAAAABBQAAAAAABQAAAAABBQAAAAADBQAAAAACgwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAABQAAAAAABQAAAAABBQAAAAABBQAAAAADBQAAAAACBQAAAAACgwAAAAAAAwAAAAACAwAAAAABgwAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACgwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAAwAAAAADAwAAAAAABQAAAAAAAwAAAAACAwAAAAADAwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAAABQAAAAABBQAAAAACBQAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAADBQAAAAADgwAAAAAAAwAAAAADAwAAAAACgwAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAABBQAAAAAABQAAAAABBQAAAAACBQAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAACgwAAAAAAAwAAAAACAwAAAAABAwAAAAABBQAAAAACBQAAAAABBQAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAABBQAAAAAABQAAAAABBQAAAAADCwAAAAAAAwAAAAADAwAAAAABgwAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAAABQAAAAAABQAAAAADBQAAAAABBQAAAAABBQAAAAADBQAAAAACBQAAAAAABQAAAAADCwAAAAAAAwAAAAADAwAAAAACgwAAAAAABQAAAAADBQAAAAABBQAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAACBQAAAAABBQAAAAABBQAAAAACBQAAAAACCwAAAAAAAwAAAAADAwAAAAACgwAAAAAABQAAAAADBQAAAAACgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACBQAAAAACBQAAAAADBQAAAAABBQAAAAACBQAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAABQAAAAABBQAAAAABBQAAAAADBQAAAAADBQAAAAACBQAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAACgwAAAAAAAwAAAAACAwAAAAABAwAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAADBQAAAAABBQAAAAAD + tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAgwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABQAAAAABBQAAAAACBQAAAAABBQAAAAABBQAAAAACBQAAAAACgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABQAAAAAABQAAAAADBQAAAAACBQAAAAADBQAAAAABBQAAAAABgwAAAAAAAgAAAAAAAgAAAAAABwAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAABwAAAAAABQAAAAADBQAAAAABBQAAAAADBQAAAAAABQAAAAACBQAAAAADgwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAABQAAAAACBQAAAAACBQAAAAACBQAAAAAABQAAAAABBQAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAAwAAAAACAwAAAAADBQAAAAABAwAAAAACAwAAAAADAwAAAAADgwAAAAAAAwAAAAABAwAAAAABgwAAAAAABQAAAAACBQAAAAADBQAAAAABBQAAAAAABQAAAAABBQAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAACBQAAAAAABQAAAAADgwAAAAAAAwAAAAABAwAAAAACgwAAAAAABQAAAAADBQAAAAADBQAAAAABBQAAAAABBQAAAAACBQAAAAABBQAAAAACBQAAAAADBQAAAAABBQAAAAAABQAAAAABBQAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAADBQAAAAACBQAAAAADBQAAAAAABQAAAAACBQAAAAADBQAAAAADBQAAAAABBQAAAAADBQAAAAACBQAAAAACBQAAAAABBQAAAAAACwAAAAAAAwAAAAABAwAAAAADgwAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAACBQAAAAADBQAAAAAABQAAAAADBQAAAAABBQAAAAADBQAAAAACBQAAAAADCwAAAAAAAwAAAAABAwAAAAADgwAAAAAABQAAAAADBQAAAAABBQAAAAADBQAAAAAABQAAAAAABQAAAAADBQAAAAABBQAAAAACBQAAAAAABQAAAAABBQAAAAACBQAAAAAACwAAAAAAAwAAAAABAwAAAAABgwAAAAAABQAAAAABBQAAAAABgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABBQAAAAABBQAAAAADBQAAAAADBQAAAAABBQAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADgwAAAAAABQAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAACBQAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAABgwAAAAAAAwAAAAABAwAAAAAAAwAAAAACBQAAAAABBQAAAAAABQAAAAADBQAAAAADBQAAAAAABQAAAAAD version: 6 -4,0: ind: -4,0 - tiles: BAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAACgwAAAAAAAwAAAAABAwAAAAABgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAADBQAAAAADgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAAABQAAAAADBQAAAAAABQAAAAACgwAAAAAABAAAAAADBAAAAAADBAAAAAACgwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAADBQAAAAABBQAAAAADgwAAAAAABAAAAAAABAAAAAACBAAAAAABgwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAADAAAAAAADAAAAAAAgwAAAAAAAwAAAAAAIwAAAAADIwAAAAABAwAAAAABAwAAAAABgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABIwAAAAACIwAAAAADAwAAAAACAwAAAAABgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAABgwAAAAAAAwAAAAADAwAAAAACgwAAAAAABQAAAAACBQAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAACgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAABQAAAAACBQAAAAACBQAAAAADBQAAAAAABQAAAAABBQAAAAACgwAAAAAABAAAAAACBAAAAAAABAAAAAACgwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACgwAAAAAAgwAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAABBQAAAAACgwAAAAAABAAAAAADBAAAAAAABAAAAAADgwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAADAAAAAAADAAAAAAAgwAAAAAAAwAAAAADIwAAAAAAIwAAAAABAwAAAAACAwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADIwAAAAAAIwAAAAAAAwAAAAABAwAAAAABgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-1: ind: -5,-1 - tiles: BwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAABCwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAABQAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAgwAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAABgwAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACCwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAACwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAACwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAgwAAAAAABAAAAAAD + tiles: BwAAAAAABwAAAAABBwAAAAALgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAKBwAAAAADBwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAABQAAAAACBwAAAAAABwAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABgwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACCwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAACwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACCwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAADgwAAAAAABAAAAAAD version: 6 -5,0: ind: -5,0 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAADgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAADAwAAAAAAIwAAAAADIwAAAAACAwAAAAACgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAACAwAAAAADIwAAAAABIwAAAAACAwAAAAADgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAADgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAACAwAAAAADIwAAAAAAIwAAAAAAAwAAAAADgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAADAwAAAAAAIwAAAAABIwAAAAACAwAAAAABgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,-1: ind: -6,-1 - tiles: CgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAADgwAAAAAAAwAAAAAAgwAAAAAABwAAAAAABwAAAAAFBwAAAAAHBwAAAAAKBwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFgAAAAAAFgAAAAAAKQAAAAAAFgAAAAALBwAAAAAABwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAFgAAAAAAFgAAAAAAKQAAAAAAFgAAAAAAFgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADgwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABwAAAAAAgwAAAAAABAAAAAACCQAAAAAACQAAAAAABAAAAAACCQAAAAAACQAAAAAABAAAAAACgwAAAAAAgwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABwAAAAADBwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHgwAAAAAABAAAAAABCQAAAAAACQAAAAAABAAAAAAACQAAAAAACQAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAACCQAAAAAACQAAAAAABAAAAAADCQAAAAAACQAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: CgAAAAAACgAAAAAACgAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAIBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAgwAAAAAAAwAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAALBwAAAAAAgwAAAAAABwAAAAAABwAAAAABBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFgAAAAAAFgAAAAAAKQAAAAAAFgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAFgAAAAAAFgAAAAAAKQAAAAAAFgAAAAAAFgAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACgwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAKFgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABwAAAAAAgwAAAAAABAAAAAAACQAAAAAACQAAAAAABAAAAAAACQAAAAAACQAAAAAABAAAAAAAgwAAAAAAgwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAACgwAAAAAAgwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAACQAAAAAACQAAAAAABAAAAAACCQAAAAAACQAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGBwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAACCQAAAAAACQAAAAAABAAAAAACCQAAAAAACQAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAALgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 -6,-4: ind: -6,-4 - tiles: gwAAAAAABwAAAAAFFgAAAAAFFgAAAAAAFgAAAAAAFgAAAAAAKQAAAAAAFgAAAAAFFgAAAAAAFgAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAgwAAAAAABwAAAAAAFgAAAAAFFgAAAAAAFgAAAAAAFgAAAAAAKQAAAAAAFgAAAAADFgAAAAAAFgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAAAFgAAAAAAKQAAAAAAFgAAAAAKFgAAAAAABwAAAAAABwAAAAAKBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAKgwAAAAAABwAAAAAFBwAAAAAABwAAAAAAKQAAAAAAFgAAAAAFKQAAAAAAFgAAAAAAFgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAHBwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAHBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAADBwAAAAAEBwAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAA + tiles: gwAAAAAABwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAKQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAKQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAAAFgAAAAAEKQAAAAAAFgAAAAAAFgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAAAFgAAAAAAKQAAAAAAFgAAAAAIFgAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAADBwAAAAAGBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAFBwAAAAAABwAAAAAJCwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAKBwAAAAAABwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAIBwAAAAAJBwAAAAAABwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAADBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAABDQAAAAADDQAAAAAADQAAAAAADQAAAAABDQAAAAADDQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAADDQAAAAADDQAAAAAADQAAAAABDQAAAAACDQAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAABDQAAAAAADQAAAAADDQAAAAADDQAAAAABDQAAAAADDQAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAAADQAAAAADDQAAAAABDQAAAAAADQAAAAACDQAAAAAADQAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAABDQAAAAADDQAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAADDQAAAAABgwAAAAAADQAAAAABDQAAAAAADQAAAAABBAAAAAACBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAADDQAAAAABAwAAAAACDQAAAAACDQAAAAAADQAAAAABBAAAAAADBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAACDQAAAAABDQAAAAACDQAAAAACDQAAAAADgwAAAAAADQAAAAADDQAAAAADDQAAAAABBAAAAAACBAAAAAACBAAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABDQAAAAAADQAAAAACDQAAAAAADQAAAAADgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAAwAAAAABBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADDQAAAAABDQAAAAACDQAAAAACDQAAAAACgwAAAAAADQAAAAACDQAAAAACDQAAAAADAwAAAAABBAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABDQAAAAACDQAAAAAADQAAAAAADQAAAAABgwAAAAAADQAAAAABDQAAAAADDQAAAAAAAwAAAAABBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACDQAAAAACDQAAAAAADQAAAAADDQAAAAABgwAAAAAADQAAAAADDQAAAAACDQAAAAABBAAAAAACBAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADAwAAAAACDQAAAAABgwAAAAAADQAAAAADDQAAAAADDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAACDQAAAAACgwAAAAAADQAAAAABDQAAAAAADQAAAAADBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAAADQAAAAAADQAAAAACDQAAAAABDQAAAAABDQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAACDQAAAAADDQAAAAACDQAAAAAADQAAAAADDQAAAAACDQAAAAADCAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAABDQAAAAABDQAAAAABDQAAAAACDQAAAAACDQAAAAABDQAAAAABCAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAAADQAAAAAADQAAAAADDQAAAAADDQAAAAABDQAAAAABDQAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAACDQAAAAAADQAAAAABDQAAAAABDQAAAAADCAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAACDQAAAAABgwAAAAAADQAAAAACDQAAAAACDQAAAAAABAAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAAADQAAAAACAwAAAAABDQAAAAABDQAAAAAADQAAAAAABAAAAAADBAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAAADQAAAAACDQAAAAABDQAAAAAADQAAAAACgwAAAAAADQAAAAAADQAAAAADDQAAAAACBAAAAAACBAAAAAACBAAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADDQAAAAACDQAAAAAADQAAAAACDQAAAAABgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAAwAAAAADBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADDQAAAAABDQAAAAACDQAAAAACDQAAAAADgwAAAAAADQAAAAADDQAAAAACDQAAAAABAwAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABDQAAAAADDQAAAAADDQAAAAAADQAAAAADgwAAAAAADQAAAAAADQAAAAABDQAAAAABAwAAAAABBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABDQAAAAADDQAAAAADDQAAAAACDQAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAABBAAAAAABBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAABDQAAAAABgwAAAAAADQAAAAADDQAAAAABDQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAABDQAAAAACgwAAAAAADQAAAAACDQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: BwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAABBQAAAAACBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAABDQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAAADQAAAAACgwAAAAAABQAAAAAABQAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAABDQAAAAABDQAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAADBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAADgwAAAAAABQAAAAADBQAAAAACBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAABgwAAAAAAgwAAAAAADgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAABHQAAAAAD + tiles: BwAAAAAIgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAABBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAACDQAAAAABDQAAAAABDQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAADDQAAAAAADQAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAADDQAAAAADDQAAAAACgwAAAAAABQAAAAAABQAAAAACBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAACBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAACgwAAAAAABQAAAAABBQAAAAABBQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAADgwAAAAAAgwAAAAAADgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAAD version: 6 -3,-3: ind: -3,-3 - tiles: DgAAAAAADgAAAAADBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAAADgAAAAABBAAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAADDgAAAAAABAAAAAABBAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAABBAAAAAABBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAAADgAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAABAwAAAAABAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAADBQAAAAAAAwAAAAADAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAACBQAAAAACAwAAAAAAAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAACAwAAAAADAwAAAAABAwAAAAABgwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAADQAAAAADDQAAAAABDQAAAAAAgwAAAAAAgwAAAAAABQAAAAADgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADDQAAAAACDQAAAAACDQAAAAADgwAAAAAABQAAAAACBQAAAAADgwAAAAAADQAAAAACDQAAAAADAwAAAAACgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADgwAAAAAABQAAAAADBQAAAAAAgwAAAAAADQAAAAABDQAAAAAAAwAAAAACgwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAgwAAAAAABQAAAAABBQAAAAABgwAAAAAADQAAAAABDQAAAAADAwAAAAADgwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAACDQAAAAAADQAAAAABDQAAAAACDQAAAAABDQAAAAADDQAAAAAADQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAACDQAAAAADDQAAAAABDQAAAAABDQAAAAACDQAAAAAADQAAAAAC + tiles: DgAAAAADDgAAAAABBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAABHQAAAAACDgAAAAAABAAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAACDgAAAAAABAAAAAABBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAACBAAAAAAABAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAACDgAAAAABBAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAACAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAADBQAAAAABAwAAAAABAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAACAwAAAAACAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAACBQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADDQAAAAABDQAAAAAADQAAAAAAgwAAAAAAgwAAAAAABQAAAAADgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADDQAAAAADDQAAAAACDQAAAAAAgwAAAAAABQAAAAADBQAAAAADgwAAAAAADQAAAAAADQAAAAACAwAAAAABgwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAACgwAAAAAABQAAAAADBQAAAAADgwAAAAAADQAAAAAADQAAAAAAAwAAAAABgwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADgwAAAAAABQAAAAADBQAAAAACgwAAAAAADQAAAAAADQAAAAADAwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAACgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAABDQAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAABDQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAADDQAAAAABDQAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAAB version: 6 -4,-3: ind: -4,-3 - tiles: BwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAALBwAAAAACAgAAAAAABwAAAAAAgwAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAADDgAAAAAADgAAAAABDgAAAAABBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAADDgAAAAADDgAAAAABDgAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAAgAAAAAAAgAAAAAADgAAAAABDgAAAAACDgAAAAADDgAAAAABDgAAAAADDgAAAAACDgAAAAABDgAAAAABBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAHgwAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAADDgAAAAAADgAAAAAADgAAAAADBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAACDgAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAADDgAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAFAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAKBwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAADgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABBAAAAAACBAAAAAACAwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAACDgAAAAABDgAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAMBwAAAAABBwAAAAAFAgAAAAAAAgAAAAAADgAAAAABDgAAAAABDgAAAAADDgAAAAADDgAAAAAADgAAAAADDgAAAAACDgAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAADgAAAAABDgAAAAACDgAAAAADDgAAAAABDgAAAAAADgAAAAAADgAAAAABDgAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAIBwAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAABDgAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAACDgAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAAADgAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAACDgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAALBwAAAAAABwAAAAADBwAAAAAIBwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAEBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAAABAAAAAABgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAABAAAAAAABAAAAAADAwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: EAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAADQAAAAAAgwAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACIAAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKHgAAAAADDQAAAAAAgwAAAAAAIAAAAAAAIAAAAAAAgwAAAAAABAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAHgAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAHgAAAAAAHgAAAAABgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAADHgAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAADBQAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAAAgwAAAAAABQAAAAADBQAAAAABBQAAAAACBQAAAAABBQAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAACBAAAAAACgwAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAAABQAAAAAABQAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAACgwAAAAAABAAAAAADBAAAAAAAgwAAAAAABQAAAAABBQAAAAACBQAAAAADBQAAAAACBQAAAAACBQAAAAACBQAAAAAABQAAAAADBAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAADBQAAAAABBAAAAAACBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAADBQAAAAACBQAAAAACBQAAAAACBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAEgwAAAAAADgAAAAABDgAAAAABDgAAAAADDgAAAAACDgAAAAAADgAAAAABDgAAAAAB + tiles: EAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAADQAAAAADgwAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAHgAAAAAADQAAAAACgwAAAAAAIAAAAAAAIAAAAAAAgwAAAAAABAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJBwAAAAAAHgAAAAABDQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAHgAAAAAAHgAAAAABgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAAAHgAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAACAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAABBQAAAAACBQAAAAAABQAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAADgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABgwAAAAAABQAAAAABBQAAAAADBQAAAAADBQAAAAADBQAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAABQAAAAABBQAAAAABBQAAAAABBQAAAAADBQAAAAADBQAAAAABBQAAAAACBQAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAACgwAAAAAABAAAAAABBAAAAAADgwAAAAAABQAAAAAABQAAAAABBQAAAAABBQAAAAABBQAAAAADBQAAAAACBQAAAAADBQAAAAAABAAAAAACBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAACBQAAAAABBQAAAAABBQAAAAADBQAAAAACBQAAAAACBQAAAAADBAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAACBQAAAAABBQAAAAADBQAAAAACBQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAADgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAADDgAAAAABDgAAAAADDgAAAAABDgAAAAACDgAAAAAADgAAAAAB version: 6 -5,-2: ind: -5,-2 - tiles: gwAAAAAABQAAAAABBQAAAAACBQAAAAADgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAABEQAAAAADEQAAAAABEQAAAAAAEQAAAAACBAAAAAABBAAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAABgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAACEQAAAAACEQAAAAABEQAAAAACEQAAAAACBAAAAAACBAAAAAABgwAAAAAABQAAAAACBQAAAAABBQAAAAACgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAACEQAAAAAAEQAAAAADEQAAAAACEQAAAAACBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAAABQAAAAAABQAAAAADgwAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAABAgAAAAAABwAAAAAJgwAAAAAABQAAAAACBQAAAAABBQAAAAADgwAAAAAABAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAEBwAAAAAAAgAAAAAABwAAAAAABQAAAAAAAwAAAAACAwAAAAACAwAAAAAABQAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAACgwAAAAAABAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAABBAAAAAADBAAAAAACBAAAAAADgwAAAAAABAAAAAACBAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADBAAAAAABBAAAAAADBAAAAAACgwAAAAAABAAAAAADBAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAABBAAAAAACBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAAACwAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAADgwAAAAAABAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAA + tiles: gwAAAAAABQAAAAACBQAAAAADBQAAAAABgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAADEQAAAAADEQAAAAACEQAAAAABEQAAAAADBAAAAAACBAAAAAACgwAAAAAABQAAAAADBQAAAAAABQAAAAABgwAAAAAABwAAAAAHBwAAAAAAAgAAAAAAgwAAAAAAEQAAAAABEQAAAAABEQAAAAACEQAAAAADEQAAAAABBAAAAAAABAAAAAACgwAAAAAABQAAAAAABQAAAAABBQAAAAADgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAACEQAAAAAAEQAAAAABEQAAAAACEQAAAAAABAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAADgwAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAEBwAAAAAAAgAAAAAABwAAAAACgwAAAAAABQAAAAABBQAAAAADBQAAAAABgwAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAADBQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADBQAAAAACBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABgwAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAABBAAAAAABBAAAAAABBAAAAAACgwAAAAAABAAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABBAAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAACBAAAAAABBAAAAAAABAAAAAADgwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAABCwAAAAAABAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAABgwAAAAAABAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: AwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADBAAAAAAABAAAAAACAwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABBAAAAAABBAAAAAADAwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAAAAwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAKwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAKwAAAAAABAAAAAACBAAAAAABgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAABAAAAAABBAAAAAACAwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAwAAAAACCAAAAAAACAAAAAAACAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAABAAAAAADBAAAAAADgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAABBAAAAAAABAAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADgwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAABAAAAAACBAAAAAABAwAAAAABBAAAAAACBAAAAAAAAwAAAAABAwAAAAAAAwAAAAAABAAAAAADBAAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACBAAAAAABBAAAAAAAAwAAAAABBAAAAAADBAAAAAABAwAAAAACAwAAAAABAwAAAAABBAAAAAAABAAAAAADgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAABgwAAAAAABAAAAAADBAAAAAAAAwAAAAADBAAAAAADBAAAAAADAwAAAAACAwAAAAABAwAAAAACBAAAAAABBwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAABCwAAAAAACwAAAAAAgwAAAAAABAAAAAAABAAAAAACAwAAAAADAwAAAAABAwAAAAAABAAAAAACBwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAADBwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADgwAAAAAABAAAAAAABAAAAAABBAAAAAACBwAAAAAGBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: AwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADBAAAAAADBAAAAAABAwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACBAAAAAACBAAAAAACAwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAABAwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAKwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAKwAAAAAABAAAAAACBAAAAAADgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAABAAAAAACBAAAAAADAwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAwAAAAAACAAAAAAACAAAAAAACAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAABAAAAAABBAAAAAADgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABBAAAAAABBAAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAABgwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAABAAAAAABBAAAAAABAwAAAAADBAAAAAABBAAAAAAAAwAAAAADAwAAAAAAAwAAAAACBAAAAAADBAAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACBAAAAAADBAAAAAABAwAAAAAABAAAAAADBAAAAAAAAwAAAAAAAwAAAAACAwAAAAAABAAAAAADBAAAAAACgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAACgwAAAAAABAAAAAACBAAAAAADAwAAAAAABAAAAAABBAAAAAAAAwAAAAACAwAAAAACAwAAAAADBAAAAAACBwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAACBAAAAAACAwAAAAABAwAAAAAAAwAAAAACBAAAAAABBwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAADgwAAAAAABAAAAAADBAAAAAADBAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAABgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAC version: 6 -6,-2: ind: -6,-2 - tiles: BAAAAAAAAwAAAAABAwAAAAACAwAAAAAABAAAAAAABAAAAAADgwAAAAAAAwAAAAAAAwAAAAABAwAAAAACgwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADBAAAAAACAwAAAAADAwAAAAADAwAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAABAAAAAABAwAAAAAAAwAAAAAAAwAAAAABBAAAAAABBAAAAAAAgwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAACBAAAAAACAwAAAAADAwAAAAACAwAAAAABBAAAAAAABAAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAAAgwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAAABAAAAAABBAAAAAABgwAAAAAABAAAAAACBAAAAAADBAAAAAACgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABAAAAAADBAAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAACgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAADgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAADgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABAAAAAAABAAAAAACgwAAAAAABAAAAAABBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACgwAAAAAABAAAAAADBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: BAAAAAACAwAAAAACAwAAAAAAAwAAAAACBAAAAAABBAAAAAADgwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAgwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABBAAAAAACAwAAAAAAAwAAAAACAwAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAABAAAAAABAwAAAAAAAwAAAAACAwAAAAAABAAAAAABBAAAAAADgwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADBAAAAAABAwAAAAABAwAAAAABAwAAAAADBAAAAAADBAAAAAABgwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAACgwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAACgwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAABAAAAAAABAAAAAACgwAAAAAABAAAAAADBAAAAAABBAAAAAABgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAADgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABAAAAAABBAAAAAABgwAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAABgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAACgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABAAAAAADBAAAAAADgwAAAAAABAAAAAADBAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 -5,-4: ind: -5,-4 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEAAAAAAAEAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAACDQAAAAABBwAAAAAABwAAAAAIBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAAADQAAAAABDQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAAgwAAAAAADQAAAAACBwAAAAAFBwAAAAAABwAAAAAMBwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAACAgAAAAAAAgAAAAAABwAAAAAABwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACgwAAAAAAAwAAAAADAwAAAAABAwAAAAADBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAFBwAAAAAABAAAAAABBAAAAAACBwAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABAAAAAABgwAAAAAABwAAAAAEBwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAALBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAIBwAAAAAABwAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEAAAAAAAEAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAAADQAAAAADDQAAAAACBwAAAAAEBwAAAAAABwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADgwAAAAAADQAAAAADDQAAAAAADQAAAAAADQAAAAACDQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABgwAAAAAAAwAAAAACAwAAAAADgwAAAAAAgwAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAACAgAAAAAAAgAAAAAABwAAAAAABwAAAAAICwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAACBwAAAAAKBwAAAAAABwAAAAADBwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABBAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAHBwAAAAAABAAAAAADBAAAAAADBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABAAAAAAAgwAAAAAABwAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAH version: 6 -6,-3: ind: -6,-3 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAABAAAAAACBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAABAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAABgwAAAAAAEQAAAAACEQAAAAACEQAAAAABgwAAAAAAEQAAAAADEQAAAAADEQAAAAADgwAAAAAAEQAAAAABGgAAAAAAGgAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAADgwAAAAAAEQAAAAABEQAAAAAAEQAAAAACgwAAAAAAEQAAAAAAEQAAAAABEQAAAAACgwAAAAAAEQAAAAADGgAAAAAABQAAAAACgwAAAAAABAAAAAABBAAAAAABBAAAAAADgwAAAAAAEQAAAAAAEQAAAAAAEQAAAAABgwAAAAAAEQAAAAABEQAAAAADEQAAAAACgwAAAAAAEQAAAAADBQAAAAAABQAAAAACAwAAAAAABAAAAAABBAAAAAACBAAAAAABgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAAAAwAAAAAABAAAAAABBAAAAAAABAAAAAADgwAAAAAAAwAAAAACBAAAAAADBAAAAAABBAAAAAACAwAAAAACBAAAAAABBAAAAAAABAAAAAABAwAAAAAABQAAAAAABQAAAAADAwAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABAwAAAAABgwAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAAABQAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAACgwAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAAABQAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAACAwAAAAADAwAAAAABAwAAAAAAgwAAAAAABQAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAABBAAAAAADAwAAAAABAwAAAAACAwAAAAAABAAAAAABBAAAAAABgwAAAAAAAwAAAAABAwAAAAACAwAAAAABgwAAAAAABQAAAAAABQAAAAABBQAAAAABBQAAAAAABQAAAAAB + tiles: gwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAABAAAAAACBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAABAAAAAADBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAAAgwAAAAAAEQAAAAAAEQAAAAAAEQAAAAADgwAAAAAAEQAAAAAAEQAAAAADEQAAAAACgwAAAAAAEQAAAAAAGgAAAAAAGgAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAABgwAAAAAAEQAAAAABEQAAAAABEQAAAAAAgwAAAAAAEQAAAAABEQAAAAACEQAAAAACgwAAAAAAEQAAAAACGgAAAAAABQAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAAAgwAAAAAAEQAAAAACEQAAAAABEQAAAAABgwAAAAAAEQAAAAAAEQAAAAABEQAAAAADgwAAAAAAEQAAAAABBQAAAAAABQAAAAADAwAAAAACBAAAAAABBAAAAAACBAAAAAABgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAACAwAAAAABBAAAAAACBAAAAAACBAAAAAACgwAAAAAAAwAAAAACBAAAAAAABAAAAAABBAAAAAAAAwAAAAABBAAAAAAABAAAAAAABAAAAAADAwAAAAACBQAAAAAABQAAAAABAwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAgwAAAAAABQAAAAAABQAAAAAABQAAAAABBQAAAAABBQAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAACgwAAAAAAAwAAAAACAwAAAAAAAwAAAAABgwAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAABBQAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAADBAAAAAAAAwAAAAACAwAAAAADAwAAAAACgwAAAAAABQAAAAABBQAAAAACBQAAAAABBQAAAAABBQAAAAAABAAAAAADAwAAAAAAAwAAAAACAwAAAAABBAAAAAADBAAAAAACgwAAAAAAAwAAAAABAwAAAAADAwAAAAADgwAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAADBQAAAAAA version: 6 -5,-3: ind: -5,-3 - tiles: BwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAACBwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAABBwAAAAAABwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAEQAAAAACEQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEQAAAAAAEQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEQAAAAABEQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAABAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAABQAAAAACBQAAAAADBQAAAAABBQAAAAABCgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAADgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAACBQAAAAAAgwAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAACgwAAAAAAEQAAAAADBAAAAAACBAAAAAABgwAAAAAABQAAAAABBQAAAAAABQAAAAACgwAAAAAABwAAAAAABwAAAAAFAgAAAAAAgwAAAAAAEQAAAAACEQAAAAACEQAAAAAAEQAAAAAAgwAAAAAABAAAAAADBAAAAAAABQAAAAABBQAAAAACBQAAAAAABQAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAAAEQAAAAABEQAAAAADEQAAAAAAEQAAAAADBAAAAAAABAAAAAAC + tiles: BwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAFgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEQAAAAAAEQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAIBwAAAAAABwAAAAAAEQAAAAAAEQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAKEQAAAAACEQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAGBwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAABAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAABAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAABQAAAAACBQAAAAAABQAAAAABBQAAAAABCgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAABBQAAAAADBQAAAAABgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABQAAAAACBQAAAAAABQAAAAAABQAAAAADgwAAAAAABAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAABgwAAAAAAEQAAAAAABAAAAAABBAAAAAADgwAAAAAABQAAAAABBQAAAAADBQAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAADEQAAAAADEQAAAAABEQAAAAAAgwAAAAAABAAAAAACBAAAAAAABQAAAAABBQAAAAABBQAAAAADBQAAAAACgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAADEQAAAAADEQAAAAAAEQAAAAADEQAAAAADBAAAAAABBAAAAAAD version: 6 -2,0: ind: -2,0 - tiles: gwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAABgwAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAADgwAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAADgwAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAACgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAABgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAACgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAABgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJ + tiles: gwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAAgwAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAABgwAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAABgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAADgwAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAADgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAACgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAALgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAABgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAHBAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAABgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: AwAAAAABDQAAAAABDQAAAAADDQAAAAADCwAAAAAADQAAAAADDQAAAAADDQAAAAAADQAAAAADDQAAAAACCwAAAAAADQAAAAAADQAAAAADDQAAAAAADQAAAAABgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAACCwAAAAAADQAAAAACDQAAAAABDQAAAAAADQAAAAACDQAAAAAACwAAAAAADQAAAAAADQAAAAABDQAAAAAADQAAAAAAAwAAAAABAwAAAAAADQAAAAACDQAAAAADDQAAAAABCwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADCwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAADgwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAAADQAAAAAADQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAAADQAAAAADAwAAAAADDQAAAAAADQAAAAADDQAAAAABDQAAAAADDQAAAAABgwAAAAAAKAAAAAABgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAABDQAAAAACAwAAAAABDQAAAAACDQAAAAACDQAAAAABDQAAAAABDQAAAAABgwAAAAAAKAAAAAABKAAAAAABBwAAAAAABwAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAADDQAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAACDQAAAAADDQAAAAAAgwAAAAAAKAAAAAADKAAAAAADKAAAAAADKAAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAACwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAABgwAAAAAABQAAAAADBQAAAAABBQAAAAABBQAAAAACBQAAAAAAgwAAAAAADQAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAADgwAAAAAABQAAAAADBQAAAAABBQAAAAAABQAAAAACBQAAAAADAwAAAAADDQAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAADAwAAAAABBQAAAAADBQAAAAABBQAAAAACBQAAAAACBQAAAAADgwAAAAAADQAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAABgwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAABwAAAAACBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: AwAAAAACDQAAAAABDQAAAAACDQAAAAABCwAAAAAADQAAAAADDQAAAAAADQAAAAADDQAAAAABDQAAAAADCwAAAAAADQAAAAACDQAAAAAADQAAAAAADQAAAAADgwAAAAAAgwAAAAAADQAAAAABDQAAAAACDQAAAAADCwAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAADDQAAAAAACwAAAAAADQAAAAADDQAAAAAADQAAAAAADQAAAAACAwAAAAACAwAAAAADDQAAAAAADQAAAAADDQAAAAADCwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAABCwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAABgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAACDQAAAAAAAwAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAAADQAAAAAAgwAAAAAAKAAAAAACgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAABDQAAAAAAAwAAAAABDQAAAAAADQAAAAABDQAAAAADDQAAAAACDQAAAAADgwAAAAAAKAAAAAABKAAAAAACBwAAAAAABwAAAAAAgwAAAAAADQAAAAABDQAAAAACDQAAAAADDQAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAACDQAAAAADDQAAAAAAgwAAAAAAKAAAAAADKAAAAAAAKAAAAAADKAAAAAABgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAACwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAABgwAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAACBQAAAAACgwAAAAAADQAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAABgwAAAAAABQAAAAADBQAAAAAABQAAAAABBQAAAAACBQAAAAADAwAAAAACDQAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAACAwAAAAADBQAAAAABBQAAAAACBQAAAAADBQAAAAADBQAAAAADgwAAAAAADQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAACgwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAADgwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAGgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAEgwAAAAAAgwAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAADgwAAAAAADQAAAAABDQAAAAADDQAAAAAADQAAAAADDQAAAAACDQAAAAADgwAAAAAADQAAAAACDQAAAAADgwAAAAAABwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAADgwAAAAAADQAAAAACDQAAAAABDQAAAAADDQAAAAACDQAAAAAADQAAAAADDQAAAAACDQAAAAABDQAAAAABgwAAAAAABwAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAADgwAAAAAADQAAAAAADQAAAAADDQAAAAADDQAAAAAADQAAAAADDQAAAAACgwAAAAAADQAAAAADDQAAAAADgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAAAgwAAAAAACwAAAAAAAwAAAAACgwAAAAAADQAAAAAADQAAAAABDQAAAAADgwAAAAAADQAAAAADDQAAAAABgwAAAAAABwAAAAAAgwAAAAAADQAAAAACDQAAAAACDQAAAAAAAwAAAAABCwAAAAAAAwAAAAACAwAAAAADDQAAAAACDQAAAAABDQAAAAADDQAAAAADDQAAAAACDQAAAAACgwAAAAAABwAAAAAAAwAAAAADDQAAAAAADQAAAAADDQAAAAAAgwAAAAAACwAAAAAAAwAAAAABgwAAAAAADQAAAAACDQAAAAADDQAAAAACgwAAAAAADQAAAAABDQAAAAABgwAAAAAABwAAAAAA + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAABBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAACBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAMBwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAADQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAADgwAAAAAAgwAAAAAADQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAACgwAAAAAADQAAAAABDQAAAAABDQAAAAADDQAAAAADDQAAAAADDQAAAAABgwAAAAAADQAAAAAADQAAAAABgwAAAAAABwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAACgwAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAAADQAAAAACDQAAAAAADQAAAAABDQAAAAADDQAAAAACgwAAAAAABwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAACgwAAAAAADQAAAAABDQAAAAACDQAAAAADDQAAAAABDQAAAAACDQAAAAAAgwAAAAAADQAAAAADDQAAAAADgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAAAgwAAAAAACwAAAAAAAwAAAAABgwAAAAAADQAAAAABDQAAAAABDQAAAAADgwAAAAAADQAAAAACDQAAAAACgwAAAAAABwAAAAAEgwAAAAAADQAAAAAADQAAAAAADQAAAAACAwAAAAABCwAAAAAAAwAAAAAAAwAAAAACDQAAAAACDQAAAAADDQAAAAAADQAAAAADDQAAAAADDQAAAAADgwAAAAAABwAAAAAAAwAAAAADDQAAAAABDQAAAAABDQAAAAAAgwAAAAAACwAAAAAAAwAAAAABgwAAAAAADQAAAAADDQAAAAADDQAAAAADgwAAAAAADQAAAAABDQAAAAABgwAAAAAABwAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: gwAAAAAADQAAAAADDQAAAAAADQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAAAgwAAAAAABAAAAAADBAAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAABgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAABgwAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAACgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAACgwAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAABgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAADgwAAAAAAAwAAAAABAwAAAAAAgwAAAAAADQAAAAAADQAAAAABDQAAAAAAgwAAAAAADQAAAAACDQAAAAACDQAAAAADgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAACDQAAAAACDQAAAAAADQAAAAADDQAAAAACgwAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAACgwAAAAAAAwAAAAACAwAAAAABgwAAAAAADQAAAAADDQAAAAADDQAAAAACgwAAAAAADQAAAAACDQAAAAACDQAAAAABgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAADAwAAAAAAAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAABgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAACgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAADQAAAAAADQAAAAAADQAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAACgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAAAgwAAAAAAAwAAAAADAwAAAAABgwAAAAAADQAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAADDQAAAAACDQAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAAAgwAAAAAAAwAAAAABAwAAAAADgwAAAAAADQAAAAACDQAAAAACDQAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAACgwAAAAAAgwAAAAAADQAAAAACDQAAAAACDQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAABgwAAAAAADQAAAAADDQAAAAAADQAAAAACDQAAAAADDQAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAADDQAAAAACgwAAAAAA + tiles: gwAAAAAADQAAAAACDQAAAAAADQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAADgwAAAAAABAAAAAAABAAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAACDQAAAAABgwAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAABgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAACgwAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAADgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAADgwAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAABgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAADQAAAAACDQAAAAACDQAAAAAADQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAABgwAAAAAAAwAAAAABAwAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAABgwAAAAAADQAAAAAADQAAAAABDQAAAAADgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAAwAAAAABAwAAAAADgwAAAAAADQAAAAADDQAAAAABDQAAAAAADQAAAAACDQAAAAAADQAAAAACDQAAAAABgwAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAABgwAAAAAAAwAAAAACAwAAAAACgwAAAAAADQAAAAADDQAAAAACDQAAAAABgwAAAAAADQAAAAABDQAAAAABDQAAAAABgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAABAwAAAAAAAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAADgwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAABgwAAAAAAAwAAAAADAwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAACgwAAAAAADQAAAAADDQAAAAADDQAAAAADgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAADgwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAABDQAAAAABDQAAAAADDQAAAAADDQAAAAABgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAAAgwAAAAAAAwAAAAACAwAAAAABgwAAAAAADQAAAAABDQAAAAACDQAAAAACgwAAAAAADQAAAAABDQAAAAACDQAAAAADgwAAAAAAgwAAAAAADQAAAAAADQAAAAABDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAADDQAAAAABDQAAAAACgwAAAAAADQAAAAADDQAAAAABDQAAAAADDQAAAAADgwAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: AgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAADBQAAAAADBwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAABQAAAAADJAAAAAADBQAAAAACJAAAAAADgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAMBwAAAAAEBwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAACBwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACBQAAAAABJAAAAAAGBQAAAAADJAAAAAACgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAABBQAAAAABBQAAAAAAJAAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACJAAAAAAAJAAAAAABgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAMBwAAAAAKBwAAAAAABwAAAAACBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAACBAAAAAADBAAAAAADAwAAAAACgwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAABBAAAAAADBAAAAAAAAwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAABBAAAAAABBAAAAAACAwAAAAADgwAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAA + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAABQAAAAABBQAAAAADJAAAAAAGgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAEJAAAAAAFJAAAAAACgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAIBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAADBAAAAAADBAAAAAADAwAAAAACgwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAABBAAAAAABBAAAAAADAwAAAAACgwAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAABgwAAAAAAgwAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: gwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAADBwAAAAAHBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAFgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAACBwAAAAAHBwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAFBwAAAAAABwAAAAAIBwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,-4: ind: -7,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAMAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAEBwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAGBwAAAAACBwAAAAAABwAAAAAABwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAAgAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAALBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAIBwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAIBwAAAAAABwAAAAAJBwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAACBwAAAAAABwAAAAAMAQAAAAAAAQAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAGgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAEwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEAgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAEBwAAAAAMBwAAAAAABwAAAAAABwAAAAADAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAALBwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 -7,-3: ind: -7,-3 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAADAwAAAAADBQAAAAAABQAAAAACBQAAAAADCwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAAwAAAAACAwAAAAACBQAAAAACBQAAAAAABQAAAAADCwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAAwAAAAAAAwAAAAADBQAAAAACBQAAAAADBQAAAAADCwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAFgwAAAAAAAwAAAAADAwAAAAADBQAAAAAABQAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAABBQAAAAADBQAAAAADBQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHCgAAAAAACgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGCgAAAAAACgAAAAAACgAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAABQAAAAADBQAAAAAABQAAAAACBQAAAAADBQAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAAgwAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAABBQAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJCgAAAAAACgAAAAAABwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAADgwAAAAAABwAAAAAJBwAAAAADBwAAAAAABwAAAAAHBwAAAAAMgwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAJCgAAAAAACgAAAAAABwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAAAgwAAAAAABAAAAAAAAwAAAAADAwAAAAACAwAAAAABgwAAAAAABwAAAAAABwAAAAALBwAAAAACCgAAAAAACgAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAAwAAAAADAwAAAAABAwAAAAABgwAAAAAAgwAAAAAABwAAAAADBwAAAAALAgAAAAAACgAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAAA + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFAgAAAAAABwAAAAADBwAAAAAAgwAAAAAAAwAAAAADAwAAAAAABQAAAAADBQAAAAACBQAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAAwAAAAAAAwAAAAADBQAAAAABBQAAAAABBQAAAAACCwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAAwAAAAACAwAAAAACBQAAAAADBQAAAAACBQAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACBQAAAAADBQAAAAADBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAABBQAAAAABBQAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAABgwAAAAAABwAAAAAKBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAKCgAAAAAACgAAAAAABwAAAAAAgwAAAAAABQAAAAACBQAAAAACBQAAAAADBQAAAAAABQAAAAABgwAAAAAABwAAAAACBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAAgwAAAAAABQAAAAACBQAAAAAABQAAAAAABQAAAAADBQAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAABgwAAAAAABQAAAAAABQAAAAACBQAAAAABgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAGBwAAAAAACgAAAAAACgAAAAAABwAAAAAAgwAAAAAABQAAAAAABQAAAAAABQAAAAACgwAAAAAABAAAAAADAwAAAAADAwAAAAABAwAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAACCgAAAAAACgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAAwAAAAAAAwAAAAABAwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAGAgAAAAAACgAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAAAgwAAAAAABAAAAAAD version: 6 -7,-2: ind: -7,-2 - tiles: AwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAABwAAAAAABwAAAAAIAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAACAwAAAAADAwAAAAABAwAAAAADgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAABAAAAAAAAwAAAAAAAwAAAAACAwAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAABgwAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAABgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADgwAAAAAABAAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEAgAAAAAACgAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAADgwAAAAAABAAAAAACBAAAAAABgwAAAAAABAAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAACgAAAAAACgAAAAAAAgAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABCgAAAAAACgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAACgwAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAACBAAAAAABBAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABCgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAAICgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAAAgwAAAAAAAgAAAAAABwAAAAAACgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAAAgwAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAC + tiles: AwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAAAAwAAAAACAwAAAAACAwAAAAACgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAAAgwAAAAAABAAAAAADAwAAAAABAwAAAAAAAwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAACgwAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAKAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAACgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAACgAAAAAABwAAAAAFgwAAAAAABAAAAAABBAAAAAADgwAAAAAABAAAAAACBAAAAAACgwAAAAAABAAAAAAAgwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAACgAAAAAACgAAAAAAAgAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAADgwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADgwAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAAAgwAAAAAABwAAAAAEBwAAAAADBwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAACgwAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAFgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAABCgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAABgwAAAAAAAgAAAAAABwAAAAAACgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAABgwAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAC version: 6 -7,-1: ind: -7,-1 - tiles: BAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAACgwAAAAAABwAAAAAABwAAAAAIAgAAAAAAAgAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAHBwAAAAAACgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAEAgAAAAAAAgAAAAAABwAAAAAJAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAAAFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAAAFgAAAAADFgAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAADgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAEBwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAFgAAAAAAFgAAAAAKgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAAAFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAAAgAAAAAACgAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAA + tiles: BAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAECgAAAAAACgAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAABgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAMAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAMAgAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAMBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAACwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAFgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAJBwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAFgAAAAAAFgAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAADFgAAAAAAFgAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAAAgwAAAAAABwAAAAAABwAAAAAIAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAAAFgAAAAAEFgAAAAAGgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAAKFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAJAgAAAAAAAgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAFgAAAAAAFgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAACgAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAEgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAA version: 6 -7,0: ind: -7,0 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAAAgAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAABBwAAAAAHCgAAAAAACgAAAAAABwAAAAAABwAAAAACAwAAAAADGgAAAAAAGgAAAAAAGgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABAAAAAADBwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKAQAAAAAABwAAAAAABwAAAAACBwAAAAAAgwAAAAAABwAAAAALBwAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAADgwAAAAAABwAAAAAABwAAAAAJCgAAAAAACgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAADBAAAAAACBAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAABBAAAAAADgwAAAAAABAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAABBAAAAAACBAAAAAADgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAAAgAAAAAACgAAAAAACgAAAAAABAAAAAAABwAAAAAABwAAAAAABAAAAAADgwAAAAAAAwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAACgwAAAAAAgwAAAAAABAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAAAgwAAAAAABAAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAACIgAAAAAA + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAGCgAAAAAACgAAAAAABwAAAAAGBwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAAAgAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAMAwAAAAADGgAAAAAAGgAAAAAAGgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAHgwAAAAAABwAAAAAFBwAAAAAABAAAAAAABwAAAAAKgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAACCgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAQAAAAAABwAAAAAABwAAAAAHBwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAIgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAHBwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAACBAAAAAAABAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAACBAAAAAABgwAAAAAABAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAAABAAAAAABgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAAAgAAAAAACgAAAAAACgAAAAAABAAAAAAABwAAAAAABwAAAAAABAAAAAABgwAAAAAAAwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAABgwAAAAAAgwAAAAAABAAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAAAgwAAAAAABAAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAACIgAAAAAA version: 6 -9,-4: ind: -9,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAGBQAAAAACBQAAAAACBQAAAAADgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAABBQAAAAADJAAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAACBQAAAAAABQAAAAABBQAAAAAAgwAAAAAABAAAAAACgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABIwAAAAADIwAAAAAAIwAAAAACBQAAAAACgwAAAAAABAAAAAABBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAAABQAAAAADgwAAAAAABAAAAAAABAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAABAAAAAADBAAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAADBQAAAAACBQAAAAAABQAAAAACgwAAAAAABAAAAAAABAAAAAACBAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAFBQAAAAAABQAAAAACBQAAAAABgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAADBQAAAAAAJAAAAAABgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAADBQAAAAACBQAAAAADgwAAAAAABAAAAAABgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACIwAAAAAAIwAAAAACIwAAAAACBQAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAAABQAAAAACBQAAAAACBQAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAABAAAAAADBAAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAABBQAAAAABBQAAAAABBQAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAAC version: 6 -8,-2: ind: -8,-2 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAGAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAADAAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAADAAAAAAAAwAAAAADgwAAAAAAAwAAAAAAAwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAALBwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAGgwAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAADgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAAAgAAAAAABwAAAAAACwAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABgwAAAAAABwAAAAAGAgAAAAAABwAAAAAIgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAADBQAAAAADBQAAAAACBQAAAAADBQAAAAACBQAAAAADBQAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAABBQAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAADBQAAAAACgwAAAAAABwAAAAAAAgAAAAAABwAAAAAACwAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAAB + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACBwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAADAAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAADgwAAAAAADAAAAAAAAwAAAAAAgwAAAAAAAwAAAAACAwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAFBwAAAAADAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAAAgAAAAAABwAAAAAECwAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAACgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAABBAAAAAABgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAABBQAAAAACBQAAAAABBQAAAAADBQAAAAADBQAAAAAABQAAAAABgwAAAAAABwAAAAAAAgAAAAAABwAAAAAHgwAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAABBQAAAAAABQAAAAADBQAAAAADBQAAAAAABQAAAAACBQAAAAADgwAAAAAABwAAAAAAAgAAAAAABwAAAAAACwAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAAA version: 6 -8,-1: ind: -8,-1 - tiles: BQAAAAACBQAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAAAgwAAAAAABwAAAAAJAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAACBQAAAAAABQAAAAACBQAAAAACBQAAAAABBQAAAAAABQAAAAACgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAJAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABBwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAA + tiles: BQAAAAACBQAAAAADBQAAAAAABQAAAAADBQAAAAAABQAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAAABQAAAAABBQAAAAACBQAAAAABBQAAAAAABQAAAAACBQAAAAADgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAA version: 6 -8,0: ind: -8,0 - tiles: gwAAAAAAgwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAACAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAA + tiles: gwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAALgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACBwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAFgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADAwAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 -6,1: ind: -6,1 - tiles: BAAAAAABIgAAAAACBAAAAAADCgAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAABIgAAAAADCgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAAAIgAAAAABCgAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAALBwAAAAAEBwAAAAAFBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAABIgAAAAADCgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAADCgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAABCgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAACBwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAADBwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAACBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAABAwAAAAABgwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAADBAAAAAABAwAAAAADgwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAADAwAAAAABgwAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAABBQAAAAADgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAABAwAAAAABgwAAAAAABQAAAAADBQAAAAABBQAAAAACBQAAAAABBQAAAAABgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAABBQAAAAABBQAAAAAABQAAAAACgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAA + tiles: BAAAAAADIgAAAAABBAAAAAADCgAAAAAABwAAAAABBwAAAAAABwAAAAAHBwAAAAAMBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAACIgAAAAABCgAAAAAACgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAALBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAACIgAAAAACCgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAAAIgAAAAABCgAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAACCgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAADCgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAACBwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAADBwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAADBwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAABAwAAAAADgwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAADAwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAABBAAAAAAAAwAAAAACgwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAAAAwAAAAADgwAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAADBQAAAAACgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAABBQAAAAACgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAA version: 6 -6,2: ind: -6,2 - tiles: BAAAAAABBAAAAAADBAAAAAACAwAAAAADAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAABBAAAAAACBAAAAAAAAwAAAAAAAwAAAAADAwAAAAACgwAAAAAABQAAAAAABQAAAAACBQAAAAACBQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAADBAAAAAADAwAAAAAAAwAAAAADAwAAAAABgwAAAAAABQAAAAACBQAAAAABBQAAAAAABQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAADBAAAAAABAwAAAAACAwAAAAACAwAAAAACgwAAAAAABQAAAAADBQAAAAADBQAAAAACBQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BAAAAAACBAAAAAACBAAAAAADAwAAAAADAwAAAAACAwAAAAABgwAAAAAAgwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAADBAAAAAABBAAAAAAAAwAAAAADAwAAAAACAwAAAAACgwAAAAAABQAAAAACBQAAAAABBQAAAAADBQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAAABAAAAAAAAwAAAAADAwAAAAACAwAAAAACgwAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAAABAAAAAADAwAAAAABAwAAAAABAwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,1: ind: -7,1 - tiles: BAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADFQAAAAAAFgAAAAAAFgAAAAAAFgAAAAACFgAAAAAGgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADFgAAAAAIFgAAAAAAFgAAAAAGFgAAAAAAFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAKFgAAAAAAFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: BAAAAAACBAAAAAABBAAAAAACBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACFQAAAAAAFgAAAAAAFgAAAAAJFgAAAAAAFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABFgAAAAAAFgAAAAALFgAAAAACFgAAAAAAFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 -7,2: ind: -7,2 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAEBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAKgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAALgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,-5: ind: -7,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAIBwAAAAALBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAGBwAAAAAKBwAAAAAJBwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAEBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAADBwAAAAAABwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAKBwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAC version: 6 -8,1: ind: -8,1 - tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAACgwAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAABBwAAAAAABwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAABwAAAAAABwAAAAAABwAAAAAIgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAABwAAAAAJBwAAAAABBwAAAAAABwAAAAAABwAAAAAKgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAA + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACAwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAADgwAAAAAABAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABwAAAAAFBwAAAAAJBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAA version: 6 -8,2: ind: -8,2 - tiles: gwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gwAAAAAABwAAAAAABwAAAAADBwAAAAAIBwAAAAAFgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,-5: ind: -6,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAABBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAACBwAAAAADBwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAABBwAAAAAEBwAAAAAHBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAEBwAAAAAIBwAAAAABBwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABwAAAAAABwAAAAAKBwAAAAABBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAGBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAFgAAAAAAFgAAAAAKFgAAAAAAFgAAAAAAFgAAAAAJFgAAAAACBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAHgAAAAACBwAAAAAAgwAAAAAABwAAAAAAFgAAAAAAFgAAAAAAFgAAAAACFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHgwAAAAAABwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAFFgAAAAAAFgAAAAACFgAAAAADFgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIgwAAAAAABwAAAAAAFgAAAAAMFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAADFgAAAAAAFgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAJBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAEBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAEBwAAAAAABwAAAAAABwAAAAAIBwAAAAACBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAJBwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAHgAAAAAABwAAAAAAgwAAAAAABwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAHFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAABwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAADFgAAAAAAFgAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAFgAAAAALFgAAAAAJFgAAAAAAFgAAAAAJFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAACBwAAAAAGBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAA version: 6 -9,0: ind: -9,0 - tiles: AQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAAAgwAAAAAAgwAAAAAABwAAAAAGgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAABwAAAAAKgwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAKAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: AQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAAKgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAABgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAALgwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAABwAAAAAGgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -9,-1: ind: -9,-1 - tiles: AQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAABBQAAAAAABQAAAAACgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABJgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABJgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABJgAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAJ + tiles: AQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAACBQAAAAAABQAAAAABgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAAAJgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABJgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAAAJgAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -9,-2: ind: -9,-2 - tiles: gwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAACgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAMAgAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAABBQAAAAABAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAADBQAAAAAABQAAAAADgwAAAAAA + tiles: gwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJgwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAALBwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAADAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAACgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAADBQAAAAABBQAAAAADBQAAAAABAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAADBQAAAAACBQAAAAABgwAAAAAA version: 6 -9,1: ind: -9,1 - tiles: gwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAHAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAEAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABAAAAAACBAAAAAABBAAAAAACBwAAAAACgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAABBwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABwAAAAAABwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAADBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAA + tiles: gwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAALAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABAAAAAACBAAAAAADBAAAAAADBwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAAABwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABwAAAAAABwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABgwAAAAAAgwAAAAAA version: 6 -10,-3: ind: -10,-3 - tiles: AAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAHwAAAAABEgAAAAAAEgAAAAAABAAAAAABgwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAADgwAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAABAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAADAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAHwAAAAADEgAAAAAAEgAAAAAABAAAAAADgwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAHwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAACAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAHwAAAAABEgAAAAAAEgAAAAAABAAAAAABgwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAABAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAADAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAADgwAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAACAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAHwAAAAAAEgAAAAAAEgAAAAAABAAAAAADgwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAHwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAA version: 6 -10,-1: ind: -10,-1 @@ -304,35 +304,35 @@ entities: version: 6 -8,-4: ind: -8,-4 - tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAADgwAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABAwAAAAADgwAAAAAAAwAAAAACAwAAAAABAwAAAAAADQAAAAADDQAAAAABgwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAAwAAAAADCQAAAAAAAwAAAAADDQAAAAADDQAAAAADgwAAAAAAAwAAAAADCQAAAAAABAAAAAADCQAAAAAAAwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAADQAAAAACDQAAAAAADQAAAAADDQAAAAACDQAAAAAABAAAAAABAwAAAAADBAAAAAABBAAAAAAABAAAAAAAAwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAABDQAAAAAADQAAAAACDQAAAAACDQAAAAABDQAAAAACgwAAAAAAAwAAAAADCQAAAAAABAAAAAABCQAAAAAAAwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAADDQAAAAABDQAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAACgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAA + tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAADgwAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACAwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAADDQAAAAADDQAAAAACgwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAAwAAAAABCQAAAAAAAwAAAAABDQAAAAACDQAAAAACgwAAAAAAAwAAAAABCQAAAAAABAAAAAADCQAAAAAAAwAAAAABgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAADDQAAAAACDQAAAAACDQAAAAABDQAAAAAADQAAAAABBAAAAAAAAwAAAAACBAAAAAACBAAAAAABBAAAAAADAwAAAAADgwAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAABDQAAAAADDQAAAAABDQAAAAADDQAAAAACDQAAAAACgwAAAAAAAwAAAAACCQAAAAAABAAAAAADCQAAAAAAAwAAAAACgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAADDQAAAAADDQAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAACgwAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAA version: 6 -8,-3: ind: -8,-3 - tiles: IwAAAAACIwAAAAAAIwAAAAAABAAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAABHwAAAAAAHwAAAAAAIwAAAAAABAAAAAABgwAAAAAABAAAAAABIwAAAAACIwAAAAACIwAAAAAAIwAAAAADIwAAAAACIwAAAAACIwAAAAADIwAAAAADIwAAAAABBAAAAAAAHwAAAAABHwAAAAABIwAAAAACBAAAAAADBAAAAAACBAAAAAABIwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACIwAAAAADBAAAAAADHwAAAAADHwAAAAAAIwAAAAAABAAAAAACgwAAAAAABAAAAAABIwAAAAABIwAAAAACIwAAAAADIwAAAAACIwAAAAAAIwAAAAADIwAAAAABIwAAAAADIwAAAAADBAAAAAAAIwAAAAAAIwAAAAADIwAAAAADBAAAAAACgwAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAACDQAAAAACDQAAAAADgwAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAABDQAAAAADDQAAAAAADQAAAAACDQAAAAABgwAAAAAADQAAAAABDQAAAAACDQAAAAAADQAAAAACDQAAAAABgwAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAADDQAAAAACDQAAAAACDQAAAAAADQAAAAADDQAAAAACDQAAAAACDQAAAAABDQAAAAADDQAAAAABDQAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAACDQAAAAAADQAAAAABDQAAAAAADQAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAABDQAAAAABDQAAAAADgwAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAACQAAAAAACQAAAAAACQAAAAAADQAAAAACDQAAAAACgwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAALAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAADAAAAAAAAwAAAAABgwAAAAAAAwAAAAACAwAAAAAB + tiles: IwAAAAABIwAAAAABIwAAAAADBAAAAAABgwAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAAAHwAAAAABHwAAAAACIwAAAAACBAAAAAAAgwAAAAAABAAAAAABIwAAAAADIwAAAAACIwAAAAABIwAAAAACIwAAAAAAIwAAAAACIwAAAAADIwAAAAADIwAAAAABBAAAAAABHwAAAAABHwAAAAADIwAAAAADBAAAAAACBAAAAAACBAAAAAAAIwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAABHwAAAAACHwAAAAAAIwAAAAAABAAAAAAAHwAAAAABHwAAAAAAIwAAAAADBAAAAAAAgwAAAAAABAAAAAADIwAAAAACIwAAAAAAIwAAAAABIwAAAAACIwAAAAACIwAAAAABIwAAAAACIwAAAAAAIwAAAAACBAAAAAACIwAAAAABIwAAAAADIwAAAAACBAAAAAADgwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAACgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAABDQAAAAABDQAAAAACgwAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAACDQAAAAAADQAAAAAADQAAAAADDQAAAAACgwAAAAAADQAAAAADDQAAAAACDQAAAAACDQAAAAACDQAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAAADQAAAAAADQAAAAABDQAAAAADDQAAAAABDQAAAAACDQAAAAAADQAAAAABDQAAAAADDQAAAAADDQAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAACDQAAAAAADQAAAAAADQAAAAADDQAAAAADgwAAAAAAAwAAAAADAwAAAAADAwAAAAABDQAAAAACDQAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAACQAAAAAACQAAAAAACQAAAAAADQAAAAADDQAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAJBwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAADAAAAAAAAwAAAAACgwAAAAAAAwAAAAAAAwAAAAAA version: 6 -9,-3: ind: -9,-3 - tiles: gwAAAAAABAAAAAACBAAAAAABAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAACBQAAAAADBQAAAAABBQAAAAAAgwAAAAAABAAAAAAAIwAAAAADIwAAAAACgwAAAAAABAAAAAAABAAAAAACAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAABgwAAAAAABAAAAAAAIwAAAAAAHwAAAAACBAAAAAAABAAAAAABBAAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAABIwAAAAAAHwAAAAABgwAAAAAABAAAAAADBAAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAAAIwAAAAAAHwAAAAACgwAAAAAABAAAAAADBAAAAAACAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAABIwAAAAADIwAAAAADgwAAAAAABAAAAAAABAAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAABgwAAAAAAgwAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAAADQAAAAADDQAAAAADgwAAAAAADQAAAAAADQAAAAAADQAAAAABDQAAAAADDQAAAAACDQAAAAACDQAAAAACDQAAAAAADQAAAAABgwAAAAAADQAAAAADDQAAAAACDQAAAAACDQAAAAACDQAAAAABDQAAAAACDQAAAAADIwAAAAADIwAAAAABIwAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAADDQAAAAACgwAAAAAADQAAAAADDQAAAAAADQAAAAAADQAAAAABDQAAAAACgwAAAAAADQAAAAACDQAAAAADDQAAAAAADQAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: gwAAAAAABAAAAAABBAAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAACBQAAAAADgwAAAAAABAAAAAABIwAAAAADIwAAAAACgwAAAAAABAAAAAABBAAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAADBQAAAAAABQAAAAAAgwAAAAAABAAAAAAAIwAAAAADHwAAAAAABAAAAAABBAAAAAACBAAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAABIwAAAAACHwAAAAABgwAAAAAABAAAAAABBAAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAADIwAAAAADHwAAAAABgwAAAAAABAAAAAADBAAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAADIwAAAAACIwAAAAACgwAAAAAABAAAAAABBAAAAAACAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAACgwAAAAAAgwAAAAAADQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAACDQAAAAADDQAAAAACgwAAAAAADQAAAAABDQAAAAABDQAAAAAADQAAAAADDQAAAAACDQAAAAADDQAAAAABDQAAAAACDQAAAAACgwAAAAAADQAAAAABDQAAAAADDQAAAAADDQAAAAACDQAAAAABDQAAAAADDQAAAAACIwAAAAAAIwAAAAADIwAAAAACDQAAAAADDQAAAAACDQAAAAAADQAAAAADDQAAAAACgwAAAAAADQAAAAACDQAAAAAADQAAAAABDQAAAAAADQAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAABDQAAAAADDQAAAAABDQAAAAABDQAAAAABDQAAAAADDQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAADgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAJgwAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAADgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,1: ind: -2,1 - tiles: BAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAAABAAAAAABAwAAAAACGgAAAAAAGgAAAAAAAwAAAAABAwAAAAAABwAAAAAABwAAAAAMBAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAABAwAAAAACGgAAAAAAGgAAAAAAAwAAAAACAwAAAAABBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAABAwAAAAADGgAAAAAAGgAAAAAAAwAAAAADAwAAAAACBwAAAAAABwAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAAwAAAAADAwAAAAADBwAAAAAFBwAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABGgAAAAAAGgAAAAAAAwAAAAABAwAAAAAABwAAAAAABwAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAABgwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAADAwAAAAAAGgAAAAAAGgAAAAAAAwAAAAACAwAAAAAABwAAAAAABwAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAADAwAAAAADGgAAAAAAGgAAAAAAAwAAAAAAAwAAAAABBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAADAwAAAAAAGgAAAAAAGgAAAAAAAwAAAAABAwAAAAAABwAAAAADBwAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAADgwAAAAAAGgAAAAAAGgAAAAAAAwAAAAACAwAAAAABBwAAAAAABwAAAAAGBAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAAAGgAAAAAAGgAAAAAAAwAAAAADAwAAAAAABwAAAAAJBwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAABBAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAGAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -9,2: ind: -9,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAIBwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAIBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAABwAAAAADBwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAADBwAAAAAABwAAAAAABwAAAAAIBwAAAAAFBwAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAFBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 0,-1: ind: 0,-1 @@ -340,7 +340,7 @@ entities: version: 6 -4,-5: ind: -4,-5 - tiles: BwAAAAAABwAAAAALBwAAAAAABwAAAAALBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAALBwAAAAADBwAAAAACBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAALBwAAAAAABwAAAAAGBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAEBwAAAAAIBwAAAAAABwAAAAAKBwAAAAAABwAAAAAEBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALJwAAAAACJwAAAAADJwAAAAAAJwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAJwAAAAADJwAAAAACJwAAAAADJwAAAAABJwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJwAAAAACJwAAAAABJwAAAAAAJwAAAAACJwAAAAADBwAAAAAHBwAAAAABBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAADBwAAAAAABwAAAAAGJwAAAAADJwAAAAADJwAAAAABJwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAADBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAFBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAJwAAAAADJwAAAAACJwAAAAADJwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIJwAAAAADJwAAAAADJwAAAAAAJwAAAAABJwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJwAAAAACJwAAAAADJwAAAAABJwAAAAAAJwAAAAABBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJwAAAAABJwAAAAAAJwAAAAABJwAAAAAABwAAAAAABwAAAAAGBwAAAAAIBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -10,0: ind: -10,0 @@ -352,15 +352,15 @@ entities: version: 6 -3,-5: ind: -3,-5 - tiles: BwAAAAAGBwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAADBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAALBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAAEgAAAAAADAAAAAAAEgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIQAAAAABIQAAAAADIQAAAAADgwAAAAAABwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAIBwAAAAAEBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHgwAAAAAABwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAADgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJBwAAAAAAEgAAAAAADAAAAAAAEgAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAALBwAAAAABBwAAAAAABwAAAAAAIQAAAAACIQAAAAACIQAAAAABgwAAAAAABwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAADBwAAAAAIBwAAAAAAgwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAADgwAAAAAABwAAAAAKgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAADgwAAAAAA version: 6 -4,-6: ind: -4,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAFBwAAAAAABwAAAAAJBwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-6: ind: -5,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAA version: 6 -1,-5: ind: -1,-5 @@ -384,11 +384,11 @@ entities: version: 6 -8,-5: ind: -8,-5 - tiles: AAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACDAAAAAAAAwAAAAADAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAADAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAADAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAAADAAAAAAAAwAAAAACDAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACAwAAAAAADAAAAAAAAwAAAAACAwAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAADDAAAAAAAAwAAAAABAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAADDAAAAAAAAwAAAAABDAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACDAAAAAAAAwAAAAACAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAEwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABDAAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAADAAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAADAAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: AAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABAwAAAAACDAAAAAAAAwAAAAAAAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAADAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAADAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAACDAAAAAAAAwAAAAABDAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAADDAAAAAAAAwAAAAADAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABAwAAAAADDAAAAAAAAwAAAAACAwAAAAACAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADDAAAAAAAAwAAAAADDAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADDAAAAAAAAwAAAAABAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAEwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABDAAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAADAAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACDAAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 -8,-6: ind: -8,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADEgAAAAAAgwAAAAAADAAAAAAAgwAAAAAAEgAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADEgAAAAAADAAAAAAADAAAAAAADAAAAAAAEgAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAAgwAAAAAADAAAAAAAgwAAAAAAEgAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACEgAAAAAAEgAAAAAADAAAAAAAEgAAAAAAEgAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADEgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACEgAAAAAAgwAAAAAADAAAAAAAgwAAAAAAEgAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAADAAAAAAADAAAAAAADAAAAAAAEgAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADEgAAAAAAgwAAAAAADAAAAAAAgwAAAAAAEgAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAEgAAAAAAEgAAAAAADAAAAAAAEgAAAAAAEgAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAA version: 6 -9,-5: ind: -9,-5 @@ -7435,7 +7435,8 @@ entities: -5,2: 1: 13098 -4,4: - 1: 1907 + 2: 1 + 1: 1906 -3,0: 1: 13105 -3,1: @@ -7507,7 +7508,7 @@ entities: -4,-2: 1: 46011 -5,-3: - 1: 63232 + 1: 63233 -5,-1: 1: 2039 -3,-4: @@ -7628,7 +7629,7 @@ entities: -17,-16: 1: 64764 -16,-17: - 1: 53233 + 1: 53239 -8,-4: 1: 65535 -9,-4: @@ -7737,7 +7738,7 @@ entities: -10,-4: 1: 65535 -10,-3: - 1: 55552 + 1: 55554 -10,-2: 1: 57309 -10,-5: @@ -7779,12 +7780,12 @@ entities: -22,3: 1: 65357 -22,0: - 2: 238 + 3: 238 1: 3584 -22,4: 1: 65535 -22,-1: - 2: 20479 + 3: 20479 -21,1: 1: 43263 -21,2: @@ -7796,7 +7797,7 @@ entities: 1: 36044 -21,-1: 1: 34952 - 2: 819 + 3: 819 -20,0: 1: 4565 -20,1: @@ -7879,7 +7880,7 @@ entities: 1: 21969 -21,-2: 1: 34955 - 2: 13056 + 3: 13056 -20,-1: 1: 21845 -19,-4: @@ -7935,15 +7936,15 @@ entities: 1: 36864 -23,-2: 1: 409 - 2: 34816 + 3: 34816 -23,-1: - 2: 2184 + 3: 2184 -22,-4: 1: 65520 -22,-3: 1: 65092 -22,-2: - 2: 65280 + 3: 65280 1: 14 -24,-15: 1: 65280 @@ -7986,7 +7987,7 @@ entities: -22,-12: 1: 65535 -21,-15: - 1: 65280 + 1: 65532 -21,-14: 1: 61455 -21,-13: @@ -7996,24 +7997,24 @@ entities: -21,-16: 1: 1024 -20,-15: - 1: 65280 + 1: 65296 -20,-14: 1: 61455 -20,-13: 1: 48056 -12,-8: 1: 15 - 2: 30464 + 3: 30464 -12,-9: 1: 62702 -13,-8: 1: 13 - 2: 60928 + 3: 60928 -12,-7: - 2: 127 + 3: 127 1: 28672 -13,-7: - 2: 1263 + 3: 1263 1: 28672 -12,-6: 1: 30711 @@ -8022,7 +8023,7 @@ entities: -12,-5: 1: 119 -11,-8: - 1: 48059 + 1: 64443 -11,-7: 1: 14139 -11,-6: @@ -8206,7 +8207,7 @@ entities: -15,-14: 1: 26151 -15,-16: - 1: 24576 + 1: 24672 -14,-16: 1: 64319 -14,-15: @@ -8214,9 +8215,9 @@ entities: -14,-14: 1: 65466 -14,-17: - 1: 65392 + 1: 65520 -13,-17: - 1: 62208 + 1: 63232 -20,-9: 1: 65030 -20,-8: @@ -8242,7 +8243,7 @@ entities: -19,-8: 1: 51336 -19,-9: - 1: 35023 + 1: 35022 -18,-7: 1: 57309 -18,-6: @@ -8452,9 +8453,9 @@ entities: -5,-15: 1: 2287 -5,-14: - 1: 30576 + 1: 13104 -5,-13: - 1: 30576 + 1: 13104 -5,-17: 1: 32624 -4,-16: @@ -8676,16 +8677,16 @@ entities: -26,0: 1: 30711 -28,0: - 3: 21840 - 4: 8736 + 4: 21840 + 5: 8736 -28,1: 1: 208 0: 32 - 3: 28672 + 4: 28672 -29,1: 1: 21973 -28,2: - 3: 119 + 4: 119 1: 61440 -29,2: 1: 54613 @@ -8772,8 +8773,7 @@ entities: -32,-4: 1: 61695 -31,-7: - 1: 41215 - 5: 4096 + 1: 45311 -31,-6: 1: 48123 -31,-5: @@ -8812,7 +8812,7 @@ entities: 1: 61695 -32,0: 1: 4 - 3: 4112 + 4: 4112 0: 17472 -31,-3: 1: 65535 @@ -8833,13 +8833,13 @@ entities: -29,0: 1: 21845 -33,0: - 3: 49344 + 4: 49344 1: 4369 -32,1: - 3: 4112 + 4: 4112 0: 17476 -33,1: - 3: 49344 + 4: 49344 1: 4369 -32,2: 6: 16 @@ -8889,8 +8889,7 @@ entities: -25,7: 1: 20206 -24,8: - 8: 1 - 1: 65534 + 1: 65535 -23,5: 1: 65535 -23,6: @@ -9057,7 +9056,7 @@ entities: 1: 221 -37,0: 0: 34952 - 3: 13104 + 4: 13104 -36,1: 0: 8955 1: 20480 @@ -9257,7 +9256,7 @@ entities: 0: 65535 -38,0: 0: 13107 - 3: 34944 + 4: 34944 -32,-14: 1: 20206 -32,-12: @@ -9384,6 +9383,8 @@ entities: -6,-21: 0: 7953 1: 49344 + -6,-18: + 1: 1536 -5,-20: 1: 28784 0: 3841 @@ -9678,6 +9679,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 235 moles: @@ -9723,21 +9739,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -9768,21 +9769,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -10013,12 +9999,12 @@ entities: parent: 2 - type: DeviceList devices: - - 24047 + - 12521 - 24046 - 9135 - - 12517 - - 12524 - - 12513 + - 12506 + - 12511 + - 12510 - 11070 - 24045 - uid: 5387 @@ -10131,7 +10117,7 @@ entities: devices: - 24051 - 11070 - - 8885 + - 11810 - 11072 - 5744 - uid: 8941 @@ -10193,8 +10179,8 @@ entities: - type: DeviceList devices: - 15361 - - 12569 - - 12570 + - 12441 + - 12514 - 11100 - uid: 9162 components: @@ -10206,10 +10192,8 @@ entities: parent: 2 - type: DeviceList devices: - - 12267 - - 12250 - - 12269 - - 12270 + - 12244 + - 12247 - 2488 - uid: 9167 components: @@ -10411,9 +10395,6 @@ entities: - 14507 - 11817 - 11816 - - 11804 - - 11810 - - 11809 - 23126 - uid: 11893 components: @@ -11161,7 +11142,7 @@ entities: parent: 2 - type: DeviceList devices: - - 16901 + - 13115 - 23776 - 23925 - 23926 @@ -11503,6 +11484,11 @@ entities: - type: Transform pos: -138.5,-35.5 parent: 2 + - uid: 15289 + components: + - type: Transform + pos: -30.5,-65.5 + parent: 2 - uid: 15327 components: - type: Transform @@ -11965,13 +11951,11 @@ entities: - uid: 18013 components: - type: Transform - rot: -1.5707963267948966 rad pos: -68.5,-9.5 parent: 2 - uid: 24912 components: - type: Transform - rot: 1.5707963267948966 rad pos: -120.5,-64.5 parent: 2 - type: AccessReader @@ -11980,7 +11964,6 @@ entities: - uid: 24915 components: - type: Transform - rot: -1.5707963267948966 rad pos: -120.5,-69.5 parent: 2 - type: AccessReader @@ -12023,7 +12006,6 @@ entities: - uid: 20333 components: - type: Transform - rot: 1.5707963267948966 rad pos: -58.5,-77.5 parent: 2 - proto: AirlockEngineeringGlassLocked @@ -12149,7 +12131,6 @@ entities: - uid: 368 components: - type: Transform - rot: -1.5707963267948966 rad pos: -89.5,3.5 parent: 2 - uid: 658 @@ -12195,7 +12176,6 @@ entities: - uid: 14584 components: - type: Transform - rot: 3.141592653589793 rad pos: -40.5,-41.5 parent: 2 - uid: 16891 @@ -12206,7 +12186,6 @@ entities: - uid: 18611 components: - type: Transform - rot: -1.5707963267948966 rad pos: -107.5,-31.5 parent: 2 - uid: 21305 @@ -12237,7 +12216,6 @@ entities: - uid: 13904 components: - type: Transform - rot: 1.5707963267948966 rad pos: -135.5,-27.5 parent: 2 - type: DeviceLinkSink @@ -13266,7 +13244,6 @@ entities: - uid: 7774 components: - type: Transform - rot: 3.141592653589793 rad pos: -20.5,-2.5 parent: 2 - proto: AirlockKitchenLocked @@ -13309,7 +13286,6 @@ entities: - uid: 10747 components: - type: Transform - rot: -1.5707963267948966 rad pos: -97.5,22.5 parent: 2 - uid: 18230 @@ -13330,7 +13306,6 @@ entities: - uid: 23292 components: - type: Transform - rot: 3.141592653589793 rad pos: -104.5,15.5 parent: 2 - proto: AirlockMaintChemLocked @@ -13357,7 +13332,6 @@ entities: - uid: 16005 components: - type: Transform - rot: -1.5707963267948966 rad pos: -110.5,-28.5 parent: 2 - proto: AirlockMaintHOPLocked @@ -13379,7 +13353,6 @@ entities: - uid: 3502 components: - type: Transform - rot: 3.141592653589793 rad pos: -16.5,-2.5 parent: 2 - proto: AirlockMaintKitchenLocked @@ -13404,7 +13377,6 @@ entities: - uid: 1766 components: - type: Transform - rot: 3.141592653589793 rad pos: -13.5,-3.5 parent: 2 - uid: 1917 @@ -13430,7 +13402,6 @@ entities: - uid: 2333 components: - type: Transform - rot: 3.141592653589793 rad pos: -135.5,22.5 parent: 2 - type: DeviceLinkSink @@ -13443,7 +13414,6 @@ entities: - uid: 2404 components: - type: Transform - rot: 1.5707963267948966 rad pos: -123.5,-32.5 parent: 2 - uid: 3317 @@ -13469,13 +13439,11 @@ entities: - uid: 4257 components: - type: Transform - rot: 3.141592653589793 rad pos: -54.5,-62.5 parent: 2 - uid: 4260 components: - type: Transform - rot: 3.141592653589793 rad pos: -55.5,-62.5 parent: 2 - uid: 4391 @@ -13496,13 +13464,11 @@ entities: - uid: 7407 components: - type: Transform - rot: -1.5707963267948966 rad pos: -103.5,26.5 parent: 2 - uid: 7853 components: - type: Transform - rot: 3.141592653589793 rad pos: -132.5,-55.5 parent: 2 - uid: 8675 @@ -13548,7 +13514,6 @@ entities: - uid: 9317 components: - type: Transform - rot: 1.5707963267948966 rad pos: -73.5,-64.5 parent: 2 - uid: 9534 @@ -13559,7 +13524,6 @@ entities: - uid: 9683 components: - type: Transform - rot: 1.5707963267948966 rad pos: -73.5,-19.5 parent: 2 - uid: 9712 @@ -13580,7 +13544,6 @@ entities: - uid: 9772 components: - type: Transform - rot: 3.141592653589793 rad pos: -135.5,13.5 parent: 2 - uid: 9819 @@ -13633,13 +13596,11 @@ entities: - uid: 10626 components: - type: Transform - rot: -1.5707963267948966 rad pos: -103.5,22.5 parent: 2 - uid: 11168 components: - type: Transform - rot: 1.5707963267948966 rad pos: -74.5,-64.5 parent: 2 - uid: 11557 @@ -13680,7 +13641,6 @@ entities: - uid: 13760 components: - type: Transform - rot: 3.141592653589793 rad pos: -66.5,-66.5 parent: 2 - uid: 14799 @@ -13691,7 +13651,6 @@ entities: - uid: 16433 components: - type: Transform - rot: 3.141592653589793 rad pos: -66.5,-65.5 parent: 2 - uid: 16474 @@ -13707,31 +13666,26 @@ entities: - uid: 17293 components: - type: Transform - rot: -1.5707963267948966 rad pos: -138.5,-41.5 parent: 2 - uid: 17296 components: - type: Transform - rot: -1.5707963267948966 rad pos: -123.5,-57.5 parent: 2 - uid: 17301 components: - type: Transform - rot: -1.5707963267948966 rad pos: -138.5,-53.5 parent: 2 - uid: 17314 components: - type: Transform - rot: 1.5707963267948966 rad pos: -138.5,-37.5 parent: 2 - uid: 17315 components: - type: Transform - rot: 1.5707963267948966 rad pos: -134.5,-34.5 parent: 2 - uid: 17583 @@ -13742,7 +13696,6 @@ entities: - uid: 18951 components: - type: Transform - rot: 3.141592653589793 rad pos: -99.5,4.5 parent: 2 - uid: 19338 @@ -13753,37 +13706,31 @@ entities: - uid: 20187 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,2.5 parent: 2 - uid: 20189 components: - type: Transform - rot: -1.5707963267948966 rad pos: -32.5,2.5 parent: 2 - uid: 20296 components: - type: Transform - rot: 1.5707963267948966 rad pos: -134.5,-13.5 parent: 2 - uid: 20297 components: - type: Transform - rot: -1.5707963267948966 rad pos: -74.5,-10.5 parent: 2 - uid: 20298 components: - type: Transform - rot: -1.5707963267948966 rad pos: -74.5,-16.5 parent: 2 - uid: 20340 components: - type: Transform - rot: -1.5707963267948966 rad pos: -103.5,29.5 parent: 2 - uid: 20397 @@ -13794,25 +13741,21 @@ entities: - uid: 20530 components: - type: Transform - rot: -1.5707963267948966 rad pos: -73.5,-53.5 parent: 2 - uid: 20537 components: - type: Transform - rot: -1.5707963267948966 rad pos: -74.5,-53.5 parent: 2 - uid: 20539 components: - type: Transform - rot: -1.5707963267948966 rad pos: -73.5,-59.5 parent: 2 - uid: 20545 components: - type: Transform - rot: -1.5707963267948966 rad pos: -74.5,-59.5 parent: 2 - uid: 20770 @@ -13833,25 +13776,21 @@ entities: - uid: 21774 components: - type: Transform - rot: 3.141592653589793 rad pos: -126.5,23.5 parent: 2 - uid: 21867 components: - type: Transform - rot: -1.5707963267948966 rad pos: -109.5,26.5 parent: 2 - uid: 21891 components: - type: Transform - rot: -1.5707963267948966 rad pos: -109.5,23.5 parent: 2 - uid: 23205 components: - type: Transform - rot: 3.141592653589793 rad pos: -23.5,0.5 parent: 2 - uid: 23220 @@ -13862,7 +13801,6 @@ entities: - uid: 23362 components: - type: Transform - rot: -1.5707963267948966 rad pos: -105.5,12.5 parent: 2 - uid: 23427 @@ -13889,31 +13827,26 @@ entities: - uid: 24132 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,-40.5 parent: 2 - uid: 24134 components: - type: Transform - rot: -1.5707963267948966 rad pos: -42.5,-55.5 parent: 2 - uid: 24472 components: - type: Transform - rot: -1.5707963267948966 rad pos: -14.5,-16.5 parent: 2 - uid: 24476 components: - type: Transform - rot: -1.5707963267948966 rad pos: -42.5,-10.5 parent: 2 - uid: 24583 components: - type: Transform - rot: 1.5707963267948966 rad pos: -134.5,-7.5 parent: 2 - uid: 24584 @@ -13929,7 +13862,6 @@ entities: - uid: 24610 components: - type: Transform - rot: -1.5707963267948966 rad pos: -42.5,-16.5 parent: 2 - uid: 24611 @@ -13945,13 +13877,11 @@ entities: - uid: 24614 components: - type: Transform - rot: -1.5707963267948966 rad pos: -14.5,-10.5 parent: 2 - uid: 24619 components: - type: Transform - rot: -1.5707963267948966 rad pos: -23.5,-60.5 parent: 2 - uid: 24620 @@ -13962,19 +13892,16 @@ entities: - uid: 24625 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,-41.5 parent: 2 - uid: 24627 components: - type: Transform - rot: 1.5707963267948966 rad pos: -41.5,-55.5 parent: 2 - uid: 25445 components: - type: Transform - rot: -1.5707963267948966 rad pos: -14.5,-44.5 parent: 2 - uid: 25446 @@ -14012,9 +13939,13 @@ entities: - uid: 8925 components: - type: Transform - rot: 3.141592653589793 rad pos: -31.5,-44.5 parent: 2 + - uid: 16945 + components: + - type: Transform + pos: -41.5,-28.5 + parent: 2 - proto: AirlockMaintRnDLocked entities: - uid: 16520 @@ -14030,7 +13961,6 @@ entities: - uid: 17503 components: - type: Transform - rot: -1.5707963267948966 rad pos: -125.5,-34.5 parent: 2 - proto: AirlockMaintSecLocked @@ -14043,7 +13973,6 @@ entities: - uid: 19605 components: - type: Transform - rot: 3.141592653589793 rad pos: -76.5,-26.5 parent: 2 - type: DeviceLinkSink @@ -14064,7 +13993,6 @@ entities: - uid: 925 components: - type: Transform - rot: 1.5707963267948966 rad pos: -50.5,-35.5 parent: 2 - proto: AirlockMedical @@ -14161,13 +14089,11 @@ entities: - uid: 928 components: - type: Transform - rot: 1.5707963267948966 rad pos: -45.5,-33.5 parent: 2 - uid: 965 components: - type: Transform - rot: 1.5707963267948966 rad pos: -45.5,-39.5 parent: 2 - proto: AirlockQuartermasterGlassLocked @@ -14190,7 +14116,6 @@ entities: - uid: 1600 components: - type: Transform - rot: 1.5707963267948966 rad pos: -131.5,-45.5 parent: 2 - uid: 7615 @@ -14337,7 +14262,6 @@ entities: - uid: 16086 components: - type: Transform - rot: 3.141592653589793 rad pos: -125.5,-52.5 parent: 2 - proto: AirlockSecurityGlassLocked @@ -14436,7 +14360,6 @@ entities: - uid: 4905 components: - type: Transform - rot: 1.5707963267948966 rad pos: -101.5,-45.5 parent: 2 - uid: 6837 @@ -14449,7 +14372,6 @@ entities: - uid: 7455 components: - type: Transform - rot: 3.141592653589793 rad pos: -79.5,-26.5 parent: 2 - type: DeviceLinkSink @@ -14511,7 +14433,6 @@ entities: - uid: 143 components: - type: Transform - rot: 3.141592653589793 rad pos: -29.5,-13.5 parent: 2 - type: DeviceNetwork @@ -14521,7 +14442,6 @@ entities: - uid: 421 components: - type: Transform - rot: -1.5707963267948966 rad pos: -119.5,-19.5 parent: 2 - type: DeviceNetwork @@ -14530,7 +14450,6 @@ entities: - uid: 788 components: - type: Transform - rot: -1.5707963267948966 rad pos: -92.5,-56.5 parent: 2 - type: DeviceNetwork @@ -14539,7 +14458,6 @@ entities: - uid: 972 components: - type: Transform - rot: -1.5707963267948966 rad pos: -104.5,-50.5 parent: 2 - type: DeviceNetwork @@ -14580,7 +14498,6 @@ entities: - uid: 6938 components: - type: Transform - rot: 3.141592653589793 rad pos: -61.5,-3.5 parent: 2 - type: DeviceNetwork @@ -14590,7 +14507,6 @@ entities: - uid: 6939 components: - type: Transform - rot: 3.141592653589793 rad pos: -61.5,6.5 parent: 2 - type: DeviceNetwork @@ -14600,7 +14516,6 @@ entities: - uid: 9976 components: - type: Transform - rot: 1.5707963267948966 rad pos: -93.5,34.5 parent: 2 - type: DeviceNetwork @@ -14626,7 +14541,6 @@ entities: - uid: 14358 components: - type: Transform - rot: 1.5707963267948966 rad pos: -20.5,10.5 parent: 2 - type: DeviceNetwork @@ -14635,7 +14549,6 @@ entities: - uid: 14618 components: - type: Transform - rot: -1.5707963267948966 rad pos: -127.5,-39.5 parent: 2 - type: DeviceNetwork @@ -14645,7 +14558,6 @@ entities: - uid: 14633 components: - type: Transform - rot: -1.5707963267948966 rad pos: -133.5,-44.5 parent: 2 - type: DeviceNetwork @@ -14663,7 +14575,6 @@ entities: - uid: 15139 components: - type: Transform - rot: 3.141592653589793 rad pos: -53.5,-52.5 parent: 2 - type: DeviceNetwork @@ -14725,7 +14636,6 @@ entities: - uid: 15360 components: - type: Transform - rot: 3.141592653589793 rad pos: -22.5,-51.5 parent: 2 - type: DeviceNetwork @@ -14735,7 +14645,6 @@ entities: - uid: 15361 components: - type: Transform - rot: 3.141592653589793 rad pos: -24.5,-44.5 parent: 2 - type: DeviceNetwork @@ -14777,7 +14686,6 @@ entities: - uid: 15417 components: - type: Transform - rot: -1.5707963267948966 rad pos: -64.5,-55.5 parent: 2 - type: DeviceNetwork @@ -14787,7 +14695,6 @@ entities: - uid: 17180 components: - type: Transform - rot: -1.5707963267948966 rad pos: -34.5,-36.5 parent: 2 - type: DeviceNetwork @@ -14929,7 +14836,6 @@ entities: - uid: 19294 components: - type: Transform - rot: 3.141592653589793 rad pos: -138.5,-4.5 parent: 2 - type: DeviceNetwork @@ -14938,7 +14844,6 @@ entities: - uid: 19295 components: - type: Transform - rot: 3.141592653589793 rad pos: -137.5,-10.5 parent: 2 - type: DeviceNetwork @@ -14947,7 +14852,6 @@ entities: - uid: 19298 components: - type: Transform - rot: -1.5707963267948966 rad pos: -145.5,-7.5 parent: 2 - type: DeviceNetwork @@ -14956,7 +14860,6 @@ entities: - uid: 19738 components: - type: Transform - rot: 1.5707963267948966 rad pos: -93.5,29.5 parent: 2 - type: DeviceNetwork @@ -14965,7 +14868,6 @@ entities: - uid: 19789 components: - type: Transform - rot: 3.141592653589793 rad pos: -93.5,19.5 parent: 2 - type: DeviceNetwork @@ -14974,7 +14876,6 @@ entities: - uid: 19790 components: - type: Transform - rot: 3.141592653589793 rad pos: -94.5,10.5 parent: 2 - type: DeviceNetwork @@ -14983,7 +14884,6 @@ entities: - uid: 19791 components: - type: Transform - rot: 3.141592653589793 rad pos: -100.5,14.5 parent: 2 - type: DeviceNetwork @@ -14992,7 +14892,6 @@ entities: - uid: 19792 components: - type: Transform - rot: 3.141592653589793 rad pos: -88.5,10.5 parent: 2 - type: DeviceNetwork @@ -15001,7 +14900,6 @@ entities: - uid: 19796 components: - type: Transform - rot: 3.141592653589793 rad pos: -86.5,29.5 parent: 2 - type: DeviceNetwork @@ -15010,7 +14908,6 @@ entities: - uid: 19797 components: - type: Transform - rot: 3.141592653589793 rad pos: -87.5,34.5 parent: 2 - type: DeviceNetwork @@ -15019,7 +14916,6 @@ entities: - uid: 19804 components: - type: Transform - rot: 3.141592653589793 rad pos: -101.5,10.5 parent: 2 - type: DeviceNetwork @@ -15036,7 +14932,6 @@ entities: - uid: 20370 components: - type: Transform - rot: -1.5707963267948966 rad pos: -134.5,-39.5 parent: 2 - type: DeviceNetwork @@ -15046,7 +14941,6 @@ entities: - uid: 20371 components: - type: Transform - rot: 3.141592653589793 rad pos: -117.5,-45.5 parent: 2 - type: DeviceNetwork @@ -15056,7 +14950,6 @@ entities: - uid: 20373 components: - type: Transform - rot: 1.5707963267948966 rad pos: -127.5,-45.5 parent: 2 - type: DeviceNetwork @@ -15087,7 +14980,6 @@ entities: - uid: 20380 components: - type: Transform - rot: 3.141592653589793 rad pos: -109.5,-45.5 parent: 2 - type: DeviceNetwork @@ -15137,7 +15029,6 @@ entities: - uid: 22171 components: - type: Transform - rot: -1.5707963267948966 rad pos: -34.5,-5.5 parent: 2 - type: DeviceNetwork @@ -15147,7 +15038,6 @@ entities: - uid: 22172 components: - type: Transform - rot: -1.5707963267948966 rad pos: -24.5,-5.5 parent: 2 - type: DeviceNetwork @@ -15157,7 +15047,6 @@ entities: - uid: 23126 components: - type: Transform - rot: 3.141592653589793 rad pos: -3.5,-13.5 parent: 2 - type: DeviceNetwork @@ -15184,7 +15073,6 @@ entities: - uid: 23925 components: - type: Transform - rot: 3.141592653589793 rad pos: -35.5,-41.5 parent: 2 - type: DeviceNetwork @@ -15193,7 +15081,6 @@ entities: - uid: 23926 components: - type: Transform - rot: 3.141592653589793 rad pos: -37.5,-36.5 parent: 2 - type: DeviceNetwork @@ -15210,7 +15097,6 @@ entities: - uid: 23990 components: - type: Transform - rot: 3.141592653589793 rad pos: -61.5,-11.5 parent: 2 - type: DeviceNetwork @@ -15237,7 +15123,6 @@ entities: - uid: 24034 components: - type: Transform - rot: 1.5707963267948966 rad pos: -24.5,6.5 parent: 2 - type: DeviceNetwork @@ -15246,7 +15131,6 @@ entities: - uid: 24038 components: - type: Transform - rot: 1.5707963267948966 rad pos: -27.5,-19.5 parent: 2 - type: DeviceNetwork @@ -15255,7 +15139,6 @@ entities: - uid: 24044 components: - type: Transform - rot: -1.5707963267948966 rad pos: -19.5,-18.5 parent: 2 - type: DeviceNetwork @@ -15264,7 +15147,6 @@ entities: - uid: 24046 components: - type: Transform - rot: -1.5707963267948966 rad pos: -36.5,-30.5 parent: 2 - type: DeviceNetwork @@ -15274,7 +15156,6 @@ entities: - uid: 24051 components: - type: Transform - rot: 1.5707963267948966 rad pos: -43.5,-36.5 parent: 2 - type: DeviceNetwork @@ -15283,7 +15164,6 @@ entities: - uid: 24578 components: - type: Transform - rot: 1.5707963267948966 rad pos: -103.5,-13.5 parent: 2 - type: DeviceNetwork @@ -15300,7 +15180,6 @@ entities: - uid: 24697 components: - type: Transform - rot: -1.5707963267948966 rad pos: -104.5,-27.5 parent: 2 - type: DeviceNetwork @@ -15309,7 +15188,6 @@ entities: - uid: 24743 components: - type: Transform - rot: -1.5707963267948966 rad pos: -64.5,-38.5 parent: 2 - type: DeviceNetwork @@ -15320,7 +15198,6 @@ entities: - uid: 25263 components: - type: Transform - rot: 3.141592653589793 rad pos: -120.5,-80.5 parent: 2 - type: DeviceNetwork @@ -15362,13 +15239,11 @@ entities: - uid: 25692 components: - type: Transform - rot: -1.5707963267948966 rad pos: -119.5,6.5 parent: 2 - uid: 25698 components: - type: Transform - rot: -1.5707963267948966 rad pos: -18.5,-4.5 parent: 2 - type: DeviceNetwork @@ -16293,12 +16168,12 @@ entities: - uid: 5619 components: - type: Transform - pos: -26.532116,-63.969265 + pos: -27.638874,-64.49628 parent: 2 - uid: 6032 components: - type: Transform - pos: -25.528984,-62.44691 + pos: -25.49825,-64.18326 parent: 2 - uid: 16884 components: @@ -23717,151 +23592,126 @@ entities: - uid: 1450 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,-28.5 parent: 2 - uid: 1451 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,-26.5 parent: 2 - uid: 3463 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,-29.5 parent: 2 - uid: 3464 components: - type: Transform - rot: -1.5707963267948966 rad pos: -49.5,-26.5 parent: 2 - uid: 3465 components: - type: Transform - rot: -1.5707963267948966 rad pos: -49.5,-27.5 parent: 2 - uid: 3466 components: - type: Transform - rot: -1.5707963267948966 rad pos: -49.5,-28.5 parent: 2 - uid: 3467 components: - type: Transform - rot: -1.5707963267948966 rad pos: -49.5,-29.5 parent: 2 - uid: 3468 components: - type: Transform - rot: -1.5707963267948966 rad pos: -48.5,-27.5 parent: 2 - uid: 3469 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,-27.5 parent: 2 - uid: 3470 components: - type: Transform - rot: -1.5707963267948966 rad pos: -48.5,-28.5 parent: 2 - uid: 3471 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,-26.5 parent: 2 - uid: 3472 components: - type: Transform - rot: -1.5707963267948966 rad pos: -48.5,-29.5 parent: 2 - uid: 3473 components: - type: Transform - rot: -1.5707963267948966 rad pos: -48.5,-26.5 parent: 2 - uid: 3474 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,-28.5 parent: 2 - uid: 3475 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,-29.5 parent: 2 - uid: 3476 components: - type: Transform - rot: -1.5707963267948966 rad pos: -46.5,-28.5 parent: 2 - uid: 3477 components: - type: Transform - rot: -1.5707963267948966 rad pos: -46.5,-26.5 parent: 2 - uid: 3478 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,-27.5 parent: 2 - uid: 3479 components: - type: Transform - rot: -1.5707963267948966 rad pos: -46.5,-27.5 parent: 2 - uid: 3480 components: - type: Transform - rot: -1.5707963267948966 rad pos: -46.5,-29.5 parent: 2 - uid: 3481 components: - type: Transform - rot: -1.5707963267948966 rad pos: -45.5,-26.5 parent: 2 - uid: 3482 components: - type: Transform - rot: -1.5707963267948966 rad pos: -45.5,-29.5 parent: 2 - uid: 3483 components: - type: Transform - rot: -1.5707963267948966 rad pos: -45.5,-27.5 parent: 2 - uid: 3484 components: - type: Transform - rot: -1.5707963267948966 rad pos: -45.5,-28.5 parent: 2 - uid: 3485 components: - type: Transform - rot: -1.5707963267948966 rad pos: -44.5,-27.5 parent: 2 - uid: 3486 @@ -25993,6 +25843,11 @@ entities: - type: Transform pos: -68.5,-29.5 parent: 2 + - uid: 505 + components: + - type: Transform + pos: -108.5,8.5 + parent: 2 - uid: 721 components: - type: Transform @@ -26113,6 +25968,11 @@ entities: - type: Transform pos: -82.5,-44.5 parent: 2 + - uid: 1754 + components: + - type: Transform + pos: -107.5,8.5 + parent: 2 - uid: 1755 components: - type: Transform @@ -26868,6 +26728,16 @@ entities: - type: Transform pos: -24.5,-39.5 parent: 2 + - uid: 3781 + components: + - type: Transform + pos: -106.5,7.5 + parent: 2 + - uid: 3796 + components: + - type: Transform + pos: -106.5,9.5 + parent: 2 - uid: 3797 components: - type: Transform @@ -27098,6 +26968,11 @@ entities: - type: Transform pos: -19.5,-2.5 parent: 2 + - uid: 4835 + components: + - type: Transform + pos: -106.5,3.5 + parent: 2 - uid: 4849 components: - type: Transform @@ -27383,6 +27258,16 @@ entities: - type: Transform pos: -122.5,14.5 parent: 2 + - uid: 5605 + components: + - type: Transform + pos: -106.5,1.5 + parent: 2 + - uid: 5634 + components: + - type: Transform + pos: -106.5,8.5 + parent: 2 - uid: 5635 components: - type: Transform @@ -28463,6 +28348,26 @@ entities: - type: Transform pos: -100.5,30.5 parent: 2 + - uid: 10969 + components: + - type: Transform + pos: -109.5,2.5 + parent: 2 + - uid: 10973 + components: + - type: Transform + pos: -106.5,2.5 + parent: 2 + - uid: 10974 + components: + - type: Transform + pos: -109.5,8.5 + parent: 2 + - uid: 10975 + components: + - type: Transform + pos: -107.5,2.5 + parent: 2 - uid: 11008 components: - type: Transform @@ -28528,6 +28433,11 @@ entities: - type: Transform pos: -98.5,34.5 parent: 2 + - uid: 11347 + components: + - type: Transform + pos: -108.5,2.5 + parent: 2 - uid: 11495 components: - type: Transform @@ -43850,41 +43760,6 @@ entities: - type: Transform pos: -29.5,-13.5 parent: 2 - - uid: 11417 - components: - - type: Transform - pos: -29.5,-14.5 - parent: 2 - - uid: 11418 - components: - - type: Transform - pos: -29.5,-15.5 - parent: 2 - - uid: 11419 - components: - - type: Transform - pos: -29.5,-17.5 - parent: 2 - - uid: 11420 - components: - - type: Transform - pos: -29.5,-18.5 - parent: 2 - - uid: 11421 - components: - - type: Transform - pos: -29.5,-19.5 - parent: 2 - - uid: 11422 - components: - - type: Transform - pos: -29.5,-20.5 - parent: 2 - - uid: 11423 - components: - - type: Transform - pos: -29.5,-16.5 - parent: 2 - uid: 11424 components: - type: Transform @@ -54974,7 +54849,7 @@ entities: - uid: 7024 components: - type: Transform - pos: -30.511707,-65.506226 + pos: -24.484737,-64.29825 parent: 2 - proto: CaptainIDCard entities: @@ -55010,7 +54885,6 @@ entities: - uid: 1601 components: - type: Transform - rot: 3.141592653589793 rad pos: -97.5,-46.5 parent: 2 - uid: 3375 @@ -55046,13 +54920,11 @@ entities: - uid: 3675 components: - type: Transform - rot: 1.5707963267948966 rad pos: -51.5,-45.5 parent: 2 - uid: 3676 components: - type: Transform - rot: 1.5707963267948966 rad pos: -53.5,-45.5 parent: 2 - uid: 3950 @@ -55073,115 +54945,96 @@ entities: - uid: 5892 components: - type: Transform - rot: 1.5707963267948966 rad pos: -97.5,-47.5 parent: 2 - uid: 6551 components: - type: Transform - rot: 3.141592653589793 rad pos: -99.5,-46.5 parent: 2 - uid: 6749 components: - type: Transform - rot: 1.5707963267948966 rad pos: -82.5,-32.5 parent: 2 - uid: 6769 components: - type: Transform - rot: 1.5707963267948966 rad pos: -76.5,-30.5 parent: 2 - uid: 6812 components: - type: Transform - rot: 1.5707963267948966 rad pos: -83.5,-32.5 parent: 2 - uid: 6847 components: - type: Transform - rot: 1.5707963267948966 rad pos: -77.5,-31.5 parent: 2 - uid: 6855 components: - type: Transform - rot: 1.5707963267948966 rad pos: -76.5,-31.5 parent: 2 - uid: 6898 components: - type: Transform - rot: 1.5707963267948966 rad pos: -78.5,-30.5 parent: 2 - uid: 6925 components: - type: Transform - rot: 1.5707963267948966 rad pos: -77.5,-30.5 parent: 2 - uid: 6960 components: - type: Transform - rot: 1.5707963267948966 rad pos: -77.5,-29.5 parent: 2 - uid: 7090 components: - type: Transform - rot: 1.5707963267948966 rad pos: -82.5,-34.5 parent: 2 - uid: 7091 components: - type: Transform - rot: 1.5707963267948966 rad pos: -81.5,-33.5 parent: 2 - uid: 7092 components: - type: Transform - rot: 1.5707963267948966 rad pos: -81.5,-34.5 parent: 2 - uid: 7093 components: - type: Transform - rot: 1.5707963267948966 rad pos: -81.5,-32.5 parent: 2 - uid: 7094 components: - type: Transform - rot: 1.5707963267948966 rad pos: -83.5,-34.5 parent: 2 - uid: 7240 components: - type: Transform - rot: 1.5707963267948966 rad pos: -83.5,-33.5 parent: 2 - uid: 7243 components: - type: Transform - rot: 1.5707963267948966 rad pos: -82.5,-33.5 parent: 2 - uid: 7248 components: - type: Transform - rot: 1.5707963267948966 rad pos: -78.5,-29.5 parent: 2 - uid: 7249 components: - type: Transform - rot: 1.5707963267948966 rad pos: -76.5,-29.5 parent: 2 - uid: 8388 @@ -55192,7 +55045,6 @@ entities: - uid: 8481 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,-36.5 parent: 2 - uid: 8570 @@ -55233,97 +55085,81 @@ entities: - uid: 9175 components: - type: Transform - rot: 3.141592653589793 rad pos: -18.5,-20.5 parent: 2 - uid: 11161 components: - type: Transform - rot: 3.141592653589793 rad pos: -98.5,-45.5 parent: 2 - uid: 11170 components: - type: Transform - rot: 3.141592653589793 rad pos: -99.5,-45.5 parent: 2 - uid: 11175 components: - type: Transform - rot: 1.5707963267948966 rad pos: -98.5,-47.5 parent: 2 - uid: 11842 components: - type: Transform - rot: 3.141592653589793 rad pos: -98.5,-46.5 parent: 2 - uid: 11843 components: - type: Transform - rot: 3.141592653589793 rad pos: -97.5,-45.5 parent: 2 - uid: 11876 components: - type: Transform - rot: 1.5707963267948966 rad pos: -99.5,-47.5 parent: 2 - uid: 13542 components: - type: Transform - rot: 3.141592653589793 rad pos: -98.5,-40.5 parent: 2 - uid: 13543 components: - type: Transform - rot: 3.141592653589793 rad pos: -96.5,-38.5 parent: 2 - uid: 13544 components: - type: Transform - rot: 3.141592653589793 rad pos: -97.5,-38.5 parent: 2 - uid: 13545 components: - type: Transform - rot: 3.141592653589793 rad pos: -97.5,-39.5 parent: 2 - uid: 13546 components: - type: Transform - rot: 3.141592653589793 rad pos: -97.5,-40.5 parent: 2 - uid: 13547 components: - type: Transform - rot: 3.141592653589793 rad pos: -98.5,-38.5 parent: 2 - uid: 13548 components: - type: Transform - rot: 3.141592653589793 rad pos: -96.5,-39.5 parent: 2 - uid: 13549 components: - type: Transform - rot: 3.141592653589793 rad pos: -98.5,-39.5 parent: 2 - uid: 13550 components: - type: Transform - rot: 3.141592653589793 rad pos: -96.5,-40.5 parent: 2 - uid: 13576 @@ -55334,55 +55170,46 @@ entities: - uid: 13763 components: - type: Transform - rot: 1.5707963267948966 rad pos: -55.5,-50.5 parent: 2 - uid: 14283 components: - type: Transform - rot: 1.5707963267948966 rad pos: -48.5,-45.5 parent: 2 - uid: 14284 components: - type: Transform - rot: 1.5707963267948966 rad pos: -50.5,-46.5 parent: 2 - uid: 14286 components: - type: Transform - rot: 1.5707963267948966 rad pos: -50.5,-44.5 parent: 2 - uid: 14287 components: - type: Transform - rot: 1.5707963267948966 rad pos: -52.5,-45.5 parent: 2 - uid: 14289 components: - type: Transform - rot: 1.5707963267948966 rad pos: -50.5,-45.5 parent: 2 - uid: 14291 components: - type: Transform - rot: 1.5707963267948966 rad pos: -50.5,-47.5 parent: 2 - uid: 14292 components: - type: Transform - rot: 1.5707963267948966 rad pos: -49.5,-45.5 parent: 2 - uid: 14295 components: - type: Transform - rot: 1.5707963267948966 rad pos: -50.5,-43.5 parent: 2 - uid: 14535 @@ -55413,121 +55240,101 @@ entities: - uid: 14558 components: - type: Transform - rot: 1.5707963267948966 rad pos: -62.5,-54.5 parent: 2 - uid: 14559 components: - type: Transform - rot: 1.5707963267948966 rad pos: -62.5,-52.5 parent: 2 - uid: 14560 components: - type: Transform - rot: 1.5707963267948966 rad pos: -61.5,-54.5 parent: 2 - uid: 14561 components: - type: Transform - rot: 1.5707963267948966 rad pos: -61.5,-53.5 parent: 2 - uid: 14562 components: - type: Transform - rot: 1.5707963267948966 rad pos: -61.5,-52.5 parent: 2 - uid: 14563 components: - type: Transform - rot: 1.5707963267948966 rad pos: -60.5,-54.5 parent: 2 - uid: 14564 components: - type: Transform - rot: 1.5707963267948966 rad pos: -60.5,-53.5 parent: 2 - uid: 14565 components: - type: Transform - rot: 1.5707963267948966 rad pos: -62.5,-53.5 parent: 2 - uid: 14566 components: - type: Transform - rot: 1.5707963267948966 rad pos: -60.5,-52.5 parent: 2 - uid: 14802 components: - type: Transform - rot: 1.5707963267948966 rad pos: -55.5,-51.5 parent: 2 - uid: 14803 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,-50.5 parent: 2 - uid: 14804 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,-51.5 parent: 2 - uid: 14805 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,-52.5 parent: 2 - uid: 14806 components: - type: Transform - rot: 1.5707963267948966 rad pos: -53.5,-50.5 parent: 2 - uid: 14807 components: - type: Transform - rot: 1.5707963267948966 rad pos: -53.5,-51.5 parent: 2 - uid: 14808 components: - type: Transform - rot: 1.5707963267948966 rad pos: -53.5,-52.5 parent: 2 - uid: 14809 components: - type: Transform - rot: 1.5707963267948966 rad pos: -55.5,-52.5 parent: 2 - uid: 14810 components: - type: Transform - rot: 1.5707963267948966 rad pos: -52.5,-50.5 parent: 2 - uid: 14811 components: - type: Transform - rot: 1.5707963267948966 rad pos: -52.5,-51.5 parent: 2 - uid: 14812 components: - type: Transform - rot: 1.5707963267948966 rad pos: -52.5,-52.5 parent: 2 - uid: 15222 @@ -55550,103 +55357,86 @@ entities: - uid: 9268 components: - type: Transform - rot: 1.5707963267948966 rad pos: -64.5,-9.5 parent: 2 - uid: 9269 components: - type: Transform - rot: 1.5707963267948966 rad pos: -63.5,-9.5 parent: 2 - uid: 11225 components: - type: Transform - rot: 1.5707963267948966 rad pos: -59.5,-12.5 parent: 2 - uid: 11226 components: - type: Transform - rot: 1.5707963267948966 rad pos: -58.5,-12.5 parent: 2 - uid: 11229 components: - type: Transform - rot: 1.5707963267948966 rad pos: -63.5,-12.5 parent: 2 - uid: 11232 components: - type: Transform - rot: 1.5707963267948966 rad pos: -59.5,-9.5 parent: 2 - uid: 11233 components: - type: Transform - rot: 1.5707963267948966 rad pos: -58.5,-9.5 parent: 2 - uid: 11234 components: - type: Transform - rot: 1.5707963267948966 rad pos: -64.5,-12.5 parent: 2 - uid: 14546 components: - type: Transform - rot: 1.5707963267948966 rad pos: -67.5,-54.5 parent: 2 - uid: 14547 components: - type: Transform - rot: 1.5707963267948966 rad pos: -67.5,-55.5 parent: 2 - uid: 14551 components: - type: Transform - rot: 1.5707963267948966 rad pos: -67.5,-56.5 parent: 2 - uid: 14552 components: - type: Transform - rot: 1.5707963267948966 rad pos: -66.5,-54.5 parent: 2 - uid: 14553 components: - type: Transform - rot: 1.5707963267948966 rad pos: -66.5,-55.5 parent: 2 - uid: 14554 components: - type: Transform - rot: 1.5707963267948966 rad pos: -66.5,-56.5 parent: 2 - uid: 14555 components: - type: Transform - rot: 1.5707963267948966 rad pos: -65.5,-54.5 parent: 2 - uid: 14556 components: - type: Transform - rot: 1.5707963267948966 rad pos: -65.5,-55.5 parent: 2 - uid: 14557 components: - type: Transform - rot: 1.5707963267948966 rad pos: -65.5,-56.5 parent: 2 - uid: 22103 @@ -55684,13 +55474,11 @@ entities: - uid: 391 components: - type: Transform - rot: -1.5707963267948966 rad pos: -49.5,-5.5 parent: 2 - uid: 392 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,2.5 parent: 2 - uid: 2869 @@ -55741,7 +55529,6 @@ entities: - uid: 2898 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,-6.5 parent: 2 - uid: 2908 @@ -55767,73 +55554,61 @@ entities: - uid: 2933 components: - type: Transform - rot: -1.5707963267948966 rad pos: -42.5,1.5 parent: 2 - uid: 3004 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,1.5 parent: 2 - uid: 3005 components: - type: Transform - rot: -1.5707963267948966 rad pos: -42.5,0.5 parent: 2 - uid: 3006 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,0.5 parent: 2 - uid: 3007 components: - type: Transform - rot: -1.5707963267948966 rad pos: -42.5,2.5 parent: 2 - uid: 3014 components: - type: Transform - rot: -1.5707963267948966 rad pos: -49.5,-6.5 parent: 2 - uid: 3016 components: - type: Transform - rot: -1.5707963267948966 rad pos: -52.5,-6.5 parent: 2 - uid: 3018 components: - type: Transform - rot: -1.5707963267948966 rad pos: -51.5,-5.5 parent: 2 - uid: 3019 components: - type: Transform - rot: -1.5707963267948966 rad pos: -51.5,-6.5 parent: 2 - uid: 3021 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,-5.5 parent: 2 - uid: 3022 components: - type: Transform - rot: -1.5707963267948966 rad pos: -52.5,-5.5 parent: 2 - uid: 9339 components: - type: Transform - rot: 1.5707963267948966 rad pos: -59.5,-4.5 parent: 2 - uid: 11199 @@ -55844,19 +55619,16 @@ entities: - uid: 11201 components: - type: Transform - rot: 1.5707963267948966 rad pos: -59.5,-3.5 parent: 2 - uid: 11202 components: - type: Transform - rot: 1.5707963267948966 rad pos: -61.5,-3.5 parent: 2 - uid: 11203 components: - type: Transform - rot: 3.141592653589793 rad pos: -61.5,-4.5 parent: 2 - uid: 11204 @@ -55867,25 +55639,21 @@ entities: - uid: 11205 components: - type: Transform - rot: 1.5707963267948966 rad pos: -61.5,-2.5 parent: 2 - uid: 11206 components: - type: Transform - rot: 1.5707963267948966 rad pos: -60.5,-3.5 parent: 2 - uid: 11207 components: - type: Transform - rot: 1.5707963267948966 rad pos: -60.5,-2.5 parent: 2 - uid: 11208 components: - type: Transform - rot: 1.5707963267948966 rad pos: -59.5,-2.5 parent: 2 - uid: 11209 @@ -55896,13 +55664,11 @@ entities: - uid: 11211 components: - type: Transform - rot: 1.5707963267948966 rad pos: -63.5,-2.5 parent: 2 - uid: 11212 components: - type: Transform - rot: 1.5707963267948966 rad pos: -63.5,-3.5 parent: 2 - uid: 11213 @@ -55913,19 +55679,16 @@ entities: - uid: 11214 components: - type: Transform - rot: 1.5707963267948966 rad pos: -62.5,-2.5 parent: 2 - uid: 11215 components: - type: Transform - rot: 1.5707963267948966 rad pos: -62.5,-3.5 parent: 2 - uid: 11216 components: - type: Transform - rot: 1.5707963267948966 rad pos: -62.5,-4.5 parent: 2 - uid: 11217 @@ -55936,43 +55699,36 @@ entities: - uid: 11218 components: - type: Transform - rot: 1.5707963267948966 rad pos: -63.5,-4.5 parent: 2 - uid: 11219 components: - type: Transform - rot: 1.5707963267948966 rad pos: -62.5,-10.5 parent: 2 - uid: 11220 components: - type: Transform - rot: 1.5707963267948966 rad pos: -61.5,-10.5 parent: 2 - uid: 11221 components: - type: Transform - rot: 1.5707963267948966 rad pos: -61.5,-11.5 parent: 2 - uid: 11222 components: - type: Transform - rot: 1.5707963267948966 rad pos: -62.5,-11.5 parent: 2 - uid: 11223 components: - type: Transform - rot: 1.5707963267948966 rad pos: -60.5,-11.5 parent: 2 - uid: 11224 components: - type: Transform - rot: 1.5707963267948966 rad pos: -60.5,-10.5 parent: 2 - uid: 12543 @@ -56023,7 +55779,6 @@ entities: - uid: 12941 components: - type: Transform - rot: 3.141592653589793 rad pos: -42.5,-5.5 parent: 2 - uid: 13240 @@ -56049,7 +55804,6 @@ entities: - uid: 14515 components: - type: Transform - rot: 3.141592653589793 rad pos: -42.5,-6.5 parent: 2 - uid: 15956 @@ -56060,25 +55814,21 @@ entities: - uid: 22268 components: - type: Transform - rot: 3.141592653589793 rad pos: -42.5,-4.5 parent: 2 - uid: 22270 components: - type: Transform - rot: 3.141592653589793 rad pos: -43.5,-5.5 parent: 2 - uid: 22271 components: - type: Transform - rot: 3.141592653589793 rad pos: -43.5,-4.5 parent: 2 - uid: 22272 components: - type: Transform - rot: 3.141592653589793 rad pos: -43.5,-6.5 parent: 2 - proto: CarpetChapel @@ -56134,73 +55884,61 @@ entities: - uid: 1328 components: - type: Transform - rot: 1.5707963267948966 rad pos: -98.5,-1.5 parent: 2 - uid: 1977 components: - type: Transform - rot: 1.5707963267948966 rad pos: -98.5,-0.5 parent: 2 - uid: 5719 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,-56.5 parent: 2 - uid: 16020 components: - type: Transform - rot: 1.5707963267948966 rad pos: -96.5,-0.5 parent: 2 - uid: 16023 components: - type: Transform - rot: 1.5707963267948966 rad pos: -97.5,-1.5 parent: 2 - uid: 16201 components: - type: Transform - rot: 1.5707963267948966 rad pos: -96.5,-1.5 parent: 2 - uid: 16256 components: - type: Transform - rot: 1.5707963267948966 rad pos: -97.5,-0.5 parent: 2 - uid: 17846 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,-56.5 parent: 2 - uid: 24379 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,-55.5 parent: 2 - uid: 25539 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,-55.5 parent: 2 - uid: 25540 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,-55.5 parent: 2 - uid: 25541 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,-56.5 parent: 2 - proto: CarpetOrange @@ -56273,7 +56011,6 @@ entities: - uid: 5798 components: - type: Transform - rot: 3.141592653589793 rad pos: -124.5,-17.5 parent: 2 - uid: 5917 @@ -56284,7 +56021,6 @@ entities: - uid: 9576 components: - type: Transform - rot: 3.141592653589793 rad pos: -124.5,-16.5 parent: 2 - uid: 17088 @@ -56295,43 +56031,36 @@ entities: - uid: 18762 components: - type: Transform - rot: 3.141592653589793 rad pos: -124.5,-15.5 parent: 2 - uid: 18763 components: - type: Transform - rot: 3.141592653589793 rad pos: -123.5,-15.5 parent: 2 - uid: 18764 components: - type: Transform - rot: 3.141592653589793 rad pos: -123.5,-16.5 parent: 2 - uid: 18765 components: - type: Transform - rot: 3.141592653589793 rad pos: -123.5,-17.5 parent: 2 - uid: 18766 components: - type: Transform - rot: 3.141592653589793 rad pos: -122.5,-15.5 parent: 2 - uid: 18767 components: - type: Transform - rot: 3.141592653589793 rad pos: -122.5,-16.5 parent: 2 - uid: 18768 components: - type: Transform - rot: 3.141592653589793 rad pos: -122.5,-17.5 parent: 2 - uid: 19493 @@ -56367,7 +56096,6 @@ entities: - uid: 19690 components: - type: Transform - rot: 1.5707963267948966 rad pos: -87.5,30.5 parent: 2 - uid: 20331 @@ -56380,37 +56108,31 @@ entities: - uid: 920 components: - type: Transform - rot: -1.5707963267948966 rad pos: -133.5,-52.5 parent: 2 - uid: 7915 components: - type: Transform - rot: -1.5707963267948966 rad pos: -132.5,-51.5 parent: 2 - uid: 7918 components: - type: Transform - rot: -1.5707963267948966 rad pos: -132.5,-52.5 parent: 2 - uid: 7919 components: - type: Transform - rot: -1.5707963267948966 rad pos: -132.5,-50.5 parent: 2 - uid: 13654 components: - type: Transform - rot: -1.5707963267948966 rad pos: -133.5,-50.5 parent: 2 - uid: 17357 components: - type: Transform - rot: -1.5707963267948966 rad pos: -133.5,-51.5 parent: 2 - uid: 20480 @@ -64728,23 +64450,6 @@ entities: - type: Transform pos: -119.5,36.5 parent: 2 -- proto: ClosetWallOrange - entities: - - uid: 8987 - components: - - type: Transform - pos: -99.5,-25.5 - parent: 2 - - uid: 16405 - components: - - type: Transform - pos: -99.5,-21.5 - parent: 2 - - uid: 16459 - components: - - type: Transform - pos: -99.5,-29.5 - parent: 2 - proto: ClothingBackpackDuffelSurgeryFilled entities: - uid: 3894 @@ -68203,6 +67908,18 @@ entities: rot: 3.141592653589793 rad pos: -119.5,-50.5 parent: 2 + - uid: 8600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-29.5 + parent: 2 + - uid: 8828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-29.5 + parent: 2 - uid: 9617 components: - type: Transform @@ -68562,12 +68279,6 @@ entities: - type: Transform pos: -66.5,-12.5 parent: 2 - - uid: 14484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-28.5 - parent: 2 - uid: 14505 components: - type: Transform @@ -68681,11 +68392,17 @@ entities: rot: 3.141592653589793 rad pos: -94.5,-25.5 parent: 2 - - uid: 15287 + - uid: 15291 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,-28.5 + pos: -52.5,-0.5 + parent: 2 + - uid: 15292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-28.5 parent: 2 - uid: 15300 components: @@ -69077,12 +68794,6 @@ entities: rot: 3.141592653589793 rad pos: -29.5,-24.5 parent: 2 - - uid: 10969 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-21.5 - parent: 2 - uid: 11145 components: - type: Transform @@ -70900,24 +70611,59 @@ entities: rot: 3.141592653589793 rad pos: -105.5,23.5 parent: 2 + - uid: 8847 + components: + - type: Transform + pos: -29.5,-21.5 + parent: 2 - uid: 8982 components: - type: Transform rot: 3.141592653589793 rad pos: -103.5,8.5 parent: 2 + - uid: 8987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-28.5 + parent: 2 - uid: 9152 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-49.5 parent: 2 + - uid: 9154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-28.5 + parent: 2 - uid: 9203 components: - type: Transform rot: 3.141592653589793 rad pos: -103.5,9.5 parent: 2 + - uid: 9214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-28.5 + parent: 2 + - uid: 9238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-28.5 + parent: 2 + - uid: 9365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-28.5 + parent: 2 - uid: 9581 components: - type: Transform @@ -70945,6 +70691,11 @@ entities: - type: Transform pos: -29.5,10.5 parent: 2 + - uid: 9720 + components: + - type: Transform + pos: -42.5,-27.5 + parent: 2 - uid: 9748 components: - type: Transform @@ -71325,6 +71076,12 @@ entities: rot: 1.5707963267948966 rad pos: -128.5,-39.5 parent: 2 + - uid: 10263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-28.5 + parent: 2 - uid: 10453 components: - type: Transform @@ -72483,18 +72240,6 @@ entities: rot: 3.141592653589793 rad pos: -29.5,-20.5 parent: 2 - - uid: 10973 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-21.5 - parent: 2 - - uid: 10974 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-21.5 - parent: 2 - uid: 10977 components: - type: Transform @@ -74559,36 +74304,6 @@ entities: rot: 3.141592653589793 rad pos: -94.5,-24.5 parent: 2 - - uid: 15288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-27.5 - parent: 2 - - uid: 15289 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-27.5 - parent: 2 - - uid: 15290 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-27.5 - parent: 2 - - uid: 15291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-27.5 - parent: 2 - - uid: 15292 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-27.5 - parent: 2 - uid: 15294 components: - type: Transform @@ -76054,14 +75769,6 @@ entities: - type: DisposalRouter tags: - Botany - - uid: 14436 - components: - - type: Transform - pos: -42.5,-27.5 - parent: 2 - - type: DisposalRouter - tags: - - Medical - uid: 14483 components: - type: Transform @@ -76106,6 +75813,14 @@ entities: - type: DisposalRouter tags: - Cargo + - uid: 16901 + components: + - type: Transform + pos: -42.5,-28.5 + parent: 2 + - type: DisposalRouter + tags: + - Medical - proto: DisposalTagger entities: - uid: 11775 @@ -76304,12 +76019,6 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-33.5 parent: 2 - - uid: 10975 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-21.5 - parent: 2 - uid: 10976 components: - type: Transform @@ -76321,6 +76030,11 @@ entities: rot: 3.141592653589793 rad pos: -61.5,-10.5 parent: 2 + - uid: 11421 + components: + - type: Transform + pos: -36.5,-27.5 + parent: 2 - uid: 12052 components: - type: Transform @@ -76401,12 +76115,6 @@ entities: rot: -1.5707963267948966 rad pos: -94.5,-41.5 parent: 2 - - uid: 15293 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-27.5 - parent: 2 - uid: 15298 components: - type: Transform @@ -77636,9 +77344,6 @@ entities: - 8651 - 8687 - 11727 - - 9723 - - 10263 - - 11724 - 24032 - 14938 - 14937 @@ -77872,14 +77577,11 @@ entities: parent: 2 - type: DeviceList devices: - - 11810 - 14500 - 14508 - 14507 - 11817 - 11816 - - 11804 - - 11809 - 23126 - 11802 - uid: 16688 @@ -78393,7 +78095,6 @@ entities: - uid: 481 components: - type: Transform - rot: 1.5707963267948966 rad pos: -26.5,2.5 parent: 2 - uid: 859 @@ -78407,13 +78108,11 @@ entities: - uid: 910 components: - type: Transform - rot: 3.141592653589793 rad pos: -55.5,-62.5 parent: 2 - uid: 914 components: - type: Transform - rot: 3.141592653589793 rad pos: -54.5,-62.5 parent: 2 - uid: 932 @@ -78448,31 +78147,26 @@ entities: - uid: 1729 components: - type: Transform - rot: 1.5707963267948966 rad pos: -134.5,-13.5 parent: 2 - uid: 2287 components: - type: Transform - rot: 1.5707963267948966 rad pos: -135.5,-27.5 parent: 2 - uid: 2436 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,-16.5 parent: 2 - uid: 2650 components: - type: Transform - rot: 3.141592653589793 rad pos: -102.5,-21.5 parent: 2 - uid: 2657 components: - type: Transform - rot: 3.141592653589793 rad pos: -103.5,-21.5 parent: 2 - uid: 2968 @@ -78533,7 +78227,6 @@ entities: - uid: 2976 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,-5.5 parent: 2 - type: DeviceNetwork @@ -78548,19 +78241,16 @@ entities: - uid: 3345 components: - type: Transform - rot: -1.5707963267948966 rad pos: -75.5,-16.5 parent: 2 - uid: 3364 components: - type: Transform - rot: -1.5707963267948966 rad pos: -75.5,-10.5 parent: 2 - uid: 3494 components: - type: Transform - rot: -1.5707963267948966 rad pos: -16.5,-2.5 parent: 2 - type: DeviceNetwork @@ -78569,7 +78259,6 @@ entities: - uid: 4471 components: - type: Transform - rot: 1.5707963267948966 rad pos: -110.5,-57.5 parent: 2 - uid: 5038 @@ -78588,13 +78277,11 @@ entities: - uid: 5114 components: - type: Transform - rot: -1.5707963267948966 rad pos: -91.5,-36.5 parent: 2 - uid: 5742 components: - type: Transform - rot: 1.5707963267948966 rad pos: -18.5,-41.5 parent: 2 - type: DeviceNetwork @@ -78604,7 +78291,6 @@ entities: - uid: 5744 components: - type: Transform - rot: 1.5707963267948966 rad pos: -45.5,-39.5 parent: 2 - type: DeviceNetwork @@ -78613,7 +78299,6 @@ entities: - uid: 5746 components: - type: Transform - rot: 1.5707963267948966 rad pos: -27.5,-37.5 parent: 2 - type: DeviceNetwork @@ -78665,7 +78350,6 @@ entities: - uid: 6594 components: - type: Transform - rot: -1.5707963267948966 rad pos: -68.5,-28.5 parent: 2 - type: DeviceNetwork @@ -78674,7 +78358,6 @@ entities: - uid: 6601 components: - type: Transform - rot: -1.5707963267948966 rad pos: -41.5,-23.5 parent: 2 - type: DeviceNetwork @@ -78683,13 +78366,11 @@ entities: - uid: 6603 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,-10.5 parent: 2 - uid: 7046 components: - type: Transform - rot: -1.5707963267948966 rad pos: -66.5,-25.5 parent: 2 - type: DeviceNetwork @@ -78700,7 +78381,6 @@ entities: - uid: 7345 components: - type: Transform - rot: -1.5707963267948966 rad pos: -23.5,0.5 parent: 2 - type: DeviceNetwork @@ -78751,7 +78431,6 @@ entities: - uid: 7808 components: - type: Transform - rot: -1.5707963267948966 rad pos: -20.5,-2.5 parent: 2 - type: DeviceNetwork @@ -78762,13 +78441,11 @@ entities: - uid: 7883 components: - type: Transform - rot: -1.5707963267948966 rad pos: -68.5,-9.5 parent: 2 - uid: 9134 components: - type: Transform - rot: 1.5707963267948966 rad pos: -18.5,-28.5 parent: 2 - type: DeviceNetwork @@ -78778,7 +78455,6 @@ entities: - uid: 9244 components: - type: Transform - rot: -1.5707963267948966 rad pos: -70.5,-25.5 parent: 2 - type: DeviceNetwork @@ -78788,13 +78464,11 @@ entities: - uid: 9265 components: - type: Transform - rot: -1.5707963267948966 rad pos: -99.5,5.5 parent: 2 - uid: 9356 components: - type: Transform - rot: -1.5707963267948966 rad pos: -94.5,6.5 parent: 2 - uid: 9417 @@ -78805,7 +78479,6 @@ entities: - uid: 9579 components: - type: Transform - rot: 3.141592653589793 rad pos: -141.5,-49.5 parent: 2 - uid: 9580 @@ -78821,19 +78494,16 @@ entities: - uid: 10089 components: - type: Transform - rot: 1.5707963267948966 rad pos: -99.5,-36.5 parent: 2 - uid: 10796 components: - type: Transform - rot: 1.5707963267948966 rad pos: -101.5,-45.5 parent: 2 - uid: 11070 components: - type: Transform - rot: 1.5707963267948966 rad pos: -39.5,-34.5 parent: 2 - type: DeviceNetwork @@ -78844,7 +78514,6 @@ entities: - uid: 11072 components: - type: Transform - rot: 1.5707963267948966 rad pos: -45.5,-33.5 parent: 2 - type: DeviceNetwork @@ -78861,7 +78530,6 @@ entities: - uid: 11105 components: - type: Transform - rot: 1.5707963267948966 rad pos: -18.5,-33.5 parent: 2 - type: DeviceNetwork @@ -78873,7 +78541,6 @@ entities: - uid: 11108 components: - type: Transform - rot: 1.5707963267948966 rad pos: -16.5,-30.5 parent: 2 - type: DeviceNetwork @@ -78893,7 +78560,6 @@ entities: - uid: 11249 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,-7.5 parent: 2 - type: DeviceNetwork @@ -78935,7 +78601,6 @@ entities: - uid: 11265 components: - type: Transform - rot: 1.5707963267948966 rad pos: -38.5,-5.5 parent: 2 - type: DeviceNetwork @@ -78950,7 +78615,6 @@ entities: - uid: 11727 components: - type: Transform - rot: 3.141592653589793 rad pos: -33.5,9.5 parent: 2 - type: DeviceNetwork @@ -78959,7 +78623,6 @@ entities: - uid: 11728 components: - type: Transform - rot: 3.141592653589793 rad pos: -18.5,9.5 parent: 2 - type: DeviceNetwork @@ -78968,7 +78631,6 @@ entities: - uid: 11767 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,3.5 parent: 2 - type: DeviceNetwork @@ -78977,7 +78639,6 @@ entities: - uid: 12894 components: - type: Transform - rot: 1.5707963267948966 rad pos: -73.5,-19.5 parent: 2 - uid: 13465 @@ -78988,19 +78649,16 @@ entities: - uid: 13466 components: - type: Transform - rot: 3.141592653589793 rad pos: -133.5,-13.5 parent: 2 - uid: 13468 components: - type: Transform - rot: 3.141592653589793 rad pos: -133.5,-7.5 parent: 2 - uid: 13484 components: - type: Transform - rot: 3.141592653589793 rad pos: -132.5,-10.5 parent: 2 - type: DeviceNetwork @@ -79009,7 +78667,6 @@ entities: - uid: 13485 components: - type: Transform - rot: 3.141592653589793 rad pos: -135.5,-10.5 parent: 2 - type: DeviceNetwork @@ -79018,55 +78675,46 @@ entities: - uid: 13629 components: - type: Transform - rot: 1.5707963267948966 rad pos: -79.5,-26.5 parent: 2 - uid: 13634 components: - type: Transform - rot: 1.5707963267948966 rad pos: -74.5,-10.5 parent: 2 - uid: 13635 components: - type: Transform - rot: 1.5707963267948966 rad pos: -74.5,-16.5 parent: 2 - uid: 13642 components: - type: Transform - rot: 1.5707963267948966 rad pos: -76.5,-26.5 parent: 2 - uid: 13659 components: - type: Transform - rot: 1.5707963267948966 rad pos: -75.5,-23.5 parent: 2 - uid: 13757 components: - type: Transform - rot: 3.141592653589793 rad pos: -66.5,-65.5 parent: 2 - uid: 13856 components: - type: Transform - rot: 1.5707963267948966 rad pos: -101.5,-40.5 parent: 2 - uid: 14084 components: - type: Transform - rot: -1.5707963267948966 rad pos: -16.5,-65.5 parent: 2 - uid: 14093 components: - type: Transform - rot: -1.5707963267948966 rad pos: -15.5,-63.5 parent: 2 - uid: 14161 @@ -79085,7 +78733,6 @@ entities: - uid: 14354 components: - type: Transform - rot: 1.5707963267948966 rad pos: -44.5,-22.5 parent: 2 - type: DeviceNetwork @@ -79100,7 +78747,6 @@ entities: - uid: 14946 components: - type: Transform - rot: 1.5707963267948966 rad pos: -56.5,-27.5 parent: 2 - type: DeviceNetwork @@ -79111,7 +78757,6 @@ entities: - uid: 14947 components: - type: Transform - rot: 1.5707963267948966 rad pos: -51.5,-27.5 parent: 2 - type: DeviceNetwork @@ -79120,7 +78765,6 @@ entities: - uid: 14948 components: - type: Transform - rot: 1.5707963267948966 rad pos: -49.5,-25.5 parent: 2 - type: DeviceNetwork @@ -79132,37 +78776,31 @@ entities: - uid: 14949 components: - type: Transform - rot: 1.5707963267948966 rad pos: -44.5,-27.5 parent: 2 - uid: 15885 components: - type: Transform - rot: 1.5707963267948966 rad pos: -104.5,-36.5 parent: 2 - uid: 15886 components: - type: Transform - rot: 1.5707963267948966 rad pos: -103.5,-36.5 parent: 2 - uid: 16009 components: - type: Transform - rot: 1.5707963267948966 rad pos: -96.5,-21.5 parent: 2 - uid: 16010 components: - type: Transform - rot: 1.5707963267948966 rad pos: -94.5,-21.5 parent: 2 - uid: 16792 components: - type: Transform - rot: 3.141592653589793 rad pos: -66.5,-66.5 parent: 2 - uid: 16866 @@ -79173,7 +78811,6 @@ entities: - uid: 16948 components: - type: Transform - rot: 1.5707963267948966 rad pos: -95.5,-21.5 parent: 2 - uid: 17427 @@ -79195,7 +78832,6 @@ entities: - uid: 17436 components: - type: Transform - rot: -1.5707963267948966 rad pos: -125.5,-34.5 parent: 2 - type: DeviceNetwork @@ -79204,7 +78840,6 @@ entities: - uid: 18609 components: - type: Transform - rot: -1.5707963267948966 rad pos: -90.5,-36.5 parent: 2 - uid: 19517 @@ -79227,61 +78862,41 @@ entities: - uid: 19761 components: - type: Transform - rot: 1.5707963267948966 rad pos: -41.5,-55.5 parent: 2 - uid: 19781 components: - type: Transform - rot: 3.141592653589793 rad pos: -89.5,13.5 parent: 2 - uid: 19782 components: - type: Transform - rot: 3.141592653589793 rad pos: -88.5,13.5 parent: 2 - uid: 19783 components: - type: Transform - rot: 3.141592653589793 rad pos: -85.5,13.5 parent: 2 - uid: 19784 components: - type: Transform - rot: 3.141592653589793 rad pos: -86.5,10.5 parent: 2 - - uid: 19785 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,20.5 - parent: 2 - - uid: 19786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,18.5 - parent: 2 - uid: 19787 components: - type: Transform - rot: 3.141592653589793 rad pos: -86.5,26.5 parent: 2 - uid: 19788 components: - type: Transform - rot: 3.141592653589793 rad pos: -87.5,32.5 parent: 2 - uid: 20498 components: - type: Transform - rot: -1.5707963267948966 rad pos: -92.5,-36.5 parent: 2 - uid: 20829 @@ -79297,13 +78912,11 @@ entities: - uid: 21464 components: - type: Transform - rot: 3.141592653589793 rad pos: -119.5,-36.5 parent: 2 - uid: 21466 components: - type: Transform - rot: 3.141592653589793 rad pos: -115.5,-42.5 parent: 2 - type: DeviceNetwork @@ -79313,7 +78926,6 @@ entities: - uid: 21467 components: - type: Transform - rot: 3.141592653589793 rad pos: -113.5,-42.5 parent: 2 - type: DeviceNetwork @@ -79323,7 +78935,6 @@ entities: - uid: 21468 components: - type: Transform - rot: 3.141592653589793 rad pos: -114.5,-42.5 parent: 2 - type: DeviceNetwork @@ -79333,7 +78944,6 @@ entities: - uid: 21469 components: - type: Transform - rot: 3.141592653589793 rad pos: -113.5,-48.5 parent: 2 - type: DeviceNetwork @@ -79343,7 +78953,6 @@ entities: - uid: 21470 components: - type: Transform - rot: 3.141592653589793 rad pos: -114.5,-48.5 parent: 2 - type: DeviceNetwork @@ -79353,7 +78962,6 @@ entities: - uid: 21471 components: - type: Transform - rot: 3.141592653589793 rad pos: -115.5,-48.5 parent: 2 - type: DeviceNetwork @@ -79363,7 +78971,6 @@ entities: - uid: 21866 components: - type: Transform - rot: 1.5707963267948966 rad pos: -32.5,2.5 parent: 2 - uid: 22365 @@ -79379,13 +78986,11 @@ entities: - uid: 22573 components: - type: Transform - rot: 1.5707963267948966 rad pos: -81.5,-8.5 parent: 2 - uid: 22574 components: - type: Transform - rot: 1.5707963267948966 rad pos: -85.5,-10.5 parent: 2 - uid: 22768 @@ -79396,7 +79001,6 @@ entities: - uid: 22877 components: - type: Transform - rot: -1.5707963267948966 rad pos: -65.5,-2.5 parent: 2 - type: DeviceNetwork @@ -79406,13 +79010,11 @@ entities: - uid: 23411 components: - type: Transform - rot: 1.5707963267948966 rad pos: -89.5,-33.5 parent: 2 - uid: 23425 components: - type: Transform - rot: 1.5707963267948966 rad pos: -95.5,-36.5 parent: 2 - uid: 23444 @@ -79432,7 +79034,6 @@ entities: - uid: 24039 components: - type: Transform - rot: 1.5707963267948966 rad pos: -22.5,-19.5 parent: 2 - type: DeviceNetwork @@ -79441,7 +79042,6 @@ entities: - uid: 24045 components: - type: Transform - rot: -1.5707963267948966 rad pos: -33.5,-34.5 parent: 2 - type: DeviceNetwork @@ -79451,7 +79051,6 @@ entities: - uid: 24048 components: - type: Transform - rot: 1.5707963267948966 rad pos: -33.5,-38.5 parent: 2 - type: DeviceNetwork @@ -79461,7 +79060,6 @@ entities: - uid: 24049 components: - type: Transform - rot: 1.5707963267948966 rad pos: -31.5,-41.5 parent: 2 - type: DeviceNetwork @@ -79471,7 +79069,6 @@ entities: - uid: 24050 components: - type: Transform - rot: 1.5707963267948966 rad pos: -36.5,-38.5 parent: 2 - type: DeviceNetwork @@ -79480,7 +79077,6 @@ entities: - uid: 24123 components: - type: Transform - rot: -1.5707963267948966 rad pos: -56.5,-35.5 parent: 2 - type: DeviceNetwork @@ -79491,7 +79087,6 @@ entities: - uid: 24124 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,-49.5 parent: 2 - type: DeviceNetwork @@ -79501,7 +79096,6 @@ entities: - uid: 24125 components: - type: Transform - rot: -1.5707963267948966 rad pos: -45.5,-42.5 parent: 2 - type: DeviceNetwork @@ -79510,7 +79104,6 @@ entities: - uid: 24126 components: - type: Transform - rot: -1.5707963267948966 rad pos: -45.5,-48.5 parent: 2 - type: DeviceNetwork @@ -79520,7 +79113,6 @@ entities: - uid: 24127 components: - type: Transform - rot: -1.5707963267948966 rad pos: -54.5,-55.5 parent: 2 - type: DeviceNetwork @@ -79529,7 +79121,6 @@ entities: - uid: 24128 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,-55.5 parent: 2 - type: DeviceNetwork @@ -79539,7 +79130,6 @@ entities: - uid: 24130 components: - type: Transform - rot: -1.5707963267948966 rad pos: -56.5,-41.5 parent: 2 - type: DeviceNetwork @@ -79549,19 +79139,16 @@ entities: - uid: 24131 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,-40.5 parent: 2 - uid: 24148 components: - type: Transform - rot: -1.5707963267948966 rad pos: -42.5,-55.5 parent: 2 - uid: 24149 components: - type: Transform - rot: -1.5707963267948966 rad pos: -56.5,-56.5 parent: 2 - type: DeviceNetwork @@ -79570,7 +79157,6 @@ entities: - uid: 24150 components: - type: Transform - rot: -1.5707963267948966 rad pos: -64.5,-58.5 parent: 2 - type: DeviceNetwork @@ -79579,7 +79165,6 @@ entities: - uid: 24167 components: - type: Transform - rot: 1.5707963267948966 rad pos: -72.5,-38.5 parent: 2 - type: DeviceNetwork @@ -79588,61 +79173,51 @@ entities: - uid: 24444 components: - type: Transform - rot: 1.5707963267948966 rad pos: -79.5,-32.5 parent: 2 - uid: 24698 components: - type: Transform - rot: -1.5707963267948966 rad pos: -108.5,-27.5 parent: 2 - uid: 25511 components: - type: Transform - rot: 1.5707963267948966 rad pos: -123.5,-57.5 parent: 2 - uid: 25528 components: - type: Transform - rot: 1.5707963267948966 rad pos: -132.5,-55.5 parent: 2 - uid: 25529 components: - type: Transform - rot: 1.5707963267948966 rad pos: -138.5,-53.5 parent: 2 - uid: 25530 components: - type: Transform - rot: 1.5707963267948966 rad pos: -138.5,-41.5 parent: 2 - uid: 25531 components: - type: Transform - rot: 1.5707963267948966 rad pos: -138.5,-37.5 parent: 2 - uid: 25532 components: - type: Transform - rot: 1.5707963267948966 rad pos: -134.5,-34.5 parent: 2 - uid: 25533 components: - type: Transform - rot: 1.5707963267948966 rad pos: -123.5,-32.5 parent: 2 - uid: 25556 components: - type: Transform - rot: -1.5707963267948966 rad pos: -104.5,15.5 parent: 2 - uid: 25563 @@ -79656,7 +79231,6 @@ entities: - uid: 25584 components: - type: Transform - rot: 3.141592653589793 rad pos: -131.5,-45.5 parent: 2 - type: DeviceNetwork @@ -79665,31 +79239,26 @@ entities: - uid: 25586 components: - type: Transform - rot: 3.141592653589793 rad pos: -120.5,-64.5 parent: 2 - uid: 25587 components: - type: Transform - rot: 3.141592653589793 rad pos: -120.5,-69.5 parent: 2 - uid: 25590 components: - type: Transform - rot: 3.141592653589793 rad pos: -104.5,-60.5 parent: 2 - uid: 25592 components: - type: Transform - rot: 3.141592653589793 rad pos: -104.5,-64.5 parent: 2 - uid: 25593 components: - type: Transform - rot: 3.141592653589793 rad pos: -109.5,-47.5 parent: 2 - type: DeviceNetwork @@ -79698,7 +79267,6 @@ entities: - uid: 25594 components: - type: Transform - rot: 3.141592653589793 rad pos: -109.5,-43.5 parent: 2 - type: DeviceNetwork @@ -79707,19 +79275,16 @@ entities: - uid: 25595 components: - type: Transform - rot: 3.141592653589793 rad pos: -135.5,0.5 parent: 2 - uid: 25596 components: - type: Transform - rot: 3.141592653589793 rad pos: -133.5,2.5 parent: 2 - uid: 25650 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,-32.5 parent: 2 - type: DeviceNetwork @@ -79738,181 +79303,151 @@ entities: - uid: 25874 components: - type: Transform - rot: -1.5707963267948966 rad pos: -38.5,-61.5 parent: 2 - uid: 25875 components: - type: Transform - rot: -1.5707963267948966 rad pos: -35.5,-61.5 parent: 2 - uid: 25876 components: - type: Transform - rot: -1.5707963267948966 rad pos: -34.5,-61.5 parent: 2 - uid: 25877 components: - type: Transform - rot: -1.5707963267948966 rad pos: -33.5,-61.5 parent: 2 - uid: 25878 components: - type: Transform - rot: -1.5707963267948966 rad pos: -33.5,-68.5 parent: 2 - uid: 25879 components: - type: Transform - rot: -1.5707963267948966 rad pos: -34.5,-68.5 parent: 2 - uid: 25927 components: - type: Transform - rot: -1.5707963267948966 rad pos: -35.5,-68.5 parent: 2 - uid: 25928 components: - type: Transform - rot: -1.5707963267948966 rad pos: -40.5,-63.5 parent: 2 - uid: 25929 components: - type: Transform - rot: -1.5707963267948966 rad pos: -40.5,-67.5 parent: 2 - uid: 25930 components: - type: Transform - rot: -1.5707963267948966 rad pos: -38.5,-68.5 parent: 2 - uid: 25931 components: - type: Transform - rot: -1.5707963267948966 rad pos: -23.5,-59.5 parent: 2 - uid: 25932 components: - type: Transform - rot: -1.5707963267948966 rad pos: -23.5,-60.5 parent: 2 - uid: 25934 components: - type: Transform - rot: -1.5707963267948966 rad pos: -15.5,-67.5 parent: 2 - uid: 25935 components: - type: Transform - rot: -1.5707963267948966 rad pos: -15.5,-44.5 parent: 2 - uid: 25936 components: - type: Transform - rot: -1.5707963267948966 rad pos: -14.5,-44.5 parent: 2 - uid: 25937 components: - type: Transform - rot: -1.5707963267948966 rad pos: -12.5,-36.5 parent: 2 - uid: 25939 components: - type: Transform - rot: -1.5707963267948966 rad pos: -13.5,-30.5 parent: 2 - uid: 25940 components: - type: Transform - rot: -1.5707963267948966 rad pos: -15.5,-16.5 parent: 2 - uid: 25941 components: - type: Transform - rot: -1.5707963267948966 rad pos: -14.5,-16.5 parent: 2 - uid: 25942 components: - type: Transform - rot: -1.5707963267948966 rad pos: -16.5,-20.5 parent: 2 - uid: 25943 components: - type: Transform - rot: -1.5707963267948966 rad pos: -15.5,-10.5 parent: 2 - uid: 25944 components: - type: Transform - rot: -1.5707963267948966 rad pos: -14.5,-10.5 parent: 2 - uid: 25945 components: - type: Transform - rot: -1.5707963267948966 rad pos: -16.5,-8.5 parent: 2 - uid: 25946 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,1.5 parent: 2 - uid: 25947 components: - type: Transform - rot: -1.5707963267948966 rad pos: -32.5,1.5 parent: 2 - uid: 26027 components: - type: Transform - rot: 3.141592653589793 rad pos: -42.5,-16.5 parent: 2 - uid: 26028 components: - type: Transform - rot: 3.141592653589793 rad pos: -42.5,-10.5 parent: 2 - uid: 26163 components: - type: Transform - rot: -1.5707963267948966 rad pos: -81.5,5.5 parent: 2 - uid: 26164 components: - type: Transform - rot: -1.5707963267948966 rad pos: -81.5,4.5 parent: 2 - uid: 26165 components: - type: Transform - rot: -1.5707963267948966 rad pos: -73.5,-9.5 parent: 2 - proto: FirelockEdge @@ -80438,7 +79973,6 @@ entities: - uid: 431 components: - type: Transform - rot: 1.5707963267948966 rad pos: -110.5,-46.5 parent: 2 - type: DeviceNetwork @@ -80448,7 +79982,6 @@ entities: - uid: 442 components: - type: Transform - rot: 1.5707963267948966 rad pos: -68.5,-17.5 parent: 2 - type: DeviceNetwork @@ -80458,7 +79991,6 @@ entities: - uid: 507 components: - type: Transform - rot: 1.5707963267948966 rad pos: -110.5,-44.5 parent: 2 - type: DeviceNetwork @@ -80478,7 +80010,6 @@ entities: - uid: 1658 components: - type: Transform - rot: 1.5707963267948966 rad pos: -66.5,-19.5 parent: 2 - type: DeviceNetwork @@ -80488,7 +80019,6 @@ entities: - uid: 1667 components: - type: Transform - rot: 1.5707963267948966 rad pos: -62.5,-17.5 parent: 2 - type: DeviceNetwork @@ -80500,7 +80030,6 @@ entities: - uid: 3308 components: - type: Transform - rot: 3.141592653589793 rad pos: -68.5,-34.5 parent: 2 - type: DeviceNetwork @@ -80514,7 +80043,6 @@ entities: - uid: 7804 components: - type: Transform - rot: 1.5707963267948966 rad pos: -20.5,-35.5 parent: 2 - type: DeviceNetwork @@ -80523,7 +80051,6 @@ entities: - uid: 7805 components: - type: Transform - rot: -1.5707963267948966 rad pos: -28.5,0.5 parent: 2 - type: DeviceNetwork @@ -80542,7 +80069,6 @@ entities: - uid: 7864 components: - type: Transform - rot: -1.5707963267948966 rad pos: -29.5,0.5 parent: 2 - type: DeviceNetwork @@ -80552,7 +80078,6 @@ entities: - uid: 7894 components: - type: Transform - rot: -1.5707963267948966 rad pos: -30.5,0.5 parent: 2 - type: DeviceNetwork @@ -80654,7 +80179,6 @@ entities: - uid: 8346 components: - type: Transform - rot: 1.5707963267948966 rad pos: -20.5,-39.5 parent: 2 - type: DeviceNetwork @@ -80688,7 +80212,6 @@ entities: - uid: 8608 components: - type: Transform - rot: -1.5707963267948966 rad pos: -30.5,8.5 parent: 2 - type: DeviceNetwork @@ -80697,7 +80220,6 @@ entities: - uid: 8651 components: - type: Transform - rot: -1.5707963267948966 rad pos: -29.5,8.5 parent: 2 - type: DeviceNetwork @@ -80706,7 +80228,6 @@ entities: - uid: 8687 components: - type: Transform - rot: -1.5707963267948966 rad pos: -28.5,8.5 parent: 2 - type: DeviceNetwork @@ -80715,19 +80236,16 @@ entities: - uid: 8689 components: - type: Transform - rot: -1.5707963267948966 rad pos: -28.5,4.5 parent: 2 - uid: 8690 components: - type: Transform - rot: -1.5707963267948966 rad pos: -29.5,4.5 parent: 2 - uid: 8727 components: - type: Transform - rot: -1.5707963267948966 rad pos: -30.5,4.5 parent: 2 - uid: 8777 @@ -80784,7 +80302,6 @@ entities: - uid: 8935 components: - type: Transform - rot: 3.141592653589793 rad pos: -123.5,-7.5 parent: 2 - type: DeviceNetwork @@ -80794,7 +80311,6 @@ entities: - uid: 8955 components: - type: Transform - rot: 1.5707963267948966 rad pos: -137.5,-12.5 parent: 2 - type: DeviceNetwork @@ -80839,7 +80355,6 @@ entities: - uid: 9095 components: - type: Transform - rot: 3.141592653589793 rad pos: -106.5,-44.5 parent: 2 - type: DeviceNetwork @@ -80848,7 +80363,6 @@ entities: - uid: 9109 components: - type: Transform - rot: 3.141592653589793 rad pos: -106.5,-46.5 parent: 2 - type: DeviceNetwork @@ -80857,7 +80371,6 @@ entities: - uid: 9166 components: - type: Transform - rot: -1.5707963267948966 rad pos: -94.5,13.5 parent: 2 - uid: 9282 @@ -80873,19 +80386,16 @@ entities: - uid: 9303 components: - type: Transform - rot: -1.5707963267948966 rad pos: -97.5,7.5 parent: 2 - uid: 9419 components: - type: Transform - rot: 3.141592653589793 rad pos: -117.5,-39.5 parent: 2 - uid: 9422 components: - type: Transform - rot: 3.141592653589793 rad pos: -120.5,-54.5 parent: 2 - uid: 9497 @@ -80896,7 +80406,6 @@ entities: - uid: 9674 components: - type: Transform - rot: 1.5707963267948966 rad pos: -60.5,-17.5 parent: 2 - type: DeviceNetwork @@ -80905,38 +80414,11 @@ entities: - 23681 - 12769 - 24300 - - uid: 9723 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 1814 - uid: 10164 components: - type: Transform pos: -94.5,36.5 parent: 2 - - uid: 10263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,19.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 1814 - - uid: 11724 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 1814 - uid: 11743 components: - type: Transform @@ -80955,48 +80437,15 @@ entities: deviceLists: - 11837 - 15347 - - uid: 11804 - components: - - type: Transform - pos: -1.5,-16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11837 - - 15347 - uid: 11805 components: - type: Transform - rot: 3.141592653589793 rad pos: -25.5,9.5 parent: 2 - type: DeviceNetwork deviceLists: - 11298 - 1814 - - uid: 11809 - components: - - type: Transform - pos: -1.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11837 - - 15347 - - uid: 11810 - components: - - type: Transform - pos: -1.5,-18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11837 - - 15347 - - uid: 11814 - components: - - type: Transform - pos: -1.5,-8.5 - parent: 2 - uid: 11816 components: - type: Transform @@ -81023,7 +80472,6 @@ entities: - uid: 11936 components: - type: Transform - rot: 3.141592653589793 rad pos: -137.5,-39.5 parent: 2 - type: DeviceNetwork @@ -81041,7 +80489,6 @@ entities: - uid: 12903 components: - type: Transform - rot: 3.141592653589793 rad pos: -16.5,-14.5 parent: 2 - type: DeviceNetwork @@ -81051,7 +80498,6 @@ entities: - uid: 12928 components: - type: Transform - rot: 3.141592653589793 rad pos: -16.5,-13.5 parent: 2 - type: DeviceNetwork @@ -81061,7 +80507,6 @@ entities: - uid: 12942 components: - type: Transform - rot: 3.141592653589793 rad pos: -27.5,-2.5 parent: 2 - type: DeviceNetwork @@ -81071,25 +80516,21 @@ entities: - uid: 12943 components: - type: Transform - rot: 3.141592653589793 rad pos: -76.5,-13.5 parent: 2 - uid: 12944 components: - type: Transform - rot: 3.141592653589793 rad pos: -76.5,-14.5 parent: 2 - uid: 12947 components: - type: Transform - rot: 3.141592653589793 rad pos: -76.5,-12.5 parent: 2 - uid: 12948 components: - type: Transform - rot: 3.141592653589793 rad pos: -73.5,-12.5 parent: 2 - type: DeviceNetwork @@ -81099,7 +80540,6 @@ entities: - uid: 12949 components: - type: Transform - rot: 3.141592653589793 rad pos: -27.5,-8.5 parent: 2 - type: DeviceNetwork @@ -81109,7 +80549,6 @@ entities: - uid: 13437 components: - type: Transform - rot: 3.141592653589793 rad pos: -23.5,-11.5 parent: 2 - type: DeviceNetwork @@ -81119,7 +80558,6 @@ entities: - uid: 13438 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,-25.5 parent: 2 - type: DeviceNetwork @@ -81130,7 +80568,6 @@ entities: - uid: 13439 components: - type: Transform - rot: 3.141592653589793 rad pos: -41.5,-14.5 parent: 2 - type: DeviceNetwork @@ -81140,7 +80577,6 @@ entities: - uid: 13440 components: - type: Transform - rot: 3.141592653589793 rad pos: -29.5,-10.5 parent: 2 - type: DeviceNetwork @@ -81150,7 +80586,6 @@ entities: - uid: 13441 components: - type: Transform - rot: 3.141592653589793 rad pos: -30.5,-10.5 parent: 2 - type: DeviceNetwork @@ -81160,7 +80595,6 @@ entities: - uid: 13442 components: - type: Transform - rot: 3.141592653589793 rad pos: -41.5,-13.5 parent: 2 - type: DeviceNetwork @@ -81170,7 +80604,6 @@ entities: - uid: 13443 components: - type: Transform - rot: 3.141592653589793 rad pos: -28.5,-10.5 parent: 2 - type: DeviceNetwork @@ -81180,7 +80613,6 @@ entities: - uid: 13448 components: - type: Transform - rot: 3.141592653589793 rad pos: -41.5,-12.5 parent: 2 - type: DeviceNetwork @@ -81190,7 +80622,6 @@ entities: - uid: 13467 components: - type: Transform - rot: 3.141592653589793 rad pos: -16.5,-12.5 parent: 2 - type: DeviceNetwork @@ -81200,7 +80631,6 @@ entities: - uid: 13488 components: - type: Transform - rot: 3.141592653589793 rad pos: -73.5,-14.5 parent: 2 - type: DeviceNetwork @@ -81210,7 +80640,6 @@ entities: - uid: 13514 components: - type: Transform - rot: 3.141592653589793 rad pos: -73.5,-13.5 parent: 2 - type: DeviceNetwork @@ -81228,7 +80657,6 @@ entities: - uid: 13606 components: - type: Transform - rot: 1.5707963267948966 rad pos: -89.5,-27.5 parent: 2 - uid: 13618 @@ -81252,7 +80680,6 @@ entities: - uid: 13628 components: - type: Transform - rot: 1.5707963267948966 rad pos: -87.5,-24.5 parent: 2 - uid: 13765 @@ -81267,7 +80694,6 @@ entities: - uid: 13788 components: - type: Transform - rot: 3.141592653589793 rad pos: -141.5,-41.5 parent: 2 - type: DeviceNetwork @@ -81277,13 +80703,11 @@ entities: - uid: 13833 components: - type: Transform - rot: 1.5707963267948966 rad pos: -96.5,-16.5 parent: 2 - uid: 13847 components: - type: Transform - rot: 3.141592653589793 rad pos: -143.5,-45.5 parent: 2 - type: DeviceNetwork @@ -81292,7 +80716,6 @@ entities: - uid: 13854 components: - type: Transform - rot: 1.5707963267948966 rad pos: -94.5,-16.5 parent: 2 - uid: 13909 @@ -81306,7 +80729,6 @@ entities: - uid: 14288 components: - type: Transform - rot: 3.141592653589793 rad pos: -55.5,-10.5 parent: 2 - type: DeviceNetwork @@ -81318,7 +80740,6 @@ entities: - uid: 14360 components: - type: Transform - rot: 3.141592653589793 rad pos: -22.5,12.5 parent: 2 - type: DeviceNetwork @@ -81328,7 +80749,6 @@ entities: - uid: 14500 components: - type: Transform - rot: 3.141592653589793 rad pos: -13.5,-12.5 parent: 2 - type: DeviceNetwork @@ -81340,7 +80760,6 @@ entities: - uid: 14507 components: - type: Transform - rot: 3.141592653589793 rad pos: -13.5,-14.5 parent: 2 - type: DeviceNetwork @@ -81352,7 +80771,6 @@ entities: - uid: 14508 components: - type: Transform - rot: 3.141592653589793 rad pos: -13.5,-13.5 parent: 2 - type: DeviceNetwork @@ -81416,7 +80834,6 @@ entities: - uid: 14597 components: - type: Transform - rot: -1.5707963267948966 rad pos: -55.5,-45.5 parent: 2 - type: DeviceNetwork @@ -81425,7 +80842,6 @@ entities: - uid: 14598 components: - type: Transform - rot: -1.5707963267948966 rad pos: -55.5,-46.5 parent: 2 - type: DeviceNetwork @@ -81434,7 +80850,6 @@ entities: - uid: 14599 components: - type: Transform - rot: -1.5707963267948966 rad pos: -63.5,-50.5 parent: 2 - type: DeviceNetwork @@ -81444,7 +80859,6 @@ entities: - uid: 14606 components: - type: Transform - rot: -1.5707963267948966 rad pos: -65.5,-50.5 parent: 2 - type: DeviceNetwork @@ -81454,7 +80868,6 @@ entities: - uid: 14627 components: - type: Transform - rot: 3.141592653589793 rad pos: -44.5,-12.5 parent: 2 - type: DeviceNetwork @@ -81466,7 +80879,6 @@ entities: - uid: 14628 components: - type: Transform - rot: 3.141592653589793 rad pos: -44.5,-14.5 parent: 2 - type: DeviceNetwork @@ -81478,7 +80890,6 @@ entities: - uid: 14635 components: - type: Transform - rot: 3.141592653589793 rad pos: -44.5,-13.5 parent: 2 - type: DeviceNetwork @@ -81490,7 +80901,6 @@ entities: - uid: 14636 components: - type: Transform - rot: 1.5707963267948966 rad pos: -58.5,-20.5 parent: 2 - type: DeviceNetwork @@ -81500,7 +80910,6 @@ entities: - uid: 14637 components: - type: Transform - rot: 1.5707963267948966 rad pos: -57.5,-20.5 parent: 2 - type: DeviceNetwork @@ -81510,7 +80919,6 @@ entities: - uid: 14638 components: - type: Transform - rot: 1.5707963267948966 rad pos: -64.5,-20.5 parent: 2 - type: DeviceNetwork @@ -81520,7 +80928,6 @@ entities: - uid: 14640 components: - type: Transform - rot: 1.5707963267948966 rad pos: -65.5,-20.5 parent: 2 - type: DeviceNetwork @@ -81557,7 +80964,6 @@ entities: - uid: 14877 components: - type: Transform - rot: 3.141592653589793 rad pos: -35.5,-11.5 parent: 2 - type: DeviceNetwork @@ -81567,7 +80973,6 @@ entities: - uid: 14935 components: - type: Transform - rot: 3.141592653589793 rad pos: -31.5,-5.5 parent: 2 - type: DeviceNetwork @@ -81577,7 +80982,6 @@ entities: - uid: 14978 components: - type: Transform - rot: 3.141592653589793 rad pos: -66.5,-10.5 parent: 2 - type: DeviceNetwork @@ -81589,7 +80993,6 @@ entities: - uid: 14979 components: - type: Transform - rot: 3.141592653589793 rad pos: -67.5,-10.5 parent: 2 - type: DeviceNetwork @@ -81601,7 +81004,6 @@ entities: - uid: 14980 components: - type: Transform - rot: 3.141592653589793 rad pos: -61.5,-13.5 parent: 2 - type: DeviceNetwork @@ -81611,7 +81013,6 @@ entities: - uid: 14996 components: - type: Transform - rot: 3.141592653589793 rad pos: -56.5,-10.5 parent: 2 - type: DeviceNetwork @@ -81623,7 +81024,6 @@ entities: - uid: 15709 components: - type: Transform - rot: -1.5707963267948966 rad pos: -63.5,-36.5 parent: 2 - type: DeviceNetwork @@ -81634,7 +81034,6 @@ entities: - uid: 15855 components: - type: Transform - rot: -1.5707963267948966 rad pos: -65.5,-36.5 parent: 2 - type: DeviceNetwork @@ -81650,7 +81049,6 @@ entities: - uid: 17421 components: - type: Transform - rot: 3.141592653589793 rad pos: -147.5,-49.5 parent: 2 - type: DeviceNetwork @@ -81659,7 +81057,6 @@ entities: - uid: 17422 components: - type: Transform - rot: 3.141592653589793 rad pos: -151.5,-45.5 parent: 2 - type: DeviceNetwork @@ -81668,7 +81065,6 @@ entities: - uid: 17424 components: - type: Transform - rot: 3.141592653589793 rad pos: -147.5,-41.5 parent: 2 - type: DeviceNetwork @@ -81677,13 +81073,11 @@ entities: - uid: 18645 components: - type: Transform - rot: -1.5707963267948966 rad pos: -89.5,-37.5 parent: 2 - uid: 19471 components: - type: Transform - rot: 1.5707963267948966 rad pos: -56.5,-19.5 parent: 2 - type: DeviceNetwork @@ -81695,7 +81089,6 @@ entities: - uid: 19610 components: - type: Transform - rot: 1.5707963267948966 rad pos: -137.5,-8.5 parent: 2 - type: DeviceNetwork @@ -81705,7 +81098,6 @@ entities: - uid: 19613 components: - type: Transform - rot: 1.5707963267948966 rad pos: -53.5,-25.5 parent: 2 - type: DeviceNetwork @@ -81747,13 +81139,11 @@ entities: - uid: 23428 components: - type: Transform - rot: 1.5707963267948966 rad pos: -82.5,-30.5 parent: 2 - uid: 25557 components: - type: Transform - rot: -1.5707963267948966 rad pos: -97.5,15.5 parent: 2 - uid: 25564 @@ -81777,7 +81167,6 @@ entities: - uid: 25580 components: - type: Transform - rot: 3.141592653589793 rad pos: -123.5,-45.5 parent: 2 - type: DeviceNetwork @@ -81787,7 +81176,6 @@ entities: - uid: 25581 components: - type: Transform - rot: 3.141592653589793 rad pos: -125.5,-49.5 parent: 2 - type: DeviceNetwork @@ -81796,43 +81184,36 @@ entities: - uid: 25582 components: - type: Transform - rot: 3.141592653589793 rad pos: -123.5,-51.5 parent: 2 - uid: 25583 components: - type: Transform - rot: 3.141592653589793 rad pos: -117.5,-51.5 parent: 2 - uid: 25585 components: - type: Transform - rot: 3.141592653589793 rad pos: -120.5,-58.5 parent: 2 - uid: 25588 components: - type: Transform - rot: 3.141592653589793 rad pos: -120.5,-78.5 parent: 2 - uid: 25589 components: - type: Transform - rot: 3.141592653589793 rad pos: -116.5,-68.5 parent: 2 - uid: 25591 components: - type: Transform - rot: 3.141592653589793 rad pos: -106.5,-62.5 parent: 2 - uid: 25597 components: - type: Transform - rot: 3.141592653589793 rad pos: -130.5,-7.5 parent: 2 - type: DeviceNetwork @@ -81875,16 +81256,9 @@ entities: deviceLists: - 17850 - 25641 - - uid: 25938 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-36.5 - parent: 2 - uid: 26166 components: - type: Transform - rot: -1.5707963267948966 rad pos: -80.5,6.5 parent: 2 - proto: Fireplace @@ -82956,7 +82330,7 @@ entities: - uid: 20467 components: - type: Transform - pos: -112.51823,36.525185 + pos: -112.50674,36.53603 parent: 2 - proto: FoodCartCold entities: @@ -83105,11 +82479,6 @@ entities: parent: 2 - proto: GasCanisterBrokenBase entities: - - uid: 16887 - components: - - type: Transform - pos: -25.5,-63.5 - parent: 2 - uid: 16930 components: - type: Transform @@ -83810,14 +83179,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 5634 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 6043 components: - type: Transform @@ -83844,12 +83205,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 6075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-64.5 - parent: 2 - uid: 6132 components: - type: Transform @@ -84191,14 +83546,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-66.5 parent: 2 - - uid: 11347 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11568 components: - type: Transform @@ -84312,26 +83659,26 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12243 + - uid: 12161 components: - type: Transform - pos: -38.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-17.5 + rot: -1.5707963267948966 rad + pos: -39.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12309 + - uid: 12246 + components: + - type: Transform + pos: -38.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12250 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,-37.5 + pos: -45.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -84351,13 +83698,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12441 - components: - - type: Transform - pos: -19.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12447 components: - type: Transform @@ -84390,14 +83730,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12536 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12651 components: - type: Transform @@ -84496,6 +83828,8 @@ entities: - type: Transform pos: -102.5,10.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 13786 components: - type: Transform @@ -84560,6 +83894,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 14794 components: - type: Transform @@ -85433,6 +84775,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12512 + components: + - type: Transform + pos: -26.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12513 + components: + - type: Transform + pos: -43.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12628 components: - type: Transform @@ -88957,14 +88313,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8847 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8848 components: - type: Transform @@ -88981,14 +88329,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8900 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8905 components: - type: Transform @@ -89215,14 +88555,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 9214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9230 components: - type: Transform @@ -89238,14 +88570,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9238 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9264 components: - type: Transform @@ -92424,6 +91748,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11556 components: - type: Transform @@ -93348,6 +92680,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11819 components: - type: Transform @@ -94770,14 +94110,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12231 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12232 components: - type: Transform @@ -94814,7 +94146,7 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,-23.5 + pos: -43.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -94842,38 +94174,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12244 + - uid: 12243 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-19.5 + rot: -1.5707963267948966 rad + pos: -40.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 12245 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-18.5 + rot: 1.5707963267948966 rad + pos: -36.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12249 components: - type: Transform @@ -94890,14 +94206,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12252 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12253 components: - type: Transform @@ -94906,6 +94214,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12255 components: - type: Transform @@ -94954,14 +94270,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12263 components: - type: Transform @@ -94986,11 +94294,26 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12268 + - uid: 12267 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-19.5 + pos: -38.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12268 + components: + - type: Transform + pos: -33.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -95196,6 +94519,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12310 components: - type: Transform @@ -95639,14 +94970,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12383 components: - type: Transform @@ -95862,6 +95185,13 @@ entities: - type: Transform pos: -28.5,-59.5 parent: 2 + - uid: 12428 + components: + - type: Transform + pos: -39.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12430 components: - type: Transform @@ -95893,14 +95223,15 @@ entities: - uid: 12434 components: - type: Transform - pos: -18.5,-25.5 + pos: -33.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 12435 components: - type: Transform - pos: -18.5,-24.5 + rot: 1.5707963267948966 rad + pos: -33.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -96193,17 +95524,10 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,-31.5 + pos: -35.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 12506 - components: - - type: Transform - pos: -37.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 12508 components: - type: Transform @@ -96212,38 +95536,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12512 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12514 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12515 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12516 components: - type: Transform @@ -96252,7 +95544,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12518 + - uid: 12517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12519 components: - type: Transform rot: 1.5707963267948966 rad @@ -96260,33 +95560,24 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12519 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12521 - components: - - type: Transform - pos: -34.5,-28.5 + pos: -38.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 12523 components: - type: Transform - pos: -38.5,-28.5 + pos: -37.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12524 + components: + - type: Transform + pos: -33.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -96305,6 +95596,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 12528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12529 components: - type: Transform @@ -96328,18 +95627,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12532 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12533 components: - type: Transform - pos: -39.5,-32.5 + rot: 3.141592653589793 rad + pos: -37.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -96353,10 +95645,11 @@ entities: - uid: 12571 components: - type: Transform - pos: -21.5,-43.5 + rot: -1.5707963267948966 rad + pos: -38.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 12573 components: - type: Transform @@ -98143,11 +97436,11 @@ entities: - uid: 13091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-41.5 + rot: 3.141592653589793 rad + pos: -26.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 13092 components: - type: Transform @@ -98156,14 +97449,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13115 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 13128 components: - type: Transform @@ -98675,6 +97960,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 14583 components: - type: Transform @@ -100358,6 +99651,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 15288 + components: + - type: Transform + pos: -39.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 15303 components: - type: Transform @@ -101731,9 +101039,19 @@ entities: - uid: 17226 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-64.5 + rot: -1.5707963267948966 rad + pos: -40.5,-28.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 17232 components: - type: Transform @@ -102058,6 +101376,8 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,-32.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 17798 components: - type: Transform @@ -102118,14 +101438,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17862 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 17866 components: - type: Transform @@ -105346,14 +104658,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18927 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 18928 components: - type: Transform @@ -108461,6 +107765,8 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,-24.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 21065 components: - type: Transform @@ -110943,14 +110249,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1765 components: - type: Transform @@ -111068,14 +110366,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4837 components: - type: Transform @@ -111235,21 +110525,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8600 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8828 - components: - - type: Transform - pos: -35.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8994 components: - type: Transform @@ -111295,13 +110570,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9154 - components: - - type: Transform - pos: -41.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9193 components: - type: Transform @@ -111338,12 +110606,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-64.5 parent: 2 - - uid: 9365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-64.5 - parent: 2 - uid: 9398 components: - type: Transform @@ -111423,14 +110685,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9720 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9779 components: - type: Transform @@ -111862,6 +111116,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11576 components: - type: Transform @@ -112070,11 +111332,10 @@ entities: - uid: 12006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-25.5 + pos: -34.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 12007 components: - type: Transform @@ -112114,13 +111375,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12161 - components: - - type: Transform - pos: -33.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12166 components: - type: Transform @@ -112137,6 +111391,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12231 + components: + - type: Transform + pos: -41.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12237 components: - type: Transform @@ -112159,14 +111420,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 12262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12266 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,-25.5 + pos: -38.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' + - uid: 12269 + components: + - type: Transform + pos: -33.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12272 components: - type: Transform @@ -112268,6 +111544,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12391 components: - type: Transform @@ -112320,6 +111604,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 12429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12458 components: - type: Transform @@ -112404,7 +111696,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12509 + - uid: 12515 + components: + - type: Transform + pos: -34.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12532 components: - type: Transform rot: 3.141592653589793 rad @@ -112412,22 +111711,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12510 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12528 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12582 components: - type: Transform @@ -112912,6 +112195,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15287 + components: + - type: Transform + pos: -26.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15350 components: - type: Transform @@ -113180,6 +112470,8 @@ entities: rot: 3.141592653589793 rad pos: -59.5,-32.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 16713 components: - type: Transform @@ -113376,6 +112668,8 @@ entities: rot: 3.141592653589793 rad pos: -59.5,-24.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 17795 components: - type: Transform @@ -114018,14 +113312,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23199 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23200 components: - type: Transform @@ -114329,6 +113615,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 11724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-64.5 + parent: 2 + - uid: 12536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-62.5 + parent: 2 - uid: 13663 components: - type: Transform @@ -114352,15 +113650,11 @@ entities: - type: Transform pos: -140.5,-46.5 parent: 2 - - uid: 17227 + - uid: 16625 components: - type: Transform - pos: -24.5,-63.5 - parent: 2 - - uid: 17228 - components: - - type: Transform - pos: -25.5,-63.5 + rot: 3.141592653589793 rad + pos: -30.5,-65.5 parent: 2 - uid: 19519 components: @@ -114515,6 +113809,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 13563 components: - type: Transform @@ -114554,6 +113856,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 16886 + components: + - type: Transform + pos: -30.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 18370 components: - type: Transform @@ -115226,6 +114535,13 @@ entities: - 11298 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11814 + components: + - type: Transform + pos: -19.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11885 components: - type: Transform @@ -115338,22 +114654,11 @@ entities: - 15359 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12250 + - uid: 12244 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-25.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 9162 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-17.5 + pos: -39.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: @@ -115403,45 +114708,37 @@ entities: - 11837 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12428 + - uid: 12441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12513 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-30.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 4214 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12517 - components: - - type: Transform - pos: -34.5,-27.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 4214 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12570 - components: - - type: Transform - pos: -21.5,-42.5 + pos: -21.5,-43.5 parent: 2 - type: DeviceNetwork deviceLists: - 9146 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12511 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4214 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4214 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12616 components: - type: Transform @@ -115509,6 +114806,17 @@ entities: - 11837 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20948 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 13223 components: - type: Transform @@ -115835,17 +115143,6 @@ entities: - 20503 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16901 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-42.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 20948 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 17091 components: - type: Transform @@ -116991,17 +116288,6 @@ entities: - 20503 - type: AtmosPipeColor color: '#990000FF' - - uid: 8885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-38.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8934 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8943 components: - type: Transform @@ -117065,6 +116351,8 @@ entities: - type: DeviceNetwork deviceLists: - 19805 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10209 components: - type: Transform @@ -117248,6 +116536,17 @@ entities: - 26179 - type: AtmosPipeColor color: '#990000FF' + - uid: 11810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8934 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11829 components: - type: Transform @@ -117288,22 +116587,10 @@ entities: - 11837 - type: AtmosPipeColor color: '#990000FF' - - uid: 12267 + - uid: 12247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-25.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 9162 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-17.5 + pos: -37.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: @@ -117365,13 +116652,6 @@ entities: - 15359 - type: AtmosPipeColor color: '#990000FF' - - uid: 12429 - components: - - type: Transform - pos: -18.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12481 components: - type: Transform @@ -117383,26 +116663,46 @@ entities: - 8941 - type: AtmosPipeColor color: '#990000FF' - - uid: 12524 + - uid: 12506 components: - type: Transform - pos: -34.5,-30.5 + rot: 1.5707963267948966 rad + pos: -38.5,-28.5 parent: 2 - type: DeviceNetwork deviceLists: - 4214 - type: AtmosPipeColor color: '#990000FF' - - uid: 12569 + - uid: 12510 components: - type: Transform - pos: -26.5,-42.5 + rot: 3.141592653589793 rad + pos: -34.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4214 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-45.5 parent: 2 - type: DeviceNetwork deviceLists: - 9146 - type: AtmosPipeColor color: '#990000FF' + - uid: 12570 + components: + - type: Transform + pos: -18.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12639 components: - type: Transform @@ -117804,6 +117104,8 @@ entities: - type: DeviceNetwork deviceLists: - 20316 + - type: AtmosPipeColor + color: '#990000FF' - uid: 17791 components: - type: Transform @@ -117812,6 +117114,8 @@ entities: - type: DeviceNetwork deviceLists: - 12151 + - type: AtmosPipeColor + color: '#990000FF' - uid: 17856 components: - type: Transform @@ -118033,6 +117337,8 @@ entities: - type: DeviceNetwork deviceLists: - 12151 + - type: AtmosPipeColor + color: '#990000FF' - uid: 18223 components: - type: Transform @@ -118442,17 +117748,6 @@ entities: - 9167 - type: AtmosPipeColor color: '#990000FF' - - uid: 24047 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-33.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 4214 - - type: AtmosPipeColor - color: '#990000FF' - uid: 24250 components: - type: Transform @@ -118965,7 +118260,6 @@ entities: - uid: 388 components: - type: Transform - rot: 1.5707963267948966 rad pos: -139.5,-9.5 parent: 2 - uid: 443 @@ -119011,13 +118305,11 @@ entities: - uid: 778 components: - type: Transform - rot: -1.5707963267948966 rad pos: -77.5,-52.5 parent: 2 - uid: 783 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,-46.5 parent: 2 - uid: 813 @@ -119033,13 +118325,11 @@ entities: - uid: 884 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,-45.5 parent: 2 - uid: 912 components: - type: Transform - rot: -1.5707963267948966 rad pos: -79.5,-52.5 parent: 2 - uid: 922 @@ -119055,7 +118345,6 @@ entities: - uid: 1073 components: - type: Transform - rot: -1.5707963267948966 rad pos: -122.5,37.5 parent: 2 - uid: 1186 @@ -119066,7 +118355,6 @@ entities: - uid: 1187 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,-6.5 parent: 2 - uid: 1197 @@ -119087,7 +118375,6 @@ entities: - uid: 1333 components: - type: Transform - rot: -1.5707963267948966 rad pos: -122.5,36.5 parent: 2 - uid: 1405 @@ -119123,7 +118410,6 @@ entities: - uid: 1596 components: - type: Transform - rot: 1.5707963267948966 rad pos: -57.5,-81.5 parent: 2 - uid: 1700 @@ -119144,31 +118430,26 @@ entities: - uid: 1711 components: - type: Transform - rot: -1.5707963267948966 rad pos: -155.5,-45.5 parent: 2 - uid: 1800 components: - type: Transform - rot: 3.141592653589793 rad pos: -101.5,-11.5 parent: 2 - uid: 1813 components: - type: Transform - rot: 3.141592653589793 rad pos: -157.5,-31.5 parent: 2 - uid: 1829 components: - type: Transform - rot: 1.5707963267948966 rad pos: -58.5,-81.5 parent: 2 - uid: 1836 components: - type: Transform - rot: 1.5707963267948966 rad pos: -56.5,-81.5 parent: 2 - uid: 1861 @@ -119179,13 +118460,11 @@ entities: - uid: 1882 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,-81.5 parent: 2 - uid: 1904 components: - type: Transform - rot: 1.5707963267948966 rad pos: -55.5,-81.5 parent: 2 - uid: 1906 @@ -119366,7 +118645,6 @@ entities: - uid: 2456 components: - type: Transform - rot: -1.5707963267948966 rad pos: -155.5,-46.5 parent: 2 - uid: 2571 @@ -119692,13 +118970,11 @@ entities: - uid: 3748 components: - type: Transform - rot: -1.5707963267948966 rad pos: -69.5,-70.5 parent: 2 - uid: 3756 components: - type: Transform - rot: -1.5707963267948966 rad pos: -68.5,-71.5 parent: 2 - uid: 3824 @@ -119774,7 +119050,6 @@ entities: - uid: 3951 components: - type: Transform - rot: -1.5707963267948966 rad pos: -72.5,-63.5 parent: 2 - uid: 3955 @@ -119865,7 +119140,6 @@ entities: - uid: 4089 components: - type: Transform - rot: -1.5707963267948966 rad pos: -67.5,-70.5 parent: 2 - uid: 4099 @@ -119936,13 +119210,11 @@ entities: - uid: 4281 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,-51.5 parent: 2 - uid: 4317 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,-37.5 parent: 2 - uid: 4342 @@ -119998,13 +119270,11 @@ entities: - uid: 4416 components: - type: Transform - rot: 3.141592653589793 rad pos: -42.5,-73.5 parent: 2 - uid: 4424 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,-38.5 parent: 2 - uid: 4428 @@ -120045,13 +119315,11 @@ entities: - uid: 4498 components: - type: Transform - rot: -1.5707963267948966 rad pos: -77.5,-36.5 parent: 2 - uid: 4533 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,-41.5 parent: 2 - uid: 4542 @@ -120142,7 +119410,6 @@ entities: - uid: 4877 components: - type: Transform - rot: 3.141592653589793 rad pos: -152.5,3.5 parent: 2 - uid: 4921 @@ -120153,13 +119420,11 @@ entities: - uid: 4974 components: - type: Transform - rot: 3.141592653589793 rad pos: -152.5,4.5 parent: 2 - uid: 5037 components: - type: Transform - rot: 3.141592653589793 rad pos: -150.5,4.5 parent: 2 - uid: 5045 @@ -120540,13 +119805,11 @@ entities: - uid: 5965 components: - type: Transform - rot: 3.141592653589793 rad pos: -151.5,4.5 parent: 2 - uid: 5986 components: - type: Transform - rot: 3.141592653589793 rad pos: -143.5,-35.5 parent: 2 - uid: 6028 @@ -120627,7 +119890,6 @@ entities: - uid: 6495 components: - type: Transform - rot: -1.5707963267948966 rad pos: -90.5,-35.5 parent: 2 - uid: 6510 @@ -120668,13 +119930,11 @@ entities: - uid: 6694 components: - type: Transform - rot: -1.5707963267948966 rad pos: -153.5,-42.5 parent: 2 - uid: 6702 components: - type: Transform - rot: -1.5707963267948966 rad pos: -155.5,-44.5 parent: 2 - uid: 6744 @@ -120730,13 +119990,11 @@ entities: - uid: 6882 components: - type: Transform - rot: 3.141592653589793 rad pos: -141.5,14.5 parent: 2 - uid: 6884 components: - type: Transform - rot: 3.141592653589793 rad pos: -140.5,12.5 parent: 2 - uid: 6885 @@ -120752,7 +120010,6 @@ entities: - uid: 6948 components: - type: Transform - rot: 3.141592653589793 rad pos: -141.5,12.5 parent: 2 - uid: 6953 @@ -120768,7 +120025,6 @@ entities: - uid: 6976 components: - type: Transform - rot: 3.141592653589793 rad pos: -140.5,14.5 parent: 2 - uid: 6983 @@ -120904,7 +120160,6 @@ entities: - uid: 7221 components: - type: Transform - rot: -1.5707963267948966 rad pos: -99.5,33.5 parent: 2 - uid: 7237 @@ -120945,7 +120200,6 @@ entities: - uid: 7364 components: - type: Transform - rot: -1.5707963267948966 rad pos: -130.5,-59.5 parent: 2 - uid: 7380 @@ -120971,7 +120225,6 @@ entities: - uid: 7395 components: - type: Transform - rot: -1.5707963267948966 rad pos: -153.5,-48.5 parent: 2 - uid: 7462 @@ -120982,7 +120235,6 @@ entities: - uid: 7525 components: - type: Transform - rot: 1.5707963267948966 rad pos: -127.5,-33.5 parent: 2 - uid: 7567 @@ -121018,31 +120270,26 @@ entities: - uid: 7911 components: - type: Transform - rot: -1.5707963267948966 rad pos: -151.5,-47.5 parent: 2 - uid: 7914 components: - type: Transform - rot: -1.5707963267948966 rad pos: -148.5,-41.5 parent: 2 - uid: 7916 components: - type: Transform - rot: -1.5707963267948966 rad pos: -143.5,-43.5 parent: 2 - uid: 7917 components: - type: Transform - rot: -1.5707963267948966 rad pos: -143.5,-47.5 parent: 2 - uid: 7931 components: - type: Transform - rot: 3.141592653589793 rad pos: -157.5,-19.5 parent: 2 - uid: 7944 @@ -121098,25 +120345,21 @@ entities: - uid: 8054 components: - type: Transform - rot: -1.5707963267948966 rad pos: -131.5,-59.5 parent: 2 - uid: 8057 components: - type: Transform - rot: -1.5707963267948966 rad pos: -151.5,-46.5 parent: 2 - uid: 8069 components: - type: Transform - rot: -1.5707963267948966 rad pos: -127.5,-59.5 parent: 2 - uid: 8079 components: - type: Transform - rot: -1.5707963267948966 rad pos: -151.5,-43.5 parent: 2 - uid: 8088 @@ -121342,13 +120585,11 @@ entities: - uid: 8614 components: - type: Transform - rot: 3.141592653589793 rad pos: -23.5,-27.5 parent: 2 - uid: 8622 components: - type: Transform - rot: 3.141592653589793 rad pos: -25.5,-27.5 parent: 2 - uid: 8662 @@ -121589,7 +120830,6 @@ entities: - uid: 9400 components: - type: Transform - rot: -1.5707963267948966 rad pos: -77.5,-37.5 parent: 2 - uid: 9545 @@ -121640,7 +120880,6 @@ entities: - uid: 10204 components: - type: Transform - rot: -1.5707963267948966 rad pos: -78.5,-35.5 parent: 2 - uid: 10376 @@ -121651,7 +120890,6 @@ entities: - uid: 10489 components: - type: Transform - rot: 3.141592653589793 rad pos: -41.5,-42.5 parent: 2 - uid: 10490 @@ -121887,19 +121125,16 @@ entities: - uid: 11096 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-68.5 parent: 2 - uid: 11273 components: - type: Transform - rot: -1.5707963267948966 rad pos: -99.5,34.5 parent: 2 - uid: 11314 components: - type: Transform - rot: 3.141592653589793 rad pos: -143.5,4.5 parent: 2 - uid: 11355 @@ -121945,7 +121180,6 @@ entities: - uid: 12381 components: - type: Transform - rot: 1.5707963267948966 rad pos: -104.5,28.5 parent: 2 - uid: 12424 @@ -121961,7 +121195,6 @@ entities: - uid: 12522 components: - type: Transform - rot: 3.141592653589793 rad pos: -66.5,-18.5 parent: 2 - uid: 12847 @@ -121997,7 +121230,6 @@ entities: - uid: 13522 components: - type: Transform - rot: 3.141592653589793 rad pos: -138.5,12.5 parent: 2 - uid: 13561 @@ -122033,55 +121265,46 @@ entities: - uid: 13729 components: - type: Transform - rot: -1.5707963267948966 rad pos: -104.5,-21.5 parent: 2 - uid: 13787 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,0.5 parent: 2 - uid: 13811 components: - type: Transform - rot: 3.141592653589793 rad pos: -157.5,-30.5 parent: 2 - uid: 13812 components: - type: Transform - rot: 3.141592653589793 rad pos: -157.5,-25.5 parent: 2 - uid: 13814 components: - type: Transform - rot: 3.141592653589793 rad pos: -157.5,-28.5 parent: 2 - uid: 13815 components: - type: Transform - rot: 3.141592653589793 rad pos: -157.5,-29.5 parent: 2 - uid: 13822 components: - type: Transform - rot: 3.141592653589793 rad pos: -123.5,-50.5 parent: 2 - uid: 13832 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,-2.5 parent: 2 - uid: 13867 components: - type: Transform - rot: 3.141592653589793 rad pos: -144.5,4.5 parent: 2 - uid: 13870 @@ -122092,37 +121315,31 @@ entities: - uid: 13876 components: - type: Transform - rot: -1.5707963267948966 rad pos: -137.5,21.5 parent: 2 - uid: 13883 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,-13.5 parent: 2 - uid: 13886 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,-17.5 parent: 2 - uid: 13887 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,-11.5 parent: 2 - uid: 13889 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,-14.5 parent: 2 - uid: 13890 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,-7.5 parent: 2 - uid: 13892 @@ -122133,37 +121350,31 @@ entities: - uid: 13893 components: - type: Transform - rot: -1.5707963267948966 rad pos: -143.5,-56.5 parent: 2 - uid: 13896 components: - type: Transform - rot: -1.5707963267948966 rad pos: -142.5,-57.5 parent: 2 - uid: 13898 components: - type: Transform - rot: 3.141592653589793 rad pos: -142.5,-35.5 parent: 2 - uid: 13899 components: - type: Transform - rot: 3.141592653589793 rad pos: -155.5,-35.5 parent: 2 - uid: 13900 components: - type: Transform - rot: 3.141592653589793 rad pos: -157.5,-34.5 parent: 2 - uid: 13902 components: - type: Transform - rot: 3.141592653589793 rad pos: -157.5,-33.5 parent: 2 - uid: 13908 @@ -122179,7 +121390,6 @@ entities: - uid: 13925 components: - type: Transform - rot: 3.141592653589793 rad pos: -157.5,-35.5 parent: 2 - uid: 13927 @@ -122190,7 +121400,6 @@ entities: - uid: 13928 components: - type: Transform - rot: 3.141592653589793 rad pos: -152.5,-35.5 parent: 2 - uid: 13929 @@ -122201,7 +121410,6 @@ entities: - uid: 13930 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,-10.5 parent: 2 - uid: 13931 @@ -122212,13 +121420,11 @@ entities: - uid: 13932 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,-8.5 parent: 2 - uid: 13933 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,-5.5 parent: 2 - uid: 13934 @@ -122229,7 +121435,6 @@ entities: - uid: 13935 components: - type: Transform - rot: 3.141592653589793 rad pos: -157.5,-36.5 parent: 2 - uid: 13936 @@ -122250,25 +121455,21 @@ entities: - uid: 13940 components: - type: Transform - rot: 3.141592653589793 rad pos: -157.5,-23.5 parent: 2 - uid: 13941 components: - type: Transform - rot: 3.141592653589793 rad pos: -157.5,-38.5 parent: 2 - uid: 13942 components: - type: Transform - rot: 3.141592653589793 rad pos: -157.5,-21.5 parent: 2 - uid: 13943 components: - type: Transform - rot: 3.141592653589793 rad pos: -157.5,-24.5 parent: 2 - uid: 13944 @@ -122284,7 +121485,6 @@ entities: - uid: 13952 components: - type: Transform - rot: -1.5707963267948966 rad pos: -129.5,-59.5 parent: 2 - uid: 14075 @@ -122295,19 +121495,16 @@ entities: - uid: 14144 components: - type: Transform - rot: -1.5707963267948966 rad pos: -146.5,-51.5 parent: 2 - uid: 14150 components: - type: Transform - rot: -1.5707963267948966 rad pos: -148.5,-51.5 parent: 2 - uid: 14202 components: - type: Transform - rot: -1.5707963267948966 rad pos: -101.5,-21.5 parent: 2 - uid: 14487 @@ -122348,7 +121545,6 @@ entities: - uid: 14860 components: - type: Transform - rot: 3.141592653589793 rad pos: -93.5,26.5 parent: 2 - uid: 15302 @@ -122369,7 +121565,6 @@ entities: - uid: 15927 components: - type: Transform - rot: 3.141592653589793 rad pos: -61.5,-17.5 parent: 2 - uid: 15957 @@ -122405,7 +121600,6 @@ entities: - uid: 16441 components: - type: Transform - rot: -1.5707963267948966 rad pos: -77.5,-35.5 parent: 2 - uid: 16453 @@ -122436,7 +121630,6 @@ entities: - uid: 16869 components: - type: Transform - rot: -1.5707963267948966 rad pos: -125.5,-59.5 parent: 2 - uid: 16913 @@ -122487,13 +121680,11 @@ entities: - uid: 17065 components: - type: Transform - rot: 1.5707963267948966 rad pos: -22.5,6.5 parent: 2 - uid: 17066 components: - type: Transform - rot: 1.5707963267948966 rad pos: -20.5,6.5 parent: 2 - uid: 17071 @@ -122509,7 +121700,6 @@ entities: - uid: 17136 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,6.5 parent: 2 - uid: 17157 @@ -122540,7 +121730,6 @@ entities: - uid: 17319 components: - type: Transform - rot: -1.5707963267948966 rad pos: -151.5,-44.5 parent: 2 - uid: 17339 @@ -122551,145 +121740,121 @@ entities: - uid: 17344 components: - type: Transform - rot: -1.5707963267948966 rad pos: -146.5,-39.5 parent: 2 - uid: 17346 components: - type: Transform - rot: -1.5707963267948966 rad pos: -148.5,-40.5 parent: 2 - uid: 17347 components: - type: Transform - rot: -1.5707963267948966 rad pos: -148.5,-39.5 parent: 2 - uid: 17355 components: - type: Transform - rot: -1.5707963267948966 rad pos: -148.5,-49.5 parent: 2 - uid: 17356 components: - type: Transform - rot: -1.5707963267948966 rad pos: -148.5,-50.5 parent: 2 - uid: 17360 components: - type: Transform - rot: -1.5707963267948966 rad pos: -146.5,-41.5 parent: 2 - uid: 17361 components: - type: Transform - rot: -1.5707963267948966 rad pos: -146.5,-40.5 parent: 2 - uid: 17440 components: - type: Transform - rot: -1.5707963267948966 rad pos: -144.5,-56.5 parent: 2 - uid: 17441 components: - type: Transform - rot: -1.5707963267948966 rad pos: -144.5,-55.5 parent: 2 - uid: 17446 components: - type: Transform - rot: -1.5707963267948966 rad pos: -143.5,-57.5 parent: 2 - uid: 17451 components: - type: Transform - rot: -1.5707963267948966 rad pos: -142.5,-58.5 parent: 2 - uid: 17457 components: - type: Transform - rot: 3.141592653589793 rad pos: -153.5,-35.5 parent: 2 - uid: 17470 components: - type: Transform - rot: 3.141592653589793 rad pos: -157.5,-20.5 parent: 2 - uid: 17471 components: - type: Transform - rot: 3.141592653589793 rad pos: -157.5,-39.5 parent: 2 - uid: 17474 components: - type: Transform - rot: 3.141592653589793 rad pos: -157.5,-40.5 parent: 2 - uid: 17477 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,-1.5 parent: 2 - uid: 17478 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,-0.5 parent: 2 - uid: 17490 components: - type: Transform - rot: 3.141592653589793 rad pos: -137.5,-40.5 parent: 2 - uid: 17495 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,3.5 parent: 2 - uid: 17496 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,19.5 parent: 2 - uid: 17511 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,17.5 parent: 2 - uid: 17514 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,15.5 parent: 2 - uid: 17521 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,4.5 parent: 2 - uid: 17534 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,8.5 parent: 2 - uid: 17579 @@ -122715,43 +121880,36 @@ entities: - uid: 17781 components: - type: Transform - rot: 3.141592653589793 rad pos: -142.5,3.5 parent: 2 - uid: 17789 components: - type: Transform - rot: 3.141592653589793 rad pos: -142.5,4.5 parent: 2 - uid: 18071 components: - type: Transform - rot: 3.141592653589793 rad pos: -142.5,2.5 parent: 2 - uid: 18073 components: - type: Transform - rot: 3.141592653589793 rad pos: -157.5,2.5 parent: 2 - uid: 18080 components: - type: Transform - rot: 3.141592653589793 rad pos: -114.5,-13.5 parent: 2 - uid: 18082 components: - type: Transform - rot: 3.141592653589793 rad pos: -114.5,-7.5 parent: 2 - uid: 18093 components: - type: Transform - rot: -1.5707963267948966 rad pos: -89.5,-38.5 parent: 2 - uid: 18098 @@ -122772,37 +121930,31 @@ entities: - uid: 18261 components: - type: Transform - rot: 1.5707963267948966 rad pos: -137.5,-34.5 parent: 2 - uid: 18309 components: - type: Transform - rot: -1.5707963267948966 rad pos: -126.5,-59.5 parent: 2 - uid: 18614 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,-52.5 parent: 2 - uid: 18631 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,-47.5 parent: 2 - uid: 18632 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,-42.5 parent: 2 - uid: 18633 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,-48.5 parent: 2 - uid: 18779 @@ -122828,7 +121980,6 @@ entities: - uid: 18954 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,-43.5 parent: 2 - uid: 18976 @@ -122839,19 +121990,16 @@ entities: - uid: 19169 components: - type: Transform - rot: -1.5707963267948966 rad pos: -114.5,-36.5 parent: 2 - uid: 19171 components: - type: Transform - rot: -1.5707963267948966 rad pos: -115.5,-36.5 parent: 2 - uid: 19172 components: - type: Transform - rot: -1.5707963267948966 rad pos: -113.5,-36.5 parent: 2 - uid: 19227 @@ -122882,13 +122030,11 @@ entities: - uid: 19911 components: - type: Transform - rot: 3.141592653589793 rad pos: -99.5,-11.5 parent: 2 - uid: 19972 components: - type: Transform - rot: 3.141592653589793 rad pos: -100.5,-11.5 parent: 2 - uid: 19974 @@ -122899,73 +122045,61 @@ entities: - uid: 20083 components: - type: Transform - rot: -1.5707963267948966 rad pos: -146.5,-50.5 parent: 2 - uid: 20085 components: - type: Transform - rot: -1.5707963267948966 rad pos: -146.5,-49.5 parent: 2 - uid: 20149 components: - type: Transform - rot: -1.5707963267948966 rad pos: -144.5,-35.5 parent: 2 - uid: 20152 components: - type: Transform - rot: 3.141592653589793 rad pos: -156.5,-35.5 parent: 2 - uid: 20156 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,7.5 parent: 2 - uid: 20158 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,10.5 parent: 2 - uid: 20227 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,12.5 parent: 2 - uid: 20258 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,18.5 parent: 2 - uid: 20263 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,11.5 parent: 2 - uid: 20264 components: - type: Transform - rot: -1.5707963267948966 rad pos: -157.5,13.5 parent: 2 - uid: 20265 components: - type: Transform - rot: -1.5707963267948966 rad pos: -133.5,-57.5 parent: 2 - uid: 20276 components: - type: Transform - rot: 1.5707963267948966 rad pos: -139.5,-11.5 parent: 2 - uid: 20288 @@ -122976,43 +122110,36 @@ entities: - uid: 20289 components: - type: Transform - rot: -1.5707963267948966 rad pos: -69.5,-71.5 parent: 2 - uid: 20313 components: - type: Transform - rot: 1.5707963267948966 rad pos: -57.5,-79.5 parent: 2 - uid: 20315 components: - type: Transform - rot: 1.5707963267948966 rad pos: -56.5,-79.5 parent: 2 - uid: 20317 components: - type: Transform - rot: 1.5707963267948966 rad pos: -55.5,-79.5 parent: 2 - uid: 20354 components: - type: Transform - rot: -1.5707963267948966 rad pos: -125.5,-81.5 parent: 2 - uid: 20355 components: - type: Transform - rot: -1.5707963267948966 rad pos: -125.5,-83.5 parent: 2 - uid: 20400 components: - type: Transform - rot: -1.5707963267948966 rad pos: -125.5,-76.5 parent: 2 - uid: 20403 @@ -123028,19 +122155,16 @@ entities: - uid: 20405 components: - type: Transform - rot: -1.5707963267948966 rad pos: -125.5,-78.5 parent: 2 - uid: 20406 components: - type: Transform - rot: 1.5707963267948966 rad pos: -115.5,-71.5 parent: 2 - uid: 20408 components: - type: Transform - rot: 1.5707963267948966 rad pos: -114.5,-71.5 parent: 2 - uid: 20409 @@ -123051,37 +122175,31 @@ entities: - uid: 20410 components: - type: Transform - rot: -1.5707963267948966 rad pos: -124.5,-88.5 parent: 2 - uid: 20412 components: - type: Transform - rot: -1.5707963267948966 rad pos: -125.5,-86.5 parent: 2 - uid: 20416 components: - type: Transform - rot: -1.5707963267948966 rad pos: -125.5,-87.5 parent: 2 - uid: 20420 components: - type: Transform - rot: -1.5707963267948966 rad pos: -125.5,-85.5 parent: 2 - uid: 20422 components: - type: Transform - rot: -1.5707963267948966 rad pos: -125.5,-77.5 parent: 2 - uid: 20426 components: - type: Transform - rot: -1.5707963267948966 rad pos: -104.5,23.5 parent: 2 - uid: 20443 @@ -123092,19 +122210,16 @@ entities: - uid: 20538 components: - type: Transform - rot: 3.141592653589793 rad pos: -105.5,-36.5 parent: 2 - uid: 20540 components: - type: Transform - rot: 3.141592653589793 rad pos: -102.5,-36.5 parent: 2 - uid: 20730 components: - type: Transform - rot: -1.5707963267948966 rad pos: -92.5,-35.5 parent: 2 - uid: 20781 @@ -123315,7 +122430,6 @@ entities: - uid: 21459 components: - type: Transform - rot: -1.5707963267948966 rad pos: -119.5,37.5 parent: 2 - uid: 21475 @@ -123326,25 +122440,21 @@ entities: - uid: 21481 components: - type: Transform - rot: -1.5707963267948966 rad pos: -120.5,37.5 parent: 2 - uid: 21488 components: - type: Transform - rot: -1.5707963267948966 rad pos: -121.5,37.5 parent: 2 - uid: 21725 components: - type: Transform - rot: -1.5707963267948966 rad pos: -116.5,-5.5 parent: 2 - uid: 21878 components: - type: Transform - rot: 3.141592653589793 rad pos: -140.5,-12.5 parent: 2 - uid: 22004 @@ -123365,7 +122475,6 @@ entities: - uid: 22163 components: - type: Transform - rot: -1.5707963267948966 rad pos: -67.5,-71.5 parent: 2 - uid: 22195 @@ -123376,7 +122485,6 @@ entities: - uid: 22226 components: - type: Transform - rot: 3.141592653589793 rad pos: -112.5,38.5 parent: 2 - uid: 22231 @@ -123407,25 +122515,21 @@ entities: - uid: 22770 components: - type: Transform - rot: 3.141592653589793 rad pos: -136.5,12.5 parent: 2 - uid: 22791 components: - type: Transform - rot: 3.141592653589793 rad pos: -138.5,15.5 parent: 2 - uid: 22793 components: - type: Transform - rot: 3.141592653589793 rad pos: -136.5,15.5 parent: 2 - uid: 22815 components: - type: Transform - rot: 3.141592653589793 rad pos: -152.5,2.5 parent: 2 - uid: 22832 @@ -123506,67 +122610,56 @@ entities: - uid: 23144 components: - type: Transform - rot: 3.141592653589793 rad pos: -152.5,-0.5 parent: 2 - uid: 23145 components: - type: Transform - rot: 3.141592653589793 rad pos: -152.5,0.5 parent: 2 - uid: 23149 components: - type: Transform - rot: 3.141592653589793 rad pos: -142.5,-0.5 parent: 2 - uid: 23150 components: - type: Transform - rot: 3.141592653589793 rad pos: -142.5,0.5 parent: 2 - uid: 23228 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,-49.5 parent: 2 - uid: 23234 components: - type: Transform - rot: -1.5707963267948966 rad pos: -78.5,-52.5 parent: 2 - uid: 23236 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,-39.5 parent: 2 - uid: 23237 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,-44.5 parent: 2 - uid: 23238 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,-40.5 parent: 2 - uid: 23242 components: - type: Transform - rot: -1.5707963267948966 rad pos: -19.5,-28.5 parent: 2 - uid: 23269 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,-50.5 parent: 2 - uid: 23275 @@ -123582,7 +122675,6 @@ entities: - uid: 23331 components: - type: Transform - rot: 3.141592653589793 rad pos: -67.5,-17.5 parent: 2 - uid: 23375 @@ -123603,7 +122695,6 @@ entities: - uid: 23385 components: - type: Transform - rot: 1.5707963267948966 rad pos: -114.5,-72.5 parent: 2 - uid: 23390 @@ -123629,19 +122720,16 @@ entities: - uid: 23503 components: - type: Transform - rot: -1.5707963267948966 rad pos: -95.5,31.5 parent: 2 - uid: 23509 components: - type: Transform - rot: -1.5707963267948966 rad pos: -93.5,31.5 parent: 2 - uid: 23646 components: - type: Transform - rot: 3.141592653589793 rad pos: -69.5,-17.5 parent: 2 - uid: 23808 @@ -123657,43 +122745,36 @@ entities: - uid: 23825 components: - type: Transform - rot: 1.5707963267948966 rad pos: -115.5,-74.5 parent: 2 - uid: 23828 components: - type: Transform - rot: -1.5707963267948966 rad pos: -125.5,-80.5 parent: 2 - uid: 23832 components: - type: Transform - rot: 1.5707963267948966 rad pos: -114.5,-73.5 parent: 2 - uid: 23841 components: - type: Transform - rot: -1.5707963267948966 rad pos: -116.5,-88.5 parent: 2 - uid: 23843 components: - type: Transform - rot: -1.5707963267948966 rad pos: -115.5,-87.5 parent: 2 - uid: 23846 components: - type: Transform - rot: -1.5707963267948966 rad pos: -125.5,-82.5 parent: 2 - uid: 23847 components: - type: Transform - rot: 1.5707963267948966 rad pos: -125.5,-74.5 parent: 2 - uid: 23873 @@ -123704,19 +122785,16 @@ entities: - uid: 23876 components: - type: Transform - rot: 1.5707963267948966 rad pos: -125.5,-70.5 parent: 2 - uid: 23890 components: - type: Transform - rot: 3.141592653589793 rad pos: -102.5,25.5 parent: 2 - uid: 23946 components: - type: Transform - rot: -1.5707963267948966 rad pos: 2.5,-22.5 parent: 2 - uid: 24019 @@ -123727,115 +122805,96 @@ entities: - uid: 24186 components: - type: Transform - rot: -1.5707963267948966 rad pos: -3.5,-33.5 parent: 2 - uid: 24188 components: - type: Transform - rot: -1.5707963267948966 rad pos: -3.5,-31.5 parent: 2 - uid: 24190 components: - type: Transform - rot: -1.5707963267948966 rad pos: -3.5,-28.5 parent: 2 - uid: 24191 components: - type: Transform - rot: -1.5707963267948966 rad pos: -3.5,-27.5 parent: 2 - uid: 24192 components: - type: Transform - rot: -1.5707963267948966 rad pos: -3.5,-30.5 parent: 2 - uid: 24193 components: - type: Transform - rot: -1.5707963267948966 rad pos: -2.5,-27.5 parent: 2 - uid: 24195 components: - type: Transform - rot: -1.5707963267948966 rad pos: -1.5,-26.5 parent: 2 - uid: 24196 components: - type: Transform - rot: -1.5707963267948966 rad pos: -1.5,-25.5 parent: 2 - uid: 24198 components: - type: Transform - rot: -1.5707963267948966 rad pos: -0.5,-24.5 parent: 2 - uid: 24199 components: - type: Transform - rot: -1.5707963267948966 rad pos: 0.5,-24.5 parent: 2 - uid: 24200 components: - type: Transform - rot: -1.5707963267948966 rad pos: 0.5,-23.5 parent: 2 - uid: 24201 components: - type: Transform - rot: -1.5707963267948966 rad pos: 1.5,-23.5 parent: 2 - uid: 24203 components: - type: Transform - rot: -1.5707963267948966 rad pos: 2.5,-21.5 parent: 2 - uid: 24204 components: - type: Transform - rot: -1.5707963267948966 rad pos: 2.5,-20.5 parent: 2 - uid: 24206 components: - type: Transform - rot: -1.5707963267948966 rad pos: 2.5,-12.5 parent: 2 - uid: 24207 components: - type: Transform - rot: -1.5707963267948966 rad pos: 2.5,-14.5 parent: 2 - uid: 24208 components: - type: Transform - rot: -1.5707963267948966 rad pos: 2.5,-6.5 parent: 2 - uid: 24210 components: - type: Transform - rot: -1.5707963267948966 rad pos: 2.5,-4.5 parent: 2 - uid: 24211 components: - type: Transform - rot: -1.5707963267948966 rad pos: 2.5,-3.5 parent: 2 - uid: 24213 @@ -123846,25 +122905,21 @@ entities: - uid: 24257 components: - type: Transform - rot: 1.5707963267948966 rad pos: -116.5,-73.5 parent: 2 - uid: 24275 components: - type: Transform - rot: 3.141592653589793 rad pos: -78.5,-24.5 parent: 2 - uid: 24279 components: - type: Transform - rot: -1.5707963267948966 rad pos: -125.5,-84.5 parent: 2 - uid: 24289 components: - type: Transform - rot: -1.5707963267948966 rad pos: -19.5,-33.5 parent: 2 - uid: 24501 @@ -123890,49 +122945,41 @@ entities: - uid: 24573 components: - type: Transform - rot: 1.5707963267948966 rad pos: -124.5,-73.5 parent: 2 - uid: 24613 components: - type: Transform - rot: -1.5707963267948966 rad pos: -56.5,-40.5 parent: 2 - uid: 24818 components: - type: Transform - rot: 1.5707963267948966 rad pos: -124.5,-71.5 parent: 2 - uid: 24838 components: - type: Transform - rot: 1.5707963267948966 rad pos: -115.5,-72.5 parent: 2 - uid: 24839 components: - type: Transform - rot: 1.5707963267948966 rad pos: -115.5,-73.5 parent: 2 - uid: 24840 components: - type: Transform - rot: -1.5707963267948966 rad pos: -125.5,-79.5 parent: 2 - uid: 24841 components: - type: Transform - rot: -1.5707963267948966 rad pos: -115.5,-85.5 parent: 2 - uid: 24842 components: - type: Transform - rot: -1.5707963267948966 rad pos: -115.5,-86.5 parent: 2 - uid: 24843 @@ -123948,115 +122995,96 @@ entities: - uid: 24849 components: - type: Transform - rot: 1.5707963267948966 rad pos: -125.5,-72.5 parent: 2 - uid: 24851 components: - type: Transform - rot: 1.5707963267948966 rad pos: -126.5,-73.5 parent: 2 - uid: 24853 components: - type: Transform - rot: 1.5707963267948966 rad pos: -126.5,-71.5 parent: 2 - uid: 24854 components: - type: Transform - rot: 1.5707963267948966 rad pos: -115.5,-70.5 parent: 2 - uid: 24855 components: - type: Transform - rot: 1.5707963267948966 rad pos: -126.5,-72.5 parent: 2 - uid: 24856 components: - type: Transform - rot: -1.5707963267948966 rad pos: -115.5,-84.5 parent: 2 - uid: 24857 components: - type: Transform - rot: -1.5707963267948966 rad pos: -115.5,-83.5 parent: 2 - uid: 24858 components: - type: Transform - rot: -1.5707963267948966 rad pos: -115.5,-82.5 parent: 2 - uid: 24859 components: - type: Transform - rot: -1.5707963267948966 rad pos: -115.5,-81.5 parent: 2 - uid: 24860 components: - type: Transform - rot: -1.5707963267948966 rad pos: -115.5,-79.5 parent: 2 - uid: 24861 components: - type: Transform - rot: -1.5707963267948966 rad pos: -115.5,-78.5 parent: 2 - uid: 24862 components: - type: Transform - rot: -1.5707963267948966 rad pos: -115.5,-77.5 parent: 2 - uid: 24863 components: - type: Transform - rot: -1.5707963267948966 rad pos: -115.5,-76.5 parent: 2 - uid: 24866 components: - type: Transform - rot: -1.5707963267948966 rad pos: -115.5,-80.5 parent: 2 - uid: 24874 components: - type: Transform - rot: 1.5707963267948966 rad pos: -125.5,-71.5 parent: 2 - uid: 24875 components: - type: Transform - rot: 1.5707963267948966 rad pos: -124.5,-72.5 parent: 2 - uid: 24876 components: - type: Transform - rot: 1.5707963267948966 rad pos: -125.5,-73.5 parent: 2 - uid: 24877 components: - type: Transform - rot: 1.5707963267948966 rad pos: -116.5,-71.5 parent: 2 - uid: 24878 components: - type: Transform - rot: 1.5707963267948966 rad pos: -116.5,-72.5 parent: 2 - uid: 24909 @@ -124067,7 +123095,6 @@ entities: - uid: 25148 components: - type: Transform - rot: 1.5707963267948966 rad pos: -129.5,-65.5 parent: 2 - uid: 25159 @@ -124088,127 +123115,106 @@ entities: - uid: 25284 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-87.5 parent: 2 - uid: 25285 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-88.5 parent: 2 - uid: 25286 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-90.5 parent: 2 - uid: 25288 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-83.5 parent: 2 - uid: 25289 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-67.5 parent: 2 - uid: 25290 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-68.5 parent: 2 - uid: 25292 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-71.5 parent: 2 - uid: 25293 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-72.5 parent: 2 - uid: 25294 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-73.5 parent: 2 - uid: 25295 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-74.5 parent: 2 - uid: 25297 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-70.5 parent: 2 - uid: 25298 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-78.5 parent: 2 - uid: 25299 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-76.5 parent: 2 - uid: 25300 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-79.5 parent: 2 - uid: 25301 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-80.5 parent: 2 - uid: 25302 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-77.5 parent: 2 - uid: 25303 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-81.5 parent: 2 - uid: 25304 components: - type: Transform - rot: 1.5707963267948966 rad pos: -138.5,-59.5 parent: 2 - uid: 25305 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-85.5 parent: 2 - uid: 25306 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-84.5 parent: 2 - uid: 25307 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-86.5 parent: 2 - uid: 25308 @@ -124219,259 +123225,216 @@ entities: - uid: 25309 components: - type: Transform - rot: 1.5707963267948966 rad pos: -127.5,-91.5 parent: 2 - uid: 25310 components: - type: Transform - rot: 1.5707963267948966 rad pos: -126.5,-91.5 parent: 2 - uid: 25311 components: - type: Transform - rot: 1.5707963267948966 rad pos: -126.5,-92.5 parent: 2 - uid: 25313 components: - type: Transform - rot: 1.5707963267948966 rad pos: -124.5,-92.5 parent: 2 - uid: 25314 components: - type: Transform - rot: 1.5707963267948966 rad pos: -123.5,-92.5 parent: 2 - uid: 25315 components: - type: Transform - rot: 1.5707963267948966 rad pos: -121.5,-92.5 parent: 2 - uid: 25316 components: - type: Transform - rot: 1.5707963267948966 rad pos: -120.5,-92.5 parent: 2 - uid: 25317 components: - type: Transform - rot: 1.5707963267948966 rad pos: -119.5,-92.5 parent: 2 - uid: 25318 components: - type: Transform - rot: 1.5707963267948966 rad pos: -118.5,-92.5 parent: 2 - uid: 25319 components: - type: Transform - rot: 1.5707963267948966 rad pos: -117.5,-92.5 parent: 2 - uid: 25320 components: - type: Transform - rot: 1.5707963267948966 rad pos: -116.5,-92.5 parent: 2 - uid: 25321 components: - type: Transform - rot: 1.5707963267948966 rad pos: -122.5,-92.5 parent: 2 - uid: 25323 components: - type: Transform - rot: 1.5707963267948966 rad pos: -114.5,-92.5 parent: 2 - uid: 25324 components: - type: Transform - rot: 1.5707963267948966 rad pos: -114.5,-91.5 parent: 2 - uid: 25325 components: - type: Transform - rot: 1.5707963267948966 rad pos: -113.5,-91.5 parent: 2 - uid: 25327 components: - type: Transform - rot: 1.5707963267948966 rad pos: -112.5,-90.5 parent: 2 - uid: 25329 components: - type: Transform - rot: 1.5707963267948966 rad pos: -112.5,-76.5 parent: 2 - uid: 25330 components: - type: Transform - rot: 1.5707963267948966 rad pos: -112.5,-86.5 parent: 2 - uid: 25331 components: - type: Transform - rot: 1.5707963267948966 rad pos: -112.5,-79.5 parent: 2 - uid: 25332 components: - type: Transform - rot: 1.5707963267948966 rad pos: -112.5,-77.5 parent: 2 - uid: 25333 components: - type: Transform - rot: 1.5707963267948966 rad pos: -112.5,-78.5 parent: 2 - uid: 25335 components: - type: Transform - rot: 1.5707963267948966 rad pos: -112.5,-74.5 parent: 2 - uid: 25336 components: - type: Transform - rot: 1.5707963267948966 rad pos: -112.5,-73.5 parent: 2 - uid: 25337 components: - type: Transform - rot: 1.5707963267948966 rad pos: -112.5,-72.5 parent: 2 - uid: 25338 components: - type: Transform - rot: 1.5707963267948966 rad pos: -112.5,-71.5 parent: 2 - uid: 25339 components: - type: Transform - rot: 1.5707963267948966 rad pos: -112.5,-70.5 parent: 2 - uid: 25341 components: - type: Transform - rot: 1.5707963267948966 rad pos: -112.5,-88.5 parent: 2 - uid: 25342 components: - type: Transform - rot: 1.5707963267948966 rad pos: -112.5,-87.5 parent: 2 - uid: 25343 components: - type: Transform - rot: 1.5707963267948966 rad pos: -112.5,-84.5 parent: 2 - uid: 25344 components: - type: Transform - rot: 1.5707963267948966 rad pos: -112.5,-85.5 parent: 2 - uid: 25345 components: - type: Transform - rot: 1.5707963267948966 rad pos: -112.5,-83.5 parent: 2 - uid: 25346 components: - type: Transform - rot: 1.5707963267948966 rad pos: -137.5,-59.5 parent: 2 - uid: 25347 components: - type: Transform - rot: 1.5707963267948966 rad pos: -112.5,-81.5 parent: 2 - uid: 25348 components: - type: Transform - rot: 1.5707963267948966 rad pos: -112.5,-80.5 parent: 2 - uid: 25351 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-66.5 parent: 2 - uid: 25352 components: - type: Transform - rot: 1.5707963267948966 rad pos: -130.5,-64.5 parent: 2 - uid: 25353 components: - type: Transform - rot: 1.5707963267948966 rad pos: -131.5,-63.5 parent: 2 - uid: 25354 components: - type: Transform - rot: 1.5707963267948966 rad pos: -132.5,-62.5 parent: 2 - uid: 25355 components: - type: Transform - rot: 1.5707963267948966 rad pos: -133.5,-61.5 parent: 2 - uid: 25356 components: - type: Transform - rot: 1.5707963267948966 rad pos: -134.5,-60.5 parent: 2 - uid: 25357 components: - type: Transform - rot: 1.5707963267948966 rad pos: -136.5,-59.5 parent: 2 - uid: 25358 components: - type: Transform - rot: 1.5707963267948966 rad pos: -139.5,-59.5 parent: 2 - uid: 25359 components: - type: Transform - rot: 1.5707963267948966 rad pos: -140.5,-59.5 parent: 2 - uid: 25377 @@ -124482,37 +123445,31 @@ entities: - uid: 25399 components: - type: Transform - rot: 1.5707963267948966 rad pos: -115.5,-54.5 parent: 2 - uid: 25400 components: - type: Transform - rot: 1.5707963267948966 rad pos: -114.5,-54.5 parent: 2 - uid: 25401 components: - type: Transform - rot: 1.5707963267948966 rad pos: -113.5,-54.5 parent: 2 - uid: 25535 components: - type: Transform - rot: 1.5707963267948966 rad pos: -14.5,-33.5 parent: 2 - uid: 25536 components: - type: Transform - rot: 1.5707963267948966 rad pos: -14.5,-31.5 parent: 2 - uid: 25537 components: - type: Transform - rot: 1.5707963267948966 rad pos: -14.5,-26.5 parent: 2 - uid: 25614 @@ -124523,7 +123480,6 @@ entities: - uid: 25667 components: - type: Transform - rot: -1.5707963267948966 rad pos: -90.5,-48.5 parent: 2 - uid: 25712 @@ -124784,49 +123740,41 @@ entities: - uid: 25792 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-66.5 parent: 2 - uid: 25793 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-65.5 parent: 2 - uid: 25794 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-64.5 parent: 2 - uid: 25795 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-63.5 parent: 2 - uid: 25796 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-63.5 parent: 2 - uid: 25797 components: - type: Transform - rot: 1.5707963267948966 rad pos: -9.5,-63.5 parent: 2 - uid: 25799 components: - type: Transform - rot: 1.5707963267948966 rad pos: -11.5,-63.5 parent: 2 - uid: 25987 components: - type: Transform - rot: 1.5707963267948966 rad pos: -110.5,-45.5 parent: 2 - uid: 26062 @@ -124842,13 +123790,11 @@ entities: - uid: 26107 components: - type: Transform - rot: -1.5707963267948966 rad pos: -27.5,-38.5 parent: 2 - uid: 26108 components: - type: Transform - rot: -1.5707963267948966 rad pos: -27.5,-36.5 parent: 2 - proto: GrilleBroken @@ -127462,6 +126408,24 @@ entities: - type: Transform pos: -15.5,16.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 @@ -127469,12 +126433,12 @@ entities: occludes: True ents: - 2504 - - 2501 - - 2493 - - 2480 - - 2432 - - 2423 - 2415 + - 2423 + - 2432 + - 2480 + - 2493 + - 2501 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -128033,6 +126997,11 @@ entities: parent: 2 - proto: MaintenanceToolSpawner entities: + - uid: 8885 + components: + - type: Transform + pos: -24.5,-63.5 + parent: 2 - uid: 15337 components: - type: Transform @@ -128043,11 +127012,6 @@ entities: - type: Transform pos: -38.5,-54.5 parent: 2 - - uid: 21375 - components: - - type: Transform - pos: -30.5,-64.5 - parent: 2 - proto: MaintenanceWeaponSpawner entities: - uid: 20630 @@ -128892,6 +127856,47 @@ entities: - type: Transform pos: -101.69795,-65.35635 parent: 2 + - uid: 9723 + components: + - type: MetaData + name: paper (Aussec Security Suite) + - type: Transform + pos: -92.551506,-19.605207 + parent: 2 + - type: Paper + stampState: paper_stamp-warden + stampedBy: + - stampedColor: '#5B0000FF' + stampedName: Aussec + content: >2- + + [head=1]Aussec Security Suite[/head] + + + Congratulations on the installation of your [bold]Aussec Security Suite[/bold]. This short guide will run you through the functions of each button. + + + [bold]Desk Shutters[/bold] operates the exterior shutters of the front desk, useful for silencing rioters who complain. + + + [bold]Open Doors[/bold] operates the front doors to allow civilians entrance into security - or exit, if you're feeling inclined. + + + [bold]Janitor Light[/bold] toggles the exterior janitor light, to alert the janitor that you have another blood spill. + + + [bold]Entrance Lockdown[/bold] toggles the entrance blast doors, for the most extreme circumstances where security is at risk of being overrun. + + + [bold]Cell Shutters[/bold] toggles the holding cell shutters to prevent criminal scum from communicating with their accomplices. + + + [bold]Perma Lockdown[/bold] toggles the permabrig blast doors, for containing the most extreme prison riots. + editingDisabled: True + - type: Label + currentLabel: Aussec Security Suite + - type: NameModifier + baseName: paper - uid: 18361 components: - type: MetaData @@ -129987,6 +128992,22 @@ entities: - type: Transform pos: -44.55997,-51.63969 parent: 2 +- proto: PlushieSharkBlue + entities: + - uid: 12252 + components: + - type: MetaData + desc: This shark is a vicious killer of the ocean, trained in over 20 martial art styles. It merely takes the form of a plushie to fool the unaware into trusting it, only so it may strike when they're at their most vulnerable. + name: highly illegal syndicate shark + - type: Transform + pos: -14.584713,16.470493 + parent: 2 + - type: Item + size: Huge + - type: Contraband + allowedJobs: [] + allowedDepartments: [] + severity: Syndicate - proto: PlushieSlime entities: - uid: 3336 @@ -130114,6 +129135,11 @@ entities: - type: Transform pos: -121.5,17.5 parent: 2 + - uid: 12518 + components: + - type: Transform + pos: -24.5,-62.5 + parent: 2 - uid: 13678 components: - type: Transform @@ -130523,16 +129549,16 @@ entities: parent: 2 - proto: PottedPlantRandomPlastic entities: - - uid: 3796 - components: - - type: Transform - pos: -68.5,-58.5 - parent: 2 - uid: 11795 components: - type: Transform pos: -100.5,-43.5 parent: 2 + - uid: 15290 + components: + - type: Transform + pos: -68.5,-58.5 + parent: 2 - uid: 22379 components: - type: Transform @@ -131055,12 +130081,6 @@ entities: rot: -1.5707963267948966 rad pos: -115.5,10.5 parent: 2 - - uid: 5605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,4.5 - parent: 2 - uid: 5652 components: - type: Transform @@ -131262,6 +130282,12 @@ entities: rot: 3.141592653589793 rad pos: -83.5,-57.5 parent: 2 + - uid: 8900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -115.5,5.5 + parent: 2 - uid: 8928 components: - type: Transform @@ -134681,10 +133707,19 @@ entities: - type: Transform pos: -97.5,-10.5 parent: 2 + - uid: 11417 + components: + - type: Transform + pos: -41.5,-27.5 + parent: 2 + - uid: 11418 + components: + - type: Transform + pos: -41.5,-32.5 + parent: 2 - uid: 19521 components: - type: Transform - rot: 3.141592653589793 rad pos: -104.5,14.5 parent: 2 - uid: 19630 @@ -134807,16 +133842,6 @@ entities: - type: Transform pos: -44.5,-19.5 parent: 2 - - uid: 23593 - components: - - type: Transform - pos: -41.5,-28.5 - parent: 2 - - uid: 23594 - components: - - type: Transform - pos: -41.5,-31.5 - parent: 2 - uid: 23595 components: - type: Transform @@ -134830,13 +133855,11 @@ entities: - uid: 24673 components: - type: Transform - rot: 3.141592653589793 rad pos: -106.5,-41.5 parent: 2 - uid: 24674 components: - type: Transform - rot: 3.141592653589793 rad pos: -102.5,-49.5 parent: 2 - proto: RandomSoakedCigarette @@ -135030,7 +134053,6 @@ entities: - uid: 2453 components: - type: Transform - rot: 1.5707963267948966 rad pos: -148.5,-50.5 parent: 2 - uid: 5278 @@ -135276,7 +134298,6 @@ entities: - uid: 5999 components: - type: Transform - rot: 1.5707963267948966 rad pos: -148.5,-51.5 parent: 2 - uid: 6005 @@ -135302,37 +134323,31 @@ entities: - uid: 6091 components: - type: Transform - rot: 1.5707963267948966 rad pos: -146.5,-39.5 parent: 2 - uid: 6092 components: - type: Transform - rot: 1.5707963267948966 rad pos: -148.5,-39.5 parent: 2 - uid: 6096 components: - type: Transform - rot: 3.141592653589793 rad pos: -153.5,-48.5 parent: 2 - uid: 6101 components: - type: Transform - rot: 1.5707963267948966 rad pos: -146.5,-40.5 parent: 2 - uid: 6103 components: - type: Transform - rot: 1.5707963267948966 rad pos: -146.5,-41.5 parent: 2 - uid: 6245 components: - type: Transform - rot: -1.5707963267948966 rad pos: -68.5,-71.5 parent: 2 - uid: 6924 @@ -135343,67 +134358,56 @@ entities: - uid: 7167 components: - type: Transform - rot: 1.5707963267948966 rad pos: -146.5,-51.5 parent: 2 - uid: 7192 components: - type: Transform - rot: 1.5707963267948966 rad pos: -148.5,-40.5 parent: 2 - uid: 7211 components: - type: Transform - rot: 1.5707963267948966 rad pos: -148.5,-41.5 parent: 2 - uid: 7247 components: - type: Transform - rot: 1.5707963267948966 rad pos: -148.5,-49.5 parent: 2 - uid: 7307 components: - type: Transform - rot: 3.141592653589793 rad pos: -155.5,-45.5 parent: 2 - uid: 7317 components: - type: Transform - rot: 3.141592653589793 rad pos: -155.5,-44.5 parent: 2 - uid: 7839 components: - type: Transform - rot: 1.5707963267948966 rad pos: -143.5,-47.5 parent: 2 - uid: 7840 components: - type: Transform - rot: 1.5707963267948966 rad pos: -151.5,-43.5 parent: 2 - uid: 7842 components: - type: Transform - rot: 1.5707963267948966 rad pos: -146.5,-50.5 parent: 2 - uid: 7856 components: - type: Transform - rot: 3.141592653589793 rad pos: -155.5,-46.5 parent: 2 - uid: 7890 components: - type: Transform - rot: -1.5707963267948966 rad pos: -69.5,-71.5 parent: 2 - uid: 9817 @@ -135434,61 +134438,51 @@ entities: - uid: 13661 components: - type: Transform - rot: 1.5707963267948966 rad pos: -146.5,-49.5 parent: 2 - uid: 13662 components: - type: Transform - rot: 1.5707963267948966 rad pos: -151.5,-47.5 parent: 2 - uid: 13664 components: - type: Transform - rot: 1.5707963267948966 rad pos: -151.5,-46.5 parent: 2 - uid: 13670 components: - type: Transform - rot: 1.5707963267948966 rad pos: -151.5,-44.5 parent: 2 - uid: 13718 components: - type: Transform - rot: 1.5707963267948966 rad pos: -143.5,-43.5 parent: 2 - uid: 14110 components: - type: Transform - rot: -1.5707963267948966 rad pos: -67.5,-71.5 parent: 2 - uid: 14756 components: - type: Transform - rot: -1.5707963267948966 rad pos: -67.5,-70.5 parent: 2 - uid: 16466 components: - type: Transform - rot: 3.141592653589793 rad pos: -153.5,-42.5 parent: 2 - uid: 20368 components: - type: Transform - rot: 3.141592653589793 rad pos: -124.5,-72.5 parent: 2 - uid: 20411 components: - type: Transform - rot: 3.141592653589793 rad pos: -122.5,-78.5 parent: 2 - uid: 22431 @@ -135499,49 +134493,41 @@ entities: - uid: 23079 components: - type: Transform - rot: 3.141592653589793 rad pos: -124.5,-73.5 parent: 2 - uid: 23103 components: - type: Transform - rot: 3.141592653589793 rad pos: -114.5,-73.5 parent: 2 - uid: 23104 components: - type: Transform - rot: 3.141592653589793 rad pos: -114.5,-71.5 parent: 2 - uid: 23108 components: - type: Transform - rot: 3.141592653589793 rad pos: -114.5,-72.5 parent: 2 - uid: 23396 components: - type: Transform - rot: 3.141592653589793 rad pos: -116.5,-71.5 parent: 2 - uid: 23401 components: - type: Transform - rot: 3.141592653589793 rad pos: -120.5,-81.5 parent: 2 - uid: 23498 components: - type: Transform - rot: 3.141592653589793 rad pos: -116.5,-72.5 parent: 2 - uid: 23716 components: - type: Transform - rot: -1.5707963267948966 rad pos: -69.5,-70.5 parent: 2 - uid: 24847 @@ -135552,43 +134538,36 @@ entities: - uid: 24880 components: - type: Transform - rot: 1.5707963267948966 rad pos: -118.5,-64.5 parent: 2 - uid: 24887 components: - type: Transform - rot: 3.141592653589793 rad pos: -116.5,-73.5 parent: 2 - uid: 24888 components: - type: Transform - rot: 3.141592653589793 rad pos: -126.5,-73.5 parent: 2 - uid: 24889 components: - type: Transform - rot: 3.141592653589793 rad pos: -126.5,-72.5 parent: 2 - uid: 24890 components: - type: Transform - rot: 3.141592653589793 rad pos: -126.5,-71.5 parent: 2 - uid: 24891 components: - type: Transform - rot: 3.141592653589793 rad pos: -124.5,-71.5 parent: 2 - uid: 24894 components: - type: Transform - rot: 1.5707963267948966 rad pos: -122.5,-64.5 parent: 2 - uid: 24901 @@ -135599,31 +134578,26 @@ entities: - uid: 24921 components: - type: Transform - rot: 3.141592653589793 rad pos: -123.5,-78.5 parent: 2 - uid: 24933 components: - type: Transform - rot: 3.141592653589793 rad pos: -121.5,-78.5 parent: 2 - uid: 24934 components: - type: Transform - rot: 3.141592653589793 rad pos: -119.5,-78.5 parent: 2 - uid: 24935 components: - type: Transform - rot: 3.141592653589793 rad pos: -118.5,-78.5 parent: 2 - uid: 24936 components: - type: Transform - rot: 3.141592653589793 rad pos: -117.5,-78.5 parent: 2 - uid: 25187 @@ -135672,7 +134646,6 @@ entities: - uid: 4 components: - type: Transform - rot: -1.5707963267948966 rad pos: -114.5,-36.5 parent: 2 - uid: 10 @@ -135888,19 +134861,16 @@ entities: - uid: 420 components: - type: Transform - rot: -1.5707963267948966 rad pos: -92.5,-35.5 parent: 2 - uid: 474 components: - type: Transform - rot: 3.141592653589793 rad pos: -66.5,-18.5 parent: 2 - uid: 504 components: - type: Transform - rot: -1.5707963267948966 rad pos: -116.5,-5.5 parent: 2 - uid: 751 @@ -136016,13 +134986,11 @@ entities: - uid: 1809 components: - type: Transform - rot: 1.5707963267948966 rad pos: -56.5,-79.5 parent: 2 - uid: 1810 components: - type: Transform - rot: 1.5707963267948966 rad pos: -55.5,-79.5 parent: 2 - uid: 1864 @@ -136553,7 +135521,6 @@ entities: - uid: 6972 components: - type: Transform - rot: 3.141592653589793 rad pos: -140.5,12.5 parent: 2 - uid: 7145 @@ -136614,7 +135581,6 @@ entities: - uid: 7257 components: - type: Transform - rot: 3.141592653589793 rad pos: -141.5,12.5 parent: 2 - uid: 7280 @@ -136640,7 +135606,6 @@ entities: - uid: 7318 components: - type: Transform - rot: -1.5707963267948966 rad pos: -131.5,-59.5 parent: 2 - uid: 7389 @@ -136666,7 +135631,6 @@ entities: - uid: 7529 components: - type: Transform - rot: 1.5707963267948966 rad pos: -137.5,-34.5 parent: 2 - uid: 7568 @@ -136692,7 +135656,6 @@ entities: - uid: 8052 components: - type: Transform - rot: -1.5707963267948966 rad pos: -130.5,-59.5 parent: 2 - uid: 8075 @@ -137013,7 +135976,6 @@ entities: - uid: 9034 components: - type: Transform - rot: -1.5707963267948966 rad pos: -90.5,-35.5 parent: 2 - uid: 9098 @@ -137054,7 +136016,6 @@ entities: - uid: 9838 components: - type: Transform - rot: 3.141592653589793 rad pos: -136.5,15.5 parent: 2 - uid: 9958 @@ -137100,7 +136061,6 @@ entities: - uid: 10035 components: - type: Transform - rot: -1.5707963267948966 rad pos: -140.5,-12.5 parent: 2 - uid: 10084 @@ -137186,13 +136146,11 @@ entities: - uid: 11710 components: - type: Transform - rot: -1.5707963267948966 rad pos: -99.5,34.5 parent: 2 - uid: 11716 components: - type: Transform - rot: -1.5707963267948966 rad pos: -99.5,33.5 parent: 2 - uid: 11780 @@ -137218,13 +136176,11 @@ entities: - uid: 12588 components: - type: Transform - rot: -1.5707963267948966 rad pos: -126.5,-59.5 parent: 2 - uid: 12748 components: - type: Transform - rot: -1.5707963267948966 rad pos: -133.5,-57.5 parent: 2 - uid: 12840 @@ -137235,7 +136191,6 @@ entities: - uid: 13241 components: - type: Transform - rot: 3.141592653589793 rad pos: -138.5,15.5 parent: 2 - uid: 13248 @@ -137246,19 +136201,16 @@ entities: - uid: 13523 components: - type: Transform - rot: 3.141592653589793 rad pos: -140.5,14.5 parent: 2 - uid: 13879 components: - type: Transform - rot: 3.141592653589793 rad pos: -138.5,12.5 parent: 2 - uid: 14003 components: - type: Transform - rot: -1.5707963267948966 rad pos: -137.5,21.5 parent: 2 - uid: 14499 @@ -137269,7 +136221,6 @@ entities: - uid: 15407 components: - type: Transform - rot: -1.5707963267948966 rad pos: -125.5,-59.5 parent: 2 - uid: 16087 @@ -137280,13 +136231,11 @@ entities: - uid: 16091 components: - type: Transform - rot: 3.141592653589793 rad pos: -123.5,-50.5 parent: 2 - uid: 16488 components: - type: Transform - rot: 3.141592653589793 rad pos: -137.5,-40.5 parent: 2 - uid: 16505 @@ -137302,7 +136251,6 @@ entities: - uid: 16695 components: - type: Transform - rot: -1.5707963267948966 rad pos: -129.5,-59.5 parent: 2 - uid: 16716 @@ -137323,13 +136271,11 @@ entities: - uid: 16906 components: - type: Transform - rot: 3.141592653589793 rad pos: -22.5,6.5 parent: 2 - uid: 17005 components: - type: Transform - rot: -1.5707963267948966 rad pos: -115.5,-36.5 parent: 2 - uid: 17075 @@ -137350,13 +136296,11 @@ entities: - uid: 17359 components: - type: Transform - rot: -1.5707963267948966 rad pos: -127.5,-59.5 parent: 2 - uid: 17513 components: - type: Transform - rot: 3.141592653589793 rad pos: -136.5,12.5 parent: 2 - uid: 17538 @@ -137372,7 +136316,6 @@ entities: - uid: 17742 components: - type: Transform - rot: -1.5707963267948966 rad pos: -89.5,-38.5 parent: 2 - uid: 18726 @@ -137383,37 +136326,31 @@ entities: - uid: 19623 components: - type: Transform - rot: 1.5707963267948966 rad pos: -114.5,-54.5 parent: 2 - uid: 19629 components: - type: Transform - rot: 1.5707963267948966 rad pos: -115.5,-54.5 parent: 2 - uid: 19750 components: - type: Transform - rot: 1.5707963267948966 rad pos: -113.5,-54.5 parent: 2 - uid: 19752 components: - type: Transform - rot: 3.141592653589793 rad pos: -69.5,-17.5 parent: 2 - uid: 19864 components: - type: Transform - rot: 3.141592653589793 rad pos: -67.5,-17.5 parent: 2 - uid: 20160 components: - type: Transform - rot: 3.141592653589793 rad pos: -139.5,-11.5 parent: 2 - uid: 20167 @@ -137424,13 +136361,11 @@ entities: - uid: 20277 components: - type: Transform - rot: 3.141592653589793 rad pos: -139.5,-9.5 parent: 2 - uid: 20319 components: - type: Transform - rot: 1.5707963267948966 rad pos: -57.5,-79.5 parent: 2 - uid: 20329 @@ -137441,31 +136376,26 @@ entities: - uid: 20445 components: - type: Transform - rot: -1.5707963267948966 rad pos: -119.5,37.5 parent: 2 - uid: 20449 components: - type: Transform - rot: -1.5707963267948966 rad pos: -122.5,36.5 parent: 2 - uid: 20450 components: - type: Transform - rot: -1.5707963267948966 rad pos: -122.5,37.5 parent: 2 - uid: 20456 components: - type: Transform - rot: -1.5707963267948966 rad pos: -121.5,37.5 parent: 2 - uid: 20466 components: - type: Transform - rot: -1.5707963267948966 rad pos: -120.5,37.5 parent: 2 - uid: 20736 @@ -137481,7 +136411,6 @@ entities: - uid: 20936 components: - type: Transform - rot: -1.5707963267948966 rad pos: -93.5,31.5 parent: 2 - uid: 21002 @@ -137527,7 +136456,6 @@ entities: - uid: 22904 components: - type: Transform - rot: 3.141592653589793 rad pos: -141.5,14.5 parent: 2 - uid: 22936 @@ -137553,25 +136481,21 @@ entities: - uid: 23504 components: - type: Transform - rot: -1.5707963267948966 rad pos: -95.5,31.5 parent: 2 - uid: 23751 components: - type: Transform - rot: 3.141592653589793 rad pos: -21.5,6.5 parent: 2 - uid: 23752 components: - type: Transform - rot: 3.141592653589793 rad pos: -20.5,6.5 parent: 2 - uid: 24036 components: - type: Transform - rot: 3.141592653589793 rad pos: -93.5,26.5 parent: 2 - uid: 24115 @@ -137602,13 +136526,11 @@ entities: - uid: 25403 components: - type: Transform - rot: -1.5707963267948966 rad pos: -113.5,-36.5 parent: 2 - uid: 25986 components: - type: Transform - rot: 1.5707963267948966 rad pos: -110.5,-45.5 parent: 2 - proto: RemoteSignaller @@ -138857,7 +137779,6 @@ entities: - uid: 4384 components: - type: Transform - rot: 3.141592653589793 rad pos: -42.5,-73.5 parent: 2 - proto: SignAi @@ -139564,6 +138485,8 @@ entities: - Off: Close - uid: 25663 components: + - type: MetaData + name: signal switch (Janitor Light) - type: Transform rot: 1.5707963267948966 rad pos: -93.5,-20.5 @@ -139573,6 +138496,10 @@ entities: 18983: - On: On - Off: Off + - type: Label + currentLabel: Janitor Light + - type: NameModifier + baseName: signal switch - proto: SignalSwitchDirectional entities: - uid: 280 @@ -143452,11 +142379,6 @@ entities: rot: 3.141592653589793 rad pos: -57.5,-61.5 parent: 2 - - uid: 20339 - components: - - type: Transform - pos: -43.5,-70.5 - parent: 2 - uid: 24105 components: - type: Transform @@ -144715,6 +143637,11 @@ entities: - type: Transform pos: -58.5,-9.5 parent: 2 + - uid: 12569 + components: + - type: Transform + pos: -26.5,-64.5 + parent: 2 - uid: 13419 components: - type: Transform @@ -144735,11 +143662,6 @@ entities: - type: Transform pos: -140.5,-48.5 parent: 2 - - uid: 16886 - components: - - type: Transform - pos: -24.5,-63.5 - parent: 2 - uid: 21736 components: - type: Transform @@ -146893,11 +145815,6 @@ entities: parent: 2 - proto: Table entities: - - uid: 505 - components: - - type: Transform - pos: -36.5,-17.5 - parent: 2 - uid: 699 components: - type: Transform @@ -146906,37 +145823,31 @@ entities: - uid: 703 components: - type: Transform - rot: -1.5707963267948966 rad pos: -116.5,-24.5 parent: 2 - uid: 834 components: - type: Transform - rot: -1.5707963267948966 rad pos: -115.5,-24.5 parent: 2 - uid: 835 components: - type: Transform - rot: 1.5707963267948966 rad pos: -141.5,-7.5 parent: 2 - uid: 837 components: - type: Transform - rot: 1.5707963267948966 rad pos: -140.5,-7.5 parent: 2 - uid: 842 components: - type: Transform - rot: 1.5707963267948966 rad pos: -139.5,-7.5 parent: 2 - uid: 973 components: - type: Transform - rot: 3.141592653589793 rad pos: -82.5,-47.5 parent: 2 - uid: 1121 @@ -146957,25 +145868,21 @@ entities: - uid: 1382 components: - type: Transform - rot: 1.5707963267948966 rad pos: -22.5,-36.5 parent: 2 - uid: 1392 components: - type: Transform - rot: 1.5707963267948966 rad pos: -23.5,-36.5 parent: 2 - uid: 1431 components: - type: Transform - rot: 1.5707963267948966 rad pos: -51.5,-33.5 parent: 2 - uid: 1446 components: - type: Transform - rot: 1.5707963267948966 rad pos: -53.5,-29.5 parent: 2 - uid: 1659 @@ -146991,19 +145898,16 @@ entities: - uid: 2299 components: - type: Transform - rot: -1.5707963267948966 rad pos: -127.5,-45.5 parent: 2 - uid: 2300 components: - type: Transform - rot: -1.5707963267948966 rad pos: -127.5,-44.5 parent: 2 - uid: 2393 components: - type: Transform - rot: -1.5707963267948966 rad pos: -80.5,-25.5 parent: 2 - uid: 2474 @@ -147029,7 +145933,6 @@ entities: - uid: 2548 components: - type: Transform - rot: 1.5707963267948966 rad pos: -96.5,-1.5 parent: 2 - uid: 2595 @@ -147040,7 +145943,6 @@ entities: - uid: 2613 components: - type: Transform - rot: -1.5707963267948966 rad pos: -113.5,-29.5 parent: 2 - uid: 2624 @@ -147066,13 +145968,11 @@ entities: - uid: 3338 components: - type: Transform - rot: -1.5707963267948966 rad pos: -17.5,-5.5 parent: 2 - uid: 3379 components: - type: Transform - rot: -1.5707963267948966 rad pos: -17.5,-4.5 parent: 2 - uid: 3397 @@ -147098,31 +145998,26 @@ entities: - uid: 3452 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,-33.5 parent: 2 - uid: 3453 components: - type: Transform - rot: 1.5707963267948966 rad pos: -53.5,-33.5 parent: 2 - uid: 3454 components: - type: Transform - rot: 1.5707963267948966 rad pos: -52.5,-33.5 parent: 2 - uid: 3457 components: - type: Transform - rot: 1.5707963267948966 rad pos: -53.5,-30.5 parent: 2 - uid: 3458 components: - type: Transform - rot: 1.5707963267948966 rad pos: -51.5,-31.5 parent: 2 - uid: 3488 @@ -147168,7 +146063,6 @@ entities: - uid: 3981 components: - type: Transform - rot: 1.5707963267948966 rad pos: -27.5,-25.5 parent: 2 - uid: 3984 @@ -147184,37 +146078,31 @@ entities: - uid: 4052 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,-36.5 parent: 2 - uid: 4053 components: - type: Transform - rot: 1.5707963267948966 rad pos: -22.5,-38.5 parent: 2 - uid: 4054 components: - type: Transform - rot: 1.5707963267948966 rad pos: -23.5,-38.5 parent: 2 - uid: 4057 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,-38.5 parent: 2 - uid: 4115 components: - type: Transform - rot: -1.5707963267948966 rad pos: -22.5,-46.5 parent: 2 - uid: 4117 components: - type: Transform - rot: -1.5707963267948966 rad pos: -21.5,-46.5 parent: 2 - uid: 4121 @@ -147230,7 +146118,6 @@ entities: - uid: 4138 components: - type: Transform - rot: 1.5707963267948966 rad pos: -34.5,-50.5 parent: 2 - uid: 4172 @@ -147251,73 +146138,61 @@ entities: - uid: 4179 components: - type: Transform - rot: -1.5707963267948966 rad pos: -22.5,-48.5 parent: 2 - uid: 4180 components: - type: Transform - rot: -1.5707963267948966 rad pos: -21.5,-48.5 parent: 2 - uid: 4262 components: - type: Transform - rot: 3.141592653589793 rad pos: -54.5,-70.5 parent: 2 - uid: 4291 components: - type: Transform - rot: 1.5707963267948966 rad pos: -71.5,-0.5 parent: 2 - uid: 4293 components: - type: Transform - rot: 1.5707963267948966 rad pos: -72.5,-0.5 parent: 2 - uid: 4294 components: - type: Transform - rot: 1.5707963267948966 rad pos: -73.5,-0.5 parent: 2 - uid: 4295 components: - type: Transform - rot: 1.5707963267948966 rad pos: -74.5,-0.5 parent: 2 - uid: 4296 components: - type: Transform - rot: 1.5707963267948966 rad pos: -71.5,-4.5 parent: 2 - uid: 4297 components: - type: Transform - rot: 1.5707963267948966 rad pos: -73.5,-4.5 parent: 2 - uid: 4298 components: - type: Transform - rot: 1.5707963267948966 rad pos: -74.5,-4.5 parent: 2 - uid: 4299 components: - type: Transform - rot: 1.5707963267948966 rad pos: -75.5,-4.5 parent: 2 - uid: 4300 components: - type: Transform - rot: 1.5707963267948966 rad pos: -72.5,-4.5 parent: 2 - uid: 4361 @@ -147353,7 +146228,6 @@ entities: - uid: 5351 components: - type: Transform - rot: 3.141592653589793 rad pos: -10.5,-0.5 parent: 2 - uid: 5641 @@ -147364,55 +146238,46 @@ entities: - uid: 5678 components: - type: Transform - rot: 3.141592653589793 rad pos: -115.5,12.5 parent: 2 - uid: 5679 components: - type: Transform - rot: 3.141592653589793 rad pos: -116.5,12.5 parent: 2 - uid: 5680 components: - type: Transform - rot: 3.141592653589793 rad pos: -117.5,12.5 parent: 2 - uid: 5732 components: - type: Transform - rot: 1.5707963267948966 rad pos: -115.5,-6.5 parent: 2 - uid: 5733 components: - type: Transform - rot: 1.5707963267948966 rad pos: -114.5,-6.5 parent: 2 - uid: 5734 components: - type: Transform - rot: 1.5707963267948966 rad pos: -113.5,-6.5 parent: 2 - uid: 5768 components: - type: Transform - rot: -1.5707963267948966 rad pos: -115.5,-20.5 parent: 2 - uid: 5771 components: - type: Transform - rot: -1.5707963267948966 rad pos: -115.5,-21.5 parent: 2 - uid: 5818 components: - type: Transform - rot: 1.5707963267948966 rad pos: -22.5,-28.5 parent: 2 - uid: 5833 @@ -147433,13 +146298,11 @@ entities: - uid: 5884 components: - type: Transform - rot: 3.141592653589793 rad pos: -116.5,-18.5 parent: 2 - uid: 5887 components: - type: Transform - rot: 3.141592653589793 rad pos: -116.5,-17.5 parent: 2 - uid: 5987 @@ -147480,19 +146343,16 @@ entities: - uid: 6466 components: - type: Transform - rot: 3.141592653589793 rad pos: -33.5,-27.5 parent: 2 - uid: 6467 components: - type: Transform - rot: 3.141592653589793 rad pos: -34.5,-27.5 parent: 2 - uid: 6468 components: - type: Transform - rot: 3.141592653589793 rad pos: -35.5,-27.5 parent: 2 - uid: 6474 @@ -147523,7 +146383,6 @@ entities: - uid: 6731 components: - type: Transform - rot: 1.5707963267948966 rad pos: -90.5,-31.5 parent: 2 - uid: 6839 @@ -147534,7 +146393,6 @@ entities: - uid: 6845 components: - type: Transform - rot: 1.5707963267948966 rad pos: -90.5,-30.5 parent: 2 - uid: 6853 @@ -147550,7 +146408,6 @@ entities: - uid: 6992 components: - type: Transform - rot: -1.5707963267948966 rad pos: -108.5,-48.5 parent: 2 - uid: 7097 @@ -147566,7 +146423,6 @@ entities: - uid: 7121 components: - type: Transform - rot: -1.5707963267948966 rad pos: -98.5,-1.5 parent: 2 - uid: 7328 @@ -147592,13 +146448,11 @@ entities: - uid: 7526 components: - type: Transform - rot: -1.5707963267948966 rad pos: -124.5,-55.5 parent: 2 - uid: 7598 components: - type: Transform - rot: 1.5707963267948966 rad pos: -134.5,-43.5 parent: 2 - uid: 7606 @@ -147614,13 +146468,11 @@ entities: - uid: 7754 components: - type: Transform - rot: 3.141592653589793 rad pos: -118.5,-40.5 parent: 2 - uid: 7865 components: - type: Transform - rot: 1.5707963267948966 rad pos: -122.5,-49.5 parent: 2 - uid: 7989 @@ -147646,13 +146498,11 @@ entities: - uid: 8274 components: - type: Transform - rot: -1.5707963267948966 rad pos: -22.5,17.5 parent: 2 - uid: 8338 components: - type: Transform - rot: 3.141592653589793 rad pos: -32.5,-21.5 parent: 2 - uid: 8344 @@ -147663,61 +146513,51 @@ entities: - uid: 8442 components: - type: Transform - rot: -1.5707963267948966 rad pos: -18.5,16.5 parent: 2 - uid: 8447 components: - type: Transform - rot: -1.5707963267948966 rad pos: -18.5,17.5 parent: 2 - uid: 8448 components: - type: Transform - rot: -1.5707963267948966 rad pos: -22.5,16.5 parent: 2 - uid: 8453 components: - type: Transform - rot: -1.5707963267948966 rad pos: -18.5,18.5 parent: 2 - uid: 8463 components: - type: Transform - rot: -1.5707963267948966 rad pos: -22.5,18.5 parent: 2 - uid: 8563 components: - type: Transform - rot: 3.141592653589793 rad pos: -10.5,-3.5 parent: 2 - uid: 8564 components: - type: Transform - rot: 3.141592653589793 rad pos: -11.5,-3.5 parent: 2 - uid: 8656 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,7.5 parent: 2 - uid: 8667 components: - type: Transform - rot: 3.141592653589793 rad pos: -23.5,4.5 parent: 2 - uid: 8668 components: - type: Transform - rot: 3.141592653589793 rad pos: -24.5,4.5 parent: 2 - uid: 8813 @@ -147738,31 +146578,26 @@ entities: - uid: 8864 components: - type: Transform - rot: 3.141592653589793 rad pos: -36.5,-54.5 parent: 2 - uid: 8865 components: - type: Transform - rot: 3.141592653589793 rad pos: -36.5,-53.5 parent: 2 - uid: 8866 components: - type: Transform - rot: 3.141592653589793 rad pos: -36.5,-52.5 parent: 2 - uid: 9028 components: - type: Transform - rot: -1.5707963267948966 rad pos: -89.5,-46.5 parent: 2 - uid: 9041 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,-67.5 parent: 2 - uid: 9051 @@ -147783,7 +146618,6 @@ entities: - uid: 9194 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,-66.5 parent: 2 - uid: 9312 @@ -147804,37 +146638,31 @@ entities: - uid: 9702 components: - type: Transform - rot: -1.5707963267948966 rad pos: -115.5,29.5 parent: 2 - uid: 9703 components: - type: Transform - rot: -1.5707963267948966 rad pos: -114.5,29.5 parent: 2 - uid: 9704 components: - type: Transform - rot: -1.5707963267948966 rad pos: -113.5,29.5 parent: 2 - uid: 9725 components: - type: Transform - rot: -1.5707963267948966 rad pos: -115.5,19.5 parent: 2 - uid: 9862 components: - type: Transform - rot: -1.5707963267948966 rad pos: -93.5,28.5 parent: 2 - uid: 10165 components: - type: Transform - rot: -1.5707963267948966 rad pos: -92.5,-47.5 parent: 2 - uid: 10180 @@ -147845,27 +146673,33 @@ entities: - uid: 10455 components: - type: Transform - rot: 3.141592653589793 rad pos: -37.5,-46.5 parent: 2 - uid: 11104 components: - type: Transform - rot: 1.5707963267948966 rad pos: -26.5,-32.5 parent: 2 - uid: 11106 components: - type: Transform - rot: 1.5707963267948966 rad pos: -22.5,-32.5 parent: 2 + - uid: 11422 + components: + - type: Transform + pos: -24.5,-64.5 + parent: 2 - uid: 11629 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,8.5 parent: 2 + - uid: 11809 + components: + - type: Transform + pos: -36.5,-17.5 + parent: 2 - uid: 13831 components: - type: Transform @@ -147884,55 +146718,46 @@ entities: - uid: 14047 components: - type: Transform - rot: 1.5707963267948966 rad pos: -66.5,-55.5 parent: 2 - uid: 14048 components: - type: Transform - rot: 1.5707963267948966 rad pos: -129.5,-33.5 parent: 2 - uid: 14098 components: - type: Transform - rot: 1.5707963267948966 rad pos: -66.5,-56.5 parent: 2 - uid: 14100 components: - type: Transform - rot: 1.5707963267948966 rad pos: -66.5,-54.5 parent: 2 - uid: 14209 components: - type: Transform - rot: -1.5707963267948966 rad pos: -113.5,-33.5 parent: 2 - uid: 14243 components: - type: Transform - rot: -1.5707963267948966 rad pos: -112.5,-29.5 parent: 2 - uid: 14245 components: - type: Transform - rot: -1.5707963267948966 rad pos: -111.5,-29.5 parent: 2 - uid: 14247 components: - type: Transform - rot: -1.5707963267948966 rad pos: -112.5,-33.5 parent: 2 - uid: 14251 components: - type: Transform - rot: -1.5707963267948966 rad pos: -111.5,-33.5 parent: 2 - uid: 14657 @@ -147943,27 +146768,28 @@ entities: - uid: 15332 components: - type: Transform - rot: 3.141592653589793 rad pos: -35.5,0.5 parent: 2 - uid: 15922 components: - type: Transform - rot: -1.5707963267948966 rad pos: -19.5,-52.5 parent: 2 - uid: 16290 components: - type: Transform - rot: -1.5707963267948966 rad pos: -19.5,-48.5 parent: 2 - uid: 16320 components: - type: Transform - rot: 3.141592653589793 rad pos: -83.5,-47.5 parent: 2 + - uid: 16459 + components: + - type: Transform + pos: -24.5,-63.5 + parent: 2 - uid: 16476 components: - type: Transform @@ -147984,11 +146810,6 @@ entities: - type: Transform pos: -45.5,-24.5 parent: 2 - - uid: 16625 - components: - - type: Transform - pos: -30.5,-65.5 - parent: 2 - uid: 16661 components: - type: Transform @@ -147997,14 +146818,8 @@ entities: - uid: 16806 components: - type: Transform - rot: -1.5707963267948966 rad pos: -129.5,-29.5 parent: 2 - - uid: 16945 - components: - - type: Transform - pos: -30.5,-64.5 - parent: 2 - uid: 16977 components: - type: Transform @@ -148013,19 +146828,16 @@ entities: - uid: 16998 components: - type: Transform - rot: -1.5707963267948966 rad pos: -96.5,35.5 parent: 2 - uid: 17000 components: - type: Transform - rot: -1.5707963267948966 rad pos: -129.5,-28.5 parent: 2 - uid: 17058 components: - type: Transform - rot: -1.5707963267948966 rad pos: -92.5,28.5 parent: 2 - uid: 17304 @@ -148036,37 +146848,31 @@ entities: - uid: 17433 components: - type: Transform - rot: -1.5707963267948966 rad pos: -127.5,-46.5 parent: 2 - uid: 17453 components: - type: Transform - rot: 1.5707963267948966 rad pos: -130.5,-58.5 parent: 2 - uid: 17527 components: - type: Transform - rot: 3.141592653589793 rad pos: -40.5,-20.5 parent: 2 - uid: 17535 components: - type: Transform - rot: 3.141592653589793 rad pos: -40.5,-21.5 parent: 2 - uid: 17801 components: - type: Transform - rot: 3.141592653589793 rad pos: -93.5,-31.5 parent: 2 - uid: 17802 components: - type: Transform - rot: 3.141592653589793 rad pos: -93.5,-32.5 parent: 2 - uid: 17821 @@ -148077,19 +146883,16 @@ entities: - uid: 18291 components: - type: Transform - rot: 1.5707963267948966 rad pos: -101.5,30.5 parent: 2 - uid: 18620 components: - type: Transform - rot: 3.141592653589793 rad pos: -54.5,-69.5 parent: 2 - uid: 18787 components: - type: Transform - rot: -1.5707963267948966 rad pos: -91.5,-61.5 parent: 2 - uid: 18788 @@ -148120,7 +146923,6 @@ entities: - uid: 19256 components: - type: Transform - rot: 1.5707963267948966 rad pos: -36.5,-25.5 parent: 2 - uid: 19332 @@ -148131,13 +146933,11 @@ entities: - uid: 19333 components: - type: Transform - rot: -1.5707963267948966 rad pos: -81.5,-25.5 parent: 2 - uid: 19539 components: - type: Transform - rot: 3.141592653589793 rad pos: -92.5,25.5 parent: 2 - uid: 19762 @@ -148163,7 +146963,6 @@ entities: - uid: 20504 components: - type: Transform - rot: 1.5707963267948966 rad pos: -70.5,-42.5 parent: 2 - uid: 20632 @@ -148209,7 +147008,6 @@ entities: - uid: 20958 components: - type: Transform - rot: 3.141592653589793 rad pos: -35.5,-46.5 parent: 2 - uid: 21674 @@ -148230,7 +147028,6 @@ entities: - uid: 22275 components: - type: Transform - rot: -1.5707963267948966 rad pos: -8.5,-18.5 parent: 2 - uid: 22298 @@ -148251,19 +147048,16 @@ entities: - uid: 22830 components: - type: Transform - rot: 1.5707963267948966 rad pos: -24.5,8.5 parent: 2 - uid: 22966 components: - type: Transform - rot: -1.5707963267948966 rad pos: -3.5,-6.5 parent: 2 - uid: 22967 components: - type: Transform - rot: -1.5707963267948966 rad pos: -2.5,-6.5 parent: 2 - uid: 23295 @@ -148274,13 +147068,11 @@ entities: - uid: 23340 components: - type: Transform - rot: 3.141592653589793 rad pos: -36.5,-46.5 parent: 2 - uid: 23443 components: - type: Transform - rot: 3.141592653589793 rad pos: -134.5,-1.5 parent: 2 - uid: 23456 @@ -148301,7 +147093,6 @@ entities: - uid: 24133 components: - type: Transform - rot: 3.141592653589793 rad pos: -119.5,33.5 parent: 2 - uid: 24367 @@ -148412,7 +147203,6 @@ entities: - uid: 24355 components: - type: Transform - rot: -1.5707963267948966 rad pos: -132.5,-28.5 parent: 2 - proto: TableFancyBlue @@ -148442,55 +147232,46 @@ entities: - uid: 323 components: - type: Transform - rot: 1.5707963267948966 rad pos: -56.5,-29.5 parent: 2 - uid: 324 components: - type: Transform - rot: 1.5707963267948966 rad pos: -56.5,-31.5 parent: 2 - uid: 327 components: - type: Transform - rot: 1.5707963267948966 rad pos: -56.5,-30.5 parent: 2 - uid: 328 components: - type: Transform - rot: 1.5707963267948966 rad pos: -56.5,-32.5 parent: 2 - uid: 329 components: - type: Transform - rot: 1.5707963267948966 rad pos: -37.5,-16.5 parent: 2 - uid: 330 components: - type: Transform - rot: 1.5707963267948966 rad pos: -38.5,-16.5 parent: 2 - uid: 1232 components: - type: Transform - rot: 1.5707963267948966 rad pos: -56.5,-23.5 parent: 2 - uid: 1578 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,11.5 parent: 2 - uid: 2070 components: - type: Transform - rot: -1.5707963267948966 rad pos: -109.5,-7.5 parent: 2 - uid: 2088 @@ -148501,20 +147282,25 @@ entities: - uid: 2092 components: - type: Transform - rot: -1.5707963267948966 rad pos: -110.5,-7.5 parent: 2 - uid: 2096 components: - type: Transform - rot: -1.5707963267948966 rad pos: -111.5,-7.5 parent: 2 - uid: 2410 components: + - type: MetaData + desc: You're not sure why this table is illegal, it just is. + name: syndicate reinforced table - type: Transform pos: -13.5,18.5 parent: 2 + - type: Contraband + allowedJobs: [] + allowedDepartments: [] + severity: Syndicate - uid: 2514 components: - type: Transform @@ -148578,7 +147364,6 @@ entities: - uid: 2715 components: - type: Transform - rot: -1.5707963267948966 rad pos: -54.5,3.5 parent: 2 - uid: 2924 @@ -148589,55 +147374,46 @@ entities: - uid: 3311 components: - type: Transform - rot: 1.5707963267948966 rad pos: -56.5,-22.5 parent: 2 - uid: 3406 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,-25.5 parent: 2 - uid: 3408 components: - type: Transform - rot: 1.5707963267948966 rad pos: -56.5,-21.5 parent: 2 - uid: 3896 components: - type: Transform - rot: 3.141592653589793 rad pos: -41.5,-38.5 parent: 2 - uid: 3918 components: - type: Transform - rot: 1.5707963267948966 rad pos: -38.5,-26.5 parent: 2 - uid: 4543 components: - type: Transform - rot: -1.5707963267948966 rad pos: -99.5,12.5 parent: 2 - uid: 4544 components: - type: Transform - rot: -1.5707963267948966 rad pos: -100.5,12.5 parent: 2 - uid: 5625 components: - type: Transform - rot: -1.5707963267948966 rad pos: -93.5,0.5 parent: 2 - uid: 5642 components: - type: Transform - rot: -1.5707963267948966 rad pos: -95.5,0.5 parent: 2 - uid: 5720 @@ -148658,43 +147434,36 @@ entities: - uid: 7117 components: - type: Transform - rot: -1.5707963267948966 rad pos: -94.5,0.5 parent: 2 - uid: 7292 components: - type: Transform - rot: 1.5707963267948966 rad pos: -119.5,-48.5 parent: 2 - uid: 7293 components: - type: Transform - rot: 1.5707963267948966 rad pos: -120.5,-48.5 parent: 2 - uid: 7294 components: - type: Transform - rot: 1.5707963267948966 rad pos: -121.5,-48.5 parent: 2 - uid: 7295 components: - type: Transform - rot: 1.5707963267948966 rad pos: -121.5,-42.5 parent: 2 - uid: 7296 components: - type: Transform - rot: 1.5707963267948966 rad pos: -120.5,-42.5 parent: 2 - uid: 7297 components: - type: Transform - rot: 1.5707963267948966 rad pos: -119.5,-42.5 parent: 2 - uid: 9336 @@ -148710,13 +147479,11 @@ entities: - uid: 10074 components: - type: Transform - rot: 1.5707963267948966 rad pos: -20.5,11.5 parent: 2 - uid: 10096 components: - type: Transform - rot: 1.5707963267948966 rad pos: -19.5,11.5 parent: 2 - uid: 11247 @@ -148727,7 +147494,6 @@ entities: - uid: 11612 components: - type: Transform - rot: -1.5707963267948966 rad pos: -27.5,6.5 parent: 2 - uid: 22697 @@ -148738,13 +147504,11 @@ entities: - uid: 23881 components: - type: Transform - rot: 3.141592653589793 rad pos: -20.5,-5.5 parent: 2 - uid: 23883 components: - type: Transform - rot: 3.141592653589793 rad pos: -20.5,-4.5 parent: 2 - uid: 24919 @@ -149713,13 +148477,11 @@ entities: - uid: 4375 components: - type: Transform - rot: -1.5707963267948966 rad pos: -114.5,-7.5 parent: 2 - uid: 4376 components: - type: Transform - rot: -1.5707963267948966 rad pos: -114.5,-13.5 parent: 2 - uid: 6522 @@ -149730,7 +148492,6 @@ entities: - uid: 6707 components: - type: Transform - rot: -1.5707963267948966 rad pos: -19.5,-28.5 parent: 2 - uid: 6842 @@ -149776,13 +148537,11 @@ entities: - uid: 11797 components: - type: Transform - rot: -1.5707963267948966 rad pos: -27.5,-36.5 parent: 2 - uid: 13229 components: - type: Transform - rot: -1.5707963267948966 rad pos: -19.5,-33.5 parent: 2 - uid: 17298 @@ -149793,13 +148552,11 @@ entities: - uid: 19403 components: - type: Transform - rot: -1.5707963267948966 rad pos: -56.5,-40.5 parent: 2 - uid: 23804 components: - type: Transform - rot: -1.5707963267948966 rad pos: -90.5,-48.5 parent: 2 - uid: 26064 @@ -149815,7 +148572,6 @@ entities: - uid: 26110 components: - type: Transform - rot: -1.5707963267948966 rad pos: -27.5,-38.5 parent: 2 - proto: ToiletDirtyWater @@ -150793,6 +149549,9 @@ entities: entities: - uid: 6076 components: + - type: MetaData + desc: Despite everything else being delapidated, this coffee machine is brand new. Still tastes like crap. + name: New Coffee Machine - type: Transform pos: -32.5,-46.5 parent: 2 @@ -150925,6 +149684,13 @@ entities: - type: Transform pos: -45.5,-18.5 parent: 2 +- proto: VendingMachinePride + entities: + - uid: 16887 + components: + - type: Transform + pos: -60.5,-58.5 + parent: 2 - proto: VendingMachinePwrGame entities: - uid: 9726 @@ -151067,11 +149833,6 @@ entities: parent: 2 - proto: VendingMachineWinter entities: - - uid: 3781 - components: - - type: Transform - pos: -60.5,-58.5 - parent: 2 - uid: 5123 components: - type: Transform @@ -151810,7 +150571,6 @@ entities: - uid: 366 components: - type: Transform - rot: 3.141592653589793 rad pos: -114.5,-32.5 parent: 2 - uid: 393 @@ -152036,7 +150796,6 @@ entities: - uid: 747 components: - type: Transform - rot: -1.5707963267948966 rad pos: -122.5,35.5 parent: 2 - uid: 750 @@ -152282,7 +151041,6 @@ entities: - uid: 986 components: - type: Transform - rot: -1.5707963267948966 rad pos: -109.5,-34.5 parent: 2 - uid: 1001 @@ -152458,7 +151216,6 @@ entities: - uid: 1240 components: - type: Transform - rot: 3.141592653589793 rad pos: -9.5,-4.5 parent: 2 - uid: 1249 @@ -152594,7 +151351,6 @@ entities: - uid: 1362 components: - type: Transform - rot: -1.5707963267948966 rad pos: -118.5,35.5 parent: 2 - uid: 1403 @@ -152665,7 +151421,6 @@ entities: - uid: 1637 components: - type: Transform - rot: -1.5707963267948966 rad pos: -149.5,-55.5 parent: 2 - uid: 1639 @@ -153031,49 +151786,41 @@ entities: - uid: 2387 components: - type: Transform - rot: 1.5707963267948966 rad pos: -129.5,-31.5 parent: 2 - uid: 2397 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-31.5 parent: 2 - uid: 2398 components: - type: Transform - rot: 1.5707963267948966 rad pos: -126.5,-31.5 parent: 2 - uid: 2399 components: - type: Transform - rot: 1.5707963267948966 rad pos: -131.5,-31.5 parent: 2 - uid: 2401 components: - type: Transform - rot: 1.5707963267948966 rad pos: -123.5,-31.5 parent: 2 - uid: 2402 components: - type: Transform - rot: 1.5707963267948966 rad pos: -127.5,-31.5 parent: 2 - uid: 2417 components: - type: Transform - rot: -1.5707963267948966 rad pos: -149.5,-54.5 parent: 2 - uid: 2473 components: - type: Transform - rot: -1.5707963267948966 rad pos: -152.5,-48.5 parent: 2 - uid: 2481 @@ -153234,25 +151981,21 @@ entities: - uid: 4323 components: - type: Transform - rot: 1.5707963267948966 rad pos: -109.5,-51.5 parent: 2 - uid: 4373 components: - type: Transform - rot: 1.5707963267948966 rad pos: -110.5,-51.5 parent: 2 - uid: 4417 components: - type: Transform - rot: 3.141592653589793 rad pos: -9.5,0.5 parent: 2 - uid: 4436 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,-77.5 parent: 2 - uid: 4524 @@ -153343,7 +152086,6 @@ entities: - uid: 4925 components: - type: Transform - rot: 1.5707963267948966 rad pos: -109.5,-39.5 parent: 2 - uid: 4931 @@ -153779,19 +152521,16 @@ entities: - uid: 6703 components: - type: Transform - rot: -1.5707963267948966 rad pos: -152.5,-42.5 parent: 2 - uid: 6732 components: - type: Transform - rot: -1.5707963267948966 rad pos: -108.5,-29.5 parent: 2 - uid: 6737 components: - type: Transform - rot: -1.5707963267948966 rad pos: -113.5,-34.5 parent: 2 - uid: 6753 @@ -153947,7 +152686,6 @@ entities: - uid: 7360 components: - type: Transform - rot: 1.5707963267948966 rad pos: -34.5,6.5 parent: 2 - uid: 7365 @@ -153968,55 +152706,46 @@ entities: - uid: 7470 components: - type: Transform - rot: -1.5707963267948966 rad pos: -133.5,-59.5 parent: 2 - uid: 7510 components: - type: Transform - rot: 1.5707963267948966 rad pos: -143.5,-49.5 parent: 2 - uid: 7515 components: - type: Transform - rot: 1.5707963267948966 rad pos: -140.5,-52.5 parent: 2 - uid: 7519 components: - type: Transform - rot: 1.5707963267948966 rad pos: -140.5,-50.5 parent: 2 - uid: 7520 components: - type: Transform - rot: 1.5707963267948966 rad pos: -143.5,-50.5 parent: 2 - uid: 7522 components: - type: Transform - rot: 1.5707963267948966 rad pos: -143.5,-51.5 parent: 2 - uid: 7523 components: - type: Transform - rot: 1.5707963267948966 rad pos: -143.5,-52.5 parent: 2 - uid: 7524 components: - type: Transform - rot: 1.5707963267948966 rad pos: -140.5,-51.5 parent: 2 - uid: 7528 components: - type: Transform - rot: 1.5707963267948966 rad pos: -135.5,-32.5 parent: 2 - uid: 7546 @@ -154027,49 +152756,41 @@ entities: - uid: 7551 components: - type: Transform - rot: 1.5707963267948966 rad pos: -138.5,-34.5 parent: 2 - uid: 7552 components: - type: Transform - rot: 1.5707963267948966 rad pos: -140.5,-35.5 parent: 2 - uid: 7557 components: - type: Transform - rot: 1.5707963267948966 rad pos: -139.5,-34.5 parent: 2 - uid: 7558 components: - type: Transform - rot: 1.5707963267948966 rad pos: -139.5,-35.5 parent: 2 - uid: 7565 components: - type: Transform - rot: 1.5707963267948966 rad pos: -142.5,-53.5 parent: 2 - uid: 7569 components: - type: Transform - rot: 1.5707963267948966 rad pos: -139.5,-55.5 parent: 2 - uid: 7623 components: - type: Transform - rot: 1.5707963267948966 rad pos: -140.5,-55.5 parent: 2 - uid: 7624 components: - type: Transform - rot: 1.5707963267948966 rad pos: -142.5,-49.5 parent: 2 - uid: 7646 @@ -154080,43 +152801,36 @@ entities: - uid: 7679 components: - type: Transform - rot: 1.5707963267948966 rad pos: -140.5,-53.5 parent: 2 - uid: 7700 components: - type: Transform - rot: 1.5707963267948966 rad pos: -143.5,-53.5 parent: 2 - uid: 7790 components: - type: Transform - rot: -1.5707963267948966 rad pos: -133.5,-37.5 parent: 2 - uid: 7819 components: - type: Transform - rot: 1.5707963267948966 rad pos: -137.5,-46.5 parent: 2 - uid: 7822 components: - type: Transform - rot: 1.5707963267948966 rad pos: -137.5,-44.5 parent: 2 - uid: 7823 components: - type: Transform - rot: 1.5707963267948966 rad pos: -137.5,-45.5 parent: 2 - uid: 7866 components: - type: Transform - rot: 1.5707963267948966 rad pos: -135.5,-33.5 parent: 2 - uid: 7907 @@ -154132,25 +152846,21 @@ entities: - uid: 8025 components: - type: Transform - rot: -1.5707963267948966 rad pos: -150.5,-49.5 parent: 2 - uid: 8026 components: - type: Transform - rot: -1.5707963267948966 rad pos: -149.5,-51.5 parent: 2 - uid: 8048 components: - type: Transform - rot: 1.5707963267948966 rad pos: -143.5,-39.5 parent: 2 - uid: 8050 components: - type: Transform - rot: -1.5707963267948966 rad pos: -145.5,-49.5 parent: 2 - uid: 8060 @@ -154186,73 +152896,61 @@ entities: - uid: 8078 components: - type: Transform - rot: -1.5707963267948966 rad pos: -151.5,-48.5 parent: 2 - uid: 8090 components: - type: Transform - rot: 1.5707963267948966 rad pos: -139.5,-43.5 parent: 2 - uid: 8091 components: - type: Transform - rot: 1.5707963267948966 rad pos: -139.5,-44.5 parent: 2 - uid: 8132 components: - type: Transform - rot: 1.5707963267948966 rad pos: -139.5,-45.5 parent: 2 - uid: 8133 components: - type: Transform - rot: 1.5707963267948966 rad pos: -139.5,-46.5 parent: 2 - uid: 8135 components: - type: Transform - rot: 1.5707963267948966 rad pos: -139.5,-48.5 parent: 2 - uid: 8136 components: - type: Transform - rot: 1.5707963267948966 rad pos: -139.5,-49.5 parent: 2 - uid: 8137 components: - type: Transform - rot: 1.5707963267948966 rad pos: -139.5,-42.5 parent: 2 - uid: 8139 components: - type: Transform - rot: 1.5707963267948966 rad pos: -143.5,-38.5 parent: 2 - uid: 8141 components: - type: Transform - rot: 1.5707963267948966 rad pos: -139.5,-37.5 parent: 2 - uid: 8144 components: - type: Transform - rot: 3.141592653589793 rad pos: -138.5,-55.5 parent: 2 - uid: 8146 components: - type: Transform - rot: 1.5707963267948966 rad pos: -143.5,-41.5 parent: 2 - uid: 8148 @@ -154263,37 +152961,31 @@ entities: - uid: 8149 components: - type: Transform - rot: 1.5707963267948966 rad pos: -143.5,-40.5 parent: 2 - uid: 8154 components: - type: Transform - rot: 1.5707963267948966 rad pos: -139.5,-47.5 parent: 2 - uid: 8180 components: - type: Transform - rot: 1.5707963267948966 rad pos: -142.5,-37.5 parent: 2 - uid: 8181 components: - type: Transform - rot: 1.5707963267948966 rad pos: -143.5,-37.5 parent: 2 - uid: 8183 components: - type: Transform - rot: -1.5707963267948966 rad pos: -149.5,-49.5 parent: 2 - uid: 8186 components: - type: Transform - rot: -1.5707963267948966 rad pos: -151.5,-49.5 parent: 2 - uid: 8187 @@ -154304,7 +152996,6 @@ entities: - uid: 8189 components: - type: Transform - rot: -1.5707963267948966 rad pos: -144.5,-49.5 parent: 2 - uid: 8223 @@ -154367,11 +153058,6 @@ entities: - type: Transform pos: -31.5,-43.5 parent: 2 - - uid: 8571 - components: - - type: Transform - pos: -41.5,-27.5 - parent: 2 - uid: 8575 components: - type: Transform @@ -154695,7 +153381,6 @@ entities: - uid: 10119 components: - type: Transform - rot: -1.5707963267948966 rad pos: -149.5,-52.5 parent: 2 - uid: 10140 @@ -154721,31 +153406,26 @@ entities: - uid: 10163 components: - type: Transform - rot: -1.5707963267948966 rad pos: -68.5,-8.5 parent: 2 - uid: 10173 components: - type: Transform - rot: -1.5707963267948966 rad pos: -17.5,-49.5 parent: 2 - uid: 10177 components: - type: Transform - rot: -1.5707963267948966 rad pos: -17.5,-53.5 parent: 2 - uid: 10195 components: - type: Transform - rot: 1.5707963267948966 rad pos: -87.5,1.5 parent: 2 - uid: 10437 components: - type: Transform - rot: -1.5707963267948966 rad pos: -149.5,-53.5 parent: 2 - uid: 10873 @@ -154761,7 +153441,6 @@ entities: - uid: 11094 components: - type: Transform - rot: -1.5707963267948966 rad pos: -149.5,-39.5 parent: 2 - uid: 11248 @@ -154772,19 +153451,16 @@ entities: - uid: 11711 components: - type: Transform - rot: -1.5707963267948966 rad pos: -99.5,24.5 parent: 2 - uid: 12143 components: - type: Transform - rot: -1.5707963267948966 rad pos: -99.5,28.5 parent: 2 - uid: 12144 components: - type: Transform - rot: -1.5707963267948966 rad pos: -99.5,29.5 parent: 2 - uid: 12872 @@ -154805,61 +153481,51 @@ entities: - uid: 13627 components: - type: Transform - rot: -1.5707963267948966 rad pos: -134.5,-37.5 parent: 2 - uid: 13630 components: - type: Transform - rot: 1.5707963267948966 rad pos: -134.5,-31.5 parent: 2 - uid: 13643 components: - type: Transform - rot: 1.5707963267948966 rad pos: -132.5,-31.5 parent: 2 - uid: 13645 components: - type: Transform - rot: 1.5707963267948966 rad pos: -130.5,-31.5 parent: 2 - uid: 13683 components: - type: Transform - rot: -1.5707963267948966 rad pos: -135.5,-37.5 parent: 2 - uid: 13684 components: - type: Transform - rot: 1.5707963267948966 rad pos: -133.5,-31.5 parent: 2 - uid: 13689 components: - type: Transform - rot: 1.5707963267948966 rad pos: -124.5,-31.5 parent: 2 - uid: 13698 components: - type: Transform - rot: 1.5707963267948966 rad pos: -123.5,-33.5 parent: 2 - uid: 13767 components: - type: Transform - rot: -1.5707963267948966 rad pos: -17.5,-54.5 parent: 2 - uid: 13819 components: - type: Transform - rot: 1.5707963267948966 rad pos: -142.5,-41.5 parent: 2 - uid: 13862 @@ -154870,37 +153536,31 @@ entities: - uid: 13868 components: - type: Transform - rot: -1.5707963267948966 rad pos: -145.5,-53.5 parent: 2 - uid: 13877 components: - type: Transform - rot: -1.5707963267948966 rad pos: -145.5,-35.5 parent: 2 - uid: 13881 components: - type: Transform - rot: 1.5707963267948966 rad pos: -140.5,-49.5 parent: 2 - uid: 13894 components: - type: Transform - rot: 3.141592653589793 rad pos: -135.5,-55.5 parent: 2 - uid: 13897 components: - type: Transform - rot: 3.141592653589793 rad pos: -136.5,-55.5 parent: 2 - uid: 13951 components: - type: Transform - rot: -1.5707963267948966 rad pos: -145.5,-37.5 parent: 2 - uid: 13961 @@ -154926,37 +153586,31 @@ entities: - uid: 14071 components: - type: Transform - rot: 1.5707963267948966 rad pos: -140.5,-37.5 parent: 2 - uid: 14078 components: - type: Transform - rot: 1.5707963267948966 rad pos: -139.5,-41.5 parent: 2 - uid: 14090 components: - type: Transform - rot: -1.5707963267948966 rad pos: -132.5,-59.5 parent: 2 - uid: 14106 components: - type: Transform - rot: -1.5707963267948966 rad pos: -128.5,-59.5 parent: 2 - uid: 14107 components: - type: Transform - rot: -1.5707963267948966 rad pos: -135.5,-59.5 parent: 2 - uid: 14108 components: - type: Transform - rot: -1.5707963267948966 rad pos: -134.5,-59.5 parent: 2 - uid: 14158 @@ -154977,7 +153631,6 @@ entities: - uid: 15023 components: - type: Transform - rot: -1.5707963267948966 rad pos: -99.5,32.5 parent: 2 - uid: 15223 @@ -155003,13 +153656,11 @@ entities: - uid: 15891 components: - type: Transform - rot: -1.5707963267948966 rad pos: -123.5,-59.5 parent: 2 - uid: 15915 components: - type: Transform - rot: -1.5707963267948966 rad pos: -124.5,-59.5 parent: 2 - uid: 15916 @@ -155025,7 +153676,6 @@ entities: - uid: 16236 components: - type: Transform - rot: -1.5707963267948966 rad pos: -145.5,-36.5 parent: 2 - uid: 16262 @@ -155036,7 +153686,6 @@ entities: - uid: 16447 components: - type: Transform - rot: 1.5707963267948966 rad pos: -135.5,-58.5 parent: 2 - uid: 16468 @@ -155117,13 +153766,11 @@ entities: - uid: 17028 components: - type: Transform - rot: 1.5707963267948966 rad pos: -83.5,3.5 parent: 2 - uid: 17046 components: - type: Transform - rot: 1.5707963267948966 rad pos: -83.5,1.5 parent: 2 - uid: 17191 @@ -155139,31 +153786,26 @@ entities: - uid: 17306 components: - type: Transform - rot: 3.141592653589793 rad pos: -137.5,-55.5 parent: 2 - uid: 17370 components: - type: Transform - rot: -1.5707963267948966 rad pos: -145.5,-52.5 parent: 2 - uid: 17373 components: - type: Transform - rot: -1.5707963267948966 rad pos: -145.5,-55.5 parent: 2 - uid: 17375 components: - type: Transform - rot: -1.5707963267948966 rad pos: -145.5,-39.5 parent: 2 - uid: 17376 components: - type: Transform - rot: -1.5707963267948966 rad pos: -145.5,-54.5 parent: 2 - uid: 17398 @@ -155174,13 +153816,11 @@ entities: - uid: 17428 components: - type: Transform - rot: 1.5707963267948966 rad pos: -135.5,-31.5 parent: 2 - uid: 17445 components: - type: Transform - rot: -1.5707963267948966 rad pos: -79.5,-33.5 parent: 2 - uid: 17585 @@ -155201,7 +153841,6 @@ entities: - uid: 18831 components: - type: Transform - rot: 1.5707963267948966 rad pos: -125.5,-31.5 parent: 2 - uid: 19576 @@ -155237,37 +153876,31 @@ entities: - uid: 20068 components: - type: Transform - rot: -1.5707963267948966 rad pos: -149.5,-38.5 parent: 2 - uid: 20078 components: - type: Transform - rot: -1.5707963267948966 rad pos: -149.5,-37.5 parent: 2 - uid: 20080 components: - type: Transform - rot: -1.5707963267948966 rad pos: -145.5,-38.5 parent: 2 - uid: 20084 components: - type: Transform - rot: -1.5707963267948966 rad pos: -149.5,-35.5 parent: 2 - uid: 20086 components: - type: Transform - rot: -1.5707963267948966 rad pos: -149.5,-36.5 parent: 2 - uid: 20087 components: - type: Transform - rot: -1.5707963267948966 rad pos: -145.5,-51.5 parent: 2 - uid: 20090 @@ -155293,7 +153926,6 @@ entities: - uid: 20282 components: - type: Transform - rot: -1.5707963267948966 rad pos: -113.5,-28.5 parent: 2 - uid: 20343 @@ -155314,19 +153946,16 @@ entities: - uid: 20421 components: - type: Transform - rot: 1.5707963267948966 rad pos: -126.5,-74.5 parent: 2 - uid: 20424 components: - type: Transform - rot: 1.5707963267948966 rad pos: -126.5,-76.5 parent: 2 - uid: 20547 components: - type: Transform - rot: 1.5707963267948966 rad pos: -110.5,-39.5 parent: 2 - uid: 20957 @@ -155337,7 +153966,6 @@ entities: - uid: 21421 components: - type: Transform - rot: -1.5707963267948966 rad pos: -108.5,-39.5 parent: 2 - uid: 21953 @@ -155428,7 +154056,6 @@ entities: - uid: 22435 components: - type: Transform - rot: -1.5707963267948966 rad pos: -108.5,-51.5 parent: 2 - uid: 22477 @@ -155439,7 +154066,6 @@ entities: - uid: 22480 components: - type: Transform - rot: -1.5707963267948966 rad pos: -124.5,-86.5 parent: 2 - uid: 22517 @@ -155555,7 +154181,6 @@ entities: - uid: 23015 components: - type: Transform - rot: -1.5707963267948966 rad pos: -116.5,-85.5 parent: 2 - uid: 23020 @@ -155591,7 +154216,6 @@ entities: - uid: 23100 components: - type: Transform - rot: -1.5707963267948966 rad pos: -125.5,-89.5 parent: 2 - uid: 23102 @@ -155657,13 +154281,11 @@ entities: - uid: 23398 components: - type: Transform - rot: -1.5707963267948966 rad pos: -116.5,-86.5 parent: 2 - uid: 23413 components: - type: Transform - rot: -1.5707963267948966 rad pos: -124.5,-85.5 parent: 2 - uid: 23423 @@ -155704,43 +154326,36 @@ entities: - uid: 23500 components: - type: Transform - rot: -1.5707963267948966 rad pos: -124.5,-89.5 parent: 2 - uid: 23517 components: - type: Transform - rot: -1.5707963267948966 rad pos: -126.5,-88.5 parent: 2 - uid: 23785 components: - type: Transform - rot: -1.5707963267948966 rad pos: -126.5,-87.5 parent: 2 - uid: 23810 components: - type: Transform - rot: -1.5707963267948966 rad pos: -115.5,-89.5 parent: 2 - uid: 23814 components: - type: Transform - rot: -1.5707963267948966 rad pos: -114.5,-88.5 parent: 2 - uid: 23815 components: - type: Transform - rot: -1.5707963267948966 rad pos: -114.5,-87.5 parent: 2 - uid: 23817 components: - type: Transform - rot: 1.5707963267948966 rad pos: -116.5,-70.5 parent: 2 - uid: 23818 @@ -155801,7 +154416,6 @@ entities: - uid: 23844 components: - type: Transform - rot: 1.5707963267948966 rad pos: -114.5,-70.5 parent: 2 - uid: 23849 @@ -155812,7 +154426,6 @@ entities: - uid: 24258 components: - type: Transform - rot: 1.5707963267948966 rad pos: -126.5,-70.5 parent: 2 - uid: 24280 @@ -155878,7 +154491,6 @@ entities: - uid: 24575 components: - type: Transform - rot: 1.5707963267948966 rad pos: -114.5,-74.5 parent: 2 - uid: 24576 @@ -155894,7 +154506,6 @@ entities: - uid: 24848 components: - type: Transform - rot: 1.5707963267948966 rad pos: -115.5,-66.5 parent: 2 - uid: 24850 @@ -155910,25 +154521,21 @@ entities: - uid: 24865 components: - type: Transform - rot: 1.5707963267948966 rad pos: -119.5,-64.5 parent: 2 - uid: 24868 components: - type: Transform - rot: 1.5707963267948966 rad pos: -124.5,-70.5 parent: 2 - uid: 24869 components: - type: Transform - rot: 1.5707963267948966 rad pos: -116.5,-74.5 parent: 2 - uid: 24870 components: - type: Transform - rot: 1.5707963267948966 rad pos: -124.5,-74.5 parent: 2 - uid: 24871 @@ -155939,19 +154546,16 @@ entities: - uid: 24879 components: - type: Transform - rot: 1.5707963267948966 rad pos: -123.5,-64.5 parent: 2 - uid: 24892 components: - type: Transform - rot: 1.5707963267948966 rad pos: -125.5,-69.5 parent: 2 - uid: 24893 components: - type: Transform - rot: 1.5707963267948966 rad pos: -115.5,-69.5 parent: 2 - uid: 24898 @@ -155977,7 +154581,6 @@ entities: - uid: 24908 components: - type: Transform - rot: 1.5707963267948966 rad pos: -121.5,-64.5 parent: 2 - uid: 24911 @@ -155988,13 +154591,11 @@ entities: - uid: 24916 components: - type: Transform - rot: 1.5707963267948966 rad pos: -116.5,-64.5 parent: 2 - uid: 24917 components: - type: Transform - rot: 1.5707963267948966 rad pos: -124.5,-66.5 parent: 2 - uid: 24918 @@ -156005,7 +154606,6 @@ entities: - uid: 24922 components: - type: Transform - rot: 1.5707963267948966 rad pos: -124.5,-64.5 parent: 2 - uid: 24970 @@ -156061,13 +154661,11 @@ entities: - uid: 25165 components: - type: Transform - rot: 1.5707963267948966 rad pos: -125.5,-66.5 parent: 2 - uid: 25166 components: - type: Transform - rot: 1.5707963267948966 rad pos: -115.5,-67.5 parent: 2 - uid: 25167 @@ -156083,37 +154681,31 @@ entities: - uid: 25186 components: - type: Transform - rot: 1.5707963267948966 rad pos: -116.5,-66.5 parent: 2 - uid: 25287 components: - type: Transform - rot: 1.5707963267948966 rad pos: -125.5,-92.5 parent: 2 - uid: 25291 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-75.5 parent: 2 - uid: 25296 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-69.5 parent: 2 - uid: 25312 components: - type: Transform - rot: 1.5707963267948966 rad pos: -115.5,-92.5 parent: 2 - uid: 25322 components: - type: Transform - rot: 1.5707963267948966 rad pos: -112.5,-89.5 parent: 2 - uid: 25326 @@ -156124,31 +154716,26 @@ entities: - uid: 25328 components: - type: Transform - rot: 1.5707963267948966 rad pos: -112.5,-69.5 parent: 2 - uid: 25334 components: - type: Transform - rot: 1.5707963267948966 rad pos: -112.5,-75.5 parent: 2 - uid: 25340 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-89.5 parent: 2 - uid: 25349 components: - type: Transform - rot: 1.5707963267948966 rad pos: -128.5,-82.5 parent: 2 - uid: 25350 components: - type: Transform - rot: 1.5707963267948966 rad pos: -112.5,-82.5 parent: 2 - uid: 25378 @@ -156341,7 +154928,6 @@ entities: - uid: 259 components: - type: Transform - rot: -1.5707963267948966 rad pos: -77.5,-39.5 parent: 2 - uid: 262 @@ -157467,7 +156053,6 @@ entities: - uid: 974 components: - type: Transform - rot: -1.5707963267948966 rad pos: -108.5,-34.5 parent: 2 - uid: 979 @@ -157628,7 +156213,6 @@ entities: - uid: 1085 components: - type: Transform - rot: -1.5707963267948966 rad pos: -112.5,-28.5 parent: 2 - uid: 1086 @@ -157694,7 +156278,6 @@ entities: - uid: 1151 components: - type: Transform - rot: -1.5707963267948966 rad pos: -114.5,-33.5 parent: 2 - uid: 1161 @@ -157705,7 +156288,6 @@ entities: - uid: 1207 components: - type: Transform - rot: 3.141592653589793 rad pos: -76.5,-25.5 parent: 2 - uid: 1234 @@ -157716,7 +156298,6 @@ entities: - uid: 1238 components: - type: Transform - rot: 3.141592653589793 rad pos: -9.5,-3.5 parent: 2 - uid: 1243 @@ -158062,7 +156643,6 @@ entities: - uid: 1406 components: - type: Transform - rot: 3.141592653589793 rad pos: -136.5,25.5 parent: 2 - uid: 1407 @@ -158138,7 +156718,6 @@ entities: - uid: 1442 components: - type: Transform - rot: -1.5707963267948966 rad pos: -118.5,37.5 parent: 2 - uid: 1443 @@ -158264,7 +156843,6 @@ entities: - uid: 1511 components: - type: Transform - rot: 3.141592653589793 rad pos: -9.5,-2.5 parent: 2 - uid: 1513 @@ -158375,7 +156953,6 @@ entities: - uid: 1590 components: - type: Transform - rot: -1.5707963267948966 rad pos: -117.5,-29.5 parent: 2 - uid: 1592 @@ -158386,7 +156963,6 @@ entities: - uid: 1594 components: - type: Transform - rot: -1.5707963267948966 rad pos: -114.5,-30.5 parent: 2 - uid: 1622 @@ -158782,7 +157358,6 @@ entities: - uid: 1991 components: - type: Transform - rot: -1.5707963267948966 rad pos: -114.5,-29.5 parent: 2 - uid: 1996 @@ -158793,7 +157368,6 @@ entities: - uid: 2000 components: - type: Transform - rot: -1.5707963267948966 rad pos: -89.5,-40.5 parent: 2 - uid: 2003 @@ -158819,7 +157393,6 @@ entities: - uid: 2050 components: - type: Transform - rot: -1.5707963267948966 rad pos: -89.5,-39.5 parent: 2 - uid: 2055 @@ -158830,7 +157403,6 @@ entities: - uid: 2058 components: - type: Transform - rot: -1.5707963267948966 rad pos: -89.5,-41.5 parent: 2 - uid: 2099 @@ -158851,7 +157423,6 @@ entities: - uid: 2127 components: - type: Transform - rot: -1.5707963267948966 rad pos: -115.5,-33.5 parent: 2 - uid: 2130 @@ -158927,19 +157498,16 @@ entities: - uid: 2262 components: - type: Transform - rot: -1.5707963267948966 rad pos: -135.5,-21.5 parent: 2 - uid: 2281 components: - type: Transform - rot: -1.5707963267948966 rad pos: -134.5,-30.5 parent: 2 - uid: 2303 components: - type: Transform - rot: -1.5707963267948966 rad pos: -134.5,-29.5 parent: 2 - uid: 2305 @@ -158960,7 +157528,6 @@ entities: - uid: 2318 components: - type: Transform - rot: 3.141592653589793 rad pos: -136.5,9.5 parent: 2 - uid: 2322 @@ -158976,13 +157543,11 @@ entities: - uid: 2342 components: - type: Transform - rot: 3.141592653589793 rad pos: -25.5,-58.5 parent: 2 - uid: 2343 components: - type: Transform - rot: -1.5707963267948966 rad pos: -138.5,7.5 parent: 2 - uid: 2344 @@ -158993,37 +157558,31 @@ entities: - uid: 2347 components: - type: Transform - rot: -1.5707963267948966 rad pos: -138.5,3.5 parent: 2 - uid: 2348 components: - type: Transform - rot: -1.5707963267948966 rad pos: -138.5,4.5 parent: 2 - uid: 2349 components: - type: Transform - rot: -1.5707963267948966 rad pos: -138.5,5.5 parent: 2 - uid: 2350 components: - type: Transform - rot: -1.5707963267948966 rad pos: -138.5,6.5 parent: 2 - uid: 2352 components: - type: Transform - rot: -1.5707963267948966 rad pos: -117.5,-30.5 parent: 2 - uid: 2358 components: - type: Transform - rot: 3.141592653589793 rad pos: -78.5,-25.5 parent: 2 - uid: 2370 @@ -159039,25 +157598,21 @@ entities: - uid: 2396 components: - type: Transform - rot: -1.5707963267948966 rad pos: -135.5,-29.5 parent: 2 - uid: 2437 components: - type: Transform - rot: 3.141592653589793 rad pos: -135.5,15.5 parent: 2 - uid: 2438 components: - type: Transform - rot: 3.141592653589793 rad pos: -135.5,19.5 parent: 2 - uid: 2587 components: - type: Transform - rot: -1.5707963267948966 rad pos: -116.5,-33.5 parent: 2 - uid: 2592 @@ -159068,13 +157623,11 @@ entities: - uid: 2596 components: - type: Transform - rot: -1.5707963267948966 rad pos: -86.5,-39.5 parent: 2 - uid: 2610 components: - type: Transform - rot: -1.5707963267948966 rad pos: -117.5,-32.5 parent: 2 - uid: 2618 @@ -159090,7 +157643,6 @@ entities: - uid: 2625 components: - type: Transform - rot: -1.5707963267948966 rad pos: -85.5,-40.5 parent: 2 - uid: 2636 @@ -159341,7 +157893,6 @@ entities: - uid: 3585 components: - type: Transform - rot: 1.5707963267948966 rad pos: -131.5,-7.5 parent: 2 - uid: 3597 @@ -159462,7 +158013,6 @@ entities: - uid: 3760 components: - type: Transform - rot: -1.5707963267948966 rad pos: -69.5,-69.5 parent: 2 - uid: 3765 @@ -159488,7 +158038,6 @@ entities: - uid: 3808 components: - type: Transform - rot: 1.5707963267948966 rad pos: -34.5,7.5 parent: 2 - uid: 3876 @@ -159559,13 +158108,11 @@ entities: - uid: 4283 components: - type: Transform - rot: -1.5707963267948966 rad pos: -117.5,-31.5 parent: 2 - uid: 4284 components: - type: Transform - rot: -1.5707963267948966 rad pos: -115.5,-29.5 parent: 2 - uid: 4322 @@ -159576,19 +158123,16 @@ entities: - uid: 4338 components: - type: Transform - rot: 1.5707963267948966 rad pos: -44.5,-77.5 parent: 2 - uid: 4377 components: - type: Transform - rot: 1.5707963267948966 rad pos: -42.5,-77.5 parent: 2 - uid: 4398 components: - type: Transform - rot: 1.5707963267948966 rad pos: -43.5,-77.5 parent: 2 - uid: 4432 @@ -159599,25 +158143,21 @@ entities: - uid: 4437 components: - type: Transform - rot: 1.5707963267948966 rad pos: -58.5,-76.5 parent: 2 - uid: 4438 components: - type: Transform - rot: 1.5707963267948966 rad pos: -58.5,-78.5 parent: 2 - uid: 4439 components: - type: Transform - rot: 1.5707963267948966 rad pos: -58.5,-79.5 parent: 2 - uid: 4446 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,-76.5 parent: 2 - uid: 4452 @@ -159638,7 +158178,6 @@ entities: - uid: 4566 components: - type: Transform - rot: 3.141592653589793 rad pos: -77.5,-25.5 parent: 2 - uid: 4606 @@ -159649,7 +158188,6 @@ entities: - uid: 4608 components: - type: Transform - rot: 1.5707963267948966 rad pos: -115.5,-7.5 parent: 2 - uid: 4612 @@ -159685,7 +158223,6 @@ entities: - uid: 4689 components: - type: Transform - rot: -1.5707963267948966 rad pos: -98.5,23.5 parent: 2 - uid: 4731 @@ -159746,7 +158283,6 @@ entities: - uid: 5224 components: - type: Transform - rot: 3.141592653589793 rad pos: -9.5,-1.5 parent: 2 - uid: 5276 @@ -159792,7 +158328,6 @@ entities: - uid: 5412 components: - type: Transform - rot: 3.141592653589793 rad pos: -135.5,20.5 parent: 2 - uid: 5430 @@ -159958,7 +158493,6 @@ entities: - uid: 5725 components: - type: Transform - rot: 3.141592653589793 rad pos: -135.5,14.5 parent: 2 - uid: 5726 @@ -160049,7 +158583,6 @@ entities: - uid: 5996 components: - type: Transform - rot: 3.141592653589793 rad pos: -135.5,21.5 parent: 2 - uid: 6010 @@ -160315,7 +158848,6 @@ entities: - uid: 6680 components: - type: Transform - rot: -1.5707963267948966 rad pos: -78.5,-43.5 parent: 2 - uid: 6692 @@ -160351,7 +158883,6 @@ entities: - uid: 6730 components: - type: Transform - rot: -1.5707963267948966 rad pos: -111.5,-34.5 parent: 2 - uid: 6735 @@ -160402,7 +158933,6 @@ entities: - uid: 6808 components: - type: Transform - rot: -1.5707963267948966 rad pos: -89.5,-43.5 parent: 2 - uid: 6811 @@ -160418,13 +158948,11 @@ entities: - uid: 6818 components: - type: Transform - rot: -1.5707963267948966 rad pos: -80.5,-43.5 parent: 2 - uid: 6820 components: - type: Transform - rot: -1.5707963267948966 rad pos: -81.5,-42.5 parent: 2 - uid: 6824 @@ -160435,19 +158963,16 @@ entities: - uid: 6826 components: - type: Transform - rot: -1.5707963267948966 rad pos: -84.5,-43.5 parent: 2 - uid: 6833 components: - type: Transform - rot: -1.5707963267948966 rad pos: -81.5,-39.5 parent: 2 - uid: 6857 components: - type: Transform - rot: 3.141592653589793 rad pos: -138.5,8.5 parent: 2 - uid: 6875 @@ -160503,7 +159028,6 @@ entities: - uid: 6945 components: - type: Transform - rot: 1.5707963267948966 rad pos: -34.5,8.5 parent: 2 - uid: 7017 @@ -160624,13 +159148,11 @@ entities: - uid: 7361 components: - type: Transform - rot: 1.5707963267948966 rad pos: -34.5,5.5 parent: 2 - uid: 7362 components: - type: Transform - rot: 1.5707963267948966 rad pos: -34.5,4.5 parent: 2 - uid: 7508 @@ -160641,7 +159163,6 @@ entities: - uid: 7669 components: - type: Transform - rot: 1.5707963267948966 rad pos: -34.5,3.5 parent: 2 - uid: 7904 @@ -160657,7 +159178,6 @@ entities: - uid: 7924 components: - type: Transform - rot: 3.141592653589793 rad pos: -39.5,-43.5 parent: 2 - uid: 7942 @@ -160700,11 +159220,6 @@ entities: - type: Transform pos: -16.5,-41.5 parent: 2 - - uid: 8573 - components: - - type: Transform - pos: -41.5,-28.5 - parent: 2 - uid: 8574 components: - type: Transform @@ -160718,25 +159233,21 @@ entities: - uid: 8581 components: - type: Transform - rot: 3.141592653589793 rad pos: -9.5,1.5 parent: 2 - uid: 8583 components: - type: Transform - rot: 3.141592653589793 rad pos: -9.5,-0.5 parent: 2 - uid: 8586 components: - type: Transform - rot: 3.141592653589793 rad pos: -9.5,3.5 parent: 2 - uid: 8587 components: - type: Transform - rot: 3.141592653589793 rad pos: -9.5,2.5 parent: 2 - uid: 8604 @@ -160752,7 +159263,6 @@ entities: - uid: 8680 components: - type: Transform - rot: 3.141592653589793 rad pos: -40.5,-40.5 parent: 2 - uid: 8682 @@ -160873,7 +159383,6 @@ entities: - uid: 9142 components: - type: Transform - rot: -1.5707963267948966 rad pos: -97.5,23.5 parent: 2 - uid: 9211 @@ -160899,31 +159408,26 @@ entities: - uid: 9366 components: - type: Transform - rot: -1.5707963267948966 rad pos: -82.5,-39.5 parent: 2 - uid: 9367 components: - type: Transform - rot: -1.5707963267948966 rad pos: -81.5,-41.5 parent: 2 - uid: 9373 components: - type: Transform - rot: -1.5707963267948966 rad pos: -84.5,-39.5 parent: 2 - uid: 9385 components: - type: Transform - rot: -1.5707963267948966 rad pos: -85.5,-42.5 parent: 2 - uid: 9387 components: - type: Transform - rot: -1.5707963267948966 rad pos: -88.5,-39.5 parent: 2 - uid: 9784 @@ -160934,19 +159438,16 @@ entities: - uid: 9975 components: - type: Transform - rot: 3.141592653589793 rad pos: -139.5,10.5 parent: 2 - uid: 10018 components: - type: Transform - rot: 3.141592653589793 rad pos: -139.5,14.5 parent: 2 - uid: 10032 components: - type: Transform - rot: 3.141592653589793 rad pos: -139.5,15.5 parent: 2 - uid: 10079 @@ -160967,7 +159468,6 @@ entities: - uid: 10088 components: - type: Transform - rot: 3.141592653589793 rad pos: -138.5,9.5 parent: 2 - uid: 10129 @@ -160988,7 +159488,6 @@ entities: - uid: 10183 components: - type: Transform - rot: -1.5707963267948966 rad pos: -17.5,-52.5 parent: 2 - uid: 10451 @@ -160999,31 +159498,26 @@ entities: - uid: 10561 components: - type: Transform - rot: -1.5707963267948966 rad pos: -99.5,36.5 parent: 2 - uid: 10748 components: - type: Transform - rot: -1.5707963267948966 rad pos: -99.5,30.5 parent: 2 - uid: 10752 components: - type: Transform - rot: -1.5707963267948966 rad pos: -99.5,31.5 parent: 2 - uid: 10800 components: - type: Transform - rot: -1.5707963267948966 rad pos: -99.5,23.5 parent: 2 - uid: 10862 components: - type: Transform - rot: -1.5707963267948966 rad pos: -99.5,35.5 parent: 2 - uid: 11036 @@ -161039,19 +159533,16 @@ entities: - uid: 11061 components: - type: Transform - rot: -1.5707963267948966 rad pos: -86.5,-43.5 parent: 2 - uid: 11066 components: - type: Transform - rot: -1.5707963267948966 rad pos: -81.5,-40.5 parent: 2 - uid: 11068 components: - type: Transform - rot: -1.5707963267948966 rad pos: -85.5,-43.5 parent: 2 - uid: 11075 @@ -161062,13 +159553,11 @@ entities: - uid: 11081 components: - type: Transform - rot: -1.5707963267948966 rad pos: -85.5,-41.5 parent: 2 - uid: 11083 components: - type: Transform - rot: -1.5707963267948966 rad pos: -81.5,-43.5 parent: 2 - uid: 11110 @@ -161096,10 +159585,14 @@ entities: - type: Transform pos: -96.5,36.5 parent: 2 + - uid: 11420 + components: + - type: Transform + pos: -41.5,-27.5 + parent: 2 - uid: 11636 components: - type: Transform - rot: -1.5707963267948966 rad pos: -99.5,27.5 parent: 2 - uid: 12003 @@ -161120,13 +159613,11 @@ entities: - uid: 12182 components: - type: Transform - rot: -1.5707963267948966 rad pos: -99.5,25.5 parent: 2 - uid: 12186 components: - type: Transform - rot: -1.5707963267948966 rad pos: -99.5,26.5 parent: 2 - uid: 12230 @@ -161162,19 +159653,16 @@ entities: - uid: 13714 components: - type: Transform - rot: -1.5707963267948966 rad pos: -112.5,-34.5 parent: 2 - uid: 13721 components: - type: Transform - rot: -1.5707963267948966 rad pos: -110.5,-34.5 parent: 2 - uid: 13746 components: - type: Transform - rot: -1.5707963267948966 rad pos: -17.5,-50.5 parent: 2 - uid: 13820 @@ -161190,7 +159678,6 @@ entities: - uid: 13990 components: - type: Transform - rot: 3.141592653589793 rad pos: -76.5,-34.5 parent: 2 - uid: 13992 @@ -161216,7 +159703,6 @@ entities: - uid: 14046 components: - type: Transform - rot: -1.5707963267948966 rad pos: -137.5,-23.5 parent: 2 - uid: 14187 @@ -161272,13 +159758,11 @@ entities: - uid: 14699 components: - type: Transform - rot: -1.5707963267948966 rad pos: -17.5,-51.5 parent: 2 - uid: 14700 components: - type: Transform - rot: -1.5707963267948966 rad pos: -17.5,-48.5 parent: 2 - uid: 15034 @@ -161334,19 +159818,16 @@ entities: - uid: 16002 components: - type: Transform - rot: -1.5707963267948966 rad pos: -114.5,-34.5 parent: 2 - uid: 16240 components: - type: Transform - rot: -1.5707963267948966 rad pos: -88.5,1.5 parent: 2 - uid: 16242 components: - type: Transform - rot: -1.5707963267948966 rad pos: -88.5,0.5 parent: 2 - uid: 16296 @@ -161357,7 +159838,6 @@ entities: - uid: 16334 components: - type: Transform - rot: -1.5707963267948966 rad pos: -109.5,-28.5 parent: 2 - uid: 16402 @@ -161368,31 +159848,26 @@ entities: - uid: 16417 components: - type: Transform - rot: -1.5707963267948966 rad pos: -89.5,-42.5 parent: 2 - uid: 16418 components: - type: Transform - rot: -1.5707963267948966 rad pos: -82.5,-43.5 parent: 2 - uid: 16422 components: - type: Transform - rot: -1.5707963267948966 rad pos: -85.5,-39.5 parent: 2 - uid: 16425 components: - type: Transform - rot: -1.5707963267948966 rad pos: -88.5,3.5 parent: 2 - uid: 16448 components: - type: Transform - rot: -1.5707963267948966 rad pos: -88.5,2.5 parent: 2 - uid: 16564 @@ -161463,19 +159938,16 @@ entities: - uid: 17084 components: - type: Transform - rot: 1.5707963267948966 rad pos: -83.5,0.5 parent: 2 - uid: 17086 components: - type: Transform - rot: 1.5707963267948966 rad pos: -87.5,0.5 parent: 2 - uid: 17087 components: - type: Transform - rot: 1.5707963267948966 rad pos: -87.5,2.5 parent: 2 - uid: 17117 @@ -161496,7 +159968,6 @@ entities: - uid: 17124 components: - type: Transform - rot: -1.5707963267948966 rad pos: -88.5,-43.5 parent: 2 - uid: 17132 @@ -161557,7 +160028,6 @@ entities: - uid: 17500 components: - type: Transform - rot: 3.141592653589793 rad pos: -77.5,-24.5 parent: 2 - uid: 17520 @@ -161573,7 +160043,6 @@ entities: - uid: 17625 components: - type: Transform - rot: 1.5707963267948966 rad pos: -12.5,-59.5 parent: 2 - uid: 17650 @@ -161589,37 +160058,31 @@ entities: - uid: 17904 components: - type: Transform - rot: -1.5707963267948966 rad pos: -107.5,-30.5 parent: 2 - uid: 18045 components: - type: Transform - rot: 3.141592653589793 rad pos: -139.5,12.5 parent: 2 - uid: 18061 components: - type: Transform - rot: 3.141592653589793 rad pos: -139.5,9.5 parent: 2 - uid: 18083 components: - type: Transform - rot: 1.5707963267948966 rad pos: -115.5,-13.5 parent: 2 - uid: 18114 components: - type: Transform - rot: -1.5707963267948966 rad pos: -108.5,-32.5 parent: 2 - uid: 18119 components: - type: Transform - rot: -1.5707963267948966 rad pos: -107.5,-32.5 parent: 2 - uid: 18149 @@ -161630,7 +160093,6 @@ entities: - uid: 18207 components: - type: Transform - rot: -1.5707963267948966 rad pos: -93.5,-35.5 parent: 2 - uid: 18374 @@ -161651,7 +160113,6 @@ entities: - uid: 18626 components: - type: Transform - rot: -1.5707963267948966 rad pos: -67.5,-69.5 parent: 2 - uid: 18685 @@ -161662,7 +160123,6 @@ entities: - uid: 18692 components: - type: Transform - rot: -1.5707963267948966 rad pos: -68.5,-69.5 parent: 2 - uid: 18749 @@ -161673,19 +160133,16 @@ entities: - uid: 18760 components: - type: Transform - rot: -1.5707963267948966 rad pos: -111.5,-28.5 parent: 2 - uid: 18778 components: - type: Transform - rot: -1.5707963267948966 rad pos: -78.5,-39.5 parent: 2 - uid: 18781 components: - type: Transform - rot: -1.5707963267948966 rad pos: -80.5,-39.5 parent: 2 - uid: 18909 @@ -161781,7 +160238,6 @@ entities: - uid: 19881 components: - type: Transform - rot: -1.5707963267948966 rad pos: -102.5,31.5 parent: 2 - uid: 20029 @@ -161792,7 +160248,6 @@ entities: - uid: 20223 components: - type: Transform - rot: -1.5707963267948966 rad pos: -114.5,-28.5 parent: 2 - uid: 20260 @@ -161868,19 +160323,16 @@ entities: - uid: 20324 components: - type: Transform - rot: 1.5707963267948966 rad pos: -45.5,-77.5 parent: 2 - uid: 20325 components: - type: Transform - rot: 1.5707963267948966 rad pos: -46.5,-77.5 parent: 2 - uid: 20327 components: - type: Transform - rot: 1.5707963267948966 rad pos: -41.5,-77.5 parent: 2 - uid: 20338 @@ -161946,19 +160398,16 @@ entities: - uid: 20729 components: - type: Transform - rot: -1.5707963267948966 rad pos: -108.5,-30.5 parent: 2 - uid: 20772 components: - type: Transform - rot: -1.5707963267948966 rad pos: -108.5,-28.5 parent: 2 - uid: 20773 components: - type: Transform - rot: -1.5707963267948966 rad pos: -108.5,-33.5 parent: 2 - uid: 20840 @@ -161999,19 +160448,16 @@ entities: - uid: 21803 components: - type: Transform - rot: 1.5707963267948966 rad pos: -132.5,-12.5 parent: 2 - uid: 21857 components: - type: Transform - rot: 1.5707963267948966 rad pos: -132.5,-8.5 parent: 2 - uid: 21858 components: - type: Transform - rot: 1.5707963267948966 rad pos: -132.5,-11.5 parent: 2 - uid: 21864 @@ -162052,13 +160498,11 @@ entities: - uid: 22102 components: - type: Transform - rot: 1.5707963267948966 rad pos: -75.5,-28.5 parent: 2 - uid: 22121 components: - type: Transform - rot: 1.5707963267948966 rad pos: -75.5,-30.5 parent: 2 - uid: 22145 @@ -162089,43 +160533,36 @@ entities: - uid: 22322 components: - type: Transform - rot: 3.141592653589793 rad pos: -95.5,-51.5 parent: 2 - uid: 22436 components: - type: Transform - rot: 1.5707963267948966 rad pos: -34.5,9.5 parent: 2 - uid: 22457 components: - type: Transform - rot: 3.141592653589793 rad pos: -131.5,23.5 parent: 2 - uid: 22461 components: - type: Transform - rot: 3.141592653589793 rad pos: -127.5,23.5 parent: 2 - uid: 22482 components: - type: Transform - rot: 3.141592653589793 rad pos: -135.5,9.5 parent: 2 - uid: 22811 components: - type: Transform - rot: -1.5707963267948966 rad pos: -89.5,-0.5 parent: 2 - uid: 22814 components: - type: Transform - rot: -1.5707963267948966 rad pos: -139.5,21.5 parent: 2 - uid: 22842 @@ -162146,19 +160583,16 @@ entities: - uid: 23117 components: - type: Transform - rot: -1.5707963267948966 rad pos: -139.5,24.5 parent: 2 - uid: 23118 components: - type: Transform - rot: -1.5707963267948966 rad pos: -138.5,21.5 parent: 2 - uid: 23152 components: - type: Transform - rot: 3.141592653589793 rad pos: -135.5,10.5 parent: 2 - uid: 23159 @@ -162184,7 +160618,6 @@ entities: - uid: 23711 components: - type: Transform - rot: 3.141592653589793 rad pos: -76.5,-27.5 parent: 2 - uid: 23837 @@ -162210,13 +160643,11 @@ entities: - uid: 23937 components: - type: Transform - rot: 3.141592653589793 rad pos: -40.5,-43.5 parent: 2 - uid: 23938 components: - type: Transform - rot: 3.141592653589793 rad pos: -40.5,-42.5 parent: 2 - uid: 23954 @@ -162232,13 +160663,11 @@ entities: - uid: 24002 components: - type: Transform - rot: -1.5707963267948966 rad pos: -82.5,6.5 parent: 2 - uid: 24108 components: - type: Transform - rot: -1.5707963267948966 rad pos: -78.5,-36.5 parent: 2 - uid: 24109 @@ -162274,13 +160703,11 @@ entities: - uid: 24335 components: - type: Transform - rot: -1.5707963267948966 rad pos: -78.5,-37.5 parent: 2 - uid: 24362 components: - type: Transform - rot: 3.141592653589793 rad pos: -79.5,-27.5 parent: 2 - uid: 24369 @@ -162296,7 +160723,6 @@ entities: - uid: 24436 components: - type: Transform - rot: 3.141592653589793 rad pos: -135.5,16.5 parent: 2 - uid: 24442 @@ -162307,13 +160733,11 @@ entities: - uid: 24466 components: - type: Transform - rot: 3.141592653589793 rad pos: -135.5,18.5 parent: 2 - uid: 24467 components: - type: Transform - rot: 3.141592653589793 rad pos: -133.5,23.5 parent: 2 - uid: 25782 @@ -162356,25 +160780,21 @@ entities: - uid: 3581 components: - type: Transform - rot: 3.141592653589793 rad pos: -44.5,-72.5 parent: 2 - uid: 4421 components: - type: Transform - rot: 3.141592653589793 rad pos: -44.5,-74.5 parent: 2 - uid: 4425 components: - type: Transform - rot: 3.141592653589793 rad pos: -43.5,-72.5 parent: 2 - uid: 4427 components: - type: Transform - rot: 3.141592653589793 rad pos: -43.5,-74.5 parent: 2 - proto: WallShuttleDiagonal @@ -162396,7 +160816,6 @@ entities: - uid: 72 components: - type: Transform - rot: 1.5707963267948966 rad pos: -73.5,-21.5 parent: 2 - uid: 267 @@ -162482,7 +160901,6 @@ entities: - uid: 799 components: - type: Transform - rot: 3.141592653589793 rad pos: -133.5,-55.5 parent: 2 - uid: 908 @@ -162503,7 +160921,6 @@ entities: - uid: 966 components: - type: Transform - rot: 3.141592653589793 rad pos: -26.5,-16.5 parent: 2 - uid: 1016 @@ -162769,7 +161186,6 @@ entities: - uid: 1661 components: - type: Transform - rot: 1.5707963267948966 rad pos: -48.5,-69.5 parent: 2 - uid: 1664 @@ -162820,7 +161236,6 @@ entities: - uid: 2167 components: - type: Transform - rot: 1.5707963267948966 rad pos: -48.5,-74.5 parent: 2 - uid: 2168 @@ -163041,7 +161456,6 @@ entities: - uid: 3340 components: - type: Transform - rot: 3.141592653589793 rad pos: -56.5,-68.5 parent: 2 - uid: 3360 @@ -163127,7 +161541,6 @@ entities: - uid: 3872 components: - type: Transform - rot: 3.141592653589793 rad pos: -17.5,-7.5 parent: 2 - uid: 4067 @@ -163138,13 +161551,11 @@ entities: - uid: 4125 components: - type: Transform - rot: 3.141592653589793 rad pos: -16.5,-1.5 parent: 2 - uid: 4557 components: - type: Transform - rot: 1.5707963267948966 rad pos: -71.5,-31.5 parent: 2 - uid: 4704 @@ -163165,7 +161576,6 @@ entities: - uid: 5118 components: - type: Transform - rot: 1.5707963267948966 rad pos: -131.5,-33.5 parent: 2 - uid: 5618 @@ -163206,7 +161616,6 @@ entities: - uid: 7531 components: - type: Transform - rot: 1.5707963267948966 rad pos: -133.5,-34.5 parent: 2 - uid: 7532 @@ -163217,7 +161626,6 @@ entities: - uid: 7811 components: - type: Transform - rot: 3.141592653589793 rad pos: -16.5,-4.5 parent: 2 - uid: 7860 @@ -163268,7 +161676,6 @@ entities: - uid: 8548 components: - type: Transform - rot: -1.5707963267948966 rad pos: -92.5,31.5 parent: 2 - uid: 8699 @@ -163534,7 +161941,6 @@ entities: - uid: 12572 components: - type: Transform - rot: 3.141592653589793 rad pos: -13.5,-0.5 parent: 2 - uid: 12709 @@ -163570,37 +161976,31 @@ entities: - uid: 13230 components: - type: Transform - rot: -1.5707963267948966 rad pos: -113.5,23.5 parent: 2 - uid: 13232 components: - type: Transform - rot: -1.5707963267948966 rad pos: -106.5,26.5 parent: 2 - uid: 13233 components: - type: Transform - rot: -1.5707963267948966 rad pos: -114.5,20.5 parent: 2 - uid: 13234 components: - type: Transform - rot: -1.5707963267948966 rad pos: -110.5,26.5 parent: 2 - uid: 13235 components: - type: Transform - rot: -1.5707963267948966 rad pos: -111.5,30.5 parent: 2 - uid: 13236 components: - type: Transform - rot: -1.5707963267948966 rad pos: -105.5,30.5 parent: 2 - uid: 13515 @@ -163621,13 +162021,11 @@ entities: - uid: 13626 components: - type: Transform - rot: 1.5707963267948966 rad pos: -133.5,-33.5 parent: 2 - uid: 14065 components: - type: Transform - rot: 1.5707963267948966 rad pos: -132.5,-33.5 parent: 2 - uid: 14586 @@ -163643,7 +162041,6 @@ entities: - uid: 15006 components: - type: Transform - rot: 1.5707963267948966 rad pos: -71.5,-35.5 parent: 2 - uid: 15213 @@ -163666,6 +162063,11 @@ entities: - type: Transform pos: -87.5,13.5 parent: 2 + - uid: 16405 + components: + - type: Transform + pos: -43.5,-70.5 + parent: 2 - uid: 16568 components: - type: Transform @@ -163674,19 +162076,16 @@ entities: - uid: 16703 components: - type: Transform - rot: 1.5707963267948966 rad pos: -133.5,-35.5 parent: 2 - uid: 16704 components: - type: Transform - rot: 3.141592653589793 rad pos: -133.5,-56.5 parent: 2 - uid: 16842 components: - type: Transform - rot: 1.5707963267948966 rad pos: -133.5,-58.5 parent: 2 - uid: 17096 @@ -163702,19 +162101,16 @@ entities: - uid: 17305 components: - type: Transform - rot: -1.5707963267948966 rad pos: -139.5,-53.5 parent: 2 - uid: 17371 components: - type: Transform - rot: -1.5707963267948966 rad pos: -131.5,-55.5 parent: 2 - uid: 17372 components: - type: Transform - rot: -1.5707963267948966 rad pos: -131.5,-54.5 parent: 2 - uid: 17541 @@ -163725,7 +162121,6 @@ entities: - uid: 18365 components: - type: Transform - rot: 1.5707963267948966 rad pos: -133.5,-36.5 parent: 2 - uid: 21714 @@ -163746,31 +162141,26 @@ entities: - uid: 23337 components: - type: Transform - rot: 1.5707963267948966 rad pos: -66.5,-36.5 parent: 2 - uid: 23341 components: - type: Transform - rot: 1.5707963267948966 rad pos: -69.5,-28.5 parent: 2 - uid: 23364 components: - type: Transform - rot: 1.5707963267948966 rad pos: -66.5,-27.5 parent: 2 - uid: 23506 components: - type: Transform - rot: -1.5707963267948966 rad pos: -103.5,27.5 parent: 2 - uid: 23706 components: - type: Transform - rot: 1.5707963267948966 rad pos: -72.5,-23.5 parent: 2 - uid: 23820 @@ -163788,13 +162178,11 @@ entities: - uid: 281 components: - type: Transform - rot: 3.141592653589793 rad pos: -104.5,16.5 parent: 2 - uid: 376 components: - type: Transform - rot: 1.5707963267948966 rad pos: -104.5,12.5 parent: 2 - uid: 412 @@ -163815,7 +162203,6 @@ entities: - uid: 720 components: - type: Transform - rot: 1.5707963267948966 rad pos: -106.5,-21.5 parent: 2 - uid: 811 @@ -163866,7 +162253,6 @@ entities: - uid: 1302 components: - type: Transform - rot: 3.141592653589793 rad pos: -66.5,-67.5 parent: 2 - uid: 1422 @@ -163887,7 +162273,6 @@ entities: - uid: 1704 components: - type: Transform - rot: 3.141592653589793 rad pos: -108.5,-35.5 parent: 2 - uid: 1706 @@ -163943,19 +162328,16 @@ entities: - uid: 2366 components: - type: Transform - rot: 3.141592653589793 rad pos: -108.5,-37.5 parent: 2 - uid: 2368 components: - type: Transform - rot: 3.141592653589793 rad pos: -108.5,-36.5 parent: 2 - uid: 2371 components: - type: Transform - rot: 3.141592653589793 rad pos: -107.5,-36.5 parent: 2 - uid: 2523 @@ -164001,187 +162383,156 @@ entities: - uid: 2645 components: - type: Transform - rot: 3.141592653589793 rad pos: -99.5,-67.5 parent: 2 - uid: 2646 components: - type: Transform - rot: 3.141592653589793 rad pos: -98.5,-67.5 parent: 2 - uid: 2651 components: - type: Transform - rot: 3.141592653589793 rad pos: -97.5,-67.5 parent: 2 - uid: 3314 components: - type: Transform - rot: -1.5707963267948966 rad pos: -71.5,-78.5 parent: 2 - uid: 3727 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,-62.5 parent: 2 - uid: 3729 components: - type: Transform - rot: -1.5707963267948966 rad pos: -71.5,-76.5 parent: 2 - uid: 3730 components: - type: Transform - rot: -1.5707963267948966 rad pos: -95.5,-54.5 parent: 2 - uid: 3741 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,-60.5 parent: 2 - uid: 3752 components: - type: Transform - rot: -1.5707963267948966 rad pos: -65.5,-71.5 parent: 2 - uid: 3753 components: - type: Transform - rot: -1.5707963267948966 rad pos: -70.5,-70.5 parent: 2 - uid: 3757 components: - type: Transform - rot: -1.5707963267948966 rad pos: -70.5,-69.5 parent: 2 - uid: 3758 components: - type: Transform - rot: -1.5707963267948966 rad pos: -65.5,-72.5 parent: 2 - uid: 3761 components: - type: Transform - rot: -1.5707963267948966 rad pos: -71.5,-70.5 parent: 2 - uid: 3764 components: - type: Transform - rot: -1.5707963267948966 rad pos: -71.5,-71.5 parent: 2 - uid: 3817 components: - type: Transform - rot: -1.5707963267948966 rad pos: -70.5,-24.5 parent: 2 - uid: 3863 components: - type: Transform - rot: 3.141592653589793 rad pos: -71.5,-33.5 parent: 2 - uid: 3945 components: - type: Transform - rot: 3.141592653589793 rad pos: -71.5,-32.5 parent: 2 - uid: 3961 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,-63.5 parent: 2 - uid: 3965 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,-61.5 parent: 2 - uid: 3994 components: - type: Transform - rot: 3.141592653589793 rad pos: -20.5,-1.5 parent: 2 - uid: 4007 components: - type: Transform - rot: 3.141592653589793 rad pos: -16.5,-5.5 parent: 2 - uid: 4090 components: - type: Transform - rot: -1.5707963267948966 rad pos: -66.5,-69.5 parent: 2 - uid: 4097 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,-64.5 parent: 2 - uid: 4249 components: - type: Transform - rot: 3.141592653589793 rad pos: -58.5,-63.5 parent: 2 - uid: 4547 components: - type: Transform - rot: -1.5707963267948966 rad pos: -56.5,-62.5 parent: 2 - uid: 4559 components: - type: Transform - rot: 3.141592653589793 rad pos: -71.5,-34.5 parent: 2 - uid: 4561 components: - type: Transform - rot: 3.141592653589793 rad pos: -108.5,-38.5 parent: 2 - uid: 4655 components: - type: Transform - rot: -1.5707963267948966 rad pos: -103.5,21.5 parent: 2 - uid: 4827 components: - type: Transform - rot: 3.141592653589793 rad pos: -57.5,-63.5 parent: 2 - uid: 5741 components: - type: Transform - rot: 3.141592653589793 rad pos: -96.5,26.5 parent: 2 - uid: 6886 components: - type: Transform - rot: 1.5707963267948966 rad pos: -75.5,-58.5 parent: 2 - uid: 7084 @@ -164372,13 +162723,11 @@ entities: - uid: 7481 components: - type: Transform - rot: -1.5707963267948966 rad pos: -71.5,-73.5 parent: 2 - uid: 7488 components: - type: Transform - rot: -1.5707963267948966 rad pos: -71.5,-75.5 parent: 2 - uid: 7489 @@ -164419,13 +162768,11 @@ entities: - uid: 7574 components: - type: Transform - rot: -1.5707963267948966 rad pos: -71.5,-74.5 parent: 2 - uid: 7575 components: - type: Transform - rot: -1.5707963267948966 rad pos: -71.5,-72.5 parent: 2 - uid: 7678 @@ -164436,7 +162783,6 @@ entities: - uid: 7801 components: - type: Transform - rot: 3.141592653589793 rad pos: -24.5,0.5 parent: 2 - uid: 7812 @@ -164482,7 +162828,6 @@ entities: - uid: 8500 components: - type: Transform - rot: 3.141592653589793 rad pos: -66.5,-68.5 parent: 2 - uid: 8520 @@ -164518,7 +162863,6 @@ entities: - uid: 8672 components: - type: Transform - rot: 3.141592653589793 rad pos: -96.5,31.5 parent: 2 - uid: 8698 @@ -164749,7 +163093,6 @@ entities: - uid: 9311 components: - type: Transform - rot: 1.5707963267948966 rad pos: -71.5,-64.5 parent: 2 - uid: 9313 @@ -165300,7 +163643,6 @@ entities: - uid: 10262 components: - type: Transform - rot: -1.5707963267948966 rad pos: -72.5,-60.5 parent: 2 - uid: 10351 @@ -165316,19 +163658,16 @@ entities: - uid: 10592 components: - type: Transform - rot: 3.141592653589793 rad pos: -71.5,-36.5 parent: 2 - uid: 10758 components: - type: Transform - rot: 1.5707963267948966 rad pos: -71.5,-23.5 parent: 2 - uid: 10785 components: - type: Transform - rot: 1.5707963267948966 rad pos: -103.5,23.5 parent: 2 - uid: 11002 @@ -165359,7 +163698,6 @@ entities: - uid: 11063 components: - type: Transform - rot: 3.141592653589793 rad pos: -104.5,14.5 parent: 2 - uid: 11093 @@ -165425,7 +163763,6 @@ entities: - uid: 11650 components: - type: Transform - rot: 1.5707963267948966 rad pos: -103.5,25.5 parent: 2 - uid: 11709 @@ -165486,13 +163823,11 @@ entities: - uid: 11892 components: - type: Transform - rot: -1.5707963267948966 rad pos: -66.5,-33.5 parent: 2 - uid: 11894 components: - type: Transform - rot: 1.5707963267948966 rad pos: -101.5,25.5 parent: 2 - uid: 12146 @@ -165603,7 +163938,6 @@ entities: - uid: 12596 components: - type: Transform - rot: 1.5707963267948966 rad pos: -73.5,-23.5 parent: 2 - uid: 12669 @@ -165674,31 +164008,26 @@ entities: - uid: 13237 components: - type: Transform - rot: -1.5707963267948966 rad pos: -111.5,23.5 parent: 2 - uid: 13238 components: - type: Transform - rot: -1.5707963267948966 rad pos: -106.5,21.5 parent: 2 - uid: 13239 components: - type: Transform - rot: -1.5707963267948966 rad pos: -106.5,23.5 parent: 2 - uid: 13286 components: - type: Transform - rot: -1.5707963267948966 rad pos: -106.5,22.5 parent: 2 - uid: 13288 components: - type: Transform - rot: -1.5707963267948966 rad pos: -106.5,20.5 parent: 2 - uid: 13469 @@ -165709,7 +164038,6 @@ entities: - uid: 13512 components: - type: Transform - rot: -1.5707963267948966 rad pos: -114.5,23.5 parent: 2 - uid: 13517 @@ -165725,19 +164053,16 @@ entities: - uid: 14189 components: - type: Transform - rot: -1.5707963267948966 rad pos: -65.5,-64.5 parent: 2 - uid: 14300 components: - type: Transform - rot: 3.141592653589793 rad pos: -71.5,-30.5 parent: 2 - uid: 14301 components: - type: Transform - rot: 3.141592653589793 rad pos: -71.5,-28.5 parent: 2 - uid: 14497 @@ -165753,7 +164078,6 @@ entities: - uid: 14533 components: - type: Transform - rot: 1.5707963267948966 rad pos: -92.5,1.5 parent: 2 - uid: 14576 @@ -165774,19 +164098,16 @@ entities: - uid: 14651 components: - type: Transform - rot: -1.5707963267948966 rad pos: -31.5,3.5 parent: 2 - uid: 14731 components: - type: Transform - rot: -1.5707963267948966 rad pos: -65.5,-78.5 parent: 2 - uid: 14733 components: - type: Transform - rot: -1.5707963267948966 rad pos: -65.5,-77.5 parent: 2 - uid: 14768 @@ -165797,13 +164118,11 @@ entities: - uid: 14830 components: - type: Transform - rot: 3.141592653589793 rad pos: -71.5,-29.5 parent: 2 - uid: 14976 components: - type: Transform - rot: -1.5707963267948966 rad pos: -108.5,23.5 parent: 2 - uid: 15047 @@ -165814,7 +164133,6 @@ entities: - uid: 15092 components: - type: Transform - rot: -1.5707963267948966 rad pos: -107.5,23.5 parent: 2 - uid: 15284 @@ -165830,49 +164148,41 @@ entities: - uid: 15349 components: - type: Transform - rot: -1.5707963267948966 rad pos: -110.5,23.5 parent: 2 - uid: 15448 components: - type: Transform - rot: -1.5707963267948966 rad pos: -112.5,23.5 parent: 2 - uid: 15682 components: - type: Transform - rot: -1.5707963267948966 rad pos: -66.5,-28.5 parent: 2 - uid: 15683 components: - type: Transform - rot: -1.5707963267948966 rad pos: -66.5,-24.5 parent: 2 - uid: 15685 components: - type: Transform - rot: -1.5707963267948966 rad pos: -70.5,-28.5 parent: 2 - uid: 15692 components: - type: Transform - rot: -1.5707963267948966 rad pos: -70.5,-34.5 parent: 2 - uid: 15694 components: - type: Transform - rot: -1.5707963267948966 rad pos: -70.5,-26.5 parent: 2 - uid: 15773 components: - type: Transform - rot: -1.5707963267948966 rad pos: -114.5,21.5 parent: 2 - uid: 15924 @@ -165903,7 +164213,6 @@ entities: - uid: 15998 components: - type: Transform - rot: -1.5707963267948966 rad pos: -56.5,-63.5 parent: 2 - uid: 16012 @@ -165989,7 +164298,6 @@ entities: - uid: 16172 components: - type: Transform - rot: -1.5707963267948966 rad pos: -90.5,1.5 parent: 2 - uid: 16185 @@ -166010,7 +164318,6 @@ entities: - uid: 16211 components: - type: Transform - rot: -1.5707963267948966 rad pos: -90.5,0.5 parent: 2 - uid: 16215 @@ -166021,7 +164328,6 @@ entities: - uid: 16225 components: - type: Transform - rot: -1.5707963267948966 rad pos: -90.5,-0.5 parent: 2 - uid: 16228 @@ -166172,7 +164478,6 @@ entities: - uid: 16424 components: - type: Transform - rot: -1.5707963267948966 rad pos: -90.5,2.5 parent: 2 - uid: 16469 @@ -166308,7 +164613,6 @@ entities: - uid: 16570 components: - type: Transform - rot: -1.5707963267948966 rad pos: -114.5,22.5 parent: 2 - uid: 16571 @@ -166459,7 +164763,6 @@ entities: - uid: 16855 components: - type: Transform - rot: -1.5707963267948966 rad pos: -107.5,26.5 parent: 2 - uid: 16865 @@ -166475,7 +164778,6 @@ entities: - uid: 16873 components: - type: Transform - rot: -1.5707963267948966 rad pos: -108.5,26.5 parent: 2 - uid: 16874 @@ -166546,7 +164848,6 @@ entities: - uid: 17013 components: - type: Transform - rot: 1.5707963267948966 rad pos: -72.5,-64.5 parent: 2 - uid: 17014 @@ -166647,7 +164948,6 @@ entities: - uid: 17126 components: - type: Transform - rot: 1.5707963267948966 rad pos: -75.5,-54.5 parent: 2 - uid: 17139 @@ -166733,13 +165033,11 @@ entities: - uid: 17233 components: - type: Transform - rot: 1.5707963267948966 rad pos: -75.5,-64.5 parent: 2 - uid: 17235 components: - type: Transform - rot: 1.5707963267948966 rad pos: -75.5,-59.5 parent: 2 - uid: 17256 @@ -166750,13 +165048,11 @@ entities: - uid: 17345 components: - type: Transform - rot: 1.5707963267948966 rad pos: -70.5,-64.5 parent: 2 - uid: 17414 components: - type: Transform - rot: -1.5707963267948966 rad pos: -111.5,26.5 parent: 2 - uid: 17517 @@ -166767,37 +165063,31 @@ entities: - uid: 17843 components: - type: Transform - rot: 1.5707963267948966 rad pos: -69.5,-64.5 parent: 2 - uid: 18150 components: - type: Transform - rot: -1.5707963267948966 rad pos: -106.5,27.5 parent: 2 - uid: 18151 components: - type: Transform - rot: -1.5707963267948966 rad pos: -106.5,28.5 parent: 2 - uid: 18152 components: - type: Transform - rot: -1.5707963267948966 rad pos: -111.5,31.5 parent: 2 - uid: 18153 components: - type: Transform - rot: -1.5707963267948966 rad pos: -111.5,29.5 parent: 2 - uid: 18627 components: - type: Transform - rot: -1.5707963267948966 rad pos: -65.5,-75.5 parent: 2 - uid: 18629 @@ -166818,37 +165108,31 @@ entities: - uid: 18866 components: - type: Transform - rot: -1.5707963267948966 rad pos: -111.5,28.5 parent: 2 - uid: 18925 components: - type: Transform - rot: -1.5707963267948966 rad pos: -111.5,27.5 parent: 2 - uid: 19159 components: - type: Transform - rot: 3.141592653589793 rad pos: -90.5,31.5 parent: 2 - uid: 19170 components: - type: Transform - rot: -1.5707963267948966 rad pos: -65.5,-74.5 parent: 2 - uid: 19313 components: - type: Transform - rot: -1.5707963267948966 rad pos: -105.5,28.5 parent: 2 - uid: 19315 components: - type: Transform - rot: -1.5707963267948966 rad pos: -105.5,29.5 parent: 2 - uid: 19328 @@ -166864,7 +165148,6 @@ entities: - uid: 19475 components: - type: Transform - rot: -1.5707963267948966 rad pos: -72.5,-59.5 parent: 2 - uid: 19628 @@ -166890,7 +165173,6 @@ entities: - uid: 19775 components: - type: Transform - rot: -1.5707963267948966 rad pos: -65.5,-76.5 parent: 2 - uid: 19794 @@ -166901,37 +165183,31 @@ entities: - uid: 19800 components: - type: Transform - rot: -1.5707963267948966 rad pos: -105.5,31.5 parent: 2 - uid: 20024 components: - type: Transform - rot: 3.141592653589793 rad pos: -13.5,-4.5 parent: 2 - uid: 20025 components: - type: Transform - rot: 3.141592653589793 rad pos: -13.5,-2.5 parent: 2 - uid: 20036 components: - type: Transform - rot: -1.5707963267948966 rad pos: -65.5,-73.5 parent: 2 - uid: 20330 components: - type: Transform - rot: -1.5707963267948966 rad pos: -66.5,-79.5 parent: 2 - uid: 20346 components: - type: Transform - rot: -1.5707963267948966 rad pos: -65.5,-79.5 parent: 2 - uid: 20500 @@ -166992,19 +165268,16 @@ entities: - uid: 21374 components: - type: Transform - rot: 3.141592653589793 rad pos: -13.5,-1.5 parent: 2 - uid: 21376 components: - type: Transform - rot: 3.141592653589793 rad pos: -13.5,0.5 parent: 2 - uid: 21380 components: - type: Transform - rot: 3.141592653589793 rad pos: -13.5,2.5 parent: 2 - uid: 21416 @@ -167020,7 +165293,6 @@ entities: - uid: 21454 components: - type: Transform - rot: -1.5707963267948966 rad pos: -70.5,-27.5 parent: 2 - uid: 21518 @@ -167036,13 +165308,11 @@ entities: - uid: 21663 components: - type: Transform - rot: -1.5707963267948966 rad pos: -65.5,-70.5 parent: 2 - uid: 21666 components: - type: Transform - rot: -1.5707963267948966 rad pos: -66.5,-70.5 parent: 2 - uid: 21723 @@ -167058,13 +165328,11 @@ entities: - uid: 22179 components: - type: Transform - rot: 3.141592653589793 rad pos: -13.5,1.5 parent: 2 - uid: 22190 components: - type: Transform - rot: 3.141592653589793 rad pos: -16.5,-3.5 parent: 2 - uid: 22260 @@ -167080,7 +165348,6 @@ entities: - uid: 22360 components: - type: Transform - rot: 1.5707963267948966 rad pos: -67.5,-28.5 parent: 2 - uid: 22364 @@ -167091,19 +165358,16 @@ entities: - uid: 22366 components: - type: Transform - rot: 1.5707963267948966 rad pos: -66.5,-26.5 parent: 2 - uid: 22577 components: - type: Transform - rot: 1.5707963267948966 rad pos: -105.5,-21.5 parent: 2 - uid: 22643 components: - type: Transform - rot: -1.5707963267948966 rad pos: -97.5,21.5 parent: 2 - uid: 22803 @@ -167119,7 +165383,6 @@ entities: - uid: 22958 components: - type: Transform - rot: 1.5707963267948966 rad pos: -97.5,19.5 parent: 2 - uid: 23092 @@ -167160,25 +165423,21 @@ entities: - uid: 23271 components: - type: Transform - rot: -1.5707963267948966 rad pos: -73.5,-36.5 parent: 2 - uid: 23291 components: - type: Transform - rot: 3.141592653589793 rad pos: -104.5,13.5 parent: 2 - uid: 23317 components: - type: Transform - rot: 3.141592653589793 rad pos: -104.5,17.5 parent: 2 - uid: 23356 components: - type: Transform - rot: 1.5707963267948966 rad pos: -73.5,-18.5 parent: 2 - uid: 23365 @@ -167189,37 +165448,31 @@ entities: - uid: 23369 components: - type: Transform - rot: 1.5707963267948966 rad pos: -73.5,-20.5 parent: 2 - uid: 23414 components: - type: Transform - rot: 3.141592653589793 rad pos: -16.5,-7.5 parent: 2 - uid: 23416 components: - type: Transform - rot: 3.141592653589793 rad pos: -20.5,-3.5 parent: 2 - uid: 23447 components: - type: Transform - rot: 3.141592653589793 rad pos: -13.5,3.5 parent: 2 - uid: 23466 components: - type: Transform - rot: -1.5707963267948966 rad pos: -76.5,-59.5 parent: 2 - uid: 23502 components: - type: Transform - rot: 3.141592653589793 rad pos: -103.5,24.5 parent: 2 - uid: 23658 @@ -167250,19 +165503,16 @@ entities: - uid: 23879 components: - type: Transform - rot: 3.141592653589793 rad pos: -19.5,-7.5 parent: 2 - uid: 23880 components: - type: Transform - rot: 3.141592653589793 rad pos: -18.5,-7.5 parent: 2 - uid: 23892 components: - type: Transform - rot: 1.5707963267948966 rad pos: -73.5,-22.5 parent: 2 - uid: 23957 @@ -167394,6 +165644,21 @@ entities: parent: 2 - proto: WardrobePrisonFilled entities: + - uid: 6075 + components: + - type: Transform + pos: -99.5,-26.5 + parent: 2 + - uid: 8571 + components: + - type: Transform + pos: -99.5,-22.5 + parent: 2 + - uid: 8573 + components: + - type: Transform + pos: -99.5,-30.5 + parent: 2 - uid: 19354 components: - type: Transform @@ -167769,9 +166034,15 @@ entities: entities: - uid: 2407 components: + - type: MetaData + name: ballistic turret (syndicate) - type: Transform pos: -14.5,18.5 parent: 2 + - type: Contraband + allowedJobs: [] + allowedDepartments: [] + severity: Syndicate - uid: 22789 components: - type: Transform @@ -167939,7 +166210,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -192828.02 + secondsUntilStateChange: -195990.95 state: Opening - type: Airlock autoClose: False @@ -168364,7 +166635,6 @@ entities: - uid: 14197 components: - type: Transform - rot: -1.5707963267948966 rad pos: -104.5,-21.5 parent: 2 - uid: 14570 @@ -168380,19 +166650,16 @@ entities: - uid: 15921 components: - type: Transform - rot: 3.141592653589793 rad pos: -105.5,-36.5 parent: 2 - uid: 16354 components: - type: Transform - rot: -1.5707963267948966 rad pos: -101.5,-21.5 parent: 2 - uid: 17183 components: - type: Transform - rot: 3.141592653589793 rad pos: -61.5,-17.5 parent: 2 - uid: 18600 @@ -168408,37 +166675,31 @@ entities: - uid: 23215 components: - type: Transform - rot: 3.141592653589793 rad pos: -102.5,-36.5 parent: 2 - uid: 23418 components: - type: Transform - rot: 3.141592653589793 rad pos: -101.5,-11.5 parent: 2 - uid: 23419 components: - type: Transform - rot: 3.141592653589793 rad pos: -99.5,-11.5 parent: 2 - uid: 23446 components: - type: Transform - rot: 3.141592653589793 rad pos: -100.5,-11.5 parent: 2 - uid: 24342 components: - type: Transform - rot: 3.141592653589793 rad pos: -25.5,-27.5 parent: 2 - uid: 24343 components: - type: Transform - rot: 3.141592653589793 rad pos: -23.5,-27.5 parent: 2 - proto: WindowDirectional From 524a2182b0ac851d7630efd7b2d70ab383779c9b Mon Sep 17 00:00:00 2001 From: pathetic meowmeow Date: Sat, 8 Feb 2025 01:12:58 -0500 Subject: [PATCH 124/313] Round up playtime minutes (#34961) --- Content.Shared/Localizations/ContentLocalizationManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Localizations/ContentLocalizationManager.cs b/Content.Shared/Localizations/ContentLocalizationManager.cs index e60ca74a37..d20d8a3134 100644 --- a/Content.Shared/Localizations/ContentLocalizationManager.cs +++ b/Content.Shared/Localizations/ContentLocalizationManager.cs @@ -148,7 +148,7 @@ namespace Content.Shared.Localizations public static string FormatPlaytime(TimeSpan time) { var hours = (int)time.TotalHours; - var minutes = time.Minutes; + var minutes = (int)Math.Ceiling(time.TotalMinutes); return Loc.GetString($"zzzz-fmt-playtime", ("hours", hours), ("minutes", minutes)); } From 80bd01b93630e580b5d523b05fa3b017094732c2 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 8 Feb 2025 06:14:08 +0000 Subject: [PATCH 125/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index ca81778dc4..f37d75456a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: The rat king is now capable of butchering things, like animals. - type: Add - id: 7414 - time: '2024-09-21T23:21:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32232 - author: AsnDen changes: - message: Now AI is able to use news manager console that is far away from its @@ -3904,3 +3897,10 @@ id: 7913 time: '2025-02-06T23:07:27.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34927 +- author: sowelipililimute + changes: + - message: You will no longer be told you need 0H 0M more minutes to play a role + type: Fix + id: 7914 + time: '2025-02-08T06:12:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34961 From e971d6e07739907a9dda697ab4bc2cbdb9c0d885 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sat, 8 Feb 2025 17:17:55 +1100 Subject: [PATCH 126/313] Revert engine reverties (#34968) --- .../Storage/StorageBoundUserInterface.cs | 65 +++- .../Storage/Systems/StorageSystem.cs | 136 +++---- .../Systems/Hotbar/HotbarUIController.cs | 3 +- .../Systems/Hotbar/Widgets/HotbarGui.xaml | 5 +- .../Systems/Hotbar/Widgets/HotbarGui.xaml.cs | 2 +- .../Systems/Storage/Controls/ItemGridPiece.cs | 7 +- .../{StorageContainer.cs => StorageWindow.cs} | 324 ++++++++++++---- .../Systems/Storage/StorageUIController.cs | 350 +++++++++--------- Content.Client/Viewport/ScalingViewport.cs | 4 +- Content.Shared/CCVar/CCVars.Interactions.cs | 19 + .../EntitySystems/SharedStorageSystem.cs | 269 ++++++++++---- Content.Shared/Storage/StorageComponent.cs | 33 ++ RobustToolbox | 2 +- 13 files changed, 797 insertions(+), 422 deletions(-) rename Content.Client/UserInterface/Systems/Storage/Controls/{StorageContainer.cs => StorageWindow.cs} (64%) diff --git a/Content.Client/Storage/StorageBoundUserInterface.cs b/Content.Client/Storage/StorageBoundUserInterface.cs index b90977cbb4..bacc90eabf 100644 --- a/Content.Client/Storage/StorageBoundUserInterface.cs +++ b/Content.Client/Storage/StorageBoundUserInterface.cs @@ -1,39 +1,80 @@ -using Content.Client.Storage.Systems; +using Content.Client.UserInterface.Systems.Storage; +using Content.Client.UserInterface.Systems.Storage.Controls; using Content.Shared.Storage; using JetBrains.Annotations; +using Robust.Client.UserInterface; namespace Content.Client.Storage; [UsedImplicitly] public sealed class StorageBoundUserInterface : BoundUserInterface { - [Dependency] private readonly IEntityManager _entManager = default!; - - private readonly StorageSystem _storage; - - [Obsolete] public override bool DeferredClose => false; + private StorageWindow? _window; public StorageBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { - IoCManager.InjectDependencies(this); - _storage = _entManager.System(); } protected override void Open() { base.Open(); - if (_entManager.TryGetComponent(Owner, out var comp)) - _storage.OpenStorageWindow((Owner, comp)); + _window = IoCManager.Resolve() + .GetUIController() + .CreateStorageWindow(Owner); + + if (EntMan.TryGetComponent(Owner, out StorageComponent? storage)) + { + _window.UpdateContainer((Owner, storage)); + } + + _window.OnClose += Close; + _window.FlagDirty(); + } + + public void Refresh() + { + _window?.FlagDirty(); + } + + public void Reclaim() + { + if (_window == null) + return; + + _window.OnClose -= Close; + _window.Orphan(); + _window = null; } protected override void Dispose(bool disposing) { base.Dispose(disposing); - if (!disposing) + + Reclaim(); + } + + public void Hide() + { + if (_window == null) return; - _storage.CloseStorageWindow(Owner); + _window.Visible = false; + } + + public void Show() + { + if (_window == null) + return; + + _window.Visible = true; + } + + public void ReOpen() + { + _window?.Orphan(); + _window = null; + Open(); } } diff --git a/Content.Client/Storage/Systems/StorageSystem.cs b/Content.Client/Storage/Systems/StorageSystem.cs index eea7b9ec79..ab4d9407b2 100644 --- a/Content.Client/Storage/Systems/StorageSystem.cs +++ b/Content.Client/Storage/Systems/StorageSystem.cs @@ -4,7 +4,8 @@ using Content.Client.Animations; using Content.Shared.Hands; using Content.Shared.Storage; using Content.Shared.Storage.EntitySystems; -using Robust.Shared.Collections; +using Robust.Client.Player; +using Robust.Shared.GameStates; using Robust.Shared.Map; using Robust.Shared.Timing; @@ -13,114 +14,95 @@ namespace Content.Client.Storage.Systems; public sealed class StorageSystem : SharedStorageSystem { [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IPlayerManager _player = default!; [Dependency] private readonly EntityPickupAnimationSystem _entityPickupAnimation = default!; - private readonly List> _openStorages = new(); - public int OpenStorageAmount => _openStorages.Count; - - public event Action>? StorageUpdated; - public event Action?>? StorageOrderChanged; + private Dictionary _oldStoredItems = new(); public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnShutdown); + SubscribeLocalEvent(OnStorageHandleState); SubscribeNetworkEvent(HandlePickupAnimation); SubscribeAllEvent(HandleAnimatingInsertingEntities); } - public override void UpdateUI(Entity entity) + private void OnStorageHandleState(EntityUid uid, StorageComponent component, ref ComponentHandleState args) { - if (Resolve(entity.Owner, ref entity.Comp)) - StorageUpdated?.Invoke((entity, entity.Comp)); - } + if (args.Current is not StorageComponentState state) + return; - public void OpenStorageWindow(Entity entity) - { - if (_openStorages.Contains(entity)) + component.Grid.Clear(); + component.Grid.AddRange(state.Grid); + component.MaxItemSize = state.MaxItemSize; + component.Whitelist = state.Whitelist; + component.Blacklist = state.Blacklist; + + _oldStoredItems.Clear(); + + foreach (var item in component.StoredItems) { - if (_openStorages.LastOrDefault() == entity) + _oldStoredItems.Add(item.Key, item.Value); + } + + component.StoredItems.Clear(); + + foreach (var (nent, location) in state.StoredItems) + { + var ent = EnsureEntity(nent, uid); + component.StoredItems[ent] = location; + } + + component.SavedLocations.Clear(); + + foreach (var loc in state.SavedLocations) + { + component.SavedLocations[loc.Key] = new(loc.Value); + } + + var uiDirty = !component.StoredItems.SequenceEqual(_oldStoredItems); + + if (uiDirty && UI.TryGetOpenUi(uid, StorageComponent.StorageUiKey.Key, out var storageBui)) + { + storageBui.Refresh(); + // Make sure nesting still updated. + var player = _player.LocalEntity; + + if (NestedStorage && player != null && ContainerSystem.TryGetContainingContainer((uid, null, null), out var container) && + UI.TryGetOpenUi(container.Owner, StorageComponent.StorageUiKey.Key, out var containerBui)) { - CloseStorageWindow((entity, entity.Comp)); + containerBui.Hide(); } else { - var storages = new ValueList>(_openStorages); - var reverseStorages = storages.Reverse(); - - foreach (var storageEnt in reverseStorages) - { - if (storageEnt == entity) - break; - - CloseStorageBoundUserInterface(storageEnt.Owner); - _openStorages.Remove(entity); - } + storageBui.Show(); } - return; } - - ClearNonParentStorages(entity); - _openStorages.Add(entity); - Entity? last = _openStorages.LastOrDefault(); - StorageOrderChanged?.Invoke(last); } - public void CloseStorageWindow(Entity entity) + public override void UpdateUI(Entity entity) { - if (!Resolve(entity, ref entity.Comp, false)) - return; - - if (!_openStorages.Contains((entity, entity.Comp))) - return; - - var storages = new ValueList>(_openStorages); - var reverseStorages = storages.Reverse(); - - foreach (var storage in reverseStorages) + if (UI.TryGetOpenUi(entity.Owner, StorageComponent.StorageUiKey.Key, out var sBui)) { - CloseStorageBoundUserInterface(storage.Owner); - _openStorages.Remove(storage); - if (storage.Owner == entity.Owner) - break; + sBui.Refresh(); } - - Entity? last = null; - if (_openStorages.Any()) - last = _openStorages.LastOrDefault(); - StorageOrderChanged?.Invoke(last); } - private void ClearNonParentStorages(EntityUid uid) + protected override void HideStorageWindow(EntityUid uid, EntityUid actor) { - var storages = new ValueList>(_openStorages); - var reverseStorages = storages.Reverse(); - - foreach (var storage in reverseStorages) + if (UI.TryGetOpenUi(uid, StorageComponent.StorageUiKey.Key, out var storageBui)) { - if (storage.Comp.Container.Contains(uid)) - break; - - CloseStorageBoundUserInterface(storage.Owner); - _openStorages.Remove(storage); + storageBui.Hide(); } } - private void CloseStorageBoundUserInterface(Entity entity) + protected override void ShowStorageWindow(EntityUid uid, EntityUid actor) { - if (!Resolve(entity, ref entity.Comp, false)) - return; - - if (entity.Comp.ClientOpenInterfaces.GetValueOrDefault(StorageComponent.StorageUiKey.Key) is not { } bui) - return; - - bui.Close(); - } - - private void OnShutdown(Entity ent, ref ComponentShutdown args) - { - CloseStorageWindow((ent, ent.Comp)); + if (UI.TryGetOpenUi(uid, StorageComponent.StorageUiKey.Key, out var storageBui)) + { + storageBui.Show(); + } } /// @@ -142,7 +124,7 @@ public sealed class StorageSystem : SharedStorageSystem { if (!_timing.IsFirstTimePredicted) return; - + if (TransformSystem.InRange(finalCoords, initialCoords, 0.1f) || !Exists(initialCoords.EntityId) || !Exists(finalCoords.EntityId)) { diff --git a/Content.Client/UserInterface/Systems/Hotbar/HotbarUIController.cs b/Content.Client/UserInterface/Systems/Hotbar/HotbarUIController.cs index 2f266cfdd6..b89115da86 100644 --- a/Content.Client/UserInterface/Systems/Hotbar/HotbarUIController.cs +++ b/Content.Client/UserInterface/Systems/Hotbar/HotbarUIController.cs @@ -31,13 +31,12 @@ public sealed class HotbarUIController : UIController ReloadHotbar(); } - public void Setup(HandsContainer handsContainer, StorageContainer storageContainer) + public void Setup(HandsContainer handsContainer) { _inventory = UIManager.GetUIController(); _hands = UIManager.GetUIController(); _storage = UIManager.GetUIController(); _hands.RegisterHandContainer(handsContainer); - _storage.RegisterStorageContainer(storageContainer); } public void ReloadHotbar() diff --git a/Content.Client/UserInterface/Systems/Hotbar/Widgets/HotbarGui.xaml b/Content.Client/UserInterface/Systems/Hotbar/Widgets/HotbarGui.xaml index 00ba1878b4..153e02bd55 100644 --- a/Content.Client/UserInterface/Systems/Hotbar/Widgets/HotbarGui.xaml +++ b/Content.Client/UserInterface/Systems/Hotbar/Widgets/HotbarGui.xaml @@ -1,7 +1,6 @@  - (); - hotbarController.Setup(HandContainer, StoragePanel); + hotbarController.Setup(HandContainer); LayoutContainer.SetGrowVertical(this, LayoutContainer.GrowDirection.Begin); } diff --git a/Content.Client/UserInterface/Systems/Storage/Controls/ItemGridPiece.cs b/Content.Client/UserInterface/Systems/Storage/Controls/ItemGridPiece.cs index dd9986e4c6..f4c4158b5c 100644 --- a/Content.Client/UserInterface/Systems/Storage/Controls/ItemGridPiece.cs +++ b/Content.Client/UserInterface/Systems/Storage/Controls/ItemGridPiece.cs @@ -59,7 +59,7 @@ public sealed class ItemGridPiece : Control, IEntityControl Location = location; Visible = true; - MouseFilter = MouseFilterMode.Pass; + MouseFilter = MouseFilterMode.Stop; TooltipSupplier = SupplyTooltip; @@ -105,8 +105,11 @@ public sealed class ItemGridPiece : Control, IEntityControl return; } - if (_storageController.IsDragging && _storageController.DraggingGhost?.Entity == Entity && _storageController.DraggingGhost != this) + if (_storageController.IsDragging && _storageController.DraggingGhost?.Entity == Entity && + _storageController.DraggingGhost != this) + { return; + } var adjustedShape = _entityManager.System().GetAdjustedItemShape((Entity, itemComponent), Location.Rotation, Vector2i.Zero); var boundingGrid = adjustedShape.GetBoundingBox(); diff --git a/Content.Client/UserInterface/Systems/Storage/Controls/StorageContainer.cs b/Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs similarity index 64% rename from Content.Client/UserInterface/Systems/Storage/Controls/StorageContainer.cs rename to Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs index a9d7e09826..88b4c06d72 100644 --- a/Content.Client/UserInterface/Systems/Storage/Controls/StorageContainer.cs +++ b/Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs @@ -3,7 +3,9 @@ using System.Linq; using System.Numerics; using Content.Client.Hands.Systems; using Content.Client.Items.Systems; +using Content.Client.Storage; using Content.Client.Storage.Systems; +using Content.Shared.IdentityManagement; using Content.Shared.Input; using Content.Shared.Item; using Content.Shared.Storage; @@ -11,12 +13,14 @@ using Robust.Client.Graphics; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; +using Robust.Shared.Collections; +using Robust.Shared.Containers; using Robust.Shared.Timing; using Robust.Shared.Utility; namespace Content.Client.UserInterface.Systems.Storage.Controls; -public sealed class StorageContainer : BaseWindow +public sealed class StorageWindow : BaseWindow { [Dependency] private readonly IEntityManager _entity = default!; private readonly StorageUIController _storageController; @@ -27,6 +31,20 @@ public sealed class StorageContainer : BaseWindow private readonly GridContainer _backgroundGrid; private readonly GridContainer _sidebar; + private Control _titleContainer; + private Label _titleLabel; + + // Needs to be nullable in case a piece is in default spot. + private readonly Dictionary _pieces = new(); + private readonly List _controlGrid = new(); + + private ValueList _contained = new(); + private ValueList _toRemove = new(); + + private TextureButton? _backButton; + + private bool _isDirty; + public event Action? OnPiecePressed; public event Action? OnPieceUnpressed; @@ -51,9 +69,10 @@ public sealed class StorageContainer : BaseWindow private readonly string _sidebarFatTexturePath = "Storage/sidebar_fat"; private Texture? _sidebarFatTexture; - public StorageContainer() + public StorageWindow() { IoCManager.InjectDependencies(this); + Resizable = false; _storageController = UserInterfaceManager.GetUIController(); @@ -63,6 +82,7 @@ public sealed class StorageContainer : BaseWindow _sidebar = new GridContainer { + Name = "SideBar", HSeparationOverride = 0, VSeparationOverride = 0, Columns = 1 @@ -70,21 +90,48 @@ public sealed class StorageContainer : BaseWindow _pieceGrid = new GridContainer { + Name = "PieceGrid", HSeparationOverride = 0, VSeparationOverride = 0 }; _backgroundGrid = new GridContainer { + Name = "BackgroundGrid", HSeparationOverride = 0, VSeparationOverride = 0 }; + _titleLabel = new Label() + { + HorizontalExpand = true, + Name = "StorageLabel", + ClipText = true, + Text = "Dummy", + StyleClasses = + { + "FancyWindowTitle", + } + }; + + _titleContainer = new PanelContainer() + { + StyleClasses = + { + "WindowHeadingBackground" + }, + Children = + { + _titleLabel + } + }; + var container = new BoxContainer { Orientation = BoxContainer.LayoutOrientation.Vertical, Children = { + _titleContainer, new BoxContainer { Orientation = BoxContainer.LayoutOrientation.Horizontal, @@ -130,12 +177,22 @@ public sealed class StorageContainer : BaseWindow if (entity == null) return; + if (UserInterfaceManager.GetUIController().WindowTitle) + { + _titleLabel.Text = Identity.Name(entity.Value, _entity); + _titleContainer.Visible = true; + } + else + { + _titleContainer.Visible = false; + } + BuildGridRepresentation(); } private void BuildGridRepresentation() { - if (!_entity.TryGetComponent(StorageEntity, out var comp) || !comp.Grid.Any()) + if (!_entity.TryGetComponent(StorageEntity, out var comp) || comp.Grid.Count == 0) return; var boundingGrid = comp.Grid.GetBoundingBox(); @@ -144,12 +201,13 @@ public sealed class StorageContainer : BaseWindow #region Sidebar _sidebar.Children.Clear(); - _sidebar.Rows = boundingGrid.Height + 1; + var rows = boundingGrid.Height + 1; + _sidebar.Rows = rows; + var exitButton = new TextureButton { - TextureNormal = _entity.System().OpenStorageAmount == 1 - ?_exitTexture - : _backTexture, + Name = "ExitButton", + TextureNormal = _exitTexture, Scale = new Vector2(2, 2), }; exitButton.OnPressed += _ => @@ -165,8 +223,10 @@ public sealed class StorageContainer : BaseWindow args.Handle(); } }; + var exitContainer = new BoxContainer { + Name = "ExitContainer", Children = { new TextureRect @@ -182,28 +242,70 @@ public sealed class StorageContainer : BaseWindow } } }; + _sidebar.AddChild(exitContainer); - for (var i = 0; i < boundingGrid.Height - 1; i++) + var offset = 2; + + if (_entity.System().NestedStorage && rows > 0) { - _sidebar.AddChild(new TextureRect + _backButton = new TextureButton { - Texture = _sidebarMiddleTexture, - TextureScale = new Vector2(2, 2), - }); + TextureNormal = _backTexture, + Scale = new Vector2(2, 2), + }; + _backButton.OnPressed += _ => + { + var containerSystem = _entity.System(); + + if (containerSystem.TryGetContainingContainer(StorageEntity.Value, out var container) && + _entity.TryGetComponent(container.Owner, out StorageComponent? storage)) + { + Close(); + + if (_entity.System() + .TryGetOpenUi(container.Owner, + StorageComponent.StorageUiKey.Key, + out var parentBui)) + { + parentBui.Show(); + } + } + }; + + var backContainer = new BoxContainer + { + Name = "ExitContainer", + Children = + { + new TextureRect + { + Texture = rows > 2 ? _sidebarMiddleTexture : _sidebarBottomTexture, + TextureScale = new Vector2(2, 2), + Children = + { + _backButton, + } + } + } + }; + + _sidebar.AddChild(backContainer); } - if (boundingGrid.Height > 0) + var fillerRows = rows - offset; + + for (var i = 0; i < fillerRows; i++) { _sidebar.AddChild(new TextureRect { - Texture = _sidebarBottomTexture, + Texture = i != (fillerRows - 1) ? _sidebarMiddleTexture : _sidebarBottomTexture, TextureScale = new Vector2(2, 2), }); } #endregion - BuildItemPieces(); + FlagDirty(); } public void BuildBackground() @@ -240,70 +342,127 @@ public sealed class StorageContainer : BaseWindow } } + public void Reclaim(ItemStorageLocation location, ItemGridPiece draggingGhost) + { + draggingGhost.OnPiecePressed += OnPiecePressed; + draggingGhost.OnPieceUnpressed += OnPieceUnpressed; + _pieces[draggingGhost.Entity] = (location, draggingGhost); + draggingGhost.Location = location; + var controlIndex = GetGridIndex(draggingGhost); + _controlGrid[controlIndex].AddChild(draggingGhost); + } + + private int GetGridIndex(ItemGridPiece piece) + { + return piece.Location.Position.X + piece.Location.Position.Y * _pieceGrid.Columns; + } + + public void FlagDirty() + { + _isDirty = true; + } + + public void RemoveGrid(ItemGridPiece control) + { + control.Orphan(); + _pieces.Remove(control.Entity); + control.OnPiecePressed -= OnPiecePressed; + control.OnPieceUnpressed -= OnPieceUnpressed; + } + public void BuildItemPieces() { if (!_entity.TryGetComponent(StorageEntity, out var storageComp)) return; - if (!storageComp.Grid.Any()) + if (storageComp.Grid.Count == 0) return; var boundingGrid = storageComp.Grid.GetBoundingBox(); var size = _emptyTexture!.Size * 2; - var containedEntities = storageComp.Container.ContainedEntities.Reverse().ToArray(); + _contained.Clear(); + _contained.AddRange(storageComp.Container.ContainedEntities.Reverse()); - //todo. at some point, we may want to only rebuild the pieces that have actually received new data. - - _pieceGrid.RemoveAllChildren(); - _pieceGrid.Rows = boundingGrid.Height + 1; - _pieceGrid.Columns = boundingGrid.Width + 1; - for (var y = boundingGrid.Bottom; y <= boundingGrid.Top; y++) + // Build the grid representation + if (_pieceGrid.Rows - 1 != boundingGrid.Height || _pieceGrid.Columns - 1 != boundingGrid.Width) { - for (var x = boundingGrid.Left; x <= boundingGrid.Right; x++) + _pieceGrid.Rows = boundingGrid.Height + 1; + _pieceGrid.Columns = boundingGrid.Width + 1; + _controlGrid.Clear(); + + for (var y = boundingGrid.Bottom; y <= boundingGrid.Top; y++) { - var control = new Control + for (var x = boundingGrid.Left; x <= boundingGrid.Right; x++) { - MinSize = size - }; - - var currentPosition = new Vector2i(x, y); - - foreach (var (itemEnt, itemPos) in storageComp.StoredItems) - { - if (itemPos.Position != currentPosition) - continue; - - if (_entity.TryGetComponent(itemEnt, out var itemEntComponent)) + var control = new Control { - ItemGridPiece gridPiece; + MinSize = size + }; - if (_storageController.CurrentlyDragging?.Entity is { } dragging - && dragging == itemEnt) - { - _storageController.CurrentlyDragging.Orphan(); - gridPiece = _storageController.CurrentlyDragging; - } - else - { - gridPiece = new ItemGridPiece((itemEnt, itemEntComponent), itemPos, _entity) - { - MinSize = size, - Marked = Array.IndexOf(containedEntities, itemEnt) switch - { - 0 => ItemGridPieceMarks.First, - 1 => ItemGridPieceMarks.Second, - _ => null, - } - }; - gridPiece.OnPiecePressed += OnPiecePressed; - gridPiece.OnPieceUnpressed += OnPieceUnpressed; - } + _controlGrid.Add(control); + _pieceGrid.AddChild(control); + } + } + } - control.AddChild(gridPiece); - } + _toRemove.Clear(); + + // Remove entities no longer relevant / Update existing ones + foreach (var (ent, data) in _pieces) + { + if (storageComp.StoredItems.TryGetValue(ent, out var updated)) + { + if (data.Loc.Equals(updated)) + { + DebugTools.Assert(data.Control.Location == updated); + continue; } - _pieceGrid.AddChild(control); + // Update + data.Control.Location = updated; + var index = GetGridIndex(data.Control); + data.Control.Orphan(); + _controlGrid[index].AddChild(data.Control); + _pieces[ent] = (updated, data.Control); + continue; + } + + _toRemove.Add(ent); + } + + foreach (var ent in _toRemove) + { + _pieces.Remove(ent, out var data); + data.Control.Orphan(); + } + + // Add new ones + foreach (var (ent, loc) in storageComp.StoredItems) + { + if (_pieces.TryGetValue(ent, out var existing)) + { + DebugTools.Assert(existing.Loc == loc); + continue; + } + + if (_entity.TryGetComponent(ent, out var itemEntComponent)) + { + var gridPiece = new ItemGridPiece((ent, itemEntComponent), loc, _entity) + { + MinSize = size, + Marked = _contained.IndexOf(ent) switch + { + 0 => ItemGridPieceMarks.First, + 1 => ItemGridPieceMarks.Second, + _ => null, + } + }; + gridPiece.OnPiecePressed += OnPiecePressed; + gridPiece.OnPieceUnpressed += OnPieceUnpressed; + var controlIndex = loc.Position.X + loc.Position.Y * (boundingGrid.Width + 1); + + _controlGrid[controlIndex].AddChild(gridPiece); + _pieces[ent] = (loc, gridPiece); } } } @@ -315,6 +474,35 @@ public sealed class StorageContainer : BaseWindow if (!IsOpen) return; + if (_isDirty) + { + _isDirty = false; + BuildItemPieces(); + } + + var containerSystem = _entity.System(); + + if (_backButton != null) + { + if (StorageEntity != null && _entity.System().NestedStorage) + { + if (containerSystem.TryGetContainingContainer(StorageEntity.Value, out var container) && + _entity.HasComponent(container.Owner)) + { + _backButton.Visible = true; + } + else + { + _backButton.Visible = false; + } + } + // Hide the button. + else + { + _backButton.Visible = false; + } + } + var itemSystem = _entity.System(); var storageSystem = _entity.System(); var handsSystem = _entity.System(); @@ -324,7 +512,7 @@ public sealed class StorageContainer : BaseWindow child.ModulateSelfOverride = Color.FromHex("#222222"); } - if (UserInterfaceManager.CurrentlyHovered is StorageContainer con && con != this) + if (UserInterfaceManager.CurrentlyHovered is StorageWindow con && con != this) return; if (!_entity.TryGetComponent(StorageEntity, out var storageComponent)) @@ -373,7 +561,7 @@ public sealed class StorageContainer : BaseWindow continue; float spot = 0; - var marked = new List(); + var marked = new ValueList(); foreach (var location in locations.Value) { @@ -500,14 +688,4 @@ public sealed class StorageContainer : BaseWindow } } } - - public override void Close() - { - base.Close(); - - if (StorageEntity == null) - return; - - _entity.System().CloseStorageWindow(StorageEntity.Value); - } } diff --git a/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs b/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs index 1e61ad9838..5c3f047982 100644 --- a/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs +++ b/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs @@ -2,6 +2,7 @@ using System.Numerics; using Content.Client.Examine; using Content.Client.Hands.Systems; using Content.Client.Interaction; +using Content.Client.Storage; using Content.Client.Storage.Systems; using Content.Client.UserInterface.Systems.Hotbar.Widgets; using Content.Client.UserInterface.Systems.Storage.Controls; @@ -9,9 +10,9 @@ using Content.Client.Verbs.UI; using Content.Shared.CCVar; using Content.Shared.Input; using Content.Shared.Interaction; -using Content.Shared.Item; using Content.Shared.Storage; using Robust.Client.Input; +using Robust.Client.Player; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controllers; using Robust.Client.UserInterface.Controls; @@ -23,19 +24,23 @@ namespace Content.Client.UserInterface.Systems.Storage; public sealed class StorageUIController : UIController, IOnSystemChanged { + /* + * Things are a bit over the shop but essentially + * - Clicking into storagewindow is handled via storagewindow + * - Clicking out of it is via ItemGridPiece + * - Dragging around is handled here + * - Drawing is handled via ItemGridPiece + * - StorageSystem handles any sim stuff around open windows. + */ + [Dependency] private readonly IConfigurationManager _configuration = default!; - [Dependency] private readonly IEntityManager _entity = default!; [Dependency] private readonly IInputManager _input = default!; - [Dependency] private readonly IUserInterfaceManager _ui = default!; + [Dependency] private readonly IPlayerManager _player = default!; + [UISystemDependency] private readonly StorageSystem _storage = default!; private readonly DragDropHelper _menuDragHelper; - private StorageContainer? _container; - private Vector2? _lastContainerPosition; - - private HotbarGui? Hotbar => UIManager.GetActiveUIWidgetOrNull(); - - public ItemGridPiece? DraggingGhost; + public ItemGridPiece? DraggingGhost => _menuDragHelper.Dragged; public Angle DraggingRotation = Angle.Zero; public bool StaticStorageUIEnabled; public bool OpaqueStorageWindow; @@ -43,6 +48,8 @@ public sealed class StorageUIController : UIController, IOnSystemChanged _menuDragHelper.IsDragging; public ItemGridPiece? CurrentlyDragging => _menuDragHelper.Dragged; + public bool WindowTitle { get; private set; } = false; + public StorageUIController() { _menuDragHelper = new DragDropHelper(OnMenuBeginDrag, OnMenuContinueDrag, OnMenuEndDrag); @@ -52,106 +59,88 @@ public sealed class StorageUIController : UIController, IOnSystemChanged(); + + foreach (var bui in uiSystem.GetActorUis((_player.LocalEntity.Value, userComp))) + { + if (!uiSystem.TryGetOpenUi(bui.Entity, StorageComponent.StorageUiKey.Key, out var storageBui)) + continue; + + storageBui.ReOpen(); + } + } + + private void OnStorageWindowTitle(bool obj) + { + WindowTitle = obj; + } + + private void OnOpaqueWindowChanged(bool obj) + { + OpaqueStorageWindow = obj; + } + + private void OnStaticStorageChanged(bool obj) + { + StaticStorageUIEnabled = obj; + } + + public StorageWindow CreateStorageWindow(EntityUid uid) + { + var window = new StorageWindow(); + window.MouseFilter = Control.MouseFilterMode.Pass; + + window.OnPiecePressed += (args, piece) => + { + OnPiecePressed(args, window, piece); + }; + window.OnPieceUnpressed += (args, piece) => + { + OnPieceUnpressed(args, window, piece); + }; + + if (StaticStorageUIEnabled) + { + UIManager.GetActiveUIWidgetOrNull()?.StorageContainer.AddChild(window); + } + else + { + window.OpenCenteredLeft(); + } + + return window; } public void OnSystemLoaded(StorageSystem system) { _input.FirstChanceOnKeyEvent += OnMiddleMouse; - system.StorageUpdated += OnStorageUpdated; - system.StorageOrderChanged += OnStorageOrderChanged; } public void OnSystemUnloaded(StorageSystem system) { _input.FirstChanceOnKeyEvent -= OnMiddleMouse; - system.StorageUpdated -= OnStorageUpdated; - system.StorageOrderChanged -= OnStorageOrderChanged; - } - - private void OnStorageOrderChanged(Entity? nullEnt) - { - if (_container == null) - return; - - if (IsDragging) - _menuDragHelper.EndDrag(); - - _container.UpdateContainer(nullEnt); - - if (nullEnt is not null) - { - // center it if we knock it off screen somehow. - if (!StaticStorageUIEnabled && - (_lastContainerPosition == null || - _lastContainerPosition.Value.X < 0 || - _lastContainerPosition.Value.Y < 0 || - _lastContainerPosition.Value.X > _ui.WindowRoot.Width || - _lastContainerPosition.Value.Y > _ui.WindowRoot.Height)) - { - _container.OpenCenteredAt(new Vector2(0.5f, 0.75f)); - } - else - { - _container.Open(); - - var pos = !StaticStorageUIEnabled && _lastContainerPosition != null - ? _lastContainerPosition.Value - : Vector2.Zero; - - LayoutContainer.SetPosition(_container, pos); - } - - if (StaticStorageUIEnabled) - { - // we have to orphan it here because Open() sets the parent. - _container.Orphan(); - Hotbar?.StorageContainer.AddChild(_container); - } - _lastContainerPosition = _container.GlobalPosition; - } - else - { - _lastContainerPosition = _container.GlobalPosition; - _container.Close(); - } - } - - private void OnStaticStorageChanged(bool obj) - { - if (StaticStorageUIEnabled == obj) - return; - - StaticStorageUIEnabled = obj; - _lastContainerPosition = null; - - if (_container == null) - return; - - if (!_container.IsOpen) - return; - - _container.Orphan(); - if (StaticStorageUIEnabled) - { - Hotbar?.StorageContainer.AddChild(_container); - } - else - { - _ui.WindowRoot.AddChild(_container); - } - - if (_entity.TryGetComponent(_container.StorageEntity, out var comp)) - OnStorageOrderChanged((_container.StorageEntity.Value, comp)); - } - - private void OnOpaqueWindowChanged(bool obj) - { - if (OpaqueStorageWindow == obj) - return; - OpaqueStorageWindow = obj; - _container?.BuildBackground(); } /// One might ask, Hey Emo, why are you parsing raw keyboard input just to rotate a rectangle? @@ -190,7 +179,7 @@ public sealed class StorageUIController : UIController, IOnSystemChanged().GetActiveHandEntity() == null) + if (!IsDragging && EntityManager.System().GetActiveHandEntity() == null) return; //clamp it to a cardinal. @@ -198,43 +187,18 @@ public sealed class StorageUIController : UIController, IOnSystemChanged uid) + private void OnPiecePressed(GUIBoundKeyEventArgs args, StorageWindow window, ItemGridPiece control) { - if (_container?.StorageEntity != uid) - return; - - _container.BuildItemPieces(); - } - - public void RegisterStorageContainer(StorageContainer container) - { - if (_container != null) - { - container.OnPiecePressed -= OnPiecePressed; - container.OnPieceUnpressed -= OnPieceUnpressed; - } - - _container = container; - container.OnPiecePressed += OnPiecePressed; - container.OnPieceUnpressed += OnPieceUnpressed; - - if (!StaticStorageUIEnabled) - _container.Orphan(); - } - - private void OnPiecePressed(GUIBoundKeyEventArgs args, ItemGridPiece control) - { - if (IsDragging || !_container?.IsOpen == true) + if (IsDragging || !window.IsOpen) return; if (args.Function == ContentKeyFunctions.MoveStoredItem) { DraggingRotation = control.Location.Rotation; - _menuDragHelper.MouseDown(control); _menuDragHelper.Update(0f); @@ -242,17 +206,17 @@ public sealed class StorageUIController : UIController, IOnSystemChanged().DoExamine(control.Entity); + EntityManager.System().DoExamine(control.Entity); args.Handle(); } else if (args.Function == EngineKeyFunctions.UseSecondary) @@ -262,62 +226,102 @@ public sealed class StorageUIController : UIController, IOnSystemChanged(storageEnt, out var storageComp)) - return; + // Want to get the control under the dragged control. + // This means we can drag the original control around (and not hide the original). + control.MouseFilter = Control.MouseFilterMode.Ignore; + var targetControl = UIManager.MouseGetControl(args.PointerLocation); + var targetStorage = targetControl as StorageWindow; + control.MouseFilter = Control.MouseFilterMode.Pass; - if (DraggingGhost is { } draggingGhost) + var localPlayer = _player.LocalEntity; + window.RemoveGrid(control); + window.FlagDirty(); + + // If we tried to drag it on top of another grid piece then cancel out. + if (targetControl is ItemGridPiece || window.StorageEntity is not { } sourceStorage || localPlayer == null) + { + window.Reclaim(control.Location, control); + args.Handle(); + _menuDragHelper.EndDrag(); + return; + } + + if (_menuDragHelper.IsDragging && DraggingGhost is { } draggingGhost) { var dragEnt = draggingGhost.Entity; var dragLoc = draggingGhost.Location; - var itemSys = _entity.System(); - var position = _container.GetMouseGridPieceLocation(dragEnt, dragLoc); - var itemBounding = itemSys.GetAdjustedItemShape(dragEnt, dragLoc).GetBoundingBox(); - var gridBounding = storageComp.Grid.GetBoundingBox(); - - // The extended bounding box for if this is out of the window is the grid bounding box dimensions combined - // with the item shape bounding box dimensions. Plus 1 on the left for the sidebar. This makes it so that. - // dropping an item on the floor requires dragging it all the way out of the window. - var left = gridBounding.Left - itemBounding.Width - 1; - var bottom = gridBounding.Bottom - itemBounding.Height; - var top = gridBounding.Top; - var right = gridBounding.Right; - var lenientBounding = new Box2i(left, bottom, right, top); - - if (lenientBounding.Contains(position)) + // Dragging in the same storage + // The existing ItemGridPiece just stops rendering but still exists so check if it's hovered. + if (targetStorage == window) { - _entity.RaisePredictiveEvent(new StorageSetItemLocationEvent( - _entity.GetNetEntity(draggingGhost.Entity), - _entity.GetNetEntity(storageEnt), - new ItemStorageLocation(DraggingRotation, position))); + var position = targetStorage.GetMouseGridPieceLocation(dragEnt, dragLoc); + var newLocation = new ItemStorageLocation(DraggingRotation, position); + + EntityManager.RaisePredictiveEvent(new StorageSetItemLocationEvent( + EntityManager.GetNetEntity(draggingGhost.Entity), + EntityManager.GetNetEntity(sourceStorage), + newLocation)); + + window.Reclaim(newLocation, control); + } + // Dragging to new storage + else if (targetStorage?.StorageEntity != null && targetStorage != window) + { + var position = targetStorage.GetMouseGridPieceLocation(dragEnt, dragLoc); + var newLocation = new ItemStorageLocation(DraggingRotation, position); + + // Check it fits and we can move to hand (no free transfers). + if (_storage.ItemFitsInGridLocation( + (dragEnt, null), + (targetStorage.StorageEntity.Value, null), + newLocation)) + { + // Can drop and move. + EntityManager.RaisePredictiveEvent(new StorageTransferItemEvent( + EntityManager.GetNetEntity(dragEnt), + EntityManager.GetNetEntity(targetStorage.StorageEntity.Value), + newLocation)); + + targetStorage.Reclaim(newLocation, control); + DraggingRotation = Angle.Zero; + } + else + { + // Cancel it (rather than dropping). + window.Reclaim(dragLoc, control); + } } - _menuDragHelper.EndDrag(); - _container?.BuildItemPieces(); + targetStorage?.FlagDirty(); } - else //if we just clicked, then take it out of the bag. + // If we just clicked, then take it out of the bag. + else { - _menuDragHelper.EndDrag(); - _entity.RaisePredictiveEvent(new StorageInteractWithItemEvent( - _entity.GetNetEntity(control.Entity), - _entity.GetNetEntity(storageEnt))); + EntityManager.RaisePredictiveEvent(new StorageInteractWithItemEvent( + EntityManager.GetNetEntity(control.Entity), + EntityManager.GetNetEntity(sourceStorage))); } + + _menuDragHelper.EndDrag(); args.Handle(); } @@ -326,14 +330,8 @@ public sealed class StorageUIController : UIController, IOnSystemChanged(dragged.Entity)), - dragged.Location, - _entity); - DraggingGhost.MouseFilter = Control.MouseFilterMode.Ignore; - DraggingGhost.Visible = true; - DraggingGhost.Orphan(); UIManager.PopupRoot.AddChild(DraggingGhost); SetDraggingRotation(); @@ -344,6 +342,7 @@ public sealed class StorageUIController : UIController, IOnSystemChanged public static readonly CVarDef OpaqueStorageWindow = CVarDef.Create("control.opaque_storage_background", false, CVar.CLIENTONLY | CVar.ARCHIVE); + + /// + /// Whether or not the storage window has a title of the entity name. + /// + public static readonly CVarDef StorageWindowTitle = + CVarDef.Create("control.storage_window_title", false, CVar.CLIENTONLY | CVar.ARCHIVE); + + /// + /// How many storage windows are allowed to be open at once. + /// Recommended that you utilise this in conjunction with + /// + public static readonly CVarDef StorageLimit = + CVarDef.Create("control.storage_limit", 1, CVar.REPLICATED | CVar.SERVER); + + /// + /// Whether or not storage can be opened recursively. + /// + public static readonly CVarDef NestedStorage = + CVarDef.Create("control.nested_storage", true, CVar.REPLICATED | CVar.SERVER); } diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index 123282fbdb..7bf6d74c60 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -3,6 +3,7 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; using Content.Shared.ActionBlocker; using Content.Shared.Administration.Logs; +using Content.Shared.CCVar; using Content.Shared.Containers.ItemSlots; using Content.Shared.Database; using Content.Shared.Destructible; @@ -27,6 +28,7 @@ using Content.Shared.Verbs; using Content.Shared.Whitelist; using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; +using Robust.Shared.Configuration; using Robust.Shared.Containers; using Robust.Shared.GameStates; using Robust.Shared.Input.Binding; @@ -35,36 +37,46 @@ using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Serialization; +using Robust.Shared.Timing; using Robust.Shared.Utility; namespace Content.Shared.Storage.EntitySystems; public abstract class SharedStorageSystem : EntitySystem { - [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] protected readonly IGameTiming Timing = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] protected readonly IRobustRandom Random = default!; + [Dependency] private readonly ISharedAdminLogManager _adminLog = default!; + [Dependency] protected readonly ActionBlockerSystem ActionBlocker = default!; - [Dependency] private readonly EntityLookupSystem _entityLookupSystem = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly EntityLookupSystem _entityLookupSystem = default!; + [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] protected readonly SharedAudioSystem Audio = default!; - [Dependency] private readonly SharedContainerSystem _containerSystem = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; + [Dependency] protected readonly SharedContainerSystem ContainerSystem = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] protected readonly SharedEntityStorageSystem EntityStorage = default!; - [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; - [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; [Dependency] protected readonly SharedItemSystem ItemSystem = default!; - [Dependency] private readonly SharedPopupSystem _popupSystem = default!; - [Dependency] private readonly SharedHandsSystem _sharedHandsSystem = default!; - [Dependency] private readonly SharedStackSystem _stack = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly SharedHandsSystem _sharedHandsSystem = default!; + [Dependency] private readonly SharedStackSystem _stack = default!; [Dependency] protected readonly SharedTransformSystem TransformSystem = default!; - [Dependency] private readonly SharedUserInterfaceSystem _ui = default!; + [Dependency] protected readonly SharedUserInterfaceSystem UI = default!; [Dependency] protected readonly UseDelaySystem UseDelay = default!; - [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; - [Dependency] private readonly ISharedAdminLogManager _adminLog = default!; private EntityQuery _itemQuery; private EntityQuery _stackQuery; private EntityQuery _xformQuery; + private EntityQuery _userQuery; + + /// + /// Whether we're allowed to go up-down storage via UI. + /// + public bool NestedStorage = true; [ValidatePrototypeId] public const string DefaultStorageMaxItemSize = "Normal"; @@ -76,10 +88,15 @@ public abstract class SharedStorageSystem : EntitySystem private ItemSizePrototype _defaultStorageMaxItemSize = default!; + /// + /// Flag for whether we're checking for nested storage interactions. + /// + private bool _nestedCheck; + public bool CheckingCanInsert; - private List _entList = new(); - private HashSet _entSet = new(); + private readonly List _entList = new(); + private readonly HashSet _entSet = new(); private readonly List _sortedSizes = new(); private FrozenDictionary _nextSmallest = FrozenDictionary.Empty; @@ -87,6 +104,11 @@ public abstract class SharedStorageSystem : EntitySystem private const string QuickInsertUseDelayID = "quickInsert"; private const string OpenUiUseDelayID = "storage"; + /// + /// How many storage windows are allowed to be open at once. + /// + private int _openStorageLimit = -1; + protected readonly List CantFillReasons = []; /// @@ -97,8 +119,11 @@ public abstract class SharedStorageSystem : EntitySystem _itemQuery = GetEntityQuery(); _stackQuery = GetEntityQuery(); _xformQuery = GetEntityQuery(); + _userQuery = GetEntityQuery(); _prototype.PrototypesReloaded += OnPrototypesReloaded; + Subs.CVar(_cfg, CCVars.StorageLimit, OnStorageLimitChanged, true); + Subs.BuiEvents(StorageComponent.StorageUiKey.Key, subs => { subs.Event(OnBoundUIClosed); @@ -108,7 +133,6 @@ public abstract class SharedStorageSystem : EntitySystem SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent>(AddUiVerb); SubscribeLocalEvent(OnStorageGetState); - SubscribeLocalEvent(OnStorageHandleState); SubscribeLocalEvent(OnComponentInit, before: new[] { typeof(SharedContainerSystem) }); SubscribeLocalEvent>(AddTransferVerbs); SubscribeLocalEvent(OnInteractUsing, after: new[] { typeof(ItemSlotsSystem) }); @@ -116,6 +140,7 @@ public abstract class SharedStorageSystem : EntitySystem SubscribeLocalEvent(OnImplantActivate); SubscribeLocalEvent(AfterInteract); SubscribeLocalEvent(OnDestroy); + SubscribeLocalEvent(OnBoundUIAttempt); SubscribeLocalEvent(OnBoundUIOpen); SubscribeLocalEvent(OnLockToggled); SubscribeLocalEvent(OnStackCountChanged); @@ -126,6 +151,8 @@ public abstract class SharedStorageSystem : EntitySystem SubscribeLocalEvent(OnDoAfter); + SubscribeAllEvent(OnStorageNested); + SubscribeAllEvent(OnStorageTransfer); SubscribeAllEvent(OnInteractWithItem); SubscribeAllEvent(OnSetItemLocation); SubscribeAllEvent(OnInsertItemIntoLocation); @@ -138,12 +165,24 @@ public abstract class SharedStorageSystem : EntitySystem .Bind(ContentKeyFunctions.OpenBelt, InputCmdHandler.FromDelegate(HandleOpenBelt, handle: false)) .Register(); + Subs.CVar(_cfg, CCVars.NestedStorage, OnNestedStorageCvar, true); + UpdatePrototypeCache(); } + private void OnNestedStorageCvar(bool obj) + { + NestedStorage = obj; + } + + private void OnStorageLimitChanged(int obj) + { + _openStorageLimit = obj; + } + private void OnRemove(Entity entity, ref ComponentRemove args) { - _ui.CloseUi(entity.Owner, StorageComponent.StorageUiKey.Key); + UI.CloseUi(entity.Owner, StorageComponent.StorageUiKey.Key); } private void OnMapInit(Entity entity, ref MapInitEvent args) @@ -172,28 +211,6 @@ public abstract class SharedStorageSystem : EntitySystem }; } - private void OnStorageHandleState(EntityUid uid, StorageComponent component, ref ComponentHandleState args) - { - if (args.Current is not StorageComponentState state) - return; - - component.Grid.Clear(); - component.Grid.AddRange(state.Grid); - component.MaxItemSize = state.MaxItemSize; - component.Whitelist = state.Whitelist; - component.Blacklist = state.Blacklist; - - component.StoredItems.Clear(); - - foreach (var (nent, location) in state.StoredItems) - { - var ent = EnsureEntity(nent, uid); - component.StoredItems[ent] = location; - } - - component.SavedLocations = state.SavedLocations; - } - public override void Shutdown() { _prototype.PrototypesReloaded -= OnPrototypesReloaded; @@ -228,7 +245,7 @@ public abstract class SharedStorageSystem : EntitySystem private void OnComponentInit(EntityUid uid, StorageComponent storageComp, ComponentInit args) { - storageComp.Container = _containerSystem.EnsureContainer(uid, StorageComponent.ContainerId); + storageComp.Container = ContainerSystem.EnsureContainer(uid, StorageComponent.ContainerId); UpdateAppearance((uid, storageComp, null)); } @@ -247,7 +264,7 @@ public abstract class SharedStorageSystem : EntitySystem // close ui foreach (var entity in storageComp.Container.ContainedEntities) { - _ui.CloseUis(entity, actor); + UI.CloseUis(entity, actor); } } @@ -256,7 +273,7 @@ public abstract class SharedStorageSystem : EntitySystem CloseNestedInterfaces(uid, args.Actor, storageComp); // If UI is closed for everyone - if (!_ui.IsUiOpen(uid, args.UiKey)) + if (!UI.IsUiOpen(uid, args.UiKey)) { UpdateAppearance((uid, storageComp, null)); Audio.PlayPredicted(storageComp.StorageCloseSound, uid, args.Actor); @@ -269,7 +286,7 @@ public abstract class SharedStorageSystem : EntitySystem return; // Does this player currently have the storage UI open? - var uiOpen = _ui.IsUiOpen(uid, StorageComponent.StorageUiKey.Key, args.User); + var uiOpen = UI.IsUiOpen(uid, StorageComponent.StorageUiKey.Key, args.User); ActivationVerb verb = new() { @@ -277,7 +294,7 @@ public abstract class SharedStorageSystem : EntitySystem { if (uiOpen) { - _ui.CloseUi(uid, StorageComponent.StorageUiKey.Key, args.User); + UI.CloseUi(uid, StorageComponent.StorageUiKey.Key, args.User); } else { @@ -315,16 +332,16 @@ public abstract class SharedStorageSystem : EntitySystem if (!CanInteract(entity, (uid, storageComp), silent: silent)) return; + if (!UI.TryOpenUi(uid, StorageComponent.StorageUiKey.Key, entity)) + return; + if (!silent) { - if (!_ui.IsUiOpen(uid, StorageComponent.StorageUiKey.Key)) - Audio.PlayPredicted(storageComp.StorageOpenSound, uid, entity); + Audio.PlayPredicted(storageComp.StorageOpenSound, uid, entity); if (useDelay != null) UseDelay.TryResetDelay((uid, useDelay), id: OpenUiUseDelayID); } - - _ui.OpenUi(uid, StorageComponent.StorageUiKey.Key, entity); } public virtual void UpdateUI(Entity entity) {} @@ -384,18 +401,43 @@ public abstract class SharedStorageSystem : EntitySystem return; // Toggle - if (_ui.IsUiOpen(uid, StorageComponent.StorageUiKey.Key, args.User)) + if (UI.IsUiOpen(uid, StorageComponent.StorageUiKey.Key, args.User)) { - _ui.CloseUi(uid, StorageComponent.StorageUiKey.Key, args.User); + UI.CloseUi(uid, StorageComponent.StorageUiKey.Key, args.User); } else { - OpenStorageUI(uid, args.User, storageComp, false); + // Handle recursively opening nested storages. + if (ContainerSystem.TryGetContainingContainer((args.Target, null, null), out var container) && + UI.IsUiOpen(container.Owner, StorageComponent.StorageUiKey.Key, args.User)) + { + _nestedCheck = true; + HideStorageWindow(container.Owner, args.User); + OpenStorageUI(uid, args.User, storageComp, silent: true); + _nestedCheck = false; + } + else + { + // If you need something more sophisticated for multi-UI you'll need to code some smarter + // interactions. + if (_openStorageLimit == 1) + UI.CloseUserUis(args.User); + + OpenStorageUI(uid, args.User, storageComp, silent: false); + } } args.Handled = true; } + protected virtual void HideStorageWindow(EntityUid uid, EntityUid actor) + { + } + + protected virtual void ShowStorageWindow(EntityUid uid, EntityUid actor) + { + } + /// /// Specifically for storage implants. /// @@ -404,10 +446,10 @@ public abstract class SharedStorageSystem : EntitySystem if (args.Handled) return; - var uiOpen = _ui.IsUiOpen(uid, StorageComponent.StorageUiKey.Key, args.Performer); + var uiOpen = UI.IsUiOpen(uid, StorageComponent.StorageUiKey.Key, args.Performer); if (uiOpen) - _ui.CloseUi(uid, StorageComponent.StorageUiKey.Key, args.Performer); + UI.CloseUi(uid, StorageComponent.StorageUiKey.Key, args.Performer); else OpenStorageUI(uid, args.Performer, storageComp, false); @@ -474,7 +516,7 @@ public abstract class SharedStorageSystem : EntitySystem if (args.Target is not { Valid: true } target) return; - if (_containerSystem.IsEntityInContainer(target) + if (ContainerSystem.IsEntityInContainer(target) || target == args.User || !_itemQuery.HasComponent(target)) { @@ -525,7 +567,7 @@ public abstract class SharedStorageSystem : EntitySystem var entity = GetEntity(args.Entities[i]); // Check again, situation may have changed for some entities, but we'll still pick up any that are valid - if (_containerSystem.IsEntityInContainer(entity) + if (ContainerSystem.IsEntityInContainer(entity) || entity == args.Args.User || !_itemQuery.HasComponent(entity)) { @@ -570,7 +612,7 @@ public abstract class SharedStorageSystem : EntitySystem private void OnReclaimed(EntityUid uid, StorageComponent storageComp, GotReclaimedEvent args) { - _containerSystem.EmptyContainer(storageComp.Container, destination: args.ReclaimerCoordinates); + ContainerSystem.EmptyContainer(storageComp.Container, destination: args.ReclaimerCoordinates); } private void OnDestroy(EntityUid uid, StorageComponent storageComp, DestructionEventArgs args) @@ -578,7 +620,7 @@ public abstract class SharedStorageSystem : EntitySystem var coordinates = TransformSystem.GetMoverCoordinates(uid); // Being destroyed so need to recalculate. - _containerSystem.EmptyContainer(storageComp.Container, destination: coordinates); + ContainerSystem.EmptyContainer(storageComp.Container, destination: coordinates); } /// @@ -638,6 +680,54 @@ public abstract class SharedStorageSystem : EntitySystem TrySetItemStorageLocation(item!, storage!, msg.Location); } + private void OnStorageNested(OpenNestedStorageEvent msg, EntitySessionEventArgs args) + { + if (!NestedStorage) + return; + + if (!TryGetEntity(msg.InteractedItemUid, out var itemEnt)) + return; + + _nestedCheck = true; + + var result = ValidateInput(args, + msg.StorageUid, + msg.InteractedItemUid, + out var player, + out var storage, + out var item); + + if (!result) + { + _nestedCheck = false; + return; + } + + HideStorageWindow(storage.Owner, player.Owner); + OpenStorageUI(item.Owner, player.Owner, silent: true); + _nestedCheck = false; + } + + private void OnStorageTransfer(StorageTransferItemEvent msg, EntitySessionEventArgs args) + { + if (!TryGetEntity(msg.ItemEnt, out var itemEnt)) + return; + + var localPlayer = args.SenderSession.AttachedEntity; + + if (!TryComp(localPlayer, out HandsComponent? handsComp) || !_sharedHandsSystem.TryPickup(localPlayer.Value, itemEnt.Value, handsComp: handsComp, animate: false)) + return; + + if (!ValidateInput(args, msg.StorageEnt, msg.ItemEnt, out var player, out var storage, out var item, held: true)) + return; + + _adminLog.Add( + LogType.Storage, + LogImpact.Low, + $"{ToPrettyString(player):player} is inserting {ToPrettyString(item):item} into {ToPrettyString(storage):storage}"); + InsertAt(storage!, item!, msg.Location, out _, player, stackAutomatically: false); + } + private void OnInsertItemIntoLocation(StorageInsertItemIntoLocationEvent msg, EntitySessionEventArgs args) { if (!ValidateInput(args, msg.StorageEnt, msg.ItemEnt, out var player, out var storage, out var item, held: true)) @@ -658,9 +748,46 @@ public abstract class SharedStorageSystem : EntitySystem SaveItemLocation(storage!, item.Owner); } - private void OnBoundUIOpen(EntityUid uid, StorageComponent storageComp, BoundUIOpenedEvent args) + private void OnBoundUIOpen(Entity ent, ref BoundUIOpenedEvent args) { - UpdateAppearance((uid, storageComp, null)); + UpdateAppearance((ent.Owner, ent.Comp, null)); + } + + private void OnBoundUIAttempt(BoundUserInterfaceMessageAttempt args) + { + if (args.UiKey is not StorageComponent.StorageUiKey.Key || + _openStorageLimit == -1 || + _nestedCheck || + args.Message is not OpenBoundInterfaceMessage) + return; + + var uid = args.Target; + var actor = args.Actor; + var count = 0; + + if (_userQuery.TryComp(actor, out var userComp)) + { + foreach (var (ui, keys) in userComp.OpenInterfaces) + { + if (ui == uid) + continue; + + foreach (var key in keys) + { + if (key is not StorageComponent.StorageUiKey) + continue; + + count++; + + if (count >= _openStorageLimit) + { + args.Cancel(); + } + + break; + } + } + } } private void OnEntInserted(Entity entity, ref EntInsertedIntoContainerMessage args) @@ -676,7 +803,7 @@ public abstract class SharedStorageSystem : EntitySystem { if (!TryGetAvailableGridSpace((entity.Owner, entity.Comp), (args.Entity, null), out var location)) { - _containerSystem.Remove(args.Entity, args.Container, force: true); + ContainerSystem.Remove(args.Entity, args.Container, force: true); return; } @@ -738,7 +865,7 @@ public abstract class SharedStorageSystem : EntitySystem var capacity = storage.Grid.GetArea(); var used = GetCumulativeItemAreas((uid, storage)); - var isOpen = _ui.IsUiOpen(entity.Owner, StorageComponent.StorageUiKey.Key); + var isOpen = UI.IsUiOpen(entity.Owner, StorageComponent.StorageUiKey.Key); _appearance.SetData(uid, StorageVisuals.StorageUsed, used, appearance); _appearance.SetData(uid, StorageVisuals.Capacity, capacity, appearance); @@ -848,7 +975,7 @@ public abstract class SharedStorageSystem : EntitySystem } CheckingCanInsert = true; - if (!_containerSystem.CanInsert(insertEnt, storageComp.Container)) + if (!ContainerSystem.CanInsert(insertEnt, storageComp.Container)) { CheckingCanInsert = false; reason = null; @@ -949,7 +1076,7 @@ public abstract class SharedStorageSystem : EntitySystem if (!stackAutomatically || !_stackQuery.TryGetComponent(insertEnt, out var insertStack)) { - if (!_containerSystem.Insert(insertEnt, storageComp.Container)) + if (!ContainerSystem.Insert(insertEnt, storageComp.Container)) return false; if (playSound) @@ -975,7 +1102,7 @@ public abstract class SharedStorageSystem : EntitySystem // Still stackable remaining if (insertStack.Count > 0 - && !_containerSystem.Insert(insertEnt, storageComp.Container) + && !ContainerSystem.Insert(insertEnt, storageComp.Container) && toInsertCount == insertStack.Count) { // Failed to insert anything. @@ -1054,6 +1181,7 @@ public abstract class SharedStorageSystem : EntitySystem return false; storageEnt.Comp.StoredItems[itemEnt] = location; + UpdateUI(storageEnt); Dirty(storageEnt, storageEnt.Comp); return true; } @@ -1186,6 +1314,7 @@ public abstract class SharedStorageSystem : EntitySystem } Dirty(ent, ent.Comp); + UpdateUI((ent.Owner, ent.Comp)); } /// @@ -1357,16 +1486,16 @@ public abstract class SharedStorageSystem : EntitySystem return; // Gets everyone looking at the UI - foreach (var actor in _ui.GetActors(uid, StorageComponent.StorageUiKey.Key).ToList()) + foreach (var actor in UI.GetActors(uid, StorageComponent.StorageUiKey.Key).ToList()) { if (!CanInteract(actor, (uid, component))) - _ui.CloseUi(uid, StorageComponent.StorageUiKey.Key, actor); + UI.CloseUi(uid, StorageComponent.StorageUiKey.Key, actor); } } private void OnStackCountChanged(EntityUid uid, MetaDataComponent component, StackCountChangedEvent args) { - if (_containerSystem.TryGetContainingContainer((uid, null, component), out var container) && + if (ContainerSystem.TryGetContainingContainer((uid, null, component), out var container) && container.ID == StorageComponent.ContainerId) { UpdateAppearance(container.Owner); @@ -1398,13 +1527,13 @@ public abstract class SharedStorageSystem : EntitySystem if (!ActionBlocker.CanInteract(playerEnt, storageEnt)) return; - if (!_ui.IsUiOpen(storageEnt.Value, StorageComponent.StorageUiKey.Key, playerEnt)) + if (!UI.IsUiOpen(storageEnt.Value, StorageComponent.StorageUiKey.Key, playerEnt)) { OpenStorageUI(storageEnt.Value, playerEnt, silent: false); } else { - _ui.CloseUi(storageEnt.Value, StorageComponent.StorageUiKey.Key, playerEnt); + UI.CloseUi(storageEnt.Value, StorageComponent.StorageUiKey.Key, playerEnt); } } @@ -1459,7 +1588,7 @@ public abstract class SharedStorageSystem : EntitySystem // TODO STORAGE use BUI events // This would automatically validate that the UI is open & that the user can interact. // However, we still need to manually validate that items being used are in the users hands or in the storage. - if (!_ui.IsUiOpen(storageUid.Value, StorageComponent.StorageUiKey.Key, playerUid)) + if (!UI.IsUiOpen(storageUid.Value, StorageComponent.StorageUiKey.Key, playerUid)) return false; if (!ActionBlocker.CanInteract(playerUid, storageUid)) diff --git a/Content.Shared/Storage/StorageComponent.cs b/Content.Shared/Storage/StorageComponent.cs index 52547454a0..c59f7ab00e 100644 --- a/Content.Shared/Storage/StorageComponent.cs +++ b/Content.Shared/Storage/StorageComponent.cs @@ -148,6 +148,19 @@ namespace Content.Shared.Storage } } + [Serializable, NetSerializable] + public sealed class OpenNestedStorageEvent : EntityEventArgs + { + public readonly NetEntity InteractedItemUid; + public readonly NetEntity StorageUid; + + public OpenNestedStorageEvent(NetEntity interactedItemUid, NetEntity storageUid) + { + InteractedItemUid = interactedItemUid; + StorageUid = storageUid; + } + } + [Serializable, NetSerializable] public sealed class StorageInteractWithItemEvent : EntityEventArgs { @@ -179,6 +192,26 @@ namespace Content.Shared.Storage } } + [Serializable, NetSerializable] + public sealed class StorageTransferItemEvent : EntityEventArgs + { + public readonly NetEntity ItemEnt; + + /// + /// Target storage to receive the transfer. + /// + public readonly NetEntity StorageEnt; + + public readonly ItemStorageLocation Location; + + public StorageTransferItemEvent(NetEntity itemEnt, NetEntity storageEnt, ItemStorageLocation location) + { + ItemEnt = itemEnt; + StorageEnt = storageEnt; + Location = location; + } + } + [Serializable, NetSerializable] public sealed class StorageInsertItemIntoLocationEvent : EntityEventArgs { diff --git a/RobustToolbox b/RobustToolbox index ee906af16e..c4a5752c2a 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit ee906af16e136c7e09930d88872ab9bba3137c8e +Subproject commit c4a5752c2affee874f0b9be3b07b86a55a91bf0a From 1caea8a759f1ba5f5b143c985603a55afa0e699d Mon Sep 17 00:00:00 2001 From: Chaboricks <95505064+Chaboricks@users.noreply.github.com> Date: Sat, 8 Feb 2025 10:24:01 +0300 Subject: [PATCH 127/313] Paper door (#34857) * Add paper door sound * Update attributions yml * Update material_doors.yml * Update attributions.yml --- Resources/Audio/Effects/attributions.yml | 5 +++++ Resources/Audio/Effects/paperdoor_openclose.ogg | Bin 0 -> 39674 bytes .../Doors/MaterialDoors/material_doors.yml | 5 +++++ 3 files changed, 10 insertions(+) create mode 100644 Resources/Audio/Effects/paperdoor_openclose.ogg diff --git a/Resources/Audio/Effects/attributions.yml b/Resources/Audio/Effects/attributions.yml index 75cf22aa4f..add8884a7d 100644 --- a/Resources/Audio/Effects/attributions.yml +++ b/Resources/Audio/Effects/attributions.yml @@ -236,3 +236,8 @@ copyright: 'created by waveplaySFX on Freesound' license: "CC0-1.0" source: https://freesound.org/people/waveplaySFX/sounds/553744/ + +- files: [paperdoor_openclose.ogg] + copyright: 'created by Vrymaa on Freesound and modified by Chaboricks' + license: "CC0-1.0" + source: https://freesound.org/people/Vrymaa/sounds/785128/ diff --git a/Resources/Audio/Effects/paperdoor_openclose.ogg b/Resources/Audio/Effects/paperdoor_openclose.ogg new file mode 100644 index 0000000000000000000000000000000000000000..39e154f69d39cc1b852c80e15a2c0fbc9226b815 GIT binary patch literal 39674 zcmafa1yoi|xA1xB?(S}+Q;-y;Q#zy@q@`Qw?v@mg?ndeEPNiF=`#?ZRRJjApQj%7Z-LyaM;Sr}akY0evUGZCg7~%kg{)KkMQ(&B zKK1;s=cy+Itc63h5MvrV{`bcK`Y$DB5JA)Ooy9XnM{^1rOC$9^^eLn%IN3Qk**V#{ zC>RuN?JVCpnmU=@3#0PvQE5iQZ8fSkjK!x5Tbh$B3a4`D1!aRf>IWs3sv1K9*# z#o|a;;S5!gj7-od{$^3e=9%Dnsj4Rb27FxfG+a&RTwUf|y|q$;bsD|38iRG_gY_-yH^E4YE$1<((|4U|CNv8jI61C`O0z^Ss_BoLBIncaRq3LsE zf&U}negM>|s0vGuBljyO?mj0WFuih?97vEGIg>;GmlB@T4gjJYBs~r!1E4fiSf?C$ zG@OLzoaE;~Q9McHe}DY{*bB%AWu{q@l^+6EjNu=#_<>{zJ|Re;{2d8I2>G;0kv5)o zIwF9Uwv|(ilRot|R4tvpsW>J5j|Oc<2{%ApG7hHp21Y!KK;(uj-O!==B=f{OH4KmaWa}KdQWna2R1rI8_FeFeoKr3e9 z0j)T)Zad4VT;R2JLEWr2b3uZN3}eAxj{=oSVG<(-NBGA{KBPDfG8Tbe@t=zONi&8? zI`JQA>=%hL7A=@2I9XM>gx{#W(QviZN_JUl2-cf-S)21-n~OBS|L{Kz>%Tk)0G%f2 zk548TMR4?G1S*Il{#Ee5JjVg2FP3B=mPWRkMt+iINYLrVI6^It|`h_5V1`U$?4py#}Fr1=le>Es}h0KKW2MgH_JkHQn6K%HOW|EB@~pfd(V_Rl(^tin2@!ZV}7 z`bJIofA<&=I>RkL#SIEJ5da7Qpr8koItE&xk`bD?CJN&#;VTLblZ0uCpaL8tEKiIy zqX+@IrUneAV1!&<>j(_$UIz?LV->~$v8y;MMgatH*@FR;L3a}m;piqX8W!uPkc{9! zAPoxPfTIkI5ksI2R^vpVOjJ_oCIGAb6hUg@jHE#^Dz6Iwzz={2f5@N4V{jp&82}I% z;}pV(5Nm`Xh`{KAp%Mo65TK`ZQjlRNs8f=$!ZgOra>Y#j8TE7EQnJHr!Bx^ z-pO|!SKgz@S5pZs%f~SWNyVu|&=wHrgjdxQSfduys{aLqmG$Bompu)>^JnnCV}P>) zNsWq0gFR%WSsILclM?tX?If}mcC0)jvc#-0=>6{Z3LPz=2(P8cc!1Wst;(v(3eDwd2v z7&0=&;I^!^4({b|0}H!<0Kp%=zyRV<0D*CW(XhZyetv=qsEY^z_)iH5+SZ_|Id&)# z;#8~?pW2?NSe5;03sRDiDKiDzGJ~){%JmT(J0w9^GSbC$^MCQc62bEwiXaskX~w!) zBd{-)igaAI1Mmtm^F$37q-7`U#h?*?r&RFVS7AF%xl_wJdj&w6;4LV0wonX+I%%_MgTYj#e3K(&cJO#3&g+! zofM#HL55mwrtPLg6VvO*~b_7-$PXWKbP4GMP>o;tZgTMbQ2xOfpi?HOX)_go$e{St zWf;K_P1~vr0Di*2136H{>aX}2iI7?T@CX6?p1dD{GVm!f3Ia1kaD#rDC;KN99HMG0 z;58VPp**QPKOg7GwlF|#|Fwz)?WgLK%KsXPwoU5a>XY7|Y=+~*A1LUuPZPK1nAKLX zVg%i8q$xi^I~-K1lNIQ3P9se_3EEFOb~=UyD7g6nKhpV1!Ee$Nnr}Z*GDG}?0052> z6nX^5lQzH*6C56tx7?p#Q=sTi#F_F0NO2l{Y6EpZVEji1|56SJ0G0Cu$Z%2s&EFpy z5cP|sO2>|X!F}Qp0UiJ%42K2!a^hoT@)De|#2IK4)rkr+;<3a*>46IrZGoD$6>H(J z03&1K6DzKuBRm;%X;plT${&M_Bn?v24g>kIKBP#P)&{xN1s4wx1+-&r3C1UzE#sNf zRtaOR*S0R>+4(CFr*h$d7TRr~9ioD$wK61plg#(&Rq?;{AUN>yK_JgU0{eLk6+n$>RP1XcMqx z;7OlIeFAL?w3mO80&Pm1@t?j}PXLvF2B-ZKll(^y6&b`ocu!Uc;$eY!e@kGM_6hHA z6a%(B4f%)EQ}&+#aG<|q{A-{DrGMf5Hv)*12}2#7x99Dk9V%^QT54 zr2Fe%Pum~m6I1?RMk)D}JrVlfGQph;pmP@)zH=9mn41<4{_j$N2RcPpim`$i9cd!C zJf#FEf&Aph$;fcHr4 z*)(f#YXY5-6*SW?b%8N5vSr}0sl4uDRgB?jm5ivHU3Nk%$bTwbXnURre+2Cev?R}w zw#zJ88P;Af)@|C!@*D-XFzbk>?PaG?;mb*FaKu%o(YDLgryWDv>G%odq^(ZV`WS3; zIsr4IFHe-8N}l#rvx`n+Po0pRU}x|14y;MqUr;9 zPo6~qdKv}D_J{!IptLp54hG>SP0y;V8G=!a5ep@klz=5qp%P_&#!QM#UxJZ}u~mVw zjF?SvJ&qt8V;zw-Q)VEjLIfxPMY3OxLJ5F{;{?_LN--pWfrZ@}1s?)w3W|UV{KoM; z!+8;m(J474XsGZ4yMwH9KBu4oc=!arArunE)JH#{no-_~;k%I{P$GyS7&!p2H0$d@ z#98mVu{jRT%|06#GBF@X*VF*A$G>)L>(ku(X)@7{!=eM$QV!4Fu61}L;3 zRJp0C8@oTR07OheN=6O=F==IR;r!=;g8F-`e>!qQLH#}2cRn50!RP5{{{;QQ1$|DZ zt*OPqsi*Vk{7CYM|40P>d~|iSA3Yvjxi~p_cz8HbWfzw1ojg60t{%is!w!5GnfaTGt8??3unSf-pufHi z@p$2tq&hPxfZS@^;HAQisaVit!3wBhN}EB{8h84lr!6m*HdNDH74JFsQ?GvRoyK#V zx*ik{-`PalPHDZZDRqC`HQl|n_ps{l>#jMseN`AT)m({Q`fd2PPaX$h1zh#|Yp=!Q z>BCX2dtq2f)KusXjz62-uG-5++JA04+40i%9kdKZy9@_&-Osnl?Y*^qCclOv*rIdq zG%F%R=D}X&nVsfSM4ZADxHjtTV}G}hENv1Y6=`18Y(8zOpa(oI87%y8)T2J_W=yyCR?lld0vhIArb-xqR@vvH z%~9=~D36Kd2)$@Kp`9yvxK&;xO6`%OV~EG0h@X!0*wJS#Xfc2hLaZ{0wGqS^(7zy? zYKT25uq#qczYeUjJU@}TvVAW0UHb4@`1FecmlE`o#j%xn+_uB%&V$`bPp+W|GiLvm z-w%>E{dMn|uGvWKR6I`Xf8BcBk5;U{*dQ=~0_0Ey48^eQUyAnoH0bZF)lXDiuaPIo zPfkA0nfX?XZ1|$0X1_4DDM+iKs6TJGtICYs=6^q20Be)``ex^*beu_T_u30@G}2$* zJ1M#5?ugs(@Ttu0vr!82x^^U>)`|drJ4o)M2V!%w_T-21hYOvVtZ)WhZ%(M+-dZbW zGuomG%{ET=Q&A6IXgK;fzPvSUXlj{CB62c)S!kbH%d?g8+3O8{6!94JHOnqHNjWDT zyuq8f0J`|Ky_pXTjkoMMFX3PSdu3{=%fYAHubqcfWHxlm(+^6Nmj$DNf)2UP~N zlbex>OQ_#;cY?BqI3%OZ>-c6~kxgaSnaE`#^y@sn-ZVw2SiOaVyq(h)C0wU+$Vj8N zTHf!e#0!m_Co)zD3YYY*I63JJQ%xruYd6@#FdY_5UE6(wrSZhdaK9Vi-V&NQcLW|V zM@z8#p*(-#(m4{G3%TGUPR8?-#duzBdl4cnCi)c}cjbp63Lv@~zNMcTy9U?ct1_x*$>OACG%~{ z$~3k-;FZw0j~hx$dkb6|O;#jK1dZ+W145Bdspvtu;ai=6sDZW9D^o*@AI}#s0f3B_ z1cpcxq8)v&pdk6CR5v2C{C+x}^K*_dyl6$^5I=BtSvU5~`eKat@uOXY?dVkyANy)$ zLJ({OP0nuym3*^^gO|NteEYzBaLRFv!w9lMtLb)b6wv;1ls0ti0)D1F zFA@R>hMKSG6Z4APwr8sLYAEa@it3+I5CH5}y}ceX{Sge>%uQn7R&^J{hjWSYN&wWZ z@cxV+d--&nG|+y#Ztl~NEZSjlv3bWbVv5s==L_YvB@Asg7rQxiH7Mdb>0t>>w1CpZ z|*5`bfI0Y|>IRxD0G+3i#`k3gsQl+MXmF!G#5H{9?zNR>ehKq5T?KRu+Wwm(hTsb;jDoN;z zEik`Em~%I&c`@dcetKHtwmbwIc{d+epsiN?Lw7^)$Fph;*(G)x*RKgO&=wyl#FQw? zF3PJM%#^rzx2V)bL{e|HLnWk%-VKLB0fSRXtnOW~6l~Kf@KePL2`^z;gAsn7bUrWx>_;s}wlZvU13|^%vBezJs5ToDVoc6l)a_E_k>=gdSYQr=! zIgXuRAF6Z?8yWk4p}Z9_THm~rg<4D2NpcX?YUZatX zfobj@)%=7vfeb*K70ZN3TsR|KHbD9-4DO}suZ9!}<5SIZV!Wml$pkC=2?QcSLc+pa zBl_B*E_hHrh1hm4a%*W9)Bd!J^=h; z7n>)1lE%9iEXyKua+{09X1D%C$#S3CM2M>Lc>3rc`cjv?FQXp@w-!a31MHwb2G(S` zc>he`V3h6Y-ekL7UvRMQFulyVwi2rtGC`dW<=ayr5N0ov8BOusG;biS#A7v?iQXGI zh1pWndI<&iK`IH1onSWO`?heQ-8Zg}$zbjW20FCLKi6gIKrqDKv5VUl!T)TIZ%E&ax&yV1B5WlaC zUM%(Tru$qzyI?B>UIe6Yw@*tgUA;A4$`(2rT|C^c;n|92`Ei{$X)qCpeHMMhNIuG; znt|#qMyu=E4A>@XIq0*o?M#nM{?-g{k!$gsl5g=Kgx?XG+?o5vAxpV@<*7CgA-DYf zUCP#I-e9kMbC-#pn3rqn0$cY3W=02s=u8fWF2c!W3V(PTCaVwM+P z??m1%TIjEgD{%gFtVCioNaY^8m2gVn?y{XHiXjqOv2I`V5cUz|2&Nzo5>&lUxrCDH ztMHx^sJQlh_7k_lXZZAIRQ6@O&Teu=y~qacO z!hvsVUyt5u-O|Y%J9o#gtaitVG>f2Zp%=1{QXN|El;BRG_AtE}mv82u^W2M&9e8{WMP!mzF{_T6hW zqvUmWZxvIBt)l|CIGzN+R`7jw$YKT0S%J80SG)nM%NyQw1Bhm8@U zelf&}>LC~wiCWa6c`Y)M!BhOMBkCpzuUu!wR)M5&xSoE|{REdETgzrp(SIjf4nw*H2kI&)O>bu@#C&(1m zD;~18O(9*x)Zd!C2|Od(n#CeOLMG!{OE-wEn9zSs+|A^FkUohrV!pW`s?q1#Hf%3* zMOrnN=!-mkY#wi{x$j-G+>zdPo%6|Qkwe^AU9M%pKB1WS*A|(?CN8ddS5(cKh5OK_ zk(Oxp9}m5c`o2k>)|u(*_B-bRPUqz8 z_?Vj6J>m4S;=?=rWMerq7^|UP^O+-);ON2Amo4PWu*i+t!J@n=)4sSgFlZJL5y}gc$69xKipd;Xh!raSyQ-773p`A1nVrJo zL8Hn@B)W)hhQtBQG;roh+Dm{?9*`PY(VvV<~sDaSrH(|b^q)@e{LgE$GHa{Q`s!g6#%A5DK)A_ zb2zyKaO5tu++hY)&obAA@_heG zR$12XXHvT4%5h)HH$RNngnc-*BI*KeE^1I=XQ3)%vyQjhvUD0OQXlNKqaW^++^XhM zUxwf5WAY!xes(KE@Duh}Gn-mtCwor3DD!R52d>}ei&W7>ariLuK9P44>sv^-241iPLu!z z#p!dG%np~-n$9K69*yJJhPdl(`BAh$axC<@{*T|8W?)Fx^l8zAMj}i|F1ruuih9Z@ zwWoABj6}E|9J=gS5TnZ84RRKeNEZS39+zn)7yeZ%tdAlayMcl)zv)mV9`)^1R{jc@ z9O*MT?S5QmL?^`m@r|&%hp{F!7mOdqY(30q*qY$Tc2-aDY;?Jc30c4rMyuJ4oI+$mDY&HY)jrc<@HuM6XvltokR_i!eTm;#^@f+vbX}QY zsjYOPj0`~VS*mHo2ZbSqrGtKDf)1D^zw|JP=$F_s`Gwh5<&L_$vhFztOs(SW zQ+tna%N#l3-M*&CGUAQ<;6)QjbK$}#TJEx?1>Exol6)gU$6ybP>l>V!y_&yg$+s*i zQ*PDJxL2Z*9t*)4vl--U^ro1thS7v8CEMm+xNy;#)ouQ!5ixB7qv%&!O7>DsQcP}_ z(l^Iz!SDjrP(I>ld6D>3c6vcqy^UroY!)v>dx@dA1gIRrGETbattIMmVJgmBdt2C61DWzKiR$@;x6S6x zOI@VG$chxj2SqjgN()WFl7}2O_HDt>5Vuv!YhLrnh!|G6#m=wnck4z!YSWcWIOF6k%-#g;ho+3q1lhwW@|9oiU)>;Z(?Rk&{K0nSsiNjz8h}IoJXKqZu1jF*&l8^v;Q3)-0tkBl5Wy3KP{GcCs)9u4V7@$#X?J?8RyQ9_54H3^tk!S zHOWpKbTvcgQ2MJ$lIZya?50uWFD75Zhildp2;90#bK@h1&MsDTg45_`1k9hssvgo< zb1}r)=0=@B=#P3PVk3Ru1(Gdu+UUO1KJYxlYm%0{IHKA>hYFfOsBmSqMp9ER>N9fp z)MHFRJwIw6F)tY{sC&27wZL?{Qe>F_j_!qjh^GhYr8rsvem;~^0*`mnr@chSF-);L zqDcfpG~j0n5FV2p`_o#=r`6=^p=4x=X1m*}_|e1(yk`wJYl37eU3Y*O^8+(nmv#B9 z#v=1BB(5^6+Ga0F8+Ro0bEZGUhi*6!u16C3N-;^U*)MBj@2pQry^bT_*mn6%9`J5# zv}v_vz#L@>AA3rmtmE7aNA6lXr$#yij|V0fZ9P(}!hk_)v$huu~*X;XZb>BAb!T7 zh74kHrwr&UUS4IDam1uCioJN`a2bp8yRtr%9ctnCg#?TXt`6Uer&$F_mCHX@B)0w- zfRCDtpey)WCnu_l5A|EY8aac=Enw|jhU*^M!=c2dTMvUjLVTblf$Z^YEZPws=;uJC zpxGWqMn%XB8iQVQV%z>`)i3{z+=>byqpz(DOv9E3zCY67$oa3ACzgLayIC)UQC&Jt zD3JsF)f(Rcluzmx{@+zmT`dtt9_lZYK)D4=V+9H&xxDG~TC!r?0u&^VEHPekVd!gZ2((L=5^vqb&-`lZM_DZXK5B&a2cpT=5r?!sgc{ zeV?Vq*bsB%210&XqqgPbDD;p1QXBQxCnb>Gjlp#28!pGipbQD54{(M$>uf3)L>75g zjmsAaKp{!bZ!2&n^!^S58lXcp;6?MA8|c(3o*$(v_>o2k)s~ z;E{YI+C-7V-avVE_>F8SKy7@VAJ?E2iU%QQ#DS0zeE(1^a?;65q;V}kdax<|js=7F z{ycQaPk%XBnUoHes3F3kR9M^irZRh3Cop8i$PU-(rQgDhQ5mb_urQF2*#NIJ&M959KUa@zMD?kX>8WUDH6(CC0St6t8UWb>39{_=-CpRc>VWxcGb5_5tqH-d3)tq=e&P1aRk3t^d(7w6(>NGQux#xZ=oQ_M4&dXs!Hgj*-K1OQa zUBe2k+Sm!VcD|>W{85GA%xcvT&G1P1_6uIY?b}MsT3ND0tC10QHO_Br^WC#qndZ;> zBbKyCTvJ?@5U|6UdxLvDwLWvguk$v*x$m>9-1L5n3yo41`*^o7L4mkBQ=OwX0bOs! zM|>xw*7I=E0jW%qzqvxlsYr=|0Me3n?bAnQEQ|$-+Xr+>fAfFEyst@_vqZhA@P576Ya{dPt;fF*VY@7Xq}? z5947^QN-oW*-`dYW>P+i=o^-N;ohxJ;xCtm22M`!qN#Z-PHdz^P82>Y?E0kLvm?u%L*(q#!rV6(e(XA=wdFOhr2f`gpZ_}#=Uj7o{C^qE}F0ngT#_$gLHj1@z-Bvf_@nZAHe zRyxCpxj5^c+5KX~FFGNTLO(vSseEpeC^f=zO5Rk~$78Qih zcnd=S8?^6Oe`3D`7$vgDa1p2eOk0>)p5^!J;vd&xT)9{0qP>UN^nTc`xQ<-U+@3($ zSiNkhXyLGae$;rjt>aA>fwCN6cnx(njq}#lerfm4d1_40f`FtG1&GOArR9|L`v`rZ z?f9Kze7W^<|4ZIP$j`az)nUz=1j-SnE_gntfvT~Sb|QN6hO)fOuXanG8j(pCWx`u*>h#v`l*T zW3Rx;9Uq-m1vmNvGAEgT{>Ieqly-gSOKXcci!fEG{7)*VX$iDW80d(TvsXK@=eg|6 zC5|gmQ*9xzTq-QfZX{J$>-#4a>qg#h`DGV^M^Zl1zio$)ReRXZ7AcoZOk|)1GGHqN zmGlA=&KHQ^@K8XZ@E$wYsUaGFTer_Ej*{C4G{oGmg|-qT?Jx`XA|Tzx@;wsWkRfIs z*nW!qB~>V0KVc~|t7Zv(Om91f%K3m3)t04p*;sVXFuDB@;Z`9v3ds-F!}qRQA8kHq z$_WZVJ0mfmCw*9muwX8FdsuN9zsd`LA%06Z@TuSi@$qM9FUz)qFm&yG7^0GxQqTmV z7!{n7y%G;m5n~?}c z(OuEfs!i?zZc0Aqy$55#q!m)ikw%=vWFkRcR)6?LtgZQF+z z^b}AG#|j^06rXDv%g>EtUH0GhwCCU#i_zC#H$eNIZDyeFWI}3ThXR`3gjtfX3F9(J zLaf$^2bwWvBs}DQuhds9j~eWxZ-<}ul)cJ@ZgvY%Dj0hW-Hj=hSVOT1Il1+e-()7o zkG@4W$M2mN^LqGY{`|J$vD`ItWXxE>o@MG_{+wQo`jI^oTAE1R^Y=%-#wJU%i-GfU z%Ra@*RmvUWf@tbNs} zy-KgMmw3LCb;(p`Zr_Z2`EYECADz7bC8|N?;p!i%jV!StwD8l?^#%3#Z?|dycLkPd z6s5hb?^DR!xS=NCt2 zLOw1>TQ;0!=7x(+@ENof6VZ>}9`wZDPaKNZX}$7{%w-PcmWaFye3@Q)XHdJ7oe6k* zV$bx%b=!VB+NO0Wa=M!5nQCx9$w1~jYg=3|yUx{^_Bwz6;&I>1yVw%{)x1(1YmA0K zRp301W>Mdq!FjXDGiBPNo4|sz#4oIgc1!k2H51>X_WIw*V7B5`3~@_WAm;EU4KCBd zAwhoE)}A?HpJgjB8R;iZbNG~X*1tf05weE1V&nNn_I&H~;0BZQ3!y=#D1vd*1Ua54 z3sn;dHb}?pH(TO~jIpfUkBXEG?NeQX$nQC-K3-8{ty8QP@`03gWOmPAHR; zjRGl2U6}Fb3c2Tf;>SO%374sqTCWnv%*#cT07gM&pA>|%`~7N2D`thHUr#qpKIamQ zq@RRA9+kfZ^&NdZ*SUwy%9(s9o}Rg;HY`N0w($IFtjccJf8^PZIpn(dy_nfyuBXg zOZLrc35snvn^o8gw1&xNL^gkWHz-^0xq7*y*FtJDHFeJEGL|((ud}1Wh_@VSv_Gzr^Enxu6<+bb5|7Rp z`R5}Lzp#JbI)LxT1D~Y!J?PbSHMzNTbai>Sz&As5!TSYmtw(q85(49q8GLty5WI*8 z;^O7unI^oi`JDW$1Mb(9KC9h9(T2%}=fVESCa>`=Yu)uNHMC`QW9x{B)US=q3-8uq z##nMB$U@KKA|Xr#3sjeWtdmGVZ8`~Bo3?Tl+ldj?sW&CfsV(L*CGxZFFXgoe0yY}1 znYBy4tc6<@s?S+(_@0$UYaS;h7YiJpWR**<8{W0uT@^%am;iQ(zDBMscXT%ryvko! zTFoidwf6@%p--6`=H%6+m+H?njP}G`v4|j>m_4Dc-xJv|2-a$@>1x@hKV(ijX*I5% zgbv8}K1Ov3O&p}SwDbhdj9OTCSSkk|L?kr@6w417b%)BWJ|gpMb0njVaV?Kmhp+mZ zFLwOc`t@o@*U{pDX4cha|XyGm`B* zv7%mpVZ6O9(NqIu+?S8!eutJLNJj5uT(1Z>qvb<(kbNf~ctN7TCbc&sV&H%4Xdjkp zvuk}L%91bn$O(6dSWH$Zv*FiqvRHUb-fHjCz*}MBSaU>qFBD_Q=v~d23$G6$;loF@O%gM{txLxouRu{Vk z(c;TJ2lGZ3RO53ObGu5LDe^kUo6qZN1x;({l+`A<_t9yWWWX?E_(|cH!tyxIBg&1> zPH!4bHtOUH3NYPH9_gJQ_o)sWZH_Owjf^k5^V7zt#yNq6P914MHU`kM#@W4W+&FAi01}-v_f~)wq*| zz|#FhUhg3bf@U=soS<=in4u62P7Pfzo*hv1uFs9;bW;ezH}99ct&P+>4^R4{!n{gE@{Uh9citatwKwQgW;pZd95*Yb)P%u zmfgH%nKb98PK-pqBr|4v?J8)*Q4m&c)(RPV?p<45yR0h%FGaNurIysM#OSKXmwsB0 zvZXcWGnTZX0ag8(*?*p>K(LqhA`Q3u$WE3QX@@@*FcZv{&cE-L)0UqVll%q`Lb;0VsG{F zT%!F(%oUEhYcXo-re)osDGBv-)#|4#nK?Om>yofbg~nsFO)72Sa=1O$?8ha{W!ySC zNtekI#A;%L)H3{)O#P!P+w`TY>&JHKO!Zeg?n&Fpb928eW9iuTejR7iH*B`x!7#5G zJThkOY99;Z4&DC<{unPEBy6``Ty`yFS4h4`str}<_yYqLkRx<^Mgc?mDz&uvv&GqG z2VG05$dvJFd#*+6(*?62bE_K9wqYmlhglT2JxN00j1Bozaz-+ZQG;1|XlWl8q=x5M z@v~KYo;4nYA8z@OkzY+ueQ)27$ESmuX7ujr{))Uvo<)}D^tPpSyxqN0K5c~0rJQ!? zq59;#uA%zIVl)KX=ZPGZ}8?-&0CN`0wmn@e+OM|JEkwJ@KlAM1%}R zqr>R()LpOA@(%WpvMpU=`v8j7=Q>d{*-dYug@A8ydaYPQvvB(0AgZWOF!J$+Pt0Xv zw0u@dZwQZUt^Wfr=b0*T8_$V$7PG<22L~mMb9x?^c*o;e)DyzhvxBH!Z#-V9|TzcUqv{pg5})`Myh=Uuu2} z;I|k&{>y#^p$FSsTB%{nn@=;J`0J0gskr5ukXK=^);4E&4ID-4E?uP7*6irpOHZQT4t-P__p$ER8sZ|*ik2u2&Kw< zbP})R8)Q4>=?`>t7A~RLjICtXwx8bbBw*vqcUU~v8~GjN`kta7^_GbkYsA9!vWt({ zb-nqfTt&0PxN^O7X*tT#s6*>Pb(NiLHu!ZQMc#ux?Q2*Cj%JlQmsqTh#Zp!8O)!sOzoFh{XP(Y4Q;kq?HhP z^hffH=q)no*Aq3Nk#@|*$+w29pB_?;+q--?d>nMljH=YrkTu%+>FwJ4w2Xq1WupTn zY)O?%G(1b=~!wBi%9f6I-x%2Ri&@ev|}t18;w`yh&() zZn%Esv91^$ccjZDD;(;P00;bNs?swo-ZZqK?+$!zR_~T#mL6Yy^Xxz@H4Q$Ae?%tD4EuIoo3nUB|G5iN3WT>jUx>39Q?Bga8Ly|&K(q5=F6la z;}L(L#k822JK}#`HSpm_`h<+nigNrj4Hjs>M9%k5$;lCmvUr3al_V$0SPeWp4r@W0 zgmjMY9_4i)Ue{-@U8-f4@on(B4yGgqo+M^OMr()M zsndhK%dYksxr=z7&&pi)b=ctB&ibRu&bijA2*)B@9fL=lxA8D9E{C9?o#Fj9LQShZ z)MRVf$FC1*wn7KpOCwW)Q=q*Rd zebJiX($R?D!ZqT2d7}-^;NHI9$c7Dq>-6d4JfAb7hGAETZK_2c$EL`^8mO%bfN=Oj zfY-A`%_>!)9DcVUpNKPFZ-TF6T}r7)_*nR%%OelzNDeb*<@K{UWd?sTZm%9HWRx0& zrJ%q9WENCyve6aA+k07{y~Koau=3TQA;9V-aw{+eH5!)ks$&xBPsC)DAYtXm1s2F&*H|c!Mt4^r6EF%tF zr?K9?{DymP?w3xz#-i1c_dynthQ)Fj+AIcZeeEC!=-ebPttG4E~D^@pA z6>n*j(0hg&pT^fmfLf+9q1idYK+!?GgvJY1KBjSmlkx>IJ^Q@l`E}N$v=^z`SLmAe zLC`YE@|1NIG?13zg`CqbDUlMx`Bgb}<33v(&IDp+rOl+8t^Fuve4JBcS^nvQAISip z9bzLWD?)C+o`?49)vLk%mD)RkfT~b;$E;q@75$j6V3)tW5vknr~eOb;Nvwj=1 z=SX!wC*OVW$qW6~_9SUQ zfDQvY3H^ej3n(n-Rs9}Bg&C0ojK^pTBXSIV+b7!`RkX{jD?8w!kvJGYF!RbQ>&qyg z;j5p(FELZ~WmS1S%~PHDj71y^SluCxgENwrR5Ek;)b?B&UTkit5Gi?LRZ==J(263> zt-+0onilxn)TMTLY7oUVs9!diz}C&!khn#GitsaQIJA(Pv$kdwAxxiP_28;IBN;7Z zyr5M=6X&+gtrE~|6#wc(^jijZXmZ6_sQ9EARe}7itxxS_@6quAwlNp^tS+AX09}-) zZQr$hm_P9`jW#{Oc<_vUC+F9_6@n>~k>gn#Gx1Tck4tmmF`RS31jpq@Ol47|Hzg8; zsphMD7(%vVutzZG>2q6vskL;|!Z?TVKvSyAWehZAcNjihvfKBUsDe_IPA`t&2dm?f+0o3)@RoqkNoG`TCvoW|-9ne!sf^33}< z;_~w+$0%AkQ)IEeoWKLg**!Bn(%{kiu%Smw8P(-W1LmZ_ZWxzsHRAoe9^bh!|Z zdWrV&fM2m^uu5v-sR@%>Sy_+tRwqB7`%A?^{<*u++ZvM&&ifw0-$S^(*tVA$4Zr6U z&-V>%ZY0BSMI88^UIsoBktm?pL!p%Y-R9hjLDXb zokiFZUomVAS{B|bo+TW3e$VZ=cU2^TLsm-0F?$ak+O%r#llAUR0rI-NwV1;0D<6fW zo&k~6c{!bB)OP#RoQrlmhH)J7|WCuGKR~P@r=mszIr8Ah3}9;;(C4=j{1ai zwUES94XWP7Nd78g(BvB6!!f;8HN)__?|>O*tWd6J8dkcoxtnF1BE)@z;}~%( z&o8e`UkYw1O?ep_zHbPgN{EMS`oMLZ3^sp@IpU#L+N$+Za=)Z>8bzNT$@Fb zpJ8R=IstSG$YSqCe74CrfLu7aNgrs*;2by6ZtTj6z#heN2EHLSIVZSo*QcUD}`d; zmWj`QfDf<3PWcr&=5^xijd;xuHsjv0Jv6CLVt6#vKpOopS7dm5XE#}7^tA@b>r>AI#K>Q$F6AT9`k_g-u&aiw*iBX7{Qpqih*fEFk*a ziOj0PHZd!ECLp)G+(k!IEt(rIeAI2xHp-1O(Kzy9xWdQv)M1oMRx4S8Z8|fD`Fw7M z$HI4Vp}}yQ6go`DN@H7+yeM1edpj}Nh})jLtC~tXcRTmV+&Oiw%7Qd{hF-ksTmPf^}(W_Q7JtFHT3YnEnBq#ZHM??4Dcu(9%?-#7izLb)qkDQG0 z(&?n z3XkgeFQHSc|8;OP>aMmOq)b`OwgiU-X3#i~-G5UW*on=%UO}MQacL*Llkl+^F z-4X~A+})kvPJ+9;6Wn!h4estRxWnKsmv5bO*ZDg?tE=AW-nI9$)$Srqp(*^l9X3{8 z>gR%?4v%*&h|Hd4|K@dt8T~}fipZHS?EM0{7rVJL(>-l`k>)wu=2;e@fHh5h`(^NK z1)q}#xlD>xPopR&;iGly4EZ4GGIXW9`-R9al_(eZXq>=;4NO6O*^msILh_;pSm@E$ zdQi7x#?4MG-;)v=&?PuWeut$a0#R^8(aiXlvE@Q3!`GPAnFi?s+GRc50?R5@aO?Xc z02(`-9~HG!!(ylci~Q&QJ@WnEP@FAviM_C)@BjxTcxVaIA)jc|Xj&!tO9o(69gkp{ z(?&wM^z!5zntQ)w+9uC!(b#r_IsZb3mQ>g)?;=$#Udp^|)LA5%dRh$QYEE=ZDK)Q! zrTs`93|qec-NdxNrl#!@{){|s4q+mknTW}pjyjZQjnV;urQxG05ygFSKnW}@1rU=Q z@@EJ)SYxQyq)yPo2feW30iJw{Vq_`7;i#(DUhn&Go9qDNVtMa2idJO|qdM43&6OP< z-Pu{oa%@e2hiH=)3-DtH(EJXSt>HfB_uQZlrl7G&u4{`{DW}s>u(p<=EEb-Pl^O1@ zVExAA+{OFWgQK7*7X_E}kleM62i2CDierNQi60O|MAZ-ABmq(wg~FN|nnFkahIsro z`{qpTkctkZ)X6(Hthrr2#`O!9_7_LpMBmMLUJVmI-;l0p=((O`@HtVJbkmRf`*=01 zlS;Fn7FStzodM_6YN+fz*$_IIdQi$s?B4mSH__d2tJU3S{ zBO)Xky7q$cx`^WxtY=2behX?t$zQl*yY{L}FuQIJ^7-B}txTFN6=rKE{+h1|gx;Q4 zLQ+k$YrJzQn6FF@g&DfQi$D&`$~@!$4MoqupmIeA0ER{fj4dH0oCg%0rxiRlpY&@P z{sqSIZcC3f!P2&7BUwN3Z~tp%_s+GMLglW|uz9TIDkpq7Tu88)DI7s*Qk$>rn?tz=ztMz zg9*!-xTq;BEn{Fan^OC}e@C)fF4r=k zIrD9#VRr3CtL7-trBAD_Ywja7Kfs~CzQ$I8V7Z1*vK2(hvnB5#oo>BO9Tt+Shkc&y z3zv@`HesJtg~xF^TQ+nYWQz%u1wZ>2dvG-xml@cq0QSjdLiS{e(TgPDu^Ffl@tAp7peNE4&ZhkIaD_HP^5@o^Jf!>jQ;Q2#9z0G$FX zA~8m-&aI2E7hgAt@*X=C8Dk*;XJ}seNv~TiHXZjv7iwHoCzsP-x7^{9*fY|}>!7FnO}@J%!IeTu6hrY9U$@ykux*pW}L#>ypRsWnBL; z!7Dsn*O*!F&#w@p0fXa^ys?~?(Co?9c8Z4Ae+R`#jX}mqO6V;T9F}JDrWR z?s+7Sv$wPcNc1vHp{sB9WNUc-889}MX#haAP_4T=F#k0}nNVKYx5!zNqMOz#IceWx zT(jzX*&rQO`f9Ie_CFY#k6qL?-=Cnf-ggt$0a{FM(nemTX|Bfajo=)M_4$Of@5+8X z1YP-j(?-fmKsEUjN@j|D|^%71H-dZk|dQIc#oVHOB-0_^T`yV+;(pWJvcIw z%4LILABQP^o}P$p|K$%?4xWkB8j9(-L-McB$l#8P`9ZGf$B$)o8i95A-=kdCDYk?M z{~Z*eDTk%#biT?FQQHT|^9qd_4ua3i#QKO^tH=k=QRzA^ayN{V`ru5o-YFL@(mF* z`oa5Iix;yLjR`L{t8F;iDN5>w(54n@w zsqpni>3F?@?I{5TV@0J9{2QOOgy9m`J$Af;BikeGjl@;g?;*y06YuxT5Dk$HOb|Y| z(5fTp8Z34<=Cho0Fli=PJCEMGp;8$JMSap-?Q4JbV%rOJj&NhnPgNY4{7_9lkwG4V z4#fSd>PQneeDzg^Qux{s$7u{j+~eNlIScjsj-m;r$d?7F#;+8wStu*KXp0h1JT^uV zD#b+AX8SZoNa6KL5?QcjG9@Gp_8l&_1Kx#-5fP|SxIg+C8CydpoaxZPOmdc|T;uGJ z!yo4gnbOLXEWidC*K_3B&}yR0UG&n^nuRVC_w9pJiz{<38&V7ZYw{LtQree=t9nbw z!1hezHS-Hn_WH^4xG~ueU0WiyaYni`@p5Z3O89^j3M8Rw7Z^Dj_pqheD$ScjU~7?% zd|UV6wmz7zAyGb!A}Qa5xxp;tFC0Jck*igU<#;XF`Rm}%n17riEs5|ktK`y_Hfs)~ z#gA#AyC+x#&h-dw?HHYyzq~2hL95Hf)JQ<}yiF7PX%bP4RX?VK820#8m9!!2p8q z`v*%M%~*jugP~#e2SrS9L~r1Wm{avZxq=v(!iU4&0!Bcg@v6Y6()E_Lf9dyxU^?oG zk$4WB-SQQphi=1!hc5lhM`5S_^*Adu<^^wU#*QiC@a8GI%i}bBYwz`gyVOIa;sBCh znC0ujhJ@wQ*Y6bsX_JUt;+AbCAlD+dGy}n!i6>$sIG3x)di1qj;YJU$3%`=Ql;7Y} zZN<8}%ybv`r#mLY)hZ3%;NK((*80ER5w;eSZ?hG_8N)LKgLs?p#&vix8Xwrd0wm$77&wet9WcaguN&e3B+Gf zTA#FH=n}U}+Nk*rGd1ZGkVI)3Sh)Mz1_%&fS4Y0cArfS55^p zk1X|lM1evr(Zsc|G0j-YdIpn*S@kx@9p#@fw-Apbb71F*k-m$Qfhdo4R!O~YG535r zLZgZE$B|d>35a^E^>g4HI@|;We|mI5%^a*k{rdZ&6yvKeSr){Qbv;}>{v6V)Sg*4?GZfDY1`8M1bRO9JA>?B7o{PR8 zfkCQA4@2bHddL=dLYNyy(I9*0S`@6PZcVpCb(OSBb5hCYt)Tw8Q>wU~A4+JC)n30M z#PmMp`ue9m079*#qKD3rQ1s>@-DIJ?XbWpy2cq9};G1bJxjj&XF*d;)#WqeLg=%pX zC(-L=E9y*c45;u?mH@A2c`>idECe`zP`DzJ9doHGsZy78Y1+g2bbC5zJwd`VH+g8~ zq92cz9Jt5N{pm{_&di?Ff-DN__;IHeZOhyf=910;mW48Fs|(JwAAB1nvi&nO*VhvP zyLaAGHe{1+iP#uH*4pi#`+;S8+dF&E#h$g7-hkuT3P*L@FSo{fz0|1Fafle2J4G56 zP+sRYK6j9gDQcEW!h$lTF8VbL^Z!E^7yl_ zdHcnt_KwDIfBVJGuBD@?d$$67%Ymcmy7-bSlt_*3$&zis-oeqO+9&BT4BZtg+k}eu z5RY9L=U*97Hn6yo<;Q}UiFwPN)On;hSLqPBTHP+Zi)iY!nRrc%3f{EzyMW<@=SMkn z^&u9iGjn)WK>2DTy6!<^;yzhzv#VVDauMO!{>r&mJ@P~Sr?55??31gc|6y)nS`Hgl|}A0QZPL&QK3tQC@<)ezTC_r{Pl-q>=- z!j9Sn)9w(Gs5~$3fHgC;gd#32l(s1JTHWzNDv2e5g>3EA^)?{@{Pz|GZSDulaGSBe zD3tm74_UvA@2C<97z}S8Xm#x&mEAL|qUGUW>|Dv*;0mtaQzrku;BZGJTN)JR=;4B4 z*WA(epwfA<*_d}+`UPAi+w_5sFmHRaLWROvo{aYyG z(YHih@BsW(yc=Pr;z1g=JqAE5lJ4=&9nhD%1v>QcEEJk#|HaIz!#J^YA|D@Ml`%6BY$Y00YnI|9m5h5%AK1GAAHeEu0}TeS<>U?%u7j!XJlO1hTF#~ z+yJRtHZ_KizeXCXhknIcFUrtcz5RatuhD1DnQN)!Hcm{YY%HbYsTefoV6Np>waZi_-NV6 zqFSD|Lx2(7U!{Ti{>}P(SN?lbN+(H1?r$faSRp#soXE`=Z^FvaTMjK%AzflC4szGTZ1f& zLDKf7b*nUule3C;>HA;ZSSES{Pl5MpN-l`Co5H`MXX%NbXI#pbIN8ytqJ86A;_qX# zhGp4WjTGiWnsay-O8Xe5?@A4#8czCF!X)(%m}##de<{5gzTf)(4xAM+U79Dm2s~Cw z+S!C>awe`;;aQ%Ui?}iJVSNeysqt_L<};cWw3THQk8)}bk0WgiD!NpX=oYJL8dxYC zQ-%B=jcRhxrsvr%ZPUMI@f%NCFq8sqqGu2xM8r1C?TyHpgNd$lyKG2JesEz~2RMh)PD#E?XH_nCpoX01>Av z2yF^pRvQ9_?|VpU713Up1`&`NWsSfd7z<3(+x5@&?@2T7N-C2+1U{Tr!hPnWA~{a# zBra}1iqF_H|div)@vnrJ!tGVCyH|& zEbdkO391{*`hA41NeHS_kG;XuN;81*aXOJNIa{`QD3Lml$LJ9@X{95X^5jf9MDo># z@m~&w{{Xd{d-nBLcoJ@?gP!f5x5o;9=e_z*?K?I#O8hQ>JQ_j_HIMJJTeJ^gRU7kd z&@e9UkZGzEx~WzD9ZyH;kBzUk`J=|mdQ7vs&ZGA4Q3T`85Bolb0We+`B7StQ2_^d} z>KM)sIDs$!Y}x%jW)Ue){EJ3mgnAz`0O|o85J{aEDkYfi+K^>>y1is5Y{uc2tTF5a zBm7Zq;)_V*+ZERRFE?r?tt66`y)+rSKyWZA9UE6*1^}%CF)D2N?d?jPAF>@Bygr#_$v< z1rz)r&=dG>obhShd&`UYtN@3JdvGnGjcdkmerfoAy7=XLj;EI-=Y$%fei3w6yFN(c z_oOi3C9L<*O%IUXt;7&~Xg6By+Pqd5XkoKZHKjhwf{qUOXhAJ=tUUi)xalO{FJ{4AesV^eM@f=JG#=$wpC67x zf?N8w2tvnfHAju1RDJ3pvZjAvY%PNO2e=!ygM7=p>@Im*kT&-=m&5q?Pz4R|Xxlw) zxu+Agq~eYI0^8FOTvN83J*_&}6?#ch{x zY}%SM8$pV(gH>5i*e6-i@ zhq5?vqH9abH3*!?m@egnOMsqKAhKvBn!-bjnqFrgG;n~V1qm5}0(|a>VBtfM;O(1; z?qXBF8{omcOeP2LA`$tc~E#uv+Jzpvs!!S-Vw|9OT z_cKvCrhE@5yFGCDDbl3!7@wpzCGCQW_NVpRgd%WtM)7RJ^k+C_ z=PERWS^S!vDnTe=@_wFR+ufqIngcaUxg1b9GPw!lX7fe+TNP?Zyx z9>{^xLawgAjUa-7{Zv%>`y9CmpWeIZQF-N#ED(qRB_!6Pq@$+IYVONR$N(sOjBR6_aLVZ> zLXlP_#5evDGOQl7gPkOPRxA|4kg@4NryKWq9i&d5poY1wBF7a~8&6*rEe@Uj zjo^no_p;3E;2N*P-mpx2-}ahWV)zbe{)D~^v&*+eW~E;p$g?z}X7@Fe4G#r&;J}aT z5tpqIh_fUTNY)8&atc@-S1FMv99gT(c8%HP=Iafzpmu)L++@mhE#?pJxD<$2OTVQnN!%rZiZ6GRpz6uJG4AKm$~w!9NxH~(7$4Pcd%PUui5WQuUT@QVUdwPBrN6BAGMDfJdSrQKY;e<`FWb% zF+xi9{&xPr;mrTXw(29aLpzoec}})T==PWJVe!MDANszJhfx#vqWa5PzU58%S3X)3 zMGLH6`>Vt~KOyWyNPW$l3^HlHN=6w-3LU1|BX2H%q4 z3=_7$W!}hr81L;1$4%3yx}E*A2N`^809e0nATL&qc@>In#|EX|yIny<=u7xVNzD{E zh;VE|@zZ#MmnHvwK{iZ3o4_gk^dUu-Uhn1RDcJL)_pyF=_Uj^#$5#9H^bxw5I9o-g zvxb`Ugqr#?@||Vo3YJt;6FcL9XdyN79f#SzV$0Y+_msgAt7NTR1T_Q0-9pM46eUI1)#oT6m(#Rn~z)MK#3+Qp?f!3GR4f6wvlC z%twxq>X?tTPPPcYb%sc+u+Gc{1}8y+InS!LxL!AT8mAez(#U3}@M#xPF8N$_Z|W)jQpGpPJ6D?e$Ar z8+TjBUKIHtTN__MB#Z2|zLQTNqwt;Wme96Tp|hHs&E*R;87TUP=eNOO6_2=umnX5# z#2dY_!O(7n`iD-f3@sUoSCN9gNs? zy<7fgUiWP`uUifYwG+rAH*)$@m126iI9ION(y-ZQklB@I{XhZ+?``{yhSCxF30~{Q z15@Totp_Ce(GB*04G-A=!8iX0xA_kD1xA`>C|NW#-ZcYf4puIfudF)S8f+{an(8_n z?5r%Bx>{^3tXjHn4(zP&2@7p)RSnHIn>Vjj+&<(8dA*-K9rFvz9V^osg3f;@Q+3tm z?QBTsM?8JyEV3TfRy;nL?DJ&*m{Dq_My~GLf5>hYefULom;dMU{?V%SXH}-_tvwo- zhFe;UPPT`(6?)ulLjuB<-QX`_Oa+zfAGvt>NaQAWy4Je0!#cXP+)@ro-)q>0_Q* z_h^apPuoyXewt<|3EzqJ!%-dUKwsWkk-Ry*Fh1 zlOEF!mmOPO)%~iu0TI`9>!MS7O`L5X(&^n5nh#w|P&r9Mj%P3H25-4p4f8Jrm`3+> zSTvTm3BocikEj~_%v#3+g*%VNiZZL^g3xrJIJiJGprd_Op+ysP120=J8P}rFYvcQ^ zsg+!MdoPG-*TtRvaPUHuQraf!C{<)`uRn8Et&mjK)`v}Bd|~72w{ru;gp2)~CmBap z`xz`eoh7FjV+E4+B_)c0fgeryk7%U76WG#tU(|xo__fHL3{MgBQ^Q6J}A7!mB^suEqlds!nNe$ILDRB?p?eA^7tM{ zsf2mQhJmJp5VyxF7XTShK6>`>jYv3GM&|1Vsq z>oD(m$MDlw!&0Fl?FA)`A7OmxQb{5_hBW&iWfbX`V(0+4DimZ92^6tQmlZw)OkCt9 zTJu4bdCtIY$k}w#l@^c2BoSU->GA;HTY<@}#F!=Y4>aG!IEi*uu?-K-TdGooz^xQu z&{non>r>9B2n|8JQuORI--&B8bcAb}*vY#>lIY|2FADewIK5-x-Lo7wnIfu6%>-b- zq^h}oUDfmDDws&H{bsG8V!sYHzK?cDGQmmtuH6#49I8r_r6~-ykLZP0F%J>$q&WGC z_*vp`Uu|X1z|UQlcbbG@RiF7@DmrqKw>=G*g>#j_{SP&q>t<2=K@)bik#c9#95J!FKazgKoY*S?*;T>ccQxgN0RK5wGqcI`e(Ggs@xC}@Ak5PBZy z6v78a3A}&bGCT!`-*1+2%13o-e6(R2-+nOkhLCO1gz=+jf?G!<4Khr8U;aQaE4Q^c-eUKusq8u>h-2ZdT=JF>^9ibUzvb?QiCo!@ zkBLHa6K`;5{Pp)18blyrIr1f-d!fpP=pFxx7r9!2WD^9=peM-%VCrFu6w`3-=v96S zfX>q!F%u&+OgfFllMA{Y$X=5UqQJoYJ9i8Qvw*D)&>i$ z@kbsD+bR{LUBS3-f}$kjul^_Gj*cx?O4vyGv@&ePt6pxq0$@!J&sMpmUrsVEcCCFYwM&H_ zq{VAjuddSO1tQNSQ;~R!8n!*7PzuQugi<@ZlNKdwJTGCdW9aj$nlyHF4f%%RM_0wH zZg!iJ{G7lwM>`v)LBouGqtEePtK-7Bn$nstNtHvc8Q=9jIZ@kja;MtFqYVhlrv2^W z@@SdempC_An@xy|vON1K@h`|i4qi+wirRa;a9QE0_H8@lBxPbQk)wXym;x3k$E|Y3 ziboy5gI-5@GN_2#;*EK;9jjSliuBD=DemY`VJdUIl|ktY`SZi@4|J(#+iCUdJIZS$ zfBg@tNLXmw8=sN!E=?x%3C=e0VJV6oD`CwU<{W>f3sx(aCEU#)f>&x|Mjvq|*lRSI z6o1T3k+yTe1C|gRQK-%#uBDy$)ko&-Dz7{}hCl2O{3jEbiBly4RWv@Wa3x?Csmg(h zg!@ynE4BWH-|#JG3;}0si=ld<*$V1~^>dvI1XInlsLJ7sm6|yWelR{$8@YgrY-&s$ z>?xS{j&^-s zHporH-P&dCvV{wMdQrG@I>VQ>dN2+iRtK z2H71f4tci2;A(gLdp@q)M~DqP(>jY3rr%b4b=j@z`HbTEu^zqCq^?=$(MFP(&vNT$iUqjV!riLMZZ0faFLe|rs~BA*S|`Hy z%t&uWo(JfK8-aoGr^V5p*y|lF(3XITV<#VAT=8A}CuEh@2o@qG5{LYPX6O2aquN_` zBS;X?f;0+O75j-BiuRZ?Lvu|;0!k8%SO}%;^QEYe+^riul8`g*8(dF4w2jx>xnwqG z{y6D-h?w_70>F4vAqyt~mEs98QWV70NQo`9Br1@ubj^(>^RJ-^o$PjCk$6oY^sDVd z?*E9x2BI@2}01@>R+D}I3#kFdWFOB9}J!M9?ZDaez1 z(f91eW5;D1C0?g+-@64Fp=jm^UoVguX{#ct1nJ+Wx##B;L8BnGgoDzB6VlKxbHk$p z-%!a)B3}iMX&u($1W6Mo%aROTW}O!9;Oe2zFykm!KjtC?i@^Sb^UJJmbB2ou)}SN=q*G`XXMjn*PpJd{sOr-<(jswfTc3Cs$!u1CifaoO-H}~`5$w)?Ga3sR*c+zdI|uKzQwhcP zj^AbkuORyE4<{oOvNG9XCuF8cPcEXiaFXk$>(mCSqeRZ(RSPv?&wDGWS&vpPFc}5E z+r2qJ;8{|~yJfP4$0sa64nDHK%h01bNhv4vGzzZ>5om)OaqJ<~G3U?wF5iM>5BFi6 z&b4%q9I&pH^4j<7k5xAp|?rRBr6>^5~vq&R|w6&fggP3q{86>3eA~+k= zxMLi{q#S0??Tcl*3bXx6RaFrceULBqd&FyGVYO*1C?{|u1Z%ppgC7H~Ey#sw{P1Sy z8#weekD|}8h$--dLQ{8IccMq+(h8G0U#e6@W|wradXZeee&7ugITzw5D8fM{j?qyv z@)&crnb~b`7!(nVlqd}G8A4o9e){~xHXw*Mv(g6ZMUGMslyIC^6!hiw-a+1x%hN7G zuc&eM1n;W#Fa>PanfdC*R#4DvVQpsnS&u=8^RB&}y#e@rKZZs6iDT9-SG3Qgqu!)k zorv7AnqW~7S4J#vhtbO?{0An_4tc|9kw3C6|0BraY0s@}@5x7ZVP)I4$U%FSNNcpU zxs#9bqErj)#=MK;I`Ld(Tp3HLEnnmNi{X(r;#QSxZ|R2e&@qJd;w{-V>-)ORkIq?Q zk;iH99c~z~L*R_bJ;D6p?jc5XC7XjjHM-%!a;;@jtTY*z^gwO12L|^*|>Vjkq0iJkYe#6c)2P$dRh39KYi0JmVhbo{;8AhbGUf zO}n|*<;rC++1vT3QtevEZO)>{+w_(4G2r*h`#4#`v2%P+T7PvLXP&G`{e*LJLw*Vi z936r}vB)<(@96^V0l&(fDty96^GAFqgN&g;7mF?>{7q%YQs~#M%x9T?4l94L2-qmlm?!SQ%qbWV8*r&pEa;#pHf1REp zk(1~8hE%i8#^zH@@qIqU7z+vsi1@jD|M23_0m;a6+9dqB3{^tt`O2~f98om5lkG8h zb{3dET_z$<1lp{p?g;*Z3iF@UrbTyMV=+J2yWIM?N1E8!lTZGnZ-@57H$B}dp9gP@<^dR(h0vl!s#TJkL%YsmbL9DU~>oJ&WYo;tM(K$k?%9k^ih`8hvGt?~{} z#+~Z-hmS~TpLkVQEsz-w6NTY?uFCbFo-to8b*@!^7I@9Qe&=hQaP@@Z@jV+d)#pj@ zuPNmaF$2F721*vb07l6}7T)G*<1EiQI@XyFXJ6B+aR0o(E4g!F zC*L?8>NLetxn4~FGGX>~oEa6gl?l3JLRwP^T|2P5-Eay?26BFC+<7WiL@Eh3<|roP z`Lj`9xc8_SJl;Im z-(4A8Y^*F=`q~^UteWpCip4uC6YGuS9aUk@*2{Q9@{OD-lDFMvSd}@`H}q;zz_sLS zi>HREuC3f@bGzE!Y``sPro|!yx{zbNpjp{S5Y{Kl`}&kvUocxBc(cLNr2X#YH9-is z``FECteO;$yLC0Qz_2QP-r~JfrI*qhQQ^j$eB0$&y<{wUIm%F;jZ47hx&GqeD0MS2 z%k9pdK{^dmeJz#b)AIVD-KiJ3{$r}ZMDQqf@8O^@zJYYlC|w)d7Ior4UC%p39w`Bx z!WkU>Mgz6VafA1T3?aV0;Ml!j2+v)fm-mazK$A18DNTn!DR}G=JdsX&Y{0bw2WD%p zi4|P?w%FA>G?mQ4WjW5=gtM)8hCwZ4`$2>8Mu*Jn+lqE;*6+YaI=kP9?~|jL#*H^P z@DE408IDJmm)5WG?ad3igyTKNoozO4jxB$;%jTtAk$vZ$q`91j5JluQotiZqK;q&k zd^(V9H=g;n$W=zXnd;2yh~s^%6GVkwjKR-Dlhl=}+PsYQ-wbS}uexQU>&foRQpo2X zWEJADh&d5tQGRk{exsC<*)vG2Qr&4wdm@eGUmJap|2*L`*_~?fn$UQQPS0-^czGze zyXn5A|M|dY$$;^eE&inQd3KEYo;%!FHv;;@XYQhrD@{VH=G{0jqLK_(1{nyt#e97C z2I><*)|DGMrRI4@tn-yK4T;Bfcy_CSfTVDtyItn|o{Mbs`0|_%7{tp3per-jJ=af( zT4E)1Ns3D4wFad=yqxqTp9@BS-e?a-7}{qUbJ2-xV?F`3Zf zb8j}W5VWl&lq!?I`9Oug$t4IO(`Bm|M0Fzd3AR z%7zKxQLV<{Zghx1_sci`(g zN)I10RAGm)QmaO;D%zh>qTJr@1zcPov<`#DZuCefCNa8JDq7jb7q!MgZ&%0%mmziG z+Be5~X9YLSi`p$(uhErF^6ym-e4jS{n8^~SwZ?DvSsT%ZH|){2u5|KGBn9)lvMVkY z&BzNKeXVG#zL8&h2~+F3eAk~?=2|R?uDe@tAWkngn4&zQ;B8MWwy*~k3y0zxfo$d6 zX%9TdP`MFpp8l*WG*3&}&!D%=C|9fZhq0Td2j!j-`1T9(x)oWp%w0ZdDB@kKLwzNr_E~x3*nS(#lZq1psKh(DFvG!F`lJk-Z`+;G@`7nF^?D>%E$KHZF}jS`vE74_ARF_(+mL zDfmf+ueBZC$FC? zZWQDHMpwbVm-?nc9ym$x!B&knE2n!(vQ?Se>{+IP?QQ)I{!@aTS6Xi=LSwQ&S?GCM z0;hVjPR?S%xMPdr^(guaAI#Giw4|x4b?Z;OK-9H|a4UwcxbM7zl0msHG!XT>v{K({ z$Cq}~k==92(-_I(Wp=RbHnO!BUvBaDJt#CCnLc$jyL31TL$|ZuR5kSmLe)xc#Li|C zIb9V>C_|aMYt?V(>|~h(`d+GU<$()b0lwo1jC@r#R-?z9-7X#3Uf{yV|Ms>U za?#DRcQLDw?RBpvNuabUhYa;y^{q^g5`+Giqe|J6$?n_K`OC%JtU}%x?p~Q^@zCp(AsKs!#fi?L^-ye*H7W^;OK+KINfX{Z&CDoh18;|w_i6(x0Bkqgjzqi1FIy? z*ol4`K~E?9Mit&Z0@0q~TK}H5=}WlA8FW@y3dekAQlg{4^(2)(A6xIRW+N)jnJktw26Lvz-S$m zz{Jd1Vrx?@Og5tPc$GLlvk-6#Yg*(PQcyfTFJu_M;+uobhjZ1?WVIips<1Tug#0zK z&8lS!w-&NnO?zHKgR8*QxX>|a#SUZDiGA8nB`Ijk_p6&_9lo&nmcRxeP`kpp3 zWB(8+kYtk1U-~3TPqY9fowgDC9AQ-znJ2k!KgzpIq6H z?;~CBP;(p2C_=Ls`*`RgZ`Qu_Y6(k0aZ5e3O|B`J${~{?=36Al4h}h3o;FORNMc{K zd84wE$!C=7so4Q#Vq=U9$PUuv9p^6k-)3&nCsIs+srb{D-KkffIw?fts)*w?xCb1 z^Bit3Fg@*xnYC-Tok`lPR=@lABfk@Ktv;ncpypNVx7@)qBi_yo@PT}Ea$4zYP>_j$ zu#-fGUIw~5&p2j+msvx`)u?Rh$oA(Zue<~pqPeFX=u;uXA60JuMg(68cl^PwbLvr? zUWc!$b2jV`(`m7NcnuI*r;Dk>P81JuUfG>OEWpLQhOO7sr#|SO&Nt-4hp!LiOFi`a z$8B&+*xHL4)K^PpN0M1DquM?iDV3%LlPr=$NcK6w9P&ESF7Ed~<1N_DEW?*~b^SdF z8Cra%Mn}kZ;POXPvSeE}RfT)Tu9{lYa$h3UL>*=HQm3YK@H?CuH;{&n9-zBC-v&hz zhn8n(48|G29RfhR7?9|fYwOzos}B`@|a5Z_VdzcpILo-W)zVB{YCB@6L4$Oi+HLQo?+=pXcguUduj?`3xJIl`jg1DpnqjIs zE?Em%+AR*odm3+Eva;iwz>HhoAFp+#{D?R+NOr6+FP6D?OwzpStubeRov~x7NWZQQ z+6j`&jbMp(se8p>JA8h+#a8qCCe^bSG9;R9?pvH%jiIPvd>dZs3|Uvu1_S}m^KCe& zzZ`@g$K}i>#7gq%O;&;*Fa4*Eb%l)nd$slpKzRp-Qrhd`y7?t9_NxR;8!X=@!&AY$ zFUe{bhyJNPd(8I4yidK=&Ec&MyD~bE%FO?b+9A;r%Foq|ny5sl*~pc{{Kwq*kKinh zE%yX=smpH`Jv_A;rR#%lPq7w!JCQ>Q{(u|;>XTBA zeMI*eWU4hOwPg&L2jDMzw*U0O+apR&;Kz$jo!j3A^!QoU|64gl0PLj)fWoh322Z9% z3bkknt*d@8*J2%ndr_VWv=RE_F|uCVeqY$R3QPR1zJ64wBst7B&)N%K!VJ$wouPm> zj^zP{ZQeovCzAK2%Az7h=buCd((ZPHJ4fuQe4F^x7bk77)m)JPaok((T*tK;lMA>g zR(~Z#(A?!|c7{ewbh#vn9nk6w?ood__e#3(M6ZAtJE+u=ltxL_ zTf=Kp^E1iH=BT!ml@<2O2~YUJ0qY^BI?O)V)3Rph@F&hq!a@gXb*qJk&LRcM(UAsY zWtvl%7v4?kU_~prr}Wmtr}M^EX1P}|C04_4cy)Vi*cI_lfbQ+e7o6PeuCK7pILHUE zSCR!f6sLQo<1cNP2TaVzmMTy{y8LlT%c|_Fi5c0P+K6{IlF5z_HHQk`)O9}ttTt1n zU6ePxYNeB@*ppO|0vfugLDJesLm+mD%hvRyerJc>2bU*r4Hb9oQ>Z|Ik zgS0I5xM|!&%iwhCr-g;KJB_*M-rsY6Me>45nw$VO6uyqPdMv6*q~+Z+jNgudqj$W0 z!aUOaM-t$tp<~~18iA0D)D>{>9&EiKya(=+XjH7YbSE=R!Y^$(2XY3}GL!g<~RSjMJK5EJqjnnOT8O~;4FG>r^y zMO{}C&;YODH)AdE>jGMwYxI6vC6Vf!>bSRaSnt|)+6b5+U~H{j4eI7NcT?SmX5`VZ z-z6w4Y;M=V6Vj?HPrBRf0!M^r=WF(c-khc*DD=$2XaAIS3+h74GV5JIRXVEV5|#n)WHuHgD0msUBa{U8`?U%v#SS?w50H z*ZyE~oOwvq5Udl@YkK@!usqDHrql_2dGHFH`B-NiN7VCl<>x(VQ*rSx=?{mEk)9S@ z5&5Ai)C!}LAi++&MZcc}64cD%_6Y0tc%)ee?SfTL5B%bR%uN9ro;*^&8EMI#;K4k7 z2E0IU?3jLXyN~Rm(E^bn`_++W*O*Rgj3E3zsM^B)8AYo?RZm{aZ>34&vkOrE;6fi7 z?Uc-o@p6tID@^jaYp>oXS^J4hqnqiDGv$iJf7(g=ZhjKpY9qt*UK)jR9_fEn24RQ) zQyKniR%J^P?fAl~siX7e@E!$mW@hDJX5(a2)zE$~PsMw~c>fLm4fzf34O;v{*N%lZ zmOdcnZZydF44KQXta1J6b<)mZcFmQtCtQyS9_5PRKDknrN*f%Jst}g}ow7{KSxeB4ewf0hU<2F@VAj^v~d3NT< zylE7F_+2#4br7;J%}|llXNP(436g!ta@%{h8VI07VMN3vk06Zm5K^WF0vml7*iEupPcJjyySWRo!(CG4*I*ZM z*tUJ~6HP4wQ^H8oC$F(aXuykngs#|$6cuVMT}??bC(CtQ&3hj!pxt1Cg1#VZg`n zx%>1H?^TDCtB4Hj%P2vxJdZ4@9nU2znfO;;Dz&Xq6+7=PxiAA~Tv*3=KCq@I1B#SC zpU8|&E7l5*aI5{M9j$^qTrz&0oD|Xj3+odU>{YYPF}0NA*v6nDd=kN7-khl!-mCw6 zJkK{m+9>F1;HRp-eZ_a)H%`jsk8@xDA~S(^&6;1a67l7GXFqs$$akG@kAMIE(?9yC zoNCNb*apK~t~_1;LfNo2cX`>9!~?LU5eKB`WIxIk*B-O}7N?uutX#|56(w-EQ+dl% zSc6{Ouj_XaO&wq+-cpytZo<<33NOFQuaAqk-5)0V&?`7{d<|(3nR7QYJG0v?aZKY= z?$T%WCd>wa)X=_$5}*HQ>OTJ4erNXYRN~UXHX&vp#<~Hv*FNF5BqFLmf&oM;gCF-V zD4 zPCn>i{}#t#zUribaO?~Kek9x^rG~D+$Y2NYSqtr%hXSMTSv{^`mj-lVE3PgL1Ayjz zL;m!Iz3|(y9r9d_dl=K4Kyw6Qc`mj>u}4SjO1o&LWW8^iHoFK*T4nQ6Z1niorbBW2m8>mXRlb64>I}*wP_92(UVcD7YR-DqIbPdL z%VoRqrb#2e-tG|qpb96mD;t@bn53bqgZ&N~0jh0-X{+v0u(a()EH!U3P>YfdJ+^fe z0Dvu{0N|931%&wVOM6tTioB*3p&3xPX#g>R@%@jF~0lDYn!!cOT~jd zPg9+0SD2|iYq!tg6~hBxgIih9-ANCit~3B_n4$jFV<=g+*--b?&~ScoU7E$Wf61fh zX!B(bML(}8yPA9$wl8~ciF|>O(}$ZM3(ie2F%T-==}IX!*At4D0*4 zzJ-Rxm^uw?1Z1!Q@mVBZZ?p+p>EZ^!o@0dpfDOsd13=~~=sx$Bz4V3&`V7l3h$or- z?ZHMkGp6;PMGhAhn&gGu%GOq;y=xYf8hErul1OO}nuQbqsgPXoD01@Ck z`dg+XvX#2QW`^%B zY!as__|ldE=5^!dVT&A8iP{wNcKm0wBmn#fUw7Ar3}K<23-85;L_rIo12PNytxfNX zDfaqhc?DLF658iiXQ-Ge0uy%S>)X~8A(A5iL;l&FGyU+qPau`dB;m zgw83Izil{tIY{s4y7zh0pKZMm){@=d z6w|H#yfFiI0bC6|jpr(vpn02JFSqn#lrPWJJUI|;ZyNvoZex1-{94konbiI6s0}@O zel_Z`HGTSOq!t|D$b=^*(^Zh-?KR8P_vLmq((@*l(>ETjONV32^8iE{OEYjn zJJ;Lp<73p-K3*>87;jhc5))c|JdFCm*j{HZsVR@SkF(V5kAvXM(0bF;pXUMou3k+e z?WiO)|6P!-`W55KZBO|7`-P#rY@sv86dTE$Ey{iK2LSpc+<+EV>NkcRIIPV3u`Rnl zPn}8Z^6cQ8eOd^q_H)-jXM(U%72EvBJ^C!lXkh7l9FF~{84|b_)DYO{?lRjH0JPR~ z;}&f_LYp3x#p1@v9K}xKcl}aK2$e}qhW6{gy5s>GraXmJ7$K-U^3{o zXd*x1&NruCYVgpv==_c(rR5Wpjkbo}FjlFNSILGohEJ~j@M0?$-@kyBwhKP8@5p;} z`TTaYnOEM??cTFHhF}9*hRJEx{l)871Op1ctPEMTMMe5OxXa;Uk&^%*mCv&jU&zgU;M!U}nx zH*YjRhtqC!ljPP-;Th~s1}J*(Q-`JmsQL_Pk-uhyW$%bD@QN8*JXrRCT)|H}o|l!a z{vR(t9Q4o;v0I=|>XX9P>zN(xAuI+S^nJeaID5Sm?`@pDq95xb10E&ZC>UwFI*NiE z;M=dVz2)kUeyRdxD@j}v0N|#)?K`JuswK|+X@B!jcBJuqSXJXICzwH=+7WltAtSdp z%=voWc|eIzefmqV@0|Ls*M2OH0Q1%CqS#J4IJzqycg&suEVxaDOg77a*)uIV83wIV z7R^@muUDd=od7e0LM{Uz83_`iyHuwc z0K9P>Kt+cY7XS$S0*(B(+L@xC|67lsPXqv}*t`pxQMWRY|TN@=+DgbORG86sUjU1_E z!|juh&hGK85ZPryjvW`@V~wsR>3(GzIQc>uBN+8)C+M;g0X7q6ClFZX5(8G7>aO^L zAv)<0AUIFL5zE6K+Cvl6mJvG~@DaCftLa<-9RTYV@aSTF|HKwW2w-*fxgC~o&n@3A zO1;uFEwx+|oE;3AOB$gg07VoA@7n8l7F^_+-1`FrPdMrLv}#3#xdJrSHSffMM~pX` ztBVCRtW?HnE%1m0WKuTmFk%$MOB?=RbnELnJ)@l>ue< zTOeB)-3{NI!%PCxn_~ciKlpCz5kaFv3AYbvbb^=d3%mIB^(R`g7dd$r0}%?l1`=$#Yq{N39o-i{ zDt3WsT^(Ap93B>%$tQS)`Ot{oOrA1J5IP4vn-g^ zt4E+}Ktq<>sHy~j{b#u9@)h>CQKZ^gqZa>QY`vpE9|Qph4@IM!7G6$bBTS>!-ZnOf z`JaE%=Iz|F9GfB%{;G5o=rR6J`VMFtvmQg-=0K1OCZFBxsV!e{TvW+7CPlBb)c;thiUY&S(q|L^0n z)X`FC=FH#2v&A^E4QPyL3;@}Doo0F_fD=0t++pZ301a#GLh?0d${H4B7_<^!$(jyjIs&ik^@nc zm|{~8Q+21%P+S?ktEQ$@cA~B2Jxi_C+UA7-T4TCRGReUy8xylm*u~MnnwtLHAF0}* zj?I^#ZmfPm!Oao@sB)x!{GBH35$_MIs*xmdDFvol6VyNK=tu*C`F*O)!&1Q~pO=Oq z0KP;VHcioqtOS5Pmx^oat-3~_yKG#tR0ROsx0C9{AKHb(oYxrKA2y(ek03hY16Xkl z)@-`k?oL)OV1<+Bd7DJ4QrI=U_Q!R__3V;d56gW3?OrT9tYx9DGf$?%$K&X{r2=&_ z-h>DrWDJ9GBeQwgwf!Z2ukfyrKE3vgxSj*vUjASRG~{>!g2*5MXXiB3NyG~Wkd|2*#tfo!!QmJGhXq4MPqwf` z0RAM*`ll+t)j1Iv3qfP@N=_r8)q>0>i*zq7MWtIZC?SSpC1WZqL+0s1pk~ zVHmQ{eU>&DZ;Yp{8%&6w5_h!;+AiC}g;feEIq`1b69df5}*og@)^V zHEDD6c}2$2Iwfq*AKIUXW@YXgt?O*tUc9CtNCf&aS|gJ=SsJV9ICY%KE{|5gS!Tux+&B#3Gm)72@C1HH>3+c`a zgv2AsW~(O9oybTsssIqrQ>xc)FS6j6TZ7BY(CEbU#uhaldc%Qj#5D`n(CUjObD}s1RL#=6j_D=WHt83VRoi4nc*3BzHt$_{zKnxsNvbqV2Ob7t5%*+G;V5aBj zNErl?DKXZOO*n!}p%9_vgisxP=D-kQeAIFgo;W=;wjVSA03Kyj{d}H7tk8h{-Spb7 zUavg#PDMttbOiu@`SV+Eh8%yW-_+~F9KTZeKA6c{THcXJ@de~tT9{Hc(2SqUO43ab zRr{@~)1#-DM*B)`K+7N8OFzA$8@zRxzpdItyRE7k`2DBNz^;lW%l-^d88rKhCVse` z$wV(-Vn~=I1DGC$-440IC63a+A(T1$V92OYR63pf%#4pSNCHG+wZt`#7T%Qdf)C}Z zBy0V==HvC%^_JKY5EGUCuglNJlnnj4-W?7AFhD@(sprm#yy$&nBDhDK)G{)zOh{oy z7C$E&018H%d4Upmgd-+ag3!7o?HPiRkZ>3P03Kz8V_$8O_F8Bp!`=rA*7MLjZw^3J zY+SOEMgVY(WQAc6r5Q%q2mCcZnvFFx_?4!nVDt||^Ap6N!8TQ)=_z+D!dsN|f$G`2DTkbV!Cv^zvQ>!xv{+C|g>0N^IU zD_FA5d*@B3Mm8BNEx} zy4MfK(WqgEWZh6hUQRmX*iF*%epPCk6T6i^SIftgGuH@(44Sd!q8G1vQLdPW9NS<_ zefuCBypLrhJ+)Bph9Bz$al z?wSWf^Msm_FfK`z{-!Ve zO-&#u$12ia!bS3;m5)^vb+Io^+sWU@uC%H@#xw5CnS9u%uom@`x1gv?KGaT|z9hGz jVDSh|RrHc8)HB| Date: Sat, 8 Feb 2025 07:25:08 +0000 Subject: [PATCH 128/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f37d75456a..6f3e73eb0a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: AsnDen - changes: - - message: Now AI is able to use news manager console that is far away from its - core. - type: Fix - id: 7415 - time: '2024-09-22T08:20:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32334 - author: metalgearsloth changes: - message: Fix unbuckling mispredicting. @@ -3904,3 +3896,10 @@ id: 7914 time: '2025-02-08T06:12:59.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34961 +- author: Chaboricks + changes: + - message: Changed the sound of paper doors. + type: Tweak + id: 7915 + time: '2025-02-08T07:24:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34857 From 87a868459fa0ce24c1241fb5ac420b3f5bbfc627 Mon Sep 17 00:00:00 2001 From: GaussiArson <193122004+GaussiArson@users.noreply.github.com> Date: Sat, 8 Feb 2025 03:15:00 -0500 Subject: [PATCH 129/313] Drozd Colors for Kammerer (#34930) * wooden grip on antique laser, changes description to match. * darker grip * update meta.json * redesigned shape similar to ps3moira, edited mag to match, changed lights colors to match each other * fixing an only SLIGHTLY catastrophic fuckup with an experimental inhand sprite that I didn't mean to save and sleepily added to the previous commit * I DID IT AGAIN * red kammerer bottom text * killed the cap laser things (hopefully) --------- Co-authored-by: gaussiarson-admin --- .../Guns/Shotguns/pump.rsi/bolt-open.png | Bin 301 -> 323 bytes .../Shotguns/pump.rsi/equipped-BACKPACK.png | Bin 492 -> 454 bytes .../Shotguns/pump.rsi/equipped-SUITSTORAGE.png | Bin 492 -> 454 bytes .../Weapons/Guns/Shotguns/pump.rsi/icon.png | Bin 317 -> 301 bytes .../Weapons/Guns/Shotguns/pump.rsi/meta.json | 2 +- .../pump_inhands_64x.rsi/inhand-left.png | Bin 584 -> 538 bytes .../pump_inhands_64x.rsi/inhand-right.png | Bin 595 -> 551 bytes .../Shotguns/pump_inhands_64x.rsi/meta.json | 2 +- .../wielded-inhand-left.png | Bin 902 -> 849 bytes .../wielded-inhand-right.png | Bin 929 -> 875 bytes 10 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/bolt-open.png index 233850622eb3237b506eb3a8a2bff0b64910ba92..b1f87641c12ccb84b148ed7bac2c9db1cbd64ece 100644 GIT binary patch delta 246 zcmZ3>beL&^A!Fb~Cyn|B28KBd3^5EKV5BVWYp#;!ZCD-a02Tldi3|+Z3=B15VoT-a z1!u7y0t!i&1o;L3M*s!{6U<_Fznc$KR_W>D7-G@;cEU!!!wNjC=LJg^T5tRR-#L5o z1sAVXe6dzfdRnp`%xy7z%YEliJl6@$ry3hrl$v}VZMk5Qxp8XLYmV2+%NNXBvCET_ z;h=7}=++~5pRvyP8n}3=z`V-D*!zDM+}=DpVQ;q1x_Y0qTg&QA+t1(34A}mm`va4K WzOKxryAF*Y4|uxzxvXmdKI;Vst0P9{~Hvj+t diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/equipped-BACKPACK.png index 302e6d14b5d37c97e510a1fe1d56e249ab33df90..7ae924a3bab3a858e22727b327b546f5615c3e35 100644 GIT binary patch delta 366 zcmaFEe2jU5A*1C)CzJZ6^77UU3^ih6A&hrB85kIZOM?7@|Dys1AlI?Vw1k0yQO487 zF(jh(?bWw@hZJ~N1B6?;oHy3~Zx@ZZ(iCE4E}Z;e`s}^xvJaER!~5;v0BKk78Os_&rjXQpu>1GB_| z&+4nzhsPzIWDMeReYl>{aWcPA0oOwBC6gwz+|fJRSMdAx7RJTwH~z*jKl~$S!7j=0 z!rVZdVYiAIdx$eb#}Eaj?;r{mO#XKfO0oH&Prl7!o|MO)N%vh}+Z+K^x z$@AT{0Rt0$$ht7yppNw&L|hKZZBeAL0aSnG(_xeu)I!JN&jyn#b0@g=vzn zR*%Di-zE%_zZ4!km*AUmj!CRy!sdqJ#w?4H(&Y`$>f{=KtdQ30*D+`~U;p)L6J{&l^(7=4h%~MPgg&ebxsLQ05njtq5uE@ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/equipped-SUITSTORAGE.png index 302e6d14b5d37c97e510a1fe1d56e249ab33df90..4a54d0cd899cdeecacf1a8a6684d2ffacf69001c 100644 GIT binary patch delta 366 zcmaFEe2jU5A*1C)CzE<>28J3jv8D3z2PR!hVqjnpE(!7r{*MY6fLzBa(-H;-Mj1~R z$B>BDw^!ft9a7+74G?bWa?Y&%-!2++r76V9TsZl`^x1pWWgjMshxgrOFk>#L6tZlX ze)N!S5&JZ*iiJ!HQEE$Scwev@Kj&6ZTK0Tzyj&#sE&a2P{Y3Nk|6DHBQ(7(Kp2eF_zT?~# zESvwEaj?;r{mO#XKfO0oH&Prl7!o|MO)N%vh}+Z+K^x z$@AT{0Rt0$$ht7yppNw&L|hKZZBeAL0aSnG(_xeu)I!JN&jyn#b0@g=vzn zR*%Di-zE%_zZ4!km*AUmj!CRy!sdqJ#w?4H(&Y`$>f{=KtdQ30*D+`~U;p)L6J{&l^(7=4h%~MPgg&ebxsLQ05njtq5uE@ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/icon.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/icon.png index 161c387047d794373475771c83cd25dd5be81459..018e3523163d14f310e4e42d42783e85e82850ba 100644 GIT binary patch delta 215 zcmdnXw3catA*207C&T(g1_o;eh8i)krSkG;)YTczFnHaYG>L(ML9`^uFZe$SV1V$Z zyuA?)R8Z~d;uvDl`*wmO-(dp|mgy(*E_28I_@B(ZB{XPhApg!M6Bti#li-woAz#3` zTts2E)-|SO4lWAvkIWorX5_5>-gmop+CT4zj0NgTW^Z9=IMNjDHZP-d_tmu>*U}a{ zeNpZ4sN38A{+w#hL61NG3^%#yR;Kg)-gw3lgup&(1Tqpu?a!^VE@KZ&di3=FyxjSTCX1OLbZ+59Cze!>4y0K=6#GZq4+ zI14-?iy0WWg+Z8+Vb&Z8pkSS+i(`m||Jw`Re1{cySS}Ru{AKv|xBvFWVAGW?QmNNn z=Q&77urSp<;9B!fm!VQz{(xOWs|(8;?Q>!~*q#Sut=(}~K4|`IChy!Up}!|MF|^2T zycHE<<@7rFh|b5Xv#Ftl5n(yszRGz=x?Z?ZQN*?}ecnUOKR3LW*A>0uV)-tfsAKd) UqG{zbpi>w;UHx3vIVCg!01^UV6951J diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json index 3e793381d0..87bbbc52f0 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-NC-4.0", - "copyright": "Taken from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34, bolt-open modified from icon.png by Flareguy", + "copyright": "Taken from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34, bolt-open modified from icon.png by Flareguy, colors edited by GaussiArson", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump_inhands_64x.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump_inhands_64x.rsi/inhand-left.png index 9276fc552153534f83c438037eb125de3c367571..156ed5ceddeda28e8eb05ab0a662760871a469f8 100644 GIT binary patch delta 449 zcmX@XGK*z`A*1d@C)Iju28Kiih8i)krSkHovv|}Q7#R3Vg8YL2!vO<`WxQ*{0tN=g z22U5qkcv5PZyn4#tRTP=@Zgb2+Ry*zdsj~J4!se1$fV1vn)jT|aTcA8FaJIBV&YI} zV1N=I3LB=V%Rl?^*JZs%CD(~oo*B>Ab0jg;>(@I9Fip9$%6Q4P1qw_rel9nD*2Bfr zpnZSOAMXT1Mm~*p#-FhX?hXvhm(I>@IDhKrf%n|9Gxt6ClYcPJ!HVf;>;~xv`V96g zvl-9c<1zUDe}BvaJUII2=AT67JMY!s zx1D^O_K>OJp19TmhP~!K43o~YOvyR$<|*T^Z;U*P885u;W^LG>FZ7_QmMLCd+oGZ6 my`0Q}e|c7MobYh7VbEJs^J%3=i2^WU7(8A5T-G@yGywqB5XTt+ delta 512 zcmbQma)M=op&(1Tqpu?a!^VE@KZ&di3=E1Bja2K?663{yZ0?dEzu^CHz~JT2_z5V? zS>O>_%)r2R5QG_bOw4}Ez`!`u)5S5QBJS<2+j%VpJS-RP80h~0e^7Pm?|@DfkOo_v}5)kn#DD#^k+<3>Wu&kdfwA zV7R>JgM{?{zikZm`xtKjkX2&)@HQ{)vwDiuhCj6&8|H6$lh(<~uvdR!1Jjp#E=&`C zO>CINJ7aHQ!@imy1=9=|cGb8tK6q-)QDAS^*w1g+(6V06kRj{83(2@WE diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump_inhands_64x.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump_inhands_64x.rsi/inhand-right.png index 56c4aff8745ce62428b7f1663804ede483f14d8f..a12b37663215a07c5570939cbe9afe13cdd49f56 100644 GIT binary patch delta 461 zcmcc2vYcgtA*1d@C)Iju28Kiih8i)krSkIn5qx(T7#R3Vg8YL2!vO<`WxQ*{0tN=g zUQZXtkcv5PZygkBGT>pkaDY{{<^TVf#636FmRw$Eaqio?%4t$olc#=trphAVz`zJ4 zK14Ije89TAfBqlF36e4O(*zjAMZR_$H;7KD|H^$}8#C+XH@8I{8k;uni(?Eko$_Es zzUyBv`GC!=iZjGlUs-RaG%>Zteumsr#xD#42RFyv&pgV|7<|84yeFUip7(Lq8+F5v%A)X~;2V*?L znpNh^k66AYZ%>+B%P3yoz`*p6`NFg&2ZmX0bsg>(R2t?qiZQZWnB>^N5EUfAxFEUg z_JpPaMk!xu;iep}Lvv-@AD=rTt}e`Q@WZa+l4_1!47Y4|eO2PNJdpWfZrpdKd#jaC z8L}~OTrpvEnHO>JDPM=p0><61pO^fZJE7@_qoA|fA0u^9vHa6a1&q5@EEuGW&fH}$ zX?C@}EH1?8TKCy}(Vg9_91OZl911|U0f`3joWC{Og12(I10#vS)78&qol`;+0C73I A_W%F@ delta 523 zcmZ3^a+zgTe!>6YfWgb3@e@#( zv%n*=n1O-s5C}7hYIrp;FfcChba4!+hn0bp~dgk}ZlE`u4EVOuCt%< z?l04wq8dSk3YqKnYzi!1wX6&`_@+2nDXh<}2yANDCI7^X$(?yh-f5{0)0tWergSe$ zh%GkDTgrUNw0OhR_vR1gOBmND)M!uQ+VHN0U8R`GjzL3nFXs;*Bo`yx4q-7cbd)+O zFf3HIKcdXRsgSLp)WD!*%OT*fg!>Q!&z!q#yA(nkHu*{WKYrhIf#EA(vikCSd<>!+ zc$mx_rDp~*X8w2)mK|Bq`*ER3Rh2E*kNk5E+Q&^99GuU3pJPzsU-O`Z&E?&{-oL$b z?3e#4cjA)ab}f4HRjQXcAmMFpv<*W{b8Ig=L#|N?<0^)0uU;}=;aKtXI&Z^8|u6{1-oD!MAX7jEdTuc z6i=n5LsZze(YAu<#X4o|GhccHE1HhoVA!6Zv?1y`Jjz z`c>$8-tn%}RJ)SeW`&l2sif1CFNN8Ob@1MMUdRaKm_A q0000000000000000001hIs5@E;zuYC3T1Wx0000 zqHCyABe_VQmajm~H$apTR1t;i+rk>9u;L2FkwHQ(GAZn}cWrVuzBRGo|EqRAyX$#o zXJ@y2C6fUH7k}`gl*{E%E|BxJZTc1{uwKh2C3hDjvW76&a*Kc`U$QYw2il!dd>-8i_2L}h*-riQRSX8}U*Y57F zq9{_M(a0QsSXE{KPMi5n+PsbT_0wHh?RL8$^`GEm`+vWT-`t&@olN`9%}owH9m#D1 zIOpV?lO!G2)+gFOoZk(%jWIeoIT`L-Yjt~jEARcpd4IosJ>0&yYUS14g-Q1}j{lU@ zpA?l!MeTO`(bxOukAEd)$1hL0O#ttG!CD*k*PJe{ysDeh$HwSsJ*+C6Uz=o!&pau~ z#Cb?79)I2RcyfL$mDo$wRDZkO-&Ltp2HV}auGxxPYJQVyCF%2bo9pr~<@gPdwpSY6 z;Kp_TKa4S9+WS5E5KNBSD=EAgd@58orL!-i>n)?blES;cq~^E&e(a^Muga37`}_O3 zzHgGTTvYC*9L#j+hbGf98}IL;Zy*2w000000Fwv;7n2YI41Zp#S?bhGR5SF7f(F=pnxTU%T5K3ft!on2ad{)Mjq>HXu{ zx+Lkt`CZaJ9De|7t=_4jj|~-04qpdJy0~hs;sh9Go|boGV?&phmzjJ?cIj#IFLVV+ zmN#o{*k5yM#eVR6Kh$7J43gxWQ?t}RuNAi>^~G)9##;wRYnC zB)jx9`Je3Rnxzc;-LmWHyzaYs@IhUlO#Ybg76{C1G49{m9PCJ1D8lE)0&~u3e}7-2(MZGLP(@K_GMVW5`dWj*K)buU zKYYh*HfuBF)|iiF|` zyl~HZFX?e1TwGjK*Ue0$(WpAV>h-=G_q-_D4z*QTmQ@p8#{btV#_9L_($k03@Aq|9 z`zSs(>e+_Y7r@QK!?X9i_thd;ay>G$aN@mAy{}gJha?G;JlBb&PtLu`?O&3-_mOih z9A}ySVD?_`lH^t6%;)oR5okW2zgW*Uv|7v~DZEb-P4Zll^hMvcEHewzW1(Ie!^}eY zO#LsV?X9m%W!$fc+04S;-kv1MO{e<(>H51Q(LZ_KdL3FXYID+lrWpTM^_p$#N0TuE z9g{!;4S#^Qz|6w3_UolIO+%Wd&)(lQKgw6yT+Y9|6{(qpIF1!XkD++)WoFMl|5lqv zuWH?V%f{MW#nXEC@TPk2Tj~4$w{aZn?(R;*;ZQ|U=<@PXgTX+%wYKS{*=*KvwC!v5 z{=Mq;biPKux3{;Q#@G4RbR>nd!^7(QbUa>o=YR3>ak#&~SC(axBr~g8%wP3-lBDyZ zsGjfgYv@8f|I_g}`j8~y&%t2je5G!4?tBN3q??C_XYbV~Us6?!6Yq7ivr`>^a&Bw4 z|9bwDJXiMhYjs}F>1JmqNSn=fBRjzRB+(?#B}rfO?Qg)$g0y^vn_2kdX)#FK+dBQF z{6CjHTOMyJ-;KPanOJ$gt&_U0Uoo)&000000000000000000000Qisl7vYjXQ-MoZ QYXATM07*qoM6N<$g6p`Y$N&HU delta 827 zcmV-B1H}C62B8O#Fw#`0lMw8-w zt=($e>v*cD^KnK|`_+uK{XX06R1ul4Z5F!ZC*e<(g^LbhXn$PDN=H_$oc3e;Bu@WJx>b(&&$u*@_fEt0aTL_0v(ee0u6t7e~dBysqNQOVHo-_ z3|F?lH_zoOZ7=6n--^^2ZHbk%BAx3{NW;#1NQ=`#PrBZn`)?_j%Iojgo^Y6wAPTM;=>8+pd)zww0 z@s<8I9X90;K7N15&X2mog?sMr@B6#EJ6W6T3~r3cwwOO{??{qPdf&6}m-#l7A)o(I zcNlzX$zQ0ocD_=%IhVcy44l*)3|F@2AHJk)GTJq#;UGPhzT8Lea`|7*Kb}f<{E%-x zr{TbPX}kHBUI3|hntZlu^656{#u#s{eX_!PGCumh7$hsnj^E$I&x@zYYA|rC-{^~P z569cecPlq()gFEaFUJbf^Ry6tb<6p`W-OCI0}~fT{0EE}Ul11;rNaOK002ovPDHLk FV1fcAwATOt From d7e978274a03498febb3c5be5e31313632b8bb91 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sat, 8 Feb 2025 21:56:44 +1100 Subject: [PATCH 130/313] Make Ignite tryget flammablecomp (#34970) The flammable effect does it but we don't do it here for reasons. Sometimes this heisentests. --- .../EntityEffects/Effects/FlammableReaction.cs | 3 ++- Content.Server/EntityEffects/Effects/Ignite.cs | 11 ++++++++--- Content.Server/Tiles/TileEntityEffectSystem.cs | 3 ++- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/Content.Server/EntityEffects/Effects/FlammableReaction.cs b/Content.Server/EntityEffects/Effects/FlammableReaction.cs index c1d024a4ef..8e1f6d81e1 100644 --- a/Content.Server/EntityEffects/Effects/FlammableReaction.cs +++ b/Content.Server/EntityEffects/Effects/FlammableReaction.cs @@ -38,7 +38,8 @@ namespace Content.Server.EntityEffects.Effects reagentArgs.EntityManager.System().AdjustFireStacks(args.TargetEntity, quantity * multiplier, flammable); if (reagentArgs.Reagent != null) reagentArgs.Source?.RemoveReagent(reagentArgs.Reagent.ID, reagentArgs.Quantity); - } else + } + else { args.EntityManager.System().AdjustFireStacks(args.TargetEntity, multiplier, flammable); } diff --git a/Content.Server/EntityEffects/Effects/Ignite.cs b/Content.Server/EntityEffects/Effects/Ignite.cs index cca2a301fd..85d7f09145 100644 --- a/Content.Server/EntityEffects/Effects/Ignite.cs +++ b/Content.Server/EntityEffects/Effects/Ignite.cs @@ -1,3 +1,4 @@ +using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Shared.Database; using Content.Shared.EntityEffects; @@ -19,13 +20,17 @@ public sealed partial class Ignite : EntityEffect public override void Effect(EntityEffectBaseArgs args) { + if (!args.EntityManager.TryGetComponent(args.TargetEntity, out FlammableComponent? flammable)) + return; + var flamSys = args.EntityManager.System(); if (args is EntityEffectReagentArgs reagentArgs) { - flamSys.Ignite(reagentArgs.TargetEntity, reagentArgs.OrganEntity ?? reagentArgs.TargetEntity); - } else + flamSys.Ignite(reagentArgs.TargetEntity, reagentArgs.OrganEntity ?? reagentArgs.TargetEntity, flammable: flammable); + } + else { - flamSys.Ignite(args.TargetEntity, args.TargetEntity); + flamSys.Ignite(args.TargetEntity, args.TargetEntity, flammable: flammable); } } } diff --git a/Content.Server/Tiles/TileEntityEffectSystem.cs b/Content.Server/Tiles/TileEntityEffectSystem.cs index 7149f16e1a..4d866cb254 100644 --- a/Content.Server/Tiles/TileEntityEffectSystem.cs +++ b/Content.Server/Tiles/TileEntityEffectSystem.cs @@ -23,10 +23,11 @@ public sealed class TileEntityEffectSystem : EntitySystem private void OnTileStepTriggered(Entity ent, ref StepTriggeredOffEvent args) { var otherUid = args.Tripper; + var effectArgs = new EntityEffectBaseArgs(otherUid, EntityManager); foreach (var effect in ent.Comp.Effects) { - effect.Effect(new EntityEffectBaseArgs(otherUid, EntityManager)); + effect.Effect(effectArgs); } } } From f6c0e6d3d2b197c9d18508a00730bcb2ae22a7b0 Mon Sep 17 00:00:00 2001 From: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> Date: Sat, 8 Feb 2025 16:37:46 +0100 Subject: [PATCH 131/313] Wizard shuttle preperation (#34932) FIREBALL MOTHERF- --- .../communications-console-component.ftl | 1 + Resources/Maps/Shuttles/wizard.yml | 221 ++++++++++++------ .../Devices/Circuitboards/computer.yml | 11 + .../Prototypes/Entities/Objects/Fun/toys.yml | 22 ++ .../Machines/Computers/computers.yml | 33 +++ .../Objects/Misc/module.rsi/cpu_wizard.png | Bin 0 -> 6918 bytes .../Objects/Misc/module.rsi/meta.json | 11 +- .../Machines/computers.rsi/comm_wizard.png | Bin 0 -> 1016 bytes .../Machines/computers.rsi/meta.json | 28 ++- .../Machines/computers.rsi/wizard_key.png | Bin 0 -> 6958 bytes 10 files changed, 250 insertions(+), 77 deletions(-) create mode 100644 Resources/Textures/Objects/Misc/module.rsi/cpu_wizard.png create mode 100644 Resources/Textures/Structures/Machines/computers.rsi/comm_wizard.png create mode 100644 Resources/Textures/Structures/Machines/computers.rsi/wizard_key.png diff --git a/Resources/Locale/en-US/communications/communications-console-component.ftl b/Resources/Locale/en-US/communications/communications-console-component.ftl index a757f9e0d1..209be1adeb 100644 --- a/Resources/Locale/en-US/communications/communications-console-component.ftl +++ b/Resources/Locale/en-US/communications/communications-console-component.ftl @@ -25,3 +25,4 @@ comms-console-announcement-title-station = Communications Console comms-console-announcement-title-centcom = Central Command comms-console-announcement-title-nukie = Syndicate Nuclear Operative comms-console-announcement-title-station-ai = Station AI +comms-console-announcement-title-wizard = Wizard diff --git a/Resources/Maps/Shuttles/wizard.yml b/Resources/Maps/Shuttles/wizard.yml index 7bdb8ca83d..fee421124e 100644 --- a/Resources/Maps/Shuttles/wizard.yml +++ b/Resources/Maps/Shuttles/wizard.yml @@ -33,11 +33,11 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAZAAAAAADZAAAAAADWQAAAAABeQAAAAAAdgAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAZAAAAAAAZAAAAAACWQAAAAACeQAAAAAAdgAAAAADdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAdgAAAAADdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIAAAAAABJQAAAAABIAAAAAAAJQAAAAACIAAAAAABJQAAAAADIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAIAAAAAADJAAAAAADeQAAAAAAJAAAAAADeQAAAAAAJAAAAAACeQAAAAAAIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAJQAAAAACIAAAAAAAJQAAAAACIAAAAAABJQAAAAABIAAAAAABJQAAAAABIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAMAAAAAABMAAAAAAAMAAAAAABMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAADIgAAAAACIgAAAAADHQAAAAACHQAAAAADeQAAAAAAMAAAAAABHgAAAAACHgAAAAACHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAMAAAAAAAHgAAAAACHgAAAAACHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAABIgAAAAAAIgAAAAACHQAAAAAAHQAAAAADeQAAAAAAMAAAAAABHgAAAAADHgAAAAABHgAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAZAAAAAADZAAAAAADWQAAAAABeQAAAAAAdgAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAZAAAAAAAZAAAAAACWQAAAAACeQAAAAAAdgAAAAADdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAdgAAAAADdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIAAAAAABJQAAAAABIAAAAAAAJQAAAAACIAAAAAABJQAAAAADIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAIAAAAAADJAAAAAADIAAAAAAAJAAAAAADIAAAAAAAJAAAAAACIAAAAAAAIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAJQAAAAACIAAAAAAAJQAAAAACIAAAAAABJQAAAAABIAAAAAABJQAAAAABIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAMAAAAAABMAAAAAAAMAAAAAABMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAADIgAAAAACIgAAAAADHQAAAAACHQAAAAADeQAAAAAAMAAAAAABHgAAAAACHgAAAAACHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAMAAAAAAAHgAAAAACHgAAAAACHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAABIgAAAAAAIgAAAAACHQAAAAAAHQAAAAADeQAAAAAAMAAAAAABHgAAAAADHgAAAAABHgAAAAAC version: 6 0,-1: ind: 0,-1 - tiles: aAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACeQAAAAAAbAAAAAADcAAAAAACbAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAACIAAAAAADJQAAAAACIAAAAAABJQAAAAADIAAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJAAAAAAAeQAAAAAAJAAAAAABeQAAAAAAJAAAAAABIAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABIAAAAAABJQAAAAACIAAAAAACJQAAAAACIAAAAAACJQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAADMAAAAAAAeQAAAAAAFwAAAAAEFwAAAAAGFwAAAAAHFwAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADMAAAAAACeQAAAAAAFwAAAAADFwAAAAADFwAAAAAGFwAAAAAEFwAAAAACIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAACMAAAAAADeQAAAAAAFwAAAAAHFwAAAAAEFwAAAAADFwAAAAADFwAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACMAAAAAADeQAAAAAAFwAAAAAHFwAAAAACFwAAAAABFwAAAAAEFwAAAAABIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: aAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACeQAAAAAAbAAAAAADcAAAAAACbAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAACIAAAAAADJQAAAAACIAAAAAABJQAAAAADIAAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAJAAAAAAAIAAAAAAAJAAAAAABIAAAAAAAJAAAAAABIAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABIAAAAAABJQAAAAACIAAAAAACJQAAAAACIAAAAAACJQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAADMAAAAAAAeQAAAAAAFwAAAAAEFwAAAAAGFwAAAAAHFwAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADMAAAAAACeQAAAAAAFwAAAAADFwAAAAADFwAAAAAGFwAAAAAEFwAAAAACIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAACMAAAAAADeQAAAAAAFwAAAAAHFwAAAAAEFwAAAAADFwAAAAADFwAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACMAAAAAADeQAAAAAAFwAAAAAHFwAAAAACFwAAAAABFwAAAAAEFwAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 @@ -342,7 +342,6 @@ entities: 50: 1,-14 74: -9,-3 75: -9,-1 - 76: 8,-1 - node: color: '#FFFFFFFF' id: WarnLineN @@ -578,18 +577,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-2.5 parent: 768 - - uid: 671 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 768 - - uid: 672 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-2.5 - parent: 768 - proto: APCBasic entities: - uid: 436 @@ -605,24 +592,12 @@ entities: parent: 768 - proto: AtmosDeviceFanDirectional entities: - - uid: 338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 768 - uid: 339 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-2.5 parent: 768 - - uid: 340 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-2.5 - parent: 768 - uid: 341 components: - type: Transform @@ -1907,6 +1882,18 @@ entities: parent: 768 - proto: ChairWood entities: + - uid: 143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 768 + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 768 - uid: 222 components: - type: Transform @@ -2079,6 +2066,28 @@ entities: - type: Transform pos: 0.5,-11.5 parent: 768 +- proto: DrinkAleBottleFull + entities: + - uid: 773 + components: + - type: MetaData + desc: Made fresh on the mountain by me... And my army of little owls. + name: wizard ale + - type: Transform + pos: 1.9282424,-5.2112255 + parent: 768 +- proto: DrinkGlass + entities: + - uid: 771 + components: + - type: Transform + pos: 2.6212802,-5.185618 + parent: 768 + - uid: 772 + components: + - type: Transform + pos: 2.3556552,-5.388743 + parent: 768 - proto: FaxMachineSyndie entities: - uid: 619 @@ -2141,15 +2150,13 @@ entities: parent: 768 - type: Fixtures fixtures: {} -- proto: FloraRockSolid01 +- proto: FloraRockSolid entities: - uid: 594 components: - type: Transform pos: 6.5734406,0.1678339 parent: 768 -- proto: FloraRockSolid02 - entities: - uid: 595 components: - type: Transform @@ -2968,6 +2975,18 @@ entities: - type: Transform pos: -10.5,0.5 parent: 768 + - uid: 775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 768 + - uid: 776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 768 - proto: Gyroscope entities: - uid: 636 @@ -3179,6 +3198,18 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-14.5 parent: 768 + - uid: 671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 768 + - uid: 672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 768 - uid: 689 components: - type: Transform @@ -3395,12 +3426,24 @@ entities: - type: Transform pos: 6.5,-3.5 parent: 768 -- proto: PonderingOrb +- proto: PonderingOrbWizard entities: - - uid: 675 + - uid: 141 components: - type: Transform - pos: 1.5413198,-1.6515679 + pos: 1.5532424,-1.6617236 + parent: 768 +- proto: PottedPlantRandom + entities: + - uid: 769 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 768 + - uid: 770 + components: + - type: Transform + pos: 5.5,-7.5 parent: 768 - proto: PowerCellRecharger entities: @@ -3632,6 +3675,21 @@ entities: parent: 768 - type: ApcPowerReceiver powerLoad: 0 + - uid: 774 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 768 + - uid: 777 + components: + - type: Transform + pos: -7.5,3.5 + parent: 768 + - uid: 778 + components: + - type: Transform + pos: 6.5,3.5 + parent: 768 - proto: Rack entities: - uid: 351 @@ -3644,6 +3702,23 @@ entities: - type: Transform pos: -4.5,-13.5 parent: 768 +- proto: RandomSpawner + entities: + - uid: 779 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 768 + - uid: 780 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 768 + - uid: 781 + components: + - type: Transform + pos: 6.5,2.5 + parent: 768 - proto: ReinforcedPlasmaWindow entities: - uid: 5 @@ -3872,6 +3947,18 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-0.5 parent: 768 + - uid: 338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 768 + - uid: 340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 768 - uid: 346 components: - type: Transform @@ -3982,13 +4069,6 @@ entities: - type: Transform pos: -0.5,-11.5 parent: 768 -- proto: SyndicateComputerComms - entities: - - uid: 207 - components: - - type: Transform - pos: 0.5,10.5 - parent: 768 - proto: TableCarpet entities: - uid: 624 @@ -4006,6 +4086,28 @@ entities: - type: Transform pos: 4.5,4.5 parent: 768 +- proto: TableFancyBlack + entities: + - uid: 144 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 768 + - uid: 146 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 768 + - uid: 207 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 768 + - uid: 675 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 768 - proto: TableStone entities: - uid: 171 @@ -4200,38 +4302,6 @@ entities: - type: Transform pos: -8.5,-3.5 parent: 768 -- proto: WallDiamond - entities: - - uid: 141 - components: - - type: Transform - pos: -5.5,-6.5 - parent: 768 - - uid: 142 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 768 - - uid: 143 - components: - - type: Transform - pos: -1.5,-6.5 - parent: 768 - - uid: 144 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 768 - - uid: 145 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 768 - - uid: 146 - components: - - type: Transform - pos: 4.5,-6.5 - parent: 768 - proto: WallUranium entities: - uid: 3 @@ -4831,6 +4901,13 @@ entities: - type: Transform pos: -2.5,9.5 parent: 768 +- proto: WizardComputerComms + entities: + - uid: 142 + components: + - type: Transform + pos: 0.5,10.5 + parent: 768 - proto: WoodblockInstrument entities: - uid: 676 diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml index 08968c9b6c..be4a105429 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml @@ -287,6 +287,17 @@ - type: ComputerBoard prototype: SyndicateComputerComms +- type: entity + parent: [ BaseComputerCircuitboard, BaseSyndicateContraband ] + id: WizardCommsComputerCircuitboard + name: wizard communications computer board + description: A computer printed circuit board for a wizard communications console. + components: + - type: Sprite + state: cpu_wizard + - type: ComputerBoard + prototype: WizardComputerComms + - type: entity parent: BaseComputerCircuitboard id: RadarConsoleCircuitboard diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index 9a9db4237b..caa67f8b89 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -1349,6 +1349,28 @@ - type: TileFrictionModifier modifier: 0.001 +- type: entity + parent: PonderingOrb + id: PonderingOrbWizard + name: pondering orb + description: Ponderous, man... Really ponderous. Magically shows the station's camera network. + suffix: Wizard + components: + - type: ActivatableUI + requireActiveHand: false + inHandsOnly: true + key: enum.SurveillanceCameraMonitorUiKey.Key + - type: UserInterface + interfaces: + enum.SurveillanceCameraMonitorUiKey.Key: + type: SurveillanceCameraMonitorBoundUserInterface + - type: DeviceNetwork + deviceNetId: Wired + receiveFrequencyId: SurveillanceCamera + transmitFrequencyId: SurveillanceCamera + - type: WiredNetworkConnection + - type: SurveillanceCameraMonitor + - type: entity parent: BaseItem id: ToySword diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index 2e58679e7c..3537288a9d 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -719,6 +719,39 @@ energy: 1.6 color: "#f71713" +- type: entity + parent: ComputerComms + id: WizardComputerComms + name: wizard communications computer + description: A computer capable of magically projecting your speech to the station. Using this to make an announcement will alert the station to your presence. + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + state: computer + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: comm_wizard + - map: ["computerLayerKeys"] + state: wizard_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open + - type: AccessReader + access: [[ "Wizard" ]] + - type: CommunicationsConsole + title: comms-console-announcement-title-wizard + color: "#ff00ff" + canShuttle: false + global: true #announce to everyone they're about to fuck shit up + sound: /Audio/Announcements/war.ogg + - type: Computer + board: WizardCommsComputerCircuitboard + - type: PointLight + radius: 1.5 + energy: 1.6 + color: "#F317F3" + - type: entity parent: BaseComputerAiAccess id: ComputerSolarControl diff --git a/Resources/Textures/Objects/Misc/module.rsi/cpu_wizard.png b/Resources/Textures/Objects/Misc/module.rsi/cpu_wizard.png new file mode 100644 index 0000000000000000000000000000000000000000..8feeb986a5507bb19dafaeb7dafed60c929310da GIT binary patch literal 6918 zcmdT}Yitx%6rL(AWo%1B305Fw6)|Xt&fYt7X9fjJTT&XK0n(WAh<5fdv5Ik}MIM5| zDr<;}QA|+85X4_35(1dW4`G$4RTM=eVq!!zAtZXQ1opWzCvukHJ)|aZIRYg%s8)nqa#WO@#aS`rqD^{GtV_0Iwyf#I-u7a)tW#gtw zMJYJkKE1hpuCp|hSp10Fx+orMU!I7E;>%iHMWwqMqJxE*svD*yY#}rpx~<#HLBpaq z9Msmdu%^qqd|~n~-vj+>w}D{-#{jx;Skg7T`2At8AEV?EcF;1=OuwsEG;N3k4K|^` z!7TKXbKg-qG7qDN+UfbKoo;Z73`01L$Vt-^wq<5hi=@X>5P8rzTq@o4^dvuOuXhvb z#SFyZjKw)(;m+iV9&T`lYbqLea6yAG#F1vYQ#hgnF#^1p(b|qCQF#g=L_MkPKH9QIjfF=0Z+D`rz6{=5kKeZ4_%53&=2N5utd5 zMe|gSlF1p%_G9%g6w(jBlmXPP2Qqu2VTd^DN0vzLfIdQ179o3Z>|sL-boLfAK-N9d|vdO0Cv-#=_uA5s5sWJYBn8Yr2J6KZ8S3K|Cb zc10W!mn-6EFi`8Am^`M|n@q4k@`_qtWb%sIz{m`4YMPT*brck{=UdOjhm;;UAR88tSGsHLr=b zR2FV+8Tnkti)EFMHZ<*+_4n{MW*r@y`iJi;OMTO&?3`RaX2|3x;>UMCQ@Gjb9Cg#K zJtOvMiH05Fm5-l!_Qpt+xo~CG`0>fASH^cPPA&T7HtpY^kBmv4J-jRR)9_n{S5946 z#8$s^a`#=$GaH>d>h{-OU$W|8{npN@ZFdP5B}Pf zT97PCPAMs^t`D7R`|zPD1w%jmv#oeSl~s@=A;W%QC7<+W()+{&TJ+8N3HAFSQ|^36Lw yYdL-4!r{vQ*4I`z9Hh$HxuLur`aShu~VrQ?5G{@$7Z literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Misc/module.rsi/meta.json b/Resources/Textures/Objects/Misc/module.rsi/meta.json index b366741738..b6f6c6d819 100644 --- a/Resources/Textures/Objects/Misc/module.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/module.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/tgstation/tgstation at 0d9c9a8233dfc3fc55edc538955a761a6328bee0, generic, service, command, science, security, medical, supply, and engineering taken from shiptest at https://github.com/shiptest-ss13/Shiptest/pull/1473, additional sprites created by EmoGarbage404, cpu_syndicate sprite derived from previous examples and created by Alpaccalypse at https://github.com/space-wizards/space-station-14/pull/34104", + "copyright": "Taken from https://github.com/tgstation/tgstation at 0d9c9a8233dfc3fc55edc538955a761a6328bee0, generic, service, command, science, security, medical, supply, and engineering taken from shiptest at https://github.com/shiptest-ss13/Shiptest/pull/1473, additional sprites created by EmoGarbage404, cpu_syndicate sprite derived from previous examples and created by Alpaccalypse at https://github.com/space-wizards/space-station-14/pull/34104, cpu_wizard by ScarKy0", "size": { "x": 32, "y": 32 @@ -136,6 +136,9 @@ { "name": "cpu_syndicate" }, + { + "name": "cpu_wizard" + }, { "name": "cpuboard" }, @@ -317,9 +320,9 @@ "name": "selfrepair_on", "delays": [ [ - 0.1, - 0.1, - 0.1, + 0.1, + 0.1, + 0.1, 0.1 ] ] diff --git a/Resources/Textures/Structures/Machines/computers.rsi/comm_wizard.png b/Resources/Textures/Structures/Machines/computers.rsi/comm_wizard.png new file mode 100644 index 0000000000000000000000000000000000000000..0d078397d83541745254c19915006db742dec1f0 GIT binary patch literal 1016 zcmVL_|dYo0@Im<=vyvP|wkzK@00|)swH2*1WRi7pcd#5R*T$&AtNa z(WYwDx|)w4uH94DdT#|ElyrWPtObDKbBERH+&A^+=WDgUyT7>%liyU!YBW-6vUYIm z-`@W+*7CbI_l&hH!}F}9^NW&LfOgEugKdI&PFgxYq|^n#)|ceL+MTV(*L!boJ=c%% z(^rxCI0w0nvOU{5D6s(Zv+tWfvHP2o?^6B04*?%rw!-)X&F8KwUpoK%&Py$YHDAjt zus#oAOcdN*Z%Q(-Lt-m>9ch(3}1>!j9h3p8Idt&sV8iLx|0KEM1LbM1W@+(~cK=*>=;m9|?@&y3&-$)i={PbPt{EjGqv@6dqI{z*U zAgs~_kiG{XM835(QMxxXD>TU_wSO1ECqJ=09sTh`Cl9q8-}2~>4*@-yCvtoBeDf1; z(gU=1+gh+g_Q(5Zch^i2LgcqS2k0#wKjV+%H({8v^vAnu^b8l0lXrgGJ7n~hp5~Sx z-5+0+`ue;Y*l|iVHWo$pgi!gZ?vR19^~d98hmi{-k(wK9u7sJOuU`KA()d(gjTZK; zL{eA6zWGk~375%%Mqf?xV+iT|(vV&W()mP0L_|bHL_|bHM0u0`EL=L@hxa#PlI`JT z$oJ*dSAof+M_!6_ehAJ5z;2)Rzjn-nbbcsK1;FId^(F=R=*jN{mFB%pX$`+tg zco(1(dh{hZ7a+vn1n?o9ABuAUI-xbZ47@JH^h&4)8A|o?L-0Napc@*!@=~PpeR&lC zlOO0FZ1&1akj@Xmxd3|dxc$iXhY9i~oga#G0rce2o*i;PRml&3v3ic7`|G9GK8Q8n<{D=5U3h-Z)SIPR|27WNRODNf+1~*+I#F_#cF{XC?!a$ z)|L*Oy|!F!3v=1odHvu2 z{g3&RZkOceO&&t-ARdorh(Fgi74M1SxoIH!jU}^B;Wel%w{WhoyHwV2K%; z7;BnW(`7FwVknzeT_t4UWMCMb6Dt(m2&x-)R0FlJ zF2G|zQAJEJqF9g06FWL!LNhkJ(Sw1gdEBc~xOdSuCBSDaX8W5SKQ$ZR&XbYZDM4G-WY4Lb6E+^G8zqHIl z&`BNCvJApPEMmfy+{+mca>LZA#wj7Efzq|LXd}rGLFm=a~|T3$;2KJ8o< z3mz=sZnPbjOyV$r2uePTHCjUXRv@xw@@Pz1R_Y1mbOH#6Z&QzzVOS~M&S z68kQX_DnznzJ=!~w@nSE*>HjbW>Kba3x!GpjD*by2@G+6?a2c~mIdiat37+E+KGFY zzyvsqhiN1xB#eY2)GFa5k${GekB3W zZKSLh*T^u$RYD38Zb@;Dq)Z}U*fEXWDJ01?CKERd?jV6++N5pQY%%ga* z&_!)BW1DV{#djfSGly9$gh~;+v~o=gL=#eoT%CXm-tj!?OhZhdz4k=DaxZE=?i#kc zv0nj8TA!Fh+=3dn*)6HUOH#Z;(O3N!_D;yax%x*B8R zAY#-Bkb3B9X1x!Tx-lxx-e;uZr!sSGxt3e6kiFuJDzMP->d^*n`i_WLslH4gQ_-hToU-#QfFgPHdl&o|9Sq{k&1@R%Qps z463>DhNZp{gclvJNUvIUW=KI{AqH7hX7S7qmSttvX?NdJmBC9M+r0MmaT`WFpZCs_ zruQ`4vOM_b%sl^Pe}>OjS7|>!FDrX!Yx5|3Yxu+IwaYIVrwWFxDgE-2zp?qjH=lhV z-x)q`-{3Jrt2chSvSH2Q^*>LYR{9$`nR8^*_)pFa*i?V?rON3I7q+MS&^})=v*E?v z^&cHSwCSz7qMdv9?y_<#)-@hzJ^Whbss$ypMwY(!gPn%yhH&G~BNIN;501WX?C*;g zOg{4H$(m@(UH|c}^b^A~i$dkNu72wD>?u3ud@=Irg)2hU7yLJW zHK2KwJ~zC-c1-5qcQsA8cwp>L1?SIPeEHYnSMx{juHW%v#*C(-V`)cQuGHLCoj=9@S)A#(dVeOLo!>94j5RZRSp0EDl;;R1u D7K{bh literal 0 HcmV?d00001 From bc3de0fcd890ca8528f78de4f5d24e63d4036e5f Mon Sep 17 00:00:00 2001 From: YoungThug Date: Sat, 8 Feb 2025 14:16:48 -0700 Subject: [PATCH 132/313] Fix: The SyndicateVisitor now has Free Agent mind role. (#34827) (#34836) SyndieRefugeeRoleTypeFix --- .../Prototypes/Entities/Mobs/Player/ShuttleRoles/settings.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Mobs/Player/ShuttleRoles/settings.yml b/Resources/Prototypes/Entities/Mobs/Player/ShuttleRoles/settings.yml index 7e68d7c61d..c3e2aec9bd 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/ShuttleRoles/settings.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/ShuttleRoles/settings.yml @@ -426,7 +426,7 @@ - type: RandomMetadata nameSegments: - names_clown - + - type: randomHumanoidSettings id: VisitorJanitor parent: VisitorCivilian @@ -775,6 +775,8 @@ name: ghost-role-information-syndie-disaster-victim-name description: ghost-role-information-syndie-disaster-victim-description rules: ghost-role-information-freeagent-rules + mindRoles: + - MindRoleGhostRoleFreeAgent raffle: settings: short - type: Loadout From 1ef6e0bd5765f8a2aa2eab4b50dfc42b080bef77 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 8 Feb 2025 21:17:55 +0000 Subject: [PATCH 133/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 6f3e73eb0a..8c6c9ebf16 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,13 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Fix unbuckling mispredicting. - type: Fix - - message: Aligned buckle range with interaction range. - type: Tweak - id: 7416 - time: '2024-09-22T08:21:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32370 - author: ravage123321 changes: - message: You can make a holy helmet from holymelons! @@ -3903,3 +3894,10 @@ id: 7915 time: '2025-02-08T07:24:02.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34857 +- author: YoungThugSS14 + changes: + - message: Gave the SyndieVisitor the free agent mindrole. + type: Fix + id: 7916 + time: '2025-02-08T21:16:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34836 From bf6fd4d581de27b8b293411c409aa7ed2c332b78 Mon Sep 17 00:00:00 2001 From: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> Date: Sat, 8 Feb 2025 22:56:08 +0100 Subject: [PATCH 134/313] Wizard Item Recall Spell (#34411) --- Content.Client/Actions/ActionsSystem.cs | 1 + Content.Client/ItemRecall/ItemRecallSystem.cs | 11 ++ Content.Server/ItemRecall/ItemRecallSystem.cs | 11 ++ Content.Shared/Actions/BaseActionComponent.cs | 10 + Content.Shared/Actions/SharedActionsSystem.cs | 3 + .../ItemRecall/ItemRecallComponent.cs | 43 ++++ Content.Shared/ItemRecall/ItemRecallEvents.cs | 9 + .../ItemRecall/RecallMarkerComponent.cs | 18 ++ .../ItemRecall/SharedItemRecallSystem.cs | 187 ++++++++++++++++++ .../Projectiles/SharedProjectileSystem.cs | 52 +++-- .../Locale/en-US/item-recall/item-recall.ftl | 9 + .../Locale/en-US/store/spellbook-catalog.ftl | 3 + .../Prototypes/Catalog/spellbook_catalog.yml | 13 ++ Resources/Prototypes/Magic/recall_spell.yml | 21 ++ .../Magic/magicactions.rsi/item_recall.png | Bin 0 -> 7081 bytes .../Objects/Magic/magicactions.rsi/meta.json | 5 +- 16 files changed, 376 insertions(+), 20 deletions(-) create mode 100644 Content.Client/ItemRecall/ItemRecallSystem.cs create mode 100644 Content.Server/ItemRecall/ItemRecallSystem.cs create mode 100644 Content.Shared/ItemRecall/ItemRecallComponent.cs create mode 100644 Content.Shared/ItemRecall/ItemRecallEvents.cs create mode 100644 Content.Shared/ItemRecall/RecallMarkerComponent.cs create mode 100644 Content.Shared/ItemRecall/SharedItemRecallSystem.cs create mode 100644 Resources/Locale/en-US/item-recall/item-recall.ftl create mode 100644 Resources/Prototypes/Magic/recall_spell.yml create mode 100644 Resources/Textures/Objects/Magic/magicactions.rsi/item_recall.png diff --git a/Content.Client/Actions/ActionsSystem.cs b/Content.Client/Actions/ActionsSystem.cs index b594817701..d836c2ed7a 100644 --- a/Content.Client/Actions/ActionsSystem.cs +++ b/Content.Client/Actions/ActionsSystem.cs @@ -137,6 +137,7 @@ namespace Content.Client.Actions component.Priority = state.Priority; component.AttachedEntity = EnsureEntity(state.AttachedEntity, uid); component.RaiseOnUser = state.RaiseOnUser; + component.RaiseOnAction = state.RaiseOnAction; component.AutoPopulate = state.AutoPopulate; component.Temporary = state.Temporary; component.ItemIconStyle = state.ItemIconStyle; diff --git a/Content.Client/ItemRecall/ItemRecallSystem.cs b/Content.Client/ItemRecall/ItemRecallSystem.cs new file mode 100644 index 0000000000..11d3015c21 --- /dev/null +++ b/Content.Client/ItemRecall/ItemRecallSystem.cs @@ -0,0 +1,11 @@ +using Content.Shared.ItemRecall; + +namespace Content.Client.ItemRecall; + +/// +/// System for handling the ItemRecall ability for wizards. +/// +public sealed partial class ItemRecallSystem : SharedItemRecallSystem +{ + +} diff --git a/Content.Server/ItemRecall/ItemRecallSystem.cs b/Content.Server/ItemRecall/ItemRecallSystem.cs new file mode 100644 index 0000000000..88972e9e35 --- /dev/null +++ b/Content.Server/ItemRecall/ItemRecallSystem.cs @@ -0,0 +1,11 @@ +using Content.Shared.ItemRecall; + +namespace Content.Server.ItemRecall; + +/// +/// System for handling the ItemRecall ability for wizards. +/// +public sealed partial class ItemRecallSystem : SharedItemRecallSystem +{ + +} diff --git a/Content.Shared/Actions/BaseActionComponent.cs b/Content.Shared/Actions/BaseActionComponent.cs index c3aa6cc97e..25b36df2af 100644 --- a/Content.Shared/Actions/BaseActionComponent.cs +++ b/Content.Shared/Actions/BaseActionComponent.cs @@ -167,6 +167,14 @@ public abstract partial class BaseActionComponent : Component [DataField] public bool RaiseOnUser; + /// + /// If true, this will cause the the action event to always be raised directed at the action itself instead of the action's container/provider. + /// Takes priority over RaiseOnUser. + /// + [DataField] + [Obsolete("This datafield will be reworked in an upcoming action refactor")] + public bool RaiseOnAction; + /// /// Whether or not to automatically add this action to the action bar when it becomes available. /// @@ -212,6 +220,7 @@ public abstract class BaseActionComponentState : ComponentState public int Priority; public NetEntity? AttachedEntity; public bool RaiseOnUser; + public bool RaiseOnAction; public bool AutoPopulate; public bool Temporary; public ItemActionIconStyle ItemIconStyle; @@ -223,6 +232,7 @@ public abstract class BaseActionComponentState : ComponentState EntityIcon = entManager.GetNetEntity(component.EntIcon); AttachedEntity = entManager.GetNetEntity(component.AttachedEntity); RaiseOnUser = component.RaiseOnUser; + RaiseOnAction = component.RaiseOnAction; Icon = component.Icon; IconOn = component.IconOn; IconColor = component.IconColor; diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index fc6f0baf77..8079885a5a 100644 --- a/Content.Shared/Actions/SharedActionsSystem.cs +++ b/Content.Shared/Actions/SharedActionsSystem.cs @@ -679,6 +679,9 @@ public abstract class SharedActionsSystem : EntitySystem if (!action.RaiseOnUser && action.Container != null && !HasComp(action.Container)) target = action.Container.Value; + if (action.RaiseOnAction) + target = actionId; + RaiseLocalEvent(target, (object) actionEvent, broadcast: true); handled = actionEvent.Handled; } diff --git a/Content.Shared/ItemRecall/ItemRecallComponent.cs b/Content.Shared/ItemRecall/ItemRecallComponent.cs new file mode 100644 index 0000000000..e057a9945c --- /dev/null +++ b/Content.Shared/ItemRecall/ItemRecallComponent.cs @@ -0,0 +1,43 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.ItemRecall; + +/// +/// Component for the ItemRecall action. +/// Used for marking a held item and recalling it back into your hand with second action use. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(SharedItemRecallSystem))] +public sealed partial class ItemRecallComponent : Component +{ + /// + /// The name the action should have while an entity is marked. + /// + [DataField] + public LocId? WhileMarkedName = "item-recall-marked-name"; + + /// + /// The description the action should have while an entity is marked. + /// + [DataField] + public LocId? WhileMarkedDescription = "item-recall-marked-description"; + + /// + /// The name the action starts with. + /// This shouldn't be set in yaml. + /// + [DataField] + public string? InitialName; + + /// + /// The description the action starts with. + /// This shouldn't be set in yaml. + /// + [DataField] + public string? InitialDescription; + + /// + /// The entity currently marked to be recalled by this action. + /// + [DataField, AutoNetworkedField] + public EntityUid? MarkedEntity; +} diff --git a/Content.Shared/ItemRecall/ItemRecallEvents.cs b/Content.Shared/ItemRecall/ItemRecallEvents.cs new file mode 100644 index 0000000000..8bee46a098 --- /dev/null +++ b/Content.Shared/ItemRecall/ItemRecallEvents.cs @@ -0,0 +1,9 @@ +using Content.Shared.Actions; + +namespace Content.Shared.ItemRecall; + +/// +/// Raised when using the ItemRecall action. +/// +[ByRefEvent] +public sealed partial class OnItemRecallActionEvent : InstantActionEvent; diff --git a/Content.Shared/ItemRecall/RecallMarkerComponent.cs b/Content.Shared/ItemRecall/RecallMarkerComponent.cs new file mode 100644 index 0000000000..a85b22e9e3 --- /dev/null +++ b/Content.Shared/ItemRecall/RecallMarkerComponent.cs @@ -0,0 +1,18 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Utility; + +namespace Content.Shared.ItemRecall; + + +/// +/// Component used as a marker for an item marked by the ItemRecall ability. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(SharedItemRecallSystem))] +public sealed partial class RecallMarkerComponent : Component +{ + /// + /// The action that marked this item. + /// + [DataField, AutoNetworkedField] + public EntityUid? MarkedByAction; +} diff --git a/Content.Shared/ItemRecall/SharedItemRecallSystem.cs b/Content.Shared/ItemRecall/SharedItemRecallSystem.cs new file mode 100644 index 0000000000..63d38203c6 --- /dev/null +++ b/Content.Shared/ItemRecall/SharedItemRecallSystem.cs @@ -0,0 +1,187 @@ +using Content.Shared.Actions; +using Content.Shared.Hands.Components; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Popups; +using Content.Shared.Projectiles; +using Robust.Shared.GameStates; +using Robust.Shared.Player; + +namespace Content.Shared.ItemRecall; + +/// +/// System for handling the ItemRecall ability for wizards. +/// +public abstract partial class SharedItemRecallSystem : EntitySystem +{ + [Dependency] private readonly ISharedPlayerManager _player = default!; + [Dependency] private readonly SharedPvsOverrideSystem _pvs = default!; + [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; + [Dependency] private readonly SharedPopupSystem _popups = default!; + [Dependency] private readonly SharedProjectileSystem _proj = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnItemRecallActionUse); + + SubscribeLocalEvent(OnRecallMarkerShutdown); + } + + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + ent.Comp.InitialName = Name(ent); + ent.Comp.InitialDescription = Description(ent); + } + + private void OnItemRecallActionUse(Entity ent, ref OnItemRecallActionEvent args) + { + if (ent.Comp.MarkedEntity == null) + { + if (!TryComp(args.Performer, out var hands)) + return; + + var markItem = _hands.GetActiveItem((args.Performer, hands)); + + if (markItem == null) + { + _popups.PopupClient(Loc.GetString("item-recall-item-mark-empty"), args.Performer, args.Performer); + return; + } + + if (HasComp(markItem)) + { + _popups.PopupClient(Loc.GetString("item-recall-item-already-marked", ("item", markItem)), args.Performer, args.Performer); + return; + } + + _popups.PopupClient(Loc.GetString("item-recall-item-marked", ("item", markItem.Value)), args.Performer, args.Performer); + TryMarkItem(ent, markItem.Value); + return; + } + + RecallItem(ent.Comp.MarkedEntity.Value); + args.Handled = true; + } + + private void RecallItem(Entity ent) + { + if (!Resolve(ent.Owner, ref ent.Comp, false)) + return; + + if (!TryComp(ent.Comp.MarkedByAction, out var instantAction)) + return; + + var actionOwner = instantAction.AttachedEntity; + + if (actionOwner == null) + return; + + if (TryComp(ent, out var projectile)) + _proj.UnEmbed(ent, projectile, actionOwner.Value); + + _popups.PopupPredicted(Loc.GetString("item-recall-item-summon", ("item", ent)), actionOwner.Value, actionOwner.Value); + + _hands.TryForcePickupAnyHand(actionOwner.Value, ent); + } + + private void OnRecallMarkerShutdown(Entity ent, ref ComponentShutdown args) + { + TryUnmarkItem(ent); + } + + private void TryMarkItem(Entity ent, EntityUid item) + { + if (!TryComp(ent, out var instantAction)) + return; + + var actionOwner = instantAction.AttachedEntity; + + if (actionOwner == null) + return; + + AddToPvsOverride(item, actionOwner.Value); + + var marker = AddComp(item); + ent.Comp.MarkedEntity = item; + Dirty(ent); + + marker.MarkedByAction = ent.Owner; + + UpdateActionAppearance(ent); + Dirty(item, marker); + } + + private void TryUnmarkItem(EntityUid item) + { + if (!TryComp(item, out var marker)) + return; + + if (!TryComp(marker.MarkedByAction, out var instantAction)) + return; + + if (TryComp(marker.MarkedByAction, out var action)) + { + // For some reason client thinks the station grid owns the action on client and this doesn't work. It doesn't work in PopupEntity(mispredicts) and PopupPredicted either(doesnt show). + // I don't have the heart to move this code to server because of this small thing. + // This line will only do something once that is fixed. + if (instantAction.AttachedEntity != null) + { + _popups.PopupClient(Loc.GetString("item-recall-item-unmark", ("item", item)), instantAction.AttachedEntity.Value, instantAction.AttachedEntity.Value, PopupType.MediumCaution); + RemoveFromPvsOverride(item, instantAction.AttachedEntity.Value); + } + + action.MarkedEntity = null; + UpdateActionAppearance((marker.MarkedByAction.Value, action)); + Dirty(marker.MarkedByAction.Value, action); + } + + RemCompDeferred(item); + } + + private void UpdateActionAppearance(Entity action) + { + if (!TryComp(action, out var instantAction)) + return; + + if (action.Comp.MarkedEntity == null) + { + if (action.Comp.InitialName != null) + _metaData.SetEntityName(action, action.Comp.InitialName); + if (action.Comp.InitialDescription != null) + _metaData.SetEntityDescription(action, action.Comp.InitialDescription); + _actions.SetEntityIcon(action, null, instantAction); + } + else + { + if (action.Comp.WhileMarkedName != null) + _metaData.SetEntityName(action, Loc.GetString(action.Comp.WhileMarkedName, + ("item", action.Comp.MarkedEntity.Value))); + + if (action.Comp.WhileMarkedDescription != null) + _metaData.SetEntityDescription(action, Loc.GetString(action.Comp.WhileMarkedDescription, + ("item", action.Comp.MarkedEntity.Value))); + + _actions.SetEntityIcon(action, action.Comp.MarkedEntity, instantAction); + } + } + + private void AddToPvsOverride(EntityUid uid, EntityUid user) + { + if (!_player.TryGetSessionByEntity(user, out var mindSession)) + return; + + _pvs.AddSessionOverride(uid, mindSession); + } + + private void RemoveFromPvsOverride(EntityUid uid, EntityUid user) + { + if (!_player.TryGetSessionByEntity(user, out var mindSession)) + return; + + _pvs.RemoveSessionOverride(uid, mindSession); + } +} diff --git a/Content.Shared/Projectiles/SharedProjectileSystem.cs b/Content.Shared/Projectiles/SharedProjectileSystem.cs index bca9b36f89..1d0fc16cbd 100644 --- a/Content.Shared/Projectiles/SharedProjectileSystem.cs +++ b/Content.Shared/Projectiles/SharedProjectileSystem.cs @@ -67,25 +67,7 @@ public abstract partial class SharedProjectileSystem : EntitySystem return; } - var xform = Transform(uid); - 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)) - { - projectile.Shooter = null; - projectile.Weapon = null; - projectile.ProjectileSpent = false; - } - - // Land it just coz uhhh yeah - var landEv = new LandEvent(args.User, true); - RaiseLocalEvent(uid, ref landEv); - _physics.WakeBody(uid, body: physics); + UnEmbed(uid, component, args.User); // try place it in the user's hand _hands.TryPickupAnyHand(args.User, uid); @@ -135,6 +117,38 @@ public abstract partial class SharedProjectileSystem : EntitySystem Dirty(uid, component); } + public void UnEmbed(EntityUid uid, EmbeddableProjectileComponent? component, EntityUid? user = null) + { + if (!Resolve(uid, ref component)) + return; + + var xform = Transform(uid); + 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)) + { + projectile.Shooter = null; + projectile.Weapon = null; + projectile.ProjectileSpent = false; + + Dirty(uid, projectile); + } + + if (user != null) + { + // Land it just coz uhhh yeah + var landEv = new LandEvent(user, true); + RaiseLocalEvent(uid, ref landEv); + } + + _physics.WakeBody(uid, body: physics); + } + private void PreventCollision(EntityUid uid, ProjectileComponent component, ref PreventCollideEvent args) { if (component.IgnoreShooter && (args.OtherEntity == component.Shooter || args.OtherEntity == component.Weapon)) diff --git a/Resources/Locale/en-US/item-recall/item-recall.ftl b/Resources/Locale/en-US/item-recall/item-recall.ftl new file mode 100644 index 0000000000..680c7b7b3f --- /dev/null +++ b/Resources/Locale/en-US/item-recall/item-recall.ftl @@ -0,0 +1,9 @@ +item-recall-marked-name = Recall {CAPITALIZE($item)} +item-recall-marked-description = Recall {THE($item)} back into your hand. + +item-recall-item-marked = You draw a magical sigil on {THE($item)}. +item-recall-item-already-marked = {CAPITALIZE(THE($item))} is already marked! +item-recall-item-mark-empty = You must be holding an item! +item-recall-item-summon = {CAPITALIZE(THE($item))} appears in your hand! +item-recall-item-unmark = You feel your connection with {THE($item)} sever. + diff --git a/Resources/Locale/en-US/store/spellbook-catalog.ftl b/Resources/Locale/en-US/store/spellbook-catalog.ftl index b18cac4f9a..95a8b25e68 100644 --- a/Resources/Locale/en-US/store/spellbook-catalog.ftl +++ b/Resources/Locale/en-US/store/spellbook-catalog.ftl @@ -35,6 +35,9 @@ spellbook-cluwne-desc = For when you really hate someone and Smite isn't enough. spellbook-slip-name = Slippery Slope spellbook-slip-desc = Learn the ancient ways of the Janitor and curse your target to be slippery. Requires Wizard Robe & Hat. +spellbook-item-recall-name = Item Recall +spellbook-item-recall-description = Mark a held item and summon it back at any time with just a snap of your fingers! + # Equipment spellbook-wand-polymorph-door-name = Wand of Entrance diff --git a/Resources/Prototypes/Catalog/spellbook_catalog.yml b/Resources/Prototypes/Catalog/spellbook_catalog.yml index dfd171d9b2..3ba3189771 100644 --- a/Resources/Prototypes/Catalog/spellbook_catalog.yml +++ b/Resources/Prototypes/Catalog/spellbook_catalog.yml @@ -278,3 +278,16 @@ - SpellbookJaunt - !type:ListingLimitedStockCondition stock: 2 + +- type: listing + id: SpellbookItemRecallSwap + name: spellbook-item-recall-name + description: spellbook-item-recall-description + productAction: ActionItemRecall + cost: + WizCoin: 1 + categories: + - SpellbookUtility + conditions: + - !type:ListingLimitedStockCondition + stock: 1 diff --git a/Resources/Prototypes/Magic/recall_spell.yml b/Resources/Prototypes/Magic/recall_spell.yml new file mode 100644 index 0000000000..c5bb96870d --- /dev/null +++ b/Resources/Prototypes/Magic/recall_spell.yml @@ -0,0 +1,21 @@ +- type: entity + id: ActionItemRecall + name: Mark Item + description: Mark a held item to later summon into your hand. + components: + - type: InstantAction + useDelay: 10 + raiseOnAction: true + itemIconStyle: BigAction + sound: !type:SoundPathSpecifier + path: /Audio/Magic/forcewall.ogg + params: + volume: -5 + pitch: 1.2 + maxDistance: 5 + variation: 0.2 + icon: + sprite: Objects/Magic/magicactions.rsi + state: item_recall + event: !type:OnItemRecallActionEvent + - type: ItemRecall diff --git a/Resources/Textures/Objects/Magic/magicactions.rsi/item_recall.png b/Resources/Textures/Objects/Magic/magicactions.rsi/item_recall.png new file mode 100644 index 0000000000000000000000000000000000000000..00bbe363793c6f14ac45c6e52aba3b6852ab5ae9 GIT binary patch literal 7081 zcmeHLc{r49+aINbl%kMijAY4}#WpjxY*{i0ArZ4O%w}d7Tf~D{m$QcUcc)+ulu?u-rm+iOk{%y z2m}(dvNUr5u3+AG#d6@69TM^Z1X`gS;^fM4z;VG$7K2QolE9o`CJ9UmqL4wLpuQLB zdssuLRpxV53A>}FLB<*fI^rJQP>)zu*sA`BZ8GT!B-Ugk#lI%xN{0{)7(f=uWCgWCrKR)3_W_H1|s<{di!svLye| zj`z0;&#I0jL|!pyc<(lBAAYmqR31xGC{!r9!_Pg7F#URI88v(MLmQ*cR&Unppz4L3 za)m?UcAoJYe5EH@IjL_Z^n5P(N4dl;4N|OqS|JtDQ|w*!R8-Wiqxs44R@rr#S>F<$ z---XE(-InynqJ!L0$+Pc%(T7z&=T>wZ2cq8pNvdSb}$cvRhrtCEq&BIu39}U^yeXq zNsye3N;&sJa8{BqbB&+q$;mZ>C2#Vk-@wF-Ynzgmg>8^X6?c5O?TPtKV!DEPuDPjj zrOtSv5#f*M8ril>6Y*%Z&ilRB)fA``7LJjo*xb!)Zs$6jvA%;itB&?=+Y*k=+p@0h zyj!{N){AE#N>b2iUrL|%&HSZ>; z97ue&U5*wjql`hkzrUNDMfpgb2ju8HH!mM3}6CuQE&zV_LmF+(xSV4J6cJGplR$tk6&SmqgbeXki z{%(hvz|n6XVj}LE(NeOMGDYkAmBrr}+&*ACMH!dMs&l*lHT+R)eROMUy~ee4OY)bZeEIK*5HzvBbOrvi$virYVJPTq35B6Kh&xi?^2WtQS=WZ&3;SjY43=NaC|ubxQ6I@k1i z@4b|2Wol5_yz#Y>c2dv2k54SNUe;Eyw|e&$m6&$>r1h!XypoN6yQGA329$fWio=x= ze@xvQc%4rZUc0BMQ8hZvwKpwhdUIfhVUv@sMuq+5(?=&_){!NT?{&5yW@P=zz3cb1 zuP}MZ+&HJq?U=Y?`h#oz<11%UPwzR0+aOo7U3YuZrmXA5eLLgIP2HE>6Y(`ZVTK6X zeyouyqE`~r{>kAsHS4Ql0XnbXcA!%@vlJh(;U&JsYs`Do(aSn7#E9pp@`-gbCW$H+ zJlj_{7{IPQpqmdAV(mt`lG4$=ZGL*jMyHXzr<0mhj~&0+ydj|;WufMybtF+aH|LDW zN*9kA4lXIR0yE|IHG~46WI9FwzPyv;3*}ZQl zz{aD*bLAtHp>Osqx23lCjQ4 z3!;9;aHYvWwvtCh)uwccEvq$|b&>dw$U(0!p^Xw>hlK2B(#R;)VC^5j(5u4~yIJkzju^Cq_j* zO7!ejp`jH?ZQ45NHSd!zv~rv$ykjs@EgV0{WU=XMUHy^p@J?aIM2Yq8a6_A>QvYtemJ}OjmXy_{Q*y#tkAk`$NvbOjVCJz z3(URLY0Oj>mkY}je{K~ZDywR*9ZE~n(AwW^n7{x z=b>%ZeTn%60o`6Bv`ga6)9L;lI`Dhd)ymK~8Lxv|8(yN!Y2>xS+`1Zhn{wy2^Fr#1 zWy|D>WYZg6Z(rd|=*nBl-$NZKXmYPJtY zvrH8C42y~D=hoEGrx*^Ou9oJUygjU%s7>pwg4*1M`wrY0wY9cK} z8~SRMBVS*P^^izcNgL;m`gwTYgg@z9LP%i02%Z5iGN=v;*ugP ze*vi!Q`K1e^ipzEj@%&TUQdOOarEk)rzZ87;dkmvRzA)?Chl3$=p|*7ZnL_}=Q%t? z`tYrzSFF0@ob4C8IJKYi;_DUb^aPC z^@-Nx6x()*191%|vUg~$39;7t*p1Fkhu_58+Gi-ajXE<*wT|Yq^ZCn`?XS-n7^@sKfN{zdK~`ge4>$c2~)i zwb=-&kS#RO@$%%Q>(`;3mxtSngA?xwfw7m}t_iGK71_0fR2q7kCUC|Bf%J`nm^gwTi37%yyeV`8$aqa1 z1WX|sKwPx3a4gf5$2%i@N z-1E9&5HKIY@iTz9V(r1E3>FEjrJ z!MI$m23J#q!SaS7&}cLaj)WnRPyhjC2h%yYASj)!$fKC&Fe9-EEDDoDVbH-mP8^;Q zz%hV8fN}5wIWS5v4+1(D9PrwFdNzj$vjQ4gz@ z8Sx9ALm~fMpkL<08~L|D0Czw5e?foOiysSLSBx2h5WsV4Wo7{3#fu>_2oxfQf2*m3 z(}lxvcql@LjE8FB(F78>bD`Lg*l%Xatc2)j^SonrH-yh(_uxqOfC8fJ(qo7e~dTA_7!+A`Y*G)YO4$ zl5tv4Eo~h*6puiWp(r#Gk4F&+a4nQBpNh8*7-M@Y0|-(B{c=92`$JgsvtKvJM)ltp&KyoSz?`(V4_z18L4YEsj?m05iWIm<`61MZ$3yEGGtoY5?JJgL#zvq5|tLlncg& zLEszm!6YKD;udPo1m_LoH}zqE2mUuEM;`{4{(s~73H`xh%;InvEI&Jz9p0Bj;QT$$ zUx9xxIRLvIo5KpW`VW)(A2|K_gtY{08LZ$%{vApF^R4+UiAv#11qSoC0St~XFFzX> zNFwr=0MK!Mh~R^xdy|0ucA?n5_f!5Nkr8CH4pEzohQf8wXs8w%tp!Enk-AVK9Hj}z z6Ofu@68cwmHiOLJ;#eeOZy*PNbq0!yzs_Klh5S?f70>k{@sbOU)P}+lK*>2F;TSCx zMoSwqzuI7Z7;lIDK3jd>9)!hW7VDwU+oLd6yhL;iU^1x`66;r;zUR&Vf?H(2kfZ;} zd@*d^+LXZz2CCSHW5=cct^2-T$v@Kfw_LyF`bP@1@#Xj(7G@wzkS<6)N?%t1=n-aG?q&mT@HpOApwQ?n1?UvwSYgeD zUI~axz@d`zuY7^OTw1KmjGbI>y-jVimfb1Y6v5r%rXD5hVdfapP`pFRq&}(XrQV07 z+4;KzT%s%Oc2;*f!%M+?jdBYV92DLXTU#?V#;`}N9kEvsqHHg(VR+`?-0XPO)J;_5 zWUuLG^~x#h9T}rxXN4sPH)wMNLQ5-bY;LwX-uiI0NG-XM=@ff7YhdGxrJ0^uf)Y6< zE?v7)1@C$?udLo9KiAeGCNfuD{Nmveg$&M<3FjS4)b>w{+$`f}MGA&J>Tz&IM%!&f zNk6`mGu}SvqpH5)+15DUEPBcwBavj2v|ii?h}Tqp+D*2p`+-q4n>G`UKv(`!@|gel zVG$=guTe)v#Fs$u`5Q@UL+J|V`=-vJA3@{SnTZ@RdAqWQ`>hVOPuO*olC8hHZr-NwM6~u-Bfq4m;{D$$aT`GOSAhLQ$04Vkw3P7O;hu-Lt)FE=4x`F m!^VOu=Qc_=p|)?T6A)Q Date: Sat, 8 Feb 2025 14:37:30 -0800 Subject: [PATCH 135/313] Meta tweaks (#34957) * Added back warden's enforcer, added spare mk58 magazines to blue armory. * Various QOL. --- Resources/Maps/meta.yml | 3355 +++++++++++++++++++++++---------------- 1 file changed, 1948 insertions(+), 1407 deletions(-) diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index 8751b9c704..ddc8d4e908 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -159,7 +159,7 @@ entities: version: 6 0,1: ind: 0,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAACHQAAAAACeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAACdgAAAAABdgAAAAAAdgAAAAADdgAAAAACdgAAAAAAHQAAAAAAHQAAAAADdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAHQAAAAADdgAAAAABdgAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAAAdgAAAAADHQAAAAADeQAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAABdgAAAAAAeQAAAAAAHQAAAAADdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAABHQAAAAABHQAAAAACeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABeQAAAAAAHQAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACHQAAAAACHQAAAAADeQAAAAAAdgAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAHQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAaQAAAAAAHQAAAAAB + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAACHQAAAAACeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAACdgAAAAABdgAAAAAAdgAAAAADdgAAAAACdgAAAAAAHQAAAAAAHQAAAAADdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAHQAAAAADdgAAAAABdgAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAAAdgAAAAADHQAAAAADeQAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAABdgAAAAAAeQAAAAAAHQAAAAADdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAABHQAAAAABHQAAAAACeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABeQAAAAAAHQAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACHQAAAAACHQAAAAADeQAAAAAAdgAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAHQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAaQAAAAAAHQAAAAAB version: 6 -4,-1: ind: -4,-1 @@ -219,7 +219,7 @@ entities: version: 6 -2,2: ind: -2,2 - tiles: eQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUwAAAAAAUwAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUwAAAAADUwAAAAACeQAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADWQAAAAACHQAAAAACHQAAAAADHQAAAAABWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABaQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAACHQAAAAACWQAAAAACHQAAAAACWQAAAAABWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAADaQAAAAAAHQAAAAAAHQAAAAABHQAAAAADWQAAAAABWQAAAAAC + tiles: eQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUwAAAAAAUwAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUwAAAAADUwAAAAACeQAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADWQAAAAACHQAAAAACHQAAAAADHQAAAAABWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABaQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAACHQAAAAACWQAAAAACHQAAAAACWQAAAAABWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAADaQAAAAAAHQAAAAAAHQAAAAABHQAAAAADWQAAAAABWQAAAAAC version: 6 -1,3: ind: -1,3 @@ -649,7 +649,6 @@ entities: 5275: -9,40 5289: -10,46 5290: -9,46 - 5320: -4,46 5321: -3,46 5322: -2,46 5323: -1,46 @@ -688,6 +687,7 @@ entities: 6492: 49,11 6493: -4,42 6516: 74,3 + 6558: -4,46 - node: zIndex: 1 color: '#FFFFFFFF' @@ -824,6 +824,12 @@ entities: 6533: 66,24 6534: 74,24 6535: 74,16 + 6559: 7,26 + 6560: 7,25 + 6561: 7,24 + 6562: 5,24 + 6563: 5,25 + 6564: 5,26 - node: color: '#DE3A3A96' id: BrickCornerOverlayNE @@ -1671,13 +1677,12 @@ entities: 5420: -2,32 5421: 1,31 5422: 3,31 - 5425: 5,30 - 5426: 7,30 5427: 8,30 5428: 9,30 5429: 10,30 5430: 12,30 5431: 13,30 + 6565: 6,30 - node: color: '#EFB34196' id: BrickTileWhiteLineS @@ -5282,10 +5287,11 @@ entities: 5349: 6,35 5400: -18,27 5432: 11,30 - 5433: 6,30 5434: 2,31 5435: 0,31 5436: -3,32 + 6566: 5,30 + 6567: 7,30 - node: zIndex: 1 color: '#EFE74193' @@ -5912,22 +5918,17 @@ entities: 4,-1: 0: 48127 -4,-4: - 0: 39321 - 2: 2 - 3: 8224 + 0: 47547 -4,-5: - 0: 39167 - 2: 8192 + 0: 47359 -5,-4: - 0: 61164 - 2: 2 + 0: 61166 -4,-3: - 0: 63897 - 2: 34 + 0: 63931 -5,-3: 0: 62668 - 4: 2 - 5: 32 + 2: 2 + 3: 32 -4,-2: 0: 36863 -5,-2: @@ -5996,8 +5997,7 @@ entities: -6,-5: 0: 61167 -5,-5: - 2: 8192 - 0: 51455 + 0: 59647 -9,0: 0: 60943 -8,1: @@ -6221,8 +6221,7 @@ entities: -5,-9: 0: 7677 4,-9: - 0: 20599 - 3: 8192 + 0: 28791 5,-7: 0: 58621 5,-6: @@ -6255,19 +6254,19 @@ entities: 0: 65263 8,-5: 0: 1279 - 6: 57344 + 4: 57344 8,-4: - 6: 3822 + 4: 3822 0: 16384 9,-4: - 6: 7 + 4: 7 0: 58888 9,-2: 0: 30711 9,-1: 0: 61559 9,-5: - 6: 28672 + 4: 28672 0: 239 9,-3: 0: 12014 @@ -6354,13 +6353,13 @@ entities: 1: 2184 11,-8: 0: 61440 - 7: 238 + 5: 238 11,-7: 0: 65535 11,-6: 0: 65520 11,-9: - 7: 57344 + 5: 57344 1: 31 12,-6: 0: 65262 @@ -6454,7 +6453,7 @@ entities: 0: 57471 -13,7: 0: 32768 - 7: 30576 + 5: 30576 1: 7 -12,4: 0: 35852 @@ -6556,8 +6555,9 @@ entities: 0,8: 0: 10239 1,5: - 0: 25855 - 8: 32768 + 0: 17663 + 6: 8192 + 7: 32768 1,6: 0: 65262 1,7: @@ -6672,15 +6672,15 @@ entities: 1: 3840 12,-8: 1: 8738 - 9: 34944 + 8: 34944 12,-7: 1: 226 0: 57344 12,-9: 1: 58103 13,-8: - 9: 13104 - 10: 34944 + 8: 13104 + 9: 34944 13,-7: 1: 240 0: 61440 @@ -6693,8 +6693,8 @@ entities: 13,-4: 0: 62327 14,-8: - 10: 13104 - 7: 34944 + 9: 13104 + 5: 34944 14,-7: 1: 240 0: 61440 @@ -6707,7 +6707,7 @@ entities: 14,-4: 0: 65279 15,-8: - 7: 13104 + 5: 13104 1: 34952 15,-7: 1: 248 @@ -6754,7 +6754,7 @@ entities: 15,0: 0: 57463 16,-1: - 7: 240 + 5: 240 1: 62222 12,1: 0: 58606 @@ -6782,13 +6782,13 @@ entities: 0: 65262 15,2: 0: 4335 - 7: 57344 + 5: 57344 15,3: - 7: 9838 + 5: 9838 1: 34944 15,4: - 7: 2 - 1: 34952 + 5: 2 + 1: 51336 0: 4352 16,0: 1: 255 @@ -6797,9 +6797,9 @@ entities: 0: 64443 16,2: 0: 63 - 7: 63488 + 5: 63488 16,3: - 7: 287 + 5: 287 1: 3584 -12,-8: 0: 62583 @@ -6929,8 +6929,7 @@ entities: 0: 52425 1: 256 -3,9: - 0: 56789 - 2: 8 + 0: 56797 -3,10: 0: 56605 -3,11: @@ -6941,12 +6940,9 @@ entities: -2,9: 0: 63351 -2,10: - 0: 29953 - 3: 512 - 2: 6 + 0: 30471 -2,11: - 0: 895 - 8: 1024 + 0: 1919 -2,12: 1: 207 0: 61696 @@ -7106,30 +7102,30 @@ entities: 1: 36761 -8,13: 1: 240 - 7: 3598 + 5: 3598 -9,13: 1: 35064 - 7: 771 + 5: 771 -8,14: 1: 240 - 7: 3598 + 5: 3598 -9,14: 1: 35064 - 7: 771 + 5: 771 -8,15: 1: 240 - 7: 3598 + 5: 3598 -9,15: 1: 35064 - 7: 771 + 5: 771 -7,13: - 7: 1799 + 5: 1799 1: 240 -7,14: - 7: 1799 + 5: 1799 1: 240 -7,15: - 7: 1799 + 5: 1799 1: 240 -6,13: 1: 4369 @@ -7159,18 +7155,18 @@ entities: 1: 3857 -10,13: 1: 240 - 7: 3855 + 5: 3855 -10,14: 1: 240 - 7: 3855 + 5: 3855 -10,15: 1: 240 - 7: 3855 + 5: 3855 -10,11: 1: 4369 -9,16: 1: 35064 - 7: 771 + 5: 771 5,13: 1: 17600 5,14: @@ -7221,21 +7217,16 @@ entities: 9,7: 0: 26383 10,5: - 0: 39377 - 3: 1024 - 11: 16384 + 0: 56785 10,6: 0: 7645 10,7: 0: 65535 11,5: - 0: 65328 - 12: 192 + 0: 65520 11,6: - 0: 831 - 3: 192 - 13: 1024 - 12: 2048 + 0: 3903 + 10: 192 11,7: 0: 30549 11,8: @@ -7266,22 +7257,26 @@ entities: 0: 30223 15,5: 0: 273 - 1: 34956 + 1: 35020 15,7: 0: 32784 - 7: 750 + 5: 750 15,6: - 7: 26210 + 5: 26210 1: 34952 15,8: 0: 51711 + 16,4: + 1: 64712 + 0: 4 16,5: - 1: 17487 + 1: 52479 16,6: - 7: 256 - 1: 3596 + 5: 256 + 0: 4100 + 1: 3592 16,7: - 7: 2303 + 5: 2303 0: 12288 9,8: 0: 48048 @@ -7307,17 +7302,15 @@ entities: 1: 61952 11,9: 0: 30311 - 11,11: - 1: 2096 11,10: 0: 102 + 11,11: + 1: 1 12,9: 0: 12799 1: 49152 12,10: 1: 60408 - 12,11: - 1: 4898 9,13: 1: 13030 9,14: @@ -7329,74 +7322,73 @@ entities: 10,15: 1: 3 11,12: - 1: 61688 + 1: 61440 12,12: - 1: 61441 + 1: 61440 17,0: 1: 223 - 7: 32 + 5: 32 0: 57344 17,2: 0: 15 - 7: 65280 + 5: 65280 17,3: - 7: 15 - 1: 20288 + 5: 15 + 1: 61408 17,-1: 1: 53389 - 7: 11826 + 5: 11826 17,1: 0: 61166 17,4: - 1: 17487 + 1: 8191 + 0: 57344 18,0: 1: 255 0: 61440 18,1: 0: 65535 18,2: - 14: 1 - 7: 65280 - 0: 14 + 0: 15 + 5: 65280 18,3: - 7: 15 + 5: 15 1: 3840 18,-1: 1: 61610 - 7: 3840 + 5: 3840 19,0: 1: 255 0: 4096 - 7: 3072 + 5: 3072 19,1: - 11: 1 - 3: 16 - 0: 4352 + 0: 4369 19,2: 0: 1 - 7: 4352 - 1: 3276 + 5: 4352 + 1: 3148 19,3: - 7: 1011 - 1: 8192 + 5: 883 + 0: 25600 19,-1: 1: 61474 - 7: 3840 + 5: 3840 19,4: - 1: 8738 - 7: 51328 + 0: 1094 + 1: 12832 + 5: 51200 20,0: 1: 255 - 7: 3840 + 5: 3840 20,2: 1: 7951 20,3: 1: 261 - 7: 46320 + 5: 46320 -13,8: 0: 8 1: 12032 - 7: 119 + 5: 119 -12,9: 0: 2 1: 65408 @@ -7438,7 +7430,8 @@ entities: -3,-12: 0: 61695 -3,-11: - 0: 56785 + 0: 40401 + 6: 16384 -3,-10: 0: 4081 -3,-13: @@ -7483,7 +7476,7 @@ entities: 0: 53759 2,-13: 0: 61952 - 7: 119 + 5: 119 3,-12: 0: 65359 3,-11: @@ -7508,7 +7501,7 @@ entities: 0: 36863 5,-13: 0: 63761 - 7: 204 + 5: 204 6,-12: 0: 32628 6,-11: @@ -7517,7 +7510,7 @@ entities: 0: 33791 6,-13: 0: 56512 - 7: 17 + 5: 17 7,-12: 0: 1904 7,-11: @@ -7536,7 +7529,7 @@ entities: 1: 127 -10,16: 1: 240 - 7: 3855 + 5: 3855 -10,17: 1: 15 -9,17: @@ -7545,13 +7538,13 @@ entities: 1: 14 -8,16: 1: 240 - 7: 3598 + 5: 3598 -8,17: 1: 9006 -8,18: 1: 3 -7,16: - 7: 1799 + 5: 1799 1: 240 -7,17: 1: 15 @@ -7561,58 +7554,58 @@ entities: 1: 61440 16,-4: 1: 8738 - 15: 2184 + 11: 2184 16,-3: 1: 8738 - 7: 2184 + 5: 2184 16,-2: 1: 8738 - 7: 2184 + 5: 2184 16,-5: 1: 8738 - 7: 2184 + 5: 2184 17,-4: - 15: 819 - 7: 2176 + 11: 819 + 5: 2176 1: 32768 17,-3: - 7: 819 + 5: 819 1: 34952 17,-2: - 7: 819 + 5: 819 1: 34952 17,-5: - 7: 35635 + 5: 35635 1: 136 18,-4: - 7: 3975 + 5: 3975 1: 40992 18,-3: 1: 43770 18,-5: 1: 8362 - 7: 36608 + 5: 36608 18,-2: 1: 43690 19,-4: - 7: 3975 + 5: 3975 1: 40992 19,-3: 1: 57906 19,-5: 1: 8354 - 7: 36608 + 5: 36608 19,-2: 1: 8930 20,-4: - 7: 3975 + 5: 3975 1: 32768 20,-3: 1: 61440 20,-2: 1: 240 20,-1: - 7: 3840 + 5: 3840 1: 61440 16,-9: 1: 4369 @@ -7652,7 +7645,7 @@ entities: 20,-6: 1: 1879 20,-5: - 7: 36608 + 5: 36608 1: 128 12,-10: 1: 62192 @@ -7674,32 +7667,32 @@ entities: 1: 65023 16,-11: 1: 4353 - 7: 52416 + 5: 52416 16,-10: 1: 4353 0: 52416 20,4: - 1: 5377 - 7: 244 + 1: 14081 + 5: 244 21,0: 1: 33023 - 7: 3840 + 5: 3840 21,2: 1: 3887 21,3: - 7: 46320 + 5: 46320 1: 4 21,-1: 1: 61440 - 7: 3840 + 5: 3840 21,1: 1: 17608 21,4: - 7: 244 + 5: 244 1: 1024 22,0: 1: 2167 - 7: 58112 + 5: 58112 0: 136 22,1: 1: 3634 @@ -7707,19 +7700,19 @@ entities: 22,2: 1: 3855 22,3: - 7: 46320 + 5: 46320 1: 4 22,-1: 1: 28704 0: 32768 - 7: 3840 + 5: 3840 22,4: - 7: 180 + 5: 180 1: 1088 23,0: 0: 17663 1: 35328 - 7: 8192 + 5: 8192 23,1: 0: 35959 1: 29320 @@ -7727,16 +7720,16 @@ entities: 1: 26471 0: 34952 23,3: - 7: 61552 + 5: 61552 1: 3590 0: 136 23,-1: 0: 62532 1: 2235 - 7: 512 + 5: 512 23,4: 1: 19468 - 7: 240 + 5: 240 24,0: 0: 3295 1: 256 @@ -7747,13 +7740,13 @@ entities: 24,3: 1: 609 0: 4368 - 7: 59392 + 5: 59392 16,-13: 1: 12032 17,-12: 1: 65023 17,-11: - 7: 13104 + 5: 13104 1: 34952 17,-10: 0: 65520 @@ -7822,7 +7815,7 @@ entities: 15,10: 1: 30481 0: 8 - 7: 34944 + 5: 34944 14,11: 1: 34952 14,12: @@ -7834,18 +7827,20 @@ entities: 0: 17 1: 34952 15,11: - 7: 34952 + 5: 34952 16,10: 1: 63630 15,12: - 7: 34952 + 5: 34952 1: 28672 16,11: - 7: 26112 - 1: 34952 + 5: 26112 + 0: 34816 + 1: 136 16,12: - 1: 34959 - 7: 1632 + 1: 32783 + 5: 1632 + 0: 2176 17,8: 0: 17 1: 19532 @@ -7853,12 +7848,12 @@ entities: 1: 244 17,10: 1: 45056 - 7: 16384 + 5: 16384 17,11: - 7: 65348 + 5: 65348 17,12: 1: 17487 - 7: 2992 + 5: 2992 18,8: 1: 8495 18,9: @@ -7866,13 +7861,13 @@ entities: 18,10: 1: 61440 18,11: - 7: 56576 - 1: 8738 + 5: 56576 + 0: 8704 + 1: 34 18,12: - 1: 8751 - 7: 3536 - 18,7: - 7: 36863 + 1: 8207 + 5: 3536 + 0: 544 19,8: 1: 1 19,10: @@ -7880,32 +7875,38 @@ entities: 19,11: 1: 21845 19,7: - 7: 4371 + 1: 4096 + 5: 19 + 0: 36 19,12: 1: 21847 - 16,4: - 1: 17484 17,5: - 1: 17487 + 1: 65297 + 0: 238 17,6: - 1: 20303 + 1: 61423 17,7: - 7: 4095 + 5: 4095 18,4: - 1: 17479 + 1: 63347 + 0: 4 18,5: - 1: 17487 + 1: 30719 18,6: - 1: 3847 - 7: 32768 + 1: 3843 + 0: 4 + 5: 32768 + 18,7: + 5: 2047 19,5: - 1: 8739 - 7: 34824 + 1: 8755 + 0: 17476 19,6: - 7: 61804 + 5: 61804 + 0: 1536 1: 2 20,5: - 1: 4371 + 1: 13107 20,6: 1: 7987 20,7: @@ -7918,17 +7919,19 @@ entities: 1: 34952 15,14: 1: 28672 - 7: 34952 + 5: 34952 15,15: 1: 3754 15,13: - 7: 34952 + 5: 34952 16,13: - 1: 36744 - 7: 24678 + 1: 3840 + 5: 24678 + 0: 32904 16,14: - 1: 63624 - 7: 6 + 1: 63616 + 5: 6 + 0: 8 16,15: 1: 1860 -8,-12: @@ -7964,9 +7967,9 @@ entities: -5,-13: 0: 64989 -12,-11: - 0: 65280 + 0: 65399 -13,-11: - 0: 64512 + 0: 64716 -12,-10: 0: 30535 -12,-9: @@ -7976,7 +7979,7 @@ entities: -11,-10: 0: 30535 -11,-12: - 0: 128 + 0: 1782 -10,-12: 0: 8191 -10,-11: @@ -8012,10 +8015,10 @@ entities: 0: 65399 2,-14: 1: 240 - 7: 28672 + 5: 28672 2,-17: 0: 4096 - 7: 1 + 5: 1 1: 30 3,-16: 0: 28672 @@ -8026,11 +8029,11 @@ entities: 0: 65166 3,-17: 1: 17475 - 7: 4 + 5: 4 4,-16: 0: 30496 4,-15: - 0: 65287 + 0: 65319 4,-14: 0: 65295 -4,-16: @@ -8102,17 +8105,21 @@ entities: -5,-17: 0: 65535 -12,-16: - 1: 17231 - 7: 1184 + 1: 17487 + 5: 160 + 0: 43520 -13,-16: - 1: 2895 - 7: 1184 + 1: 17487 + 5: 160 + 0: 43520 -12,-15: 1: 3908 + 0: 10 -13,-15: - 1: 3840 + 1: 3844 + 0: 10 -12,-17: - 7: 43690 + 5: 43690 1: 17476 -11,-16: 1: 1 @@ -8144,7 +8151,7 @@ entities: 0: 19648 1: 4368 -16,-10: - 7: 16 + 5: 16 1: 44 -15,-11: 1: 65280 @@ -8158,54 +8165,58 @@ entities: -13,-10: 0: 26212 -16,-16: - 1: 39321 - 7: 4 + 1: 36633 + 5: 4 -16,-17: - 1: 7953 - -16,-15: - 1: 3869 + 1: 8072 -15,-16: - 1: 18511 - 7: 1184 + 1: 17487 + 5: 160 + 0: 43520 + -16,-15: + 1: 2184 -15,-15: - 1: 3911 + 1: 3908 + 0: 10 -15,-17: - 7: 43690 + 5: 43690 1: 17732 -14,-16: - 1: 2895 - 7: 1184 + 1: 17487 + 5: 160 + 0: 43520 -14,-15: - 1: 3840 + 1: 3844 + 0: 10 -14,-17: - 7: 43690 + 5: 43690 1: 17476 -13,-17: - 7: 43690 + 5: 43690 1: 17476 -18,-10: 1: 4 - 7: 8 + 5: 8 -17,-10: - 7: 7 + 5: 7 -12,-19: 1: 43947 - 7: 1092 + 5: 1092 -13,-19: 1: 44590 - 7: 273 + 5: 273 -12,-18: 1: 17498 - 7: 43684 + 5: 43680 -13,-18: - 7: 43684 + 5: 43680 1: 17498 -12,-20: 1: 17408 -11,-19: 1: 3983 -10,-19: - 7: 4369 + 5: 4369 1: 57568 -10,-20: 1: 4352 @@ -8246,36 +8257,38 @@ entities: -4,-18: 0: 14199 -16,-19: - 1: 4592 - -16,-18: - 1: 5905 + 1: 34944 -15,-19: 1: 43963 - 7: 1092 + 5: 1092 + -16,-18: + 1: 34952 -15,-18: - 1: 17738 - 7: 43684 + 1: 17482 + 5: 43680 -15,-20: 1: 17408 -14,-19: 1: 44943 -14,-18: 1: 17498 - 7: 43684 + 5: 43680 -13,-20: 1: 4352 17,13: - 7: 45243 + 5: 45243 1: 20292 17,14: - 7: 11 + 5: 11 1: 62532 18,13: - 7: 53469 - 1: 12066 + 5: 53469 + 1: 3840 + 0: 8226 18,14: - 7: 13 - 1: 61986 + 5: 13 + 1: 61984 + 0: 2 19,13: 1: 22357 19,14: @@ -8288,10 +8301,10 @@ entities: 5,-14: 0: 4096 1: 224 - 7: 49152 + 5: 49152 5,-17: 1: 4382 - 7: 1 + 5: 1 6,-16: 1: 3186 0: 4096 @@ -8299,11 +8312,11 @@ entities: 0: 61917 6,-14: 1: 16 - 7: 4096 + 5: 4096 0: 52428 6,-17: 1: 8749 - 7: 2 + 5: 2 7,-16: 1: 3976 7,-15: @@ -8339,11 +8352,11 @@ entities: 1,-18: 1: 60962 2,-18: - 7: 4352 + 5: 4352 1: 60945 3,-18: 1: 13124 - 7: 17408 + 5: 17408 9,-13: 0: 1911 9,-16: @@ -8354,7 +8367,7 @@ entities: 0: 26342 9,-17: 0: 16384 - 7: 1 + 5: 1 1: 1092 10,-14: 0: 48 @@ -8365,87 +8378,89 @@ entities: 1: 29764 11,-17: 1: 17476 + 0: 1 8,-20: - 1: 53248 - 7: 11264 + 1: 61455 + 0: 768 + 5: 3072 7,-20: - 1: 32768 - 8,-18: - 1: 53248 - 7: 11276 - 7,-18: - 1: 65416 + 1: 50252 8,-19: - 7: 11276 - 1: 49152 + 0: 771 + 1: 61440 + 5: 3084 + 8,-18: + 0: 771 + 1: 61440 + 5: 3084 + 7,-19: + 1: 50244 + 7,-18: + 1: 65348 8,-17: - 7: 12 + 0: 3 + 5: 12 9,-20: - 7: 260 - 1: 62538 + 1: 62539 + 5: 260 9,-19: - 7: 257 + 5: 257 1: 62532 9,-18: - 7: 257 + 5: 257 1: 62532 9,-21: - 1: 17412 + 1: 24320 10,-20: - 1: 28672 - 7: 34560 + 1: 61455 + 5: 1792 + 0: 2048 10,-19: - 1: 28672 - 7: 34567 + 1: 61440 + 5: 1799 + 0: 2056 10,-18: - 1: 28672 - 7: 34567 + 1: 61440 + 5: 1799 + 0: 2056 + 10,-21: + 1: 4352 10,-17: - 7: 7 + 5: 7 + 0: 8 11,-20: + 1: 29767 + 0: 256 + 11,-19: + 0: 257 1: 29764 11,-18: + 0: 257 1: 29764 - 11,-21: - 1: 17476 - 11,-19: - 1: 17476 - 8,-22: - 1: 61440 - 7,-22: - 1: 32768 - 9,-22: - 1: 61440 - 10,-22: - 1: 61440 - 11,-22: - 1: 12288 5,-18: 1: 60945 - 7: 4352 + 5: 4352 6,-18: 1: 56576 - 7: 8704 - 7,-19: - 1: 34952 + 5: 8704 21,-4: - 7: 3975 + 5: 3975 1: 32768 21,-3: 1: 61440 21,-2: 1: 240 21,-5: - 7: 36608 + 5: 36608 1: 128 22,-4: - 7: 3855 + 5: 3855 22,-3: 1: 61440 22,-2: 1: 240 23,-4: - 7: 3855 + 5: 3855 1: 49344 23,-3: 1: 64716 @@ -8454,10 +8469,10 @@ entities: 0: 49152 23,-5: 1: 49348 - 7: 3840 + 5: 3840 24,-4: 0: 4369 - 7: 142 + 5: 142 1: 8736 24,-3: 0: 4369 @@ -8471,7 +8486,7 @@ entities: 24,4: 0: 3857 1: 61538 - 7: 136 + 5: 136 25,0: 0: 3551 25,2: @@ -8520,7 +8535,7 @@ entities: 24,-5: 0: 4592 1: 9743 - 7: 34816 + 5: 34816 25,-3: 0: 32766 25,-2: @@ -8613,7 +8628,7 @@ entities: 1: 34800 0: 28672 22,-5: - 7: 3840 + 5: 3840 20,-13: 1: 22272 -16,8: @@ -8626,21 +8641,21 @@ entities: 0: 546 -15,8: 0: 256 - 7: 238 + 5: 238 1: 36352 -15,7: 0: 4096 - 7: 61152 + 5: 61152 1: 15 -15,9: 1: 12 -14,8: - 7: 255 + 5: 255 1: 20224 -14,9: 1: 15 -14,7: - 7: 65520 + 5: 65520 1: 15 -17,7: 0: 34816 @@ -8690,23 +8705,8 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 20.078888 - - 75.53487 + - 21.824806 + - 82.102844 - 0 - 0 - 0 @@ -8720,23 +8720,8 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 21.823984 - - 82.09976 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 21.6852 - - 81.57766 + - 21.813705 + - 82.06108 - 0 - 0 - 0 @@ -8778,67 +8763,7 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 - moles: - - 21.813705 - - 82.06108 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14948 - moles: - - 18.472576 - - 69.49208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.1495 + temperature: 293.14975 moles: - 20.078888 - 75.53487 @@ -8853,10 +8778,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.14975 + temperature: 293.15 moles: - - 21.824879 - - 82.10312 + - 21.823984 + - 82.09976 - 0 - 0 - 0 @@ -8870,8 +8795,38 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 23.57087 - - 88.67137 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 - 0 - 0 - 0 @@ -8908,10 +8863,10 @@ entities: - type: GridPathfinding - type: Joint joints: - docking31405: !type:WeldJoint - bodyB: 5350 - bodyA: 28213 - id: docking31405 + docking442: !type:WeldJoint + bodyB: 28213 + bodyA: 5350 + id: docking442 localAnchorB: 0.49999997,0 localAnchorA: -62.5,39 damping: 77.5519 @@ -8953,22 +8908,22 @@ entities: chunkCollection: version: 2 nodes: [] - - type: RadiationGridResistance + - type: Joint + joints: + docking442: !type:WeldJoint + bodyB: 28213 + bodyA: 5350 + id: docking442 + localAnchorB: 0.49999997,0 + localAnchorA: -62.5,39 + damping: 77.5519 + stiffness: 696.1043 - type: GridAtmosphere version: 2 data: chunkSize: 4 - type: GasTileOverlay - - type: Joint - joints: - docking31405: !type:WeldJoint - bodyB: 5350 - bodyA: 28213 - id: docking31405 - localAnchorB: -62.5,39 - localAnchorA: 0.49999997,0 - damping: 77.55168 - stiffness: 696.10236 + - type: RadiationGridResistance - proto: AcousticGuitarInstrument entities: - uid: 3945 @@ -8981,12 +8936,6 @@ entities: - type: Transform pos: 43.586433,9.186928 parent: 5350 - - uid: 12703 - components: - - type: Transform - parent: 1021 - - type: Physics - canCollide: False - uid: 16506 components: - type: Transform @@ -10506,7 +10455,7 @@ entities: - uid: 22592 components: - type: MetaData - name: Courtroom Air Alarm + name: Inner Courtroom Air Alarm - type: Transform pos: 2.5,22.5 parent: 5350 @@ -10930,6 +10879,8 @@ entities: - 10104 - uid: 24443 components: + - type: MetaData + name: Courtroom Air Alarm - type: Transform rot: 3.141592653589793 rad pos: 3.5,12.5 @@ -11665,13 +11616,8 @@ entities: - uid: 21247 components: - type: Transform - anchored: True pos: -41.5,41.5 parent: 5350 - - type: GasCanister - releasePressure: 100 - - type: Physics - bodyType: Static - uid: 22860 components: - type: Transform @@ -12014,6 +11960,22 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,16.5 parent: 5350 + - uid: 791 + components: + - type: MetaData + name: Security Storage + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,29.5 + parent: 5350 + - uid: 22218 + components: + - type: MetaData + name: Security Storage + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,29.5 + parent: 5350 - proto: AirlockBrigLocked entities: - uid: 617 @@ -12030,13 +11992,6 @@ entities: - type: Transform pos: 14.5,31.5 parent: 5350 - - uid: 6278 - components: - - type: MetaData - name: Security Storage - - type: Transform - pos: 6.5,29.5 - parent: 5350 - uid: 6580 components: - type: MetaData @@ -12417,6 +12372,12 @@ entities: - type: Transform pos: 11.5,29.5 parent: 5350 + - type: Door + secondsUntilStateChange: -3512.0142 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True - proto: AirlockEngineeringGlassLocked entities: - uid: 1598 @@ -13352,6 +13313,14 @@ entities: parent: 5350 - proto: AirlockExternalGlassShuttleLocked entities: + - uid: 1075 + components: + - type: MetaData + name: Security Dock + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,39.5 + parent: 5350 - uid: 3885 components: - type: Transform @@ -13843,14 +13812,6 @@ entities: rot: -1.5707963267948966 rad pos: -78.5,8.5 parent: 5350 - - uid: 791 - components: - - type: MetaData - name: Security Dock - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,39.5 - parent: 5350 - uid: 1455 components: - type: MetaData @@ -13862,13 +13823,13 @@ entities: - type: Door changeAirtight: False - type: Docking - dockJointId: docking31405 - dockedWith: 28214 + dockJointId: docking442 + dockedWith: 28684 - type: DeviceLinkSource lastSignals: DoorStatus: False DockStatus: True - - uid: 28214 + - uid: 28684 components: - type: Transform pos: 0.5,0.5 @@ -13876,7 +13837,7 @@ entities: - type: Door changeAirtight: False - type: Docking - dockJointId: docking31405 + dockJointId: docking442 dockedWith: 1455 - type: DeviceLinkSource lastSignals: @@ -14707,7 +14668,7 @@ entities: pos: -29.5,15.5 parent: 5350 - type: Door - secondsUntilStateChange: -252063.2 + secondsUntilStateChange: -257441.31 state: Opening - type: DeviceLinkSource lastSignals: @@ -14971,7 +14932,7 @@ entities: pos: -4.5,53.5 parent: 5350 - type: Door - secondsUntilStateChange: -106716.95 + secondsUntilStateChange: -112095.05 state: Opening - type: DeviceLinkSink invokeCounter: 2 @@ -16802,7 +16763,7 @@ entities: - uid: 1430 components: - type: MetaData - name: Warden's APC + name: Warden's Office APC - type: Transform rot: 3.141592653589793 rad pos: -3.5,36.5 @@ -16920,6 +16881,14 @@ entities: - type: Transform pos: -32.5,8.5 parent: 5350 + - uid: 5331 + components: + - type: MetaData + name: Courtroom APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,12.5 + parent: 5350 - uid: 5380 components: - type: MetaData @@ -17638,6 +17607,11 @@ entities: rot: 3.141592653589793 rad pos: -62.5,38.5 parent: 5350 + - uid: 28683 + components: + - type: Transform + pos: 0.5,0.5 + parent: 28213 - proto: AtmosFixBlockerMarker entities: - uid: 1179 @@ -17960,21 +17934,56 @@ entities: - type: Transform pos: -30.5,66.5 parent: 5350 + - uid: 22220 + components: + - type: Transform + pos: -46.5,-59.5 + parent: 5350 + - uid: 22222 + components: + - type: Transform + pos: -44.5,-61.5 + parent: 5350 + - uid: 22621 + components: + - type: Transform + pos: -44.5,-60.5 + parent: 5350 - uid: 23017 components: - type: Transform pos: 66.5,56.5 parent: 5350 + - uid: 23089 + components: + - type: Transform + pos: -44.5,-59.5 + parent: 5350 - uid: 23362 components: - type: Transform pos: 59.5,-28.5 parent: 5350 + - uid: 23889 + components: + - type: Transform + pos: -46.5,-60.5 + parent: 5350 + - uid: 24074 + components: + - type: Transform + pos: -46.5,-61.5 + parent: 5350 - uid: 24229 components: - type: Transform pos: 60.5,-30.5 parent: 5350 + - uid: 24244 + components: + - type: Transform + pos: -48.5,-60.5 + parent: 5350 - uid: 24360 components: - type: Transform @@ -19128,7 +19137,7 @@ entities: - uid: 26630 components: - type: Transform - pos: -57.5,-61.5 + pos: -48.5,-61.5 parent: 5350 - uid: 26635 components: @@ -19173,9 +19182,8 @@ entities: - uid: 26644 components: - type: Transform - anchored: False - pos: -55.22899,-73.91482 - parent: 951 + pos: -48.5,-59.5 + parent: 5350 - uid: 26648 components: - type: Transform @@ -19224,7 +19232,7 @@ entities: - uid: 26661 components: - type: Transform - pos: -53.5,-61.5 + pos: -50.5,-59.5 parent: 5350 - uid: 26662 components: @@ -19304,21 +19312,18 @@ entities: - uid: 26689 components: - type: Transform - anchored: False - pos: -51.22899,-73.91482 - parent: 951 + pos: -50.5,-60.5 + parent: 5350 - uid: 26691 components: - type: Transform - anchored: False - pos: -47.22899,-73.91482 - parent: 951 + pos: -50.5,-61.5 + parent: 5350 - uid: 26694 components: - type: Transform - anchored: False - pos: -43.22899,-73.91482 - parent: 951 + pos: -52.5,-61.5 + parent: 5350 - uid: 26695 components: - type: Transform @@ -19427,7 +19432,7 @@ entities: - uid: 26740 components: - type: Transform - pos: -49.5,-61.5 + pos: -52.5,-60.5 parent: 5350 - uid: 26741 components: @@ -19447,7 +19452,7 @@ entities: - uid: 26744 components: - type: Transform - pos: -45.5,-61.5 + pos: -52.5,-59.5 parent: 5350 - uid: 26748 components: @@ -21544,6 +21549,11 @@ entities: - type: Transform pos: 63.5,15.5 parent: 5350 + - uid: 28126 + components: + - type: Transform + pos: -54.5,-59.5 + parent: 5350 - uid: 28161 components: - type: Transform @@ -21589,6 +21599,46 @@ entities: - type: Transform pos: 45.5,-31.5 parent: 5350 + - uid: 28214 + components: + - type: Transform + pos: -54.5,-60.5 + parent: 5350 + - uid: 28488 + components: + - type: Transform + pos: -54.5,-61.5 + parent: 5350 + - uid: 28489 + components: + - type: Transform + pos: -56.5,-61.5 + parent: 5350 + - uid: 28650 + components: + - type: Transform + pos: -56.5,-60.5 + parent: 5350 + - uid: 28651 + components: + - type: Transform + pos: -56.5,-59.5 + parent: 5350 + - uid: 28652 + components: + - type: Transform + pos: -58.5,-59.5 + parent: 5350 + - uid: 28653 + components: + - type: Transform + pos: -58.5,-60.5 + parent: 5350 + - uid: 28654 + components: + - type: Transform + pos: -58.5,-61.5 + parent: 5350 - proto: AtmosFixFreezerMarker entities: - uid: 10295 @@ -22549,6 +22599,42 @@ entities: - type: Transform pos: 3.5,44.5 parent: 5350 + - uid: 7713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,26.5 + parent: 5350 + - uid: 7745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,26.5 + parent: 5350 + - uid: 7746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,26.5 + parent: 5350 + - uid: 7749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,26.5 + parent: 5350 + - uid: 8903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,26.5 + parent: 5350 + - uid: 8904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,26.5 + parent: 5350 - uid: 9630 components: - type: Transform @@ -22589,6 +22675,54 @@ entities: - type: Transform pos: -12.5,-4.5 parent: 5350 + - uid: 22324 + components: + - type: Transform + pos: 5.5,47.5 + parent: 5350 + - uid: 22325 + components: + - type: Transform + pos: 5.5,46.5 + parent: 5350 + - uid: 22366 + components: + - type: Transform + pos: 5.5,45.5 + parent: 5350 + - uid: 22640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,49.5 + parent: 5350 + - uid: 22641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,49.5 + parent: 5350 + - uid: 26157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,49.5 + parent: 5350 + - uid: 26158 + components: + - type: Transform + pos: 13.5,47.5 + parent: 5350 + - uid: 26164 + components: + - type: Transform + pos: 13.5,46.5 + parent: 5350 + - uid: 28197 + components: + - type: Transform + pos: 13.5,45.5 + parent: 5350 - proto: BlockGameArcade entities: - uid: 703 @@ -22809,13 +22943,6 @@ entities: - type: Transform pos: -26.5,-13.5 parent: 5350 -- proto: BookSpaceLaw - entities: - - uid: 1376 - components: - - type: Transform - pos: -3.484253,37.5611 - parent: 5350 - proto: BoozeDispenser entities: - uid: 2445 @@ -23016,20 +23143,6 @@ entities: - type: Transform pos: -8.711798,-54.414413 parent: 5350 -- proto: BoxDonkSoftBox - entities: - - uid: 8085 - components: - - type: Transform - pos: -19.518959,40.53281 - parent: 5350 -- proto: BoxEncryptionKeySecurity - entities: - - uid: 7573 - components: - - type: Transform - pos: 4.2881784,27.7247 - parent: 5350 - proto: BoxEnvelope entities: - uid: 15905 @@ -23049,6 +23162,13 @@ entities: - type: Transform pos: -46.366432,-30.56493 parent: 5350 +- proto: BoxFlashbang + entities: + - uid: 7543 + components: + - type: Transform + pos: -0.5550375,44.6134 + parent: 5350 - proto: BoxFolderBase entities: - uid: 14348 @@ -23233,14 +23353,14 @@ entities: - uid: 19932 components: - type: Transform - pos: 8.583343,28.732727 + pos: 8.582348,28.595104 parent: 5350 - proto: BoxHeadset entities: - uid: 6801 components: - type: Transform - pos: 4.2881784,27.427826 + pos: 4.513623,27.564714 parent: 5350 - proto: BoxInflatable entities: @@ -23263,6 +23383,11 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 12703 + components: + - type: Transform + pos: -3.442955,37.628872 + parent: 5350 - proto: BoxLightbulb entities: - uid: 3949 @@ -23294,6 +23419,18 @@ entities: - type: Transform pos: -45.725807,-31.611805 parent: 5350 +- proto: BoxMagazinePistol + entities: + - uid: 1376 + components: + - type: Transform + pos: -8.353387,44.624264 + parent: 5350 + - uid: 7032 + components: + - type: Transform + pos: -8.603387,44.468014 + parent: 5350 - proto: BoxPillCanister entities: - uid: 7025 @@ -23524,6 +23661,12 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,53.5 parent: 5350 + - uid: 6969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,17.5 + parent: 5350 - uid: 10835 components: - type: Transform @@ -23536,24 +23679,12 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,22.5 parent: 5350 - - uid: 14570 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,20.5 - parent: 5350 - uid: 15214 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-38.5 parent: 5350 - - uid: 15373 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,14.5 - parent: 5350 - uid: 16383 components: - type: Transform @@ -23618,6 +23749,12 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-4.5 parent: 5350 + - uid: 28228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,44.5 + parent: 5350 - proto: ButtonFrameCautionSecurity entities: - uid: 6560 @@ -24487,6 +24624,11 @@ entities: - type: Transform pos: -2.5,-38.5 parent: 5350 + - uid: 1023 + components: + - type: Transform + pos: -19.5,41.5 + parent: 5350 - uid: 1136 components: - type: Transform @@ -26142,6 +26284,11 @@ entities: - type: Transform pos: -27.5,23.5 parent: 5350 + - uid: 3905 + components: + - type: Transform + pos: -20.5,41.5 + parent: 5350 - uid: 3918 components: - type: Transform @@ -26307,11 +26454,6 @@ entities: - type: Transform pos: -47.5,3.5 parent: 5350 - - uid: 4406 - components: - - type: Transform - pos: 7.5,18.5 - parent: 5350 - uid: 4419 components: - type: Transform @@ -28152,6 +28294,11 @@ entities: - type: Transform pos: -10.5,14.5 parent: 5350 + - uid: 7271 + components: + - type: Transform + pos: -21.5,41.5 + parent: 5350 - uid: 7282 components: - type: Transform @@ -28537,11 +28684,6 @@ entities: - type: Transform pos: 6.5,41.5 parent: 5350 - - uid: 7684 - components: - - type: Transform - pos: 6.5,18.5 - parent: 5350 - uid: 7701 components: - type: Transform @@ -28717,6 +28859,16 @@ entities: - type: Transform pos: -21.5,-9.5 parent: 5350 + - uid: 8067 + components: + - type: Transform + pos: -19.5,39.5 + parent: 5350 + - uid: 8079 + components: + - type: Transform + pos: -19.5,40.5 + parent: 5350 - uid: 8090 components: - type: Transform @@ -33092,11 +33244,6 @@ entities: - type: Transform pos: -14.5,-47.5 parent: 5350 - - uid: 15331 - components: - - type: Transform - pos: -19.5,41.5 - parent: 5350 - uid: 15346 components: - type: Transform @@ -33125,7 +33272,7 @@ entities: - uid: 15393 components: - type: Transform - pos: -20.5,41.5 + pos: -21.5,42.5 parent: 5350 - uid: 15547 components: @@ -38057,41 +38204,6 @@ entities: - type: Transform pos: 63.5,5.5 parent: 5350 - - uid: 22215 - components: - - type: Transform - pos: 3.5,18.5 - parent: 5350 - - uid: 22216 - components: - - type: Transform - pos: 5.5,18.5 - parent: 5350 - - uid: 22218 - components: - - type: Transform - pos: 2.5,18.5 - parent: 5350 - - uid: 22219 - components: - - type: Transform - pos: 8.5,18.5 - parent: 5350 - - uid: 22220 - components: - - type: Transform - pos: 9.5,18.5 - parent: 5350 - - uid: 22221 - components: - - type: Transform - pos: 1.5,18.5 - parent: 5350 - - uid: 22222 - components: - - type: Transform - pos: 0.5,18.5 - parent: 5350 - uid: 22263 components: - type: Transform @@ -38162,16 +38274,6 @@ entities: - type: Transform pos: -21.5,43.5 parent: 5350 - - uid: 22324 - components: - - type: Transform - pos: -21.5,42.5 - parent: 5350 - - uid: 22325 - components: - - type: Transform - pos: -21.5,41.5 - parent: 5350 - uid: 22326 components: - type: Transform @@ -39317,6 +39419,11 @@ entities: - type: Transform pos: -72.5,10.5 parent: 5350 + - uid: 24489 + components: + - type: Transform + pos: -65.5,31.5 + parent: 5350 - uid: 24501 components: - type: Transform @@ -41117,6 +41224,11 @@ entities: - type: Transform pos: 7.5,-26.5 parent: 5350 + - uid: 28218 + components: + - type: Transform + pos: -65.5,32.5 + parent: 5350 - uid: 28247 components: - type: Transform @@ -41130,7 +41242,7 @@ entities: - uid: 28249 components: - type: Transform - pos: -19.5,38.5 + pos: -65.5,30.5 parent: 5350 - uid: 28257 components: @@ -41277,6 +41389,126 @@ entities: - type: Transform pos: 42.5,18.5 parent: 5350 + - uid: 28659 + components: + - type: Transform + pos: 9.5,12.5 + parent: 5350 + - uid: 28660 + components: + - type: Transform + pos: 8.5,12.5 + parent: 5350 + - uid: 28661 + components: + - type: Transform + pos: 7.5,12.5 + parent: 5350 + - uid: 28662 + components: + - type: Transform + pos: 6.5,12.5 + parent: 5350 + - uid: 28663 + components: + - type: Transform + pos: 5.5,12.5 + parent: 5350 + - uid: 28664 + components: + - type: Transform + pos: 4.5,12.5 + parent: 5350 + - uid: 28665 + components: + - type: Transform + pos: 4.5,13.5 + parent: 5350 + - uid: 28666 + components: + - type: Transform + pos: 4.5,14.5 + parent: 5350 + - uid: 28667 + components: + - type: Transform + pos: 4.5,15.5 + parent: 5350 + - uid: 28668 + components: + - type: Transform + pos: 4.5,16.5 + parent: 5350 + - uid: 28669 + components: + - type: Transform + pos: 4.5,17.5 + parent: 5350 + - uid: 28670 + components: + - type: Transform + pos: 3.5,14.5 + parent: 5350 + - uid: 28671 + components: + - type: Transform + pos: 2.5,14.5 + parent: 5350 + - uid: 28672 + components: + - type: Transform + pos: 1.5,14.5 + parent: 5350 + - uid: 28673 + components: + - type: Transform + pos: 0.5,14.5 + parent: 5350 + - uid: 28674 + components: + - type: Transform + pos: 0.5,19.5 + parent: 5350 + - uid: 28675 + components: + - type: Transform + pos: 1.5,19.5 + parent: 5350 + - uid: 28676 + components: + - type: Transform + pos: 2.5,19.5 + parent: 5350 + - uid: 28677 + components: + - type: Transform + pos: 3.5,19.5 + parent: 5350 + - uid: 28678 + components: + - type: Transform + pos: 4.5,19.5 + parent: 5350 + - uid: 28679 + components: + - type: Transform + pos: 5.5,19.5 + parent: 5350 + - uid: 28680 + components: + - type: Transform + pos: 6.5,19.5 + parent: 5350 + - uid: 28681 + components: + - type: Transform + pos: 7.5,19.5 + parent: 5350 + - uid: 28682 + components: + - type: Transform + pos: 8.5,19.5 + parent: 5350 - proto: CableApcStack entities: - uid: 1550 @@ -43046,11 +43278,26 @@ entities: - type: Transform pos: 31.5,-38.5 parent: 5350 + - uid: 6338 + components: + - type: Transform + pos: -16.5,24.5 + parent: 5350 - uid: 6401 components: - type: Transform pos: 53.5,9.5 parent: 5350 + - uid: 6461 + components: + - type: Transform + pos: -12.5,24.5 + parent: 5350 + - uid: 6462 + components: + - type: Transform + pos: -10.5,25.5 + parent: 5350 - uid: 6464 components: - type: Transform @@ -43116,6 +43363,31 @@ entities: - type: Transform pos: -30.5,19.5 parent: 5350 + - uid: 6812 + components: + - type: Transform + pos: -10.5,24.5 + parent: 5350 + - uid: 6813 + components: + - type: Transform + pos: -13.5,26.5 + parent: 5350 + - uid: 6820 + components: + - type: Transform + pos: -12.5,26.5 + parent: 5350 + - uid: 6821 + components: + - type: Transform + pos: -17.5,24.5 + parent: 5350 + - uid: 6833 + components: + - type: Transform + pos: -15.5,24.5 + parent: 5350 - uid: 6836 components: - type: Transform @@ -43166,6 +43438,26 @@ entities: - type: Transform pos: 13.5,-56.5 parent: 5350 + - uid: 7479 + components: + - type: Transform + pos: -13.5,24.5 + parent: 5350 + - uid: 7480 + components: + - type: Transform + pos: -13.5,25.5 + parent: 5350 + - uid: 7491 + components: + - type: Transform + pos: -14.5,24.5 + parent: 5350 + - uid: 7492 + components: + - type: Transform + pos: -18.5,24.5 + parent: 5350 - uid: 7908 components: - type: Transform @@ -49411,6 +49703,91 @@ entities: - type: Transform pos: -51.5,-63.5 parent: 5350 + - uid: 28686 + components: + - type: Transform + pos: -25.5,23.5 + parent: 5350 + - uid: 28687 + components: + - type: Transform + pos: -24.5,23.5 + parent: 5350 + - uid: 28688 + components: + - type: Transform + pos: -23.5,23.5 + parent: 5350 + - uid: 28689 + components: + - type: Transform + pos: -11.5,24.5 + parent: 5350 + - uid: 28690 + components: + - type: Transform + pos: -22.5,23.5 + parent: 5350 + - uid: 28691 + components: + - type: Transform + pos: -22.5,24.5 + parent: 5350 + - uid: 28692 + components: + - type: Transform + pos: -21.5,24.5 + parent: 5350 + - uid: 28693 + components: + - type: Transform + pos: -20.5,24.5 + parent: 5350 + - uid: 28694 + components: + - type: Transform + pos: -19.5,24.5 + parent: 5350 + - uid: 28695 + components: + - type: Transform + pos: -10.5,26.5 + parent: 5350 + - uid: 28696 + components: + - type: Transform + pos: -9.5,26.5 + parent: 5350 + - uid: 28697 + components: + - type: Transform + pos: -9.5,24.5 + parent: 5350 + - uid: 28698 + components: + - type: Transform + pos: -8.5,24.5 + parent: 5350 + - uid: 28699 + components: + - type: Transform + pos: -7.5,24.5 + parent: 5350 + - uid: 28700 + components: + - type: Transform + pos: -7.5,25.5 + parent: 5350 + - uid: 28701 + components: + - type: Transform + pos: -7.5,26.5 + parent: 5350 + - uid: 28702 + components: + - type: Transform + pos: -6.5,26.5 + parent: 5350 - proto: CableHVStack entities: - uid: 1551 @@ -51205,6 +51582,11 @@ entities: - type: Transform pos: -35.5,19.5 parent: 5350 + - uid: 4406 + components: + - type: Transform + pos: 12.5,13.5 + parent: 5350 - uid: 4521 components: - type: Transform @@ -51810,6 +52192,11 @@ entities: - type: Transform pos: 5.5,44.5 parent: 5350 + - uid: 6336 + components: + - type: Transform + pos: -10.5,30.5 + parent: 5350 - uid: 6342 components: - type: Transform @@ -51840,6 +52227,11 @@ entities: - type: Transform pos: 8.5,49.5 parent: 5350 + - uid: 6362 + components: + - type: Transform + pos: -13.5,30.5 + parent: 5350 - uid: 6373 components: - type: Transform @@ -51880,6 +52272,11 @@ entities: - type: Transform pos: -4.5,33.5 parent: 5350 + - uid: 6448 + components: + - type: Transform + pos: -7.5,30.5 + parent: 5350 - uid: 6458 components: - type: Transform @@ -51890,16 +52287,6 @@ entities: - type: Transform pos: -10.5,29.5 parent: 5350 - - uid: 6461 - components: - - type: Transform - pos: -7.5,30.5 - parent: 5350 - - uid: 6462 - components: - - type: Transform - pos: -7.5,27.5 - parent: 5350 - uid: 6480 components: - type: Transform @@ -52190,31 +52577,6 @@ entities: - type: Transform pos: -9.5,33.5 parent: 5350 - - uid: 6812 - components: - - type: Transform - pos: -13.5,30.5 - parent: 5350 - - uid: 6813 - components: - - type: Transform - pos: -13.5,27.5 - parent: 5350 - - uid: 6830 - components: - - type: Transform - pos: -10.5,30.5 - parent: 5350 - - uid: 6833 - components: - - type: Transform - pos: -13.5,28.5 - parent: 5350 - - uid: 6842 - components: - - type: Transform - pos: -9.5,27.5 - parent: 5350 - uid: 6850 components: - type: Transform @@ -52650,36 +53012,6 @@ entities: - type: Transform pos: -13.5,29.5 parent: 5350 - - uid: 7479 - components: - - type: Transform - pos: -12.5,26.5 - parent: 5350 - - uid: 7480 - components: - - type: Transform - pos: -13.5,26.5 - parent: 5350 - - uid: 7485 - components: - - type: Transform - pos: -9.5,26.5 - parent: 5350 - - uid: 7486 - components: - - type: Transform - pos: -10.5,26.5 - parent: 5350 - - uid: 7491 - components: - - type: Transform - pos: -6.5,26.5 - parent: 5350 - - uid: 7492 - components: - - type: Transform - pos: -7.5,26.5 - parent: 5350 - uid: 7499 components: - type: Transform @@ -57765,6 +58097,26 @@ entities: - type: Transform pos: -6.5,47.5 parent: 5350 + - uid: 28655 + components: + - type: Transform + pos: 11.5,13.5 + parent: 5350 + - uid: 28656 + components: + - type: Transform + pos: 11.5,12.5 + parent: 5350 + - uid: 28657 + components: + - type: Transform + pos: 10.5,12.5 + parent: 5350 + - uid: 28658 + components: + - type: Transform + pos: 9.5,12.5 + parent: 5350 - proto: CableMVStack entities: - uid: 1548 @@ -59843,6 +60195,11 @@ entities: - type: Transform pos: 35.5,-0.5 parent: 5350 + - uid: 3474 + components: + - type: Transform + pos: -64.5,30.5 + parent: 5350 - uid: 3538 components: - type: Transform @@ -61118,11 +61475,6 @@ entities: - type: Transform pos: 64.5,48.5 parent: 5350 - - uid: 14859 - components: - - type: Transform - pos: -64.5,30.5 - parent: 5350 - uid: 14868 components: - type: Transform @@ -64666,24 +65018,6 @@ entities: - type: Transform pos: -12.5,-23.5 parent: 5350 - - uid: 26157 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,27.5 - parent: 5350 - - uid: 26158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,27.5 - parent: 5350 - - uid: 26164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,27.5 - parent: 5350 - uid: 26348 components: - type: Transform @@ -65724,6 +66058,34 @@ entities: - type: Transform pos: 10.511377,-13.496428 parent: 5350 +- proto: CigCartonBlack + entities: + - uid: 28704 + components: + - type: Transform + pos: -8.081621,-42.541855 + parent: 5350 +- proto: CigCartonBlue + entities: + - uid: 9248 + components: + - type: Transform + pos: -6.362871,-42.198105 + parent: 5350 +- proto: CigCartonGreen + entities: + - uid: 28705 + components: + - type: Transform + pos: -7.237871,-40.729355 + parent: 5350 +- proto: CigCartonRed + entities: + - uid: 28703 + components: + - type: Transform + pos: -8.722246,-40.510605 + parent: 5350 - proto: CigPackBlack entities: - uid: 9231 @@ -66496,6 +66858,24 @@ entities: - type: Transform pos: 5.5,23.5 parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: ClosetMaintenanceFilledRandom entities: - uid: 1541 @@ -66569,6 +66949,24 @@ entities: - type: Transform pos: -9.5,-40.5 parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 17299 components: - type: Transform @@ -66800,6 +67198,11 @@ entities: - 0 - proto: ClosetRadiationSuitFilled entities: + - uid: 8905 + components: + - type: Transform + pos: -32.5,16.5 + parent: 5350 - uid: 14057 components: - type: Transform @@ -67090,23 +67493,6 @@ entities: - type: Transform pos: 22.441961,-60.19238 parent: 5350 -- proto: ClothingEyesBlindfold - entities: - - uid: 6338 - components: - - type: Transform - pos: 8.730065,28.203384 - parent: 5350 - - uid: 6362 - components: - - type: Transform - pos: 8.730065,28.203384 - parent: 5350 - - uid: 6448 - components: - - type: Transform - pos: 8.730065,28.203384 - parent: 5350 - proto: ClothingEyesEyepatch entities: - uid: 22993 @@ -67292,16 +67678,19 @@ entities: - type: Transform pos: -24.528036,19.404816 parent: 5350 + - uid: 8083 + components: + - type: MetaData + desc: Is it worth it? + name: Gloves of Sisyphus + - type: Transform + pos: -19.509531,41.443596 + parent: 5350 - uid: 9276 components: - type: Transform pos: 61.991814,3.478683 parent: 5350 - - uid: 15025 - components: - - type: Transform - pos: -19.486824,38.67596 - parent: 5350 - uid: 23993 components: - type: Transform @@ -67314,6 +67703,11 @@ entities: parent: 5350 - proto: ClothingHandsGlovesColorYellowBudget entities: + - uid: 3906 + components: + - type: Transform + pos: -40.55107,39.55681 + parent: 5350 - uid: 18440 components: - type: Transform @@ -67328,13 +67722,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingHandsGlovesFingerlessInsulated - entities: - - uid: 4748 - components: - - type: Transform - pos: -39.54444,39.51332 - parent: 5350 - proto: ClothingHandsGlovesLatex entities: - uid: 14975 @@ -67545,25 +67932,25 @@ entities: parent: 5350 - proto: ClothingHeadHelmetBasic entities: + - uid: 4235 + components: + - type: Transform + pos: -3.6913068,42.629025 + parent: 5350 - uid: 6490 components: - type: Transform - pos: -8.654011,44.395737 + pos: -3.6913068,42.722775 parent: 5350 - - uid: 7368 + - uid: 6651 components: - type: Transform - pos: -8.654011,44.614487 + pos: -3.6913068,42.535275 parent: 5350 - - uid: 7377 + - uid: 6866 components: - type: Transform - pos: -8.664427,44.718655 - parent: 5350 - - uid: 7517 - components: - - type: Transform - pos: -8.654011,44.510323 + pos: -3.6913068,42.431107 parent: 5350 - proto: ClothingHeadHelmetEVA entities: @@ -67758,23 +68145,6 @@ entities: - type: Transform pos: 31.561605,-52.535595 parent: 5350 -- proto: ClothingMaskMuzzle - entities: - - uid: 6311 - components: - - type: Transform - pos: 8.511315,28.31276 - parent: 5350 - - uid: 6336 - components: - - type: Transform - pos: 8.417565,28.297134 - parent: 5350 - - uid: 6337 - components: - - type: Transform - pos: 8.40194,28.297134 - parent: 5350 - proto: ClothingNeckBling entities: - uid: 1951 @@ -67907,25 +68277,25 @@ entities: parent: 5350 - proto: ClothingOuterArmorBasic entities: - - uid: 1174 + - uid: 6656 components: - type: Transform - pos: -8.268594,44.541573 + pos: -3.2954736,42.587357 parent: 5350 - - uid: 2149 + - uid: 6783 components: - type: Transform - pos: -8.268594,44.624905 + pos: -3.30589,42.701942 parent: 5350 - - uid: 4235 + - uid: 14107 components: - type: Transform - pos: -8.279011,44.718655 + pos: -3.2954736,42.472775 parent: 5350 - - uid: 7380 + - uid: 14110 components: - type: Transform - pos: -8.268594,44.437405 + pos: -3.2850568,42.368607 parent: 5350 - proto: ClothingOuterArmorBulletproof entities: @@ -68116,7 +68486,7 @@ entities: - uid: 7309 components: - type: Transform - pos: 8.5866995,27.615423 + pos: 8.529248,27.627214 parent: 5350 - proto: ClothingOuterVestHazard entities: @@ -68153,6 +68523,48 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingShoesBootsMagSci + entities: + - uid: 6381 + components: + - type: Transform + pos: -16.77293,-12.856606 + parent: 5350 + - uid: 6479 + components: + - type: Transform + pos: -16.74168,-12.715981 + parent: 5350 + - uid: 6595 + components: + - type: Transform + pos: -16.351055,-12.653481 + parent: 5350 + - uid: 6790 + components: + - type: Transform + pos: -16.71043,-12.278481 + parent: 5350 + - uid: 6988 + components: + - type: Transform + pos: -16.74168,-12.465981 + parent: 5350 + - uid: 7044 + components: + - type: Transform + pos: -16.351055,-12.856606 + parent: 5350 + - uid: 17674 + components: + - type: Transform + pos: -16.33543,-12.278481 + parent: 5350 + - uid: 22215 + components: + - type: Transform + pos: -16.351055,-12.465981 + parent: 5350 - proto: ClothingShoesBootsPerformer entities: - uid: 9989 @@ -68370,6 +68782,15 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitAncient + entities: + - uid: 8084 + components: + - type: MetaData + desc: The garb of the true tider, who has overcome the greatest challenge in the pursuit of insuls. + - type: Transform + pos: -18.507029,41.646023 + parent: 5350 - proto: ClothingUniformJumpsuitCasualPurple entities: - uid: 21447 @@ -68388,16 +68809,6 @@ entities: canCollide: False - proto: ClothingUniformJumpsuitColorGrey entities: - - uid: 7396 - components: - - type: Transform - pos: 4.7178,27.67814 - parent: 5350 - - uid: 7404 - components: - - type: Transform - pos: 4.7178,27.350016 - parent: 5350 - uid: 9092 components: - type: Transform @@ -69196,11 +69607,11 @@ entities: - type: Transform pos: 8.5,48.5 parent: 5350 - - uid: 7713 + - uid: 6842 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,29.5 + pos: -4.5,28.5 parent: 5350 - uid: 10002 components: @@ -69505,6 +69916,12 @@ entities: - type: Transform pos: 9.5,48.5 parent: 5350 + - uid: 6835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,29.5 + parent: 5350 - uid: 7591 components: - type: Transform @@ -69522,12 +69939,6 @@ entities: - type: Transform pos: 4.5,2.5 parent: 5350 - - uid: 11467 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,28.5 - parent: 5350 - uid: 26449 components: - type: Transform @@ -69702,54 +70113,65 @@ entities: - type: Transform pos: -32.5,23.5 parent: 5350 - - uid: 3905 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,19.5 - parent: 5350 - - uid: 3906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,19.5 - parent: 5350 - uid: 3907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,19.5 + rot: 1.5707963267948966 rad + pos: -43.5,19.5 parent: 5350 - uid: 3908 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,19.5 + pos: -44.5,15.5 parent: 5350 - uid: 3909 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,15.5 + pos: -44.5,19.5 parent: 5350 - uid: 3910 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,15.5 + pos: -42.5,19.5 parent: 5350 - uid: 3911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,15.5 + rot: -1.5707963267948966 rad + pos: -42.5,15.5 parent: 5350 - uid: 3912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,15.5 + rot: -1.5707963267948966 rad + pos: -45.5,15.5 parent: 5350 + - uid: 4449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,15.5 + parent: 5350 + - uid: 4450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,19.5 + parent: 5350 + - uid: 4451 + components: + - type: MetaData + desc: A conveyor belt, locked into position. No rotating away from your problems. + - type: Transform + pos: -19.5,37.5 + parent: 5350 + - type: Conveyor + speed: 4.3 + missingComponents: + - Rotatable - uid: 4458 components: - type: Transform @@ -69811,6 +70233,17 @@ entities: - type: Transform pos: -23.5,42.5 parent: 5350 + - uid: 6260 + components: + - type: MetaData + desc: A conveyor belt, locked into position. No rotating away from your problems. + - type: Transform + pos: -19.5,36.5 + parent: 5350 + - type: Conveyor + speed: 4.2 + missingComponents: + - Rotatable - uid: 7280 components: - type: Transform @@ -69989,6 +70422,17 @@ entities: - type: Transform pos: -23.5,45.5 parent: 5350 + - uid: 15331 + components: + - type: MetaData + desc: A conveyor belt, locked into position. No rotating away from your problems. + - type: Transform + pos: -19.5,38.5 + parent: 5350 + - type: Conveyor + speed: 4.4 + missingComponents: + - Rotatable - uid: 17828 components: - type: Transform @@ -70086,13 +70530,6 @@ entities: - type: Transform pos: -23.5,46.5 parent: 5350 - - uid: 22640 - components: - - type: Transform - pos: -19.5,37.5 - parent: 5350 - - type: Conveyor - speed: 20 - proto: CorporateCircuitBoard entities: - uid: 3903 @@ -70221,8 +70658,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -70446,8 +70883,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -71708,14 +72145,13 @@ entities: - type: Transform pos: 20.513496,-19.329103 parent: 5350 - - uid: 5331 + - uid: 7396 components: - type: Transform - pos: -11.5,-5.5 + pos: -12.288163,-4.3079534 parent: 5350 - - type: Physics - canCollide: False - bodyType: Static + missingComponents: + - Item - uid: 14365 components: - type: Transform @@ -71726,16 +72162,27 @@ entities: - type: Transform pos: -6.341322,-27.232658 parent: 5350 + missingComponents: + - Item - uid: 16088 components: - type: Transform pos: 3.7344131,-27.320778 parent: 5350 + missingComponents: + - Item - uid: 16675 components: - type: Transform pos: 25.517385,-6.2883754 parent: 5350 + - uid: 22221 + components: + - type: Transform + pos: -13.595671,-25.178352 + parent: 5350 + missingComponents: + - Item - uid: 23329 components: - type: Transform @@ -71746,6 +72193,13 @@ entities: - type: Transform pos: -26.631334,-57.35338 parent: 5350 + - uid: 28706 + components: + - type: Transform + pos: -18.240175,-28.323412 + parent: 5350 + missingComponents: + - Item - proto: DiceBag entities: - uid: 6742 @@ -72622,12 +73076,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-2.5 parent: 5350 - - uid: 6382 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,32.5 - parent: 5350 - uid: 6427 components: - type: Transform @@ -74422,11 +74870,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,33.5 parent: 5350 - - uid: 6381 - components: - - type: Transform - pos: -1.5,33.5 - parent: 5350 - uid: 6393 components: - type: Transform @@ -74508,11 +74951,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,32.5 parent: 5350 - - uid: 6790 - components: - - type: Transform - pos: -1.5,34.5 - parent: 5350 - uid: 6840 components: - type: Transform @@ -74631,6 +75069,12 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,23.5 parent: 5350 + - uid: 7206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,32.5 + parent: 5350 - uid: 7236 components: - type: Transform @@ -79624,11 +80068,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-14.5 parent: 5350 - - uid: 6479 - components: - - type: Transform - pos: -1.5,35.5 - parent: 5350 - uid: 6694 components: - type: Transform @@ -80096,11 +80535,6 @@ entities: - type: Transform pos: 4.5,35.5 parent: 5350 - - uid: 7044 - components: - - type: Transform - pos: -1.5,35.5 - parent: 5350 - uid: 7627 components: - type: Transform @@ -80583,20 +81017,16 @@ entities: parent: 5350 - type: Storage storedItems: - 6607: - position: 6,3 - _rotation: South - 12703: + 1174: position: 0,0 - _rotation: South + _rotation: North - type: ContainerContainer containers: storagebase: !type:Container showEnts: False occludes: True ents: - - 6607 - - 12703 + - 1174 - proto: DrinkBeerglass entities: - uid: 28509 @@ -81494,6 +81924,7 @@ entities: - uid: 4927 components: - type: MetaData + desc: What did you expect? name: WARNING! Live minefield! - type: Transform pos: -25.5,49.5 @@ -81501,21 +81932,24 @@ entities: - uid: 18684 components: - type: MetaData - desc: WARNING! Live Minefield! + desc: What did you expect? + name: WARNING! Live minefield! - type: Transform pos: 13.5,48.5 parent: 5350 - uid: 18687 components: - type: MetaData - desc: WARNING! Live minefield! + desc: What did you expect? + name: WARNING! Live minefield! - type: Transform pos: -12.5,63.5 parent: 5350 - uid: 26311 components: - type: MetaData - desc: WARNING! Live minefield! + desc: What did you expect? + name: WARNING! Live minefield! - type: Transform pos: 2.5,63.5 parent: 5350 @@ -81861,11 +82295,6 @@ entities: parent: 5350 - proto: filingCabinetDrawer entities: - - uid: 1075 - components: - - type: Transform - pos: -11.5,-0.5 - parent: 5350 - uid: 8377 components: - type: Transform @@ -81912,6 +82341,9 @@ entities: 6613: position: 2,0 _rotation: South + 6607: + position: 7,2 + _rotation: South - type: ContainerContainer containers: storagebase: !type:Container @@ -81921,6 +82353,7 @@ entities: - 6609 - 6613 - 6610 + - 6607 - uid: 23002 components: - type: Transform @@ -84091,7 +84524,7 @@ entities: pos: 31.5,-33.5 parent: 5350 - type: Door - secondsUntilStateChange: -29555.99 + secondsUntilStateChange: -34934.09 state: Closing - uid: 9615 components: @@ -85963,6 +86396,20 @@ entities: parent: 5350 - type: Fixtures fixtures: {} + - uid: 28707 + components: + - type: Transform + pos: -32.5,-51.5 + parent: 5350 + - type: Fixtures + fixtures: {} + - uid: 28708 + components: + - type: Transform + pos: -26.5,-51.5 + parent: 5350 + - type: Fixtures + fixtures: {} - proto: FloorTileItemEighties entities: - uid: 23023 @@ -86633,12 +87080,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#6F2498FF' - - uid: 21407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,41.5 - parent: 5350 - uid: 25932 components: - type: Transform @@ -96375,6 +96816,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#990000FF' + - uid: 6854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,31.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6858 components: - type: Transform @@ -97021,6 +97470,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,31.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7470 components: - type: Transform @@ -98790,21 +99247,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#990000FF' - - uid: 9685 - components: - - type: Transform - pos: -10.5,31.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9686 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,31.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9687 components: - type: Transform @@ -115855,12 +116297,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#6F2498FF' - - uid: 21248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,41.5 - parent: 5350 - uid: 25893 components: - type: Transform @@ -120804,21 +121240,6 @@ entities: - type: Transform pos: -45.5,14.5 parent: 5350 - - uid: 4449 - components: - - type: Transform - pos: -43.5,17.5 - parent: 5350 - - uid: 4450 - components: - - type: Transform - pos: -44.5,17.5 - parent: 5350 - - uid: 4451 - components: - - type: Transform - pos: -45.5,17.5 - parent: 5350 - uid: 4452 components: - type: Transform @@ -121399,6 +121820,12 @@ entities: - type: Transform pos: 3.5,45.5 parent: 5350 + - uid: 6311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,30.5 + parent: 5350 - uid: 6349 components: - type: Transform @@ -121494,10 +121921,11 @@ entities: - type: Transform pos: 4.5,34.5 parent: 5350 - - uid: 6824 + - uid: 6830 components: - type: Transform - pos: -7.5,30.5 + rot: -1.5707963267948966 rad + pos: -10.5,30.5 parent: 5350 - uid: 6843 components: @@ -121509,11 +121937,6 @@ entities: - type: Transform pos: 23.5,-55.5 parent: 5350 - - uid: 6854 - components: - - type: Transform - pos: -10.5,30.5 - parent: 5350 - uid: 6873 components: - type: Transform @@ -121602,9 +122025,10 @@ entities: - type: Transform pos: -8.5,49.5 parent: 5350 - - uid: 7455 + - uid: 7486 components: - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,30.5 parent: 5350 - uid: 7507 @@ -125332,11 +125756,6 @@ entities: - type: Transform pos: 63.5,-25.5 parent: 5350 - - uid: 22641 - components: - - type: Transform - pos: -19.5,36.5 - parent: 5350 - uid: 22722 components: - type: Transform @@ -128272,22 +128691,50 @@ entities: entities: - uid: 6369 components: + - type: MetaData + desc: A standard-issue Nanotrasen storage unit, containing 5 Disabler pistols. - type: Transform + anchored: True pos: -8.5,46.5 parent: 5350 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: GunSafePistolMk58 entities: - uid: 6511 components: + - type: MetaData + desc: A standard-issue Nanotrasen storage unit, containing 4 Mk58 pistols. - type: Transform + anchored: True pos: -9.5,46.5 parent: 5350 + - type: Physics + bodyType: Static - proto: GunSafeRifleLecter entities: - uid: 22966 components: - type: MetaData - desc: Safe containing 3 Lecter combat rifles. + desc: A standard-issue Nanotrasen storage unit, containing 3 Lecter combat rifles. - type: Transform anchored: True pos: -6.5,40.5 @@ -128318,9 +128765,9 @@ entities: showEnts: False occludes: True ents: - - 28209 - - 28446 - 28208 + - 28446 + - 28209 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -128330,7 +128777,7 @@ entities: - uid: 11588 components: - type: MetaData - desc: Safe containing 4 Kammerer shotguns. + desc: A standard-issue Nanotrasen storage unit, containing 3 Kammerer shotguns. - type: Transform anchored: True pos: -8.5,36.5 @@ -128372,7 +128819,7 @@ entities: - uid: 13851 components: - type: MetaData - desc: Safe containing 3 Drozd submachine guns. + desc: A standard-issue Nanotrasen storage unit, containing 3 Drozd submachine guns. - type: Transform anchored: True pos: -5.5,40.5 @@ -128403,9 +128850,9 @@ entities: showEnts: False occludes: True ents: - - 14878 - - 21468 - 28207 + - 21468 + - 14878 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -128511,6 +128958,14 @@ entities: - type: Transform pos: -34.34041,3.3560352 parent: 5350 +- proto: HarmonicaInstrument + entities: + - uid: 1174 + components: + - type: Transform + parent: 1021 + - type: Physics + canCollide: False - proto: HeatExchanger entities: - uid: 27166 @@ -129789,11 +130244,11 @@ entities: parent: 5350 - proto: IntercomSecurity entities: - - uid: 6988 + - uid: 6382 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,29.5 + pos: 4.5,29.5 parent: 5350 - uid: 7629 components: @@ -130316,54 +130771,134 @@ entities: parent: 5350 - proto: LandMineExplosive entities: - - uid: 6595 + - uid: 7564 components: + - type: MetaData + desc: It appears to have locked to the lattice below, no way to move it. + name: Explosive Mine - type: Transform anchored: True pos: -16.5,55.5 parent: 5350 - - uid: 7741 + - type: Anchorable + flags: Anchorable + - uid: 7573 components: + - type: MetaData + desc: It appears to have locked to the lattice below, no way to move it. + name: Explosive Mine - type: Transform anchored: True pos: 3.5,47.5 parent: 5350 - - uid: 8516 + - type: Anchorable + flags: Anchorable + - uid: 7684 components: + - type: MetaData + desc: It appears to have locked to the lattice below, no way to move it. + name: Explosive Mine - type: Transform anchored: True pos: 3.5,68.5 parent: 5350 - - uid: 17667 + - type: Anchorable + flags: Anchorable + - uid: 7741 components: + - type: MetaData + desc: It appears to have locked to the lattice below, no way to move it. + name: Explosive Mine - type: Transform anchored: True pos: 4.5,59.5 parent: 5350 - - uid: 23089 + - type: Anchorable + flags: Anchorable + - uid: 7777 components: + - type: MetaData + desc: It appears to have locked to the lattice below, no way to move it. + name: Explosive Mine - type: Transform anchored: True pos: -16.5,50.5 parent: 5350 - - uid: 28126 + - type: Anchorable + flags: Anchorable + - uid: 8516 components: + - type: MetaData + desc: It appears to have locked to the lattice below, no way to move it. + name: Explosive Mine - type: Transform anchored: True pos: 6.5,52.5 parent: 5350 - - uid: 28488 + - type: Anchorable + flags: Anchorable + - uid: 15118 components: + - type: MetaData + desc: It appears to have locked to the lattice below, no way to move it. + name: Explosive Mine - type: Transform anchored: True pos: -4.5,48.5 parent: 5350 - - uid: 28489 + - type: Anchorable + flags: Anchorable + - uid: 15205 components: + - type: MetaData + desc: It appears to have locked to the lattice below, no way to move it. + name: Explosive Mine - type: Transform anchored: True pos: -9.5,67.5 parent: 5350 + - type: Anchorable + flags: Anchorable +- proto: LandMineModular + entities: + - uid: 7518 + components: + - type: MetaData + desc: The trial begins. Its locked to the floor. + - type: Transform + anchored: True + pos: -19.5,35.5 + parent: 5350 + - type: Construction + containers: + - payload + node: mine + - type: Anchorable + flags: Anchorable + - type: ContainerContainer + containers: + payload: !type:Container + ents: + - 8066 + - uid: 21248 + components: + - type: MetaData + desc: The trial is never complete. Its locked to the floor. + - type: Transform + anchored: True + pos: -19.5,39.5 + parent: 5350 + - type: Construction + containers: + - payload + node: mine + - type: Anchorable + flags: Anchorable + - type: ContainerContainer + containers: + payload: !type:Container + ents: + - 21407 - proto: Lantern entities: - uid: 22071 @@ -130910,8 +131445,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8968438 - - 7.1357465 + - 1.8977377 + - 7.139109 - 0 - 0 - 0 @@ -131209,14 +131744,6 @@ entities: parent: 5350 - proto: LockerSecurityFilled entities: - - uid: 7671 - components: - - type: Transform - anchored: True - pos: -3.5,46.5 - parent: 5350 - - type: Physics - bodyType: Static - uid: 7672 components: - type: Transform @@ -131273,14 +131800,6 @@ entities: parent: 5350 - type: Physics bodyType: Static - - uid: 7743 - components: - - type: Transform - anchored: True - pos: 0.5,36.5 - parent: 5350 - - type: Physics - bodyType: Static - proto: LockerWarden entities: - uid: 6696 @@ -132115,13 +132634,6 @@ entities: - type: Transform pos: -35.21859,-30.37939 parent: 5350 -- proto: MetalDoor - entities: - - uid: 1023 - components: - - type: Transform - pos: -20.5,41.5 - parent: 5350 - proto: MicroManipulatorStockPart entities: - uid: 24716 @@ -133200,7 +133712,7 @@ entities: - uid: 1373 components: - type: Transform - pos: -11.472395,-5.430074 + pos: -11.444413,-5.3772693 parent: 5350 - uid: 4208 components: @@ -133977,13 +134489,18 @@ entities: If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE - type: Physics canCollide: False + - uid: 3472 + components: + - type: Transform + pos: -14.3798685,33.603416 + parent: 5350 - uid: 6607 components: - type: MetaData desc: There's something written on it.. name: Old Document - type: Transform - parent: 1021 + parent: 22929 - type: Paper content: >- I own a Kammerer for Brig Defense, since thats what Central Command intended. @@ -134002,6 +134519,26 @@ entities: Just as Central Command Intended. - type: Physics canCollide: False + - uid: 18531 + components: + - type: Transform + pos: -14.3173685,33.603416 + parent: 5350 + - uid: 18537 + components: + - type: Transform + pos: -14.3017435,33.61904 + parent: 5350 + - uid: 19140 + components: + - type: Transform + pos: -14.3173685,33.61904 + parent: 5350 + - uid: 19141 + components: + - type: Transform + pos: -14.3173685,33.61904 + parent: 5350 - uid: 19853 components: - type: Transform @@ -134538,7 +135075,7 @@ entities: - uid: 1375 components: - type: Transform - pos: -11.253645,-5.211324 + pos: -11.710038,-5.2366443 parent: 5350 - uid: 3940 components: @@ -134580,6 +135117,11 @@ entities: - type: Transform pos: -30.647026,-17.443693 parent: 5350 + - uid: 24478 + components: + - type: Transform + pos: -14.6298685,33.49404 + parent: 5350 - uid: 24499 components: - type: Transform @@ -135389,13 +135931,6 @@ entities: - type: Transform pos: -21.5,35.5 parent: 5350 -- proto: PosterLegitFoamForceAd - entities: - - uid: 28228 - components: - - type: Transform - pos: -18.5,40.5 - parent: 5350 - proto: PosterLegitHereForYourSafety entities: - uid: 16508 @@ -136158,6 +136693,11 @@ entities: - type: Transform pos: 37.5,-47.5 parent: 5350 + - uid: 7041 + components: + - type: Transform + pos: -19.5,41.5 + parent: 5350 - uid: 7089 components: - type: Transform @@ -139183,11 +139723,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-19.5 parent: 5350 - - uid: 10327 - components: - - type: Transform - pos: -19.5,41.5 - parent: 5350 - uid: 10730 components: - type: Transform @@ -140336,10 +140871,10 @@ entities: - type: Transform pos: 4.5,28.5 parent: 5350 - - uid: 7518 + - uid: 7515 components: - type: Transform - pos: -18.5,41.5 + pos: -3.5,42.5 parent: 5350 - uid: 7778 components: @@ -140647,11 +141182,6 @@ entities: - type: Transform pos: 15.5,-36.5 parent: 5350 - - uid: 22364 - components: - - type: Transform - pos: -19.5,40.5 - parent: 5350 - uid: 22511 components: - type: Transform @@ -142143,6 +142673,23 @@ entities: - type: Transform pos: 69.5,-39.5 parent: 5350 +- proto: ReinforcedUraniumWindow + entities: + - uid: 19223 + components: + - type: Transform + pos: -65.5,31.5 + parent: 5350 + - uid: 19340 + components: + - type: Transform + pos: -65.5,30.5 + parent: 5350 + - uid: 22626 + components: + - type: Transform + pos: -65.5,32.5 + parent: 5350 - proto: ReinforcedWindow entities: - uid: 691 @@ -142545,21 +143092,6 @@ entities: - type: Transform pos: -45.5,20.5 parent: 5350 - - uid: 3472 - components: - - type: Transform - pos: -43.5,17.5 - parent: 5350 - - uid: 3473 - components: - - type: Transform - pos: -44.5,17.5 - parent: 5350 - - uid: 3474 - components: - - type: Transform - pos: -45.5,17.5 - parent: 5350 - uid: 3483 components: - type: Transform @@ -143200,6 +143732,12 @@ entities: - type: Transform pos: 3.5,39.5 parent: 5350 + - uid: 6337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,30.5 + parent: 5350 - uid: 6357 components: - type: Transform @@ -143315,26 +143853,11 @@ entities: - type: Transform pos: -2.5,26.5 parent: 5350 - - uid: 6820 - components: - - type: Transform - pos: -10.5,30.5 - parent: 5350 - - uid: 6821 - components: - - type: Transform - pos: -7.5,30.5 - parent: 5350 - uid: 6834 components: - type: Transform pos: -8.5,28.5 parent: 5350 - - uid: 6835 - components: - - type: Transform - pos: -13.5,30.5 - parent: 5350 - uid: 7024 components: - type: Transform @@ -143405,6 +143928,12 @@ entities: - type: Transform pos: 4.5,34.5 parent: 5350 + - uid: 7485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,30.5 + parent: 5350 - uid: 7487 components: - type: Transform @@ -144800,6 +145329,11 @@ entities: - type: Transform pos: 16.5,-46.5 parent: 5350 + - uid: 19341 + components: + - type: Transform + pos: -63.5,36.5 + parent: 5350 - uid: 19351 components: - type: Transform @@ -145160,6 +145694,11 @@ entities: - type: Transform pos: 24.5,-55.5 parent: 5350 + - uid: 22364 + components: + - type: Transform + pos: -61.5,36.5 + parent: 5350 - uid: 22674 components: - type: Transform @@ -145407,6 +145946,12 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-58.5 parent: 5350 + - uid: 28685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,30.5 + parent: 5350 - proto: RemoteSignaller entities: - uid: 5855 @@ -145414,6 +145959,34 @@ entities: - type: Transform pos: 45.32724,-24.4376 parent: 5350 + - uid: 8066 + components: + - type: Transform + parent: 7518 + - type: DeviceLinkSource + linkedPorts: + 6260: + - Pressed: Forward + 4451: + - Pressed: Forward + 15331: + - Pressed: Forward + - type: Physics + canCollide: False + - uid: 21407 + components: + - type: Transform + parent: 21248 + - type: DeviceLinkSource + linkedPorts: + 6260: + - Pressed: Reverse + 4451: + - Pressed: Reverse + 15331: + - Pressed: Reverse + - type: Physics + canCollide: False - uid: 28429 components: - type: Transform @@ -146303,36 +146876,6 @@ entities: - type: Transform pos: 16.5,33.5 parent: 5350 - - uid: 7745 - components: - - type: Transform - pos: -12.5,26.5 - parent: 5350 - - uid: 7746 - components: - - type: Transform - pos: -9.5,26.5 - parent: 5350 - - uid: 7749 - components: - - type: Transform - pos: -7.5,26.5 - parent: 5350 - - uid: 8903 - components: - - type: Transform - pos: -13.5,26.5 - parent: 5350 - - uid: 8904 - components: - - type: Transform - pos: -10.5,26.5 - parent: 5350 - - uid: 8905 - components: - - type: Transform - pos: -6.5,26.5 - parent: 5350 - uid: 9219 components: - type: Transform @@ -146554,34 +147097,6 @@ entities: linkedPorts: 24634: - Pressed: Toggle - - uid: 6260 - components: - - type: MetaData - name: Conveyor Belt Doors - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,20.5 - parent: 5350 - - type: DeviceLinkSource - linkedPorts: - 4746: - - Pressed: Toggle - 5045: - - Pressed: Toggle - - uid: 8209 - components: - - type: MetaData - name: Conveyor Belt Doors - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,14.5 - parent: 5350 - - type: DeviceLinkSource - linkedPorts: - 4308: - - Pressed: Toggle - 4145: - - Pressed: Toggle - uid: 11517 components: - type: MetaData @@ -146866,22 +147381,22 @@ entities: 6758: - On: Open - Off: Close - 8905: + 7713: - On: Open - Off: Close 7749: - On: Open - Off: Close + 7745: + - On: Open + - Off: Close + 8903: + - On: Open + - Off: Close 8904: - On: Open - Off: Close 7746: - - Off: Close - - On: Open - 7745: - - On: Open - - Off: Close - 8903: - On: Open - Off: Close 9226: @@ -147104,6 +147619,52 @@ entities: 27136: - On: Open - Off: Close + - uid: 4744 + components: + - type: MetaData + name: Docking Protocol + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,17.5 + parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 3910: + - On: Forward + - Off: Off + 3907: + - On: Forward + - Off: Off + 3909: + - On: Forward + - Off: Off + 4450: + - On: Forward + - Off: Off + 3911: + - On: Forward + - Off: Off + 4449: + - On: Forward + - Off: Off + 3908: + - On: Forward + - Off: Off + 3912: + - On: Forward + - Off: Off + 4746: + - On: Open + - Off: Close + 5045: + - On: Open + - Off: Close + 4145: + - On: Open + - Off: Close + 4308: + - On: Open + - Off: Close - uid: 4758 components: - type: MetaData @@ -147166,6 +147727,35 @@ entities: 6471: - On: Open - Off: Close + - uid: 6824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,44.5 + parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 28197: + - On: Open + - Off: Close + 26164: + - On: Open + - Off: Close + 26158: + - On: Open + - Off: Close + 26157: + - On: Open + - Off: Close + 22640: + - On: Open + - Off: Close + 22324: + - On: Open + - Off: Close + 22366: + - Off: Close + - On: Open - uid: 7134 components: - type: MetaData @@ -147219,6 +147809,40 @@ entities: 18236: - On: Forward - Off: Off + - uid: 9685 + components: + - type: MetaData + name: Cell 1 Shutters + - type: Transform + pos: -4.2518196,30.501099 + parent: 5350 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 7713: + - On: Open + - Off: Close + 7749: + - On: Open + - Off: Close + - uid: 9686 + components: + - type: MetaData + name: Cell 2 Shutters + - type: Transform + pos: -4.5,30.5 + parent: 5350 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 8903: + - On: Open + - Off: Close + 7745: + - On: Open + - Off: Close - uid: 10429 components: - type: MetaData @@ -147305,6 +147929,23 @@ entities: 11733: - On: Open - Off: Close + - uid: 11467 + components: + - type: MetaData + name: Cell 3 Shutters + - type: Transform + pos: -4.7795973,30.501099 + parent: 5350 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 8904: + - On: Open + - Off: Close + 7746: + - On: Open + - Off: Close - uid: 12130 components: - type: MetaData @@ -147700,11 +148341,17 @@ entities: parent: 5350 - proto: SignCargoDock entities: - - uid: 15364 + - uid: 3473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,13.5 + rot: 3.141592653589793 rad + pos: -43.5,14.5 + parent: 5350 + - uid: 28251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,20.5 parent: 5350 - proto: SignChapel entities: @@ -148766,11 +149413,6 @@ entities: - type: Transform pos: -37.5,36.5 parent: 5350 - - uid: 10545 - components: - - type: Transform - pos: -43.5,17.5 - parent: 5350 - uid: 11755 components: - type: Transform @@ -151827,25 +152469,25 @@ entities: parent: 5350 - proto: SpawnPointSecurityCadet entities: - - uid: 6866 + - uid: 2149 components: - type: Transform - pos: 1.5,36.5 + pos: 5.5,38.5 parent: 5350 - uid: 7029 components: - type: Transform - pos: 1.5,37.5 + pos: 6.5,36.5 parent: 5350 - - uid: 7032 + - uid: 7517 components: - type: Transform - pos: 1.5,38.5 + pos: 7.5,36.5 parent: 5350 - - uid: 7040 + - uid: 7671 components: - type: Transform - pos: 1.5,39.5 + pos: 8.5,36.5 parent: 5350 - proto: SpawnPointSecurityOfficer entities: @@ -151859,10 +152501,10 @@ entities: - type: Transform pos: 0.5,45.5 parent: 5350 - - uid: 6783 + - uid: 7058 components: - type: Transform - pos: -3.5,45.5 + pos: 1.5,37.5 parent: 5350 - uid: 7171 components: @@ -151874,6 +152516,16 @@ entities: - type: Transform pos: -2.5,45.5 parent: 5350 + - uid: 7368 + components: + - type: Transform + pos: 1.5,38.5 + parent: 5350 + - uid: 7377 + components: + - type: Transform + pos: 1.5,39.5 + parent: 5350 - proto: SpawnPointServiceWorker entities: - uid: 2753 @@ -152941,6 +153593,7 @@ entities: - uid: 1489 components: - type: MetaData + desc: A fancy hi-tech storage unit made for storing space suits. Fits two standard EVA suits. name: EVA Suitlocker - type: Transform pos: -14.5,-11.5 @@ -152975,6 +153628,7 @@ entities: - uid: 4104 components: - type: MetaData + desc: A fancy hi-tech storage unit made for storing space suits. Fits two standard EVA suits. name: EVA Suitlocker - type: Transform pos: -18.5,-11.5 @@ -152985,8 +153639,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8977377 - - 7.139109 + - 1.8978093 + - 7.139378 - 0 - 0 - 0 @@ -153003,12 +153657,13 @@ entities: showEnts: False occludes: True ents: - - 23472 - - 14149 - 23406 + - 14149 + - 23472 - uid: 7165 components: - type: MetaData + desc: A fancy hi-tech storage unit made for storing space suits. Fits two standard EVA suits. name: EVA Suitlocker - type: Transform pos: -14.5,-10.5 @@ -153043,6 +153698,7 @@ entities: - uid: 13159 components: - type: MetaData + desc: A fancy hi-tech storage unit made for storing space suits. Fits two standard EVA suits. name: EVA Suitlocker - type: Transform pos: -18.5,-10.5 @@ -153053,8 +153709,8 @@ entities: immutable: False temperature: 293.14697 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -153071,12 +153727,13 @@ entities: showEnts: False occludes: True ents: - - 22167 - - 13496 - 22348 + - 13496 + - 22167 - uid: 24328 components: - type: MetaData + desc: A fancy hi-tech storage unit made for storing space suits. Fits two standard EVA suits. name: EVA Suitlocker - type: Transform pos: -14.5,-14.5 @@ -153111,6 +153768,7 @@ entities: - uid: 24610 components: - type: MetaData + desc: A fancy hi-tech storage unit made for storing space suits. Fits two standard EVA suits. name: EVA Suitlocker - type: Transform pos: -14.5,-12.5 @@ -153147,6 +153805,7 @@ entities: - uid: 2617 components: - type: MetaData + desc: A fancy hi-tech storage unit made for storing space suits. Fits two standard EVA suits. name: EVA Suitlocker - type: Transform pos: -14.5,-16.5 @@ -153181,6 +153840,7 @@ entities: - uid: 7801 components: - type: MetaData + desc: A fancy hi-tech storage unit made for storing space suits. Fits two standard EVA suits. name: EVA Suitlocker - type: Transform pos: -18.5,-16.5 @@ -153215,6 +153875,7 @@ entities: - uid: 11032 components: - type: MetaData + desc: A fancy hi-tech storage unit made for storing space suits. Fits two standard EVA suits. name: EVA Suitlocker - type: Transform pos: -14.5,-15.5 @@ -153249,6 +153910,7 @@ entities: - uid: 15195 components: - type: MetaData + desc: A fancy hi-tech storage unit made for storing space suits. Fits two standard EVA suits. name: EVA Suitlocker - type: Transform pos: -18.5,-15.5 @@ -157128,6 +157790,11 @@ entities: - type: Transform pos: -9.5,-32.5 parent: 5350 + - uid: 17667 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 5350 - uid: 17710 components: - type: Transform @@ -157441,11 +158108,6 @@ entities: - type: Transform pos: 53.5,23.5 parent: 5350 - - uid: 23889 - components: - - type: Transform - pos: -16.5,-12.5 - parent: 5350 - uid: 23943 components: - type: Transform @@ -157635,12 +158297,6 @@ entities: - type: Transform pos: 47.5,-24.5 parent: 5350 - - uid: 28197 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,16.5 - parent: 5350 - uid: 28331 components: - type: Transform @@ -160106,11 +160762,6 @@ entities: - type: Transform pos: 38.4915,6.594829 parent: 5350 - - uid: 24074 - components: - - type: Transform - pos: -16.571823,-12.293222 - parent: 5350 - uid: 26466 components: - type: Transform @@ -160172,11 +160823,6 @@ entities: - type: Transform pos: 26.555069,19.506002 parent: 5350 - - uid: 24244 - components: - - type: Transform - pos: -16.321823,-12.808847 - parent: 5350 - uid: 26465 components: - type: Transform @@ -160430,47 +161076,6 @@ entities: - type: Transform pos: -41.5,20.5 parent: 5350 - - type: DeviceLinkSource - linkedPorts: - 3905: - - Left: Forward - - Right: Reverse - - Middle: Off - 3906: - - Left: Forward - - Right: Reverse - - Middle: Off - 3907: - - Left: Forward - - Right: Reverse - - Middle: Off - 3908: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 4744 - components: - - type: Transform - pos: -41.5,14.5 - parent: 5350 - - type: DeviceLinkSource - linkedPorts: - 3912: - - Left: Forward - - Right: Reverse - - Middle: Off - 3911: - - Left: Forward - - Right: Reverse - - Middle: Off - 3910: - - Left: Forward - - Right: Reverse - - Middle: Off - 3909: - - Left: Forward - - Right: Reverse - - Middle: Off - uid: 6010 components: - type: Transform @@ -160630,6 +161235,12 @@ entities: parent: 5350 - proto: UprightPianoInstrument entities: + - uid: 7404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-0.5 + parent: 5350 - uid: 22886 components: - type: Transform @@ -160740,11 +161351,6 @@ entities: - type: Transform pos: -17.5,21.5 parent: 5350 - - uid: 9248 - components: - - type: Transform - pos: -2.5,-41.5 - parent: 5350 - uid: 10436 components: - type: MetaData @@ -161050,10 +161656,10 @@ entities: parent: 5350 - proto: VendingMachineSec entities: - - uid: 7058 + - uid: 7380 components: - type: Transform - pos: -3.5,42.5 + pos: -3.5,46.5 parent: 5350 - uid: 8518 components: @@ -161062,10 +161668,10 @@ entities: parent: 5350 - proto: VendingMachineSecDrobe entities: - - uid: 7515 + - uid: 7040 components: - type: Transform - pos: 2.5,36.5 + pos: 0.5,36.5 parent: 5350 - proto: VendingMachineSeeds entities: @@ -162890,6 +163496,12 @@ entities: - type: Transform pos: 12.5,-58.5 parent: 5350 + - uid: 4748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,17.5 + parent: 5350 - uid: 4798 components: - type: Transform @@ -163430,6 +164042,11 @@ entities: - type: Transform pos: -14.5,29.5 parent: 5350 + - uid: 6278 + components: + - type: Transform + pos: -20.5,41.5 + parent: 5350 - uid: 6282 components: - type: Transform @@ -163875,6 +164492,12 @@ entities: - type: Transform pos: 3.5,29.5 parent: 5350 + - uid: 6987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,17.5 + parent: 5350 - uid: 7065 components: - type: Transform @@ -163940,6 +164563,12 @@ entities: - type: Transform pos: -0.5,64.5 parent: 5350 + - uid: 7168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,17.5 + parent: 5350 - uid: 7170 components: - type: Transform @@ -164045,11 +164674,6 @@ entities: - type: Transform pos: 0.5,53.5 parent: 5350 - - uid: 7271 - components: - - type: Transform - pos: -19.5,39.5 - parent: 5350 - uid: 7278 components: - type: Transform @@ -164245,6 +164869,11 @@ entities: - type: Transform pos: -3.5,36.5 parent: 5350 + - uid: 7605 + components: + - type: Transform + pos: -20.5,35.5 + parent: 5350 - uid: 7630 components: - type: Transform @@ -164255,6 +164884,11 @@ entities: - type: Transform pos: 3.5,27.5 parent: 5350 + - uid: 7638 + components: + - type: Transform + pos: -20.5,36.5 + parent: 5350 - uid: 7639 components: - type: Transform @@ -164591,6 +165225,11 @@ entities: - type: Transform pos: 22.5,-47.5 parent: 5350 + - uid: 8085 + components: + - type: Transform + pos: -18.5,42.5 + parent: 5350 - uid: 8093 components: - type: Transform @@ -164656,6 +165295,11 @@ entities: - type: Transform pos: 22.5,28.5 parent: 5350 + - uid: 8209 + components: + - type: Transform + pos: -20.5,37.5 + parent: 5350 - uid: 8231 components: - type: Transform @@ -164716,6 +165360,11 @@ entities: - type: Transform pos: -4.5,31.5 parent: 5350 + - uid: 8387 + components: + - type: Transform + pos: -20.5,38.5 + parent: 5350 - uid: 8401 components: - type: Transform @@ -165591,6 +166240,11 @@ entities: - type: Transform pos: 70.5,-7.5 parent: 5350 + - uid: 10327 + components: + - type: Transform + pos: -20.5,42.5 + parent: 5350 - uid: 10331 components: - type: Transform @@ -165656,6 +166310,11 @@ entities: - type: Transform pos: 22.5,38.5 parent: 5350 + - uid: 10545 + components: + - type: Transform + pos: -59.5,32.5 + parent: 5350 - uid: 10658 components: - type: Transform @@ -166501,6 +167160,11 @@ entities: - type: Transform pos: 19.5,20.5 parent: 5350 + - uid: 13113 + components: + - type: Transform + pos: -19.5,42.5 + parent: 5350 - uid: 13158 components: - type: Transform @@ -166521,6 +167185,11 @@ entities: - type: Transform pos: -14.5,46.5 parent: 5350 + - uid: 13466 + components: + - type: Transform + pos: -17.5,42.5 + parent: 5350 - uid: 13485 components: - type: Transform @@ -167291,6 +167960,11 @@ entities: - type: Transform pos: 20.5,-55.5 parent: 5350 + - uid: 14570 + components: + - type: Transform + pos: -61.5,37.5 + parent: 5350 - uid: 14571 components: - type: Transform @@ -167336,6 +168010,16 @@ entities: - type: Transform pos: -15.5,-21.5 parent: 5350 + - uid: 14733 + components: + - type: Transform + pos: -63.5,28.5 + parent: 5350 + - uid: 14751 + components: + - type: Transform + pos: -63.5,35.5 + parent: 5350 - uid: 14762 components: - type: Transform @@ -167351,6 +168035,11 @@ entities: - type: Transform pos: 26.5,-34.5 parent: 5350 + - uid: 14822 + components: + - type: Transform + pos: -64.5,34.5 + parent: 5350 - uid: 14846 components: - type: Transform @@ -167361,6 +168050,11 @@ entities: - type: Transform pos: 21.5,-42.5 parent: 5350 + - uid: 14859 + components: + - type: Transform + pos: -63.5,34.5 + parent: 5350 - uid: 14876 components: - type: Transform @@ -167381,6 +168075,11 @@ entities: - type: Transform pos: -0.5,-41.5 parent: 5350 + - uid: 15025 + components: + - type: Transform + pos: -60.5,33.5 + parent: 5350 - uid: 15064 components: - type: Transform @@ -167431,6 +168130,16 @@ entities: - type: Transform pos: -18.5,-40.5 parent: 5350 + - uid: 15364 + components: + - type: Transform + pos: -60.5,29.5 + parent: 5350 + - uid: 15373 + components: + - type: Transform + pos: -64.5,29.5 + parent: 5350 - uid: 15427 components: - type: Transform @@ -167816,6 +168525,11 @@ entities: - type: Transform pos: 21.5,-28.5 parent: 5350 + - uid: 16575 + components: + - type: Transform + pos: -64.5,33.5 + parent: 5350 - uid: 16576 components: - type: Transform @@ -167876,6 +168590,11 @@ entities: - type: Transform pos: 35.5,-39.5 parent: 5350 + - uid: 16650 + components: + - type: Transform + pos: -60.5,28.5 + parent: 5350 - uid: 16660 components: - type: Transform @@ -167922,6 +168641,21 @@ entities: - type: Transform pos: 2.5,56.5 parent: 5350 + - uid: 16734 + components: + - type: Transform + pos: -60.5,34.5 + parent: 5350 + - uid: 16743 + components: + - type: Transform + pos: -59.5,33.5 + parent: 5350 + - uid: 16744 + components: + - type: Transform + pos: -61.5,35.5 + parent: 5350 - uid: 16894 components: - type: Transform @@ -168002,6 +168736,41 @@ entities: - type: Transform pos: 59.5,17.5 parent: 5350 + - uid: 17219 + components: + - type: Transform + pos: -64.5,28.5 + parent: 5350 + - uid: 17281 + components: + - type: Transform + pos: -61.5,34.5 + parent: 5350 + - uid: 17283 + components: + - type: Transform + pos: -61.5,28.5 + parent: 5350 + - uid: 17286 + components: + - type: Transform + pos: -61.5,38.5 + parent: 5350 + - uid: 17311 + components: + - type: Transform + pos: -63.5,37.5 + parent: 5350 + - uid: 17327 + components: + - type: Transform + pos: -59.5,29.5 + parent: 5350 + - uid: 17356 + components: + - type: Transform + pos: -63.5,38.5 + parent: 5350 - uid: 17462 components: - type: Transform @@ -168012,11 +168781,31 @@ entities: - type: Transform pos: -0.5,-37.5 parent: 5350 + - uid: 17683 + components: + - type: Transform + pos: -59.5,30.5 + parent: 5350 + - uid: 17684 + components: + - type: Transform + pos: -65.5,33.5 + parent: 5350 + - uid: 17714 + components: + - type: Transform + pos: -65.5,29.5 + parent: 5350 - uid: 18015 components: - type: Transform pos: 19.5,-63.5 parent: 5350 + - uid: 18237 + components: + - type: Transform + pos: -18.5,37.5 + parent: 5350 - uid: 18392 components: - type: Transform @@ -168032,6 +168821,11 @@ entities: - type: Transform pos: -60.5,-22.5 parent: 5350 + - uid: 18520 + components: + - type: Transform + pos: -18.5,36.5 + parent: 5350 - uid: 18534 components: - type: Transform @@ -169317,6 +170111,11 @@ entities: - type: Transform pos: -17.5,40.5 parent: 5350 + - uid: 22627 + components: + - type: Transform + pos: -18.5,35.5 + parent: 5350 - uid: 22635 components: - type: Transform @@ -173440,36 +174239,16 @@ entities: - type: Transform pos: 29.5,34.5 parent: 5350 - - uid: 6969 - components: - - type: Transform - pos: -20.5,35.5 - parent: 5350 - - uid: 6987 - components: - - type: Transform - pos: -20.5,36.5 - parent: 5350 - uid: 7033 components: - type: Transform pos: 3.5,34.5 parent: 5350 - - uid: 7041 - components: - - type: Transform - pos: -18.5,42.5 - parent: 5350 - uid: 7156 components: - type: Transform pos: 8.5,34.5 parent: 5350 - - uid: 7168 - components: - - type: Transform - pos: -20.5,37.5 - parent: 5350 - uid: 7182 components: - type: Transform @@ -173495,11 +174274,6 @@ entities: - type: Transform pos: 8.5,29.5 parent: 5350 - - uid: 7564 - components: - - type: Transform - pos: 7.5,29.5 - parent: 5350 - uid: 7632 components: - type: Transform @@ -173560,11 +174334,6 @@ entities: - type: Transform pos: 3.5,36.5 parent: 5350 - - uid: 7777 - components: - - type: Transform - pos: 5.5,29.5 - parent: 5350 - uid: 7783 components: - type: Transform @@ -173930,11 +174699,6 @@ entities: - type: Transform pos: 15.5,38.5 parent: 5350 - - uid: 8387 - components: - - type: Transform - pos: -20.5,38.5 - parent: 5350 - uid: 8388 components: - type: Transform @@ -174795,11 +175559,6 @@ entities: - type: Transform pos: 45.5,34.5 parent: 5350 - - uid: 13113 - components: - - type: Transform - pos: -20.5,42.5 - parent: 5350 - uid: 13314 components: - type: Transform @@ -174815,11 +175574,6 @@ entities: - type: Transform pos: 22.5,41.5 parent: 5350 - - uid: 13466 - components: - - type: Transform - pos: -19.5,42.5 - parent: 5350 - uid: 13497 components: - type: Transform @@ -175867,11 +176621,6 @@ entities: - type: Transform pos: -36.5,-44.5 parent: 5350 - - uid: 16575 - components: - - type: Transform - pos: -59.5,32.5 - parent: 5350 - uid: 16579 components: - type: Transform @@ -175897,11 +176646,6 @@ entities: - type: Transform pos: 4.5,-37.5 parent: 5350 - - uid: 16650 - components: - - type: Transform - pos: -61.5,37.5 - parent: 5350 - uid: 16679 components: - type: Transform @@ -176032,11 +176776,6 @@ entities: - type: Transform pos: -48.5,-39.5 parent: 5350 - - uid: 16734 - components: - - type: Transform - pos: -63.5,28.5 - parent: 5350 - uid: 16737 components: - type: Transform @@ -176057,16 +176796,6 @@ entities: - type: Transform pos: 9.5,-22.5 parent: 5350 - - uid: 16743 - components: - - type: Transform - pos: -63.5,35.5 - parent: 5350 - - uid: 16744 - components: - - type: Transform - pos: -64.5,34.5 - parent: 5350 - uid: 16848 components: - type: Transform @@ -176132,11 +176861,6 @@ entities: - type: Transform pos: -66.5,-38.5 parent: 5350 - - uid: 17219 - components: - - type: Transform - pos: -63.5,34.5 - parent: 5350 - uid: 17220 components: - type: Transform @@ -176272,26 +176996,6 @@ entities: - type: Transform pos: -44.5,-15.5 parent: 5350 - - uid: 17281 - components: - - type: Transform - pos: -60.5,33.5 - parent: 5350 - - uid: 17283 - components: - - type: Transform - pos: -60.5,29.5 - parent: 5350 - - uid: 17286 - components: - - type: Transform - pos: -64.5,29.5 - parent: 5350 - - uid: 17311 - components: - - type: Transform - pos: -64.5,33.5 - parent: 5350 - uid: 17312 components: - type: Transform @@ -176322,11 +177026,6 @@ entities: - type: Transform pos: -39.5,-26.5 parent: 5350 - - uid: 17327 - components: - - type: Transform - pos: -60.5,28.5 - parent: 5350 - uid: 17328 components: - type: Transform @@ -176362,11 +177061,6 @@ entities: - type: Transform pos: -40.5,-37.5 parent: 5350 - - uid: 17356 - components: - - type: Transform - pos: -60.5,34.5 - parent: 5350 - uid: 17385 components: - type: Transform @@ -176447,21 +177141,6 @@ entities: - type: Transform pos: -35.5,-8.5 parent: 5350 - - uid: 17683 - components: - - type: Transform - pos: -59.5,33.5 - parent: 5350 - - uid: 17684 - components: - - type: Transform - pos: -61.5,35.5 - parent: 5350 - - uid: 17714 - components: - - type: Transform - pos: -64.5,28.5 - parent: 5350 - uid: 17983 components: - type: Transform @@ -176647,11 +177326,6 @@ entities: - type: Transform pos: -51.5,-6.5 parent: 5350 - - uid: 18237 - components: - - type: Transform - pos: -61.5,34.5 - parent: 5350 - uid: 18261 components: - type: Transform @@ -176727,21 +177401,6 @@ entities: - type: Transform pos: -53.5,-11.5 parent: 5350 - - uid: 18520 - components: - - type: Transform - pos: -61.5,28.5 - parent: 5350 - - uid: 18531 - components: - - type: Transform - pos: -61.5,38.5 - parent: 5350 - - uid: 18537 - components: - - type: Transform - pos: -63.5,37.5 - parent: 5350 - uid: 18556 components: - type: Transform @@ -176902,16 +177561,6 @@ entities: - type: Transform pos: -5.5,-54.5 parent: 5350 - - uid: 19140 - components: - - type: Transform - pos: -59.5,29.5 - parent: 5350 - - uid: 19141 - components: - - type: Transform - pos: -63.5,38.5 - parent: 5350 - uid: 19147 components: - type: Transform @@ -176922,11 +177571,6 @@ entities: - type: Transform pos: -31.5,22.5 parent: 5350 - - uid: 19223 - components: - - type: Transform - pos: -59.5,30.5 - parent: 5350 - uid: 19250 components: - type: Transform @@ -176942,16 +177586,6 @@ entities: - type: Transform pos: -18.5,3.5 parent: 5350 - - uid: 19340 - components: - - type: Transform - pos: -65.5,33.5 - parent: 5350 - - uid: 19341 - components: - - type: Transform - pos: -65.5,29.5 - parent: 5350 - uid: 19417 components: - type: Transform @@ -177977,16 +178611,17 @@ entities: - type: Transform pos: -18.5,-55.5 parent: 5350 + - uid: 22216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,29.5 + parent: 5350 - uid: 22246 components: - type: Transform pos: -18.5,-56.5 parent: 5350 - - uid: 22366 - components: - - type: Transform - pos: -17.5,42.5 - parent: 5350 - uid: 22396 components: - type: Transform @@ -178052,16 +178687,6 @@ entities: - type: Transform pos: 2.5,-63.5 parent: 5350 - - uid: 22626 - components: - - type: Transform - pos: -18.5,37.5 - parent: 5350 - - uid: 22627 - components: - - type: Transform - pos: -18.5,36.5 - parent: 5350 - uid: 22628 components: - type: Transform @@ -178619,36 +179244,12 @@ entities: parent: 5350 - proto: WallWeaponCapacitorRecharger entities: - - uid: 24478 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,43.5 - parent: 5350 - - uid: 24489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,46.5 - parent: 5350 - uid: 28124 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,34.5 parent: 5350 - - uid: 28218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,44.5 - parent: 5350 - - uid: 28251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,22.5 - parent: 5350 - proto: WardrobeBlackFilled entities: - uid: 13593 @@ -179234,16 +179835,6 @@ entities: - type: Transform pos: 9.465627,24.685179 parent: 5350 - - uid: 6651 - components: - - type: Transform - pos: -0.56818223,44.415676 - parent: 5350 - - uid: 6656 - components: - - type: Transform - pos: -0.80255723,44.790676 - parent: 5350 - uid: 7224 components: - type: Transform @@ -179251,11 +179842,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 7543 - components: - - type: Transform - pos: -0.69318223,44.6188 - parent: 5350 - proto: WeaponDisablerPractice entities: - uid: 22293 @@ -179312,33 +179898,6 @@ entities: - type: Transform pos: -17.487097,43.821205 parent: 5350 -- proto: WeaponRifleFoam - entities: - - uid: 8066 - components: - - type: Transform - pos: -18.530102,41.73881 - parent: 5350 - - uid: 8067 - components: - - type: Transform - pos: -18.514477,41.629436 - parent: 5350 - - uid: 8079 - components: - - type: Transform - pos: -18.498852,41.52006 - parent: 5350 - - uid: 8083 - components: - - type: Transform - pos: -18.498852,41.39506 - parent: 5350 - - uid: 8084 - components: - - type: Transform - pos: -18.483227,41.285686 - parent: 5350 - proto: WeaponRifleLecter entities: - uid: 28446 @@ -179348,6 +179907,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: WeaponShotgunEnforcer + entities: + - uid: 7743 + components: + - type: Transform + pos: -3.48983,38.175747 + parent: 5350 - proto: WeaponShotgunKammerer entities: - uid: 3634 @@ -179813,17 +180379,6 @@ entities: - DoorStatus: Close - proto: WindoorSecure entities: - - uid: 7206 - components: - - type: Transform - pos: -12.5,-4.5 - parent: 5350 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 987: - - DoorStatus: Close - uid: 15701 components: - type: Transform @@ -179836,6 +180391,17 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,5.5 parent: 5350 + - uid: 22219 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 987: + - DoorStatus: Close - uid: 22299 components: - type: Transform @@ -180071,10 +180637,10 @@ entities: pos: -12.5,-4.5 parent: 5350 - type: DeviceLinkSink - invokeCounter: 3 + invokeCounter: 4 - type: DeviceLinkSource linkedPorts: - 7206: + 22219: - DoorStatus: Close - proto: WindoorSecureMedicalLocked entities: @@ -180355,16 +180921,6 @@ entities: - type: Transform pos: -37.5,23.5 parent: 5350 - - uid: 7605 - components: - - type: Transform - pos: -65.5,31.5 - parent: 5350 - - uid: 7638 - components: - - type: Transform - pos: -65.5,30.5 - parent: 5350 - uid: 8132 components: - type: Transform @@ -180455,21 +181011,6 @@ entities: - type: Transform pos: 1.5,-47.5 parent: 5350 - - uid: 14733 - components: - - type: Transform - pos: -61.5,36.5 - parent: 5350 - - uid: 14751 - components: - - type: Transform - pos: -63.5,36.5 - parent: 5350 - - uid: 14822 - components: - - type: Transform - pos: -65.5,32.5 - parent: 5350 - uid: 14826 components: - type: Transform @@ -184678,7 +185219,7 @@ entities: pos: -28.5,-5.5 parent: 5350 - type: Door - secondsUntilStateChange: -35267.9 + secondsUntilStateChange: -40646 state: Opening - uid: 17570 components: From 9ed7fab2d3dba7d9d82e371517b81a5dd006c3ce Mon Sep 17 00:00:00 2001 From: Nox Date: Sat, 8 Feb 2025 14:42:01 -0800 Subject: [PATCH 136/313] Bagel Armory Restock (V2) (#34917) * Updated armory fills, fixed a few connection errors, and removed the original sin * Added a box of .35 magazines, corrected the starting state of the switches --- Resources/Maps/bagel.yml | 1003 ++++++++++++++++++++++++++------------ 1 file changed, 681 insertions(+), 322 deletions(-) diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index 913d49ed3a..6c5bb015ed 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -1049,6 +1049,9 @@ entities: 5096: -25,5 5227: -25,-12 5352: -14,11 + 5388: -25,-13 + 5389: -29,-12 + 5390: -29,-13 - node: cleanable: True color: '#FFFFFFFF' @@ -1100,14 +1103,14 @@ entities: 3841: 4,-47 3897: 5,-47 5047: -30,-21 - 5069: -26,1 5077: -25,-2 + 5384: -25,-1 + 5385: -25,0 - node: color: '#FFFFFFFF' id: BotLeftGreyscale decals: 2385: 39,-6 - 5078: -25,-1 - node: color: '#FFFFFFFF' id: BotRight @@ -1123,8 +1126,6 @@ entities: 3205: 6,-37 3300: -15,46 5048: -24,-21 - 5070: -28,1 - 5225: -29,-12 - node: color: '#FF8FC9FF' id: BotRightGreyscale @@ -1134,10 +1135,9 @@ entities: color: '#FFFFFFFF' id: BotRightGreyscale decals: - 5067: -29,-1 5068: -29,0 - 5083: -29,-2 - 5226: -29,-13 + 5379: -29,-1 + 5382: -29,-2 - node: color: '#FFFFFFFF' id: Box @@ -1153,7 +1153,9 @@ entities: 4879: -1,23 4880: 0,23 5079: -28,-1 - 5080: -26,-1 + 5383: -26,-1 + 5391: -24,-7 + 5392: -30,-7 - node: color: '#DE3A3A96' id: BoxGreyscale @@ -1165,6 +1167,16 @@ entities: decals: 3297: -24,45 3298: -23,46 + - node: + color: '#DE3A3A96' + id: BrickCornerOverlaySW + decals: + 5386: -29,-13 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayW + decals: + 5387: -29,-12 - node: color: '#FFFFFFFF' id: BrickTileDarkBox @@ -1810,8 +1822,8 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 5220: -25,-13 5282: -31,-17 + 5381: -25,-13 - node: color: '#EFD54193' id: BrickTileWhiteCornerSe @@ -1866,7 +1878,6 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 5219: -29,-13 5275: -23,-17 - node: color: '#EFCC4196' @@ -2286,7 +2297,6 @@ entities: id: BrickTileWhiteLineW decals: 5213: -28,-10 - 5224: -29,-12 5254: -32,-5 5255: -32,-6 5256: -32,-7 @@ -5452,7 +5462,6 @@ entities: 3177: 39,-47 3302: -17,48 5071: -25,1 - 5228: -25,-13 - node: color: '#FFFFFFFF' id: WarnCorner @@ -5540,7 +5549,6 @@ entities: 1050: -2,-78 3340: -19,42 3894: -15,4 - 5082: -29,-2 5347: -2,37 - node: zIndex: 5 @@ -6981,7 +6989,8 @@ entities: -8,-3: 0: 29691 -9,-3: - 0: 3694 + 0: 3630 + 3: 64 -8,-2: 0: 65527 -9,-2: @@ -6997,9 +7006,13 @@ entities: -7,-2: 0: 65520 -7,-1: - 0: 65327 + 0: 30511 + 3: 2048 + 4: 32768 -7,0: - 0: 255 + 0: 151 + 3: 96 + 5: 8 -6,-3: 0: 32382 -6,-2: @@ -8046,7 +8059,7 @@ entities: 0: 255 1: 16384 17,-7: - 3: 1 + 6: 1 1: 4104 17,-6: 1: 4593 @@ -8156,8 +8169,8 @@ entities: -13,7: 1: 39408 -12,8: - 4: 12 - 5: 3072 + 7: 12 + 8: 3072 -11,5: 0: 63351 -11,6: @@ -8166,9 +8179,9 @@ entities: -11,7: 1: 17532 -11,8: - 4: 1 + 7: 1 1: 17476 - 5: 256 + 8: 256 -10,5: 0: 62139 -10,6: @@ -8264,10 +8277,10 @@ entities: 0: 255 1: 57344 -8,11: - 6: 816 + 9: 816 1: 34952 -9,11: - 6: 2176 + 9: 2176 1: 8738 -8,12: 1: 34959 @@ -8287,7 +8300,7 @@ entities: -6,11: 0: 4095 -6,12: - 6: 61166 + 9: 61166 -5,9: 0: 65528 -5,10: @@ -8295,7 +8308,7 @@ entities: -5,11: 0: 36863 -5,12: - 6: 30515 + 9: 30515 0: 12 -4,9: 0: 65528 @@ -8305,7 +8318,7 @@ entities: 0: 4095 -4,12: 0: 1 - 6: 65518 + 9: 65518 -4,13: 1: 61680 -5,13: @@ -8319,7 +8332,7 @@ entities: -5,15: 1: 17487 -3,12: - 6: 13107 + 9: 13107 1: 34944 -3,13: 1: 47792 @@ -8385,7 +8398,7 @@ entities: 1: 61713 -12,9: 0: 16 - 6: 3084 + 9: 3084 -13,9: 1: 39305 -13,10: @@ -8394,19 +8407,19 @@ entities: 1: 35033 0: 12544 -12,10: - 3: 12 - 6: 3072 - -12,11: 6: 12 + 9: 3072 + -12,11: + 9: 12 -11,9: - 6: 257 + 9: 257 1: 17476 -11,10: - 3: 1 - 6: 256 + 6: 1 + 9: 256 1: 17476 -11,11: - 6: 1 + 9: 1 1: 17476 -11,12: 1: 17487 @@ -8460,8 +8473,8 @@ entities: 1: 15 -13,12: 1: 34952 - 5: 48 - 4: 12288 + 8: 48 + 7: 12288 -12,13: 1: 61455 -13,13: @@ -8494,11 +8507,11 @@ entities: 1: 62671 -7,14: 1: 244 - 6: 57344 + 9: 57344 0: 1024 -7,15: 1: 61440 - 6: 238 + 9: 238 0: 1024 -7,16: 1: 65524 @@ -8557,8 +8570,8 @@ entities: -14,12: 0: 1 1: 8738 - 5: 128 - 4: 32768 + 8: 128 + 7: 32768 -17,12: 0: 52232 -16,13: @@ -9133,6 +9146,51 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14948 + moles: + - 18.472576 + - 69.49208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.1495 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -9493,16 +9551,46 @@ entities: - uid: 14226 components: - type: Transform - pos: -23.537233,-10.44661 + pos: -23.517168,-10.499137 parent: 60 - proto: ActionToggleInternals entities: + - uid: 5836 + components: + - type: Transform + parent: 5430 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 5430 + - uid: 6830 + components: + - type: Transform + parent: 6707 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 6707 - uid: 13159 components: - type: Transform parent: 19510 - type: InstantAction container: 19510 +- proto: ActionToggleJetpack + entities: + - uid: 5757 + components: + - type: Transform + parent: 5430 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 5430 + - uid: 6734 + components: + - type: Transform + parent: 6707 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 6707 - proto: ActionToggleLight entities: - uid: 4547 @@ -9623,6 +9711,8 @@ entities: - 792 - uid: 3204 components: + - type: MetaData + name: Ready Room Air Alarm - type: Transform rot: 3.141592653589793 rad pos: -26.5,-21.5 @@ -9686,6 +9776,8 @@ entities: - 7463 - uid: 5933 components: + - type: MetaData + name: Panopticon Air Alarm - type: Transform rot: 3.141592653589793 rad pos: -25.5,-13.5 @@ -14188,7 +14280,7 @@ entities: - uid: 124 components: - type: MetaData - name: Security Ready Room APC + name: Ready Room APC - type: Transform rot: 3.141592653589793 rad pos: -25.5,-21.5 @@ -14423,7 +14515,7 @@ entities: - uid: 7032 components: - type: MetaData - name: Warden's Office APC + name: Panopticon APC - type: Transform rot: 3.141592653589793 rad pos: -27.5,-13.5 @@ -15737,16 +15829,16 @@ entities: - type: Transform pos: 52.5,-44.5 parent: 60 - - uid: 309 - components: - - type: Transform - pos: -34.5,-6.5 - parent: 60 - uid: 806 components: - type: Transform pos: -6.5,24.5 parent: 60 + - uid: 1822 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 60 - uid: 1850 components: - type: Transform @@ -15757,11 +15849,6 @@ entities: - type: Transform pos: 30.5,-14.5 parent: 60 - - uid: 2581 - components: - - type: Transform - pos: -34.5,-10.5 - parent: 60 - uid: 2923 components: - type: Transform @@ -15812,6 +15899,21 @@ entities: - type: Transform pos: 56.5,-45.5 parent: 60 + - uid: 8438 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 60 + - uid: 8473 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 60 + - uid: 8682 + components: + - type: Transform + pos: -34.5,-7.5 + parent: 60 - uid: 8934 components: - type: Transform @@ -15822,11 +15924,6 @@ entities: - type: Transform pos: 3.5,-3.5 parent: 7536 - - uid: 9223 - components: - - type: Transform - pos: -18.5,-6.5 - parent: 60 - uid: 13733 components: - type: Transform @@ -15892,11 +15989,6 @@ entities: - type: Transform pos: -6.5,-6.5 parent: 60 - - uid: 19170 - components: - - type: Transform - pos: -18.5,-10.5 - parent: 60 - uid: 24362 components: - type: Transform @@ -16018,31 +16110,31 @@ entities: parent: 60 - proto: BedsheetOrange entities: - - uid: 269 + - uid: 291 components: - type: Transform - pos: -18.5,-10.5 + pos: -18.5,-7.5 parent: 60 - - uid: 6830 + - uid: 309 components: - type: Transform - pos: -34.5,-10.5 + pos: -18.5,-11.5 parent: 60 - - uid: 10684 + - uid: 7785 components: - type: Transform - pos: -34.5,-6.5 + pos: -34.5,-11.5 + parent: 60 + - uid: 8240 + components: + - type: Transform + pos: -34.5,-7.5 parent: 60 - uid: 13699 components: - type: Transform pos: -7.5,-12.5 parent: 60 - - uid: 17469 - components: - - type: Transform - pos: -18.5,-6.5 - parent: 60 - proto: BedsheetQM entities: - uid: 5932 @@ -17037,6 +17129,13 @@ entities: - type: Transform pos: 0.43422604,17.607504 parent: 60 +- proto: BoxMagazinePistol + entities: + - uid: 6546 + components: + - type: Transform + pos: -30.317034,-20.534887 + parent: 60 - proto: BoxMouthSwab entities: - uid: 8886 @@ -17096,12 +17195,12 @@ entities: - uid: 13148 components: - type: Transform - pos: -30.92134,-20.595226 + pos: -30.915613,-20.534887 parent: 60 - uid: 21067 components: - type: Transform - pos: -27.615358,-9.430985 + pos: -22.375732,-20.563042 parent: 60 - proto: BrbSign entities: @@ -59955,13 +60054,6 @@ entities: - type: Transform pos: -12.506187,-1.5083885 parent: 7536 -- proto: ClothingBeltSecurityFilled - entities: - - uid: 6546 - components: - - type: Transform - pos: -30.497168,-20.40541 - parent: 60 - proto: ClothingBeltUtilityEngineering entities: - uid: 14118 @@ -60514,20 +60606,20 @@ entities: parent: 60 - proto: ClothingHeadHelmetRiot entities: - - uid: 6308 + - uid: 1740 components: - type: Transform - pos: -24.634363,-12.292603 + pos: -27.272326,1.5471131 parent: 60 - - uid: 6707 + - uid: 1749 components: - type: Transform - pos: -24.634363,-12.292603 + pos: -27.272326,1.422113 parent: 60 - uid: 7747 components: - type: Transform - pos: -24.634363,-12.292603 + pos: -27.272326,1.703363 parent: 60 - proto: ClothingHeadHelmetTemplar entities: @@ -60845,39 +60937,51 @@ entities: - type: Transform pos: -12.119702,-50.42532 parent: 60 +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 2579 + components: + - type: Transform + pos: -28.26191,1.6537957 + parent: 60 + - uid: 19170 + components: + - type: Transform + pos: -28.26191,1.5496291 + parent: 60 + - uid: 21162 + components: + - type: Transform + pos: -28.251492,1.424629 + parent: 60 - proto: ClothingOuterArmorReflective entities: - - uid: 5010 + - uid: 1840 components: - type: Transform - pos: -24.587488,-12.605103 + pos: -28.69941,1.5912957 parent: 60 - - uid: 5909 + - uid: 17469 components: - type: Transform - pos: -24.587488,-12.605103 - parent: 60 - - uid: 7785 - components: - - type: Transform - pos: -24.587488,-12.605103 + pos: -28.709826,1.393379 parent: 60 - proto: ClothingOuterArmorRiot entities: - - uid: 5201 + - uid: 10684 components: - type: Transform - pos: -24.384363,-12.511353 + pos: -27.63691,1.5366963 parent: 60 - - uid: 5849 + - uid: 15898 components: - type: Transform - pos: -24.384363,-12.511353 + pos: -27.63691,1.390863 parent: 60 - uid: 21723 components: - type: Transform - pos: -24.384363,-12.511353 + pos: -27.626492,1.6512797 parent: 60 - proto: ClothingOuterCardborg entities: @@ -60933,23 +61037,6 @@ entities: - type: Transform pos: -47.44876,21.462833 parent: 60 -- proto: ClothingOuterHardsuitSecurity - entities: - - uid: 1862 - components: - - type: Transform - pos: -28.693623,1.6351235 - parent: 60 - - uid: 5313 - components: - - type: Transform - pos: -28.552998,1.5257485 - parent: 60 - - uid: 6367 - components: - - type: Transform - pos: -28.381123,1.4163735 - parent: 60 - proto: ClothingOuterHoodieBlack entities: - uid: 17781 @@ -61708,6 +61795,11 @@ entities: parent: 60 - proto: ComputerCrewMonitoring entities: + - uid: 1833 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 60 - uid: 2144 components: - type: Transform @@ -61766,6 +61858,12 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,0.5 parent: 60 + - uid: 8681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-6.5 + parent: 60 - uid: 18561 components: - type: Transform @@ -61977,11 +62075,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-12.5 parent: 60 - - uid: 15898 - components: - - type: Transform - pos: -25.5,-8.5 - parent: 60 - uid: 19686 components: - type: Transform @@ -62022,6 +62115,21 @@ entities: parent: 60 - proto: ComputerTelevision entities: + - uid: 10 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 60 + - uid: 1552 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 60 + - uid: 1650 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 60 - uid: 2213 components: - type: Transform @@ -62042,6 +62150,11 @@ entities: - type: Transform pos: -47.5,24.5 parent: 60 + - uid: 8898 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 60 - proto: ContainmentFieldGenerator entities: - uid: 16152 @@ -63059,8 +63172,11 @@ entities: - uid: 1559 components: - type: Transform + anchored: True pos: -24.5,-11.5 parent: 60 + - type: Physics + bodyType: Static - proto: CrateServiceJanitorialSupplies entities: - uid: 734 @@ -63175,11 +63291,6 @@ entities: available: False - proto: Crowbar entities: - - uid: 1977 - components: - - type: Transform - pos: -27.476547,-12.57161 - parent: 60 - uid: 23156 components: - type: Transform @@ -68869,6 +68980,25 @@ entities: - type: Transform pos: -40.5,9.5 parent: 60 +- proto: DresserWardenFilled + entities: + - uid: 1861 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 60 + - type: Storage + storedItems: + 1862: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1862 - proto: DrinkDoctorsDelightGlass entities: - uid: 16136 @@ -109235,39 +109365,103 @@ entities: parent: 60 - proto: GunSafeDisabler entities: - - uid: 1558 + - uid: 5201 components: - type: Transform - pos: -28.5,-12.5 + anchored: True + pos: -24.5,-20.5 parent: 60 + - type: Physics + bodyType: Static - proto: GunSafeLaserCarbine entities: - - uid: 1861 + - uid: 6206 components: + - type: MetaData + desc: A standard-issue Nanotrasen storage unit, containing 4 laser carbines. - type: Transform - pos: -24.5,-0.5 + anchored: True + pos: -26.5,1.5 parent: 60 + - type: Physics + bodyType: Static + - 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: + - 6308 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafePistolMk58 + entities: + - uid: 1561 + components: + - type: MetaData + desc: A standard-issue Nanotrasen storage unit, containing 4 Mk58 pistols. + - type: Transform + anchored: True + pos: -28.5,-1.5 + parent: 60 + - type: Physics + bodyType: Static - proto: GunSafeRifleLecter entities: - uid: 10682 components: + - type: MetaData + desc: A standard-issue Nanotrasen storage unit, containing 2 Lecter combat rifles. - type: Transform + anchored: True pos: -28.5,0.5 parent: 60 + - type: Physics + bodyType: Static - proto: GunSafeShotgunKammerer entities: - - uid: 1749 + - uid: 6367 components: + - type: MetaData + desc: A standard-issue Nanotrasen storage unit, containing 2 Kammerer shotguns. - type: Transform - pos: -28.5,-0.5 + anchored: True + pos: -25.5,1.5 parent: 60 + - type: Physics + bodyType: Static - proto: GunSafeSubMachineGunDrozd entities: - - uid: 7649 + - uid: 1968 components: + - type: MetaData + desc: A standard-issue Nanotrasen storage unit, containing 2 Drozd submachine guns. - type: Transform - pos: -28.5,-1.5 + anchored: True + pos: -28.5,-0.5 parent: 60 + - type: Physics + bodyType: Static - proto: HandheldGPSBasic entities: - uid: 3712 @@ -109326,6 +109520,12 @@ entities: parent: 60 - proto: HarmonicaInstrument entities: + - uid: 1862 + components: + - type: Transform + parent: 1861 + - type: Physics + canCollide: False - uid: 13657 components: - type: Transform @@ -110360,6 +110560,51 @@ entities: - type: Transform pos: 5.43841,-38.31682 parent: 60 +- proto: JetpackSecurityFilled + entities: + - uid: 1904 + components: + - type: Transform + parent: 1864 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5430 + components: + - type: Transform + parent: 5313 + - type: GasTank + toggleActionEntity: 5836 + - type: Jetpack + toggleActionEntity: 5757 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 5757 + - 5836 + - type: InsideEntityStorage + - uid: 6707 + components: + - type: Transform + parent: 1906 + - type: GasTank + toggleActionEntity: 6830 + - type: Jetpack + toggleActionEntity: 6734 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 6734 + - 6830 + - type: InsideEntityStorage - proto: KitchenElectricGrill entities: - uid: 2227 @@ -110997,24 +111242,60 @@ entities: entities: - uid: 1534 components: + - type: MetaData + name: evidence locker (Cell 4) - type: Transform + anchored: True pos: -23.5,-8.5 parent: 60 + - type: Physics + bodyType: Static + - type: Label + currentLabel: Cell 4 + - type: NameModifier + baseName: evidence locker - uid: 1564 components: + - type: MetaData + name: evidence locker (Cell 3) - type: Transform + anchored: True pos: -23.5,-7.5 parent: 60 + - type: Physics + bodyType: Static + - type: Label + currentLabel: Cell 3 + - type: NameModifier + baseName: evidence locker - uid: 1568 components: + - type: MetaData + name: evidence locker (Cell 2) - type: Transform + anchored: True pos: -29.5,-8.5 parent: 60 + - type: Physics + bodyType: Static + - type: Label + currentLabel: Cell 2 + - type: NameModifier + baseName: evidence locker - uid: 1569 components: + - type: MetaData + name: evidence locker (Cell 1) - type: Transform + anchored: True pos: -29.5,-7.5 parent: 60 + - type: Physics + bodyType: Static + - type: Label + currentLabel: Cell 1 + - type: NameModifier + baseName: evidence locker - uid: 13610 components: - type: Transform @@ -111280,33 +111561,51 @@ entities: - uid: 357 components: - type: Transform + anchored: True pos: -24.5,-17.5 parent: 60 + - type: Physics + bodyType: Static - uid: 364 components: - type: Transform + anchored: True pos: -24.5,-18.5 parent: 60 + - type: Physics + bodyType: Static - uid: 491 components: - type: Transform + anchored: True pos: -24.5,-16.5 parent: 60 + - type: Physics + bodyType: Static - uid: 541 components: - type: Transform + anchored: True pos: -28.5,-16.5 parent: 60 + - type: Physics + bodyType: Static - uid: 552 components: - type: Transform + anchored: True pos: -28.5,-17.5 parent: 60 + - type: Physics + bodyType: Static - uid: 562 components: - type: Transform + anchored: True pos: -28.5,-18.5 parent: 60 + - type: Physics + bodyType: Static - proto: LockerSyndicatePersonal entities: - uid: 9113 @@ -111359,8 +111658,11 @@ entities: - uid: 1560 components: - type: Transform + anchored: True pos: -28.5,-11.5 parent: 60 + - type: Physics + bodyType: Static - proto: LockerWeldingSuppliesFilled entities: - uid: 3316 @@ -111551,12 +111853,7 @@ entities: - uid: 5840 components: - type: Transform - pos: -24.260258,1.5715555 - parent: 60 - - uid: 6972 - components: - - type: Transform - pos: -24.416508,1.5715555 + pos: -24.246445,1.6150734 parent: 60 - proto: MagazinePistolSubMachineGunTopMounted entities: @@ -112830,7 +113127,7 @@ entities: - uid: 307 components: - type: Transform - pos: -34.514378,-11.291034 + pos: -32.531956,-11.310459 parent: 60 - uid: 934 components: @@ -112840,57 +113137,57 @@ entities: - uid: 1908 components: - type: Transform - pos: -34.514378,-11.291034 + pos: -32.54758,-11.279209 parent: 60 - uid: 1913 components: - type: Transform - pos: -34.514378,-11.291034 + pos: -32.563206,-11.310459 parent: 60 - uid: 2098 components: - type: Transform - pos: -34.514378,-7.2774615 + pos: -32.603565,-7.312026 parent: 60 - uid: 5368 components: - type: Transform - pos: -18.493418,-11.280288 + pos: -20.412611,-11.27935 parent: 60 - uid: 5424 components: - type: Transform - pos: -18.493418,-11.280288 + pos: -20.506361,-11.294975 parent: 60 - uid: 6648 components: - type: Transform - pos: -18.483002,-7.265358 + pos: -20.459486,-7.320634 parent: 60 - uid: 6683 components: - type: Transform - pos: -34.514378,-7.2774615 + pos: -32.603565,-7.280776 parent: 60 - uid: 6819 components: - type: Transform - pos: -18.493418,-11.280288 + pos: -20.475111,-11.294975 parent: 60 - uid: 7166 components: - type: Transform - pos: -18.483002,-7.265358 + pos: -20.475111,-7.320634 parent: 60 - uid: 8264 components: - type: Transform - pos: -34.514378,-7.2774615 + pos: -32.55669,-7.280776 parent: 60 - uid: 8278 components: - type: Transform - pos: -18.483002,-7.265358 + pos: -20.475111,-7.336259 parent: 60 - uid: 8760 components: @@ -113365,12 +113662,12 @@ entities: - uid: 1856 components: - type: Transform - pos: -34.5,-7.5 + pos: -32.416065,-7.437026 parent: 60 - uid: 1903 components: - type: Transform - pos: -34.5,-11.5 + pos: -32.375706,-11.576084 parent: 60 - uid: 4668 components: @@ -113380,12 +113677,12 @@ entities: - uid: 5428 components: - type: Transform - pos: -18.5,-11.5 + pos: -20.584486,-11.451225 parent: 60 - uid: 6041 components: - type: Transform - pos: -18.5,-7.5 + pos: -20.539515,-7.482237 parent: 60 - uid: 9088 components: @@ -113796,13 +114093,6 @@ entities: - type: Transform pos: 68.494286,-27.490837 parent: 60 -- proto: PortableFlasher - entities: - - uid: 10680 - components: - - type: Transform - pos: -26.5,-0.5 - parent: 60 - proto: PortableGeneratorJrPacman entities: - uid: 4003 @@ -115288,11 +115578,6 @@ entities: - type: Transform pos: 36.5,-13.5 parent: 60 - - uid: 1650 - components: - - type: Transform - pos: -28.5,-20.5 - parent: 60 - uid: 4698 components: - type: Transform @@ -118507,6 +118792,11 @@ entities: - type: Transform pos: 56.5,-15.5 parent: 60 + - uid: 1558 + components: + - type: Transform + pos: -27.5,1.5 + parent: 60 - uid: 1677 components: - type: Transform @@ -118622,26 +118912,21 @@ entities: - type: Transform pos: -55.5,-16.5 parent: 60 - - uid: 5430 - components: - - type: Transform - pos: -24.5,-20.5 - parent: 60 - uid: 5777 components: - type: Transform pos: -67.5,12.5 parent: 60 + - uid: 5849 + components: + - type: Transform + pos: -28.5,1.5 + parent: 60 - uid: 6049 components: - type: Transform pos: -67.5,11.5 parent: 60 - - uid: 6206 - components: - - type: Transform - pos: -24.5,0.5 - parent: 60 - uid: 6240 components: - type: Transform @@ -118672,11 +118957,6 @@ entities: - type: Transform pos: -0.5,15.5 parent: 60 - - uid: 6734 - components: - - type: Transform - pos: -28.5,1.5 - parent: 60 - uid: 7035 components: - type: Transform @@ -118687,11 +118967,6 @@ entities: - type: Transform pos: 13.5,-15.5 parent: 60 - - uid: 7650 - components: - - type: Transform - pos: -24.5,-12.5 - parent: 60 - uid: 7703 components: - type: Transform @@ -118877,11 +119152,6 @@ entities: - type: Transform pos: 28.5,-7.5 parent: 60 - - uid: 21162 - components: - - type: Transform - pos: -27.5,-12.5 - parent: 60 - uid: 21610 components: - type: Transform @@ -125095,10 +125365,10 @@ entities: parent: 60 - proto: SecurityTechFab entities: - - uid: 5836 + - uid: 2581 components: - type: Transform - pos: -26.5,1.5 + pos: -26.5,-0.5 parent: 60 - proto: SeedExtractor entities: @@ -125324,11 +125594,6 @@ entities: - type: Transform pos: 50.57873,-36.45204 parent: 60 - - uid: 6149 - components: - - type: Transform - pos: -24.474873,0.5569985 - parent: 60 - uid: 6590 components: - type: Transform @@ -125404,6 +125669,11 @@ entities: - type: Transform pos: -120.32988,15.381494 parent: 60 + - uid: 23914 + components: + - type: Transform + pos: -27.436367,-6.432194 + parent: 60 - uid: 24665 components: - type: Transform @@ -126506,6 +126776,8 @@ entities: rot: 1.5707963267948966 rad pos: -27.502918,-9.625589 parent: 60 + - type: SignalSwitch + state: True - type: DeviceLinkSource linkedPorts: 1638: @@ -126525,6 +126797,8 @@ entities: rot: -1.5707963267948966 rad pos: -25.502918,-9.625589 parent: 60 + - type: SignalSwitch + state: True - type: DeviceLinkSource linkedPorts: 1293: @@ -126544,6 +126818,8 @@ entities: rot: -1.5707963267948966 rad pos: -25.502918,-9.222812 parent: 60 + - type: SignalSwitch + state: True - type: DeviceLinkSource linkedPorts: 1354: @@ -126563,6 +126839,8 @@ entities: rot: 1.5707963267948966 rad pos: -27.502918,-9.222812 parent: 60 + - type: SignalSwitch + state: True - type: DeviceLinkSource linkedPorts: 1653: @@ -126670,6 +126948,8 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-2.5 parent: 60 + - type: SignalSwitch + state: True - type: DeviceLinkSource linkedPorts: 1681: @@ -126965,6 +127245,8 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-15.5 parent: 60 + - type: SignalSwitch + state: True - type: DeviceLinkSource linkedPorts: 16425: @@ -132730,21 +133012,103 @@ entities: parent: 7536 - proto: SuitStorageSec entities: - - uid: 1740 + - uid: 1864 components: - type: Transform - pos: -27.5,1.5 - parent: 60 - - uid: 1904 - components: - - type: Transform - pos: -25.5,1.5 + pos: -24.5,-0.5 parent: 60 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1462 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1904 - uid: 1906 components: - type: Transform pos: -24.5,-1.5 parent: 60 + - 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: + - 6707 + - uid: 5313 + components: + - type: Transform + pos: -24.5,0.5 + parent: 60 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + 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: + - 5430 +- proto: SuitStorageWarden + entities: + - uid: 5909 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 60 - proto: SurveillanceCameraCommand entities: - uid: 6723 @@ -135002,11 +135366,6 @@ entities: parent: 60 - proto: Table entities: - - uid: 10 - components: - - type: Transform - pos: -32.5,-7.5 - parent: 60 - uid: 20 components: - type: Transform @@ -135035,7 +135394,12 @@ entities: - uid: 246 components: - type: Transform - pos: -20.5,-7.5 + pos: -34.5,-5.5 + parent: 60 + - uid: 269 + components: + - type: Transform + pos: -18.5,-9.5 parent: 60 - uid: 328 components: @@ -135112,16 +135476,6 @@ entities: - type: Transform pos: 9.5,-51.5 parent: 60 - - uid: 1822 - components: - - type: Transform - pos: -32.5,-11.5 - parent: 60 - - uid: 1833 - components: - - type: Transform - pos: -23.5,-10.5 - parent: 60 - uid: 1914 components: - type: Transform @@ -135452,11 +135806,6 @@ entities: - type: Transform pos: -58.5,-17.5 parent: 60 - - uid: 8438 - components: - - type: Transform - pos: -20.5,-11.5 - parent: 60 - uid: 8466 components: - type: Transform @@ -135488,11 +135837,6 @@ entities: - type: Transform pos: -64.5,0.5 parent: 60 - - uid: 8898 - components: - - type: Transform - pos: -29.5,-10.5 - parent: 60 - uid: 8909 components: - type: Transform @@ -135528,6 +135872,11 @@ entities: - type: Transform pos: 40.5,-10.5 parent: 60 + - uid: 9223 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 60 - uid: 9440 components: - type: Transform @@ -135610,6 +135959,11 @@ entities: - type: Transform pos: 49.5,18.5 parent: 60 + - uid: 10680 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 60 - uid: 11103 components: - type: Transform @@ -136300,39 +136654,13 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,21.5 parent: 60 -- proto: TableFancyBlue - entities: - - uid: 5757 - components: - - type: Transform - pos: -34.5,-11.5 - parent: 60 - proto: TableFancyGreen entities: - - uid: 1840 - components: - - type: Transform - pos: -34.5,-7.5 - parent: 60 - uid: 14211 components: - type: Transform pos: -12.5,21.5 parent: 60 -- proto: TableFancyOrange - entities: - - uid: 8682 - components: - - type: Transform - pos: -18.5,-7.5 - parent: 60 -- proto: TableFancyPurple - entities: - - uid: 2579 - components: - - type: Transform - pos: -18.5,-11.5 - parent: 60 - proto: TableGlass entities: - uid: 123 @@ -136666,6 +136994,26 @@ entities: - type: Transform pos: -109.5,13.5 parent: 60 + - uid: 6972 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 60 + - uid: 7014 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 60 + - uid: 7045 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 60 + - uid: 7048 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 60 - uid: 7084 components: - type: Transform @@ -136706,6 +137054,16 @@ entities: - type: Transform pos: -112.5,13.5 parent: 60 + - uid: 7649 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 60 + - uid: 7650 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 60 - uid: 8393 components: - type: Transform @@ -138465,11 +138823,6 @@ entities: - type: Transform pos: -4.5,-44.5 parent: 60 - - uid: 1552 - components: - - type: Transform - pos: -24.5,-6.5 - parent: 60 - uid: 3408 components: - type: Transform @@ -153926,26 +154279,22 @@ entities: - 0 - proto: WardrobePrisonFilled entities: - - uid: 291 + - uid: 1625 components: - type: Transform - pos: -34.5,-5.5 + anchored: True + pos: -29.5,-6.5 parent: 60 - - uid: 8240 + - type: Physics + bodyType: Static + - uid: 1977 components: - type: Transform - pos: -18.5,-9.5 - parent: 60 - - uid: 8473 - components: - - type: Transform - pos: -34.5,-9.5 - parent: 60 - - uid: 8681 - components: - - type: Transform - pos: -18.5,-5.5 + anchored: True + pos: -23.5,-6.5 parent: 60 + - type: Physics + bodyType: Static - proto: WardrobeSalvageFilled entities: - uid: 13247 @@ -154197,6 +154546,11 @@ entities: - type: Transform pos: -27.5,-6.5 parent: 60 + - uid: 5010 + components: + - type: Transform + pos: -28.5,-20.5 + parent: 60 - uid: 8468 components: - type: Transform @@ -154224,29 +154578,21 @@ entities: - type: Transform pos: -21.5,-18.5 parent: 60 -- proto: WeaponDisabler +- proto: WeaponLaserCarbine entities: - - uid: 7014 + - uid: 6308 components: - type: Transform - pos: -24.520348,-20.458258 - parent: 60 - - uid: 7045 - components: - - type: Transform - pos: -24.442223,-20.567633 - parent: 60 - - uid: 7048 - components: - - type: Transform - pos: -24.614098,-20.348883 - parent: 60 + parent: 6206 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponRifleAk entities: - uid: 6136 components: - type: Transform - pos: -24.5,1.5 + pos: -24.376413,1.5949111 parent: 60 - proto: WeaponSubMachineGunWt550 entities: @@ -154599,14 +154945,6 @@ entities: parent: 60 - proto: WindoorSecureArmoryLocked entities: - - uid: 1625 - components: - - type: MetaData - name: Riot Gear - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-12.5 - parent: 60 - uid: 4898 components: - type: Transform @@ -154618,12 +154956,24 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,-10.5 parent: 60 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 234: + - DoorStatus: Close - uid: 15897 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-10.5 parent: 60 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8920: + - DoorStatus: Close - proto: WindoorSecureAtmosphericsLocked entities: - uid: 13959 @@ -154645,6 +154995,12 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-10.5 parent: 60 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8413: + - DoorStatus: Close - uid: 2584 components: - type: Transform @@ -154684,6 +155040,12 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,-10.5 parent: 60 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 15897: + - DoorStatus: Close - uid: 9176 components: - type: Transform @@ -154969,6 +155331,8 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,-11.5 parent: 60 + - type: Airlock + autoClose: False - uid: 1487 components: - type: MetaData @@ -154983,6 +155347,8 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-11.5 parent: 60 + - type: Airlock + autoClose: False - uid: 1548 components: - type: MetaData @@ -155017,6 +155383,8 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-7.5 parent: 60 + - type: Airlock + autoClose: False - uid: 4298 components: - type: Transform @@ -155029,6 +155397,8 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,-7.5 parent: 60 + - type: Airlock + autoClose: False - uid: 12596 components: - type: Transform @@ -155585,12 +155955,6 @@ entities: - type: Transform pos: 7.5,-24.5 parent: 60 - - uid: 1561 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-12.5 - parent: 60 - uid: 1646 components: - type: Transform @@ -155603,12 +155967,6 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,-20.5 parent: 60 - - uid: 1864 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,1.5 - parent: 60 - uid: 1916 components: - type: Transform @@ -155826,6 +156184,12 @@ entities: - type: Transform pos: -15.5,-44.5 parent: 60 + - uid: 6149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,1.5 + parent: 60 - uid: 6478 components: - type: Transform @@ -159458,11 +159822,6 @@ entities: parent: 60 - proto: Wrench entities: - - uid: 1968 - components: - - type: Transform - pos: -27.476547,-12.50911 - parent: 60 - uid: 9120 components: - type: Transform From 50ba607bf54a5222f640ec0bf8025fdc8c5fc4eb Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Sun, 9 Feb 2025 00:02:00 +0100 Subject: [PATCH 137/313] add straight ally pin (#34977) --- .../Catalog/VendingMachines/Inventories/pride.yml | 1 + .../Prototypes/Entities/Clothing/Neck/pins.yml | 11 +++++++++++ .../Markers/Spawners/Random/maintenance.yml | 1 + .../Loadouts/Miscellaneous/trinkets.yml | 6 ++++++ Resources/Prototypes/Loadouts/loadout_groups.yml | 1 + .../Neck/Misc/pins.rsi/ally-equipped-NECK.png | Bin 0 -> 198 bytes .../Textures/Clothing/Neck/Misc/pins.rsi/ally.png | Bin 0 -> 425 bytes .../Clothing/Neck/Misc/pins.rsi/meta.json | 9 ++++++++- 8 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 Resources/Textures/Clothing/Neck/Misc/pins.rsi/ally-equipped-NECK.png create mode 100644 Resources/Textures/Clothing/Neck/Misc/pins.rsi/ally.png diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/pride.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/pride.yml index 5dcdce41dd..28d0ec7b25 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/pride.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/pride.yml @@ -2,6 +2,7 @@ id: PrideDrobeInventory startingInventory: ClothingNeckLGBTPin: 3 + ClothingNeckAllyPin: 3 ClothingNeckAromanticPin: 3 ClothingNeckAsexualPin: 3 ClothingNeckBisexualPin: 3 diff --git a/Resources/Prototypes/Entities/Clothing/Neck/pins.yml b/Resources/Prototypes/Entities/Clothing/Neck/pins.yml index a402791f5a..ea781fb3f3 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/pins.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/pins.yml @@ -23,6 +23,17 @@ - type: Clothing equippedPrefix: lgbt +- type: entity + parent: ClothingNeckPinBase + id: ClothingNeckAllyPin + name: straight ally pin + description: Be ally do crime. + components: + - type: Sprite + state: ally + - type: Clothing + equippedPrefix: ally + - type: entity parent: ClothingNeckPinBase id: ClothingNeckAromanticPin diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml index a6b2324792..78f7aed89d 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml @@ -141,6 +141,7 @@ - !type:GroupSelector children: - id: ClothingNeckLGBTPin + - id: ClothingNeckAllyPin - id: ClothingNeckAromanticPin - id: ClothingNeckAsexualPin - id: ClothingNeckBisexualPin diff --git a/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml b/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml index 5abc708afd..51a96c06d3 100644 --- a/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml +++ b/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml @@ -106,6 +106,12 @@ back: - ClothingNeckLGBTPin +- type: loadout + id: ClothingNeckAllyPin + storage: + back: + - ClothingNeckAllyPin + - type: loadout id: ClothingNeckAromanticPin storage: diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml index ba76e8a1ee..433cebee37 100644 --- a/Resources/Prototypes/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/Loadouts/loadout_groups.yml @@ -19,6 +19,7 @@ - CigarCase - CigarGold - ClothingNeckLGBTPin + - ClothingNeckAllyPin - ClothingNeckAromanticPin - ClothingNeckAsexualPin - ClothingNeckBisexualPin diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/ally-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/ally-equipped-NECK.png new file mode 100644 index 0000000000000000000000000000000000000000..1dd4f7358a46cf0788678024c62c5dea70473c82 GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|e#^NA%C&rs6b?Si}&H|6fVg?3o zVGw3ym^DWNC@3A^6XFV_jg5`(?ba|cHfEU0w0XIN_;`k~@Hv*`Y!PC{xWt~$(69DV-JA?oL literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/ally.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/ally.png new file mode 100644 index 0000000000000000000000000000000000000000..3ff67be50529009c04517ecd5e57cce24472a09e GIT binary patch literal 425 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jPK-BC>eK@{oCO|{#S9GG z!XV7ZFl&wkP;hd9Plzj!mY0)LmX%YIl>-7}V`FP$0|#5{d69C9qGX+Htxb)M>}_mv zBAx%u)ynbGv$L^@jg8IA&8)Ah`1~l~{~Mp0^2F@y?3|pe9qUup&vq`%&zLb|`m|-! z1Xs&5Ol7KATrqRTjEPhG^=27#Zt5xCP}w`Bn^$9|g3(z=*EhFs-???`&g%8&&z(De z^w{}VuU@}=@v88^Jw>3i3`>Iif*Jmk2wn+1x(3u-$`3O#zmd?2(^e+w!r#N%$Qpx&L8+!r>Dfr7vpVa7}4= zmz@0P0&QpTboFyt=akR{0Lk#c_y7O^ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json index 78cf15fc4e..a9e20917af 100644 --- a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json @@ -1,12 +1,19 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "PixelTK leaves his mark on upstream, BackeTako made the gay, autism pins by Terraspark, omnisexual pin by juliangiebel, genderqueer by centcomofficer24", + "copyright": "PixelTK leaves his mark on upstream, BackeTako made the gay, autism pins by Terraspark, omnisexual pin by juliangiebel, genderqueer by centcomofficer24, ally by FairlySadPanda", "size": { "x": 32, "y": 32 }, "states": [ + { + "name": "ally" + }, + { + "name": "ally-equipped-NECK", + "directions": 4 + }, { "name": "aro" }, From 5e3d744233843a649b2173b769ea757218d831d1 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 8 Feb 2025 23:03:08 +0000 Subject: [PATCH 138/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 8c6c9ebf16..5e0d80f96c 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: ravage123321 - changes: - - message: You can make a holy helmet from holymelons! - type: Add - id: 7417 - time: '2024-09-22T10:33:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32272 - author: saga3152 changes: - message: Citrus plants can now be mutated into each other. @@ -3901,3 +3894,10 @@ id: 7916 time: '2025-02-08T21:16:48.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34836 +- author: lzk228 + changes: + - message: Straight ally pin added to loadouts and to the Pride-O-Mat. + type: Add + id: 7917 + time: '2025-02-08T23:02:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34977 From 36b59c69f4849400e6d2b8e6027aec9f7a445834 Mon Sep 17 00:00:00 2001 From: "Ignaz \"Ian\" Kraft" Date: Sun, 9 Feb 2025 00:16:06 +0100 Subject: [PATCH 139/313] allow paper labels on seeds (#34450) * allow paper labels on seeds * added the components required by PaperLabel to the SeedBase * localize insert/eject for PaperLabel * visualize the paper label on seeds * new paper layer for seeds * eject the seed label on use * different looking paper label * forgot to turn on a layer --- .../Botany/Systems/BotanySystem.Seed.cs | 2 +- .../Botany/Systems/PlantHolderSystem.cs | 7 +++++ .../en-US/label/paper-label-component.ftl | 2 ++ .../Objects/Specific/Hydroponics/seeds.yml | 28 +++++++++++++++++- .../Objects/Specific/Medical/morgue.yml | 4 +-- .../Xenoarchaeology/artifact_equipment.yml | 4 +-- .../Storage/Closets/base_structureclosets.yml | 4 +-- .../Storage/Crates/base_structurecrates.yml | 4 +-- .../Specific/Hydroponics/seeds.rsi/meta.json | 5 +++- .../Specific/Hydroponics/seeds.rsi/paper.png | Bin 0 -> 750 bytes 10 files changed, 49 insertions(+), 11 deletions(-) create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/seeds.rsi/paper.png diff --git a/Content.Server/Botany/Systems/BotanySystem.Seed.cs b/Content.Server/Botany/Systems/BotanySystem.Seed.cs index 1487ed71d4..76421daf2e 100644 --- a/Content.Server/Botany/Systems/BotanySystem.Seed.cs +++ b/Content.Server/Botany/Systems/BotanySystem.Seed.cs @@ -84,7 +84,7 @@ public sealed partial class BotanySystem : EntitySystem if (!TryGetSeed(component, out var seed)) return; - using (args.PushGroup(nameof(SeedComponent))) + using (args.PushGroup(nameof(SeedComponent), 1)) { var name = Loc.GetString(seed.DisplayName); args.PushMarkup(Loc.GetString($"seed-component-description", ("seedName", name))); diff --git a/Content.Server/Botany/Systems/PlantHolderSystem.cs b/Content.Server/Botany/Systems/PlantHolderSystem.cs index 271acb606a..7eda4949a9 100644 --- a/Content.Server/Botany/Systems/PlantHolderSystem.cs +++ b/Content.Server/Botany/Systems/PlantHolderSystem.cs @@ -22,6 +22,8 @@ using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; +using Content.Server.Labels.Components; +using Content.Shared.Containers.ItemSlots; namespace Content.Server.Botany.Systems; @@ -39,6 +41,7 @@ public sealed class PlantHolderSystem : EntitySystem [Dependency] private readonly TagSystem _tagSystem = default!; [Dependency] private readonly RandomHelperSystem _randomHelper = default!; [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly ItemSlotsSystem _itemSlots = default!; public const float HydroponicsSpeedMultiplier = 1f; @@ -176,6 +179,10 @@ public sealed class PlantHolderSystem : EntitySystem } component.LastCycle = _gameTiming.CurTime; + if (TryComp(args.Used, out var paperLabel)) + { + _itemSlots.TryEjectToHands(args.Used, paperLabel.LabelSlot, args.User); + } QueueDel(args.Used); CheckLevelSanity(uid, component); diff --git a/Resources/Locale/en-US/label/paper-label-component.ftl b/Resources/Locale/en-US/label/paper-label-component.ftl index a62fc0244d..8b268596b0 100644 --- a/Resources/Locale/en-US/label/paper-label-component.ftl +++ b/Resources/Locale/en-US/label/paper-label-component.ftl @@ -1,3 +1,5 @@ comp-paper-label-has-label = There is a label attached, it reads: comp-paper-label-has-label-blank = There is a label attached, but it's blank. comp-paper-label-has-label-cant-read = There is a label attached, but you can't read it from this distance. +comp-paper-label-insert = Attach label +comp-paper-label-eject = Detach label diff --git a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml index 1ad3dd5bdf..bc78ab5911 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml @@ -6,11 +6,37 @@ - type: SolutionContainerManager - type: Sprite sprite: Objects/Specific/Hydroponics/seeds.rsi - state: seed + layers: + - state: seed + - state: paper + visible: false + map: ["enum.PaperLabelVisuals.Layer"] + sprite: Objects/Specific/Hydroponics/seeds.rsi + - type: Appearance + - type: GenericVisualizer + visuals: + enum.PaperLabelVisuals.HasLabel: + enum.PaperLabelVisuals.Layer: + True: { visible: true } + False: { visible: false } - type: Item size: Tiny - type: StaticPrice price: 20 + - type: ItemSlots + - type: ContainerContainer + containers: + paper_label: !type:ContainerSlot + - type: PaperLabel + labelSlot: + insertVerbText: comp-paper-label-insert + ejectVerbText: comp-paper-label-eject + whitelist: + components: + - Paper + blacklist: + tags: + - Book - type: entity parent: SeedBase diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml index d1085ff5de..6c42b8f59f 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml @@ -51,8 +51,8 @@ - type: EntityStorageLayingDownOverride - type: PaperLabel labelSlot: - insertVerbText: Attach Label - ejectVerbText: Remove Label + insertVerbText: comp-paper-label-insert + ejectVerbText: comp-paper-label-eject whitelist: components: - Paper diff --git a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml index a003ba9079..7053eda226 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml @@ -66,8 +66,8 @@ acts: ["Destruction"] - type: PaperLabel labelSlot: - insertVerbText: Attach Label - ejectVerbText: Remove Label + insertVerbText: comp-paper-label-insert + ejectVerbText: comp-paper-label-eject whitelist: components: - Paper diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml index 2568c45a6a..6777b0f638 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml @@ -26,8 +26,8 @@ - type: MovedByPressure - type: PaperLabel labelSlot: - insertVerbText: Attach Label - ejectVerbText: Remove Label + insertVerbText: comp-paper-label-insert + ejectVerbText: comp-paper-label-eject whitelist: components: - Paper diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml index 48804893ca..3e9a09be5a 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml @@ -72,8 +72,8 @@ Invoice: { state: invoice } - type: PaperLabel labelSlot: - insertVerbText: Attach Label - ejectVerbText: Remove Label + insertVerbText: comp-paper-label-insert + ejectVerbText: comp-paper-label-eject whitelist: components: - Paper diff --git a/Resources/Textures/Objects/Specific/Hydroponics/seeds.rsi/meta.json b/Resources/Textures/Objects/Specific/Hydroponics/seeds.rsi/meta.json index fc716313c8..bd5d13d6df 100644 --- a/Resources/Textures/Objects/Specific/Hydroponics/seeds.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Hydroponics/seeds.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/vgstation-coders/vgstation13 at 1dbcf389b0ec6b2c51b002df5fef8dd1519f8068", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13 at 1dbcf389b0ec6b2c51b002df5fef8dd1519f8068, paper layer by Ian321", "size": { "x": 32, "y": 32 @@ -30,6 +30,9 @@ }, { "name": "seed-synthbrain" + }, + { + "name": "paper" } ] } diff --git a/Resources/Textures/Objects/Specific/Hydroponics/seeds.rsi/paper.png b/Resources/Textures/Objects/Specific/Hydroponics/seeds.rsi/paper.png new file mode 100644 index 0000000000000000000000000000000000000000..31a4559c1f864850c325088db2a7f85d034ccb75 GIT binary patch literal 750 zcmVEX>4Tx04R}tkv&MmKpe$iQ>8^J9qb_DkfAzR2QA`Qt5Adrp;l;yWphgA|?JWDYS_3;J6>}?mh0_0Ya# zo%23%gq3BL_?&pcpbHW|a$RxxjdRIifoDdHY-XM~LM)bgSm|L_HZ^gBRM1zJxlVHwDJ)_M5=1Cypn@ta#Aww?F_EGDq=$dR@k``V$W;L& z#{z25AUl5WKlt6PS)877lR`)s#Kpat9cGs>_D#NPe0^u?W1M(KqFRp<7^J&F!tTkJASrOI@XJfP+I| zyhPdS9`6qJ_V(|YPJchs8FJ0K*P0&y000JJOGiWi{{a60|De66lK=n!32;bRa{vGf z6951U69E94oEQKA00(qQO+^Rk0tgT;2g|Ocng9R*>`6pHR9M69)xnB`Fc1ddU!xlm zg@}0qufG3-_yArOYGqF%7$#}7*~6Z`-!F>zv z`g8UazR#P$pX}TK;eLCjEZL)X-}hlz7AU3AG);17fUfJpFbt^c8X*K!RfV=~lehNt z3TrL2)+oyo&N+XE4UV zIfs<;;jMi-z?TpLS(d>$hjm@CZQH{>pAO)O2-7sddk-Rlwf4{z1jZPYQjk)DF$N+6 gfGvK}Q55~>7qWg^9YoBw?EnA(07*qoM6N<$f-?|Kp#T5? literal 0 HcmV?d00001 From 1077d2dfb26cfe526b2864a6a5498b27aa90d66e Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 8 Feb 2025 23:17:13 +0000 Subject: [PATCH 140/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 5e0d80f96c..07a2b7fac5 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: saga3152 - changes: - - message: Citrus plants can now be mutated into each other. - type: Add - id: 7418 - time: '2024-09-22T15:15:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32306 - author: PotentiallyTom changes: - message: Vent pressure lockout can be temporarily disabled with a screwdriver @@ -3901,3 +3894,10 @@ id: 7917 time: '2025-02-08T23:02:00.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34977 +- author: Ian321 + changes: + - message: Seeds can now have paper labels attached to them. + type: Add + id: 7918 + time: '2025-02-08T23:16:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34450 From e650bbce2371f54e7356e9651cc98c5349ecfddf Mon Sep 17 00:00:00 2001 From: August Sun <45527070+august-sun@users.noreply.github.com> Date: Sat, 8 Feb 2025 17:12:47 -0700 Subject: [PATCH 141/313] Lecter + Magazine Resprite (#34974) * Full resprite of lecter and associated magazine * Minor fixes * More fixes * fixed meta.json indentation * More meta.json fixes * Attribution fixes * Update Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/meta.json --------- Co-authored-by: august-sun <45527070+august.sun@users.noreply.github.com> Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../Magazine/Rifle/rifle_mag.rsi/base.png | Bin 214 -> 186 bytes .../Magazine/Rifle/rifle_mag.rsi/mag-1.png | Bin 154 -> 141 bytes .../Magazine/Rifle/rifle_mag.rsi/meta.json | 4 ++-- .../Magazine/Rifle/rifle_mag.rsi/practice.png | Bin 244 -> 270 bytes .../Magazine/Rifle/rifle_mag.rsi/red.png | Bin 244 -> 262 bytes .../Magazine/Rifle/rifle_mag.rsi/rubber.png | Bin 244 -> 298 bytes .../Magazine/Rifle/rifle_mag.rsi/uranium.png | Bin 298 -> 262 bytes .../Weapons/Guns/Rifles/lecter.rsi/base.png | Bin 465 -> 526 bytes .../Guns/Rifles/lecter.rsi/bolt-open.png | Bin 459 -> 525 bytes .../Rifles/lecter.rsi/equipped-BACKPACK.png | Bin 1045 -> 690 bytes .../Rifles/lecter.rsi/equipped-SUITSTORAGE.png | Bin 1045 -> 690 bytes .../Weapons/Guns/Rifles/lecter.rsi/icon.png | Bin 488 -> 563 bytes .../Guns/Rifles/lecter.rsi/inhand-left.png | Bin 391 -> 640 bytes .../Guns/Rifles/lecter.rsi/inhand-right.png | Bin 398 -> 624 bytes .../Weapons/Guns/Rifles/lecter.rsi/mag-0.png | Bin 196 -> 161 bytes .../Weapons/Guns/Rifles/lecter.rsi/meta.json | 2 +- .../Rifles/lecter.rsi/wielded-inhand-left.png | Bin 832 -> 672 bytes .../Rifles/lecter.rsi/wielded-inhand-right.png | Bin 822 -> 683 bytes 18 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Rifle/rifle_mag.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Rifle/rifle_mag.rsi/base.png index ae29507b2ef2f1f78a4319c2f758b0eb56b20125..3c0c3e3217cd4afac25097de1c4c60eadbbded8b 100644 GIT binary patch delta 170 zcmcb{xQlUuL_G&H0|SH0lCEPwim^Dz-HBn{IhmJ0j&y)eh%1nm5SP+WQ<0UGb+EC> zwo&iPayY&^0w{h;rg9#T;w%aB3ugEa1?Eh%uK)!tJY5_^EP9g@Bv@ZG2(o<8N?>BD zS#^NxKv#iQLRuoz!$4LA)(U1Wp$W=Anx*_(42^_(&IdLKGce?oF)F_`lUfEegu&C* K&t;ucLK6Te;5AeL delta 198 zcmdnRc#Uy_L_G^L0|P^2NcwRg#aJBV?!0bYS=W{evxtU}oXpFK&e|sOo-U3d7QM*{5|s@TCr<3_ o?3|#K=H|9*N18}a(?Mzopr05v!m1^@s6 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Rifle/rifle_mag.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Rifle/rifle_mag.rsi/meta.json index 17803dfbc7..b31e570fab 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Rifle/rifle_mag.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Rifle/rifle_mag.rsi/meta.json @@ -1,11 +1,11 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "All sprites by https://github.com/august-sun.", "size": { "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/shiptest-ss13/Shiptest/pull/1602/commits/3e6cfea9d468508a7f64ad5543c3b22479cb465f, https://github.com/shiptest-ss13/Shiptest/blob/master/icons/obj/ammo.dmi", "states": [ { "name": "base" diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Rifle/rifle_mag.rsi/practice.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Rifle/rifle_mag.rsi/practice.png index 6ff6195ef97e940196cd7f898666239988e53735..ddfa208e6bfc0f1d007a05e4cf5c9c8ab3363e8a 100644 GIT binary patch literal 270 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|`~rMJT!FNN zxRi#Pima@xgN;SDje1{}!|~M-KtZ4gP#h?z6>SqSJ%Qn@6GV+ZBcm4s!&C+axUL=* z#z~F>uOb*Ua(5a5O_VAL@(X78j|;E|{Z#;}^6+$V46*1nlE%aC?1vCUR%3L@z@rc#|>3|6hN933sf YOpbZ!I=wG$Krgy$Vk{1FcVfJGQl}os;VkfoEM{Qf76xHPhFNnYfPxYM zJ|V6kT3kv)O+{8#*1^W2M}={cqrj^O2A}9dHb6O!k|4iehW`+7^;C!vP%P2Y#WAE} zPI7{TgMvnbnu3Z(hnCusB}-ajwGtMoG$}6V&=Hsh1YJ4;aX{u KKbLh*2~7Y#Uqib9 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Rifle/rifle_mag.rsi/red.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Rifle/rifle_mag.rsi/red.png index b35d28afc92f97018e4b7c303b08ebe5ccbbf427..7bca53b45027351f13a724e584f347d157a5929a 100644 GIT binary patch literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|JOX?|T!FNN zxRi#Pima@xgN;SDje1{}!|~M-KtZ4gP#h?z6>SqSJ%Qn@6GV+ZBcm4s!&IP7ByjuD z#c4pUL`jfeFvEZB;N=|`GoTs|PZ!4!i{9h}3Dy@4f-E1j5}253Rvq9v&{d$7ke0}l zxJi_Q%dt^GkM&SMLolPvg)X&%}udHGNET7#Qk5F@5~SXmS?h N3{O`-mvv4FO#sPgR~7&O delta 228 zcmZo;`ocItqMn7Bfq|hhB>gy$Vk{1FcVfJGQl}os;VkfoEM{Qf76xHPhFNnYfPxYM zJ|V6kT3kv)O+{8#*1^U?pOMjvfnh2G!?7~~MnE}^k|4iehW`+7^;8H*EYZ`&F{ENn za)N||f<}Xyf{I3mmfDgfOIl*J5*Dd6DK6;H5ts%9T{;4BKmeq;m^9KftTnBaxDApx zG^{kO6mOqiq0;n9fQNBG`V^MH7`9J5vlSqSJ%Qn@6GV+ZBcm4s!&C+axUL=* z#z~F>uOd*4V&u?g;P+y%o_biCaS_lO#gZVuV21w$fZG?pB|yagOBZoc%zZZk`)XD5int^g0B|(0{4F4hE>ZuSTpje`(i(^Q| zoa6)v2L+7=H3b!o4lT7MOO~|6Y9%aEX;NI!p(8L22)c9x;(!21aWQG6X;^DoDRCPl zacEd+S}EQ>y+Wnwl>iUpg7hgYfiY~KcxE*$TA;A0K|!lrfPvwf3a@nfq||nxZ492S KelF{r5}E*q*Ft^( diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Rifle/rifle_mag.rsi/uranium.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Magazine/Rifle/rifle_mag.rsi/uranium.png index 782b70ab55cfd4ff11cf381810fd37d6be7d7972..0003cc807e9635adae7cff475004ec9d4fe7a28d 100644 GIT binary patch literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|JOX?|T!FNN zxRi#Pima@xgN;SDje1{}!|~M-KtZ4gP#h?z6>SqSJ%Qn@6HqZOAiC}CA)uT@NswPK z!+-4HXC@xeIv^b|q2Y-9l?tVvi4zlQ`k3Z0Fz7ZhMQ8a{J_5PP)78&qol`;+ E07uAF2mk;8 delta 282 zcmV+#0puzu{Cvj>A|;)gZvng;gA%!|(wnQZ;=2{*ysMOa#SZWIoLufG=c_ z(+Sn1K*&XjLC;17ktWd72m=Gdr6YG3UMzh^yEL%E>=9mht$!n=ha5=`(CYg|^>Tn{ z2fW*J51s?Qe*ej!EHBOQ;?)~?Lex-|W4Lkq5$zJ;iJ%>AxG^EHO{#4|%#GUq`M0AQMCmETet zjRpXV#iB57b!v)OFucDsy5BQ0Fe*A>a% zfQ@ZePFTkKIOfN0$4kRFc-||;ZhsWQ1^q@!KJJ_8la%^k0s^}{J8^KYlIN2*Xy${HUYms!{@}qFeHkii^Yx_s3I?( zBnfdGAH94o;l(LQ|4RI1q?Gz^enK@hH8nL=`~o)m&p)8*cjf>9002ovPDHLkV1oQX B?`Qx3 literal 465 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jPK-BC>eK@{oCO|{#S9GG z!XV7ZFl&wkP%uBhC&U#SOD1`PPVG5sxB@r`I!ky zN=iUwK%l9nA}uYQmXBLcmo4y` zXr$7!aaNQV*Vicimu}fSe8LPjgqE8uz5dx@A*ZG5ISD~?SGn_f`~eclbBjZSw8N&Z zdbP_=L{09z4%_R#GrsYRs(!iEa;7hN*JUnob8$;ft8BS*;UCk3HO!fcmm`u_>?x~N zl)rXi;){a<8+T4zxpz&%mwy%3ucqzd`RhCBcg@*L2hL6Z&2sbnE{nK7=jQ8wV#xTw VW91)NvjFHT22WQ%mvv4FO#s44t#$wa diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/bolt-open.png index 0781d7099bbddbfd1c0cf7c36cfa51b95a872006..55fc78d5ddee7f3018500550a5a4d9a035f80c89 100644 GIT binary patch delta 510 zcmViZnM;Pu9TZ$#q!jMb>6Q*c|4JvJ^TpX8;FKYB5S*lR2_7yXw@~92 z@N&ACG^sIHEuETY3E#>0o%cQGd^v%dnwtL|acO~+QeP{klz%$XyU2i)QV)ki0DRvE zAc~@A>pGndj^i+&&yS3pZ6Fm7f`HX(m5rCJ3Sc}Q>)C83(prGj{9>_Sy(`;WXd(eH_ODz;PVy`@S$-&>t+TRQTu96ZcAG&VwKTz% zo6SNT$1#>tyfMv8FprmOek1>4(r)W~vIl}gY}>ZBEO#sGgMPoybUGEiUN39H)R$craQ zLLA2@FQ038aZb{|5(^b07*qoM6N<$f})-7 AbpQYW literal 459 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jPK-BC>eK@{oCO|{#S9GG z!XV7ZFl&wkP%tOJC&U#SOD1`PPVG5sxB@r`I!ky zN=iUwK%l9nA}uYQmXfo4B}mczC#>p`o_6wgd=>1JzhsS^`N~Sy>5j(T7Lx zMF8znDGBlmW?=g9`#%u;{`dd?9}wgJKV~omAy_zm|L1sjbYUe>{RvMO$B>FSZzrA> zYBJz)ZB}E|HeH|_B`Es$f4xa=x&&kCQ$PRBFYnBD4{o@xTCJ`#ZHC}Mf#86r9;`yk zB7AkZTdUT#XRkDMYwu*p=_sBh^hGNu+v(gyZnq!jv*^~O>v)8($TE-PWKj? zy{t$xj3`gZb7q}lQF^!Xii$+cZLi*zo?~Y|ah$yHkLkf0=1j%Q5y>ldep@)9Kl_E} zmkf^^r%qgn3p1#yKjpV;={|@0$){`grDY~OKV94OCOuY0zwY^Y@k)kHL++bDTH-*_ O#o+1c=d#Wzp$P!x4y_OX diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/equipped-BACKPACK.png index 7e73d94ffa2ce457cba48ff86dd213181f594da7..d0f82cc57ec88014f142a18b614108799f43c455 100644 GIT binary patch delta 654 zcmV;90&)G72(kr`FnJaZ(d{y&j{{sE`q72`=->XAOwsn0mdQo^u=r zAT=V(F%xo&4uU{Wr_=QRWhTE1rIdDE7l6TP#lMFKel(lu`Rt={C{FHGz_#u5ch$+? zzJIH4-*t%NnAvP*eGfwbKHT49+xCXmW8_{1CXQT(Xnn7)i|{(LqivMhzH(RfP%JYSp-4!Pj_) z$PlceB7e@Eb62VEdhdt}3Msp4WTI4OR$ delta 1011 zcmVpI zs!2paRCr$Pn!jt?KorL>9h0GU$?Oyz9+Vshq!0Z>zpzA?Ci{- z7eq5ZySTV`R)15fSn2U3Cb+!iogvzJBx8aL72HPN$~R>DX(D)_%Wl&uO|LcW<@Z?d5zvH;cu>+~409*846J z_KbT0M@ZO%kMZC=3&er((Pe4IyVLRU@v%JsgF}sn%zqAWjqmk(r5G=e@MO&2-rm~b zKvZCOi1Cog0gQRVp5yxZ`i}=ncou=QO_BqQ2ONTyECf4%Y|nV-D7)u{qoX5hJmcQQ zoh1r^2gniqs5E$~Vf^!M;=YVYRM0V5bY&U>Mb7ncU^H)dFdPo;86+Wc&YFaS9Dw0v z8;@}k@_!^dnflx)kfD%8Tjp8dIou?O_&gs_^1t-H`+-9eB-;-LgRPsJo8Zjvvi9Dj zXZH8^?KQoHNPCkJoG8YV?P*)0AaC1Hhy$WaOTAvtEEMBcGd=CWI*cz2oUrPMJgmDt zMNt$*Q4~c{6h#T(U-%>q)#$Y(Mx%#^hjyhW&wmnE(Vz{DX!UhO(3&9Cn9Iw{=&pL8 zO)5sdcsYQg+?x$ zqGCjya(jC_x_c~}`5F&FE32|f8@JMnkT0J{rB;okLQP?GGMU%{N$4uHcLY%IpcWtZ z0DnS|^T$t*^?)*v3N=uqMHAZ47*e73asX3`BpA0s1F}7)%xbYzsKG7Iy9JcBO@lNf zl^$?s0SQ6IU|BmvB-&ur;jT6``#8ZX0w_gMeJaZ(d{y&j{{sE`q72`=->XAOwsn0mdQo^u=r zAT=V(F%xo&4uU{Wr_=QRWhTE1rIdDE7l6TP#lMFKel(lu`Rt={C{FHGz_#u5ch$+? zzJIH4-*t%NnAvP*eGfwbKHT49+xCXmW8_{1CXQT(Xnn7)i|{(LqivMhzH(RfP%JYSp-4!Pj_) z$PlceB7e@Eb62VEdhdt}3Msp4WTI4OR$ delta 1011 zcmVpI zs!2paRCr$Pn!jt?KorL>9h0GU$?Oyz9+Vshq!0Z>zpzA?Ci{- z7eq5ZySTV`R)15fSn2U3Cb+!iogvzJBx8aL72HPN$~R>DX(D)_%Wl&uO|LcW<@Z?d5zvH;cu>+~409*846J z_KbT0M@ZO%kMZC=3&er((Pe4IyVLRU@v%JsgF}sn%zqAWjqmk(r5G=e@MO&2-rm~b zKvZCOi1Cog0gQRVp5yxZ`i}=ncou=QO_BqQ2ONTyECf4%Y|nV-D7)u{qoX5hJmcQQ zoh1r^2gniqs5E$~Vf^!M;=YVYRM0V5bY&U>Mb7ncU^H)dFdPo;86+Wc&YFaS9Dw0v z8;@}k@_!^dnflx)kfD%8Tjp8dIou?O_&gs_^1t-H`+-9eB-;-LgRPsJo8Zjvvi9Dj zXZH8^?KQoHNPCkJoG8YV?P*)0AaC1Hhy$WaOTAvtEEMBcGd=CWI*cz2oUrPMJgmDt zMNt$*Q4~c{6h#T(U-%>q)#$Y(Mx%#^hjyhW&wmnE(Vz{DX!UhO(3&9Cn9Iw{=&pL8 zO)5sdcsYQg+?x$ zqGCjya(jC_x_c~}`5F&FE32|f8@JMnkT0J{rB;okLQP?GGMU%{N$4uHcLY%IpcWtZ z0DnS|^T$t*^?)*v3N=uqMHAZ47*e73asX3`BpA0s1F}7)%xbYzsKG7Iy9JcBO@lNf zl^$?s0SQ6IU|BmvB-&ur;jT6``#8ZX0w_gMe8Gi-<0047(dh`GQ00DDSM?wIu&K&6g00HeuL_t(oh3%9vtJ+W$ z$A7m3M_sDO^M-UNb;wvsC=Q)EIJmgTqwtnaEgkw@Ug;ooemMI9q(dm76v0VKm*C|g zTBz4e@Nv7CkUV45((UE9gqxgm|NnFD$%TS~f`^VcH$h5i{(n_WDYd6}mH{cH>2x{( z1VI46VzD@ySF6?VJdfdUxM$>K1Ce+bhD;`t_OEYbfPjMF}!8&3Ju%{W;gnYPF)#XwdC;jc9>+ zmJ|FFSh;TQhFQGRn%~vc-3TrQ{9T5BAocwMi@f=T?u@LS0bAFEZ94E8~=TYtN*YaGXk=b+tg)9?3%ZQJn> zM#hv{a`kmo&0-SJ_wdeljkxL zpU>xLtr0@RBDQUtr%xm+z0OKKZXi$izW8Q08|PGbj7O&gMdDiPgEt>=cKhMPt2nyR nvc!`^_#QtyQ&3P)@NoDG0b=2fx3F7i00000NkvXXu0mjfW5@-C literal 488 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jPK-BC>eK@{oCO|{#S9GG z!XV7ZFl&wkP_Q(>C&U#SOD1`PPVG5sxB@r`I!ky zN=iUwK%l9nA}uYQmXFwur}$axW;$;MGH$MjviJep;vO%UXCfVCImm}5iE=o`=}Gnu+;FH zrF(YL(X7R0p`p3n!u{!D&861QcD-*1`hED}50fS4J9bTz6O8Pg`BeCm({JI1&3q{> zImx{XzwUe~{Zqi%c@eww5iz%I--H;q^6&3ozc_E@$qVtH7VX`4OoutgXWi+eAF~vy tuP@BDw`hBD^rKt-lGpoQ*WW8(p7EV8@wwK@GeA!=c)I$ztaD0e0suW)z2E=< diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/inhand-left.png index 27972c97f500054d5e88d1af644ff92921307c44..b64ce9a927f4f76b78b5f25fd4110d18110d5646 100644 GIT binary patch delta 627 zcmV-(0*w8K1AqmP7=H)`00020X>r~F0004VQb$4nuFf3k0006yNklfgmmhmkeD?hL9;svNT(^K0+U%gCQ?azk;VOo@^-gVDKJc zV~m`|-VBD@p%u6$u0JH@gPz}L>mHqZu7ttofDl3mA%qY@2!A2csvBcpQ{2pb2Ag%V zbz^KEaRHpH1Ag&5`*SiOyuAe=iXwWw9>d{q>w9UfZ5W0$8Vv{F6l}%w0H_=sa1}+F z=bb67wGD#6o}Hc9a=C1i&$e9)kgUtwn>>OhryWHR@Ox9k;n3Msgl(_OQZ5Amn9XJY z%;$5IQX4n7{C~Ytiurt=S89LBtpG>nkdxpTfSWi*DaE?iVfnFFN^uj%09;>Q=d5m@9i{g^S4>POl+Fg_^#^4*dKqIu=~h7F|D;N7K<2T7>~zvyIm(~d}b9t3`2}D0QBzesCXXV zCX>D5=W;SZ5Lkdhp+FqRBwgRMMMz?l%Vk?Cm58E<>2#Xv3CpE9x@&8E8>=yr*@Lu2 z&7}alv~0$=v2J!CDRdf{7hs>(_`j^19XJV&IWmW-^L?^mqng(CyVkVZ?VawKoVx3} ze7e5};Olto_`YvHet1u_)nPCgyzHT=W&5lEtV}GB3C3*0Cf%d!DZJ zgi+>KHD^}P&C(fLCmDR{?eg34B;?2nUx|o}?k0mBosVZ5?_#~+-zvC_Da-c2S>KEe zn-yO#DD8}W6{NlDT#W7?$4Ffn$%E`CYFo~!zCWQWb>hgTEn)}CXEA8Bt9rZ(-OFQF z*v|L2Bj?lHrEO|E3)E*y+^hJIbS+0%Nv`Rq-<|s%?E2@@zIwdYd35k}Nb>YD1{)yb z+~2b9;seeZ54{Xj9x;|jOHBGVRg_<1gF(uTc}yQ0Zl!z7_U22WQ%mvv4FO#m$;p5_1m diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/inhand-right.png index d50518634cd8513233d28d2a70a3a2a477c5b980..8bac7ba395e8c44a63aa393af202c2bb6e463d69 100644 GIT binary patch delta 611 zcmV-p0-XJh1Mmcp7=H)`00020X>r~F0004VQb$4nuFf3k0006iNklbHLkh{R@OtMl&My$&{_ikx;HoYSSsPiaF{uM+ZtM%yN3q=z};|&+rNGJzHhqS zE}|$}zHX(I0RY!^jqm%WQmL5q*{*S2*8q<_WhwmoLn&pVD6-NCVHg6yYAg80Jn!kb zLe@YLL6Rf@fPc|ww4qY-mm~>9WbPsqfT!DDL~t3$0DzOqF^=@XMvKl%?flFDz-1gm zL}q>t(;Xlpux%Ts{XXs|69hqEHCt_{_hmSavomLa<2a^verB4jHi96q?k5wR_WQ7H z8zM4$qUU+$dPfhtWn3#|JkQJSZ{{C+=zr>!h=_=Yh<}KPh=_=Cv#t9ApL34sUmSW~ z0OqUK_!fq*7MyM(rhoU+iN#V0Kf@69dVQKCubjotkp`L~GJXGVrEr^bQoYv8lv1Wx zEJACI!C-(+r(>msulwGtq&f(K+;>}H@sQclM$>x)i?aA-Y&xc2YXN}A!j{S67uiNk zzxDzg>0ASxRE_~G&f=G`>6m`4Z_05T^X1bAG+S--dOhoVxoiO7*Wn??<1ykmUinb; xJkQjk2v<9NEoXifKgZrh*L&9x5fRaT`2#(M7F0AtKg<9C002ovPDHLkV1hvmA~OI0 delta 383 zcmeys(#JeOqMn7Bfq@~yJ?AZuVk{1FcVfJGQl}os;VkfoEM{Qf76xHPhFNnYfPxYM zJ|V6^T3b`y(au&wL&MzMJjl<>+uM8c0Jnuw9CqI}e|J`+w!o`i{rG#$R&w9s0Y4XF;9_o5mg4FRU-hYvdoK z)pzz4^2m7He;hNpG@317umx!lEQCU_EDFUGZ-EC36pO%=qR9X0Uha}g0001gvdoj4nMX2Rw$#jg9D3E` ze3fsr1F}9Hux`6bDNQ63I(~Bhd9)k=AW0X_R1oIlDd*$>015yANkvXXu0mjfSC%+S delta 180 zcmZ3;c!Y6+L_G^L0|P^2NcwRg#aJBV?!#sMSf<2gt(}LxK#9wtOY@y}Px%T1iAfRCt{2+Odn%P#g#FZ={P5?gYJ% z;e|+Xcu?q&B|~P%ih~H^O^#0fDNgneDP++>!2`Qw5DvP=K8}*!U`v+^2hTy1Ytz=G zsm&eu{Xn33eJ{V{_j^r;_W&XyA|fK9|Bz9olMq5z>8F&cbbr0O)~*?F)2G&<*9As<79%Lolf39pU-i0bOZpH&1L|A7gtvRfcMj>QMG!-ShxApDdjkh zK7ILI3n8@QIJ(p6ti5moK)*XV(E+gY%dyUwI!fOGWq+PL7Wn-2+r~l!s+ifk0XK@>kUz`C= j*fax(h=_=Ys`~{YOwm_im~t=x0000~?IK-kYl?x(T48aBs*CCZE$@+7$>@*?oZxQJ3z324a zAA{cqAP9mW2!bF8f_R3k6*V%(Bmn5Tj@#SY(x>Nnh2uRmjDIm%HmBT1#+cmM*}-@` z#?{qTZohuNFWc=l0Kjn^IF9pZl3<#qv@EM|VR9Qd=Q6J?2!dSE_4V~c5{~xwBmjK= z@>Mx8VN6Js*fgAT>AG%i{LAzU(=;UjxIe$+@L(4wXBTr%{z||wj3{O_8o_m43i>-D03Qh((`j`sItECwfM7fLG`BDx)EU*AOiv}Ob1?>C*Ep3cS3CBU*Q06=R) z!*DnPfVrpd`|y1~5yv^l`T6VMOyY68;lv}Oa_Tbs4+f~6z69eK3BCyOr2r=T-;2dE&r9l5==nb}sh<*H&|->gmU zrYlWyWkk0l-@kji^3{LTJnN4q2!bF8f*=TjAP9mW2!eR3RQms(F(!*V0!3x?I`sQ} zxhhTN!hc9u3Jbjep|Gy&QrC5~+ilEdGr4Sk0Anoj9{~5|H_!7TUqW3?-xKx;!o zST$NkEiX$q?N3P8B*PN>hmW61^-Fhv5JGa!0c3jy2CokQ{PPI-zK_F$-7s9q6Oe~# znlfASO+wT2yhL2DXGEp^GD;ILnM@)tK$d6V@_+I&>dQF?=e)8fAP>v3lr(MIPQ(p| zBW3N{M?ljw07;KPRZl=w-7L*`|0>$bmtfvtK@da}jJvWXcT?4&E9=HJv#6rIPFigZX>+01?0C0cf##i5U-L+M&ep+*xW{k>+ oZX@Tvm?X%XKoA5$5X3V01IEwN%>^*oWB>pF07*qoM6N<$f)A*Id;kCd diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/wielded-inhand-right.png index fd58fca837bd971fa8d12541b549e2925ad50069..6b3f4327019966a7bbdcee173ebb421e9e2b6a64 100644 GIT binary patch delta 660 zcmV;F0&D%Y2CD^-BYyw^b5ch_0Itp)=>Px%Wl2OqRCt{2+P`ZWVHm*iuO%2NK|9pL z;e8RD4g?1m3)i7bmjg?uPFV|WrxdaU`e&4a(6vj)LWXt{99(V_vNT{g!eP2Z90PBM z18x(vhv#`S2`~Gg7R6h)k45Irk_QvP`%2MlHtF~KL{Y?GFqmoMI8OX|Fc@%f zaKPEw*-9(HbzQS++cXkafCuJ7xr{x4IC+3lsf6P=93OwA)%t?tIC1jXY?f>`i&E-d z2U@S!ms$MNG%H$pdlBTrLMpR;Q$qsz%8Ad{;bS2Lo_&@`=MR zq#TA1Qrq)52>AW>9YGLe#%6wVaXm2hnEuXnUE{j$Mw6b7tF=xXOIk~>0J~kjt!?w9 uxEES)V<@vWJ^M*yYhDN;gb+fk=P!la-Y4GdMGZgz0000jFTkyIFrZ)_=S2!HdlE!voQ|xm{>4GpGM@JrRT|2(bY42g6rm6zRP0`|y1~w(h!J z<=ASq7F~CUJXZTsOl>oZWm)j@86OCF`@WX>xK;DzA*YzpOiBDmwcG72sR^jdcS)p*)al8waNTaK#y%^g>JeB)Jx8UKgD6h1#+H02N8KbycrGp5B0Y+Wo;0wtsB{Kx)l-86ruQCi8j*qP+q^5X5Zr zJ_0K3MVeW3Q)K`EWxZV@@5Wp82}HH!zOyRLRC|Eud0X-`yH+R^@a=0kS4&G8?c&Zh zfMJ;EO}4N8&y^wo0000 Date: Sun, 9 Feb 2025 00:13:53 +0000 Subject: [PATCH 142/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 07a2b7fac5..b0b6920ba7 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: PotentiallyTom - changes: - - message: Vent pressure lockout can be temporarily disabled with a screwdriver - type: Tweak - id: 7419 - time: '2024-09-22T19:59:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31050 - author: metalgearsloth changes: - message: You can examine entities inside of your own container again. @@ -3901,3 +3894,10 @@ id: 7918 time: '2025-02-08T23:16:07.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34450 +- author: august-sun + changes: + - message: Reworked Lecter and magazine sprites. + type: Tweak + id: 7919 + time: '2025-02-09T00:12:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34974 From 01cbe31872cc6882819b309b19d06ad967589f1d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 9 Feb 2025 02:05:01 +0100 Subject: [PATCH 143/313] Update Credits (#34985) Co-authored-by: PJBot --- Resources/Credits/GitHub.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index bd26b55de1..ad61c74b26 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0tito, 0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, Agoichi, Ahion, aiden, ajcm, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alithsko, ALMv1, Alpaccalypse, Alpha-Two, AlphaQwerty, Altoids1, amatwiedle, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, ApolloVector, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, AzzyIsNotHere, baa14453, BackeTako, BananaFlambe, Baptr0b0t, BarryNorfolk, BasedUser, beck-thompson, bellwetherlogic, ben, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Booblesnoot42, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainMaru, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, CheesePlated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, compilatron144, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, CrafterKolyan, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, Deerstop, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, dinnercalzone, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, DR-DOCTOR-EVIL-EVIL, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, DylanWhittingham, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, FirinMaLazors, Fishfish458, fl-oz, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, flymo5678, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, frobnic8, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, gansulalan, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Helm4142, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, hyperb1, hyperDelegate, hyphenationc, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, jukereise, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, lettern, LetterN, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, Litraxx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, lmsnoise, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, lucas, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, manelnavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, MilonPL, Minemoder5000, Minty642, minus1over12, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, monotheonist, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, Nox38, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OnyxTheBrave, Orange-Winds, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Palladinium, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, pinkbat5, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, ReeZer2, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, Shaddap1, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, slimmslamm, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, starbuckss14, Stealthbomber16, stellar-novas, stewie523, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TeenSarlacc, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, Tezzaide, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, ToxicSonicFan04, Tr1bute, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, Vasilis, VasilisThePikachu, veliebm, Velken, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, Vexerot, VigersRay, violet754, Visne, vlados1408, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, widgetbeck, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xqzpop7, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, yunii, YuriyKiss, yuriykiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, ZeWaka, zHonys, zionnBE, ZNixian, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex +0tito, 0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, agentsmithradio, Agoichi, Ahion, aiden, ajcm, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alithsko, ALMv1, Alpaccalypse, Alpha-Two, AlphaQwerty, Altoids1, amatwiedle, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, ApolloVector, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, AzzyIsNotHere, baa14453, BackeTako, BananaFlambe, Baptr0b0t, BarryNorfolk, BasedUser, beck-thompson, bellwetherlogic, ben, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Booblesnoot42, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainMaru, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, centcomofficer24, Centronias, Chaboricks, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, CheesePlated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, Compilatron144, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, CrafterKolyan, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, Deerstop, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, dinnercalzone, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, DR-DOCTOR-EVIL-EVIL, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, DuckManZach, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, DylanWhittingham, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, farrellka-dev, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, FirinMaLazors, Fishfish458, fl-oz, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, flymo5678, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, frobnic8, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, gansulalan, GaussiArson, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GrownSamoyedDog, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Helm4142, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, hyperb1, hyperDelegate, hyphenationc, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, impubbi, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, jukereise, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, lettern, LetterN, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, Litraxx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, lmsnoise, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, lucas, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, manelnavola, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, MilonPL, Minemoder5000, Minty642, minus1over12, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, monotheonist, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, Nox38, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OnyxTheBrave, Orange-Winds, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Palladinium, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, pinkbat5, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, PROG-MohamedDwidar, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, ReeZer2, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, SG6732, sh18rw, Shaddap1, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, slimmslamm, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, starbuckss14, Stealthbomber16, stellar-novas, stewie523, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TeenSarlacc, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, Tezzaide, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, ToxicSonicFan04, Tr1bute, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Utmanarn, Vaaankas, valentfingerov, Varen, Vasilis, VasilisThePikachu, veliebm, Velken, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, Vexerot, VigersRay, violet754, Visne, vlados1408, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, whatston3, widgetbeck, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xqzpop7, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, youngthug, Yousifb26, youtissoum, yunii, YuriyKiss, yuriykiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, ZeWaka, zHonys, zionnBE, ZNixian, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex From ba1fd6c5f3decb64d231c3e3b9689187a4152a7a Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sun, 9 Feb 2025 13:13:47 +1100 Subject: [PATCH 144/313] Make ReactionResults an array (#34967) * Make ReactionResults an array We're making the dictionaries fixed-size anyway. Alternatively could use a frozendictionary but not sure on the perf difference. Worst case whoever adds another reactionresult makes a minor adjustment * apply conventions --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs | 4 ++-- Content.Server/Atmos/Reactions/PlasmaFireReaction.cs | 6 +++--- Content.Server/Atmos/Reactions/TritiumFireReaction.cs | 6 +++--- Content.Shared/Atmos/GasMixture.cs | 5 ++--- 4 files changed, 10 insertions(+), 11 deletions(-) diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs index a03f27b561..70f91a5dc1 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs @@ -178,7 +178,7 @@ namespace Content.Server.Atmos.EntitySystems if (tile.Hotspot.Bypassing) { - tile.Hotspot.Volume = tile.Air.ReactionResults[GasReaction.Fire] * Atmospherics.FireGrowthRate; + tile.Hotspot.Volume = tile.Air.ReactionResults[(byte)GasReaction.Fire] * Atmospherics.FireGrowthRate; tile.Hotspot.Temperature = tile.Air.Temperature; } else @@ -187,7 +187,7 @@ namespace Content.Server.Atmos.EntitySystems affected.Temperature = tile.Hotspot.Temperature; React(affected, tile); tile.Hotspot.Temperature = affected.Temperature; - tile.Hotspot.Volume = affected.ReactionResults[GasReaction.Fire] * Atmospherics.FireGrowthRate; + tile.Hotspot.Volume = affected.ReactionResults[(byte)GasReaction.Fire] * Atmospherics.FireGrowthRate; Merge(tile.Air, affected); } diff --git a/Content.Server/Atmos/Reactions/PlasmaFireReaction.cs b/Content.Server/Atmos/Reactions/PlasmaFireReaction.cs index 98d567d4ed..b214310da1 100644 --- a/Content.Server/Atmos/Reactions/PlasmaFireReaction.cs +++ b/Content.Server/Atmos/Reactions/PlasmaFireReaction.cs @@ -15,7 +15,7 @@ namespace Content.Server.Atmos.Reactions var oldHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture, true); var temperature = mixture.Temperature; var location = holder as TileAtmosphere; - mixture.ReactionResults[GasReaction.Fire] = 0; + mixture.ReactionResults[(byte)GasReaction.Fire] = 0; // More plasma released at higher temperatures. var temperatureScale = 0f; @@ -60,7 +60,7 @@ namespace Content.Server.Atmos.Reactions energyReleased += Atmospherics.FirePlasmaEnergyReleased * plasmaBurnRate; energyReleased /= heatScale; // adjust energy to make sure speedup doesn't cause mega temperature rise - mixture.ReactionResults[GasReaction.Fire] += plasmaBurnRate * (1 + oxygenBurnRate); + mixture.ReactionResults[(byte)GasReaction.Fire] += plasmaBurnRate * (1 + oxygenBurnRate); } } @@ -80,7 +80,7 @@ namespace Content.Server.Atmos.Reactions } } - return mixture.ReactionResults[GasReaction.Fire] != 0 ? ReactionResult.Reacting : ReactionResult.NoReaction; + return mixture.ReactionResults[(byte)GasReaction.Fire] != 0 ? ReactionResult.Reacting : ReactionResult.NoReaction; } } } diff --git a/Content.Server/Atmos/Reactions/TritiumFireReaction.cs b/Content.Server/Atmos/Reactions/TritiumFireReaction.cs index 3ad0a4b04d..8b7d4e4872 100644 --- a/Content.Server/Atmos/Reactions/TritiumFireReaction.cs +++ b/Content.Server/Atmos/Reactions/TritiumFireReaction.cs @@ -15,7 +15,7 @@ namespace Content.Server.Atmos.Reactions var oldHeatCapacity = atmosphereSystem.GetHeatCapacity(mixture, true); var temperature = mixture.Temperature; var location = holder as TileAtmosphere; - mixture.ReactionResults[GasReaction.Fire] = 0f; + mixture.ReactionResults[(byte)GasReaction.Fire] = 0f; var burnedFuel = 0f; var initialTrit = mixture.GetMoles(Gas.Tritium); @@ -45,7 +45,7 @@ namespace Content.Server.Atmos.Reactions // Conservation of mass is important. mixture.AdjustMoles(Gas.WaterVapor, burnedFuel); - mixture.ReactionResults[GasReaction.Fire] += burnedFuel; + mixture.ReactionResults[(byte)GasReaction.Fire] += burnedFuel; } energyReleased /= heatScale; // adjust energy to make sure speedup doesn't cause mega temperature rise @@ -65,7 +65,7 @@ namespace Content.Server.Atmos.Reactions } } - return mixture.ReactionResults[GasReaction.Fire] != 0 ? ReactionResult.Reacting : ReactionResult.NoReaction; + return mixture.ReactionResults[(byte)GasReaction.Fire] != 0 ? ReactionResult.Reacting : ReactionResult.NoReaction; } } } diff --git a/Content.Shared/Atmos/GasMixture.cs b/Content.Shared/Atmos/GasMixture.cs index deca8faaed..612626d614 100644 --- a/Content.Shared/Atmos/GasMixture.cs +++ b/Content.Shared/Atmos/GasMixture.cs @@ -33,10 +33,9 @@ namespace Content.Shared.Atmos public bool Immutable { get; private set; } [ViewVariables] - public readonly Dictionary ReactionResults = new() + public readonly float[] ReactionResults = { - // We initialize the dictionary here. - { GasReaction.Fire, 0f } + 0f, }; [ViewVariables] From 4a479d7bb06ed1c5527de587b1f346d9360e582d Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Sat, 8 Feb 2025 23:24:54 -0800 Subject: [PATCH 145/313] Misc Bagel station fixes (#34989) * fix meta * fix that one door in ready room that had the wrong access --- Resources/Maps/bagel.yml | 5710 +++++++++++++++++++------------------- 1 file changed, 2932 insertions(+), 2778 deletions(-) diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index 6c5bb015ed..f86d4422c6 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -9600,6 +9600,13 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 18456 + - uid: 8989 + components: + - type: Transform + parent: 18528 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 18528 - uid: 13684 components: - type: Transform @@ -9889,6 +9896,37 @@ entities: - 18825 - 5831 - 5439 + - uid: 12751 + components: + - type: Transform + pos: -7.5,-25.5 + parent: 60 + - type: DeviceList + devices: + - 912 + - 7 + - 913 + - 910 + - uid: 13112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,10.5 + parent: 60 + - type: DeviceList + devices: + - 18653 + - 18658 + - uid: 13252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,17.5 + parent: 60 + - type: DeviceList + devices: + - 16666 + - 16667 - uid: 14670 components: - type: Transform @@ -10295,6 +10333,8 @@ entities: - 21596 - 4953 - 4944 + - 8137 + - 8136 - uid: 21612 components: - type: Transform @@ -10622,6 +10662,43 @@ entities: - 21643 - 17627 - 17632 + - uid: 23922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,12.5 + parent: 60 + - type: DeviceList + devices: + - 18652 + - 18657 + - uid: 23924 + components: + - type: Transform + pos: 9.5,22.5 + parent: 60 + - type: DeviceList + devices: + - 16668 + - 16669 + - uid: 23925 + components: + - type: Transform + pos: -25.5,2.5 + parent: 60 + - type: DeviceList + devices: + - 7901 + - 10586 + - uid: 23926 + components: + - type: Transform + pos: -34.5,1.5 + parent: 60 + - type: DeviceList + devices: + - 13800 + - 21411 - uid: 23956 components: - type: Transform @@ -10872,16 +10949,10 @@ entities: parent: 60 - proto: AirlockArmoryGlassLocked entities: - - uid: 342 - components: - - type: MetaData - name: Ready Room - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-15.5 - parent: 60 - uid: 8471 components: + - type: MetaData + name: Armory - type: Transform pos: -26.5,-2.5 parent: 60 @@ -13511,6 +13582,13 @@ entities: parent: 60 - proto: AirlockSecurityGlassLocked entities: + - uid: 342 + components: + - type: MetaData + name: Ready Room + - type: Transform + pos: -29.5,-15.5 + parent: 60 - uid: 1225 components: - type: MetaData @@ -49640,6 +49718,11 @@ entities: parent: 60 - proto: CaptainIDCard entities: + - uid: 23919 + components: + - type: Transform + pos: -8.433568,-5.5107408 + parent: 60 - uid: 60213 components: - type: Transform @@ -69011,7 +69094,7 @@ entities: - uid: 12837 components: - type: Transform - pos: -8.356498,-5.569201 + pos: -8.287735,-5.1565742 parent: 60 - proto: DrinkGildlagerBottleFull entities: @@ -73910,7 +73993,7 @@ entities: pos: 47.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasFilterFlipped entities: - uid: 23468 @@ -74117,7 +74200,7 @@ entities: pos: 23.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasPassiveVent entities: - uid: 2979 @@ -74341,7 +74424,7 @@ entities: pos: 44.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 125 components: - type: Transform @@ -74357,7 +74440,7 @@ entities: pos: 27.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 222 components: - type: Transform @@ -74365,7 +74448,7 @@ entities: pos: 20.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 248 components: - type: Transform @@ -74373,14 +74456,14 @@ entities: pos: -24.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 311 components: - type: Transform pos: 27.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 766 components: - type: Transform @@ -74388,14 +74471,14 @@ entities: pos: -25.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 784 components: - type: Transform pos: -27.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 793 components: - type: Transform @@ -74403,14 +74486,14 @@ entities: pos: -34.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 947 components: - type: Transform pos: 16.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 995 components: - type: Transform @@ -74418,14 +74501,14 @@ entities: pos: 9.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1388 components: - type: Transform pos: 4.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1408 components: - type: Transform @@ -74433,7 +74516,7 @@ entities: pos: 5.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1409 components: - type: Transform @@ -74441,7 +74524,7 @@ entities: pos: 7.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1700 components: - type: Transform @@ -74449,7 +74532,7 @@ entities: pos: -31.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1776 components: - type: Transform @@ -74457,7 +74540,7 @@ entities: pos: -9.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2025 components: - type: Transform @@ -74465,7 +74548,7 @@ entities: pos: -23.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2113 components: - type: Transform @@ -74473,14 +74556,14 @@ entities: pos: -32.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2120 components: - type: Transform pos: -20.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2203 components: - type: Transform @@ -74488,7 +74571,7 @@ entities: pos: 15.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2207 components: - type: Transform @@ -74496,14 +74579,14 @@ entities: pos: 32.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2274 components: - type: Transform pos: 34.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2278 components: - type: Transform @@ -74511,7 +74594,7 @@ entities: pos: -30.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2366 components: - type: Transform @@ -74519,7 +74602,7 @@ entities: pos: 30.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2443 components: - type: Transform @@ -74527,7 +74610,7 @@ entities: pos: 16.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2513 components: - type: Transform @@ -74535,7 +74618,7 @@ entities: pos: -32.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2569 components: - type: Transform @@ -74543,7 +74626,7 @@ entities: pos: -22.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2999 components: - type: Transform @@ -74589,7 +74672,7 @@ entities: pos: 40.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3188 components: - type: Transform @@ -74604,7 +74687,7 @@ entities: pos: 49.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3960 components: - type: Transform @@ -74612,7 +74695,7 @@ entities: pos: -13.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3961 components: - type: Transform @@ -74620,7 +74703,7 @@ entities: pos: -13.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4739 components: - type: Transform @@ -74628,7 +74711,7 @@ entities: pos: 43.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4911 components: - type: Transform @@ -74636,14 +74719,14 @@ entities: pos: -2.5,-70.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4912 components: - type: Transform pos: -0.5,-70.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4913 components: - type: Transform @@ -74651,7 +74734,7 @@ entities: pos: 3.5,-70.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4914 components: - type: Transform @@ -74659,7 +74742,7 @@ entities: pos: -2.5,-63.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4935 components: - type: Transform @@ -74667,14 +74750,14 @@ entities: pos: 1.5,-63.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4936 components: - type: Transform pos: 3.5,-63.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4961 components: - type: Transform @@ -74682,7 +74765,7 @@ entities: pos: 43.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4985 components: - type: Transform @@ -74690,7 +74773,7 @@ entities: pos: 1.5,-70.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4987 components: - type: Transform @@ -74698,7 +74781,7 @@ entities: pos: -0.5,-63.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5474 components: - type: Transform @@ -74706,7 +74789,7 @@ entities: pos: -38.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5550 components: - type: Transform @@ -74729,14 +74812,14 @@ entities: pos: 8.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5695 components: - type: Transform pos: 8.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5699 components: - type: Transform @@ -74744,7 +74827,7 @@ entities: pos: 5.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5700 components: - type: Transform @@ -74752,21 +74835,21 @@ entities: pos: 6.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5701 components: - type: Transform pos: 6.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5702 components: - type: Transform pos: 5.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5703 components: - type: Transform @@ -74774,7 +74857,7 @@ entities: pos: -7.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5706 components: - type: Transform @@ -74782,7 +74865,7 @@ entities: pos: -7.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5709 components: - type: Transform @@ -74790,7 +74873,7 @@ entities: pos: -4.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5710 components: - type: Transform @@ -74798,7 +74881,7 @@ entities: pos: -4.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5711 components: - type: Transform @@ -74806,7 +74889,7 @@ entities: pos: -5.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5712 components: - type: Transform @@ -74814,14 +74897,14 @@ entities: pos: -5.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5819 components: - type: Transform pos: 19.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5902 components: - type: Transform @@ -74829,7 +74912,7 @@ entities: pos: 15.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5950 components: - type: Transform @@ -74837,7 +74920,7 @@ entities: pos: -54.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5967 components: - type: Transform @@ -74845,14 +74928,14 @@ entities: pos: -55.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6046 components: - type: Transform pos: -44.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6047 components: - type: Transform @@ -74860,14 +74943,14 @@ entities: pos: -49.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6062 components: - type: Transform pos: -43.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6112 components: - type: Transform @@ -74875,7 +74958,7 @@ entities: pos: -43.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6135 components: - type: Transform @@ -74883,7 +74966,7 @@ entities: pos: -44.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6309 components: - type: Transform @@ -74891,7 +74974,7 @@ entities: pos: -21.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6401 components: - type: Transform @@ -74899,7 +74982,7 @@ entities: pos: -47.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6796 components: - type: Transform @@ -74907,14 +74990,14 @@ entities: pos: -27.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6823 components: - type: Transform pos: 17.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7357 components: - type: Transform @@ -74934,7 +75017,7 @@ entities: pos: 23.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7907 components: - type: Transform @@ -74942,28 +75025,28 @@ entities: pos: -25.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8212 components: - type: Transform pos: -18.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8343 components: - type: Transform pos: -31.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8386 components: - type: Transform pos: -12.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8417 components: - type: Transform @@ -74971,21 +75054,21 @@ entities: pos: -45.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8472 components: - type: Transform pos: -46.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8475 components: - type: Transform pos: -43.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8511 components: - type: Transform @@ -74993,7 +75076,7 @@ entities: pos: -43.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8580 components: - type: Transform @@ -75001,7 +75084,7 @@ entities: pos: -46.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8919 components: - type: Transform @@ -75009,14 +75092,14 @@ entities: pos: -7.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8943 components: - type: Transform pos: -7.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8944 components: - type: Transform @@ -75024,14 +75107,14 @@ entities: pos: -12.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8970 components: - type: Transform pos: 21.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9019 components: - type: Transform @@ -75047,7 +75130,7 @@ entities: pos: -54.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11105 components: - type: Transform @@ -75062,7 +75145,7 @@ entities: pos: -6.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11281 components: - type: Transform @@ -75076,7 +75159,7 @@ entities: pos: 37.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11488 components: - type: Transform @@ -75084,7 +75167,7 @@ entities: pos: 12.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11723 components: - type: Transform @@ -75092,7 +75175,7 @@ entities: pos: 40.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11841 components: - type: Transform @@ -75100,7 +75183,7 @@ entities: pos: 48.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12192 components: - type: Transform @@ -75108,7 +75191,7 @@ entities: pos: 41.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12629 components: - type: Transform @@ -75116,7 +75199,7 @@ entities: pos: 39.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12635 components: - type: Transform @@ -75124,7 +75207,7 @@ entities: pos: 40.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12823 components: - type: Transform @@ -75132,7 +75215,7 @@ entities: pos: -36.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12829 components: - type: Transform @@ -75140,7 +75223,7 @@ entities: pos: -43.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12835 components: - type: Transform @@ -75148,7 +75231,7 @@ entities: pos: -43.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13230 components: - type: Transform @@ -75171,7 +75254,7 @@ entities: pos: 49.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13515 components: - type: Transform @@ -75179,7 +75262,7 @@ entities: pos: 41.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13516 components: - type: Transform @@ -75187,7 +75270,7 @@ entities: pos: 37.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13517 components: - type: Transform @@ -75195,7 +75278,7 @@ entities: pos: 37.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13537 components: - type: Transform @@ -75203,7 +75286,7 @@ entities: pos: 20.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13538 components: - type: Transform @@ -75211,7 +75294,7 @@ entities: pos: 20.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13631 components: - type: Transform @@ -75219,7 +75302,7 @@ entities: pos: -8.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14217 components: - type: Transform @@ -75227,7 +75310,7 @@ entities: pos: -7.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14219 components: - type: Transform @@ -75235,14 +75318,14 @@ entities: pos: -11.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14260 components: - type: Transform pos: -14.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14297 components: - type: Transform @@ -75250,14 +75333,14 @@ entities: pos: -7.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14311 components: - type: Transform pos: -8.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14666 components: - type: Transform @@ -75272,7 +75355,7 @@ entities: pos: -12.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14668 components: - type: Transform @@ -75280,7 +75363,7 @@ entities: pos: -20.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14674 components: - type: Transform @@ -75288,7 +75371,7 @@ entities: pos: -20.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14698 components: - type: Transform @@ -75296,7 +75379,7 @@ entities: pos: -12.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14702 components: - type: Transform @@ -75317,7 +75400,7 @@ entities: pos: -20.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14842 components: - type: Transform @@ -75414,7 +75497,7 @@ entities: pos: -33.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15181 components: - type: Transform @@ -75514,14 +75597,14 @@ entities: pos: -22.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15594 components: - type: Transform pos: -10.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15612 components: - type: Transform @@ -75529,14 +75612,14 @@ entities: pos: -20.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15613 components: - type: Transform pos: -12.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16611 components: - type: Transform @@ -75544,7 +75627,7 @@ entities: pos: 1.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16641 components: - type: Transform @@ -75552,7 +75635,7 @@ entities: pos: -3.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16741 components: - type: Transform @@ -75582,7 +75665,7 @@ entities: pos: -47.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17290 components: - type: Transform @@ -75590,7 +75673,7 @@ entities: pos: -52.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17586 components: - type: Transform @@ -75598,7 +75681,7 @@ entities: pos: -41.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17587 components: - type: Transform @@ -75606,7 +75689,7 @@ entities: pos: -43.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18020 components: - type: Transform @@ -75620,7 +75703,7 @@ entities: pos: -2.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18250 components: - type: Transform @@ -75628,14 +75711,14 @@ entities: pos: -3.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18276 components: - type: Transform pos: -2.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18277 components: - type: Transform @@ -75643,7 +75726,7 @@ entities: pos: -4.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18366 components: - type: Transform @@ -75656,7 +75739,7 @@ entities: pos: 4.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18435 components: - type: Transform @@ -75664,7 +75747,7 @@ entities: pos: -3.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18511 components: - type: Transform @@ -75672,21 +75755,21 @@ entities: pos: -2.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18532 components: - type: Transform pos: 2.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18534 components: - type: Transform pos: 4.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18712 components: - type: Transform @@ -75694,7 +75777,7 @@ entities: pos: 39.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18713 components: - type: Transform @@ -75702,7 +75785,7 @@ entities: pos: 37.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18914 components: - type: Transform @@ -75710,7 +75793,7 @@ entities: pos: 47.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21325 components: - type: Transform @@ -75718,14 +75801,14 @@ entities: pos: -58.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21326 components: - type: Transform pos: -58.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21393 components: - type: Transform @@ -75733,14 +75816,14 @@ entities: pos: -15.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21440 components: - type: Transform pos: -7.5,-38.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21441 components: - type: Transform @@ -75748,7 +75831,7 @@ entities: pos: -8.5,-38.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21534 components: - type: Transform @@ -75756,14 +75839,14 @@ entities: pos: 53.5,45.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21666 components: - type: Transform pos: -29.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22829 components: - type: Transform @@ -75771,7 +75854,7 @@ entities: pos: -119.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22846 components: - type: Transform @@ -75779,7 +75862,7 @@ entities: pos: -111.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22872 components: - type: Transform @@ -75787,14 +75870,14 @@ entities: pos: -110.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22873 components: - type: Transform pos: -102.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22874 components: - type: Transform @@ -75802,35 +75885,35 @@ entities: pos: -102.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22875 components: - type: Transform pos: -99.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22877 components: - type: Transform pos: -110.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22880 components: - type: Transform pos: -98.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22895 components: - type: Transform pos: -111.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22896 components: - type: Transform @@ -75838,7 +75921,7 @@ entities: pos: -113.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22897 components: - type: Transform @@ -75846,7 +75929,7 @@ entities: pos: -113.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22898 components: - type: Transform @@ -75854,7 +75937,7 @@ entities: pos: -111.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22899 components: - type: Transform @@ -75862,7 +75945,7 @@ entities: pos: -111.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22909 components: - type: Transform @@ -76098,7 +76181,7 @@ entities: pos: 55.5,47.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24902 components: - type: Transform @@ -76106,14 +76189,14 @@ entities: pos: 33.5,45.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25167 components: - type: Transform pos: 35.5,47.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasPipeFourway entities: - uid: 467 @@ -76122,77 +76205,77 @@ entities: pos: 1.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 483 components: - type: Transform pos: -0.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 872 components: - type: Transform pos: 44.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 942 components: - type: Transform pos: 45.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1040 components: - type: Transform pos: 15.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1177 components: - type: Transform pos: -16.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1664 components: - type: Transform pos: -22.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1744 components: - type: Transform pos: -30.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2361 components: - type: Transform pos: 23.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2470 components: - type: Transform pos: 21.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2491 components: - type: Transform pos: 39.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2903 components: - type: Transform @@ -76211,133 +76294,133 @@ entities: pos: 45.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3194 components: - type: Transform pos: 44.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3195 components: - type: Transform pos: 44.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4002 components: - type: Transform pos: -7.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4116 components: - type: Transform pos: 33.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4656 components: - type: Transform pos: -0.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5247 components: - type: Transform pos: -38.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5473 components: - type: Transform pos: -9.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5837 components: - type: Transform pos: -20.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5991 components: - type: Transform pos: -52.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6213 components: - type: Transform pos: 1.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6264 components: - type: Transform pos: 17.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6268 components: - type: Transform pos: -38.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6275 components: - type: Transform pos: -47.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6834 components: - type: Transform pos: -47.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7904 components: - type: Transform pos: -14.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9232 components: - type: Transform pos: 17.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14241 components: - type: Transform pos: -14.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15113 components: - type: Transform pos: -33.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15531 components: - type: Transform @@ -76351,35 +76434,35 @@ entities: pos: 39.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17887 components: - type: Transform pos: 45.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18231 components: - type: Transform pos: 1.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18239 components: - type: Transform pos: 1.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22822 components: - type: Transform pos: -111.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22997 components: - type: Transform @@ -76421,7 +76504,7 @@ entities: pos: -30.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasPipeSensorTEGCold entities: - uid: 15074 @@ -76449,7 +76532,7 @@ entities: pos: -30.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasPipeStraight entities: - uid: 47 @@ -76458,7 +76541,7 @@ entities: pos: -36.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 133 components: - type: Transform @@ -76466,14 +76549,14 @@ entities: pos: 23.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 171 components: - type: Transform pos: 44.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 195 components: - type: Transform @@ -76481,7 +76564,7 @@ entities: pos: 39.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 196 components: - type: Transform @@ -76489,7 +76572,7 @@ entities: pos: 40.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 198 components: - type: Transform @@ -76497,7 +76580,7 @@ entities: pos: 41.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 199 components: - type: Transform @@ -76505,7 +76588,7 @@ entities: pos: 42.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 202 components: - type: Transform @@ -76513,7 +76596,7 @@ entities: pos: 23.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 212 components: - type: Transform @@ -76521,7 +76604,7 @@ entities: pos: 21.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 221 components: - type: Transform @@ -76529,7 +76612,7 @@ entities: pos: 20.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 224 components: - type: Transform @@ -76537,7 +76620,7 @@ entities: pos: 21.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 272 components: - type: Transform @@ -76545,7 +76628,7 @@ entities: pos: 21.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 293 components: - type: Transform @@ -76553,7 +76636,7 @@ entities: pos: 20.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 294 components: - type: Transform @@ -76561,7 +76644,7 @@ entities: pos: 27.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 299 components: - type: Transform @@ -76569,7 +76652,7 @@ entities: pos: 21.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 301 components: - type: Transform @@ -76577,7 +76660,7 @@ entities: pos: 27.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 302 components: - type: Transform @@ -76585,7 +76668,7 @@ entities: pos: 23.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 305 components: - type: Transform @@ -76593,7 +76676,7 @@ entities: pos: 24.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 310 components: - type: Transform @@ -76601,7 +76684,7 @@ entities: pos: 26.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 312 components: - type: Transform @@ -76609,7 +76692,7 @@ entities: pos: 23.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 318 components: - type: Transform @@ -76617,7 +76700,7 @@ entities: pos: 27.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 336 components: - type: Transform @@ -76625,7 +76708,7 @@ entities: pos: -31.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 360 components: - type: Transform @@ -76633,7 +76716,7 @@ entities: pos: 21.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 361 components: - type: Transform @@ -76641,105 +76724,105 @@ entities: pos: 25.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 412 components: - type: Transform pos: 1.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 413 components: - type: Transform pos: 1.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 414 components: - type: Transform pos: 1.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 415 components: - type: Transform pos: 1.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 416 components: - type: Transform pos: 1.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 418 components: - type: Transform pos: 1.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 420 components: - type: Transform pos: -0.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 421 components: - type: Transform pos: -0.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 422 components: - type: Transform pos: -0.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 423 components: - type: Transform pos: -0.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 424 components: - type: Transform pos: -0.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 425 components: - type: Transform pos: -0.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 427 components: - type: Transform pos: -0.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 440 components: - type: Transform pos: 44.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 462 components: - type: Transform @@ -76747,7 +76830,7 @@ entities: pos: 1.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 463 components: - type: Transform @@ -76755,14 +76838,14 @@ entities: pos: 0.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 465 components: - type: Transform pos: 45.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 468 components: - type: Transform @@ -76770,7 +76853,7 @@ entities: pos: -0.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 469 components: - type: Transform @@ -76778,7 +76861,7 @@ entities: pos: -1.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 470 components: - type: Transform @@ -76786,7 +76869,7 @@ entities: pos: -2.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 471 components: - type: Transform @@ -76794,7 +76877,7 @@ entities: pos: 2.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 472 components: - type: Transform @@ -76802,35 +76885,35 @@ entities: pos: 3.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 475 components: - type: Transform pos: 1.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 476 components: - type: Transform pos: 1.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 477 components: - type: Transform pos: 1.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 478 components: - type: Transform pos: 1.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 480 components: - type: Transform @@ -76838,7 +76921,7 @@ entities: pos: -0.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 481 components: - type: Transform @@ -76846,7 +76929,7 @@ entities: pos: -0.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 484 components: - type: Transform @@ -76854,7 +76937,7 @@ entities: pos: -0.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 485 components: - type: Transform @@ -76862,7 +76945,7 @@ entities: pos: -0.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 486 components: - type: Transform @@ -76870,7 +76953,7 @@ entities: pos: -0.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 495 components: - type: Transform @@ -76878,7 +76961,7 @@ entities: pos: -2.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 496 components: - type: Transform @@ -76886,7 +76969,7 @@ entities: pos: -1.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 505 components: - type: Transform @@ -76894,7 +76977,7 @@ entities: pos: 0.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 506 components: - type: Transform @@ -76902,7 +76985,7 @@ entities: pos: 1.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 507 components: - type: Transform @@ -76910,7 +76993,7 @@ entities: pos: 2.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 509 components: - type: Transform @@ -76918,7 +77001,7 @@ entities: pos: 4.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 510 components: - type: Transform @@ -76926,7 +77009,7 @@ entities: pos: 4.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 512 components: - type: Transform @@ -76934,7 +77017,7 @@ entities: pos: -3.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 532 components: - type: Transform @@ -76942,7 +77025,7 @@ entities: pos: 43.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 618 components: - type: Transform @@ -76950,7 +77033,7 @@ entities: pos: -32.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 619 components: - type: Transform @@ -76958,14 +77041,14 @@ entities: pos: -31.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 632 components: - type: Transform pos: -14.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 716 components: - type: Transform @@ -76973,14 +77056,14 @@ entities: pos: 13.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 735 components: - type: Transform pos: 30.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 781 components: - type: Transform @@ -76988,7 +77071,7 @@ entities: pos: -21.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 782 components: - type: Transform @@ -76996,7 +77079,7 @@ entities: pos: -29.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 783 components: - type: Transform @@ -77004,7 +77087,7 @@ entities: pos: -28.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 794 components: - type: Transform @@ -77012,7 +77095,7 @@ entities: pos: -15.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 838 components: - type: Transform @@ -77020,7 +77103,7 @@ entities: pos: -23.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 839 components: - type: Transform @@ -77028,21 +77111,21 @@ entities: pos: -22.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 874 components: - type: Transform pos: -3.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 875 components: - type: Transform pos: -3.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 879 components: - type: Transform @@ -77050,7 +77133,7 @@ entities: pos: -7.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 880 components: - type: Transform @@ -77058,7 +77141,7 @@ entities: pos: -6.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 881 components: - type: Transform @@ -77066,7 +77149,7 @@ entities: pos: -5.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 882 components: - type: Transform @@ -77074,7 +77157,7 @@ entities: pos: -4.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 883 components: - type: Transform @@ -77082,7 +77165,7 @@ entities: pos: -4.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 884 components: - type: Transform @@ -77090,7 +77173,7 @@ entities: pos: -8.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 885 components: - type: Transform @@ -77098,7 +77181,7 @@ entities: pos: -8.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 886 components: - type: Transform @@ -77106,7 +77189,7 @@ entities: pos: -9.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 888 components: - type: Transform @@ -77114,7 +77197,7 @@ entities: pos: -11.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 889 components: - type: Transform @@ -77122,14 +77205,14 @@ entities: pos: -12.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 890 components: - type: Transform pos: -9.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 891 components: - type: Transform @@ -77137,7 +77220,7 @@ entities: pos: -4.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 892 components: - type: Transform @@ -77145,7 +77228,7 @@ entities: pos: -5.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 893 components: - type: Transform @@ -77153,7 +77236,7 @@ entities: pos: -6.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 894 components: - type: Transform @@ -77161,7 +77244,7 @@ entities: pos: -7.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 897 components: - type: Transform @@ -77169,7 +77252,7 @@ entities: pos: -10.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 899 components: - type: Transform @@ -77177,7 +77260,7 @@ entities: pos: -11.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 900 components: - type: Transform @@ -77185,7 +77268,7 @@ entities: pos: -12.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 901 components: - type: Transform @@ -77193,7 +77276,7 @@ entities: pos: -13.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 903 components: - type: Transform @@ -77201,42 +77284,42 @@ entities: pos: -14.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 905 components: - type: Transform pos: -9.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 906 components: - type: Transform pos: -9.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 908 components: - type: Transform pos: -3.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 909 components: - type: Transform pos: -3.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 917 components: - type: Transform pos: 30.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 950 components: - type: Transform @@ -77244,7 +77327,7 @@ entities: pos: 42.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 951 components: - type: Transform @@ -77252,7 +77335,7 @@ entities: pos: 44.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 961 components: - type: Transform @@ -77260,7 +77343,7 @@ entities: pos: -13.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 991 components: - type: Transform @@ -77268,7 +77351,7 @@ entities: pos: -16.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 996 components: - type: Transform @@ -77276,7 +77359,7 @@ entities: pos: 14.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1029 components: - type: Transform @@ -77284,7 +77367,7 @@ entities: pos: 5.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1030 components: - type: Transform @@ -77292,7 +77375,7 @@ entities: pos: 6.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1031 components: - type: Transform @@ -77300,7 +77383,7 @@ entities: pos: 7.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1032 components: - type: Transform @@ -77308,7 +77391,7 @@ entities: pos: 8.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1033 components: - type: Transform @@ -77316,7 +77399,7 @@ entities: pos: 9.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1034 components: - type: Transform @@ -77324,7 +77407,7 @@ entities: pos: 10.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1035 components: - type: Transform @@ -77332,7 +77415,7 @@ entities: pos: 11.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1037 components: - type: Transform @@ -77340,7 +77423,7 @@ entities: pos: 13.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1038 components: - type: Transform @@ -77348,7 +77431,7 @@ entities: pos: 14.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1039 components: - type: Transform @@ -77356,7 +77439,7 @@ entities: pos: 15.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1041 components: - type: Transform @@ -77364,7 +77447,7 @@ entities: pos: 5.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1042 components: - type: Transform @@ -77372,7 +77455,7 @@ entities: pos: 6.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1044 components: - type: Transform @@ -77380,7 +77463,7 @@ entities: pos: 8.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1046 components: - type: Transform @@ -77388,7 +77471,7 @@ entities: pos: 10.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1048 components: - type: Transform @@ -77396,7 +77479,7 @@ entities: pos: 12.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1049 components: - type: Transform @@ -77404,7 +77487,7 @@ entities: pos: 13.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1050 components: - type: Transform @@ -77412,7 +77495,7 @@ entities: pos: 14.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1053 components: - type: Transform @@ -77420,7 +77503,7 @@ entities: pos: 17.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1054 components: - type: Transform @@ -77428,7 +77511,7 @@ entities: pos: 17.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1055 components: - type: Transform @@ -77436,7 +77519,7 @@ entities: pos: 15.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1056 components: - type: Transform @@ -77444,7 +77527,7 @@ entities: pos: 17.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1057 components: - type: Transform @@ -77452,7 +77535,7 @@ entities: pos: 17.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1058 components: - type: Transform @@ -77460,7 +77543,7 @@ entities: pos: 15.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1060 components: - type: Transform @@ -77468,7 +77551,7 @@ entities: pos: 17.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1062 components: - type: Transform @@ -77476,7 +77559,7 @@ entities: pos: 15.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1063 components: - type: Transform @@ -77484,7 +77567,7 @@ entities: pos: 15.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1064 components: - type: Transform @@ -77492,7 +77575,7 @@ entities: pos: 17.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1065 components: - type: Transform @@ -77500,7 +77583,7 @@ entities: pos: 17.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1067 components: - type: Transform @@ -77508,7 +77591,7 @@ entities: pos: 15.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1068 components: - type: Transform @@ -77516,7 +77599,7 @@ entities: pos: 17.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1069 components: - type: Transform @@ -77524,7 +77607,7 @@ entities: pos: 17.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1070 components: - type: Transform @@ -77532,7 +77615,7 @@ entities: pos: 15.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1073 components: - type: Transform @@ -77540,7 +77623,7 @@ entities: pos: 17.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1076 components: - type: Transform @@ -77548,7 +77631,7 @@ entities: pos: 17.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1078 components: - type: Transform @@ -77556,7 +77639,7 @@ entities: pos: 15.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1080 components: - type: Transform @@ -77564,7 +77647,7 @@ entities: pos: 17.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1081 components: - type: Transform @@ -77572,7 +77655,7 @@ entities: pos: 17.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1082 components: - type: Transform @@ -77580,7 +77663,7 @@ entities: pos: 15.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1083 components: - type: Transform @@ -77588,7 +77671,7 @@ entities: pos: 15.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1084 components: - type: Transform @@ -77596,7 +77679,7 @@ entities: pos: 17.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1085 components: - type: Transform @@ -77604,7 +77687,7 @@ entities: pos: 17.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1086 components: - type: Transform @@ -77612,7 +77695,7 @@ entities: pos: 15.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1087 components: - type: Transform @@ -77620,7 +77703,7 @@ entities: pos: 15.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1088 components: - type: Transform @@ -77628,7 +77711,7 @@ entities: pos: 17.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1089 components: - type: Transform @@ -77636,7 +77719,7 @@ entities: pos: 17.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1090 components: - type: Transform @@ -77644,7 +77727,7 @@ entities: pos: 15.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1091 components: - type: Transform @@ -77652,14 +77735,14 @@ entities: pos: 15.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1092 components: - type: Transform pos: 17.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1093 components: - type: Transform @@ -77667,7 +77750,7 @@ entities: pos: 15.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1094 components: - type: Transform @@ -77675,14 +77758,14 @@ entities: pos: 17.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1095 components: - type: Transform pos: 15.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1097 components: - type: Transform @@ -77690,7 +77773,7 @@ entities: pos: 15.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1098 components: - type: Transform @@ -77698,7 +77781,7 @@ entities: pos: 17.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1100 components: - type: Transform @@ -77706,7 +77789,7 @@ entities: pos: 17.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1101 components: - type: Transform @@ -77714,7 +77797,7 @@ entities: pos: 15.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1102 components: - type: Transform @@ -77722,7 +77805,7 @@ entities: pos: 17.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1103 components: - type: Transform @@ -77730,7 +77813,7 @@ entities: pos: 15.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1104 components: - type: Transform @@ -77738,7 +77821,7 @@ entities: pos: 17.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1105 components: - type: Transform @@ -77746,7 +77829,7 @@ entities: pos: 15.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1106 components: - type: Transform @@ -77754,7 +77837,7 @@ entities: pos: 17.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1107 components: - type: Transform @@ -77762,7 +77845,7 @@ entities: pos: 15.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1108 components: - type: Transform @@ -77770,7 +77853,7 @@ entities: pos: 17.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1109 components: - type: Transform @@ -77778,7 +77861,7 @@ entities: pos: 15.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1110 components: - type: Transform @@ -77786,7 +77869,7 @@ entities: pos: 17.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1111 components: - type: Transform @@ -77794,7 +77877,7 @@ entities: pos: 15.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1112 components: - type: Transform @@ -77802,7 +77885,7 @@ entities: pos: 17.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1113 components: - type: Transform @@ -77810,7 +77893,7 @@ entities: pos: -15.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1119 components: - type: Transform @@ -77818,7 +77901,7 @@ entities: pos: -14.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1120 components: - type: Transform @@ -77826,7 +77909,7 @@ entities: pos: -14.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1123 components: - type: Transform @@ -77834,7 +77917,7 @@ entities: pos: -14.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1124 components: - type: Transform @@ -77842,7 +77925,7 @@ entities: pos: -14.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1125 components: - type: Transform @@ -77850,14 +77933,14 @@ entities: pos: -16.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1126 components: - type: Transform pos: -16.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1127 components: - type: Transform @@ -77865,7 +77948,7 @@ entities: pos: -14.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1129 components: - type: Transform @@ -77873,7 +77956,7 @@ entities: pos: -16.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1130 components: - type: Transform @@ -77881,7 +77964,7 @@ entities: pos: -16.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1131 components: - type: Transform @@ -77889,7 +77972,7 @@ entities: pos: -14.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1132 components: - type: Transform @@ -77897,7 +77980,7 @@ entities: pos: -14.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1134 components: - type: Transform @@ -77905,7 +77988,7 @@ entities: pos: -16.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1135 components: - type: Transform @@ -77913,7 +77996,7 @@ entities: pos: -16.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1137 components: - type: Transform @@ -77921,7 +78004,7 @@ entities: pos: -14.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1138 components: - type: Transform @@ -77929,7 +78012,7 @@ entities: pos: -14.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1139 components: - type: Transform @@ -77937,7 +78020,7 @@ entities: pos: -16.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1140 components: - type: Transform @@ -77945,7 +78028,7 @@ entities: pos: -16.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1141 components: - type: Transform @@ -77953,7 +78036,7 @@ entities: pos: -14.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1142 components: - type: Transform @@ -77961,7 +78044,7 @@ entities: pos: -14.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1143 components: - type: Transform @@ -77969,7 +78052,7 @@ entities: pos: -16.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1144 components: - type: Transform @@ -77977,7 +78060,7 @@ entities: pos: -16.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1145 components: - type: Transform @@ -77985,7 +78068,7 @@ entities: pos: -14.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1146 components: - type: Transform @@ -77993,7 +78076,7 @@ entities: pos: -14.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1147 components: - type: Transform @@ -78001,7 +78084,7 @@ entities: pos: -16.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1149 components: - type: Transform @@ -78009,7 +78092,7 @@ entities: pos: -14.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1151 components: - type: Transform @@ -78017,7 +78100,7 @@ entities: pos: -16.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1152 components: - type: Transform @@ -78025,7 +78108,7 @@ entities: pos: -16.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1153 components: - type: Transform @@ -78033,7 +78116,7 @@ entities: pos: -14.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1154 components: - type: Transform @@ -78041,7 +78124,7 @@ entities: pos: -14.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1155 components: - type: Transform @@ -78049,7 +78132,7 @@ entities: pos: -16.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1156 components: - type: Transform @@ -78057,7 +78140,7 @@ entities: pos: -16.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1157 components: - type: Transform @@ -78065,7 +78148,7 @@ entities: pos: -14.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1158 components: - type: Transform @@ -78073,7 +78156,7 @@ entities: pos: -14.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1159 components: - type: Transform @@ -78081,7 +78164,7 @@ entities: pos: -16.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1160 components: - type: Transform @@ -78089,7 +78172,7 @@ entities: pos: -16.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1161 components: - type: Transform @@ -78097,7 +78180,7 @@ entities: pos: -14.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1163 components: - type: Transform @@ -78105,7 +78188,7 @@ entities: pos: -16.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1164 components: - type: Transform @@ -78113,7 +78196,7 @@ entities: pos: -16.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1165 components: - type: Transform @@ -78121,7 +78204,7 @@ entities: pos: -14.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1166 components: - type: Transform @@ -78129,7 +78212,7 @@ entities: pos: -14.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1169 components: - type: Transform @@ -78137,7 +78220,7 @@ entities: pos: -14.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1171 components: - type: Transform @@ -78145,7 +78228,7 @@ entities: pos: -16.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1172 components: - type: Transform @@ -78153,7 +78236,7 @@ entities: pos: -16.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1173 components: - type: Transform @@ -78161,7 +78244,7 @@ entities: pos: -14.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1176 components: - type: Transform @@ -78169,28 +78252,28 @@ entities: pos: -17.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1214 components: - type: Transform pos: -14.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1215 components: - type: Transform pos: -16.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1216 components: - type: Transform pos: -14.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1218 components: - type: Transform @@ -78198,14 +78281,14 @@ entities: pos: -13.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1219 components: - type: Transform pos: -16.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1220 components: - type: Transform @@ -78213,7 +78296,7 @@ entities: pos: -12.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1221 components: - type: Transform @@ -78221,7 +78304,7 @@ entities: pos: -12.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1222 components: - type: Transform @@ -78229,7 +78312,7 @@ entities: pos: -11.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1223 components: - type: Transform @@ -78237,7 +78320,7 @@ entities: pos: -11.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1224 components: - type: Transform @@ -78245,7 +78328,7 @@ entities: pos: -10.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1227 components: - type: Transform @@ -78253,7 +78336,7 @@ entities: pos: -9.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1228 components: - type: Transform @@ -78261,7 +78344,7 @@ entities: pos: -8.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1231 components: - type: Transform @@ -78269,7 +78352,7 @@ entities: pos: -15.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1260 components: - type: Transform @@ -78277,7 +78360,7 @@ entities: pos: 9.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1261 components: - type: Transform @@ -78285,7 +78368,7 @@ entities: pos: 10.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1263 components: - type: Transform @@ -78293,7 +78376,7 @@ entities: pos: 11.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1264 components: - type: Transform @@ -78301,7 +78384,7 @@ entities: pos: 11.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1266 components: - type: Transform @@ -78309,7 +78392,7 @@ entities: pos: 12.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1267 components: - type: Transform @@ -78317,7 +78400,7 @@ entities: pos: 13.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1268 components: - type: Transform @@ -78325,7 +78408,7 @@ entities: pos: 14.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1270 components: - type: Transform @@ -78333,7 +78416,7 @@ entities: pos: 14.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1271 components: - type: Transform @@ -78341,7 +78424,7 @@ entities: pos: 15.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1272 components: - type: Transform @@ -78349,7 +78432,7 @@ entities: pos: 16.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1274 components: - type: Transform @@ -78357,7 +78440,7 @@ entities: pos: 17.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1279 components: - type: Transform @@ -78365,14 +78448,14 @@ entities: pos: -48.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1281 components: - type: Transform pos: -16.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1306 components: - type: Transform @@ -78380,7 +78463,7 @@ entities: pos: -17.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1308 components: - type: Transform @@ -78388,7 +78471,7 @@ entities: pos: -1.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1359 components: - type: Transform @@ -78403,112 +78486,112 @@ entities: pos: 3.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1390 components: - type: Transform pos: 3.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1391 components: - type: Transform pos: 3.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1395 components: - type: Transform pos: 4.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1396 components: - type: Transform pos: 4.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1399 components: - type: Transform pos: 7.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1400 components: - type: Transform pos: 7.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1401 components: - type: Transform pos: 7.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1402 components: - type: Transform pos: 7.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1403 components: - type: Transform pos: 7.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1404 components: - type: Transform pos: 7.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1413 components: - type: Transform pos: -0.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1414 components: - type: Transform pos: -0.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1415 components: - type: Transform pos: 1.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1416 components: - type: Transform pos: 1.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1418 components: - type: Transform pos: 1.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1420 components: - type: Transform @@ -78516,7 +78599,7 @@ entities: pos: -0.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1421 components: - type: Transform @@ -78524,7 +78607,7 @@ entities: pos: -0.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1422 components: - type: Transform @@ -78532,7 +78615,7 @@ entities: pos: -0.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1423 components: - type: Transform @@ -78540,7 +78623,7 @@ entities: pos: -0.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1424 components: - type: Transform @@ -78548,7 +78631,7 @@ entities: pos: -0.5,-35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1425 components: - type: Transform @@ -78556,7 +78639,7 @@ entities: pos: 1.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1426 components: - type: Transform @@ -78564,7 +78647,7 @@ entities: pos: 1.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1427 components: - type: Transform @@ -78572,7 +78655,7 @@ entities: pos: 1.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1428 components: - type: Transform @@ -78580,7 +78663,7 @@ entities: pos: 1.5,-35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1497 components: - type: Transform @@ -78588,14 +78671,14 @@ entities: pos: -20.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1500 components: - type: Transform pos: -36.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1505 components: - type: Transform @@ -78603,7 +78686,7 @@ entities: pos: -21.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1506 components: - type: Transform @@ -78611,7 +78694,7 @@ entities: pos: -16.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1519 components: - type: Transform @@ -78619,7 +78702,7 @@ entities: pos: -22.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1526 components: - type: Transform @@ -78627,7 +78710,7 @@ entities: pos: -21.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1531 components: - type: Transform @@ -78635,7 +78718,7 @@ entities: pos: -24.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1588 components: - type: Transform @@ -78643,14 +78726,14 @@ entities: pos: -18.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1592 components: - type: Transform pos: -28.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1602 components: - type: Transform @@ -78658,7 +78741,7 @@ entities: pos: -16.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1605 components: - type: Transform @@ -78666,7 +78749,7 @@ entities: pos: -25.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1606 components: - type: Transform @@ -78674,7 +78757,7 @@ entities: pos: -27.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1607 components: - type: Transform @@ -78682,7 +78765,7 @@ entities: pos: -26.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1609 components: - type: Transform @@ -78690,7 +78773,7 @@ entities: pos: -23.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1612 components: - type: Transform @@ -78698,7 +78781,7 @@ entities: pos: -26.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1613 components: - type: Transform @@ -78706,7 +78789,7 @@ entities: pos: -27.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1614 components: - type: Transform @@ -78714,7 +78797,7 @@ entities: pos: -28.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1629 components: - type: Transform @@ -78722,7 +78805,7 @@ entities: pos: -16.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1630 components: - type: Transform @@ -78730,7 +78813,7 @@ entities: pos: -16.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1641 components: - type: Transform @@ -78738,7 +78821,7 @@ entities: pos: 4.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1663 components: - type: Transform @@ -78746,7 +78829,7 @@ entities: pos: -32.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1666 components: - type: Transform @@ -78754,7 +78837,7 @@ entities: pos: -31.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1668 components: - type: Transform @@ -78762,7 +78845,7 @@ entities: pos: -32.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1669 components: - type: Transform @@ -78770,7 +78853,7 @@ entities: pos: -9.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1684 components: - type: Transform @@ -78778,14 +78861,14 @@ entities: pos: -18.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1692 components: - type: Transform pos: -36.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1694 components: - type: Transform @@ -78793,7 +78876,7 @@ entities: pos: -17.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1702 components: - type: Transform @@ -78801,7 +78884,7 @@ entities: pos: -20.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1705 components: - type: Transform @@ -78809,7 +78892,7 @@ entities: pos: -25.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1712 components: - type: Transform @@ -78817,7 +78900,7 @@ entities: pos: -29.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1713 components: - type: Transform @@ -78825,7 +78908,7 @@ entities: pos: -30.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1718 components: - type: Transform @@ -78833,7 +78916,7 @@ entities: pos: -35.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1721 components: - type: Transform @@ -78841,21 +78924,21 @@ entities: pos: -32.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1724 components: - type: Transform pos: -22.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1725 components: - type: Transform pos: -22.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1729 components: - type: Transform @@ -78863,14 +78946,14 @@ entities: pos: -32.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1730 components: - type: Transform pos: -38.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1732 components: - type: Transform @@ -78878,7 +78961,7 @@ entities: pos: -34.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1734 components: - type: Transform @@ -78886,7 +78969,7 @@ entities: pos: -23.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1747 components: - type: Transform @@ -78894,7 +78977,7 @@ entities: pos: -33.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1748 components: - type: Transform @@ -78902,7 +78985,7 @@ entities: pos: -32.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1752 components: - type: Transform @@ -78910,14 +78993,14 @@ entities: pos: -31.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1753 components: - type: Transform pos: -38.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1754 components: - type: Transform @@ -78925,14 +79008,14 @@ entities: pos: -30.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1755 components: - type: Transform pos: -38.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1757 components: - type: Transform @@ -78940,21 +79023,21 @@ entities: pos: -20.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1758 components: - type: Transform pos: -22.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1765 components: - type: Transform pos: -22.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1766 components: - type: Transform @@ -78962,35 +79045,35 @@ entities: pos: -20.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1767 components: - type: Transform pos: -22.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1769 components: - type: Transform pos: -36.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1770 components: - type: Transform pos: -36.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1772 components: - type: Transform pos: -36.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1774 components: - type: Transform @@ -78998,49 +79081,49 @@ entities: pos: -25.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1777 components: - type: Transform pos: -36.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1778 components: - type: Transform pos: -38.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1779 components: - type: Transform pos: -36.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1782 components: - type: Transform pos: -38.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1783 components: - type: Transform pos: -36.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1784 components: - type: Transform pos: -36.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1786 components: - type: Transform @@ -79048,14 +79131,14 @@ entities: pos: -18.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1788 components: - type: Transform pos: -38.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1790 components: - type: Transform @@ -79063,7 +79146,7 @@ entities: pos: -36.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1791 components: - type: Transform @@ -79071,7 +79154,7 @@ entities: pos: -24.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1793 components: - type: Transform @@ -79079,7 +79162,7 @@ entities: pos: -37.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1794 components: - type: Transform @@ -79087,7 +79170,7 @@ entities: pos: -25.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1796 components: - type: Transform @@ -79095,7 +79178,7 @@ entities: pos: -26.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1797 components: - type: Transform @@ -79103,7 +79186,7 @@ entities: pos: -20.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1798 components: - type: Transform @@ -79111,7 +79194,7 @@ entities: pos: -35.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1799 components: - type: Transform @@ -79119,7 +79202,7 @@ entities: pos: -18.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1800 components: - type: Transform @@ -79127,7 +79210,7 @@ entities: pos: -20.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1804 components: - type: Transform @@ -79135,14 +79218,14 @@ entities: pos: -30.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1805 components: - type: Transform pos: -30.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1811 components: - type: Transform @@ -79150,7 +79233,7 @@ entities: pos: -30.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1812 components: - type: Transform @@ -79158,7 +79241,7 @@ entities: pos: -34.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1813 components: - type: Transform @@ -79166,7 +79249,7 @@ entities: pos: -30.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1816 components: - type: Transform @@ -79174,7 +79257,7 @@ entities: pos: -30.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1819 components: - type: Transform @@ -79182,7 +79265,7 @@ entities: pos: -14.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1823 components: - type: Transform @@ -79190,14 +79273,14 @@ entities: pos: -29.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1825 components: - type: Transform pos: -38.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1826 components: - type: Transform @@ -79205,42 +79288,42 @@ entities: pos: -30.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1827 components: - type: Transform pos: -38.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1828 components: - type: Transform pos: -38.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1829 components: - type: Transform pos: -36.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1837 components: - type: Transform pos: -36.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1838 components: - type: Transform pos: -22.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1839 components: - type: Transform @@ -79248,7 +79331,7 @@ entities: pos: -24.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1841 components: - type: Transform @@ -79256,14 +79339,14 @@ entities: pos: -34.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1842 components: - type: Transform pos: -38.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1843 components: - type: Transform @@ -79271,7 +79354,7 @@ entities: pos: -30.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1844 components: - type: Transform @@ -79279,7 +79362,7 @@ entities: pos: -19.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1851 components: - type: Transform @@ -79287,7 +79370,7 @@ entities: pos: -21.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1852 components: - type: Transform @@ -79295,7 +79378,7 @@ entities: pos: -22.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1871 components: - type: Transform @@ -79303,35 +79386,35 @@ entities: pos: -27.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1875 components: - type: Transform pos: -38.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1876 components: - type: Transform pos: -38.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1877 components: - type: Transform pos: -38.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1878 components: - type: Transform pos: -38.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1879 components: - type: Transform @@ -79339,14 +79422,14 @@ entities: pos: -35.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1880 components: - type: Transform pos: -36.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1890 components: - type: Transform @@ -79354,28 +79437,28 @@ entities: pos: -36.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1894 components: - type: Transform pos: -24.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1895 components: - type: Transform pos: -38.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1896 components: - type: Transform pos: -36.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1897 components: - type: Transform @@ -79383,7 +79466,7 @@ entities: pos: -32.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1898 components: - type: Transform @@ -79391,7 +79474,7 @@ entities: pos: -35.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1899 components: - type: Transform @@ -79399,7 +79482,7 @@ entities: pos: -31.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1900 components: - type: Transform @@ -79407,7 +79490,7 @@ entities: pos: -34.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1961 components: - type: Transform @@ -79415,7 +79498,7 @@ entities: pos: -21.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1973 components: - type: Transform @@ -79423,7 +79506,7 @@ entities: pos: -21.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1978 components: - type: Transform @@ -79431,7 +79514,7 @@ entities: pos: -31.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1991 components: - type: Transform @@ -79439,28 +79522,28 @@ entities: pos: -33.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1992 components: - type: Transform pos: -38.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1995 components: - type: Transform pos: -36.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1997 components: - type: Transform pos: -38.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1998 components: - type: Transform @@ -79468,28 +79551,28 @@ entities: pos: -37.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1999 components: - type: Transform pos: -36.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2000 components: - type: Transform pos: -38.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2001 components: - type: Transform pos: -38.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2006 components: - type: Transform @@ -79497,14 +79580,14 @@ entities: pos: -27.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2010 components: - type: Transform pos: -24.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2013 components: - type: Transform @@ -79512,7 +79595,7 @@ entities: pos: -23.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2016 components: - type: Transform @@ -79520,21 +79603,21 @@ entities: pos: -36.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2020 components: - type: Transform pos: -23.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2021 components: - type: Transform pos: -23.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2023 components: - type: Transform @@ -79542,7 +79625,7 @@ entities: pos: -24.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2028 components: - type: Transform @@ -79550,7 +79633,7 @@ entities: pos: -24.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2029 components: - type: Transform @@ -79558,49 +79641,49 @@ entities: pos: -23.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2031 components: - type: Transform pos: -23.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2032 components: - type: Transform pos: -24.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2033 components: - type: Transform pos: -24.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2107 components: - type: Transform pos: -36.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2108 components: - type: Transform pos: -36.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2109 components: - type: Transform pos: -36.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2110 components: - type: Transform @@ -79608,28 +79691,28 @@ entities: pos: -39.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2111 components: - type: Transform pos: -38.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2122 components: - type: Transform pos: -36.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2123 components: - type: Transform pos: -38.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2124 components: - type: Transform @@ -79637,7 +79720,7 @@ entities: pos: -18.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2125 components: - type: Transform @@ -79645,7 +79728,7 @@ entities: pos: -20.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2126 components: - type: Transform @@ -79653,7 +79736,7 @@ entities: pos: -23.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2128 components: - type: Transform @@ -79661,7 +79744,7 @@ entities: pos: -27.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2129 components: - type: Transform @@ -79669,7 +79752,7 @@ entities: pos: -28.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2131 components: - type: Transform @@ -79677,7 +79760,7 @@ entities: pos: -33.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2133 components: - type: Transform @@ -79685,7 +79768,7 @@ entities: pos: -28.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2159 components: - type: Transform @@ -79693,7 +79776,7 @@ entities: pos: 43.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2160 components: - type: Transform @@ -79701,7 +79784,7 @@ entities: pos: -18.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2161 components: - type: Transform @@ -79709,70 +79792,70 @@ entities: pos: -22.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2162 components: - type: Transform pos: -18.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2183 components: - type: Transform pos: -22.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2194 components: - type: Transform pos: 15.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2195 components: - type: Transform pos: 15.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2196 components: - type: Transform pos: 15.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2197 components: - type: Transform pos: 15.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2198 components: - type: Transform pos: 15.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2201 components: - type: Transform pos: 16.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2202 components: - type: Transform pos: 16.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2204 components: - type: Transform @@ -79780,7 +79863,7 @@ entities: pos: 34.5,-35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2206 components: - type: Transform @@ -79788,7 +79871,7 @@ entities: pos: 33.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2209 components: - type: Transform @@ -79796,7 +79879,7 @@ entities: pos: 34.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2288 components: - type: Transform @@ -79804,21 +79887,21 @@ entities: pos: -4.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2356 components: - type: Transform pos: 32.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2357 components: - type: Transform pos: 32.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2362 components: - type: Transform @@ -79826,7 +79909,7 @@ entities: pos: 23.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2363 components: - type: Transform @@ -79834,7 +79917,7 @@ entities: pos: 23.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2364 components: - type: Transform @@ -79850,7 +79933,7 @@ entities: pos: 22.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2367 components: - type: Transform @@ -79858,7 +79941,7 @@ entities: pos: 23.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2372 components: - type: Transform @@ -79866,7 +79949,7 @@ entities: pos: 23.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2373 components: - type: Transform @@ -79874,7 +79957,7 @@ entities: pos: 25.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2460 components: - type: Transform @@ -79882,7 +79965,7 @@ entities: pos: 16.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2461 components: - type: Transform @@ -79890,7 +79973,7 @@ entities: pos: 17.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2462 components: - type: Transform @@ -79898,7 +79981,7 @@ entities: pos: 18.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2463 components: - type: Transform @@ -79906,7 +79989,7 @@ entities: pos: 19.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2464 components: - type: Transform @@ -79914,7 +79997,7 @@ entities: pos: 20.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2465 components: - type: Transform @@ -79922,7 +80005,7 @@ entities: pos: 18.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2466 components: - type: Transform @@ -79930,7 +80013,7 @@ entities: pos: 19.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2467 components: - type: Transform @@ -79938,7 +80021,7 @@ entities: pos: 20.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2468 components: - type: Transform @@ -79946,7 +80029,7 @@ entities: pos: 21.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2469 components: - type: Transform @@ -79954,7 +80037,7 @@ entities: pos: 22.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2471 components: - type: Transform @@ -79962,7 +80045,7 @@ entities: pos: 24.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2472 components: - type: Transform @@ -79970,7 +80053,7 @@ entities: pos: 25.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2474 components: - type: Transform @@ -79978,7 +80061,7 @@ entities: pos: 22.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2475 components: - type: Transform @@ -79986,7 +80069,7 @@ entities: pos: 23.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2476 components: - type: Transform @@ -79994,7 +80077,7 @@ entities: pos: 24.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2477 components: - type: Transform @@ -80002,7 +80085,7 @@ entities: pos: 25.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2478 components: - type: Transform @@ -80010,7 +80093,7 @@ entities: pos: 26.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2479 components: - type: Transform @@ -80018,7 +80101,7 @@ entities: pos: 27.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2480 components: - type: Transform @@ -80026,7 +80109,7 @@ entities: pos: 28.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2483 components: - type: Transform @@ -80034,7 +80117,7 @@ entities: pos: 31.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2484 components: - type: Transform @@ -80042,7 +80125,7 @@ entities: pos: 32.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2485 components: - type: Transform @@ -80050,7 +80133,7 @@ entities: pos: 33.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2487 components: - type: Transform @@ -80058,7 +80141,7 @@ entities: pos: 35.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2488 components: - type: Transform @@ -80066,7 +80149,7 @@ entities: pos: 36.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2489 components: - type: Transform @@ -80074,7 +80157,7 @@ entities: pos: 37.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2490 components: - type: Transform @@ -80082,7 +80165,7 @@ entities: pos: 38.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2492 components: - type: Transform @@ -80090,7 +80173,7 @@ entities: pos: 26.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2493 components: - type: Transform @@ -80098,7 +80181,7 @@ entities: pos: 27.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2494 components: - type: Transform @@ -80106,7 +80189,7 @@ entities: pos: 28.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2495 components: - type: Transform @@ -80114,7 +80197,7 @@ entities: pos: 29.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2496 components: - type: Transform @@ -80122,7 +80205,7 @@ entities: pos: 30.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2497 components: - type: Transform @@ -80130,7 +80213,7 @@ entities: pos: 31.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2500 components: - type: Transform @@ -80138,7 +80221,7 @@ entities: pos: 34.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2501 components: - type: Transform @@ -80146,7 +80229,7 @@ entities: pos: 35.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2502 components: - type: Transform @@ -80154,7 +80237,7 @@ entities: pos: 36.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2503 components: - type: Transform @@ -80162,7 +80245,7 @@ entities: pos: 37.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2504 components: - type: Transform @@ -80170,7 +80253,7 @@ entities: pos: 38.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2505 components: - type: Transform @@ -80178,7 +80261,7 @@ entities: pos: 39.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2545 components: - type: Transform @@ -80186,7 +80269,7 @@ entities: pos: 32.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2546 components: - type: Transform @@ -80194,7 +80277,7 @@ entities: pos: 30.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2547 components: - type: Transform @@ -80202,7 +80285,7 @@ entities: pos: 32.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2548 components: - type: Transform @@ -80210,7 +80293,7 @@ entities: pos: 30.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2549 components: - type: Transform @@ -80218,7 +80301,7 @@ entities: pos: 32.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2550 components: - type: Transform @@ -80226,7 +80309,7 @@ entities: pos: 30.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2554 components: - type: Transform @@ -80234,7 +80317,7 @@ entities: pos: 32.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2613 components: - type: Transform @@ -80242,7 +80325,7 @@ entities: pos: 29.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2638 components: - type: Transform @@ -80250,14 +80333,14 @@ entities: pos: 33.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2639 components: - type: Transform pos: 30.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2669 components: - type: Transform @@ -80265,7 +80348,7 @@ entities: pos: 19.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2670 components: - type: Transform @@ -80273,7 +80356,7 @@ entities: pos: 20.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2692 components: - type: Transform @@ -80281,49 +80364,49 @@ entities: pos: 18.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2695 components: - type: Transform pos: 40.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2696 components: - type: Transform pos: 40.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2697 components: - type: Transform pos: 40.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2698 components: - type: Transform pos: 39.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2699 components: - type: Transform pos: 39.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2700 components: - type: Transform pos: 39.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2701 components: - type: Transform @@ -80331,7 +80414,7 @@ entities: pos: 40.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2702 components: - type: Transform @@ -80339,7 +80422,7 @@ entities: pos: 41.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2703 components: - type: Transform @@ -80347,14 +80430,14 @@ entities: pos: 41.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2707 components: - type: Transform pos: 40.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2783 components: - type: Transform @@ -80362,7 +80445,7 @@ entities: pos: 19.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2786 components: - type: Transform @@ -80370,7 +80453,7 @@ entities: pos: 29.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2787 components: - type: Transform @@ -80378,14 +80461,14 @@ entities: pos: 19.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2788 components: - type: Transform pos: 17.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2794 components: - type: Transform @@ -80393,7 +80476,7 @@ entities: pos: 25.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2796 components: - type: Transform @@ -80401,7 +80484,7 @@ entities: pos: 24.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2797 components: - type: Transform @@ -80409,7 +80492,7 @@ entities: pos: 26.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2798 components: - type: Transform @@ -80417,7 +80500,7 @@ entities: pos: 31.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2800 components: - type: Transform @@ -80425,7 +80508,7 @@ entities: pos: 28.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2801 components: - type: Transform @@ -80433,7 +80516,7 @@ entities: pos: 27.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2803 components: - type: Transform @@ -80441,7 +80524,7 @@ entities: pos: 25.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2804 components: - type: Transform @@ -80449,7 +80532,7 @@ entities: pos: 33.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2805 components: - type: Transform @@ -80457,14 +80540,14 @@ entities: pos: 19.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2808 components: - type: Transform pos: -22.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2810 components: - type: Transform @@ -80472,7 +80555,7 @@ entities: pos: 21.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2811 components: - type: Transform @@ -80480,7 +80563,7 @@ entities: pos: 20.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2814 components: - type: Transform @@ -80488,7 +80571,7 @@ entities: pos: 21.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2815 components: - type: Transform @@ -80496,7 +80579,7 @@ entities: pos: 26.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2816 components: - type: Transform @@ -80504,14 +80587,14 @@ entities: pos: 19.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2820 components: - type: Transform pos: 17.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2842 components: - type: Transform @@ -80519,7 +80602,7 @@ entities: pos: 28.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2843 components: - type: Transform @@ -80527,14 +80610,14 @@ entities: pos: 30.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2844 components: - type: Transform pos: 17.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2849 components: - type: Transform @@ -80542,14 +80625,14 @@ entities: pos: 16.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2860 components: - type: Transform pos: -22.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2862 components: - type: Transform @@ -80557,7 +80640,7 @@ entities: pos: 42.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2863 components: - type: Transform @@ -80565,7 +80648,7 @@ entities: pos: 43.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2864 components: - type: Transform @@ -80573,7 +80656,7 @@ entities: pos: 44.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2867 components: - type: Transform @@ -80581,7 +80664,7 @@ entities: pos: 42.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2868 components: - type: Transform @@ -80589,14 +80672,14 @@ entities: pos: 43.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2885 components: - type: Transform pos: 45.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2899 components: - type: Transform @@ -80604,14 +80687,14 @@ entities: pos: 32.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2901 components: - type: Transform pos: 44.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2940 components: - type: Transform @@ -80619,7 +80702,7 @@ entities: pos: -23.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2980 components: - type: Transform @@ -80643,7 +80726,7 @@ entities: pos: 46.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2987 components: - type: Transform @@ -80651,7 +80734,7 @@ entities: pos: 45.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2988 components: - type: Transform @@ -80659,14 +80742,14 @@ entities: pos: 45.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2990 components: - type: Transform pos: 45.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2991 components: - type: Transform @@ -80674,7 +80757,7 @@ entities: pos: 45.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2992 components: - type: Transform @@ -80682,7 +80765,7 @@ entities: pos: 45.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2993 components: - type: Transform @@ -80690,7 +80773,7 @@ entities: pos: 45.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2994 components: - type: Transform @@ -80698,7 +80781,7 @@ entities: pos: 45.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2995 components: - type: Transform @@ -80706,7 +80789,7 @@ entities: pos: 45.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2997 components: - type: Transform @@ -80738,7 +80821,7 @@ entities: pos: 22.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3011 components: - type: Transform @@ -80786,7 +80869,7 @@ entities: pos: -21.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3072 components: - type: Transform @@ -80794,7 +80877,7 @@ entities: pos: -20.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3113 components: - type: Transform @@ -80802,7 +80885,7 @@ entities: pos: 46.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3148 components: - type: Transform @@ -80810,7 +80893,7 @@ entities: pos: 45.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3168 components: - type: Transform @@ -80818,7 +80901,7 @@ entities: pos: -28.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3186 components: - type: Transform @@ -80826,7 +80909,7 @@ entities: pos: -29.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3190 components: - type: Transform @@ -80834,7 +80917,7 @@ entities: pos: 43.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3191 components: - type: Transform @@ -80842,14 +80925,14 @@ entities: pos: 44.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3193 components: - type: Transform pos: 45.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3197 components: - type: Transform @@ -80857,7 +80940,7 @@ entities: pos: -40.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3216 components: - type: Transform @@ -80865,7 +80948,7 @@ entities: pos: 45.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3219 components: - type: Transform @@ -80873,140 +80956,140 @@ entities: pos: 42.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3561 components: - type: Transform pos: 45.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3562 components: - type: Transform pos: 45.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3563 components: - type: Transform pos: 45.5,-35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3564 components: - type: Transform pos: 45.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3565 components: - type: Transform pos: 45.5,-36.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3566 components: - type: Transform pos: 45.5,-38.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3568 components: - type: Transform pos: 44.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3569 components: - type: Transform pos: 44.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3570 components: - type: Transform pos: 44.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3571 components: - type: Transform pos: 44.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3572 components: - type: Transform pos: 44.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3574 components: - type: Transform pos: 44.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3575 components: - type: Transform pos: 44.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3576 components: - type: Transform pos: 44.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3577 components: - type: Transform pos: 44.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3578 components: - type: Transform pos: 44.5,-35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3579 components: - type: Transform pos: 44.5,-36.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3580 components: - type: Transform pos: 44.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3581 components: - type: Transform pos: 44.5,-38.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3618 components: - type: Transform @@ -81014,7 +81097,7 @@ entities: pos: -6.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3619 components: - type: Transform @@ -81022,7 +81105,7 @@ entities: pos: -3.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3620 components: - type: Transform @@ -81030,7 +81113,7 @@ entities: pos: -4.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3711 components: - type: Transform @@ -81038,105 +81121,105 @@ entities: pos: 44.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3914 components: - type: Transform pos: 1.5,-36.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3916 components: - type: Transform pos: 1.5,-38.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3917 components: - type: Transform pos: 1.5,-39.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3919 components: - type: Transform pos: 1.5,-41.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3921 components: - type: Transform pos: 1.5,-43.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3922 components: - type: Transform pos: 1.5,-44.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3923 components: - type: Transform pos: 1.5,-45.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3925 components: - type: Transform pos: -0.5,-44.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3926 components: - type: Transform pos: -0.5,-43.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3927 components: - type: Transform pos: -0.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3928 components: - type: Transform pos: -0.5,-41.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3931 components: - type: Transform pos: -0.5,-38.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3932 components: - type: Transform pos: -0.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3933 components: - type: Transform pos: -0.5,-36.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3934 components: - type: Transform @@ -81144,7 +81227,7 @@ entities: pos: 0.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3935 components: - type: Transform @@ -81152,7 +81235,7 @@ entities: pos: -0.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3936 components: - type: Transform @@ -81160,7 +81243,7 @@ entities: pos: -1.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3937 components: - type: Transform @@ -81168,7 +81251,7 @@ entities: pos: -2.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3938 components: - type: Transform @@ -81176,7 +81259,7 @@ entities: pos: -3.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3939 components: - type: Transform @@ -81184,7 +81267,7 @@ entities: pos: -2.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3940 components: - type: Transform @@ -81192,7 +81275,7 @@ entities: pos: -3.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3941 components: - type: Transform @@ -81200,7 +81283,7 @@ entities: pos: -1.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3942 components: - type: Transform @@ -81208,7 +81291,7 @@ entities: pos: -4.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3943 components: - type: Transform @@ -81216,7 +81299,7 @@ entities: pos: -4.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3944 components: - type: Transform @@ -81224,7 +81307,7 @@ entities: pos: -5.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3945 components: - type: Transform @@ -81232,7 +81315,7 @@ entities: pos: -5.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3946 components: - type: Transform @@ -81240,7 +81323,7 @@ entities: pos: -6.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3947 components: - type: Transform @@ -81248,7 +81331,7 @@ entities: pos: -6.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3948 components: - type: Transform @@ -81256,7 +81339,7 @@ entities: pos: -7.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3951 components: - type: Transform @@ -81264,7 +81347,7 @@ entities: pos: -8.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3952 components: - type: Transform @@ -81272,7 +81355,7 @@ entities: pos: -9.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3953 components: - type: Transform @@ -81280,7 +81363,7 @@ entities: pos: -9.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3954 components: - type: Transform @@ -81288,7 +81371,7 @@ entities: pos: -10.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3955 components: - type: Transform @@ -81296,7 +81379,7 @@ entities: pos: -10.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3956 components: - type: Transform @@ -81304,7 +81387,7 @@ entities: pos: -11.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3957 components: - type: Transform @@ -81312,7 +81395,7 @@ entities: pos: -11.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3958 components: - type: Transform @@ -81320,7 +81403,7 @@ entities: pos: -12.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3959 components: - type: Transform @@ -81328,28 +81411,28 @@ entities: pos: -12.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3983 components: - type: Transform pos: -0.5,-46.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3997 components: - type: Transform pos: -42.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4001 components: - type: Transform pos: 48.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4006 components: - type: Transform @@ -81357,7 +81440,7 @@ entities: pos: 14.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4008 components: - type: Transform @@ -81365,7 +81448,7 @@ entities: pos: -5.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4014 components: - type: Transform @@ -81373,7 +81456,7 @@ entities: pos: -43.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4023 components: - type: Transform @@ -81381,7 +81464,7 @@ entities: pos: -34.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4024 components: - type: Transform @@ -81389,7 +81472,7 @@ entities: pos: -35.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4025 components: - type: Transform @@ -81397,7 +81480,7 @@ entities: pos: -31.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4026 components: - type: Transform @@ -81405,7 +81488,7 @@ entities: pos: -32.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4027 components: - type: Transform @@ -81413,7 +81496,7 @@ entities: pos: -33.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4028 components: - type: Transform @@ -81421,7 +81504,7 @@ entities: pos: -34.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4029 components: - type: Transform @@ -81429,7 +81512,7 @@ entities: pos: -35.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4030 components: - type: Transform @@ -81437,7 +81520,7 @@ entities: pos: -36.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4032 components: - type: Transform @@ -81445,7 +81528,7 @@ entities: pos: -37.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4077 components: - type: Transform @@ -81453,7 +81536,7 @@ entities: pos: -42.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4107 components: - type: Transform @@ -81461,14 +81544,14 @@ entities: pos: 35.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4112 components: - type: Transform pos: 33.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4122 components: - type: Transform @@ -81476,7 +81559,7 @@ entities: pos: 30.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4126 components: - type: Transform @@ -81484,7 +81567,7 @@ entities: pos: 31.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4130 components: - type: Transform @@ -81492,7 +81575,7 @@ entities: pos: 34.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4132 components: - type: Transform @@ -81500,7 +81583,7 @@ entities: pos: 34.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4134 components: - type: Transform @@ -81508,7 +81591,7 @@ entities: pos: 34.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4137 components: - type: Transform @@ -81522,14 +81605,14 @@ entities: pos: 34.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4151 components: - type: Transform pos: 33.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4155 components: - type: Transform @@ -81537,7 +81620,7 @@ entities: pos: 43.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4183 components: - type: Transform @@ -81545,7 +81628,7 @@ entities: pos: 33.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4184 components: - type: Transform @@ -81553,7 +81636,7 @@ entities: pos: 31.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4185 components: - type: Transform @@ -81561,7 +81644,7 @@ entities: pos: 30.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4186 components: - type: Transform @@ -81569,7 +81652,7 @@ entities: pos: 33.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4206 components: - type: Transform @@ -81577,7 +81660,7 @@ entities: pos: -44.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4207 components: - type: Transform @@ -81585,7 +81668,7 @@ entities: pos: -46.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4208 components: - type: Transform @@ -81593,7 +81676,7 @@ entities: pos: -41.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4325 components: - type: Transform @@ -81601,7 +81684,7 @@ entities: pos: 36.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4335 components: - type: Transform @@ -81609,7 +81692,7 @@ entities: pos: 34.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4356 components: - type: Transform @@ -81617,7 +81700,7 @@ entities: pos: 35.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4484 components: - type: Transform @@ -81625,7 +81708,7 @@ entities: pos: 40.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4485 components: - type: Transform @@ -81633,14 +81716,14 @@ entities: pos: 37.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4486 components: - type: Transform pos: 44.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4488 components: - type: Transform @@ -81648,7 +81731,7 @@ entities: pos: 46.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4489 components: - type: Transform @@ -81656,7 +81739,7 @@ entities: pos: 47.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4490 components: - type: Transform @@ -81664,7 +81747,7 @@ entities: pos: 36.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4497 components: - type: Transform @@ -81672,7 +81755,7 @@ entities: pos: 48.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4507 components: - type: Transform @@ -81680,21 +81763,21 @@ entities: pos: 46.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4550 components: - type: Transform pos: -36.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4629 components: - type: Transform pos: -0.5,-60.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4645 components: - type: Transform @@ -81702,42 +81785,42 @@ entities: pos: 40.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4648 components: - type: Transform pos: -0.5,-59.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4649 components: - type: Transform pos: -0.5,-58.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4650 components: - type: Transform pos: -0.5,-57.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4657 components: - type: Transform pos: 1.5,-56.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4658 components: - type: Transform pos: 1.5,-57.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4666 components: - type: Transform @@ -81745,21 +81828,21 @@ entities: pos: 38.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4725 components: - type: Transform pos: 1.5,-54.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4726 components: - type: Transform pos: 1.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4836 components: - type: Transform @@ -81767,7 +81850,7 @@ entities: pos: 1.5,-47.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4837 components: - type: Transform @@ -81775,7 +81858,7 @@ entities: pos: -0.5,-48.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4838 components: - type: Transform @@ -81783,7 +81866,7 @@ entities: pos: -0.5,-49.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4839 components: - type: Transform @@ -81791,7 +81874,7 @@ entities: pos: 1.5,-49.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4840 components: - type: Transform @@ -81799,7 +81882,7 @@ entities: pos: 1.5,-50.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4841 components: - type: Transform @@ -81807,7 +81890,7 @@ entities: pos: -0.5,-50.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4842 components: - type: Transform @@ -81815,7 +81898,7 @@ entities: pos: -0.5,-51.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4843 components: - type: Transform @@ -81823,7 +81906,7 @@ entities: pos: 1.5,-51.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4844 components: - type: Transform @@ -81831,7 +81914,7 @@ entities: pos: -0.5,-52.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4845 components: - type: Transform @@ -81839,14 +81922,14 @@ entities: pos: 1.5,-52.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4908 components: - type: Transform pos: 1.5,-60.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4909 components: - type: Transform @@ -81854,7 +81937,7 @@ entities: pos: -2.5,-65.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4916 components: - type: Transform @@ -81862,7 +81945,7 @@ entities: pos: 2.5,-70.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4917 components: - type: Transform @@ -81870,7 +81953,7 @@ entities: pos: 3.5,-64.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4918 components: - type: Transform @@ -81878,7 +81961,7 @@ entities: pos: 2.5,-63.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4919 components: - type: Transform @@ -81886,7 +81969,7 @@ entities: pos: 3.5,-69.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4920 components: - type: Transform @@ -81894,7 +81977,7 @@ entities: pos: 3.5,-68.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4921 components: - type: Transform @@ -81902,7 +81985,7 @@ entities: pos: -2.5,-67.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4927 components: - type: Transform @@ -81910,14 +81993,14 @@ entities: pos: -3.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4928 components: - type: Transform pos: -0.5,-62.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4930 components: - type: Transform @@ -81925,7 +82008,7 @@ entities: pos: -4.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4931 components: - type: Transform @@ -81933,7 +82016,7 @@ entities: pos: 1.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4932 components: - type: Transform @@ -81941,7 +82024,7 @@ entities: pos: -5.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4933 components: - type: Transform @@ -81949,14 +82032,14 @@ entities: pos: -2.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4934 components: - type: Transform pos: 1.5,-62.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4967 components: - type: Transform @@ -81964,7 +82047,7 @@ entities: pos: -6.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4968 components: - type: Transform @@ -81972,7 +82055,7 @@ entities: pos: -7.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4969 components: - type: Transform @@ -81980,7 +82063,7 @@ entities: pos: -7.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4970 components: - type: Transform @@ -81988,7 +82071,7 @@ entities: pos: -8.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4972 components: - type: Transform @@ -81996,7 +82079,7 @@ entities: pos: -2.5,-68.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4974 components: - type: Transform @@ -82004,7 +82087,7 @@ entities: pos: 2.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4975 components: - type: Transform @@ -82012,14 +82095,14 @@ entities: pos: -8.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4981 components: - type: Transform pos: 1.5,-58.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4982 components: - type: Transform @@ -82027,7 +82110,7 @@ entities: pos: -2.5,-66.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4983 components: - type: Transform @@ -82035,7 +82118,7 @@ entities: pos: -2.5,-69.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4984 components: - type: Transform @@ -82043,14 +82126,14 @@ entities: pos: -1.5,-70.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4986 components: - type: Transform pos: 1.5,-59.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4988 components: - type: Transform @@ -82058,7 +82141,7 @@ entities: pos: -1.5,-63.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4989 components: - type: Transform @@ -82066,14 +82149,14 @@ entities: pos: -2.5,-64.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4991 components: - type: Transform pos: 1.5,-71.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4994 components: - type: Transform @@ -82081,7 +82164,7 @@ entities: pos: 3.5,-67.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4995 components: - type: Transform @@ -82089,14 +82172,14 @@ entities: pos: 3.5,-66.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4998 components: - type: Transform pos: -0.5,-71.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5000 components: - type: Transform @@ -82104,7 +82187,7 @@ entities: pos: 2.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5012 components: - type: Transform @@ -82112,7 +82195,7 @@ entities: pos: 3.5,-65.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5055 components: - type: Transform @@ -82120,7 +82203,7 @@ entities: pos: 37.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5098 components: - type: Transform @@ -82128,21 +82211,21 @@ entities: pos: 6.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5115 components: - type: Transform pos: 1.5,-73.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5117 components: - type: Transform pos: 1.5,-74.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5118 components: - type: Transform @@ -82150,7 +82233,7 @@ entities: pos: 4.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5142 components: - type: Transform @@ -82158,7 +82241,7 @@ entities: pos: 3.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5147 components: - type: Transform @@ -82166,7 +82249,7 @@ entities: pos: -9.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5148 components: - type: Transform @@ -82174,14 +82257,14 @@ entities: pos: 4.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5215 components: - type: Transform pos: -0.5,-73.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5246 components: - type: Transform @@ -82189,7 +82272,7 @@ entities: pos: -21.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5299 components: - type: Transform @@ -82197,35 +82280,35 @@ entities: pos: -36.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5392 components: - type: Transform pos: 13.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5393 components: - type: Transform pos: 13.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5394 components: - type: Transform pos: 13.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5396 components: - type: Transform pos: 9.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5425 components: - type: Transform @@ -82233,7 +82316,7 @@ entities: pos: -20.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5426 components: - type: Transform @@ -82241,7 +82324,7 @@ entities: pos: -14.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5427 components: - type: Transform @@ -82249,7 +82332,7 @@ entities: pos: -15.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5441 components: - type: Transform @@ -82257,7 +82340,7 @@ entities: pos: 41.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5443 components: - type: Transform @@ -82265,7 +82348,7 @@ entities: pos: 42.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5444 components: - type: Transform @@ -82273,7 +82356,7 @@ entities: pos: 38.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5447 components: - type: Transform @@ -82281,7 +82364,7 @@ entities: pos: 31.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5448 components: - type: Transform @@ -82289,7 +82372,7 @@ entities: pos: 32.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5449 components: - type: Transform @@ -82297,14 +82380,14 @@ entities: pos: 31.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5450 components: - type: Transform pos: 44.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5451 components: - type: Transform @@ -82312,7 +82395,7 @@ entities: pos: 30.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5452 components: - type: Transform @@ -82320,7 +82403,7 @@ entities: pos: 30.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5463 components: - type: Transform @@ -82328,7 +82411,7 @@ entities: pos: 38.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5464 components: - type: Transform @@ -82336,7 +82419,7 @@ entities: pos: 44.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5465 components: - type: Transform @@ -82344,7 +82427,7 @@ entities: pos: -22.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5467 components: - type: Transform @@ -82352,7 +82435,7 @@ entities: pos: 44.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5468 components: - type: Transform @@ -82360,21 +82443,21 @@ entities: pos: 41.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5469 components: - type: Transform pos: -38.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5470 components: - type: Transform pos: -38.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5471 components: - type: Transform @@ -82382,7 +82465,7 @@ entities: pos: -17.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5475 components: - type: Transform @@ -82390,7 +82473,7 @@ entities: pos: -16.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5487 components: - type: Transform @@ -82398,7 +82481,7 @@ entities: pos: 42.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5511 components: - type: Transform @@ -82406,7 +82489,7 @@ entities: pos: -13.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5517 components: - type: Transform @@ -82414,7 +82497,7 @@ entities: pos: 43.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5549 components: - type: Transform @@ -82430,7 +82513,7 @@ entities: pos: 45.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5558 components: - type: Transform @@ -82438,14 +82521,14 @@ entities: pos: 44.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5563 components: - type: Transform pos: -16.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5565 components: - type: Transform @@ -82453,7 +82536,7 @@ entities: pos: -21.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5569 components: - type: Transform @@ -82461,7 +82544,7 @@ entities: pos: -44.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5570 components: - type: Transform @@ -82469,7 +82552,7 @@ entities: pos: -42.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5571 components: - type: Transform @@ -82477,7 +82560,7 @@ entities: pos: -42.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5572 components: - type: Transform @@ -82485,7 +82568,7 @@ entities: pos: -44.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5573 components: - type: Transform @@ -82493,7 +82576,7 @@ entities: pos: -44.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5574 components: - type: Transform @@ -82501,7 +82584,7 @@ entities: pos: -44.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5575 components: - type: Transform @@ -82509,7 +82592,7 @@ entities: pos: -42.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5576 components: - type: Transform @@ -82539,7 +82622,7 @@ entities: pos: 41.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5596 components: - type: Transform @@ -82547,7 +82630,7 @@ entities: pos: 45.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5648 components: - type: Transform @@ -82570,7 +82653,7 @@ entities: pos: -22.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5682 components: - type: Transform @@ -82578,7 +82661,7 @@ entities: pos: -31.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5685 components: - type: Transform @@ -82586,7 +82669,7 @@ entities: pos: 33.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5689 components: - type: Transform @@ -82594,7 +82677,7 @@ entities: pos: -27.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5694 components: - type: Transform @@ -82602,7 +82685,7 @@ entities: pos: 8.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5697 components: - type: Transform @@ -82610,7 +82693,7 @@ entities: pos: 6.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5698 components: - type: Transform @@ -82618,7 +82701,7 @@ entities: pos: 7.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5704 components: - type: Transform @@ -82626,7 +82709,7 @@ entities: pos: -7.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5705 components: - type: Transform @@ -82634,7 +82717,7 @@ entities: pos: -6.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5707 components: - type: Transform @@ -82642,7 +82725,7 @@ entities: pos: -6.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5708 components: - type: Transform @@ -82650,7 +82733,7 @@ entities: pos: -5.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5713 components: - type: Transform @@ -82658,7 +82741,7 @@ entities: pos: -3.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5714 components: - type: Transform @@ -82666,7 +82749,7 @@ entities: pos: -2.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5715 components: - type: Transform @@ -82674,7 +82757,7 @@ entities: pos: -1.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5716 components: - type: Transform @@ -82682,7 +82765,7 @@ entities: pos: 1.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5717 components: - type: Transform @@ -82690,7 +82773,7 @@ entities: pos: 3.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5718 components: - type: Transform @@ -82698,7 +82781,7 @@ entities: pos: 4.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5719 components: - type: Transform @@ -82706,7 +82789,7 @@ entities: pos: 2.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5720 components: - type: Transform @@ -82714,7 +82797,7 @@ entities: pos: -0.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5721 components: - type: Transform @@ -82722,7 +82805,7 @@ entities: pos: -4.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5722 components: - type: Transform @@ -82730,7 +82813,7 @@ entities: pos: -3.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5723 components: - type: Transform @@ -82738,7 +82821,7 @@ entities: pos: -2.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5724 components: - type: Transform @@ -82746,7 +82829,7 @@ entities: pos: -1.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5726 components: - type: Transform @@ -82754,7 +82837,7 @@ entities: pos: 5.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5727 components: - type: Transform @@ -82762,7 +82845,7 @@ entities: pos: 4.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5728 components: - type: Transform @@ -82770,7 +82853,7 @@ entities: pos: 3.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5729 components: - type: Transform @@ -82778,7 +82861,7 @@ entities: pos: 2.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5731 components: - type: Transform @@ -82786,7 +82869,7 @@ entities: pos: 0.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5732 components: - type: Transform @@ -82794,28 +82877,28 @@ entities: pos: 0.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5734 components: - type: Transform pos: -0.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5735 components: - type: Transform pos: 1.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5737 components: - type: Transform pos: 1.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5743 components: - type: Transform @@ -82823,7 +82906,7 @@ entities: pos: -30.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5753 components: - type: Transform @@ -82831,14 +82914,14 @@ entities: pos: -40.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5754 components: - type: Transform pos: -25.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5756 components: - type: Transform @@ -82846,7 +82929,7 @@ entities: pos: -20.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5762 components: - type: Transform @@ -82854,7 +82937,7 @@ entities: pos: 15.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5763 components: - type: Transform @@ -82862,7 +82945,7 @@ entities: pos: 15.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5764 components: - type: Transform @@ -82870,7 +82953,7 @@ entities: pos: 17.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5818 components: - type: Transform @@ -82878,7 +82961,7 @@ entities: pos: 17.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5832 components: - type: Transform @@ -82886,28 +82969,28 @@ entities: pos: 34.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5834 components: - type: Transform pos: -38.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5842 components: - type: Transform pos: -21.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5846 components: - type: Transform pos: 1.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5852 components: - type: Transform @@ -82915,7 +82998,7 @@ entities: pos: 43.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5875 components: - type: Transform @@ -82928,42 +83011,42 @@ entities: pos: 15.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5893 components: - type: Transform pos: -28.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5894 components: - type: Transform pos: -29.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5895 components: - type: Transform pos: -29.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5896 components: - type: Transform pos: -28.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5904 components: - type: Transform pos: 48.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5913 components: - type: Transform @@ -82971,7 +83054,7 @@ entities: pos: 46.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5916 components: - type: Transform @@ -82979,7 +83062,7 @@ entities: pos: 6.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5920 components: - type: Transform @@ -82987,49 +83070,49 @@ entities: pos: 19.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5931 components: - type: Transform pos: -38.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5939 components: - type: Transform pos: -36.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5941 components: - type: Transform pos: -52.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5944 components: - type: Transform pos: -52.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5945 components: - type: Transform pos: -36.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5946 components: - type: Transform pos: -49.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5947 components: - type: Transform @@ -83037,21 +83120,21 @@ entities: pos: -21.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5948 components: - type: Transform pos: -52.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5949 components: - type: Transform pos: -36.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5957 components: - type: Transform @@ -83059,7 +83142,7 @@ entities: pos: -40.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5958 components: - type: Transform @@ -83067,7 +83150,7 @@ entities: pos: -50.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5959 components: - type: Transform @@ -83075,7 +83158,7 @@ entities: pos: -43.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5961 components: - type: Transform @@ -83083,7 +83166,7 @@ entities: pos: -23.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5965 components: - type: Transform @@ -83091,7 +83174,7 @@ entities: pos: -38.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5966 components: - type: Transform @@ -83099,14 +83182,14 @@ entities: pos: -43.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5968 components: - type: Transform pos: 48.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5969 components: - type: Transform @@ -83114,7 +83197,7 @@ entities: pos: -42.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5970 components: - type: Transform @@ -83122,7 +83205,7 @@ entities: pos: -49.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5973 components: - type: Transform @@ -83130,7 +83213,7 @@ entities: pos: -38.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5974 components: - type: Transform @@ -83138,7 +83221,7 @@ entities: pos: -24.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5975 components: - type: Transform @@ -83146,14 +83229,14 @@ entities: pos: -55.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5976 components: - type: Transform pos: -36.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5977 components: - type: Transform @@ -83161,7 +83244,7 @@ entities: pos: -53.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5978 components: - type: Transform @@ -83169,7 +83252,7 @@ entities: pos: -52.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5979 components: - type: Transform @@ -83177,7 +83260,7 @@ entities: pos: -48.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5981 components: - type: Transform @@ -83185,35 +83268,35 @@ entities: pos: -45.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5982 components: - type: Transform pos: -42.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5984 components: - type: Transform pos: -47.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5985 components: - type: Transform pos: -47.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5986 components: - type: Transform pos: -49.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5989 components: - type: Transform @@ -83221,7 +83304,7 @@ entities: pos: -37.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5992 components: - type: Transform @@ -83229,14 +83312,14 @@ entities: pos: -46.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5993 components: - type: Transform pos: -55.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5994 components: - type: Transform @@ -83244,7 +83327,7 @@ entities: pos: -39.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5995 components: - type: Transform @@ -83252,7 +83335,7 @@ entities: pos: -40.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5996 components: - type: Transform @@ -83260,7 +83343,7 @@ entities: pos: -41.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5997 components: - type: Transform @@ -83268,7 +83351,7 @@ entities: pos: -45.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5998 components: - type: Transform @@ -83276,7 +83359,7 @@ entities: pos: -39.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5999 components: - type: Transform @@ -83284,7 +83367,7 @@ entities: pos: -46.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6000 components: - type: Transform @@ -83292,7 +83375,7 @@ entities: pos: -37.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6001 components: - type: Transform @@ -83300,7 +83383,7 @@ entities: pos: -55.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6003 components: - type: Transform @@ -83308,7 +83391,7 @@ entities: pos: -40.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6004 components: - type: Transform @@ -83316,7 +83399,7 @@ entities: pos: -44.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6006 components: - type: Transform @@ -83324,7 +83407,7 @@ entities: pos: -54.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6007 components: - type: Transform @@ -83332,7 +83415,7 @@ entities: pos: -51.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6009 components: - type: Transform @@ -83340,7 +83423,7 @@ entities: pos: 10.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6010 components: - type: Transform @@ -83348,7 +83431,7 @@ entities: pos: -55.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6011 components: - type: Transform @@ -83356,14 +83439,14 @@ entities: pos: -35.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6016 components: - type: Transform pos: -38.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6017 components: - type: Transform @@ -83371,7 +83454,7 @@ entities: pos: -51.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6019 components: - type: Transform @@ -83379,7 +83462,7 @@ entities: pos: -53.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6021 components: - type: Transform @@ -83387,7 +83470,7 @@ entities: pos: -46.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6022 components: - type: Transform @@ -83395,7 +83478,7 @@ entities: pos: -47.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6023 components: - type: Transform @@ -83403,7 +83486,7 @@ entities: pos: -45.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6025 components: - type: Transform @@ -83411,7 +83494,7 @@ entities: pos: -44.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6027 components: - type: Transform @@ -83419,14 +83502,14 @@ entities: pos: -47.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6029 components: - type: Transform pos: -47.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6030 components: - type: Transform @@ -83434,7 +83517,7 @@ entities: pos: -48.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6031 components: - type: Transform @@ -83442,7 +83525,7 @@ entities: pos: -50.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6033 components: - type: Transform @@ -83450,7 +83533,7 @@ entities: pos: -40.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6034 components: - type: Transform @@ -83458,7 +83541,7 @@ entities: pos: -24.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6035 components: - type: Transform @@ -83466,7 +83549,7 @@ entities: pos: -39.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6039 components: - type: Transform @@ -83474,7 +83557,7 @@ entities: pos: -22.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6040 components: - type: Transform @@ -83482,7 +83565,7 @@ entities: pos: -44.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6044 components: - type: Transform @@ -83490,7 +83573,7 @@ entities: pos: -21.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6045 components: - type: Transform @@ -83498,14 +83581,14 @@ entities: pos: -55.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6048 components: - type: Transform pos: -47.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6057 components: - type: Transform @@ -83513,7 +83596,7 @@ entities: pos: -45.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6059 components: - type: Transform @@ -83521,14 +83604,14 @@ entities: pos: -46.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6060 components: - type: Transform pos: -47.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6063 components: - type: Transform @@ -83536,7 +83619,7 @@ entities: pos: -45.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6064 components: - type: Transform @@ -83544,7 +83627,7 @@ entities: pos: -42.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6095 components: - type: Transform @@ -83552,7 +83635,7 @@ entities: pos: -43.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6096 components: - type: Transform @@ -83560,7 +83643,7 @@ entities: pos: -55.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6106 components: - type: Transform @@ -83568,7 +83651,7 @@ entities: pos: -44.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6107 components: - type: Transform @@ -83576,7 +83659,7 @@ entities: pos: -44.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6108 components: - type: Transform @@ -83584,14 +83667,14 @@ entities: pos: -44.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6110 components: - type: Transform pos: -49.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6111 components: - type: Transform @@ -83599,14 +83682,14 @@ entities: pos: -47.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6113 components: - type: Transform pos: -49.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6114 components: - type: Transform @@ -83614,7 +83697,7 @@ entities: pos: -46.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6115 components: - type: Transform @@ -83622,7 +83705,7 @@ entities: pos: -44.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6116 components: - type: Transform @@ -83630,7 +83713,7 @@ entities: pos: -44.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6122 components: - type: Transform @@ -83638,7 +83721,7 @@ entities: pos: -48.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6124 components: - type: Transform @@ -83646,7 +83729,7 @@ entities: pos: 11.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6134 components: - type: Transform @@ -83654,7 +83737,7 @@ entities: pos: -48.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6178 components: - type: Transform @@ -83662,7 +83745,7 @@ entities: pos: -19.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6180 components: - type: Transform @@ -83670,7 +83753,7 @@ entities: pos: -23.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6197 components: - type: Transform @@ -83678,7 +83761,7 @@ entities: pos: 7.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6198 components: - type: Transform @@ -83686,7 +83769,7 @@ entities: pos: 3.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6199 components: - type: Transform @@ -83694,7 +83777,7 @@ entities: pos: 5.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6208 components: - type: Transform @@ -83702,28 +83785,28 @@ entities: pos: -31.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6212 components: - type: Transform pos: -0.5,-54.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6217 components: - type: Transform pos: -0.5,-56.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6218 components: - type: Transform pos: -0.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6267 components: - type: Transform @@ -83731,7 +83814,7 @@ entities: pos: -55.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6269 components: - type: Transform @@ -83739,7 +83822,7 @@ entities: pos: -38.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6279 components: - type: Transform @@ -83747,7 +83830,7 @@ entities: pos: 12.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6281 components: - type: Transform @@ -83755,7 +83838,7 @@ entities: pos: 17.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6283 components: - type: Transform @@ -83763,14 +83846,14 @@ entities: pos: 17.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6284 components: - type: Transform pos: 15.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6285 components: - type: Transform @@ -83778,7 +83861,7 @@ entities: pos: 15.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6287 components: - type: Transform @@ -83786,7 +83869,7 @@ entities: pos: 15.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6289 components: - type: Transform @@ -83794,7 +83877,7 @@ entities: pos: 16.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6291 components: - type: Transform @@ -83802,7 +83885,7 @@ entities: pos: 14.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6292 components: - type: Transform @@ -83810,7 +83893,7 @@ entities: pos: 13.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6293 components: - type: Transform @@ -83818,7 +83901,7 @@ entities: pos: 12.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6294 components: - type: Transform @@ -83826,7 +83909,7 @@ entities: pos: 16.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6295 components: - type: Transform @@ -83834,7 +83917,7 @@ entities: pos: 15.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6296 components: - type: Transform @@ -83842,7 +83925,7 @@ entities: pos: 14.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6297 components: - type: Transform @@ -83850,7 +83933,7 @@ entities: pos: 13.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6298 components: - type: Transform @@ -83858,7 +83941,7 @@ entities: pos: 15.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6358 components: - type: Transform @@ -83866,7 +83949,7 @@ entities: pos: -35.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6371 components: - type: Transform @@ -83874,7 +83957,7 @@ entities: pos: 17.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6379 components: - type: Transform @@ -83882,7 +83965,7 @@ entities: pos: -1.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6391 components: - type: Transform @@ -83890,7 +83973,7 @@ entities: pos: 17.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6399 components: - type: Transform @@ -83898,7 +83981,7 @@ entities: pos: 17.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6410 components: - type: Transform @@ -83906,7 +83989,7 @@ entities: pos: -2.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6457 components: - type: Transform @@ -83914,7 +83997,7 @@ entities: pos: -0.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6542 components: - type: Transform @@ -83922,7 +84005,7 @@ entities: pos: -27.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6596 components: - type: Transform @@ -83938,7 +84021,7 @@ entities: pos: 7.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6651 components: - type: Transform @@ -83946,7 +84029,7 @@ entities: pos: -31.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6706 components: - type: Transform @@ -83954,7 +84037,7 @@ entities: pos: -27.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6710 components: - type: Transform @@ -83962,7 +84045,7 @@ entities: pos: -31.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6759 components: - type: Transform @@ -83970,7 +84053,7 @@ entities: pos: -45.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6760 components: - type: Transform @@ -83978,7 +84061,7 @@ entities: pos: -19.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6778 components: - type: Transform @@ -83994,21 +84077,21 @@ entities: pos: 2.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6798 components: - type: Transform pos: -31.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6799 components: - type: Transform pos: -38.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6800 components: - type: Transform @@ -84016,7 +84099,7 @@ entities: pos: -32.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6801 components: - type: Transform @@ -84024,7 +84107,7 @@ entities: pos: -31.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6802 components: - type: Transform @@ -84032,7 +84115,7 @@ entities: pos: -29.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6809 components: - type: Transform @@ -84040,7 +84123,7 @@ entities: pos: 17.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6833 components: - type: Transform @@ -84048,7 +84131,7 @@ entities: pos: 45.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6837 components: - type: Transform @@ -84056,7 +84139,7 @@ entities: pos: 41.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6838 components: - type: Transform @@ -84064,7 +84147,7 @@ entities: pos: 42.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6839 components: - type: Transform @@ -84072,7 +84155,7 @@ entities: pos: 44.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6840 components: - type: Transform @@ -84080,7 +84163,7 @@ entities: pos: 45.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6884 components: - type: Transform @@ -84088,7 +84171,7 @@ entities: pos: -34.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6887 components: - type: Transform @@ -84096,7 +84179,7 @@ entities: pos: -27.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6982 components: - type: Transform @@ -84104,7 +84187,7 @@ entities: pos: -41.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7012 components: - type: Transform @@ -84112,7 +84195,7 @@ entities: pos: 15.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7115 components: - type: Transform @@ -84125,7 +84208,7 @@ entities: pos: 15.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7123 components: - type: Transform @@ -84139,21 +84222,21 @@ entities: pos: 16.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7211 components: - type: Transform pos: -49.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7214 components: - type: Transform pos: -23.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7215 components: - type: Transform @@ -84161,7 +84244,7 @@ entities: pos: 23.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7220 components: - type: Transform @@ -84169,7 +84252,7 @@ entities: pos: -25.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7225 components: - type: Transform @@ -84177,7 +84260,7 @@ entities: pos: -14.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7335 components: - type: Transform @@ -84214,21 +84297,21 @@ entities: pos: 1.5,-75.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7382 components: - type: Transform pos: -0.5,-74.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7383 components: - type: Transform pos: -0.5,-75.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7458 components: - type: Transform @@ -84236,7 +84319,7 @@ entities: pos: -28.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7473 components: - type: Transform @@ -84244,7 +84327,7 @@ entities: pos: 5.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7478 components: - type: Transform @@ -84252,7 +84335,7 @@ entities: pos: 6.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7601 components: - type: Transform @@ -84260,7 +84343,7 @@ entities: pos: -14.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7604 components: - type: Transform @@ -84268,7 +84351,7 @@ entities: pos: -19.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7612 components: - type: Transform @@ -84276,7 +84359,7 @@ entities: pos: -31.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7647 components: - type: Transform @@ -84284,7 +84367,7 @@ entities: pos: -20.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7657 components: - type: Transform @@ -84292,7 +84375,7 @@ entities: pos: -39.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7670 components: - type: Transform @@ -84300,21 +84383,21 @@ entities: pos: 27.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7676 components: - type: Transform pos: -49.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7680 components: - type: Transform pos: -36.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7681 components: - type: Transform @@ -84322,14 +84405,14 @@ entities: pos: -29.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7715 components: - type: Transform pos: 33.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7716 components: - type: Transform @@ -84337,7 +84420,7 @@ entities: pos: 32.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7717 components: - type: Transform @@ -84345,7 +84428,7 @@ entities: pos: 32.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7787 components: - type: Transform @@ -84353,14 +84436,14 @@ entities: pos: -21.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7835 components: - type: Transform pos: 4.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7856 components: - type: Transform @@ -84368,7 +84451,7 @@ entities: pos: 45.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7896 components: - type: Transform @@ -84382,14 +84465,14 @@ entities: pos: -14.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7905 components: - type: Transform pos: -36.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7981 components: - type: Transform @@ -84547,7 +84630,7 @@ entities: pos: 25.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8130 components: - type: Transform @@ -84555,7 +84638,7 @@ entities: pos: -1.5,-45.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8131 components: - type: Transform @@ -84563,7 +84646,7 @@ entities: pos: -2.5,-45.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8132 components: - type: Transform @@ -84571,7 +84654,7 @@ entities: pos: 0.5,-46.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8133 components: - type: Transform @@ -84579,7 +84662,7 @@ entities: pos: -0.5,-46.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8134 components: - type: Transform @@ -84587,7 +84670,7 @@ entities: pos: -1.5,-46.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8135 components: - type: Transform @@ -84595,7 +84678,7 @@ entities: pos: -2.5,-46.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8151 components: - type: Transform @@ -84609,21 +84692,21 @@ entities: pos: -21.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8204 components: - type: Transform pos: -38.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8206 components: - type: Transform pos: -38.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8207 components: - type: Transform @@ -84631,7 +84714,7 @@ entities: pos: -26.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8230 components: - type: Transform @@ -84639,7 +84722,7 @@ entities: pos: -25.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8242 components: - type: Transform @@ -84647,14 +84730,14 @@ entities: pos: -38.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8244 components: - type: Transform pos: -25.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8246 components: - type: Transform @@ -84662,7 +84745,7 @@ entities: pos: -21.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8253 components: - type: Transform @@ -84670,7 +84753,7 @@ entities: pos: -32.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8257 components: - type: Transform @@ -84678,7 +84761,7 @@ entities: pos: 45.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8258 components: - type: Transform @@ -84686,7 +84769,7 @@ entities: pos: -21.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8269 components: - type: Transform @@ -84694,7 +84777,7 @@ entities: pos: -18.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8270 components: - type: Transform @@ -84702,7 +84785,7 @@ entities: pos: -26.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8274 components: - type: Transform @@ -84710,7 +84793,7 @@ entities: pos: -31.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8277 components: - type: Transform @@ -84718,7 +84801,7 @@ entities: pos: -31.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8292 components: - type: Transform @@ -84726,7 +84809,7 @@ entities: pos: -8.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8336 components: - type: Transform @@ -84734,7 +84817,7 @@ entities: pos: -30.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8350 components: - type: Transform @@ -84742,7 +84825,7 @@ entities: pos: -13.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8387 components: - type: Transform @@ -84750,14 +84833,14 @@ entities: pos: 23.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8436 components: - type: Transform pos: -43.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8508 components: - type: Transform @@ -84765,56 +84848,56 @@ entities: pos: -31.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8533 components: - type: Transform pos: 17.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8534 components: - type: Transform pos: 17.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8535 components: - type: Transform pos: 17.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8538 components: - type: Transform pos: 15.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8539 components: - type: Transform pos: 15.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8540 components: - type: Transform pos: 15.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8541 components: - type: Transform pos: 15.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8569 components: - type: Transform @@ -84822,14 +84905,14 @@ entities: pos: -39.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8792 components: - type: Transform pos: -16.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8891 components: - type: Transform @@ -84837,7 +84920,7 @@ entities: pos: -7.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8899 components: - type: Transform @@ -84857,7 +84940,7 @@ entities: pos: -55.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8922 components: - type: Transform @@ -84865,42 +84948,42 @@ entities: pos: -32.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8945 components: - type: Transform pos: 1.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8963 components: - type: Transform pos: 44.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8964 components: - type: Transform pos: 44.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9003 components: - type: Transform pos: 19.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9022 components: - type: Transform pos: 44.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9042 components: - type: Transform @@ -84908,7 +84991,7 @@ entities: pos: -44.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9045 components: - type: Transform @@ -84916,7 +84999,7 @@ entities: pos: 39.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9111 components: - type: Transform @@ -84924,7 +85007,7 @@ entities: pos: -18.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9149 components: - type: Transform @@ -84932,7 +85015,7 @@ entities: pos: -18.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9151 components: - type: Transform @@ -84940,7 +85023,7 @@ entities: pos: -7.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9153 components: - type: Transform @@ -84948,14 +85031,14 @@ entities: pos: -11.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9154 components: - type: Transform pos: -45.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9358 components: - type: Transform @@ -84983,7 +85066,7 @@ entities: pos: -29.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9609 components: - type: Transform @@ -84991,7 +85074,7 @@ entities: pos: -46.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9610 components: - type: Transform @@ -84999,7 +85082,7 @@ entities: pos: -45.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9635 components: - type: Transform @@ -85007,7 +85090,7 @@ entities: pos: -53.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9636 components: - type: Transform @@ -85015,7 +85098,7 @@ entities: pos: -54.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9639 components: - type: Transform @@ -85023,7 +85106,7 @@ entities: pos: -39.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9640 components: - type: Transform @@ -85031,7 +85114,7 @@ entities: pos: -40.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9642 components: - type: Transform @@ -85039,7 +85122,7 @@ entities: pos: -43.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9649 components: - type: Transform @@ -85047,7 +85130,7 @@ entities: pos: -44.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9650 components: - type: Transform @@ -85055,7 +85138,7 @@ entities: pos: -45.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9653 components: - type: Transform @@ -85063,63 +85146,63 @@ entities: pos: -53.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9654 components: - type: Transform pos: -54.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9655 components: - type: Transform pos: -54.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9657 components: - type: Transform pos: -54.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9658 components: - type: Transform pos: -54.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9659 components: - type: Transform pos: -54.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9660 components: - type: Transform pos: -54.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9661 components: - type: Transform pos: -54.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9662 components: - type: Transform pos: -54.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9663 components: - type: Transform @@ -85156,14 +85239,14 @@ entities: pos: -21.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10310 components: - type: Transform pos: -58.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10585 components: - type: Transform @@ -85171,7 +85254,7 @@ entities: pos: -21.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10676 components: - type: Transform @@ -85179,7 +85262,7 @@ entities: pos: -21.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10695 components: - type: Transform @@ -85187,7 +85270,7 @@ entities: pos: -51.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10696 components: - type: Transform @@ -85195,7 +85278,7 @@ entities: pos: -49.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11132 components: - type: Transform @@ -85203,7 +85286,7 @@ entities: pos: 46.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11158 components: - type: Transform @@ -85211,7 +85294,7 @@ entities: pos: 43.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11361 components: - type: Transform @@ -85219,7 +85302,7 @@ entities: pos: -47.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11371 components: - type: Transform @@ -85227,7 +85310,7 @@ entities: pos: -33.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11379 components: - type: Transform @@ -85235,7 +85318,7 @@ entities: pos: 14.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11739 components: - type: Transform @@ -85243,7 +85326,7 @@ entities: pos: 44.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11757 components: - type: Transform @@ -85251,7 +85334,7 @@ entities: pos: 47.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11814 components: - type: Transform @@ -85259,7 +85342,7 @@ entities: pos: 45.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11830 components: - type: Transform @@ -85267,14 +85350,14 @@ entities: pos: 48.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12221 components: - type: Transform pos: 9.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12284 components: - type: Transform @@ -85282,7 +85365,7 @@ entities: pos: 42.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12522 components: - type: Transform @@ -85303,28 +85386,28 @@ entities: pos: 41.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12620 components: - type: Transform pos: 49.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12627 components: - type: Transform pos: 38.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12628 components: - type: Transform pos: 38.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12630 components: - type: Transform @@ -85332,7 +85415,7 @@ entities: pos: 40.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12824 components: - type: Transform @@ -85340,7 +85423,7 @@ entities: pos: -37.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12826 components: - type: Transform @@ -85348,7 +85431,7 @@ entities: pos: -40.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12827 components: - type: Transform @@ -85356,7 +85439,7 @@ entities: pos: -41.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12828 components: - type: Transform @@ -85364,42 +85447,42 @@ entities: pos: -42.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12830 components: - type: Transform pos: -43.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12831 components: - type: Transform pos: -43.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12832 components: - type: Transform pos: -43.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12833 components: - type: Transform pos: -43.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12834 components: - type: Transform pos: -43.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12836 components: - type: Transform @@ -85407,7 +85490,7 @@ entities: pos: -44.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12838 components: - type: Transform @@ -85415,7 +85498,7 @@ entities: pos: -47.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12843 components: - type: Transform @@ -85423,7 +85506,7 @@ entities: pos: -39.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12844 components: - type: Transform @@ -85431,21 +85514,21 @@ entities: pos: -38.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12847 components: - type: Transform pos: -43.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12848 components: - type: Transform pos: -43.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12849 components: - type: Transform @@ -85453,7 +85536,7 @@ entities: pos: -46.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12850 components: - type: Transform @@ -85461,7 +85544,7 @@ entities: pos: -45.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13081 components: - type: Transform @@ -85469,7 +85552,7 @@ entities: pos: 43.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13140 components: - type: Transform @@ -85477,14 +85560,14 @@ entities: pos: 38.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13206 components: - type: Transform pos: 49.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13210 components: - type: Transform @@ -85492,7 +85575,7 @@ entities: pos: 40.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13237 components: - type: Transform @@ -85500,7 +85583,7 @@ entities: pos: 18.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13239 components: - type: Transform @@ -85508,7 +85591,7 @@ entities: pos: 17.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13240 components: - type: Transform @@ -85516,7 +85599,7 @@ entities: pos: 18.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13244 components: - type: Transform @@ -85524,7 +85607,7 @@ entities: pos: 24.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13268 components: - type: Transform @@ -85537,7 +85620,7 @@ entities: pos: 49.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13505 components: - type: Transform @@ -85545,7 +85628,7 @@ entities: pos: 46.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13506 components: - type: Transform @@ -85553,7 +85636,7 @@ entities: pos: 45.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13507 components: - type: Transform @@ -85561,14 +85644,14 @@ entities: pos: 41.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13508 components: - type: Transform pos: 49.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13509 components: - type: Transform @@ -85576,14 +85659,14 @@ entities: pos: 41.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13511 components: - type: Transform pos: 49.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13512 components: - type: Transform @@ -85591,7 +85674,7 @@ entities: pos: 44.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13513 components: - type: Transform @@ -85599,7 +85682,7 @@ entities: pos: 43.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13518 components: - type: Transform @@ -85607,7 +85690,7 @@ entities: pos: 38.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13539 components: - type: Transform @@ -85615,7 +85698,7 @@ entities: pos: 17.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13540 components: - type: Transform @@ -85623,7 +85706,7 @@ entities: pos: 18.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13541 components: - type: Transform @@ -85631,7 +85714,7 @@ entities: pos: 19.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13542 components: - type: Transform @@ -85639,7 +85722,7 @@ entities: pos: 18.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13543 components: - type: Transform @@ -85647,7 +85730,7 @@ entities: pos: 19.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13544 components: - type: Transform @@ -85655,7 +85738,7 @@ entities: pos: 20.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13545 components: - type: Transform @@ -85663,7 +85746,7 @@ entities: pos: 21.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13550 components: - type: Transform @@ -85671,7 +85754,7 @@ entities: pos: -32.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13564 components: - type: Transform @@ -85679,7 +85762,7 @@ entities: pos: 23.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13565 components: - type: Transform @@ -85687,7 +85770,7 @@ entities: pos: 24.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13566 components: - type: Transform @@ -85695,7 +85778,7 @@ entities: pos: 39.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13573 components: - type: Transform @@ -85703,7 +85786,7 @@ entities: pos: 13.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13587 components: - type: Transform @@ -85711,7 +85794,7 @@ entities: pos: 26.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13588 components: - type: Transform @@ -85719,14 +85802,14 @@ entities: pos: 3.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13591 components: - type: Transform pos: 49.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13594 components: - type: Transform @@ -85734,7 +85817,7 @@ entities: pos: 27.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13595 components: - type: Transform @@ -85742,7 +85825,7 @@ entities: pos: 28.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13596 components: - type: Transform @@ -85750,7 +85833,7 @@ entities: pos: 29.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13597 components: - type: Transform @@ -85758,7 +85841,7 @@ entities: pos: 30.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13630 components: - type: Transform @@ -85766,7 +85849,7 @@ entities: pos: 32.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13640 components: - type: Transform @@ -85774,7 +85857,7 @@ entities: pos: 12.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13643 components: - type: Transform @@ -85794,7 +85877,7 @@ entities: pos: 33.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13652 components: - type: Transform @@ -85802,7 +85885,7 @@ entities: pos: 34.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13653 components: - type: Transform @@ -85810,7 +85893,7 @@ entities: pos: 35.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13674 components: - type: Transform @@ -85818,7 +85901,7 @@ entities: pos: -8.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13675 components: - type: Transform @@ -85826,7 +85909,7 @@ entities: pos: -8.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13676 components: - type: Transform @@ -85834,7 +85917,7 @@ entities: pos: -8.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13806 components: - type: Transform @@ -85842,7 +85925,7 @@ entities: pos: 36.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13807 components: - type: Transform @@ -85850,7 +85933,7 @@ entities: pos: 37.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13809 components: - type: Transform @@ -85858,7 +85941,7 @@ entities: pos: 39.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13810 components: - type: Transform @@ -85866,7 +85949,7 @@ entities: pos: 22.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13822 components: - type: Transform @@ -85874,7 +85957,7 @@ entities: pos: 25.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13836 components: - type: Transform @@ -85882,7 +85965,7 @@ entities: pos: 25.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13837 components: - type: Transform @@ -85890,7 +85973,7 @@ entities: pos: 26.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13839 components: - type: Transform @@ -85898,7 +85981,7 @@ entities: pos: -26.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13840 components: - type: Transform @@ -85906,7 +85989,7 @@ entities: pos: -26.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13841 components: - type: Transform @@ -85914,7 +85997,7 @@ entities: pos: -26.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13843 components: - type: Transform @@ -85922,7 +86005,7 @@ entities: pos: 27.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13869 components: - type: Transform @@ -85930,7 +86013,7 @@ entities: pos: -30.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13877 components: - type: Transform @@ -85944,7 +86027,7 @@ entities: pos: 28.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13920 components: - type: Transform @@ -85952,7 +86035,7 @@ entities: pos: 29.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13921 components: - type: Transform @@ -85960,7 +86043,7 @@ entities: pos: 30.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13932 components: - type: Transform @@ -85968,7 +86051,7 @@ entities: pos: -14.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13935 components: - type: Transform @@ -85988,7 +86071,7 @@ entities: pos: 31.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14003 components: - type: Transform @@ -85996,7 +86079,7 @@ entities: pos: -26.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14004 components: - type: Transform @@ -86004,7 +86087,7 @@ entities: pos: -26.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14005 components: - type: Transform @@ -86012,7 +86095,7 @@ entities: pos: -26.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14016 components: - type: Transform @@ -86020,7 +86103,7 @@ entities: pos: 33.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14017 components: - type: Transform @@ -86028,7 +86111,7 @@ entities: pos: 34.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14018 components: - type: Transform @@ -86036,7 +86119,7 @@ entities: pos: 35.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14019 components: - type: Transform @@ -86044,7 +86127,7 @@ entities: pos: 36.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14020 components: - type: Transform @@ -86052,7 +86135,7 @@ entities: pos: 37.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14023 components: - type: Transform @@ -86060,7 +86143,7 @@ entities: pos: 16.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14024 components: - type: Transform @@ -86068,7 +86151,7 @@ entities: pos: 17.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14025 components: - type: Transform @@ -86076,7 +86159,7 @@ entities: pos: 18.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14026 components: - type: Transform @@ -86084,7 +86167,7 @@ entities: pos: 19.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14027 components: - type: Transform @@ -86092,7 +86175,7 @@ entities: pos: 20.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14028 components: - type: Transform @@ -86100,7 +86183,7 @@ entities: pos: 21.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14030 components: - type: Transform @@ -86108,7 +86191,7 @@ entities: pos: 23.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14031 components: - type: Transform @@ -86116,7 +86199,7 @@ entities: pos: 24.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14032 components: - type: Transform @@ -86124,7 +86207,7 @@ entities: pos: 25.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14033 components: - type: Transform @@ -86132,7 +86215,7 @@ entities: pos: 26.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14034 components: - type: Transform @@ -86140,7 +86223,7 @@ entities: pos: 27.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14035 components: - type: Transform @@ -86148,7 +86231,7 @@ entities: pos: 28.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14036 components: - type: Transform @@ -86156,7 +86239,7 @@ entities: pos: 29.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14037 components: - type: Transform @@ -86164,7 +86247,7 @@ entities: pos: 30.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14038 components: - type: Transform @@ -86172,7 +86255,7 @@ entities: pos: 31.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14039 components: - type: Transform @@ -86180,7 +86263,7 @@ entities: pos: 32.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14041 components: - type: Transform @@ -86188,7 +86271,7 @@ entities: pos: 34.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14042 components: - type: Transform @@ -86196,7 +86279,7 @@ entities: pos: 35.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14045 components: - type: Transform @@ -86204,7 +86287,7 @@ entities: pos: 37.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14046 components: - type: Transform @@ -86212,7 +86295,7 @@ entities: pos: 38.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14048 components: - type: Transform @@ -86220,21 +86303,21 @@ entities: pos: 40.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14132 components: - type: Transform pos: -9.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14153 components: - type: Transform pos: -9.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14174 components: - type: Transform @@ -86242,7 +86325,7 @@ entities: pos: -11.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14176 components: - type: Transform @@ -86250,7 +86333,7 @@ entities: pos: -10.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14181 components: - type: Transform @@ -86258,7 +86341,7 @@ entities: pos: -21.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14209 components: - type: Transform @@ -86266,7 +86349,7 @@ entities: pos: -13.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14214 components: - type: Transform @@ -86274,7 +86357,7 @@ entities: pos: -15.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14232 components: - type: Transform @@ -86282,7 +86365,7 @@ entities: pos: -16.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14233 components: - type: Transform @@ -86290,7 +86373,7 @@ entities: pos: -16.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14234 components: - type: Transform @@ -86298,7 +86381,7 @@ entities: pos: -16.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14235 components: - type: Transform @@ -86306,7 +86389,7 @@ entities: pos: -16.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14236 components: - type: Transform @@ -86314,7 +86397,7 @@ entities: pos: -16.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14238 components: - type: Transform @@ -86322,7 +86405,7 @@ entities: pos: -16.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14239 components: - type: Transform @@ -86330,7 +86413,7 @@ entities: pos: -16.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14240 components: - type: Transform @@ -86338,7 +86421,7 @@ entities: pos: -16.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14242 components: - type: Transform @@ -86346,7 +86429,7 @@ entities: pos: -16.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14243 components: - type: Transform @@ -86354,7 +86437,7 @@ entities: pos: -16.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14244 components: - type: Transform @@ -86362,7 +86445,7 @@ entities: pos: -16.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14245 components: - type: Transform @@ -86370,7 +86453,7 @@ entities: pos: -14.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14246 components: - type: Transform @@ -86378,7 +86461,7 @@ entities: pos: -14.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14247 components: - type: Transform @@ -86386,7 +86469,7 @@ entities: pos: -14.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14248 components: - type: Transform @@ -86394,7 +86477,7 @@ entities: pos: -14.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14249 components: - type: Transform @@ -86402,7 +86485,7 @@ entities: pos: -14.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14250 components: - type: Transform @@ -86410,7 +86493,7 @@ entities: pos: -14.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14252 components: - type: Transform @@ -86418,7 +86501,7 @@ entities: pos: -14.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14253 components: - type: Transform @@ -86426,7 +86509,7 @@ entities: pos: -14.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14254 components: - type: Transform @@ -86434,7 +86517,7 @@ entities: pos: -14.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14255 components: - type: Transform @@ -86442,7 +86525,7 @@ entities: pos: -14.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14256 components: - type: Transform @@ -86450,7 +86533,7 @@ entities: pos: -14.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14257 components: - type: Transform @@ -86458,7 +86541,7 @@ entities: pos: -14.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14258 components: - type: Transform @@ -86466,7 +86549,7 @@ entities: pos: -14.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14261 components: - type: Transform @@ -86474,7 +86557,7 @@ entities: pos: -17.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14262 components: - type: Transform @@ -86482,7 +86565,7 @@ entities: pos: -18.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14263 components: - type: Transform @@ -86490,7 +86573,7 @@ entities: pos: -19.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14264 components: - type: Transform @@ -86498,7 +86581,7 @@ entities: pos: -20.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14265 components: - type: Transform @@ -86506,7 +86589,7 @@ entities: pos: -21.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14266 components: - type: Transform @@ -86514,14 +86597,14 @@ entities: pos: -22.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14267 components: - type: Transform pos: 49.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14268 components: - type: Transform @@ -86529,7 +86612,7 @@ entities: pos: -24.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14269 components: - type: Transform @@ -86537,7 +86620,7 @@ entities: pos: -25.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14271 components: - type: Transform @@ -86545,7 +86628,7 @@ entities: pos: -27.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14272 components: - type: Transform @@ -86553,7 +86636,7 @@ entities: pos: -28.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14273 components: - type: Transform @@ -86561,7 +86644,7 @@ entities: pos: -29.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14275 components: - type: Transform @@ -86569,7 +86652,7 @@ entities: pos: -15.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14276 components: - type: Transform @@ -86577,7 +86660,7 @@ entities: pos: -16.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14277 components: - type: Transform @@ -86585,7 +86668,7 @@ entities: pos: -17.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14278 components: - type: Transform @@ -86593,7 +86676,7 @@ entities: pos: -18.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14281 components: - type: Transform @@ -86601,7 +86684,7 @@ entities: pos: -21.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14282 components: - type: Transform @@ -86609,7 +86692,7 @@ entities: pos: -22.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14283 components: - type: Transform @@ -86617,7 +86700,7 @@ entities: pos: -23.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14284 components: - type: Transform @@ -86625,7 +86708,7 @@ entities: pos: -25.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14290 components: - type: Transform @@ -86639,7 +86722,7 @@ entities: pos: -13.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14292 components: - type: Transform @@ -86647,7 +86730,7 @@ entities: pos: -12.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14294 components: - type: Transform @@ -86655,7 +86738,7 @@ entities: pos: -10.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14296 components: - type: Transform @@ -86663,7 +86746,7 @@ entities: pos: -8.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14298 components: - type: Transform @@ -86671,7 +86754,7 @@ entities: pos: -7.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14299 components: - type: Transform @@ -86679,7 +86762,7 @@ entities: pos: -7.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14300 components: - type: Transform @@ -86687,7 +86770,7 @@ entities: pos: -7.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14301 components: - type: Transform @@ -86695,7 +86778,7 @@ entities: pos: -7.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14304 components: - type: Transform @@ -86703,7 +86786,7 @@ entities: pos: -15.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14305 components: - type: Transform @@ -86711,7 +86794,7 @@ entities: pos: -14.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14306 components: - type: Transform @@ -86719,7 +86802,7 @@ entities: pos: -12.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14307 components: - type: Transform @@ -86727,7 +86810,7 @@ entities: pos: -13.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14309 components: - type: Transform @@ -86735,7 +86818,7 @@ entities: pos: -10.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14310 components: - type: Transform @@ -86743,7 +86826,7 @@ entities: pos: -9.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14314 components: - type: Transform @@ -86751,7 +86834,7 @@ entities: pos: -8.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14315 components: - type: Transform @@ -86759,7 +86842,7 @@ entities: pos: -8.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14316 components: - type: Transform @@ -86767,7 +86850,7 @@ entities: pos: -8.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14317 components: - type: Transform @@ -86775,7 +86858,7 @@ entities: pos: -8.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14318 components: - type: Transform @@ -86783,49 +86866,49 @@ entities: pos: -11.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14320 components: - type: Transform pos: -9.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14321 components: - type: Transform pos: -9.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14322 components: - type: Transform pos: -9.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14323 components: - type: Transform pos: -9.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14324 components: - type: Transform pos: -9.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14455 components: - type: Transform pos: -27.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14456 components: - type: Transform @@ -86833,7 +86916,7 @@ entities: pos: -26.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14457 components: - type: Transform @@ -86841,7 +86924,7 @@ entities: pos: -26.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14458 components: - type: Transform @@ -86849,7 +86932,7 @@ entities: pos: -26.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14459 components: - type: Transform @@ -86857,7 +86940,7 @@ entities: pos: -26.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14460 components: - type: Transform @@ -86865,7 +86948,7 @@ entities: pos: -26.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14461 components: - type: Transform @@ -86873,119 +86956,119 @@ entities: pos: -26.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14462 components: - type: Transform pos: -24.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14463 components: - type: Transform pos: -24.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14464 components: - type: Transform pos: -24.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14465 components: - type: Transform pos: -24.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14466 components: - type: Transform pos: -24.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14467 components: - type: Transform pos: -24.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14469 components: - type: Transform pos: -24.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14470 components: - type: Transform pos: -24.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14471 components: - type: Transform pos: -24.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14472 components: - type: Transform pos: -24.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14473 components: - type: Transform pos: -24.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14474 components: - type: Transform pos: -24.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14475 components: - type: Transform pos: -24.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14476 components: - type: Transform pos: -24.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14489 components: - type: Transform pos: -27.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14495 components: - type: Transform pos: -23.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14643 components: - type: Transform @@ -86993,7 +87076,7 @@ entities: pos: -20.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14644 components: - type: Transform @@ -87001,7 +87084,7 @@ entities: pos: -22.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14662 components: - type: Transform @@ -87014,7 +87097,7 @@ entities: pos: -16.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14669 components: - type: Transform @@ -87022,7 +87105,7 @@ entities: pos: -24.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14671 components: - type: Transform @@ -87030,7 +87113,7 @@ entities: pos: -23.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14672 components: - type: Transform @@ -87038,7 +87121,7 @@ entities: pos: -22.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14686 components: - type: Transform @@ -87079,7 +87162,7 @@ entities: pos: 41.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14742 components: - type: Transform @@ -87087,7 +87170,7 @@ entities: pos: -29.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14743 components: - type: Transform @@ -87095,7 +87178,7 @@ entities: pos: -28.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14744 components: - type: Transform @@ -87103,7 +87186,7 @@ entities: pos: -27.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14747 components: - type: Transform @@ -87111,7 +87194,7 @@ entities: pos: -24.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14748 components: - type: Transform @@ -87119,7 +87202,7 @@ entities: pos: -23.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14754 components: - type: Transform @@ -87127,7 +87210,7 @@ entities: pos: -20.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14755 components: - type: Transform @@ -87135,7 +87218,7 @@ entities: pos: -20.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14757 components: - type: Transform @@ -87143,7 +87226,7 @@ entities: pos: -25.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14758 components: - type: Transform @@ -87151,7 +87234,7 @@ entities: pos: -22.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14759 components: - type: Transform @@ -87159,7 +87242,7 @@ entities: pos: -22.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14760 components: - type: Transform @@ -87167,7 +87250,7 @@ entities: pos: -22.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14761 components: - type: Transform @@ -87175,7 +87258,7 @@ entities: pos: -22.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14762 components: - type: Transform @@ -87183,7 +87266,7 @@ entities: pos: -22.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14764 components: - type: Transform @@ -87191,7 +87274,7 @@ entities: pos: -36.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14765 components: - type: Transform @@ -87199,7 +87282,7 @@ entities: pos: -35.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14767 components: - type: Transform @@ -87207,7 +87290,7 @@ entities: pos: -33.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14768 components: - type: Transform @@ -87215,14 +87298,14 @@ entities: pos: -32.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14769 components: - type: Transform pos: -41.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14771 components: - type: Transform @@ -87230,7 +87313,7 @@ entities: pos: -35.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14773 components: - type: Transform @@ -87238,7 +87321,7 @@ entities: pos: -29.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14777 components: - type: Transform @@ -87246,7 +87329,7 @@ entities: pos: -26.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14778 components: - type: Transform @@ -87254,7 +87337,7 @@ entities: pos: -25.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14781 components: - type: Transform @@ -87268,7 +87351,7 @@ entities: pos: -28.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14786 components: - type: Transform @@ -87276,7 +87359,7 @@ entities: pos: -31.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14790 components: - type: Transform @@ -87284,7 +87367,7 @@ entities: pos: -34.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14794 components: - type: Transform @@ -87316,14 +87399,14 @@ entities: pos: -27.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14871 components: - type: Transform pos: -43.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14878 components: - type: Transform @@ -87331,7 +87414,7 @@ entities: pos: -33.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14879 components: - type: Transform @@ -87339,7 +87422,7 @@ entities: pos: -31.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14883 components: - type: Transform @@ -87371,7 +87454,7 @@ entities: pos: -33.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14897 components: - type: Transform @@ -87413,7 +87496,7 @@ entities: pos: -26.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14934 components: - type: Transform @@ -87421,7 +87504,7 @@ entities: pos: -27.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14935 components: - type: Transform @@ -87429,7 +87512,7 @@ entities: pos: -28.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14936 components: - type: Transform @@ -87437,7 +87520,7 @@ entities: pos: -26.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14938 components: - type: Transform @@ -87445,7 +87528,7 @@ entities: pos: -31.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14940 components: - type: Transform @@ -87471,14 +87554,14 @@ entities: pos: 1.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14987 components: - type: Transform pos: -33.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14991 components: - type: Transform @@ -87682,7 +87765,7 @@ entities: pos: -32.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15118 components: - type: Transform @@ -87768,7 +87851,7 @@ entities: pos: -33.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15146 components: - type: Transform @@ -87788,7 +87871,7 @@ entities: pos: 13.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15172 components: - type: Transform @@ -87872,7 +87955,7 @@ entities: pos: -19.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15358 components: - type: Transform @@ -87880,7 +87963,7 @@ entities: pos: -17.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15365 components: - type: Transform @@ -88195,7 +88278,7 @@ entities: pos: -22.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15589 components: - type: Transform @@ -88203,7 +88286,7 @@ entities: pos: -22.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15590 components: - type: Transform @@ -88211,7 +88294,7 @@ entities: pos: -22.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15592 components: - type: Transform @@ -88219,7 +88302,7 @@ entities: pos: -22.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15598 components: - type: Transform @@ -88227,7 +88310,7 @@ entities: pos: -18.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15606 components: - type: Transform @@ -88235,7 +88318,7 @@ entities: pos: -10.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15607 components: - type: Transform @@ -88243,7 +88326,7 @@ entities: pos: -10.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15608 components: - type: Transform @@ -88251,7 +88334,7 @@ entities: pos: -10.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15609 components: - type: Transform @@ -88259,7 +88342,7 @@ entities: pos: -10.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15610 components: - type: Transform @@ -88267,7 +88350,7 @@ entities: pos: -10.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15611 components: - type: Transform @@ -88275,7 +88358,7 @@ entities: pos: -10.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15614 components: - type: Transform @@ -88283,7 +88366,7 @@ entities: pos: -20.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15615 components: - type: Transform @@ -88291,7 +88374,7 @@ entities: pos: -20.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15616 components: - type: Transform @@ -88299,7 +88382,7 @@ entities: pos: -19.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15618 components: - type: Transform @@ -88307,7 +88390,7 @@ entities: pos: -17.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15619 components: - type: Transform @@ -88315,7 +88398,7 @@ entities: pos: -16.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15620 components: - type: Transform @@ -88323,7 +88406,7 @@ entities: pos: -15.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15622 components: - type: Transform @@ -88331,28 +88414,28 @@ entities: pos: -13.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15623 components: - type: Transform pos: -12.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15624 components: - type: Transform pos: -12.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15625 components: - type: Transform pos: -12.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15627 components: - type: Transform @@ -88360,7 +88443,7 @@ entities: pos: -19.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15628 components: - type: Transform @@ -88368,7 +88451,7 @@ entities: pos: -18.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15629 components: - type: Transform @@ -88376,7 +88459,7 @@ entities: pos: -17.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15630 components: - type: Transform @@ -88384,7 +88467,7 @@ entities: pos: -16.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15631 components: - type: Transform @@ -88392,7 +88475,7 @@ entities: pos: -15.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15632 components: - type: Transform @@ -88400,7 +88483,7 @@ entities: pos: -14.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15633 components: - type: Transform @@ -88408,14 +88491,14 @@ entities: pos: -13.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15634 components: - type: Transform pos: -12.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15638 components: - type: Transform @@ -88423,7 +88506,7 @@ entities: pos: -16.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15639 components: - type: Transform @@ -88431,7 +88514,7 @@ entities: pos: -16.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15640 components: - type: Transform @@ -88439,7 +88522,7 @@ entities: pos: -16.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15641 components: - type: Transform @@ -88447,7 +88530,7 @@ entities: pos: -15.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15642 components: - type: Transform @@ -88455,7 +88538,7 @@ entities: pos: -14.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15643 components: - type: Transform @@ -88463,7 +88546,7 @@ entities: pos: -13.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15644 components: - type: Transform @@ -88471,7 +88554,7 @@ entities: pos: -12.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15645 components: - type: Transform @@ -88479,35 +88562,35 @@ entities: pos: -11.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15646 components: - type: Transform pos: -10.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15655 components: - type: Transform pos: -0.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15656 components: - type: Transform pos: -0.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15657 components: - type: Transform pos: -0.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15658 components: - type: Transform @@ -88515,7 +88598,7 @@ entities: pos: 0.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15659 components: - type: Transform @@ -88523,21 +88606,21 @@ entities: pos: -9.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15662 components: - type: Transform pos: 1.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15663 components: - type: Transform pos: 1.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15746 components: - type: Transform @@ -88545,14 +88628,14 @@ entities: pos: 0.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16562 components: - type: Transform pos: -16.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16564 components: - type: Transform @@ -88560,7 +88643,7 @@ entities: pos: -8.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16565 components: - type: Transform @@ -88568,7 +88651,7 @@ entities: pos: -7.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16566 components: - type: Transform @@ -88576,7 +88659,7 @@ entities: pos: -6.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16567 components: - type: Transform @@ -88584,7 +88667,7 @@ entities: pos: -5.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16568 components: - type: Transform @@ -88592,7 +88675,7 @@ entities: pos: -4.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16569 components: - type: Transform @@ -88600,56 +88683,56 @@ entities: pos: -3.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16570 components: - type: Transform pos: -2.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16572 components: - type: Transform pos: -2.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16573 components: - type: Transform pos: -2.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16574 components: - type: Transform pos: -2.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16575 components: - type: Transform pos: -2.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16577 components: - type: Transform pos: -2.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16578 components: - type: Transform pos: -2.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16579 components: - type: Transform @@ -88657,7 +88740,7 @@ entities: pos: -1.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16583 components: - type: Transform @@ -88665,7 +88748,7 @@ entities: pos: -11.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16584 components: - type: Transform @@ -88673,7 +88756,7 @@ entities: pos: -10.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16585 components: - type: Transform @@ -88681,7 +88764,7 @@ entities: pos: -9.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16586 components: - type: Transform @@ -88689,7 +88772,7 @@ entities: pos: -8.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16587 components: - type: Transform @@ -88697,7 +88780,7 @@ entities: pos: -7.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16588 components: - type: Transform @@ -88705,7 +88788,7 @@ entities: pos: -6.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16589 components: - type: Transform @@ -88713,7 +88796,7 @@ entities: pos: -5.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16590 components: - type: Transform @@ -88721,28 +88804,28 @@ entities: pos: -4.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16591 components: - type: Transform pos: -3.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16592 components: - type: Transform pos: -3.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16593 components: - type: Transform pos: -3.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16595 components: - type: Transform @@ -88750,28 +88833,28 @@ entities: pos: -3.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16596 components: - type: Transform pos: -3.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16597 components: - type: Transform pos: -3.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16598 components: - type: Transform pos: -3.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16600 components: - type: Transform @@ -88779,7 +88862,7 @@ entities: pos: -2.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16601 components: - type: Transform @@ -88787,7 +88870,7 @@ entities: pos: -1.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16602 components: - type: Transform @@ -88795,7 +88878,7 @@ entities: pos: -0.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16603 components: - type: Transform @@ -88803,7 +88886,7 @@ entities: pos: 0.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16606 components: - type: Transform @@ -88811,7 +88894,7 @@ entities: pos: -2.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16607 components: - type: Transform @@ -88819,7 +88902,7 @@ entities: pos: -1.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16609 components: - type: Transform @@ -88827,7 +88910,7 @@ entities: pos: -0.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16610 components: - type: Transform @@ -88835,7 +88918,7 @@ entities: pos: 0.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16613 components: - type: Transform @@ -88843,7 +88926,7 @@ entities: pos: -0.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16614 components: - type: Transform @@ -88851,7 +88934,7 @@ entities: pos: -0.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16617 components: - type: Transform @@ -88859,7 +88942,7 @@ entities: pos: 1.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16618 components: - type: Transform @@ -88867,7 +88950,7 @@ entities: pos: 1.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16622 components: - type: Transform @@ -88875,7 +88958,7 @@ entities: pos: -2.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16624 components: - type: Transform @@ -88883,7 +88966,7 @@ entities: pos: -0.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16625 components: - type: Transform @@ -88891,7 +88974,7 @@ entities: pos: 1.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16626 components: - type: Transform @@ -88899,7 +88982,7 @@ entities: pos: 2.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16627 components: - type: Transform @@ -88907,7 +88990,7 @@ entities: pos: 3.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16628 components: - type: Transform @@ -88915,7 +88998,7 @@ entities: pos: 4.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16629 components: - type: Transform @@ -88923,7 +89006,7 @@ entities: pos: 2.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16630 components: - type: Transform @@ -88931,7 +89014,7 @@ entities: pos: 3.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16631 components: - type: Transform @@ -88939,35 +89022,35 @@ entities: pos: 4.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16637 components: - type: Transform pos: -3.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16638 components: - type: Transform pos: -3.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16639 components: - type: Transform pos: -3.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16640 components: - type: Transform pos: -2.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16644 components: - type: Transform @@ -88975,7 +89058,7 @@ entities: pos: 2.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16646 components: - type: Transform @@ -88983,7 +89066,7 @@ entities: pos: 1.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16649 components: - type: Transform @@ -88991,7 +89074,7 @@ entities: pos: 5.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16650 components: - type: Transform @@ -88999,7 +89082,7 @@ entities: pos: 6.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16651 components: - type: Transform @@ -89007,7 +89090,7 @@ entities: pos: 7.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16652 components: - type: Transform @@ -89015,7 +89098,7 @@ entities: pos: 8.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16653 components: - type: Transform @@ -89023,7 +89106,7 @@ entities: pos: 9.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16655 components: - type: Transform @@ -89031,7 +89114,7 @@ entities: pos: 11.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16657 components: - type: Transform @@ -89039,14 +89122,14 @@ entities: pos: 3.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16658 components: - type: Transform pos: 4.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16660 components: - type: Transform @@ -89054,7 +89137,7 @@ entities: pos: 6.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16661 components: - type: Transform @@ -89062,7 +89145,7 @@ entities: pos: 7.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16662 components: - type: Transform @@ -89070,7 +89153,7 @@ entities: pos: 8.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16663 components: - type: Transform @@ -89078,7 +89161,7 @@ entities: pos: 9.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16665 components: - type: Transform @@ -89086,7 +89169,7 @@ entities: pos: 11.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16671 components: - type: Transform @@ -89094,7 +89177,7 @@ entities: pos: 5.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16676 components: - type: Transform @@ -89102,7 +89185,7 @@ entities: pos: 5.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16677 components: - type: Transform @@ -89110,7 +89193,7 @@ entities: pos: 5.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16742 components: - type: Transform @@ -89141,7 +89224,7 @@ entities: pos: -50.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17458 components: - type: Transform @@ -89149,7 +89232,7 @@ entities: pos: -44.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17506 components: - type: Transform @@ -89157,7 +89240,7 @@ entities: pos: 18.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17507 components: - type: Transform @@ -89165,7 +89248,7 @@ entities: pos: 19.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17508 components: - type: Transform @@ -89173,7 +89256,7 @@ entities: pos: 20.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17510 components: - type: Transform @@ -89181,7 +89264,7 @@ entities: pos: 22.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17511 components: - type: Transform @@ -89189,7 +89272,7 @@ entities: pos: 23.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17512 components: - type: Transform @@ -89197,7 +89280,7 @@ entities: pos: 24.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17513 components: - type: Transform @@ -89205,7 +89288,7 @@ entities: pos: 25.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17514 components: - type: Transform @@ -89213,7 +89296,7 @@ entities: pos: 26.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17515 components: - type: Transform @@ -89221,7 +89304,7 @@ entities: pos: 27.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17516 components: - type: Transform @@ -89229,7 +89312,7 @@ entities: pos: 28.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17517 components: - type: Transform @@ -89237,7 +89320,7 @@ entities: pos: 29.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17518 components: - type: Transform @@ -89245,7 +89328,7 @@ entities: pos: 30.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17519 components: - type: Transform @@ -89253,7 +89336,7 @@ entities: pos: 31.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17520 components: - type: Transform @@ -89261,7 +89344,7 @@ entities: pos: 32.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17521 components: - type: Transform @@ -89269,7 +89352,7 @@ entities: pos: 33.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17522 components: - type: Transform @@ -89277,7 +89360,7 @@ entities: pos: 34.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17524 components: - type: Transform @@ -89285,7 +89368,7 @@ entities: pos: 36.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17526 components: - type: Transform @@ -89293,7 +89376,7 @@ entities: pos: 38.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17527 components: - type: Transform @@ -89301,7 +89384,7 @@ entities: pos: 39.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17528 components: - type: Transform @@ -89309,105 +89392,105 @@ entities: pos: 40.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17530 components: - type: Transform pos: 41.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17531 components: - type: Transform pos: 41.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17532 components: - type: Transform pos: 41.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17533 components: - type: Transform pos: 41.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17534 components: - type: Transform pos: 41.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17535 components: - type: Transform pos: 41.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17536 components: - type: Transform pos: 41.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17537 components: - type: Transform pos: 41.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17539 components: - type: Transform pos: 41.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17540 components: - type: Transform pos: 41.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17541 components: - type: Transform pos: 41.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17542 components: - type: Transform pos: 41.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17543 components: - type: Transform pos: 41.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17544 components: - type: Transform pos: 41.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17546 components: - type: Transform @@ -89415,7 +89498,7 @@ entities: pos: 40.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17547 components: - type: Transform @@ -89423,28 +89506,28 @@ entities: pos: 39.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17548 components: - type: Transform pos: 39.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17549 components: - type: Transform pos: 39.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17550 components: - type: Transform pos: 39.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17569 components: - type: Transform @@ -89452,7 +89535,7 @@ entities: pos: -37.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17571 components: - type: Transform @@ -89460,7 +89543,7 @@ entities: pos: -39.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17572 components: - type: Transform @@ -89468,7 +89551,7 @@ entities: pos: -40.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17573 components: - type: Transform @@ -89476,7 +89559,7 @@ entities: pos: -41.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17574 components: - type: Transform @@ -89490,7 +89573,7 @@ entities: pos: -37.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17576 components: - type: Transform @@ -89498,7 +89581,7 @@ entities: pos: -38.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17577 components: - type: Transform @@ -89506,7 +89589,7 @@ entities: pos: -39.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17578 components: - type: Transform @@ -89514,7 +89597,7 @@ entities: pos: -40.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17579 components: - type: Transform @@ -89527,21 +89610,21 @@ entities: pos: -43.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17582 components: - type: Transform pos: -43.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17584 components: - type: Transform pos: -41.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17588 components: - type: Transform @@ -89549,7 +89632,7 @@ entities: pos: -41.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17589 components: - type: Transform @@ -89557,7 +89640,7 @@ entities: pos: -42.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17590 components: - type: Transform @@ -89565,7 +89648,7 @@ entities: pos: -43.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17591 components: - type: Transform @@ -89573,7 +89656,7 @@ entities: pos: -45.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17592 components: - type: Transform @@ -89581,7 +89664,7 @@ entities: pos: -45.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17593 components: - type: Transform @@ -89589,7 +89672,7 @@ entities: pos: -44.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17594 components: - type: Transform @@ -89603,7 +89686,7 @@ entities: pos: -43.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17596 components: - type: Transform @@ -89611,7 +89694,7 @@ entities: pos: -44.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17597 components: - type: Transform @@ -89619,7 +89702,7 @@ entities: pos: -45.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17598 components: - type: Transform @@ -89627,7 +89710,7 @@ entities: pos: -44.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17599 components: - type: Transform @@ -89635,77 +89718,77 @@ entities: pos: -45.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17605 components: - type: Transform pos: -38.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17606 components: - type: Transform pos: -38.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17607 components: - type: Transform pos: -38.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17608 components: - type: Transform pos: -38.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17609 components: - type: Transform pos: -36.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17610 components: - type: Transform pos: -36.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17611 components: - type: Transform pos: -36.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17612 components: - type: Transform pos: -36.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17613 components: - type: Transform pos: -34.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17614 components: - type: Transform pos: -34.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17699 components: - type: Transform @@ -89713,84 +89796,84 @@ entities: pos: 23.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17711 components: - type: Transform pos: 39.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17746 components: - type: Transform pos: 39.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17747 components: - type: Transform pos: 39.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17748 components: - type: Transform pos: 39.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17842 components: - type: Transform pos: 39.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17846 components: - type: Transform pos: 39.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17847 components: - type: Transform pos: 39.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17848 components: - type: Transform pos: 39.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17849 components: - type: Transform pos: 39.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17850 components: - type: Transform pos: 39.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17862 components: - type: Transform pos: 39.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17866 components: - type: Transform @@ -89798,7 +89881,7 @@ entities: pos: 23.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17869 components: - type: Transform @@ -89806,7 +89889,7 @@ entities: pos: 23.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17880 components: - type: Transform @@ -89814,7 +89897,7 @@ entities: pos: 40.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17881 components: - type: Transform @@ -89822,7 +89905,7 @@ entities: pos: 41.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17882 components: - type: Transform @@ -89830,7 +89913,7 @@ entities: pos: 42.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17885 components: - type: Transform @@ -89838,7 +89921,7 @@ entities: pos: 43.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17886 components: - type: Transform @@ -89846,7 +89929,7 @@ entities: pos: 44.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17888 components: - type: Transform @@ -89854,7 +89937,7 @@ entities: pos: 46.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17889 components: - type: Transform @@ -89862,7 +89945,7 @@ entities: pos: 47.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17890 components: - type: Transform @@ -89870,7 +89953,7 @@ entities: pos: 48.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18097 components: - type: Transform @@ -89878,7 +89961,7 @@ entities: pos: 50.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18101 components: - type: Transform @@ -89886,7 +89969,7 @@ entities: pos: 51.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18102 components: - type: Transform @@ -89894,7 +89977,7 @@ entities: pos: 42.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18216 components: - type: Transform @@ -89902,7 +89985,7 @@ entities: pos: -2.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18218 components: - type: Transform @@ -89910,84 +89993,84 @@ entities: pos: 1.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18219 components: - type: Transform pos: 1.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18220 components: - type: Transform pos: 1.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18221 components: - type: Transform pos: 1.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18222 components: - type: Transform pos: 1.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18224 components: - type: Transform pos: 1.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18225 components: - type: Transform pos: 1.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18226 components: - type: Transform pos: 1.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18227 components: - type: Transform pos: 1.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18228 components: - type: Transform pos: 1.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18229 components: - type: Transform pos: 1.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18230 components: - type: Transform pos: -0.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18232 components: - type: Transform @@ -89995,35 +90078,35 @@ entities: pos: -0.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18233 components: - type: Transform pos: -0.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18234 components: - type: Transform pos: -0.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18235 components: - type: Transform pos: -0.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18236 components: - type: Transform pos: -0.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18237 components: - type: Transform @@ -90031,28 +90114,28 @@ entities: pos: 0.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18238 components: - type: Transform pos: -0.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18240 components: - type: Transform pos: -0.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18241 components: - type: Transform pos: -0.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18244 components: - type: Transform @@ -90060,7 +90143,7 @@ entities: pos: -1.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18245 components: - type: Transform @@ -90068,7 +90151,7 @@ entities: pos: 0.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18246 components: - type: Transform @@ -90076,7 +90159,7 @@ entities: pos: -0.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18247 components: - type: Transform @@ -90084,7 +90167,7 @@ entities: pos: -1.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18248 components: - type: Transform @@ -90092,28 +90175,28 @@ entities: pos: -2.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18251 components: - type: Transform pos: -2.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18252 components: - type: Transform pos: -2.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18253 components: - type: Transform pos: -2.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18262 components: - type: Transform @@ -90121,28 +90204,28 @@ entities: pos: -6.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18263 components: - type: Transform pos: -3.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18264 components: - type: Transform pos: -3.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18265 components: - type: Transform pos: -3.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18268 components: - type: Transform @@ -90150,7 +90233,7 @@ entities: pos: -5.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18269 components: - type: Transform @@ -90158,7 +90241,7 @@ entities: pos: -6.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18274 components: - type: Transform @@ -90166,7 +90249,7 @@ entities: pos: -2.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18275 components: - type: Transform @@ -90174,7 +90257,7 @@ entities: pos: -2.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18278 components: - type: Transform @@ -90182,7 +90265,7 @@ entities: pos: -4.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18279 components: - type: Transform @@ -90190,7 +90273,7 @@ entities: pos: -4.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18280 components: - type: Transform @@ -90198,7 +90281,7 @@ entities: pos: -3.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18417 components: - type: Transform @@ -90206,7 +90289,7 @@ entities: pos: 2.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18418 components: - type: Transform @@ -90214,7 +90297,7 @@ entities: pos: 3.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18419 components: - type: Transform @@ -90222,7 +90305,7 @@ entities: pos: 4.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18420 components: - type: Transform @@ -90230,7 +90313,7 @@ entities: pos: 1.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18421 components: - type: Transform @@ -90238,7 +90321,7 @@ entities: pos: 2.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18422 components: - type: Transform @@ -90246,7 +90329,7 @@ entities: pos: 3.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18431 components: - type: Transform @@ -90254,7 +90337,7 @@ entities: pos: -3.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18432 components: - type: Transform @@ -90262,7 +90345,7 @@ entities: pos: -3.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18433 components: - type: Transform @@ -90270,7 +90353,7 @@ entities: pos: -3.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18464 components: - type: Transform @@ -90278,7 +90361,7 @@ entities: pos: -41.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18502 components: - type: Transform @@ -90286,7 +90369,7 @@ entities: pos: -5.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18533 components: - type: Transform @@ -90294,7 +90377,7 @@ entities: pos: 1.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18535 components: - type: Transform @@ -90302,7 +90385,7 @@ entities: pos: 3.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18536 components: - type: Transform @@ -90310,7 +90393,7 @@ entities: pos: 4.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18537 components: - type: Transform @@ -90318,7 +90401,7 @@ entities: pos: 4.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18538 components: - type: Transform @@ -90326,7 +90409,7 @@ entities: pos: 4.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18543 components: - type: Transform @@ -90334,7 +90417,7 @@ entities: pos: 45.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18545 components: - type: Transform @@ -90342,7 +90425,7 @@ entities: pos: 46.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18551 components: - type: Transform @@ -90350,7 +90433,7 @@ entities: pos: 47.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18585 components: - type: Transform @@ -90358,7 +90441,7 @@ entities: pos: 49.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18648 components: - type: Transform @@ -90366,7 +90449,7 @@ entities: pos: 50.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18650 components: - type: Transform @@ -90374,7 +90457,7 @@ entities: pos: 45.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18651 components: - type: Transform @@ -90382,7 +90465,7 @@ entities: pos: 45.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18654 components: - type: Transform @@ -90390,7 +90473,7 @@ entities: pos: 43.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18655 components: - type: Transform @@ -90398,7 +90481,7 @@ entities: pos: 43.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18656 components: - type: Transform @@ -90406,21 +90489,21 @@ entities: pos: 43.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18660 components: - type: Transform pos: 52.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18661 components: - type: Transform pos: 52.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18665 components: - type: Transform @@ -90428,7 +90511,7 @@ entities: pos: 51.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18666 components: - type: Transform @@ -90436,7 +90519,7 @@ entities: pos: 50.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18667 components: - type: Transform @@ -90444,7 +90527,7 @@ entities: pos: 49.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18670 components: - type: Transform @@ -90452,7 +90535,7 @@ entities: pos: 51.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18672 components: - type: Transform @@ -90460,7 +90543,7 @@ entities: pos: 51.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18673 components: - type: Transform @@ -90468,7 +90551,7 @@ entities: pos: 51.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18674 components: - type: Transform @@ -90476,7 +90559,7 @@ entities: pos: 51.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18675 components: - type: Transform @@ -90484,7 +90567,7 @@ entities: pos: 51.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18680 components: - type: Transform @@ -90492,7 +90575,7 @@ entities: pos: 50.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18684 components: - type: Transform @@ -90500,7 +90583,7 @@ entities: pos: 49.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18688 components: - type: Transform @@ -90508,7 +90591,7 @@ entities: pos: 52.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18689 components: - type: Transform @@ -90516,7 +90599,7 @@ entities: pos: 52.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18690 components: - type: Transform @@ -90524,7 +90607,7 @@ entities: pos: 39.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18692 components: - type: Transform @@ -90532,7 +90615,7 @@ entities: pos: 39.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18711 components: - type: Transform @@ -90540,7 +90623,7 @@ entities: pos: 39.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18714 components: - type: Transform @@ -90548,35 +90631,35 @@ entities: pos: 38.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18715 components: - type: Transform pos: 37.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18716 components: - type: Transform pos: 37.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18718 components: - type: Transform pos: 37.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18872 components: - type: Transform pos: 48.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18892 components: - type: Transform @@ -90589,21 +90672,21 @@ entities: pos: 47.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18912 components: - type: Transform pos: 47.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18913 components: - type: Transform pos: 47.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18928 components: - type: Transform @@ -90639,7 +90722,7 @@ entities: pos: 16.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19172 components: - type: Transform @@ -90647,7 +90730,7 @@ entities: pos: 17.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19173 components: - type: Transform @@ -90655,7 +90738,7 @@ entities: pos: 18.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19174 components: - type: Transform @@ -90663,7 +90746,7 @@ entities: pos: 19.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19175 components: - type: Transform @@ -90671,7 +90754,7 @@ entities: pos: 20.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19176 components: - type: Transform @@ -90679,7 +90762,7 @@ entities: pos: 18.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19177 components: - type: Transform @@ -90687,7 +90770,7 @@ entities: pos: 19.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19178 components: - type: Transform @@ -90695,7 +90778,7 @@ entities: pos: 20.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19786 components: - type: Transform @@ -90703,7 +90786,7 @@ entities: pos: -48.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19794 components: - type: Transform @@ -90711,7 +90794,7 @@ entities: pos: -48.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19879 components: - type: Transform @@ -90719,7 +90802,7 @@ entities: pos: -47.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21289 components: - type: Transform @@ -90727,7 +90810,7 @@ entities: pos: -56.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21301 components: - type: Transform @@ -90735,7 +90818,7 @@ entities: pos: -57.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21302 components: - type: Transform @@ -90743,7 +90826,7 @@ entities: pos: -58.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21304 components: - type: Transform @@ -90751,7 +90834,7 @@ entities: pos: -58.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21305 components: - type: Transform @@ -90759,7 +90842,7 @@ entities: pos: -59.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21306 components: - type: Transform @@ -90767,7 +90850,7 @@ entities: pos: -60.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21307 components: - type: Transform @@ -90775,7 +90858,7 @@ entities: pos: -61.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21308 components: - type: Transform @@ -90783,7 +90866,7 @@ entities: pos: -62.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21309 components: - type: Transform @@ -90791,7 +90874,7 @@ entities: pos: -63.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21310 components: - type: Transform @@ -90799,7 +90882,7 @@ entities: pos: -64.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21311 components: - type: Transform @@ -90807,7 +90890,7 @@ entities: pos: -65.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21312 components: - type: Transform @@ -90815,7 +90898,7 @@ entities: pos: -66.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21313 components: - type: Transform @@ -90823,7 +90906,7 @@ entities: pos: -67.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21314 components: - type: Transform @@ -90831,7 +90914,7 @@ entities: pos: -68.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21315 components: - type: Transform @@ -90839,7 +90922,7 @@ entities: pos: -69.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21316 components: - type: Transform @@ -90847,7 +90930,7 @@ entities: pos: -70.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21317 components: - type: Transform @@ -90855,7 +90938,7 @@ entities: pos: -71.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21319 components: - type: Transform @@ -90863,7 +90946,7 @@ entities: pos: -73.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21320 components: - type: Transform @@ -90871,7 +90954,7 @@ entities: pos: -74.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21321 components: - type: Transform @@ -90879,7 +90962,7 @@ entities: pos: -75.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21322 components: - type: Transform @@ -90887,7 +90970,7 @@ entities: pos: -76.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21323 components: - type: Transform @@ -90895,7 +90978,7 @@ entities: pos: -77.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21324 components: - type: Transform @@ -90903,7 +90986,7 @@ entities: pos: -78.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21329 components: - type: Transform @@ -90933,7 +91016,7 @@ entities: pos: -32.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21412 components: - type: Transform @@ -90956,7 +91039,7 @@ entities: pos: -7.5,-39.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21659 components: - type: Transform @@ -90964,7 +91047,7 @@ entities: pos: -23.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21660 components: - type: Transform @@ -90972,7 +91055,7 @@ entities: pos: -24.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21661 components: - type: Transform @@ -90980,7 +91063,7 @@ entities: pos: -25.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21662 components: - type: Transform @@ -90988,7 +91071,7 @@ entities: pos: -26.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21663 components: - type: Transform @@ -90996,7 +91079,7 @@ entities: pos: -27.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21664 components: - type: Transform @@ -91004,7 +91087,7 @@ entities: pos: -28.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22790 components: - type: Transform @@ -91012,7 +91095,7 @@ entities: pos: -79.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22791 components: - type: Transform @@ -91020,7 +91103,7 @@ entities: pos: -80.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22792 components: - type: Transform @@ -91028,7 +91111,7 @@ entities: pos: -81.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22793 components: - type: Transform @@ -91036,7 +91119,7 @@ entities: pos: -82.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22794 components: - type: Transform @@ -91044,7 +91127,7 @@ entities: pos: -83.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22795 components: - type: Transform @@ -91052,7 +91135,7 @@ entities: pos: -84.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22796 components: - type: Transform @@ -91060,7 +91143,7 @@ entities: pos: -85.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22797 components: - type: Transform @@ -91068,7 +91151,7 @@ entities: pos: -86.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22798 components: - type: Transform @@ -91076,7 +91159,7 @@ entities: pos: -87.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22799 components: - type: Transform @@ -91084,7 +91167,7 @@ entities: pos: -88.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22800 components: - type: Transform @@ -91092,7 +91175,7 @@ entities: pos: -89.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22801 components: - type: Transform @@ -91100,7 +91183,7 @@ entities: pos: -90.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22802 components: - type: Transform @@ -91108,7 +91191,7 @@ entities: pos: -91.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22803 components: - type: Transform @@ -91116,7 +91199,7 @@ entities: pos: -92.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22804 components: - type: Transform @@ -91124,7 +91207,7 @@ entities: pos: -93.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22805 components: - type: Transform @@ -91132,7 +91215,7 @@ entities: pos: -94.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22806 components: - type: Transform @@ -91140,7 +91223,7 @@ entities: pos: -95.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22807 components: - type: Transform @@ -91148,7 +91231,7 @@ entities: pos: -96.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22808 components: - type: Transform @@ -91156,7 +91239,7 @@ entities: pos: -97.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22809 components: - type: Transform @@ -91164,7 +91247,7 @@ entities: pos: -98.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22811 components: - type: Transform @@ -91172,7 +91255,7 @@ entities: pos: -100.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22812 components: - type: Transform @@ -91180,7 +91263,7 @@ entities: pos: -101.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22813 components: - type: Transform @@ -91188,7 +91271,7 @@ entities: pos: -102.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22815 components: - type: Transform @@ -91196,7 +91279,7 @@ entities: pos: -104.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22816 components: - type: Transform @@ -91204,7 +91287,7 @@ entities: pos: -105.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22817 components: - type: Transform @@ -91212,7 +91295,7 @@ entities: pos: -106.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22818 components: - type: Transform @@ -91220,7 +91303,7 @@ entities: pos: -107.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22819 components: - type: Transform @@ -91228,7 +91311,7 @@ entities: pos: -108.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22820 components: - type: Transform @@ -91236,7 +91319,7 @@ entities: pos: -109.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22821 components: - type: Transform @@ -91244,7 +91327,7 @@ entities: pos: -110.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22824 components: - type: Transform @@ -91252,7 +91335,7 @@ entities: pos: -113.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22825 components: - type: Transform @@ -91260,7 +91343,7 @@ entities: pos: -114.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22826 components: - type: Transform @@ -91268,7 +91351,7 @@ entities: pos: -115.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22827 components: - type: Transform @@ -91276,7 +91359,7 @@ entities: pos: -116.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22830 components: - type: Transform @@ -91284,7 +91367,7 @@ entities: pos: -111.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22831 components: - type: Transform @@ -91292,7 +91375,7 @@ entities: pos: -111.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22832 components: - type: Transform @@ -91300,7 +91383,7 @@ entities: pos: -111.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22833 components: - type: Transform @@ -91308,7 +91391,7 @@ entities: pos: -111.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22834 components: - type: Transform @@ -91316,7 +91399,7 @@ entities: pos: -111.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22835 components: - type: Transform @@ -91324,7 +91407,7 @@ entities: pos: -111.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22836 components: - type: Transform @@ -91332,7 +91415,7 @@ entities: pos: -111.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22837 components: - type: Transform @@ -91340,7 +91423,7 @@ entities: pos: -111.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22838 components: - type: Transform @@ -91348,7 +91431,7 @@ entities: pos: -111.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22840 components: - type: Transform @@ -91356,7 +91439,7 @@ entities: pos: -111.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22841 components: - type: Transform @@ -91364,7 +91447,7 @@ entities: pos: -111.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22842 components: - type: Transform @@ -91372,7 +91455,7 @@ entities: pos: -111.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22843 components: - type: Transform @@ -91380,7 +91463,7 @@ entities: pos: -111.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22844 components: - type: Transform @@ -91388,7 +91471,7 @@ entities: pos: -111.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22845 components: - type: Transform @@ -91396,7 +91479,7 @@ entities: pos: -111.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22848 components: - type: Transform @@ -91404,7 +91487,7 @@ entities: pos: -99.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22849 components: - type: Transform @@ -91412,7 +91495,7 @@ entities: pos: -99.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22850 components: - type: Transform @@ -91420,7 +91503,7 @@ entities: pos: -99.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22851 components: - type: Transform @@ -91428,7 +91511,7 @@ entities: pos: -100.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22852 components: - type: Transform @@ -91436,91 +91519,91 @@ entities: pos: -101.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22853 components: - type: Transform pos: -102.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22854 components: - type: Transform pos: -102.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22855 components: - type: Transform pos: -102.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22856 components: - type: Transform pos: -102.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22857 components: - type: Transform pos: -102.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22858 components: - type: Transform pos: -102.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22859 components: - type: Transform pos: -102.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22860 components: - type: Transform pos: -102.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22861 components: - type: Transform pos: -102.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22862 components: - type: Transform pos: -102.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22863 components: - type: Transform pos: -102.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22864 components: - type: Transform pos: -102.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22865 components: - type: Transform @@ -91528,7 +91611,7 @@ entities: pos: -103.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22866 components: - type: Transform @@ -91536,7 +91619,7 @@ entities: pos: -104.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22867 components: - type: Transform @@ -91544,7 +91627,7 @@ entities: pos: -105.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22868 components: - type: Transform @@ -91552,7 +91635,7 @@ entities: pos: -106.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22869 components: - type: Transform @@ -91560,7 +91643,7 @@ entities: pos: -107.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22870 components: - type: Transform @@ -91568,7 +91651,7 @@ entities: pos: -108.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22871 components: - type: Transform @@ -91576,7 +91659,7 @@ entities: pos: -109.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22900 components: - type: Transform @@ -91584,35 +91667,35 @@ entities: pos: -112.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22901 components: - type: Transform pos: -113.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22902 components: - type: Transform pos: -113.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22903 components: - type: Transform pos: -113.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22904 components: - type: Transform pos: -113.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22905 components: - type: Transform @@ -91620,7 +91703,7 @@ entities: pos: -112.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22919 components: - type: Transform @@ -92697,7 +92780,7 @@ entities: pos: -30.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23652 components: - type: Transform @@ -92705,7 +92788,7 @@ entities: pos: -30.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23977 components: - type: Transform @@ -92713,7 +92796,7 @@ entities: pos: 15.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24128 components: - type: Transform @@ -92721,7 +92804,7 @@ entities: pos: -6.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24130 components: - type: Transform @@ -92729,7 +92812,7 @@ entities: pos: -7.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24131 components: - type: Transform @@ -92737,7 +92820,7 @@ entities: pos: -8.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24132 components: - type: Transform @@ -92745,7 +92828,7 @@ entities: pos: -7.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24135 components: - type: Transform @@ -92753,7 +92836,7 @@ entities: pos: -6.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24357 components: - type: Transform @@ -92761,7 +92844,7 @@ entities: pos: 46.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24750 components: - type: Transform @@ -92769,7 +92852,7 @@ entities: pos: 54.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24827 components: - type: Transform @@ -92777,7 +92860,7 @@ entities: pos: 53.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24828 components: - type: Transform @@ -92785,7 +92868,7 @@ entities: pos: 52.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24829 components: - type: Transform @@ -92793,7 +92876,7 @@ entities: pos: 51.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24830 components: - type: Transform @@ -92801,7 +92884,7 @@ entities: pos: 50.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24831 components: - type: Transform @@ -92809,7 +92892,7 @@ entities: pos: 49.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24832 components: - type: Transform @@ -92817,7 +92900,7 @@ entities: pos: 48.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24833 components: - type: Transform @@ -92825,7 +92908,7 @@ entities: pos: 47.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24835 components: - type: Transform @@ -92833,7 +92916,7 @@ entities: pos: 44.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24836 components: - type: Transform @@ -92841,7 +92924,7 @@ entities: pos: 43.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24837 components: - type: Transform @@ -92849,7 +92932,7 @@ entities: pos: 42.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24838 components: - type: Transform @@ -92857,7 +92940,7 @@ entities: pos: 46.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24839 components: - type: Transform @@ -92865,7 +92948,7 @@ entities: pos: 42.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24840 components: - type: Transform @@ -92873,7 +92956,7 @@ entities: pos: 44.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24841 components: - type: Transform @@ -92881,7 +92964,7 @@ entities: pos: 45.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24842 components: - type: Transform @@ -92889,7 +92972,7 @@ entities: pos: 46.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24843 components: - type: Transform @@ -92897,7 +92980,7 @@ entities: pos: 47.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24844 components: - type: Transform @@ -92905,7 +92988,7 @@ entities: pos: 48.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24846 components: - type: Transform @@ -92913,7 +92996,7 @@ entities: pos: 49.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24847 components: - type: Transform @@ -92921,7 +93004,7 @@ entities: pos: 50.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24848 components: - type: Transform @@ -92929,7 +93012,7 @@ entities: pos: 51.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24849 components: - type: Transform @@ -92937,7 +93020,7 @@ entities: pos: 52.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24850 components: - type: Transform @@ -92945,7 +93028,7 @@ entities: pos: 55.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24851 components: - type: Transform @@ -92953,7 +93036,7 @@ entities: pos: 55.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24852 components: - type: Transform @@ -92961,7 +93044,7 @@ entities: pos: 55.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24853 components: - type: Transform @@ -92969,7 +93052,7 @@ entities: pos: 55.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24854 components: - type: Transform @@ -92977,7 +93060,7 @@ entities: pos: 55.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24855 components: - type: Transform @@ -92985,7 +93068,7 @@ entities: pos: 55.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24856 components: - type: Transform @@ -92993,7 +93076,7 @@ entities: pos: 55.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24857 components: - type: Transform @@ -93001,7 +93084,7 @@ entities: pos: 55.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24858 components: - type: Transform @@ -93009,7 +93092,7 @@ entities: pos: 55.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24859 components: - type: Transform @@ -93017,7 +93100,7 @@ entities: pos: 55.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24860 components: - type: Transform @@ -93025,7 +93108,7 @@ entities: pos: 55.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24861 components: - type: Transform @@ -93033,7 +93116,7 @@ entities: pos: 55.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24862 components: - type: Transform @@ -93041,7 +93124,7 @@ entities: pos: 55.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24863 components: - type: Transform @@ -93049,7 +93132,7 @@ entities: pos: 55.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24864 components: - type: Transform @@ -93057,7 +93140,7 @@ entities: pos: 55.5,40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24865 components: - type: Transform @@ -93065,7 +93148,7 @@ entities: pos: 55.5,41.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24866 components: - type: Transform @@ -93073,7 +93156,7 @@ entities: pos: 55.5,38.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24867 components: - type: Transform @@ -93081,7 +93164,7 @@ entities: pos: 55.5,43.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24868 components: - type: Transform @@ -93089,7 +93172,7 @@ entities: pos: 55.5,44.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24869 components: - type: Transform @@ -93097,7 +93180,7 @@ entities: pos: 55.5,45.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24870 components: - type: Transform @@ -93105,7 +93188,7 @@ entities: pos: 55.5,42.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24872 components: - type: Transform @@ -93113,7 +93196,7 @@ entities: pos: 53.5,44.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24873 components: - type: Transform @@ -93121,7 +93204,7 @@ entities: pos: 53.5,43.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24874 components: - type: Transform @@ -93129,7 +93212,7 @@ entities: pos: 53.5,42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24875 components: - type: Transform @@ -93137,7 +93220,7 @@ entities: pos: 53.5,41.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24876 components: - type: Transform @@ -93145,7 +93228,7 @@ entities: pos: 53.5,39.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24877 components: - type: Transform @@ -93153,7 +93236,7 @@ entities: pos: 53.5,38.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24879 components: - type: Transform @@ -93161,7 +93244,7 @@ entities: pos: 53.5,40.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24880 components: - type: Transform @@ -93169,7 +93252,7 @@ entities: pos: 53.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24881 components: - type: Transform @@ -93177,7 +93260,7 @@ entities: pos: 53.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24882 components: - type: Transform @@ -93185,7 +93268,7 @@ entities: pos: 53.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24883 components: - type: Transform @@ -93193,7 +93276,7 @@ entities: pos: 53.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24884 components: - type: Transform @@ -93201,7 +93284,7 @@ entities: pos: 53.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24885 components: - type: Transform @@ -93209,7 +93292,7 @@ entities: pos: 53.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24886 components: - type: Transform @@ -93217,7 +93300,7 @@ entities: pos: 53.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24887 components: - type: Transform @@ -93225,7 +93308,7 @@ entities: pos: 53.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24888 components: - type: Transform @@ -93233,7 +93316,7 @@ entities: pos: 53.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24889 components: - type: Transform @@ -93241,7 +93324,7 @@ entities: pos: 53.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24890 components: - type: Transform @@ -93249,7 +93332,7 @@ entities: pos: 53.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24892 components: - type: Transform @@ -93257,7 +93340,7 @@ entities: pos: 33.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24893 components: - type: Transform @@ -93265,7 +93348,7 @@ entities: pos: 33.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24894 components: - type: Transform @@ -93273,7 +93356,7 @@ entities: pos: 33.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24895 components: - type: Transform @@ -93281,7 +93364,7 @@ entities: pos: 33.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24896 components: - type: Transform @@ -93289,7 +93372,7 @@ entities: pos: 33.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24897 components: - type: Transform @@ -93297,7 +93380,7 @@ entities: pos: 33.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24898 components: - type: Transform @@ -93305,7 +93388,7 @@ entities: pos: 33.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24899 components: - type: Transform @@ -93313,7 +93396,7 @@ entities: pos: 33.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24900 components: - type: Transform @@ -93321,7 +93404,7 @@ entities: pos: 33.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24901 components: - type: Transform @@ -93329,7 +93412,7 @@ entities: pos: 33.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24903 components: - type: Transform @@ -93337,7 +93420,7 @@ entities: pos: 33.5,38.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24904 components: - type: Transform @@ -93345,7 +93428,7 @@ entities: pos: 33.5,39.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24905 components: - type: Transform @@ -93353,7 +93436,7 @@ entities: pos: 33.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24906 components: - type: Transform @@ -93361,7 +93444,7 @@ entities: pos: 33.5,40.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24907 components: - type: Transform @@ -93369,7 +93452,7 @@ entities: pos: 33.5,41.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24908 components: - type: Transform @@ -93377,7 +93460,7 @@ entities: pos: 33.5,42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24909 components: - type: Transform @@ -93385,7 +93468,7 @@ entities: pos: 33.5,43.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24910 components: - type: Transform @@ -93393,7 +93476,7 @@ entities: pos: 33.5,44.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24911 components: - type: Transform @@ -93401,7 +93484,7 @@ entities: pos: 35.5,44.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24912 components: - type: Transform @@ -93409,7 +93492,7 @@ entities: pos: 35.5,43.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24913 components: - type: Transform @@ -93417,7 +93500,7 @@ entities: pos: 35.5,42.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24914 components: - type: Transform @@ -93425,7 +93508,7 @@ entities: pos: 35.5,41.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24915 components: - type: Transform @@ -93433,7 +93516,7 @@ entities: pos: 35.5,40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24917 components: - type: Transform @@ -93441,7 +93524,7 @@ entities: pos: 35.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24918 components: - type: Transform @@ -93449,7 +93532,7 @@ entities: pos: 35.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24919 components: - type: Transform @@ -93457,7 +93540,7 @@ entities: pos: 35.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24920 components: - type: Transform @@ -93465,7 +93548,7 @@ entities: pos: 35.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24921 components: - type: Transform @@ -93473,7 +93556,7 @@ entities: pos: 35.5,38.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24922 components: - type: Transform @@ -93481,7 +93564,7 @@ entities: pos: 35.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24923 components: - type: Transform @@ -93489,7 +93572,7 @@ entities: pos: 35.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24924 components: - type: Transform @@ -93497,7 +93580,7 @@ entities: pos: 35.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24925 components: - type: Transform @@ -93505,7 +93588,7 @@ entities: pos: 35.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24926 components: - type: Transform @@ -93513,7 +93596,7 @@ entities: pos: 35.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24927 components: - type: Transform @@ -93521,7 +93604,7 @@ entities: pos: 35.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24928 components: - type: Transform @@ -93529,7 +93612,7 @@ entities: pos: 35.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24929 components: - type: Transform @@ -93537,7 +93620,7 @@ entities: pos: 35.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24930 components: - type: Transform @@ -93545,7 +93628,7 @@ entities: pos: 35.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24931 components: - type: Transform @@ -93553,7 +93636,7 @@ entities: pos: 35.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25169 components: - type: Transform @@ -93561,7 +93644,7 @@ entities: pos: 35.5,45.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25170 components: - type: Transform @@ -93569,14 +93652,14 @@ entities: pos: 35.5,46.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25171 components: - type: Transform pos: 55.5,46.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25187 components: - type: Transform @@ -93584,7 +93667,7 @@ entities: pos: 53.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25188 components: - type: Transform @@ -93592,7 +93675,7 @@ entities: pos: 53.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasPipeTJunction entities: - uid: 46 @@ -93602,7 +93685,7 @@ entities: pos: -33.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 220 components: - type: Transform @@ -93610,7 +93693,7 @@ entities: pos: 23.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 306 components: - type: Transform @@ -93618,7 +93701,7 @@ entities: pos: 21.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 409 components: - type: Transform @@ -93626,7 +93709,7 @@ entities: pos: 1.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 417 components: - type: Transform @@ -93634,7 +93717,7 @@ entities: pos: -0.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 429 components: - type: Transform @@ -93642,7 +93725,7 @@ entities: pos: 45.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 474 components: - type: Transform @@ -93650,7 +93733,7 @@ entities: pos: 1.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 479 components: - type: Transform @@ -93658,7 +93741,7 @@ entities: pos: -0.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 499 components: - type: Transform @@ -93666,21 +93749,21 @@ entities: pos: -14.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 508 components: - type: Transform pos: 3.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 511 components: - type: Transform pos: -3.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 795 components: - type: Transform @@ -93688,7 +93771,7 @@ entities: pos: -38.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 840 components: - type: Transform @@ -93696,21 +93779,21 @@ entities: pos: -21.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 877 components: - type: Transform pos: -4.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 878 components: - type: Transform pos: -8.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 887 components: - type: Transform @@ -93718,14 +93801,14 @@ entities: pos: -10.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 896 components: - type: Transform pos: -9.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 953 components: - type: Transform @@ -93733,7 +93816,7 @@ entities: pos: -36.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 960 components: - type: Transform @@ -93741,21 +93824,21 @@ entities: pos: -9.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1036 components: - type: Transform pos: 11.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1043 components: - type: Transform pos: 7.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1045 components: - type: Transform @@ -93763,7 +93846,7 @@ entities: pos: 15.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1047 components: - type: Transform @@ -93771,14 +93854,14 @@ entities: pos: 12.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1051 components: - type: Transform pos: 16.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1052 components: - type: Transform @@ -93786,7 +93869,7 @@ entities: pos: 17.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1059 components: - type: Transform @@ -93794,7 +93877,7 @@ entities: pos: 17.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1061 components: - type: Transform @@ -93802,7 +93885,7 @@ entities: pos: 15.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1066 components: - type: Transform @@ -93810,7 +93893,7 @@ entities: pos: 9.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1077 components: - type: Transform @@ -93818,7 +93901,7 @@ entities: pos: 17.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1079 components: - type: Transform @@ -93826,7 +93909,7 @@ entities: pos: 15.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1096 components: - type: Transform @@ -93834,7 +93917,7 @@ entities: pos: 15.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1114 components: - type: Transform @@ -93842,7 +93925,7 @@ entities: pos: -14.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1115 components: - type: Transform @@ -93850,14 +93933,14 @@ entities: pos: -16.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1116 components: - type: Transform pos: -24.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1128 components: - type: Transform @@ -93865,7 +93948,7 @@ entities: pos: -16.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1148 components: - type: Transform @@ -93873,7 +93956,7 @@ entities: pos: -14.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1150 components: - type: Transform @@ -93881,28 +93964,28 @@ entities: pos: -16.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1226 components: - type: Transform pos: -10.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1259 components: - type: Transform pos: 13.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1262 components: - type: Transform pos: 10.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1265 components: - type: Transform @@ -93910,14 +93993,14 @@ entities: pos: 12.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1269 components: - type: Transform pos: 9.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1273 components: - type: Transform @@ -93925,7 +94008,7 @@ entities: pos: 15.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1275 components: - type: Transform @@ -93933,7 +94016,7 @@ entities: pos: 15.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1276 components: - type: Transform @@ -93941,7 +94024,7 @@ entities: pos: 17.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1410 components: - type: Transform @@ -93949,7 +94032,7 @@ entities: pos: 3.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1417 components: - type: Transform @@ -93957,7 +94040,7 @@ entities: pos: -0.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1419 components: - type: Transform @@ -93965,7 +94048,7 @@ entities: pos: 1.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1498 components: - type: Transform @@ -93973,7 +94056,7 @@ entities: pos: -19.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1579 components: - type: Transform @@ -93981,21 +94064,21 @@ entities: pos: -18.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1608 components: - type: Transform pos: -29.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1610 components: - type: Transform pos: -23.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1665 components: - type: Transform @@ -94003,7 +94086,7 @@ entities: pos: -21.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1708 components: - type: Transform @@ -94011,14 +94094,14 @@ entities: pos: -34.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1714 components: - type: Transform pos: -28.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1715 components: - type: Transform @@ -94026,7 +94109,7 @@ entities: pos: -30.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1719 components: - type: Transform @@ -94034,7 +94117,7 @@ entities: pos: -22.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1727 components: - type: Transform @@ -94042,14 +94125,14 @@ entities: pos: -32.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1756 components: - type: Transform pos: -22.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1775 components: - type: Transform @@ -94057,7 +94140,7 @@ entities: pos: -20.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1781 components: - type: Transform @@ -94065,7 +94148,7 @@ entities: pos: -25.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1785 components: - type: Transform @@ -94073,7 +94156,7 @@ entities: pos: -28.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1814 components: - type: Transform @@ -94081,14 +94164,14 @@ entities: pos: -33.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1820 components: - type: Transform pos: -15.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1830 components: - type: Transform @@ -94096,7 +94179,7 @@ entities: pos: -22.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1834 components: - type: Transform @@ -94104,7 +94187,7 @@ entities: pos: -30.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1848 components: - type: Transform @@ -94112,7 +94195,7 @@ entities: pos: -36.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1994 components: - type: Transform @@ -94120,7 +94203,7 @@ entities: pos: -36.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2105 components: - type: Transform @@ -94128,7 +94211,7 @@ entities: pos: -30.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2127 components: - type: Transform @@ -94136,7 +94219,7 @@ entities: pos: -26.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2182 components: - type: Transform @@ -94144,7 +94227,7 @@ entities: pos: -30.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2276 components: - type: Transform @@ -94152,7 +94235,7 @@ entities: pos: 32.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2358 components: - type: Transform @@ -94160,7 +94243,7 @@ entities: pos: 32.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2359 components: - type: Transform @@ -94168,21 +94251,21 @@ entities: pos: 30.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2377 components: - type: Transform pos: 24.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2380 components: - type: Transform pos: 25.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2473 components: - type: Transform @@ -94190,21 +94273,21 @@ entities: pos: 23.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2481 components: - type: Transform pos: 30.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2482 components: - type: Transform pos: 32.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2486 components: - type: Transform @@ -94212,7 +94295,7 @@ entities: pos: 34.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2498 components: - type: Transform @@ -94220,7 +94303,7 @@ entities: pos: 29.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2499 components: - type: Transform @@ -94228,7 +94311,7 @@ entities: pos: 33.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2537 components: - type: Transform @@ -94236,7 +94319,7 @@ entities: pos: 32.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2578 components: - type: Transform @@ -94244,14 +94327,14 @@ entities: pos: -21.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2693 components: - type: Transform pos: 40.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2694 components: - type: Transform @@ -94259,7 +94342,7 @@ entities: pos: 40.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2799 components: - type: Transform @@ -94267,7 +94350,7 @@ entities: pos: 19.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2802 components: - type: Transform @@ -94275,7 +94358,7 @@ entities: pos: 17.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2812 components: - type: Transform @@ -94283,7 +94366,7 @@ entities: pos: 17.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2869 components: - type: Transform @@ -94291,7 +94374,7 @@ entities: pos: 44.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2881 components: - type: Transform @@ -94299,7 +94382,7 @@ entities: pos: 35.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2902 components: - type: Transform @@ -94307,7 +94390,7 @@ entities: pos: 44.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2981 components: - type: Transform @@ -94323,7 +94406,7 @@ entities: pos: 45.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2989 components: - type: Transform @@ -94331,7 +94414,7 @@ entities: pos: 44.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3001 components: - type: Transform @@ -94347,7 +94430,7 @@ entities: pos: 44.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3121 components: - type: Transform @@ -94362,7 +94445,7 @@ entities: pos: 47.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3189 components: - type: Transform @@ -94370,7 +94453,7 @@ entities: pos: 33.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3205 components: - type: Transform @@ -94378,7 +94461,7 @@ entities: pos: 45.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3209 components: - type: Transform @@ -94401,7 +94484,7 @@ entities: pos: 45.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3367 components: - type: Transform @@ -94409,7 +94492,7 @@ entities: pos: -3.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3573 components: - type: Transform @@ -94417,7 +94500,7 @@ entities: pos: 45.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3915 components: - type: Transform @@ -94425,7 +94508,7 @@ entities: pos: 1.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3918 components: - type: Transform @@ -94433,7 +94516,7 @@ entities: pos: -0.5,-39.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3920 components: - type: Transform @@ -94441,7 +94524,7 @@ entities: pos: -0.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3924 components: - type: Transform @@ -94449,7 +94532,7 @@ entities: pos: 1.5,-46.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3929 components: - type: Transform @@ -94457,7 +94540,7 @@ entities: pos: 1.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3930 components: - type: Transform @@ -94465,7 +94548,7 @@ entities: pos: 1.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3950 components: - type: Transform @@ -94473,7 +94556,7 @@ entities: pos: -8.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3984 components: - type: Transform @@ -94481,7 +94564,7 @@ entities: pos: -0.5,-45.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3998 components: - type: Transform @@ -94489,7 +94572,7 @@ entities: pos: -54.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4110 components: - type: Transform @@ -94497,7 +94580,7 @@ entities: pos: 34.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4117 components: - type: Transform @@ -94505,7 +94588,7 @@ entities: pos: 45.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4123 components: - type: Transform @@ -94513,7 +94596,7 @@ entities: pos: 33.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4146 components: - type: Transform @@ -94521,7 +94604,7 @@ entities: pos: 33.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4154 components: - type: Transform @@ -94529,7 +94612,7 @@ entities: pos: 34.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4220 components: - type: Transform @@ -94537,14 +94620,14 @@ entities: pos: -31.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4336 components: - type: Transform pos: 39.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4354 components: - type: Transform @@ -94552,7 +94635,7 @@ entities: pos: 39.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4483 components: - type: Transform @@ -94560,14 +94643,14 @@ entities: pos: 34.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4541 components: - type: Transform pos: -4.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4630 components: - type: Transform @@ -94575,7 +94658,7 @@ entities: pos: -0.5,-61.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4834 components: - type: Transform @@ -94583,7 +94666,7 @@ entities: pos: -0.5,-47.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4835 components: - type: Transform @@ -94591,7 +94674,7 @@ entities: pos: 1.5,-48.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4915 components: - type: Transform @@ -94599,7 +94682,7 @@ entities: pos: 1.5,-72.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4965 components: - type: Transform @@ -94607,7 +94690,7 @@ entities: pos: 1.5,-61.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4990 components: - type: Transform @@ -94615,7 +94698,7 @@ entities: pos: -0.5,-72.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5472 components: - type: Transform @@ -94623,7 +94706,7 @@ entities: pos: -27.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5476 components: - type: Transform @@ -94631,7 +94714,7 @@ entities: pos: -38.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5532 components: - type: Transform @@ -94639,7 +94722,7 @@ entities: pos: 17.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5562 components: - type: Transform @@ -94647,7 +94730,7 @@ entities: pos: -14.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5583 components: - type: Transform @@ -94661,7 +94744,7 @@ entities: pos: -0.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5730 components: - type: Transform @@ -94669,7 +94752,7 @@ entities: pos: 1.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5733 components: - type: Transform @@ -94677,7 +94760,7 @@ entities: pos: -0.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5736 components: - type: Transform @@ -94685,7 +94768,7 @@ entities: pos: 1.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5746 components: - type: Transform @@ -94693,7 +94776,7 @@ entities: pos: -9.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5765 components: - type: Transform @@ -94701,14 +94784,14 @@ entities: pos: 16.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5817 components: - type: Transform pos: 18.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5829 components: - type: Transform @@ -94716,7 +94799,7 @@ entities: pos: 34.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5847 components: - type: Transform @@ -94724,7 +94807,7 @@ entities: pos: 1.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5865 components: - type: Transform @@ -94732,21 +94815,21 @@ entities: pos: -36.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5890 components: - type: Transform pos: 12.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5891 components: - type: Transform pos: -36.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5892 components: - type: Transform @@ -94754,7 +94837,7 @@ entities: pos: -28.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5921 components: - type: Transform @@ -94762,7 +94845,7 @@ entities: pos: 30.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5922 components: - type: Transform @@ -94770,21 +94853,21 @@ entities: pos: 32.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5942 components: - type: Transform pos: -37.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5953 components: - type: Transform pos: -37.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5971 components: - type: Transform @@ -94792,7 +94875,7 @@ entities: pos: -30.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6005 components: - type: Transform @@ -94800,7 +94883,7 @@ entities: pos: -41.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6008 components: - type: Transform @@ -94808,7 +94891,7 @@ entities: pos: -38.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6012 components: - type: Transform @@ -94816,14 +94899,14 @@ entities: pos: -36.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6020 components: - type: Transform pos: -49.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6024 components: - type: Transform @@ -94831,7 +94914,7 @@ entities: pos: -44.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6026 components: - type: Transform @@ -94839,14 +94922,14 @@ entities: pos: -42.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6037 components: - type: Transform pos: -42.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6109 components: - type: Transform @@ -94854,7 +94937,7 @@ entities: pos: -49.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6120 components: - type: Transform @@ -94862,14 +94945,14 @@ entities: pos: -49.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6214 components: - type: Transform pos: 0.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6278 components: - type: Transform @@ -94877,7 +94960,7 @@ entities: pos: 15.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6280 components: - type: Transform @@ -94885,7 +94968,7 @@ entities: pos: 15.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6282 components: - type: Transform @@ -94893,7 +94976,7 @@ entities: pos: 15.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6333 components: - type: Transform @@ -94901,35 +94984,35 @@ entities: pos: -18.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6380 components: - type: Transform pos: -41.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6426 components: - type: Transform pos: 0.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6660 components: - type: Transform pos: -42.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6662 components: - type: Transform pos: -42.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6810 components: - type: Transform @@ -94937,7 +95020,7 @@ entities: pos: 17.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7285 components: - type: Transform @@ -94945,7 +95028,7 @@ entities: pos: -36.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7464 components: - type: Transform @@ -94953,7 +95036,7 @@ entities: pos: -38.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7603 components: - type: Transform @@ -94961,7 +95044,7 @@ entities: pos: -16.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7682 components: - type: Transform @@ -94969,7 +95052,7 @@ entities: pos: -38.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7683 components: - type: Transform @@ -94977,7 +95060,7 @@ entities: pos: -38.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7902 components: - type: Transform @@ -94985,7 +95068,7 @@ entities: pos: -31.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8030 components: - type: Transform @@ -94993,7 +95076,7 @@ entities: pos: -22.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8079 components: - type: Transform @@ -95016,14 +95099,14 @@ entities: pos: -36.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8224 components: - type: Transform pos: -31.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8228 components: - type: Transform @@ -95031,7 +95114,7 @@ entities: pos: -21.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8241 components: - type: Transform @@ -95039,14 +95122,14 @@ entities: pos: -36.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8245 components: - type: Transform pos: -24.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8248 components: - type: Transform @@ -95054,7 +95137,7 @@ entities: pos: -20.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8260 components: - type: Transform @@ -95062,7 +95145,7 @@ entities: pos: -37.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8353 components: - type: Transform @@ -95070,7 +95153,7 @@ entities: pos: -44.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8537 components: - type: Transform @@ -95078,7 +95161,7 @@ entities: pos: 15.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8548 components: - type: Transform @@ -95086,7 +95169,7 @@ entities: pos: 15.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8570 components: - type: Transform @@ -95094,7 +95177,7 @@ entities: pos: -45.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8884 components: - type: Transform @@ -95102,14 +95185,14 @@ entities: pos: 23.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8941 components: - type: Transform pos: -42.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9148 components: - type: Transform @@ -95117,7 +95200,7 @@ entities: pos: -19.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9233 components: - type: Transform @@ -95125,7 +95208,7 @@ entities: pos: 17.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9455 components: - type: Transform @@ -95133,21 +95216,21 @@ entities: pos: -55.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9458 components: - type: Transform pos: -52.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9637 components: - type: Transform pos: -55.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11153 components: - type: Transform @@ -95155,14 +95238,14 @@ entities: pos: 41.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11722 components: - type: Transform pos: 42.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11734 components: - type: Transform @@ -95170,7 +95253,7 @@ entities: pos: 15.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 11761 components: - type: Transform @@ -95178,7 +95261,7 @@ entities: pos: 17.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12196 components: - type: Transform @@ -95202,7 +95285,7 @@ entities: pos: 39.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12626 components: - type: Transform @@ -95210,7 +95293,7 @@ entities: pos: 38.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12744 components: - type: Transform @@ -95218,28 +95301,28 @@ entities: pos: 49.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13113 components: - type: Transform pos: 48.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13245 components: - type: Transform pos: 23.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13443 components: - type: Transform pos: -21.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13447 components: - type: Transform @@ -95247,7 +95330,7 @@ entities: pos: -21.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13448 components: - type: Transform @@ -95255,14 +95338,14 @@ entities: pos: -21.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13504 components: - type: Transform pos: 47.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13534 components: - type: Transform @@ -95270,14 +95353,14 @@ entities: pos: 43.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13546 components: - type: Transform pos: 21.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13612 components: - type: Transform @@ -95285,7 +95368,7 @@ entities: pos: 31.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13673 components: - type: Transform @@ -95293,7 +95376,7 @@ entities: pos: -8.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13808 components: - type: Transform @@ -95301,56 +95384,56 @@ entities: pos: 38.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13914 components: - type: Transform pos: 49.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14015 components: - type: Transform pos: 32.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14021 components: - type: Transform pos: 38.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14022 components: - type: Transform pos: 17.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14029 components: - type: Transform pos: 36.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14044 components: - type: Transform pos: 22.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14047 components: - type: Transform pos: 39.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14237 components: - type: Transform @@ -95358,7 +95441,7 @@ entities: pos: -16.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14251 components: - type: Transform @@ -95366,7 +95449,7 @@ entities: pos: -16.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14259 components: - type: Transform @@ -95374,21 +95457,21 @@ entities: pos: -16.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14270 components: - type: Transform pos: -26.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14274 components: - type: Transform pos: -36.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14280 components: - type: Transform @@ -95396,14 +95479,14 @@ entities: pos: -22.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14295 components: - type: Transform pos: -9.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14308 components: - type: Transform @@ -95411,7 +95494,7 @@ entities: pos: -9.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14312 components: - type: Transform @@ -95419,7 +95502,7 @@ entities: pos: -8.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14313 components: - type: Transform @@ -95427,7 +95510,7 @@ entities: pos: -8.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14468 components: - type: Transform @@ -95435,7 +95518,7 @@ entities: pos: -23.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14478 components: - type: Transform @@ -95443,7 +95526,7 @@ entities: pos: -24.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14490 components: - type: Transform @@ -95451,7 +95534,7 @@ entities: pos: -26.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14491 components: - type: Transform @@ -95459,7 +95542,7 @@ entities: pos: -27.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14492 components: - type: Transform @@ -95467,7 +95550,7 @@ entities: pos: -24.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14496 components: - type: Transform @@ -95475,7 +95558,7 @@ entities: pos: -23.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14735 components: - type: Transform @@ -95483,7 +95566,7 @@ entities: pos: -22.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14736 components: - type: Transform @@ -95496,7 +95579,7 @@ entities: pos: -29.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14746 components: - type: Transform @@ -95504,7 +95587,7 @@ entities: pos: -25.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14750 components: - type: Transform @@ -95512,7 +95595,7 @@ entities: pos: -22.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14751 components: - type: Transform @@ -95520,7 +95603,7 @@ entities: pos: -16.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14753 components: - type: Transform @@ -95528,7 +95611,7 @@ entities: pos: -20.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14763 components: - type: Transform @@ -95536,28 +95619,28 @@ entities: pos: -20.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14800 components: - type: Transform pos: -34.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14827 components: - type: Transform pos: -20.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14866 components: - type: Transform pos: -24.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14880 components: - type: Transform @@ -95587,7 +95670,7 @@ entities: pos: -16.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15138 components: - type: Transform @@ -95603,7 +95686,7 @@ entities: pos: -32.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15164 components: - type: Transform @@ -95737,14 +95820,14 @@ entities: pos: -11.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15605 components: - type: Transform pos: -21.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15617 components: - type: Transform @@ -95752,7 +95835,7 @@ entities: pos: -18.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15621 components: - type: Transform @@ -95760,7 +95843,7 @@ entities: pos: -14.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15626 components: - type: Transform @@ -95768,7 +95851,7 @@ entities: pos: -10.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15635 components: - type: Transform @@ -95776,7 +95859,7 @@ entities: pos: -12.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15637 components: - type: Transform @@ -95784,7 +95867,7 @@ entities: pos: -10.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15647 components: - type: Transform @@ -95792,7 +95875,7 @@ entities: pos: -12.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15661 components: - type: Transform @@ -95800,7 +95883,7 @@ entities: pos: -0.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15664 components: - type: Transform @@ -95808,14 +95891,14 @@ entities: pos: -3.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16563 components: - type: Transform pos: -2.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16571 components: - type: Transform @@ -95823,7 +95906,7 @@ entities: pos: -2.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16576 components: - type: Transform @@ -95831,14 +95914,14 @@ entities: pos: -3.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16580 components: - type: Transform pos: -0.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16581 components: - type: Transform @@ -95846,14 +95929,14 @@ entities: pos: -2.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16582 components: - type: Transform pos: -3.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16594 components: - type: Transform @@ -95861,7 +95944,7 @@ entities: pos: -3.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16599 components: - type: Transform @@ -95869,7 +95952,7 @@ entities: pos: -2.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16608 components: - type: Transform @@ -95877,7 +95960,7 @@ entities: pos: -0.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16612 components: - type: Transform @@ -95885,7 +95968,7 @@ entities: pos: -1.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16632 components: - type: Transform @@ -95893,28 +95976,28 @@ entities: pos: 1.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16645 components: - type: Transform pos: 1.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16647 components: - type: Transform pos: 5.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16648 components: - type: Transform pos: 4.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16654 components: - type: Transform @@ -95922,14 +96005,14 @@ entities: pos: 10.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16656 components: - type: Transform pos: 2.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16659 components: - type: Transform @@ -95937,7 +96020,7 @@ entities: pos: 3.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16664 components: - type: Transform @@ -95945,7 +96028,7 @@ entities: pos: 10.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16971 components: - type: Transform @@ -95961,7 +96044,7 @@ entities: pos: 37.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17525 components: - type: Transform @@ -95969,14 +96052,14 @@ entities: pos: 21.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17529 components: - type: Transform pos: 41.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17538 components: - type: Transform @@ -95984,28 +96067,28 @@ entities: pos: 39.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17570 components: - type: Transform pos: -38.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17580 components: - type: Transform pos: -43.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17583 components: - type: Transform pos: -30.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17585 components: - type: Transform @@ -96013,7 +96096,7 @@ entities: pos: -31.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17629 components: - type: Transform @@ -96021,7 +96104,7 @@ entities: pos: 22.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17841 components: - type: Transform @@ -96029,7 +96112,7 @@ entities: pos: 41.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18067 components: - type: Transform @@ -96043,7 +96126,7 @@ entities: pos: -0.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18223 components: - type: Transform @@ -96051,28 +96134,28 @@ entities: pos: -0.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18242 components: - type: Transform pos: 1.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18243 components: - type: Transform pos: -0.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18255 components: - type: Transform pos: -3.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18256 components: - type: Transform @@ -96080,7 +96163,7 @@ entities: pos: -3.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18424 components: - type: Transform @@ -96088,7 +96171,7 @@ entities: pos: -0.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18440 components: - type: Transform @@ -96096,7 +96179,7 @@ entities: pos: 44.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18504 components: - type: Transform @@ -96104,7 +96187,7 @@ entities: pos: -43.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18531 components: - type: Transform @@ -96112,7 +96195,7 @@ entities: pos: 2.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18649 components: - type: Transform @@ -96120,7 +96203,7 @@ entities: pos: 51.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18659 components: - type: Transform @@ -96128,21 +96211,21 @@ entities: pos: 52.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18662 components: - type: Transform pos: 52.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18669 components: - type: Transform pos: 51.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18717 components: - type: Transform @@ -96150,7 +96233,7 @@ entities: pos: 37.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21168 components: - type: Transform @@ -96158,7 +96241,7 @@ entities: pos: -16.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21318 components: - type: Transform @@ -96166,7 +96249,7 @@ entities: pos: -72.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21408 components: - type: Transform @@ -96174,7 +96257,7 @@ entities: pos: -31.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21416 components: - type: Transform @@ -96214,7 +96297,7 @@ entities: pos: -29.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22810 components: - type: Transform @@ -96222,28 +96305,28 @@ entities: pos: -99.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22814 components: - type: Transform pos: -103.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22823 components: - type: Transform pos: -112.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22828 components: - type: Transform pos: -117.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22839 components: - type: Transform @@ -96251,7 +96334,7 @@ entities: pos: -111.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22847 components: - type: Transform @@ -96259,7 +96342,7 @@ entities: pos: -99.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22883 components: - type: Transform @@ -96267,7 +96350,7 @@ entities: pos: -118.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22892 components: - type: Transform @@ -96275,7 +96358,7 @@ entities: pos: -111.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22930 components: - type: Transform @@ -96368,7 +96451,7 @@ entities: pos: -6.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24658 components: - type: Transform @@ -96376,7 +96459,7 @@ entities: pos: -1.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24748 components: - type: Transform @@ -96384,7 +96467,7 @@ entities: pos: 55.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24749 components: - type: Transform @@ -96392,14 +96475,14 @@ entities: pos: 53.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24845 components: - type: Transform pos: 43.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24871 components: - type: Transform @@ -96407,7 +96490,7 @@ entities: pos: 55.5,39.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24916 components: - type: Transform @@ -96415,7 +96498,7 @@ entities: pos: 35.5,39.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25168 components: - type: Transform @@ -96423,7 +96506,7 @@ entities: pos: 33.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25172 components: - type: Transform @@ -96431,7 +96514,7 @@ entities: pos: 53.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25182 components: - type: Transform @@ -96439,7 +96522,7 @@ entities: pos: 45.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasPort entities: - uid: 111 @@ -96516,14 +96599,14 @@ entities: pos: -16.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14721 components: - type: Transform pos: -15.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15005 components: - type: Transform @@ -96572,7 +96655,7 @@ entities: pos: -8.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21667 components: - type: Transform @@ -96580,7 +96663,7 @@ entities: pos: -30.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21668 components: - type: Transform @@ -96588,7 +96671,7 @@ entities: pos: -30.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21673 components: - type: Transform @@ -96655,7 +96738,7 @@ entities: pos: 48.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8074 components: - type: Transform @@ -96706,7 +96789,7 @@ entities: pos: -33.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14774 components: - type: Transform @@ -96778,7 +96861,7 @@ entities: pos: -34.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15143 components: - type: Transform @@ -96786,7 +96869,7 @@ entities: pos: -34.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15281 components: - type: Transform @@ -96818,21 +96901,21 @@ entities: pos: -20.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22884 components: - type: Transform pos: -119.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22885 components: - type: Transform pos: -118.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23049 components: - type: Transform @@ -97023,7 +97106,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14837 components: - type: Transform @@ -97066,7 +97149,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15345 components: - type: Transform @@ -97127,15 +97210,18 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-27.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 12751 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 114 components: - type: Transform pos: 49.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 116 components: - type: Transform @@ -97146,14 +97232,14 @@ entities: deviceLists: - 8483 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 127 components: - type: Transform pos: 20.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 179 components: - type: Transform @@ -97161,7 +97247,7 @@ entities: pos: 20.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 275 components: - type: Transform @@ -97169,7 +97255,7 @@ entities: pos: 21.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 426 components: - type: Transform @@ -97177,7 +97263,7 @@ entities: pos: 0.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 482 components: - type: Transform @@ -97185,7 +97271,7 @@ entities: pos: 0.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 777 components: - type: Transform @@ -97196,7 +97282,7 @@ entities: deviceLists: - 148 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 778 components: - type: Transform @@ -97207,7 +97293,7 @@ entities: deviceLists: - 231 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 792 components: - type: Transform @@ -97219,15 +97305,18 @@ entities: - 1960 - 4709 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 910 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-27.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 12751 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 928 components: - type: Transform @@ -97238,7 +97327,7 @@ entities: deviceLists: - 57 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 946 components: - type: Transform @@ -97246,7 +97335,7 @@ entities: pos: -48.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1133 components: - type: Transform @@ -97257,7 +97346,7 @@ entities: deviceLists: - 4709 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1385 components: - type: Transform @@ -97273,7 +97362,7 @@ entities: pos: 5.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1429 components: - type: Transform @@ -97281,7 +97370,7 @@ entities: pos: 0.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1455 components: - type: Transform @@ -97289,7 +97378,7 @@ entities: pos: 11.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1511 components: - type: Transform @@ -97300,7 +97389,7 @@ entities: deviceLists: - 57 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1660 components: - type: Transform @@ -97310,7 +97399,7 @@ entities: deviceLists: - 21507 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1682 components: - type: Transform @@ -97320,7 +97409,7 @@ entities: deviceLists: - 8516 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1731 components: - type: Transform @@ -97328,14 +97417,14 @@ entities: pos: -19.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1780 components: - type: Transform pos: -20.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1787 components: - type: Transform @@ -97347,7 +97436,7 @@ entities: - 21612 - 12 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1845 components: - type: Transform @@ -97358,7 +97447,7 @@ entities: deviceLists: - 5933 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1966 components: - type: Transform @@ -97369,7 +97458,7 @@ entities: deviceLists: - 148 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1971 components: - type: Transform @@ -97380,7 +97469,7 @@ entities: deviceLists: - 231 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1983 components: - type: Transform @@ -97390,14 +97479,14 @@ entities: deviceLists: - 178 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1996 components: - type: Transform pos: -33.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2027 components: - type: Transform @@ -97405,7 +97494,7 @@ entities: pos: -22.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2208 components: - type: Transform @@ -97413,7 +97502,7 @@ entities: pos: 34.5,-36.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2215 components: - type: Transform @@ -97421,7 +97510,7 @@ entities: pos: 34.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2370 components: - type: Transform @@ -97429,7 +97518,7 @@ entities: pos: 24.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2371 components: - type: Transform @@ -97437,7 +97526,7 @@ entities: pos: 25.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2560 components: - type: Transform @@ -97445,7 +97534,7 @@ entities: pos: 31.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2706 components: - type: Transform @@ -97453,7 +97542,7 @@ entities: pos: 18.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2826 components: - type: Transform @@ -97461,7 +97550,7 @@ entities: pos: 44.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 2984 components: - type: Transform @@ -97469,7 +97558,7 @@ entities: pos: 47.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3002 components: - type: Transform @@ -97492,7 +97581,7 @@ entities: pos: 45.5,-39.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3692 components: - type: Transform @@ -97500,21 +97589,21 @@ entities: pos: 16.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3964 components: - type: Transform pos: -13.5,-41.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3965 components: - type: Transform pos: -8.5,-41.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 3986 components: - type: Transform @@ -97522,7 +97611,7 @@ entities: pos: 0.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4537 components: - type: Transform @@ -97530,7 +97619,7 @@ entities: pos: -2.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 4953 components: - type: Transform @@ -97538,7 +97627,7 @@ entities: pos: 0.5,-48.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5364 components: - type: Transform @@ -97549,14 +97638,14 @@ entities: deviceLists: - 3204 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5412 components: - type: Transform pos: 12.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5439 components: - type: Transform @@ -97564,7 +97653,7 @@ entities: pos: 43.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5445 components: - type: Transform @@ -97572,14 +97661,14 @@ entities: pos: 29.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5446 components: - type: Transform pos: 33.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5518 components: - type: Transform @@ -97587,14 +97676,14 @@ entities: pos: 39.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5585 components: - type: Transform pos: -44.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5739 components: - type: Transform @@ -97602,7 +97691,7 @@ entities: pos: 2.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5822 components: - type: Transform @@ -97610,7 +97699,7 @@ entities: pos: 17.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5824 components: - type: Transform @@ -97618,7 +97707,7 @@ entities: pos: 34.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5843 components: - type: Transform @@ -97626,7 +97715,7 @@ entities: pos: 0.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5929 components: - type: Transform @@ -97634,7 +97723,7 @@ entities: pos: -28.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5938 components: - type: Transform @@ -97642,7 +97731,7 @@ entities: pos: -52.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5951 components: - type: Transform @@ -97650,7 +97739,7 @@ entities: pos: -41.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5952 components: - type: Transform @@ -97662,7 +97751,7 @@ entities: - 21612 - 12 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5954 components: - type: Transform @@ -97670,7 +97759,7 @@ entities: pos: 10.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5955 components: - type: Transform @@ -97678,7 +97767,7 @@ entities: pos: 12.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5956 components: - type: Transform @@ -97686,7 +97775,7 @@ entities: pos: 11.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5980 components: - type: Transform @@ -97694,14 +97783,14 @@ entities: pos: -43.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5987 components: - type: Transform pos: -43.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 5990 components: - type: Transform @@ -97709,7 +97798,7 @@ entities: pos: -34.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6002 components: - type: Transform @@ -97717,21 +97806,21 @@ entities: pos: -29.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6032 components: - type: Transform pos: -52.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6203 components: - type: Transform pos: -22.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6300 components: - type: Transform @@ -97739,7 +97828,7 @@ entities: pos: 11.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6417 components: - type: Transform @@ -97747,7 +97836,7 @@ entities: pos: 2.5,-61.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6418 components: - type: Transform @@ -97755,7 +97844,7 @@ entities: pos: 2.5,-72.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6770 components: - type: Transform @@ -97763,7 +97852,7 @@ entities: pos: 9.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6789 components: - type: Transform @@ -97771,7 +97860,7 @@ entities: pos: -42.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 6835 components: - type: Transform @@ -97779,7 +97868,7 @@ entities: pos: 40.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7387 components: - type: Transform @@ -97787,7 +97876,7 @@ entities: pos: 1.5,-76.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7476 components: - type: Transform @@ -97798,7 +97887,7 @@ entities: deviceLists: - 24769 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7484 components: - type: Transform @@ -97806,7 +97895,7 @@ entities: pos: 0.5,-56.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7485 components: - type: Transform @@ -97814,7 +97903,7 @@ entities: pos: -9.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 7916 components: - type: Transform @@ -97822,7 +97911,7 @@ entities: pos: -33.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8087 components: - type: Transform @@ -97853,8 +97942,11 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-46.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 21595 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8267 components: - type: Transform @@ -97862,7 +97954,7 @@ entities: pos: -33.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8388 components: - type: Transform @@ -97874,7 +97966,7 @@ entities: - 21612 - 12 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8619 components: - type: Transform @@ -97882,7 +97974,7 @@ entities: pos: 16.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 8962 components: - type: Transform @@ -97890,7 +97982,7 @@ entities: pos: 32.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9016 components: - type: Transform @@ -97898,7 +97990,7 @@ entities: pos: 47.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9046 components: - type: Transform @@ -97906,7 +97998,7 @@ entities: pos: 40.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9063 components: - type: Transform @@ -97914,7 +98006,7 @@ entities: pos: 29.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9150 components: - type: Transform @@ -97925,7 +98017,7 @@ entities: deviceLists: - 8516 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9157 components: - type: Transform @@ -97936,7 +98028,7 @@ entities: deviceLists: - 105 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9471 components: - type: Transform @@ -97947,7 +98039,7 @@ entities: deviceLists: - 7065 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9472 components: - type: Transform @@ -97958,7 +98050,7 @@ entities: deviceLists: - 11464 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9607 components: - type: Transform @@ -97966,7 +98058,7 @@ entities: pos: -42.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9651 components: - type: Transform @@ -97977,7 +98069,7 @@ entities: deviceLists: - 11464 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 9678 components: - type: Transform @@ -97985,14 +98077,17 @@ entities: pos: -37.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10586 components: - type: Transform pos: -27.5,-0.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 23925 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 10678 components: - type: Transform @@ -98000,7 +98095,7 @@ entities: pos: -19.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12589 components: - type: Transform @@ -98008,7 +98103,7 @@ entities: pos: 16.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12592 components: - type: Transform @@ -98016,7 +98111,7 @@ entities: pos: 16.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12623 components: - type: Transform @@ -98024,7 +98119,7 @@ entities: pos: 43.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12624 components: - type: Transform @@ -98032,7 +98127,7 @@ entities: pos: 41.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12839 components: - type: Transform @@ -98040,21 +98135,21 @@ entities: pos: -48.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 12868 components: - type: Transform pos: 40.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13074 components: - type: Transform pos: 38.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13241 components: - type: Transform @@ -98062,7 +98157,7 @@ entities: pos: 19.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13242 components: - type: Transform @@ -98070,7 +98165,7 @@ entities: pos: 16.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13248 components: - type: Transform @@ -98080,14 +98175,14 @@ entities: deviceLists: - 1229 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13536 components: - type: Transform pos: 16.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13548 components: - type: Transform @@ -98095,7 +98190,7 @@ entities: pos: 21.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13589 components: - type: Transform @@ -98103,21 +98198,24 @@ entities: pos: 4.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 13800 components: - type: Transform pos: -30.5,-1.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 23926 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14302 components: - type: Transform pos: -7.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14325 components: - type: Transform @@ -98125,7 +98223,7 @@ entities: pos: -8.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14501 components: - type: Transform @@ -98133,14 +98231,14 @@ entities: pos: -23.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14502 components: - type: Transform pos: -23.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14642 components: - type: Transform @@ -98148,7 +98246,7 @@ entities: pos: -19.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14752 components: - type: Transform @@ -98156,7 +98254,7 @@ entities: pos: -21.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 14770 components: - type: Transform @@ -98166,21 +98264,21 @@ entities: deviceLists: - 23956 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15651 components: - type: Transform pos: -18.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 15652 components: - type: Transform pos: -14.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16559 components: - type: Transform @@ -98188,7 +98286,7 @@ entities: pos: -29.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16604 components: - type: Transform @@ -98196,14 +98294,14 @@ entities: pos: -11.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16619 components: - type: Transform pos: -0.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16620 components: - type: Transform @@ -98211,7 +98309,7 @@ entities: pos: 0.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16635 components: - type: Transform @@ -98222,7 +98320,7 @@ entities: deviceLists: - 15745 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16643 components: - type: Transform @@ -98230,22 +98328,28 @@ entities: pos: -2.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16666 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,18.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 13252 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16669 components: - type: Transform pos: 10.5,19.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 23924 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16670 components: - type: Transform @@ -98253,7 +98357,7 @@ entities: pos: -2.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16682 components: - type: Transform @@ -98261,7 +98365,7 @@ entities: pos: 5.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16683 components: - type: Transform @@ -98269,14 +98373,14 @@ entities: pos: 2.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16684 components: - type: Transform pos: -32.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 16718 components: - type: Transform @@ -98286,7 +98390,7 @@ entities: deviceLists: - 21710 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17601 components: - type: Transform @@ -98294,7 +98398,7 @@ entities: pos: -46.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17602 components: - type: Transform @@ -98302,7 +98406,7 @@ entities: pos: -46.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17624 components: - type: Transform @@ -98310,7 +98414,7 @@ entities: pos: -36.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17625 components: - type: Transform @@ -98318,7 +98422,7 @@ entities: pos: -38.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17627 components: - type: Transform @@ -98326,7 +98430,7 @@ entities: pos: -15.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 17628 components: - type: Transform @@ -98334,7 +98438,7 @@ entities: pos: -30.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18139 components: - type: Transform @@ -98342,7 +98446,7 @@ entities: pos: -2.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18270 components: - type: Transform @@ -98350,7 +98454,7 @@ entities: pos: -7.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18426 components: - type: Transform @@ -98358,7 +98462,7 @@ entities: pos: 0.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18427 components: - type: Transform @@ -98366,7 +98470,7 @@ entities: pos: 5.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18429 components: - type: Transform @@ -98374,7 +98478,7 @@ entities: pos: 0.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18539 components: - type: Transform @@ -98382,7 +98486,7 @@ entities: pos: 0.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18540 components: - type: Transform @@ -98390,7 +98494,7 @@ entities: pos: 4.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18560 components: - type: Transform @@ -98402,16 +98506,22 @@ entities: - type: Transform pos: 45.5,12.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 23922 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18653 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,8.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 13112 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18663 components: - type: Transform @@ -98419,7 +98529,7 @@ entities: pos: 53.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18664 components: - type: Transform @@ -98427,7 +98537,7 @@ entities: pos: 53.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18668 components: - type: Transform @@ -98435,7 +98545,7 @@ entities: pos: 48.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18906 components: - type: Transform @@ -98446,7 +98556,7 @@ entities: deviceLists: - 24792 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 18937 components: - type: Transform @@ -98462,7 +98572,7 @@ entities: pos: 36.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19054 components: - type: Transform @@ -98470,7 +98580,7 @@ entities: pos: 32.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19056 components: - type: Transform @@ -98481,7 +98591,7 @@ entities: deviceLists: - 25155 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19057 components: - type: Transform @@ -98492,7 +98602,7 @@ entities: deviceLists: - 25155 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19179 components: - type: Transform @@ -98500,7 +98610,7 @@ entities: pos: 21.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 19403 components: - type: Transform @@ -98508,14 +98618,14 @@ entities: pos: 40.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21327 components: - type: Transform pos: -72.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 21407 components: - type: Transform @@ -98526,14 +98636,14 @@ entities: deviceLists: - 1960 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22876 components: - type: Transform pos: -110.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22878 components: - type: Transform @@ -98541,7 +98651,7 @@ entities: pos: -110.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22879 components: - type: Transform @@ -98549,7 +98659,7 @@ entities: pos: -103.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22881 components: - type: Transform @@ -98557,7 +98667,7 @@ entities: pos: -98.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22882 components: - type: Transform @@ -98565,7 +98675,7 @@ entities: pos: -112.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22886 components: - type: Transform @@ -98573,7 +98683,7 @@ entities: pos: -117.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22891 components: - type: Transform @@ -98581,7 +98691,7 @@ entities: pos: -112.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22893 components: - type: Transform @@ -98589,7 +98699,7 @@ entities: pos: -112.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 22894 components: - type: Transform @@ -98597,7 +98707,7 @@ entities: pos: -110.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 23505 components: - type: Transform @@ -98613,7 +98723,7 @@ entities: pos: -5.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24136 components: - type: Transform @@ -98621,7 +98731,7 @@ entities: pos: -9.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 24834 components: - type: Transform @@ -98632,7 +98742,7 @@ entities: deviceLists: - 25157 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25173 components: - type: Transform @@ -98643,7 +98753,7 @@ entities: deviceLists: - 25162 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25174 components: - type: Transform @@ -98654,7 +98764,7 @@ entities: deviceLists: - 25162 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25179 components: - type: Transform @@ -98665,7 +98775,7 @@ entities: deviceLists: - 25163 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25180 components: - type: Transform @@ -98676,7 +98786,7 @@ entities: deviceLists: - 25163 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 25185 components: - type: Transform @@ -98687,7 +98797,7 @@ entities: deviceLists: - 25157 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 61 @@ -98697,7 +98807,7 @@ entities: pos: 35.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 157 components: - type: Transform @@ -98707,7 +98817,7 @@ entities: deviceLists: - 231 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 223 components: - type: Transform @@ -98715,7 +98825,7 @@ entities: pos: 26.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 263 components: - type: Transform @@ -98723,7 +98833,7 @@ entities: pos: 22.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 337 components: - type: Transform @@ -98731,7 +98841,7 @@ entities: pos: 47.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 428 components: - type: Transform @@ -98739,7 +98849,7 @@ entities: pos: 0.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 473 components: - type: Transform @@ -98747,7 +98857,7 @@ entities: pos: 0.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 516 components: - type: Transform @@ -98757,7 +98867,7 @@ entities: deviceLists: - 57 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 629 components: - type: Transform @@ -98765,7 +98875,7 @@ entities: pos: 19.5,-35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 719 components: - type: Transform @@ -98773,7 +98883,7 @@ entities: pos: -22.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 779 components: - type: Transform @@ -98784,7 +98894,7 @@ entities: deviceLists: - 231 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 788 components: - type: Transform @@ -98796,7 +98906,7 @@ entities: - 1960 - 4709 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 841 components: - type: Transform @@ -98807,7 +98917,7 @@ entities: deviceLists: - 5933 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 871 components: - type: Transform @@ -98815,7 +98925,7 @@ entities: pos: 41.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 904 components: - type: Transform @@ -98825,23 +98935,29 @@ entities: deviceLists: - 57 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 912 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-27.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 12751 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 913 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-27.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 12751 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1136 components: - type: Transform @@ -98852,7 +98968,7 @@ entities: deviceLists: - 4709 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1246 components: - type: Transform @@ -98860,7 +98976,7 @@ entities: pos: 37.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1397 components: - type: Transform @@ -98868,7 +98984,7 @@ entities: pos: 4.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1398 components: - type: Transform @@ -98876,7 +98992,7 @@ entities: pos: 3.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1430 components: - type: Transform @@ -98884,14 +99000,14 @@ entities: pos: 0.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1456 components: - type: Transform pos: 12.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1581 components: - type: Transform @@ -98902,7 +99018,7 @@ entities: deviceLists: - 21507 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1659 components: - type: Transform @@ -98913,7 +99029,7 @@ entities: deviceLists: - 148 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1739 components: - type: Transform @@ -98921,7 +99037,7 @@ entities: pos: -19.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 1750 components: - type: Transform @@ -98929,7 +99045,7 @@ entities: pos: -19.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1768 components: - type: Transform @@ -98937,7 +99053,7 @@ entities: pos: -33.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1771 components: - type: Transform @@ -98949,7 +99065,7 @@ entities: - 21612 - 12 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1974 components: - type: Transform @@ -98959,7 +99075,7 @@ entities: deviceLists: - 148 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2009 components: - type: Transform @@ -98970,7 +99086,7 @@ entities: deviceLists: - 178 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2026 components: - type: Transform @@ -98978,7 +99094,7 @@ entities: pos: -22.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2205 components: - type: Transform @@ -98986,7 +99102,7 @@ entities: pos: 29.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2360 components: - type: Transform @@ -98994,28 +99110,28 @@ entities: pos: 23.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2374 components: - type: Transform pos: 23.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2563 components: - type: Transform pos: 29.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2704 components: - type: Transform pos: 39.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2772 components: - type: Transform @@ -99027,7 +99143,7 @@ entities: - 21612 - 12 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2821 components: - type: Transform @@ -99035,7 +99151,7 @@ entities: pos: 44.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2983 components: - type: Transform @@ -99067,7 +99183,7 @@ entities: pos: 44.5,-39.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3693 components: - type: Transform @@ -99075,7 +99191,7 @@ entities: pos: 16.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3962 components: - type: Transform @@ -99083,14 +99199,14 @@ entities: pos: -7.5,-41.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3963 components: - type: Transform pos: -13.5,-39.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3985 components: - type: Transform @@ -99098,7 +99214,7 @@ entities: pos: 0.5,-39.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4218 components: - type: Transform @@ -99106,14 +99222,14 @@ entities: pos: -33.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4502 components: - type: Transform pos: 39.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4944 components: - type: Transform @@ -99121,7 +99237,7 @@ entities: pos: 0.5,-47.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4971 components: - type: Transform @@ -99129,7 +99245,7 @@ entities: pos: 0.5,-54.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5404 components: - type: Transform @@ -99137,7 +99253,7 @@ entities: pos: 43.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5411 components: - type: Transform @@ -99145,21 +99261,21 @@ entities: pos: 10.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5440 components: - type: Transform pos: 34.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5581 components: - type: Transform pos: -42.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5688 components: - type: Transform @@ -99170,7 +99286,7 @@ entities: deviceLists: - 3204 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5738 components: - type: Transform @@ -99178,7 +99294,7 @@ entities: pos: -1.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5745 components: - type: Transform @@ -99186,7 +99302,7 @@ entities: pos: -10.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5766 components: - type: Transform @@ -99194,7 +99310,7 @@ entities: pos: 16.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5820 components: - type: Transform @@ -99202,7 +99318,7 @@ entities: pos: 18.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5823 components: - type: Transform @@ -99210,7 +99326,7 @@ entities: pos: 29.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5831 components: - type: Transform @@ -99218,7 +99334,7 @@ entities: pos: 43.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5930 components: - type: Transform @@ -99226,14 +99342,14 @@ entities: pos: -29.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5962 components: - type: Transform pos: -30.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6015 components: - type: Transform @@ -99241,7 +99357,7 @@ entities: pos: -34.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6018 components: - type: Transform @@ -99253,7 +99369,7 @@ entities: - 21612 - 12 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6028 components: - type: Transform @@ -99261,7 +99377,7 @@ entities: pos: -41.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6058 components: - type: Transform @@ -99269,7 +99385,7 @@ entities: pos: -43.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6290 components: - type: Transform @@ -99277,7 +99393,7 @@ entities: pos: 16.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6299 components: - type: Transform @@ -99285,7 +99401,7 @@ entities: pos: 11.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6474 components: - type: Transform @@ -99293,7 +99409,7 @@ entities: pos: -1.5,-72.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6475 components: - type: Transform @@ -99301,7 +99417,7 @@ entities: pos: -1.5,-61.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7099 components: - type: Transform @@ -99312,7 +99428,7 @@ entities: deviceLists: - 8483 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7177 components: - type: Transform @@ -99320,7 +99436,7 @@ entities: pos: -27.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7343 components: - type: Transform @@ -99328,7 +99444,7 @@ entities: pos: -42.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7368 components: - type: Transform @@ -99336,7 +99452,7 @@ entities: pos: -0.5,-76.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7463 components: - type: Transform @@ -99344,7 +99460,7 @@ entities: pos: -10.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7488 components: - type: Transform @@ -99355,7 +99471,7 @@ entities: deviceLists: - 24769 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7686 components: - type: Transform @@ -99363,7 +99479,7 @@ entities: pos: -31.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7811 components: - type: Transform @@ -99371,22 +99487,28 @@ entities: pos: -20.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7901 components: - type: Transform pos: -25.5,-0.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 23925 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8137 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-45.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 21595 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8416 components: - type: Transform @@ -99397,7 +99519,7 @@ entities: deviceLists: - 105 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8439 components: - type: Transform @@ -99408,7 +99530,7 @@ entities: deviceLists: - 8516 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8620 components: - type: Transform @@ -99416,7 +99538,7 @@ entities: pos: 16.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8942 components: - type: Transform @@ -99427,7 +99549,7 @@ entities: deviceLists: - 8516 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8960 components: - type: Transform @@ -99435,14 +99557,14 @@ entities: pos: -48.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9017 components: - type: Transform pos: -47.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9061 components: - type: Transform @@ -99450,7 +99572,7 @@ entities: pos: 29.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9062 components: - type: Transform @@ -99458,7 +99580,7 @@ entities: pos: 29.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9155 components: - type: Transform @@ -99469,7 +99591,7 @@ entities: deviceLists: - 1960 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9160 components: - type: Transform @@ -99477,7 +99599,7 @@ entities: pos: 22.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9428 components: - type: Transform @@ -99487,14 +99609,14 @@ entities: deviceLists: - 11464 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9608 components: - type: Transform pos: -41.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9631 components: - type: Transform @@ -99505,7 +99627,7 @@ entities: deviceLists: - 11464 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9641 components: - type: Transform @@ -99513,7 +99635,7 @@ entities: pos: -41.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9674 components: - type: Transform @@ -99524,14 +99646,14 @@ entities: deviceLists: - 7065 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9677 components: - type: Transform pos: -38.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11525 components: - type: Transform @@ -99541,7 +99663,7 @@ entities: deviceLists: - 1229 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12001 components: - type: Transform @@ -99549,7 +99671,7 @@ entities: pos: 16.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12591 components: - type: Transform @@ -99557,7 +99679,7 @@ entities: pos: 16.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12594 components: - type: Transform @@ -99572,7 +99694,7 @@ entities: pos: 38.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12632 components: - type: Transform @@ -99580,14 +99702,14 @@ entities: pos: 41.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12633 components: - type: Transform pos: 38.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12897 components: - type: Transform @@ -99595,7 +99717,7 @@ entities: pos: 13.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13073 components: - type: Transform @@ -99603,7 +99725,7 @@ entities: pos: 40.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13075 components: - type: Transform @@ -99611,7 +99733,7 @@ entities: pos: 38.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13238 components: - type: Transform @@ -99619,7 +99741,7 @@ entities: pos: 19.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13444 components: - type: Transform @@ -99632,14 +99754,14 @@ entities: pos: 36.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13563 components: - type: Transform pos: 22.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13754 components: - type: Transform @@ -99652,7 +99774,7 @@ entities: pos: -27.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15648 components: - type: Transform @@ -99660,7 +99782,7 @@ entities: pos: -21.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15649 components: - type: Transform @@ -99668,7 +99790,7 @@ entities: pos: -16.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15650 components: - type: Transform @@ -99676,14 +99798,14 @@ entities: pos: -11.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16560 components: - type: Transform pos: -25.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16605 components: - type: Transform @@ -99691,21 +99813,21 @@ entities: pos: -11.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16615 components: - type: Transform pos: 1.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16621 components: - type: Transform pos: -1.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16633 components: - type: Transform @@ -99716,7 +99838,7 @@ entities: deviceLists: - 21710 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16634 components: - type: Transform @@ -99727,7 +99849,7 @@ entities: deviceLists: - 15745 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16642 components: - type: Transform @@ -99735,29 +99857,35 @@ entities: pos: -2.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16667 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,17.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 13252 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16668 components: - type: Transform pos: 10.5,18.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 23924 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16672 components: - type: Transform pos: 3.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16673 components: - type: Transform @@ -99765,7 +99893,7 @@ entities: pos: -3.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16675 components: - type: Transform @@ -99773,7 +99901,7 @@ entities: pos: 0.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16681 components: - type: Transform @@ -99781,7 +99909,7 @@ entities: pos: 4.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17603 components: - type: Transform @@ -99789,7 +99917,7 @@ entities: pos: -46.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17604 components: - type: Transform @@ -99797,7 +99925,7 @@ entities: pos: -46.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17621 components: - type: Transform @@ -99805,7 +99933,7 @@ entities: pos: -34.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17626 components: - type: Transform @@ -99817,7 +99945,7 @@ entities: pos: -31.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17632 components: - type: Transform @@ -99825,7 +99953,7 @@ entities: pos: -15.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18257 components: - type: Transform @@ -99833,7 +99961,7 @@ entities: pos: -4.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18258 components: - type: Transform @@ -99841,7 +99969,7 @@ entities: pos: -7.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18260 components: - type: Transform @@ -99849,7 +99977,7 @@ entities: pos: 0.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18425 components: - type: Transform @@ -99857,7 +99985,7 @@ entities: pos: 0.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18428 components: - type: Transform @@ -99865,7 +99993,7 @@ entities: pos: 4.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18430 components: - type: Transform @@ -99873,7 +100001,7 @@ entities: pos: 0.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18434 components: - type: Transform @@ -99881,21 +100009,27 @@ entities: pos: -2.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18657 components: - type: Transform pos: 43.5,12.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 23922 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18658 components: - type: Transform pos: 44.5,8.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 13112 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18685 components: - type: Transform @@ -99903,7 +100037,7 @@ entities: pos: 48.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18686 components: - type: Transform @@ -99911,7 +100045,7 @@ entities: pos: 53.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18687 components: - type: Transform @@ -99919,7 +100053,7 @@ entities: pos: 53.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18884 components: - type: Transform @@ -99930,7 +100064,7 @@ entities: deviceLists: - 24792 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18915 components: - type: Transform @@ -99938,7 +100072,7 @@ entities: pos: 48.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18938 components: - type: Transform @@ -99953,7 +100087,7 @@ entities: pos: 31.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19058 components: - type: Transform @@ -99963,7 +100097,7 @@ entities: deviceLists: - 25155 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19059 components: - type: Transform @@ -99973,7 +100107,7 @@ entities: deviceLists: - 25155 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19180 components: - type: Transform @@ -99981,7 +100115,7 @@ entities: pos: 21.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21328 components: - type: Transform @@ -99994,8 +100128,11 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-1.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 23926 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22906 components: - type: Transform @@ -100083,7 +100220,7 @@ entities: deviceLists: - 23956 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24358 components: - type: Transform @@ -100091,7 +100228,7 @@ entities: pos: 47.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25175 components: - type: Transform @@ -100102,7 +100239,7 @@ entities: deviceLists: - 25162 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25176 components: - type: Transform @@ -100113,7 +100250,7 @@ entities: deviceLists: - 25162 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25177 components: - type: Transform @@ -100124,7 +100261,7 @@ entities: deviceLists: - 25163 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25178 components: - type: Transform @@ -100135,7 +100272,7 @@ entities: deviceLists: - 25163 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25183 components: - type: Transform @@ -100145,7 +100282,7 @@ entities: deviceLists: - 25157 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25186 components: - type: Transform @@ -100156,7 +100293,7 @@ entities: deviceLists: - 25157 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasVolumePump entities: - uid: 14850 @@ -103621,11 +103758,6 @@ entities: - type: Transform pos: 47.5,9.5 parent: 60 - - uid: 13112 - components: - - type: Transform - pos: 47.5,6.5 - parent: 60 - uid: 13115 components: - type: Transform @@ -110760,8 +110892,24 @@ entities: - uid: 18528 components: - type: Transform - pos: -4.422296,-6.0514507 + pos: -4.6236715,-6.065073 parent: 60 + - type: HandheldLight + toggleActionEntity: 8989 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 8989 + - type: Physics + canCollide: True + - type: ActionsContainer - uid: 18888 components: - type: Transform @@ -113498,7 +113646,7 @@ entities: - uid: 21028 components: - type: Transform - pos: -8.358206,-5.332347 + pos: -4.121764,-6.3752127 parent: 60 - proto: PaperDoor entities: @@ -114616,10 +114764,10 @@ entities: - type: Transform pos: 46.5,-26.5 parent: 60 - - uid: 742 + - uid: 23921 components: - type: Transform - pos: -7.5,-25.5 + pos: -6.5,-25.5 parent: 60 - proto: PosterLegitCohibaRobustoAd entities: @@ -127495,11 +127643,11 @@ entities: parent: 60 - proto: SignCargoDock entities: - - uid: 13252 + - uid: 23915 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,10.5 + rot: -1.5707963267948966 rad + pos: 47.5,6.5 parent: 60 - proto: SignChapel entities: @@ -129197,6 +129345,11 @@ entities: - type: Transform pos: 0.5,25.5 parent: 60 + - uid: 23920 + components: + - type: Transform + pos: -0.5,23.5 + parent: 60 - uid: 24414 components: - type: Transform @@ -129297,7 +129450,7 @@ entities: - uid: 23693 components: - type: Transform - pos: -8.5452585,-5.5884953 + pos: -7.537521,-6.141462 parent: 60 - uid: 23718 components: @@ -131520,11 +131673,11 @@ entities: parent: 60 - proto: SpawnMobGoat entities: - - uid: 12751 + - uid: 23923 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-28.5 + pos: 30.5,-35.5 parent: 60 - proto: SpawnMobMcGriff entities: @@ -149660,6 +149813,12 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,-25.5 parent: 60 + - uid: 742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,6.5 + parent: 60 - uid: 743 components: - type: Transform @@ -155532,11 +155691,6 @@ entities: - type: Transform pos: -63.5,1.5 parent: 60 - - uid: 8989 - components: - - type: Transform - pos: 47.5,6.5 - parent: 60 - uid: 11789 components: - type: Transform From a5c76324e2ad90b03fe11183721f74e737c52a3c Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Sat, 8 Feb 2025 23:26:16 -0800 Subject: [PATCH 146/313] Misc Marathon fixes (#34990) misc marathon fixes --- Resources/Maps/marathon.yml | 333 +++++++++++++++++++++++++----------- 1 file changed, 231 insertions(+), 102 deletions(-) diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index 1b0abd79be..bc0970be17 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -246,7 +246,7 @@ entities: version: 6 -1,-4: ind: -1,-4 - tiles: fQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 0,-4: ind: 0,-4 @@ -10276,18 +10276,24 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-55.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: 10789: - DoorStatus: DoorBolt - - uid: 10534 + - uid: 9879 components: - type: Transform - rot: 3.141592653589793 rad + rot: -1.5707963267948966 rad pos: -13.5,-55.5 parent: 30 - type: DeviceLinkSink invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11117: + - DoorStatus: DoorBolt - uid: 10789 components: - type: Transform @@ -10296,15 +10302,21 @@ entities: parent: 30 - type: DeviceLinkSink invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9501: + - DoorStatus: DoorBolt - uid: 11117 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-57.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 10534: + 9879: - DoorStatus: DoorBolt - proto: AirlockExternalGlass entities: @@ -11536,7 +11548,7 @@ entities: pos: 34.5,45.5 parent: 30 - type: Door - secondsUntilStateChange: -8197.5205 + secondsUntilStateChange: -9492.408 state: Opening - type: DeviceLinkSource lastSignals: @@ -13124,12 +13136,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-23.5 parent: 30 - - uid: 8278 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-45.5 - parent: 30 - uid: 8363 components: - type: MetaData @@ -13176,6 +13182,11 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-30.5 parent: 30 + - uid: 10538 + components: + - type: Transform + pos: -24.5,-38.5 + parent: 30 - uid: 10590 components: - type: Transform @@ -13307,6 +13318,13 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,66.5 parent: 30 + - uid: 21015 + components: + - type: MetaData + name: Chapel Engineering APC + - type: Transform + pos: -55.5,-61.5 + parent: 30 - uid: 22213 components: - type: MetaData @@ -21383,6 +21401,11 @@ entities: - type: Transform pos: -33.5,-22.5 parent: 30 + - uid: 7040 + components: + - type: Transform + pos: -24.5,-38.5 + parent: 30 - uid: 7057 components: - type: Transform @@ -21583,6 +21606,11 @@ entities: - type: Transform pos: -44.5,-16.5 parent: 30 + - uid: 7565 + components: + - type: Transform + pos: -24.5,-39.5 + parent: 30 - uid: 7587 components: - type: Transform @@ -22393,11 +22421,6 @@ entities: - type: Transform pos: -25.5,-23.5 parent: 30 - - uid: 8293 - components: - - type: Transform - pos: -20.5,-45.5 - parent: 30 - uid: 8294 components: - type: Transform @@ -22488,6 +22511,11 @@ entities: - type: Transform pos: -23.5,-49.5 parent: 30 + - uid: 9047 + components: + - type: Transform + pos: -24.5,-40.5 + parent: 30 - uid: 9406 components: - type: Transform @@ -22748,11 +22776,6 @@ entities: - type: Transform pos: -15.5,-30.5 parent: 30 - - uid: 10538 - components: - - type: Transform - pos: -20.5,-44.5 - parent: 30 - uid: 10597 components: - type: Transform @@ -31958,6 +31981,61 @@ entities: - type: Transform pos: -50.5,69.5 parent: 30 + - uid: 23175 + components: + - type: Transform + pos: -55.5,-61.5 + parent: 30 + - uid: 23176 + components: + - type: Transform + pos: -55.5,-62.5 + parent: 30 + - uid: 23177 + components: + - type: Transform + pos: -55.5,-63.5 + parent: 30 + - uid: 23178 + components: + - type: Transform + pos: -54.5,-63.5 + parent: 30 + - uid: 23179 + components: + - type: Transform + pos: -53.5,-63.5 + parent: 30 + - uid: 23180 + components: + - type: Transform + pos: -53.5,-62.5 + parent: 30 + - uid: 23181 + components: + - type: Transform + pos: -53.5,-61.5 + parent: 30 + - uid: 23182 + components: + - type: Transform + pos: -53.5,-60.5 + parent: 30 + - uid: 23183 + components: + - type: Transform + pos: -53.5,-59.5 + parent: 30 + - uid: 23184 + components: + - type: Transform + pos: -55.5,-64.5 + parent: 30 + - uid: 23185 + components: + - type: Transform + pos: -53.5,-64.5 + parent: 30 - proto: CableApcStack entities: - uid: 1637 @@ -38756,6 +38834,11 @@ entities: - type: Transform pos: -29.5,51.5 parent: 30 + - uid: 2545 + components: + - type: Transform + pos: -24.5,-41.5 + parent: 30 - uid: 3564 components: - type: Transform @@ -40046,6 +40129,11 @@ entities: - type: Transform pos: -23.5,40.5 parent: 30 + - uid: 5245 + components: + - type: Transform + pos: -22.5,-41.5 + parent: 30 - uid: 5562 components: - type: Transform @@ -40896,16 +40984,6 @@ entities: - type: Transform pos: -19.5,-41.5 parent: 30 - - uid: 9047 - components: - - type: Transform - pos: -20.5,-44.5 - parent: 30 - - uid: 9048 - components: - - type: Transform - pos: -20.5,-43.5 - parent: 30 - uid: 9055 components: - type: Transform @@ -41026,11 +41104,6 @@ entities: - type: Transform pos: -20.5,-53.5 parent: 30 - - uid: 10161 - components: - - type: Transform - pos: -20.5,-42.5 - parent: 30 - uid: 10162 components: - type: Transform @@ -41069,7 +41142,7 @@ entities: - uid: 10184 components: - type: Transform - pos: -20.5,-45.5 + pos: -21.5,-41.5 parent: 30 - uid: 10187 components: @@ -42496,11 +42569,6 @@ entities: - type: Transform pos: 23.5,-4.5 parent: 30 - - uid: 16404 - components: - - type: Transform - pos: -56.5,-62.5 - parent: 30 - uid: 16420 components: - type: Transform @@ -42536,11 +42604,6 @@ entities: - type: Transform pos: -56.5,-64.5 parent: 30 - - uid: 18190 - components: - - type: Transform - pos: -56.5,-63.5 - parent: 30 - uid: 18207 components: - type: Transform @@ -43246,6 +43309,11 @@ entities: - type: Transform pos: 1.5,-42.5 parent: 30 + - uid: 20398 + components: + - type: Transform + pos: -23.5,-41.5 + parent: 30 - uid: 20829 components: - type: Transform @@ -44276,6 +44344,41 @@ entities: - type: Transform pos: -40.5,50.5 parent: 30 + - uid: 23174 + components: + - type: Transform + pos: -55.5,-61.5 + parent: 30 + - uid: 23188 + components: + - type: Transform + pos: -55.5,-64.5 + parent: 30 + - uid: 23189 + components: + - type: Transform + pos: -54.5,-64.5 + parent: 30 + - uid: 23190 + components: + - type: Transform + pos: -54.5,-63.5 + parent: 30 + - uid: 23192 + components: + - type: Transform + pos: -24.5,-40.5 + parent: 30 + - uid: 23193 + components: + - type: Transform + pos: -24.5,-39.5 + parent: 30 + - uid: 23194 + components: + - type: Transform + pos: -24.5,-38.5 + parent: 30 - proto: CableMVStack entities: - uid: 1638 @@ -44406,6 +44509,18 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,84.5 parent: 30 + - uid: 23186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-63.5 + parent: 30 + - uid: 23187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-62.5 + parent: 30 - proto: CandyBowl entities: - uid: 10047 @@ -44437,6 +44552,13 @@ entities: - type: Transform pos: 2.6220274,21.009964 parent: 30 +- proto: CaptainIDCard + entities: + - uid: 23195 + components: + - type: Transform + pos: -20.492418,30.561455 + parent: 30 - proto: CarbonDioxideCanister entities: - uid: 8772 @@ -52294,6 +52416,11 @@ entities: - 0 - 0 - 0 + - uid: 10161 + components: + - type: Transform + pos: -38.5,-20.5 + parent: 30 - uid: 16212 components: - type: Transform @@ -52461,11 +52588,6 @@ entities: parent: 30 - proto: ClosetSteelBase entities: - - uid: 7040 - components: - - type: Transform - pos: -38.5,-20.5 - parent: 30 - uid: 11364 components: - type: Transform @@ -54427,7 +54549,7 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,43.5 parent: 30 - - uid: 10200 + - uid: 8293 components: - type: Transform rot: 3.141592653589793 rad @@ -63429,13 +63551,13 @@ entities: - type: FaxMachine name: Engineering destinationAddress: Engineering - - uid: 14477 + - uid: 10200 components: - type: Transform pos: -62.5,-65.5 parent: 30 - type: FaxMachine - destinationAddress: Library + name: Library - uid: 20090 components: - type: Transform @@ -93090,13 +93212,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' -- proto: GeneratorRTG - entities: - - uid: 2402 - components: - - type: Transform - pos: -53.5,-59.5 - parent: 30 - proto: Girder entities: - uid: 685 @@ -105009,6 +105124,14 @@ entities: - type: Transform pos: -6.5,-12.5 parent: 30 +- proto: MachineFrame + entities: + - uid: 13971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-44.5 + parent: 30 - proto: MagazinePistolSubMachineGun entities: - uid: 19841 @@ -105201,6 +105324,12 @@ entities: parent: 30 - proto: MaintenanceWeaponSpawner entities: + - uid: 14477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-22.5 + parent: 30 - uid: 15080 components: - type: Transform @@ -107110,6 +107239,11 @@ entities: parent: 30 - proto: PortableGeneratorPacman entities: + - uid: 10534 + components: + - type: Transform + pos: -53.5,-59.5 + parent: 30 - uid: 10787 components: - type: Transform @@ -107588,17 +107722,18 @@ entities: parent: 30 - proto: PosterLegitSafetyMothPiping entities: - - uid: 5245 - components: - - type: Transform - pos: -24.5,-38.5 - parent: 30 - uid: 8608 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-21.5 parent: 30 + - uid: 23191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-38.5 + parent: 30 - proto: PosterLegitSafetyReport entities: - uid: 2412 @@ -108421,6 +108556,12 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,52.5 parent: 30 + - uid: 2402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-56.5 + parent: 30 - uid: 3203 components: - type: Transform @@ -109452,6 +109593,12 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-30.5 parent: 30 + - uid: 9048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-50.5 + parent: 30 - uid: 9057 components: - type: Transform @@ -109513,7 +109660,7 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-53.5 + pos: -14.5,-56.5 parent: 30 - uid: 10622 components: @@ -112080,11 +112227,6 @@ entities: - Plastic - Wood - Gold - - uid: 13971 - components: - - type: Transform - pos: -22.5,-44.5 - parent: 30 - proto: ProtolatheMachineCircuitboard entities: - uid: 21753 @@ -113026,13 +113168,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,44.5 parent: 30 -- proto: RandomSnacks - entities: - - uid: 7565 - components: - - type: Transform - pos: -38.5,-22.5 - parent: 30 - proto: RandomSoap entities: - uid: 756 @@ -113614,6 +113749,11 @@ entities: - type: Transform pos: 35.5,14.5 parent: 30 + - uid: 16404 + components: + - type: Transform + pos: -40.5,50.5 + parent: 30 - uid: 17012 components: - type: Transform @@ -113634,6 +113774,11 @@ entities: - type: Transform pos: -59.5,57.5 parent: 30 + - uid: 18190 + components: + - type: Transform + pos: -39.5,50.5 + parent: 30 - uid: 20678 components: - type: Transform @@ -114438,12 +114583,6 @@ entities: - type: Transform pos: -55.5,-10.5 parent: 30 - - uid: 2545 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,50.5 - parent: 30 - uid: 2588 components: - type: Transform @@ -117110,12 +117249,6 @@ entities: - type: Transform pos: 7.5,21.5 parent: 30 - - uid: 21015 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,50.5 - parent: 30 - uid: 21052 components: - type: Transform @@ -118554,11 +118687,6 @@ entities: - Pressed: Toggle 20394: - Pressed: Toggle - - uid: 20398 - components: - - type: Transform - pos: 8.5,41.5 - parent: 30 - uid: 20446 components: - type: Transform @@ -141482,6 +141610,12 @@ entities: - type: Transform pos: -43.5,-14.5 parent: 30 + - uid: 8278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-45.5 + parent: 30 - uid: 8283 components: - type: Transform @@ -141909,11 +142043,6 @@ entities: - type: Transform pos: -21.5,-45.5 parent: 30 - - uid: 9879 - components: - - type: Transform - pos: -20.5,-45.5 - parent: 30 - uid: 9883 components: - type: Transform From a7690843dc8b63fd13e9b2de97dc88f3121d8363 Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Sat, 8 Feb 2025 23:44:53 -0800 Subject: [PATCH 147/313] Add screens to oasis evac shuttle (#34995) add screens to oasis evac --- .../Maps/Shuttles/emergency_accordia.yml | 54 +++++++++++++++++-- 1 file changed, 50 insertions(+), 4 deletions(-) diff --git a/Resources/Maps/Shuttles/emergency_accordia.yml b/Resources/Maps/Shuttles/emergency_accordia.yml index b97ad1813f..c8fb721cc9 100644 --- a/Resources/Maps/Shuttles/emergency_accordia.yml +++ b/Resources/Maps/Shuttles/emergency_accordia.yml @@ -67,10 +67,10 @@ entities: - type: Fixtures fixtures: {} - type: DeviceNetwork + deviceNetId: Wireless configurators: [] deviceLists: [] transmitFrequencyId: ShuttleTimer - deviceNetId: Wireless - type: OccluderTree - type: SpreaderGrid - type: Shuttle @@ -5175,11 +5175,10 @@ entities: parent: 1 - proto: PosterLegitVacation entities: - - uid: 912 + - uid: 1017 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-22.5 + pos: 4.5,-25.5 parent: 1 - proto: PosterLegitWorkForAFuture entities: @@ -5650,6 +5649,53 @@ entities: - type: Transform pos: -1.5,-17.5 parent: 1 +- proto: Screen + entities: + - uid: 912 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 1 + - uid: 1011 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 1012 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 1 + - uid: 1013 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 + - uid: 1014 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 1015 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 1 + - uid: 1016 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 1 + - uid: 1018 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 1019 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 - proto: ShotGunCabinetFilled entities: - uid: 605 From a8c32aba88e2d26971cf4b7ca3da18d11c2428eb Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Sun, 9 Feb 2025 00:00:14 -0800 Subject: [PATCH 148/313] Misc Cog Station fixes (#34993) * misc cog fixes * added air alarm stuff to botany gearroom * fix unlinked atmos devices in botany * fortify botany against le meteors at emisse request --- Resources/Maps/cog.yml | 1675 +++++++++++++++++++++++++++++----------- 1 file changed, 1242 insertions(+), 433 deletions(-) diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml index 35da27fb5a..4ca3010d67 100644 --- a/Resources/Maps/cog.yml +++ b/Resources/Maps/cog.yml @@ -296,7 +296,7 @@ entities: version: 6 3,2: ind: 3,2 - tiles: KgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAAALAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAABKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAADKgAAAAAALQAAAAACLQAAAAAALQAAAAADLQAAAAAALQAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAAAKgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAACLQAAAAADLQAAAAAALQAAAAABLQAAAAABLQAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAADKgAAAAAALAAAAAAALAAAAAAALAAAAAAA + tiles: KgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAAALAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAABKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAADKgAAAAAALQAAAAACLQAAAAAALQAAAAADLQAAAAAALQAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAAAKgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAACLQAAAAADLQAAAAAALQAAAAABLQAAAAABLQAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAADKgAAAAAALAAAAAAALAAAAAAALAAAAAAA version: 6 2,2: ind: 2,2 @@ -308,23 +308,23 @@ entities: version: 6 4,2: ind: 4,2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAVAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAVAAAAAAALAAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALQAAAAADKgAAAAAANwAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAADNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKwAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAVAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAVAAAAAAALAAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALQAAAAADKgAAAAAANwAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAADNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKwAAAAAA version: 6 4,3: ind: 4,3 - tiles: LAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAABKgAAAAAAKwAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAADKgAAAAAAKwAAAAAALAAAAAACLAAAAAABLAAAAAABLwAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAARAAAAAADKgAAAAAANwAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAABNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAATAAAAAAALAAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAATAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAABKgAAAAAAKwAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAADKgAAAAAAKwAAAAAALAAAAAACLAAAAAABLAAAAAABLwAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAARAAAAAADKgAAAAAANwAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAABNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAATAAAAAAALAAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAATAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 5,2: ind: 5,2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 5,3: ind: 5,3 - tiles: LgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,3: ind: 3,3 - tiles: LAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAADLAAAAAABLAAAAAACKgAAAAAARAAAAAADRAAAAAABRAAAAAACOAAAAAACOAAAAAACLwAAAAAARAAAAAACRAAAAAAARAAAAAAARAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAARAAAAAACRAAAAAACRAAAAAAAOAAAAAABOAAAAAAAOAAAAAAARAAAAAADRAAAAAADRAAAAAACTAAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAADTAAAAAABTAAAAAAATAAAAAACOAAAAAAAOAAAAAABOAAAAAACTAAAAAACTAAAAAADTAAAAAAATAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAADTAAAAAAATAAAAAABTAAAAAABOAAAAAADOAAAAAAAOAAAAAACTAAAAAADTAAAAAADTAAAAAACTAAAAAACLAAAAAACLAAAAAAALAAAAAABLAAAAAADLAAAAAABKgAAAAAARAAAAAAARAAAAAAARAAAAAADOAAAAAADOAAAAAACOAAAAAACRAAAAAAARAAAAAAARAAAAAAARAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAARAAAAAABRAAAAAABRAAAAAACOAAAAAABOAAAAAACOAAAAAABRAAAAAACRAAAAAAARAAAAAABRAAAAAADLAAAAAABKgAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAARAAAAAAARAAAAAADRAAAAAACOAAAAAABOAAAAAACOAAAAAADRAAAAAAARAAAAAADRAAAAAADRAAAAAAALAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAADKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAABKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAABKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAA + tiles: LAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAADLAAAAAABLAAAAAACKgAAAAAARAAAAAADRAAAAAABRAAAAAACOAAAAAACOAAAAAACLwAAAAAARAAAAAACRAAAAAAARAAAAAAARAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAARAAAAAACRAAAAAACRAAAAAAAOAAAAAABOAAAAAAAOAAAAAAARAAAAAADRAAAAAADRAAAAAACTAAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAADTAAAAAABTAAAAAAATAAAAAACOAAAAAAAOAAAAAABOAAAAAACTAAAAAACTAAAAAADTAAAAAAATAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAADTAAAAAAATAAAAAABTAAAAAABOAAAAAADOAAAAAAAOAAAAAACTAAAAAADTAAAAAADTAAAAAACTAAAAAACLAAAAAACLAAAAAAALAAAAAABLAAAAAADLAAAAAABKgAAAAAARAAAAAAARAAAAAAARAAAAAADOAAAAAADOAAAAAACOAAAAAACRAAAAAAARAAAAAAARAAAAAAARAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAARAAAAAABRAAAAAABRAAAAAACOAAAAAABOAAAAAACOAAAAAABRAAAAAACRAAAAAAARAAAAAABRAAAAAADLAAAAAABKgAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAARAAAAAAARAAAAAADRAAAAAACOAAAAAABOAAAAAACOAAAAAADRAAAAAAARAAAAAADRAAAAAADRAAAAAAALAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAADKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAABKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAABKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAA version: 6 2,3: ind: 2,3 @@ -344,7 +344,7 @@ entities: version: 6 3,4: ind: 3,4 - tiles: KgAAAAAALQAAAAABKgAAAAAAKgAAAAAALAAAAAABKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALQAAAAABLQAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: KgAAAAAALQAAAAABKgAAAAAAKgAAAAAALAAAAAABKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALQAAAAABLQAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 2,4: ind: 2,4 @@ -1788,30 +1788,6 @@ entities: color: '#FFFFFFFF' id: Dirt decals: - 8525: 29,23 - 8526: 30,24 - 8527: 29,24 - 8528: 28,25 - 8529: 30,25 - 8530: 30,22 - 8531: 29,22 - 8532: 29,21 - 8533: 28,21 - 8503: 30,22 - 8505: 29,22 - 8506: 29,23 - 8507: 30,23 - 8508: 30,24 - 8509: 29,24 - 8510: 28,24 - 8511: 28,25 - 8512: 29,25 - 8513: 30,25 - 8514: 28,23 - 8515: 28,22 - 8516: 28,21 - 8517: 30,21 - 8519: 29,21 1458: -9,-25 1459: -8,-23 1686: 51,12 @@ -1850,6 +1826,35 @@ entities: 6614: 39,24 6615: 51,18 6616: 45,8 + 6935: 34,24 + 6936: 35,29 + 6937: 34,33 + 6938: 33,22 + 6939: 32,17 + 6940: 33,12 + 6941: 32,10 + 6942: 37,12 + 6943: 39,7 + 6944: 40,6 + 6945: 41,6 + 6947: 44,-4 + 6948: 42,-5 + 6949: 43,-7 + 6950: 42,-11 + 6951: 44,-14 + 6952: 42,-17 + 6953: 44,-20 + 6954: 42,-25 + 6955: 40,-25 + 6956: 38,-23 + 6957: 39,-19 + 6960: 40,-9 + 6961: 44,-15 + 7030: 44,-22 + 7033: 48,27 + 7034: 40,31 + 7035: 30,10 + 7036: 28,14 7048: -38,-59 7049: -37,-57 7087: -35,-57 @@ -1887,8 +1892,55 @@ entities: 7449: -65,-22 7498: -66,-20 7499: -65,-20 + 8099: 29,6 + 8129: 44,-1 + 8168: 42,4 + 8169: 45,0 8321: 37,-3 8322: 31,0 + 8406: 0,68 + 8407: 1,70 + 8408: -2,70 + 8409: -3,68 + 8476: 41,-16 + 8477: 40,-15 + 8478: 41,-14 + 8479: 41,-12 + 8480: 37,-16 + 8503: 30,22 + 8505: 29,22 + 8506: 29,23 + 8507: 30,23 + 8508: 30,24 + 8509: 29,24 + 8510: 28,24 + 8511: 28,25 + 8512: 29,25 + 8513: 30,25 + 8514: 28,23 + 8515: 28,22 + 8516: 28,21 + 8517: 30,21 + 8519: 29,21 + 8520: 30,21 + 8521: 28,22 + 8522: 29,25 + 8523: 30,23 + 8524: 28,24 + 8525: 29,23 + 8526: 30,24 + 8527: 29,24 + 8528: 28,25 + 8529: 30,25 + 8530: 30,22 + 8531: 29,22 + 8532: 29,21 + 8533: 28,21 + 8534: 31,22 + 8535: 31,23 + 8536: 31,24 + 8537: 31,23 + 8538: 31,22 8646: -57,-34 8648: -57,-30 8649: -59,-34 @@ -1960,94 +2012,12 @@ entities: 10241: 3,69 10242: 5,70 10243: 6,68 - 6935: 34,24 - 6936: 35,29 - 6937: 34,33 - 6938: 33,22 - 6939: 32,17 - 6940: 33,12 - 6941: 32,10 - 6942: 37,12 - 6943: 39,7 - 6944: 40,6 - 6945: 41,6 - 6947: 44,-4 - 6948: 42,-5 - 6949: 43,-7 - 6950: 42,-11 - 6951: 44,-14 - 6952: 42,-17 - 6953: 44,-20 - 6954: 42,-25 - 6955: 40,-25 - 6956: 38,-23 - 6957: 39,-19 - 6960: 40,-9 - 6961: 44,-15 - 7030: 44,-22 - 7033: 48,27 - 7034: 40,31 - 7035: 30,10 - 7036: 28,14 - 8099: 29,6 - 8129: 44,-1 - 8168: 42,4 - 8169: 45,0 - 8406: 0,68 - 8407: 1,70 - 8408: -2,70 - 8409: -3,68 - 8476: 41,-16 - 8477: 40,-15 - 8478: 41,-14 - 8479: 41,-12 - 8480: 37,-16 - 8520: 30,21 - 8521: 28,22 - 8522: 29,25 - 8523: 30,23 - 8524: 28,24 - 8534: 31,22 - 8535: 31,23 - 8536: 31,24 - 8537: 31,23 - 8538: 31,22 - node: cleanable: True zIndex: 1 color: '#FFFFFFFF' id: DirtHeavy decals: - 4548: -13,44 - 4549: -9,45 - 4550: -5,44 - 4551: -3,44 - 4552: 2,44 - 4553: -8,48 - 4554: -11,49 - 4555: -10,52 - 4556: -11,54 - 4557: -10,55 - 4558: -16,53 - 4559: -15,55 - 4560: -14,54 - 4561: -17,55 - 4562: -17,56 - 4563: -5,53 - 4564: -7,55 - 4565: -6,56 - 4566: -5,54 - 4567: -6,54 - 4568: -11,59 - 4569: -8,64 - 4570: -12,65 - 4571: -9,61 - 4572: -4,58 - 4573: -17,64 - 4574: -19,39 - 4575: 8,34 - 4576: 4,44 - 4577: -1,45 1443: -8,-24 1444: -8,-24 1445: -9,-24 @@ -2331,6 +2301,36 @@ entities: 4502: 34,-43 4503: 34,-43 4504: 35,-42 + 4548: -13,44 + 4549: -9,45 + 4550: -5,44 + 4551: -3,44 + 4552: 2,44 + 4553: -8,48 + 4554: -11,49 + 4555: -10,52 + 4556: -11,54 + 4557: -10,55 + 4558: -16,53 + 4559: -15,55 + 4560: -14,54 + 4561: -17,55 + 4562: -17,56 + 4563: -5,53 + 4564: -7,55 + 4565: -6,56 + 4566: -5,54 + 4567: -6,54 + 4568: -11,59 + 4569: -8,64 + 4570: -12,65 + 4571: -9,61 + 4572: -4,58 + 4573: -17,64 + 4574: -19,39 + 4575: 8,34 + 4576: 4,44 + 4577: -1,45 4578: -18,70 4580: -20,70 4581: -20,71 @@ -2695,6 +2695,24 @@ entities: 6607: 33,10 6608: 32,10 6609: 31,10 + 6962: 44,-19 + 6963: 44,-18 + 6964: 42,-16 + 6965: 44,-14 + 6966: 44,-25 + 6967: 42,-24 + 6968: 44,-22 + 6969: 43,-20 + 6970: 43,-17 + 6971: 44,-14 + 6972: 43,-11 + 6973: 43,-8 + 6974: 42,-7 + 6975: 43,-6 + 6976: 42,-4 + 6977: 43,-4 + 6981: 43,4 + 6982: 43,6 7050: -37,-59 7051: -38,-59 7052: -38,-58 @@ -2804,10 +2822,95 @@ entities: 7493: -66,-28 7494: -66,-30 7495: -65,-29 + 8075: 17,-11 + 8076: 10,-7 + 8077: 9,-12 + 8078: 20,-14 + 8080: 19,-11 + 8081: 12,-7 + 8082: 15,-5 + 8083: 16,-9 + 8084: 11,-10 + 8085: 17,-9 + 8086: 17,-6 + 8087: 9,-5 + 8088: 10,1 + 8089: 8,3 + 8090: 9,5 + 8091: 11,6 + 8092: 19,2 + 8093: 18,-3 + 8094: 16,-1 + 8095: 30,-5 + 8096: 25,6 + 8097: 27,10 + 8098: 26,11 + 8100: 29,12 + 8101: 29,10 + 8102: 30,9 + 8103: 30,8 + 8104: 31,8 + 8105: 31,7 + 8106: 31,6 + 8107: 31,5 + 8111: 29,2 + 8112: 29,6 + 8121: 45,-2 + 8122: 45,-1 + 8123: 43,-2 + 8124: 47,-2 + 8126: 44,-1 + 8127: 43,1 + 8128: 42,2 + 8131: 56,-6 + 8132: 54,-5 + 8133: 58,-2 + 8134: 53,1 + 8135: 53,-1 + 8136: 56,0 + 8137: 61,2 + 8138: 58,4 + 8140: 62,4 + 8141: 54,4 + 8142: 55,6 + 8152: 64,4 8171: 2,-20 8317: 34,-2 8318: 40,-3 8319: 38,-2 + 8481: 35,-12 + 8482: 36,-13 + 8483: 38,-13 + 8484: 38,-16 + 8485: 37,-15 + 8486: 35,-16 + 8487: 41,-16 + 8488: 40,-16 + 8489: 41,-14 + 8490: 41,-13 + 8491: 40,-13 + 8492: 41,-12 + 8493: 40,-12 + 8494: 42,-15 + 8495: 41,-15 + 8496: 40,-14 + 8497: 42,-16 + 8498: 41,-12 + 8499: 43,-14 + 8500: 43,-13 + 8501: 44,-13 + 8502: 42,-11 + 8539: 31,22 + 8540: 31,22 + 8541: 31,23 + 8542: 31,24 + 8584: 30,21 + 8585: 30,21 + 8586: 28,22 + 8587: 28,23 + 8588: 28,23 + 8589: 29,25 + 8590: 29,25 8633: 54,60 8634: 54,62 8635: 52,61 @@ -3061,6 +3164,15 @@ entities: 9942: -43,67 9943: -43,68 9944: -46,68 + 9954: -1,22 + 9955: -1,21 + 9956: -3,22 + 9957: -3,22 + 9958: -4,22 + 9959: -5,19 + 9960: -5,20 + 9961: -3,21 + 9962: -2,21 9984: -1,10 9985: 0,7 9986: -2,7 @@ -3229,118 +3341,6 @@ entities: 10227: 5,70 10229: 2,69 10231: 3,70 - 6962: 44,-19 - 6963: 44,-18 - 6964: 42,-16 - 6965: 44,-14 - 6966: 44,-25 - 6967: 42,-24 - 6968: 44,-22 - 6969: 43,-20 - 6970: 43,-17 - 6971: 44,-14 - 6972: 43,-11 - 6973: 43,-8 - 6974: 42,-7 - 6975: 43,-6 - 6976: 42,-4 - 6977: 43,-4 - 6981: 43,4 - 6982: 43,6 - 8075: 17,-11 - 8076: 10,-7 - 8077: 9,-12 - 8078: 20,-14 - 8080: 19,-11 - 8081: 12,-7 - 8082: 15,-5 - 8083: 16,-9 - 8084: 11,-10 - 8085: 17,-9 - 8086: 17,-6 - 8087: 9,-5 - 8088: 10,1 - 8089: 8,3 - 8090: 9,5 - 8091: 11,6 - 8092: 19,2 - 8093: 18,-3 - 8094: 16,-1 - 8095: 30,-5 - 8096: 25,6 - 8097: 27,10 - 8098: 26,11 - 8100: 29,12 - 8101: 29,10 - 8102: 30,9 - 8103: 30,8 - 8104: 31,8 - 8105: 31,7 - 8106: 31,6 - 8107: 31,5 - 8111: 29,2 - 8112: 29,6 - 8121: 45,-2 - 8122: 45,-1 - 8123: 43,-2 - 8124: 47,-2 - 8126: 44,-1 - 8127: 43,1 - 8128: 42,2 - 8131: 56,-6 - 8132: 54,-5 - 8133: 58,-2 - 8134: 53,1 - 8135: 53,-1 - 8136: 56,0 - 8137: 61,2 - 8138: 58,4 - 8140: 62,4 - 8141: 54,4 - 8142: 55,6 - 8152: 64,4 - 8481: 35,-12 - 8482: 36,-13 - 8483: 38,-13 - 8484: 38,-16 - 8485: 37,-15 - 8486: 35,-16 - 8487: 41,-16 - 8488: 40,-16 - 8489: 41,-14 - 8490: 41,-13 - 8491: 40,-13 - 8492: 41,-12 - 8493: 40,-12 - 8494: 42,-15 - 8495: 41,-15 - 8496: 40,-14 - 8497: 42,-16 - 8498: 41,-12 - 8499: 43,-14 - 8500: 43,-13 - 8501: 44,-13 - 8502: 42,-11 - 8539: 31,22 - 8540: 31,22 - 8541: 31,23 - 8542: 31,24 - 8584: 30,21 - 8585: 30,21 - 8586: 28,22 - 8587: 28,23 - 8588: 28,23 - 8589: 29,25 - 8590: 29,25 - 9954: -1,22 - 9955: -1,21 - 9956: -3,22 - 9957: -3,22 - 9958: -4,22 - 9959: -5,19 - 9960: -5,20 - 9961: -3,21 - 9962: -2,21 - node: cleanable: True zIndex: 1 @@ -4258,6 +4258,13 @@ entities: 6422: 5,-43 6423: 7,-41 6425: 3,-35 + 7037: 28,12 + 7038: 29,12 + 7039: 30,10 + 7040: 28,14 + 7041: 27,16 + 7042: 27,17 + 7043: 27,16 7073: -33,-60 7074: -35,-59 7075: -37,-58 @@ -4269,18 +4276,6 @@ entities: 7695: 1,-38 7696: -2,-36 7697: 2,-33 - 8610: 57,60 - 8611: 55,61 - 8612: 57,63 - 8613: 55,64 - 8645: -57,-34 - 7037: 28,12 - 7038: 29,12 - 7039: 30,10 - 7040: 28,14 - 7041: 27,16 - 7042: 27,17 - 7043: 27,16 8159: 55,-2 8160: 56,-3 8543: 31,22 @@ -4294,6 +4289,11 @@ entities: 8551: 33,24 8552: 34,22 8553: 35,23 + 8610: 57,60 + 8611: 55,61 + 8612: 57,63 + 8613: 55,64 + 8645: -57,-34 - node: cleanable: True zIndex: 1 @@ -4344,6 +4344,46 @@ entities: 1676: 45,20 1677: 43,19 1678: 44,18 + 6989: 35,27 + 6990: 34,31 + 6991: 34,37 + 6992: 33,23 + 6993: 33,21 + 6994: 33,21 + 6995: 33,21 + 6996: 32,18 + 6997: 32,16 + 6998: 36,12 + 6999: 36,7 + 7000: 40,8 + 7001: 42,4 + 7002: 42,2 + 7004: 44,-5 + 7005: 43,-5 + 7006: 42,-6 + 7007: 42,-8 + 7008: 43,-9 + 7009: 42,-9 + 7010: 44,-11 + 7011: 42,-14 + 7012: 43,-17 + 7013: 44,-17 + 7014: 43,-19 + 7015: 43,-21 + 7016: 44,-23 + 7017: 43,-23 + 7018: 44,-27 + 7019: 43,-28 + 7020: 42,-27 + 7021: 45,-30 + 7022: 43,-32 + 7023: 41,-30 + 7024: 46,-28 + 7025: 45,-33 + 7026: 41,-33 + 7027: 40,-29 + 7028: 37,-27 + 7029: 37,-23 7085: -34,-59 7086: -30,-59 7130: 1,-66 @@ -4367,6 +4407,28 @@ entities: 7692: -6,-34 7693: -4,-40 7694: -6,-38 + 8065: 16,-11 + 8066: 11,-9 + 8067: 15,-6 + 8068: 16,-1 + 8069: 18,-5 + 8070: 14,-9 + 8071: 11,-6 + 8072: 19,-5 + 8073: 18,2 + 8074: 15,-1 + 8157: 58,-4 + 8158: 56,-2 + 8554: 29.134378,23.105629 + 8555: 29.850428,21.84541 + 8556: 28.655983,21.215342 + 8557: 28.473885,22.515358 + 8558: 28.461538,23.463549 + 8559: 29.65907,23.973162 + 8560: 29.498575,24.495665 + 8561: 30.483143,22.477749 + 8562: 29.489317,22.508635 + 8563: 29.612774,23.37652 8614: 58,61 8615: 58,60 8617: 52,62 @@ -4518,6 +4580,12 @@ entities: 9619: 5,-60 9620: 5,-60 9621: 5,-60 + 9622: 5,-60 + 9623: 5,-60 + 9624: 6,-62 + 9625: 6,-62 + 9626: 6,-62 + 9627: 6,-62 9798: -53,68 9799: -55,70 9800: -54,71 @@ -4547,74 +4615,6 @@ entities: 10238: 5,69 10239: 5,69 10240: 5,68 - 6989: 35,27 - 6990: 34,31 - 6991: 34,37 - 6992: 33,23 - 6993: 33,21 - 6994: 33,21 - 6995: 33,21 - 6996: 32,18 - 6997: 32,16 - 6998: 36,12 - 6999: 36,7 - 7000: 40,8 - 7001: 42,4 - 7002: 42,2 - 7004: 44,-5 - 7005: 43,-5 - 7006: 42,-6 - 7007: 42,-8 - 7008: 43,-9 - 7009: 42,-9 - 7010: 44,-11 - 7011: 42,-14 - 7012: 43,-17 - 7013: 44,-17 - 7014: 43,-19 - 7015: 43,-21 - 7016: 44,-23 - 7017: 43,-23 - 7018: 44,-27 - 7019: 43,-28 - 7020: 42,-27 - 7021: 45,-30 - 7022: 43,-32 - 7023: 41,-30 - 7024: 46,-28 - 7025: 45,-33 - 7026: 41,-33 - 7027: 40,-29 - 7028: 37,-27 - 7029: 37,-23 - 8065: 16,-11 - 8066: 11,-9 - 8067: 15,-6 - 8068: 16,-1 - 8069: 18,-5 - 8070: 14,-9 - 8071: 11,-6 - 8072: 19,-5 - 8073: 18,2 - 8074: 15,-1 - 8157: 58,-4 - 8158: 56,-2 - 8554: 29.134378,23.105629 - 8555: 29.850428,21.84541 - 8556: 28.655983,21.215342 - 8557: 28.473885,22.515358 - 8558: 28.461538,23.463549 - 8559: 29.65907,23.973162 - 8560: 29.498575,24.495665 - 8561: 30.483143,22.477749 - 8562: 29.489317,22.508635 - 8563: 29.612774,23.37652 - 9622: 5,-60 - 9623: 5,-60 - 9624: 6,-62 - 9625: 6,-62 - 9626: 6,-62 - 9627: 6,-62 - node: cleanable: True zIndex: 1 @@ -4643,6 +4643,12 @@ entities: 1639: 46,25 1640: 48,25 1641: 49,24 + 6983: 33,10 + 6984: 32,15 + 6985: 33,17 + 6986: 33,19 + 6987: 32,23 + 6988: 33,25 7081: -32,-59 7082: -30,-60 7083: -29,-60 @@ -4657,6 +4663,13 @@ entities: 7128: -5,-69 7129: 0,-66 7196: 4,-61 + 8161: 42,-8 + 8162: 42,1 + 8163: 43,0 + 8164: 42,4 + 8165: 42,4 + 8166: 42,4 + 8167: 42,4 8324: 40,-1 8325: 38,-3 8326: 34,-2 @@ -4727,6 +4740,8 @@ entities: 9861: -31,78 9862: -29,75 9863: -29,75 + 9963: -5,22 + 9964: -4,21 9965: -2,17 9966: -2,17 9967: -3,17 @@ -4751,21 +4766,6 @@ entities: 10234: 5,69 10235: 6,69 10236: 5,69 - 6983: 33,10 - 6984: 32,15 - 6985: 33,17 - 6986: 33,19 - 6987: 32,23 - 6988: 33,25 - 8161: 42,-8 - 8162: 42,1 - 8163: 43,0 - 8164: 42,4 - 8165: 42,4 - 8166: 42,4 - 8167: 42,4 - 9963: -5,22 - 9964: -4,21 - node: cleanable: True color: '#B02E26FF' @@ -12915,6 +12915,21 @@ entities: - 2604 - 3702 - 1537 + - uid: 12578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,46.5 + parent: 12 + - type: DeviceList + devices: + - 14094 + - 24191 + - 14090 + - 14477 + - 23748 + - 23747 + - 23749 - uid: 13076 components: - type: Transform @@ -13156,6 +13171,16 @@ entities: - 22521 - 22523 - 15783 + - uid: 22815 + components: + - type: Transform + pos: 61.5,46.5 + parent: 12 + - type: DeviceList + devices: + - 24112 + - 32358 + - 24190 - uid: 23594 components: - type: Transform @@ -13272,7 +13297,6 @@ entities: - 23640 - 21019 - 21006 - - 23641 - uid: 23643 components: - type: Transform @@ -13442,7 +13466,13 @@ entities: - 24185 - 23986 - 23996 - - 24186 + - 32354 + - 32353 + - 23641 + - 23957 + - 23944 + - 24007 + - 24002 - uid: 24187 components: - type: Transform @@ -13456,19 +13486,9 @@ entities: - 14476 - 24188 - 23750 - - uid: 24189 - components: - - type: Transform - pos: 58.5,51.5 - parent: 12 - - type: DeviceList - devices: - - 14478 - - 24190 - - 14477 - - 14094 - - 14090 - - 24191 + - 32328 + - 32340 + - 32341 - uid: 25448 components: - type: Transform @@ -14313,18 +14333,6 @@ entities: parent: 12 - proto: AirlockBarLocked entities: - - uid: 22814 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,44.5 - parent: 12 - - uid: 22815 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,52.5 - parent: 12 - uid: 22821 components: - type: Transform @@ -15494,7 +15502,7 @@ entities: pos: 26.5,17.5 parent: 12 - type: Door - secondsUntilStateChange: -19267.662 + secondsUntilStateChange: -21048.898 state: Opening - type: DeviceLinkSink invokeCounter: 1 @@ -17592,6 +17600,18 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-16.5 parent: 12 + - uid: 21046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,44.5 + parent: 12 + - uid: 22814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,52.5 + parent: 12 - uid: 22887 components: - type: Transform @@ -18527,11 +18547,12 @@ entities: - uid: 23641 components: - type: Transform - pos: 40.5,51.5 + rot: -1.5707963267948966 rad + pos: 76.5,49.5 parent: 12 - type: DeviceNetwork deviceLists: - - 23639 + - 24184 - uid: 23642 components: - type: Transform @@ -18660,14 +18681,6 @@ entities: - type: DeviceNetwork deviceLists: - 24184 - - uid: 24186 - components: - - type: Transform - pos: 75.5,49.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24184 - uid: 24188 components: - type: Transform @@ -18683,7 +18696,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 24189 + - 22815 - uid: 24191 components: - type: Transform @@ -18691,7 +18704,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 24189 + - 12578 - uid: 26054 components: - type: Transform @@ -101115,7 +101128,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 24189 + - 12578 - 24244 - 23643 - uid: 14478 @@ -101125,7 +101138,6 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 24189 - 24244 - 23643 - uid: 14479 @@ -102356,6 +102368,7 @@ entities: - type: DeviceNetwork deviceLists: - 24184 + - 12578 - uid: 23748 components: - type: Transform @@ -102364,6 +102377,7 @@ entities: - type: DeviceNetwork deviceLists: - 24184 + - 12578 - uid: 23749 components: - type: Transform @@ -102372,6 +102386,7 @@ entities: - type: DeviceNetwork deviceLists: - 24187 + - 12578 - uid: 23750 components: - type: Transform @@ -107396,21 +107411,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23990 - components: - - type: Transform - pos: 70.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24000 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 24029 components: - type: Transform @@ -107833,6 +107833,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 32330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,52.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeFourway entities: - uid: 2577 @@ -108010,6 +108018,20 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 32342 + components: + - type: Transform + pos: 69.5,48.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32343 + components: + - type: Transform + pos: 70.5,49.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeSensor entities: - uid: 1502 @@ -124749,13 +124771,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 21046 - components: - - type: Transform - pos: 50.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 21047 components: - type: Transform @@ -127852,14 +127867,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 23957 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23958 components: - type: Transform @@ -127887,8 +127894,7 @@ entities: - uid: 23961 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,48.5 + pos: 50.5,54.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -127947,13 +127953,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23970 - components: - - type: Transform - pos: 57.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23971 components: - type: Transform @@ -128149,6 +128148,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 24186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,50.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 24432 components: - type: Transform @@ -130800,6 +130807,155 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 32329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,52.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 32333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,49.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,51.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,52.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,53.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,54.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,55.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,48.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,48.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,48.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,48.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,48.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,49.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 32350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,49.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 32351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,49.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 32352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,49.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 32355 + components: + - type: Transform + pos: 62.5,47.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32356 + components: + - type: Transform + pos: 62.5,46.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32357 + components: + - type: Transform + pos: 62.5,45.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeTJunction entities: - uid: 103 @@ -133799,6 +133955,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,48.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 23977 components: - type: Transform @@ -133807,6 +133971,21 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23990 + components: + - type: Transform + pos: 62.5,48.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,52.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 25033 components: - type: Transform @@ -133992,6 +134171,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 32339 + components: + - type: Transform + pos: 58.5,56.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPort entities: - uid: 794 @@ -135353,7 +135539,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 24189 + - 12578 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14097 @@ -136110,6 +136296,16 @@ entities: - 28271 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23944 + components: + - type: Transform + pos: 70.5,50.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 24184 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 23986 components: - type: Transform @@ -136137,6 +136333,9 @@ entities: - type: Transform pos: 63.5,50.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 24184 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24112 @@ -136145,6 +136344,9 @@ entities: rot: -1.5707963267948966 rad pos: 60.5,45.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 22815 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25097 @@ -136550,6 +136752,27 @@ entities: - 32231 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 32328 + components: + - type: Transform + pos: 59.5,53.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 24187 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 32353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,49.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 24184 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 800 @@ -137344,7 +137567,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 24189 + - 12578 - type: AtmosPipeColor color: '#990000FF' - uid: 14102 @@ -137941,6 +138164,17 @@ entities: - 28360 - type: AtmosPipeColor color: '#990000FF' + - uid: 23957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,47.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 24184 + - type: AtmosPipeColor + color: '#990000FF' - uid: 23996 components: - type: Transform @@ -137958,6 +138192,9 @@ entities: rot: 3.141592653589793 rad pos: 63.5,47.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 24184 - type: AtmosPipeColor color: '#990000FF' - uid: 24008 @@ -138224,6 +138461,50 @@ entities: - 32231 - type: AtmosPipeColor color: '#990000FF' + - uid: 32340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,56.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 24187 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,56.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 24187 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,48.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 24184 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,44.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 22815 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasVolumePump entities: - uid: 2869 @@ -139251,12 +139532,6 @@ entities: rot: 3.141592653589793 rad pos: -45.5,-38.5 parent: 12 - - uid: 942 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,41.5 - parent: 12 - uid: 951 components: - type: Transform @@ -145676,12 +145951,6 @@ entities: rot: 3.141592653589793 rad pos: 81.5,56.5 parent: 12 - - uid: 27944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,57.5 - parent: 12 - uid: 27945 components: - type: Transform @@ -147171,6 +147440,412 @@ entities: - type: Transform pos: 78.5,14.5 parent: 12 + - uid: 32332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,51.5 + parent: 12 + - uid: 32360 + components: + - type: Transform + pos: 80.5,40.5 + parent: 12 + - uid: 32361 + components: + - type: Transform + pos: 80.5,38.5 + parent: 12 + - uid: 32369 + components: + - type: Transform + pos: 84.5,56.5 + parent: 12 + - uid: 32370 + components: + - type: Transform + pos: 84.5,54.5 + parent: 12 + - uid: 32371 + components: + - type: Transform + pos: 66.5,37.5 + parent: 12 + - uid: 32373 + components: + - type: Transform + pos: 84.5,50.5 + parent: 12 + - uid: 32374 + components: + - type: Transform + pos: 84.5,49.5 + parent: 12 + - uid: 32376 + components: + - type: Transform + pos: 84.5,47.5 + parent: 12 + - uid: 32377 + components: + - type: Transform + pos: 84.5,45.5 + parent: 12 + - uid: 32378 + components: + - type: Transform + pos: 84.5,44.5 + parent: 12 + - uid: 32381 + components: + - type: Transform + pos: 84.5,41.5 + parent: 12 + - uid: 32382 + components: + - type: Transform + pos: 84.5,40.5 + parent: 12 + - uid: 32383 + components: + - type: Transform + pos: 83.5,39.5 + parent: 12 + - uid: 32386 + components: + - type: Transform + pos: 82.5,38.5 + parent: 12 + - uid: 32387 + components: + - type: Transform + pos: 82.5,37.5 + parent: 12 + - uid: 32388 + components: + - type: Transform + pos: 82.5,36.5 + parent: 12 + - uid: 32389 + components: + - type: Transform + pos: 79.5,38.5 + parent: 12 + - uid: 32390 + components: + - type: Transform + pos: 78.5,38.5 + parent: 12 + - uid: 32391 + components: + - type: Transform + pos: 77.5,38.5 + parent: 12 + - uid: 32392 + components: + - type: Transform + pos: 76.5,38.5 + parent: 12 + - uid: 32393 + components: + - type: Transform + pos: 75.5,38.5 + parent: 12 + - uid: 32394 + components: + - type: Transform + pos: 74.5,38.5 + parent: 12 + - uid: 32395 + components: + - type: Transform + pos: 73.5,38.5 + parent: 12 + - uid: 32396 + components: + - type: Transform + pos: 72.5,38.5 + parent: 12 + - uid: 32397 + components: + - type: Transform + pos: 71.5,38.5 + parent: 12 + - uid: 32398 + components: + - type: Transform + pos: 70.5,38.5 + parent: 12 + - uid: 32399 + components: + - type: Transform + pos: 69.5,38.5 + parent: 12 + - uid: 32400 + components: + - type: Transform + pos: 68.5,38.5 + parent: 12 + - uid: 32401 + components: + - type: Transform + pos: 67.5,38.5 + parent: 12 + - uid: 32404 + components: + - type: Transform + pos: 64.5,37.5 + parent: 12 + - uid: 32405 + components: + - type: Transform + pos: 63.5,37.5 + parent: 12 + - uid: 32406 + components: + - type: Transform + pos: 62.5,37.5 + parent: 12 + - uid: 32408 + components: + - type: Transform + pos: 60.5,37.5 + parent: 12 + - uid: 32409 + components: + - type: Transform + pos: 67.5,36.5 + parent: 12 + - uid: 32411 + components: + - type: Transform + pos: 68.5,36.5 + parent: 12 + - uid: 32412 + components: + - type: Transform + pos: 69.5,36.5 + parent: 12 + - uid: 32414 + components: + - type: Transform + pos: 71.5,36.5 + parent: 12 + - uid: 32415 + components: + - type: Transform + pos: 72.5,36.5 + parent: 12 + - uid: 32416 + components: + - type: Transform + pos: 73.5,36.5 + parent: 12 + - uid: 32417 + components: + - type: Transform + pos: 74.5,36.5 + parent: 12 + - uid: 32418 + components: + - type: Transform + pos: 75.5,36.5 + parent: 12 + - uid: 32419 + components: + - type: Transform + pos: 76.5,36.5 + parent: 12 + - uid: 32420 + components: + - type: Transform + pos: 77.5,36.5 + parent: 12 + - uid: 32421 + components: + - type: Transform + pos: 78.5,36.5 + parent: 12 + - uid: 32423 + components: + - type: Transform + pos: 80.5,36.5 + parent: 12 + - uid: 32424 + components: + - type: Transform + pos: 81.5,36.5 + parent: 12 + - uid: 32425 + components: + - type: Transform + pos: 83.5,58.5 + parent: 12 + - uid: 32427 + components: + - type: Transform + pos: 82.5,59.5 + parent: 12 + - uid: 32428 + components: + - type: Transform + pos: 82.5,60.5 + parent: 12 + - uid: 32429 + components: + - type: Transform + pos: 82.5,61.5 + parent: 12 + - uid: 32430 + components: + - type: Transform + pos: 69.5,62.5 + parent: 12 + - uid: 32431 + components: + - type: Transform + pos: 81.5,61.5 + parent: 12 + - uid: 32432 + components: + - type: Transform + pos: 80.5,61.5 + parent: 12 + - uid: 32433 + components: + - type: Transform + pos: 79.5,61.5 + parent: 12 + - uid: 32434 + components: + - type: Transform + pos: 78.5,61.5 + parent: 12 + - uid: 32435 + components: + - type: Transform + pos: 77.5,61.5 + parent: 12 + - uid: 32436 + components: + - type: Transform + pos: 76.5,61.5 + parent: 12 + - uid: 32437 + components: + - type: Transform + pos: 75.5,61.5 + parent: 12 + - uid: 32438 + components: + - type: Transform + pos: 74.5,61.5 + parent: 12 + - uid: 32439 + components: + - type: Transform + pos: 73.5,61.5 + parent: 12 + - uid: 32440 + components: + - type: Transform + pos: 72.5,61.5 + parent: 12 + - uid: 32441 + components: + - type: Transform + pos: 71.5,61.5 + parent: 12 + - uid: 32442 + components: + - type: Transform + pos: 70.5,61.5 + parent: 12 + - uid: 32444 + components: + - type: Transform + pos: 68.5,61.5 + parent: 12 + - uid: 32445 + components: + - type: Transform + pos: 67.5,61.5 + parent: 12 + - uid: 32446 + components: + - type: Transform + pos: 69.5,63.5 + parent: 12 + - uid: 32447 + components: + - type: Transform + pos: 66.5,39.5 + parent: 12 + - uid: 32448 + components: + - type: Transform + pos: 68.5,63.5 + parent: 12 + - uid: 32449 + components: + - type: Transform + pos: 67.5,63.5 + parent: 12 + - uid: 32451 + components: + - type: Transform + pos: 65.5,63.5 + parent: 12 + - uid: 32452 + components: + - type: Transform + pos: 64.5,63.5 + parent: 12 + - uid: 32453 + components: + - type: Transform + pos: 63.5,63.5 + parent: 12 + - uid: 32454 + components: + - type: Transform + pos: 63.5,64.5 + parent: 12 + - uid: 32455 + components: + - type: Transform + pos: 63.5,65.5 + parent: 12 + - uid: 32456 + components: + - type: Transform + pos: 62.5,65.5 + parent: 12 + - uid: 32457 + components: + - type: Transform + pos: 65.5,39.5 + parent: 12 + - uid: 32458 + components: + - type: Transform + pos: 64.5,39.5 + parent: 12 + - uid: 32460 + components: + - type: Transform + pos: 62.5,39.5 + parent: 12 + - uid: 32461 + components: + - type: Transform + pos: 60.5,39.5 + parent: 12 + - uid: 32462 + components: + - type: Transform + pos: 61.5,39.5 + parent: 12 - proto: GrilleBroken entities: - uid: 3719 @@ -147288,6 +147963,11 @@ entities: parent: 12 - proto: GrilleSpawner entities: + - uid: 942 + components: + - type: Transform + pos: 82.5,39.5 + parent: 12 - uid: 19569 components: - type: Transform @@ -147503,6 +148183,11 @@ entities: - type: Transform pos: -29.5,-70.5 parent: 12 + - uid: 27933 + components: + - type: Transform + pos: 81.5,57.5 + parent: 12 - uid: 27975 components: - type: Transform @@ -147578,6 +148263,81 @@ entities: - type: Transform pos: 62.5,14.5 parent: 12 + - uid: 32368 + components: + - type: Transform + pos: 84.5,57.5 + parent: 12 + - uid: 32372 + components: + - type: Transform + pos: 84.5,43.5 + parent: 12 + - uid: 32375 + components: + - type: Transform + pos: 84.5,48.5 + parent: 12 + - uid: 32379 + components: + - type: Transform + pos: 84.5,52.5 + parent: 12 + - uid: 32380 + components: + - type: Transform + pos: 61.5,67.5 + parent: 12 + - uid: 32384 + components: + - type: Transform + pos: 81.5,40.5 + parent: 12 + - uid: 32385 + components: + - type: Transform + pos: 61.5,66.5 + parent: 12 + - uid: 32403 + components: + - type: Transform + pos: 65.5,37.5 + parent: 12 + - uid: 32407 + components: + - type: Transform + pos: 63.5,39.5 + parent: 12 + - uid: 32413 + components: + - type: Transform + pos: 79.5,36.5 + parent: 12 + - uid: 32422 + components: + - type: Transform + pos: 70.5,36.5 + parent: 12 + - uid: 32426 + components: + - type: Transform + pos: 82.5,58.5 + parent: 12 + - uid: 32450 + components: + - type: Transform + pos: 66.5,63.5 + parent: 12 + - uid: 32459 + components: + - type: Transform + pos: 61.5,37.5 + parent: 12 + - uid: 32463 + components: + - type: Transform + pos: 84.5,53.5 + parent: 12 - proto: GroundCannabis entities: - uid: 12239 @@ -177852,11 +178612,6 @@ entities: - type: Transform pos: 66.5,43.5 parent: 12 - - uid: 23944 - components: - - type: Transform - pos: 53.5,54.5 - parent: 12 - uid: 24011 components: - type: Transform @@ -178317,6 +179072,11 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,71.5 parent: 12 + - uid: 32331 + components: + - type: Transform + pos: 53.5,54.5 + parent: 12 - proto: TableCarpet entities: - uid: 19680 @@ -196101,11 +196861,6 @@ entities: - type: Transform pos: 65.5,46.5 parent: 12 - - uid: 12578 - components: - - type: Transform - pos: 58.5,51.5 - parent: 12 - uid: 12579 components: - type: Transform @@ -200218,12 +200973,6 @@ entities: rot: 3.141592653589793 rad pos: 66.5,61.5 parent: 12 - - uid: 27933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,58.5 - parent: 12 - uid: 27934 components: - type: Transform @@ -200233,8 +200982,12 @@ entities: - uid: 27935 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,55.5 + pos: 80.5,39.5 + parent: 12 + - uid: 27944 + components: + - type: Transform + pos: 80.5,58.5 parent: 12 - uid: 27997 components: @@ -200587,6 +201340,56 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-2.5 parent: 12 + - uid: 32359 + components: + - type: Transform + pos: 82.5,55.5 + parent: 12 + - uid: 32362 + components: + - type: Transform + pos: 84.5,42.5 + parent: 12 + - uid: 32363 + components: + - type: Transform + pos: 84.5,46.5 + parent: 12 + - uid: 32364 + components: + - type: Transform + pos: 84.5,51.5 + parent: 12 + - uid: 32365 + components: + - type: Transform + pos: 84.5,55.5 + parent: 12 + - uid: 32366 + components: + - type: Transform + pos: 84.5,58.5 + parent: 12 + - uid: 32367 + components: + - type: Transform + pos: 84.5,39.5 + parent: 12 + - uid: 32402 + components: + - type: Transform + pos: 66.5,38.5 + parent: 12 + - uid: 32410 + components: + - type: Transform + pos: 66.5,36.5 + parent: 12 + - uid: 32443 + components: + - type: Transform + pos: 69.5,61.5 + parent: 12 - proto: WallSolidDiagonal entities: - uid: 27255 @@ -204438,6 +205241,12 @@ entities: - type: Transform pos: 12.5,60.5 parent: 12 + - uid: 24189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,51.5 + parent: 12 - uid: 25197 components: - type: Transform From b4b4db73d1c916873dc227f6b91ddd5b9bcf2728 Mon Sep 17 00:00:00 2001 From: TytosB <54259736+TytosB@users.noreply.github.com> Date: Sun, 9 Feb 2025 02:24:18 -0600 Subject: [PATCH 149/313] Loop station i added a paper tray and brb sign to hop and tinyfans to the freezer (#34872) * small fixes * eee * let me get uhhh --- Resources/Maps/loop.yml | 1472 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 1453 insertions(+), 19 deletions(-) diff --git a/Resources/Maps/loop.yml b/Resources/Maps/loop.yml index 493a5dfc67..b9383f0dbe 100644 --- a/Resources/Maps/loop.yml +++ b/Resources/Maps/loop.yml @@ -5243,6 +5243,13 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 6715 + - uid: 17721 + components: + - type: Transform + parent: 9067 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 9067 - proto: AirAlarm entities: - uid: 21 @@ -7204,7 +7211,7 @@ entities: pos: -30.5,13.5 parent: 2 - type: Door - secondsUntilStateChange: -48828.195 + secondsUntilStateChange: -49146.285 state: Opening - type: DeviceLinkSource lastSignals: @@ -10653,6 +10660,18 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,40.5 parent: 2 +- proto: AtmosDeviceFanTiny + entities: + - uid: 17996 + components: + - type: Transform + pos: -51.5,51.5 + parent: 2 + - uid: 17997 + components: + - type: Transform + pos: -46.5,51.5 + parent: 2 - proto: AtmosFixBlockerMarker entities: - uid: 198 @@ -12157,11 +12176,6 @@ entities: - type: Transform pos: -21.18376,72.50857 parent: 2 - - uid: 9041 - components: - - type: Transform - pos: -35.100624,62.530506 - parent: 2 - proto: BoxFolderGreen entities: - uid: 6685 @@ -12295,6 +12309,13 @@ entities: - type: Transform pos: -38.839447,44.591007 parent: 2 +- proto: BrbSign + entities: + - uid: 17995 + components: + - type: Transform + pos: -35.37794,63.58153 + parent: 2 - proto: BriefcaseBrownFilled entities: - uid: 5449 @@ -38517,6 +38538,1371 @@ entities: rot: 3.141592653589793 rad pos: 12.5,2.5 parent: 2 + - uid: 17722 + components: + - type: Transform + pos: -37.5,-27.5 + parent: 2 + - uid: 17723 + components: + - type: Transform + pos: -86.5,14.5 + parent: 2 + - uid: 17724 + components: + - type: Transform + pos: -86.5,12.5 + parent: 2 + - uid: 17725 + components: + - type: Transform + pos: -86.5,11.5 + parent: 2 + - uid: 17726 + components: + - type: Transform + pos: -86.5,10.5 + parent: 2 + - uid: 17727 + components: + - type: Transform + pos: -86.5,9.5 + parent: 2 + - uid: 17728 + components: + - type: Transform + pos: -86.5,13.5 + parent: 2 + - uid: 17729 + components: + - type: Transform + pos: -86.5,8.5 + parent: 2 + - uid: 17730 + components: + - type: Transform + pos: -86.5,6.5 + parent: 2 + - uid: 17731 + components: + - type: Transform + pos: -86.5,5.5 + parent: 2 + - uid: 17732 + components: + - type: Transform + pos: -86.5,4.5 + parent: 2 + - uid: 17733 + components: + - type: Transform + pos: -86.5,7.5 + parent: 2 + - uid: 17734 + components: + - type: Transform + pos: -90.5,4.5 + parent: 2 + - uid: 17735 + components: + - type: Transform + pos: -90.5,5.5 + parent: 2 + - uid: 17736 + components: + - type: Transform + pos: -90.5,6.5 + parent: 2 + - uid: 17737 + components: + - type: Transform + pos: -90.5,7.5 + parent: 2 + - uid: 17738 + components: + - type: Transform + pos: -90.5,8.5 + parent: 2 + - uid: 17739 + components: + - type: Transform + pos: -90.5,10.5 + parent: 2 + - uid: 17740 + components: + - type: Transform + pos: -90.5,11.5 + parent: 2 + - uid: 17741 + components: + - type: Transform + pos: -90.5,12.5 + parent: 2 + - uid: 17742 + components: + - type: Transform + pos: -90.5,9.5 + parent: 2 + - uid: 17743 + components: + - type: Transform + pos: -90.5,13.5 + parent: 2 + - uid: 17744 + components: + - type: Transform + pos: -90.5,14.5 + parent: 2 + - uid: 17745 + components: + - type: Transform + pos: -94.5,14.5 + parent: 2 + - uid: 17746 + components: + - type: Transform + pos: -94.5,13.5 + parent: 2 + - uid: 17747 + components: + - type: Transform + pos: -94.5,12.5 + parent: 2 + - uid: 17748 + components: + - type: Transform + pos: -94.5,10.5 + parent: 2 + - uid: 17749 + components: + - type: Transform + pos: -94.5,9.5 + parent: 2 + - uid: 17750 + components: + - type: Transform + pos: -94.5,11.5 + parent: 2 + - uid: 17751 + components: + - type: Transform + pos: -94.5,8.5 + parent: 2 + - uid: 17752 + components: + - type: Transform + pos: -94.5,7.5 + parent: 2 + - uid: 17753 + components: + - type: Transform + pos: -94.5,6.5 + parent: 2 + - uid: 17754 + components: + - type: Transform + pos: -94.5,5.5 + parent: 2 + - uid: 17755 + components: + - type: Transform + pos: -94.5,4.5 + parent: 2 + - uid: 17756 + components: + - type: Transform + pos: -98.5,4.5 + parent: 2 + - uid: 17757 + components: + - type: Transform + pos: -98.5,5.5 + parent: 2 + - uid: 17758 + components: + - type: Transform + pos: -98.5,6.5 + parent: 2 + - uid: 17759 + components: + - type: Transform + pos: -98.5,8.5 + parent: 2 + - uid: 17760 + components: + - type: Transform + pos: -98.5,9.5 + parent: 2 + - uid: 17761 + components: + - type: Transform + pos: -98.5,10.5 + parent: 2 + - uid: 17762 + components: + - type: Transform + pos: -98.5,7.5 + parent: 2 + - uid: 17763 + components: + - type: Transform + pos: -98.5,11.5 + parent: 2 + - uid: 17764 + components: + - type: Transform + pos: -98.5,12.5 + parent: 2 + - uid: 17765 + components: + - type: Transform + pos: -98.5,14.5 + parent: 2 + - uid: 17766 + components: + - type: Transform + pos: -98.5,13.5 + parent: 2 + - uid: 17767 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - uid: 17768 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 17769 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 2 + - uid: 17770 + components: + - type: Transform + pos: -28.5,-17.5 + parent: 2 + - uid: 17771 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 2 + - uid: 17772 + components: + - type: Transform + pos: -28.5,-19.5 + parent: 2 + - uid: 17773 + components: + - type: Transform + pos: -28.5,-20.5 + parent: 2 + - uid: 17774 + components: + - type: Transform + pos: -28.5,-21.5 + parent: 2 + - uid: 17775 + components: + - type: Transform + pos: -28.5,-22.5 + parent: 2 + - uid: 17776 + components: + - type: Transform + pos: -28.5,-23.5 + parent: 2 + - uid: 17777 + components: + - type: Transform + pos: -28.5,-24.5 + parent: 2 + - uid: 17778 + components: + - type: Transform + pos: -28.5,-25.5 + parent: 2 + - uid: 17779 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - uid: 17780 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 2 + - uid: 17781 + components: + - type: Transform + pos: -28.5,-28.5 + parent: 2 + - uid: 17782 + components: + - type: Transform + pos: -36.5,-27.5 + parent: 2 + - uid: 17783 + components: + - type: Transform + pos: -35.5,-27.5 + parent: 2 + - uid: 17784 + components: + - type: Transform + pos: -34.5,-27.5 + parent: 2 + - uid: 17785 + components: + - type: Transform + pos: -33.5,-27.5 + parent: 2 + - uid: 17786 + components: + - type: Transform + pos: -32.5,-27.5 + parent: 2 + - uid: 17787 + components: + - type: Transform + pos: -31.5,-27.5 + parent: 2 + - uid: 17788 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 2 + - uid: 17789 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 2 + - uid: 17790 + components: + - type: Transform + pos: -30.5,-27.5 + parent: 2 + - uid: 17791 + components: + - type: Transform + pos: -27.5,-27.5 + parent: 2 + - uid: 17792 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 2 + - uid: 17793 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 2 + - uid: 17794 + components: + - type: Transform + pos: -24.5,-27.5 + parent: 2 + - uid: 17795 + components: + - type: Transform + pos: -23.5,-27.5 + parent: 2 + - uid: 17796 + components: + - type: Transform + pos: 35.5,28.5 + parent: 2 + - uid: 17797 + components: + - type: Transform + pos: -37.5,-23.5 + parent: 2 + - uid: 17798 + components: + - type: Transform + pos: -35.5,-23.5 + parent: 2 + - uid: 17799 + components: + - type: Transform + pos: -34.5,-23.5 + parent: 2 + - uid: 17800 + components: + - type: Transform + pos: -33.5,-23.5 + parent: 2 + - uid: 17801 + components: + - type: Transform + pos: -32.5,-23.5 + parent: 2 + - uid: 17802 + components: + - type: Transform + pos: -31.5,-23.5 + parent: 2 + - uid: 17803 + components: + - type: Transform + pos: -30.5,-23.5 + parent: 2 + - uid: 17804 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 2 + - uid: 17805 + components: + - type: Transform + pos: -28.5,-23.5 + parent: 2 + - uid: 17806 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 2 + - uid: 17807 + components: + - type: Transform + pos: -36.5,-23.5 + parent: 2 + - uid: 17808 + components: + - type: Transform + pos: -25.5,-23.5 + parent: 2 + - uid: 17809 + components: + - type: Transform + pos: -24.5,-23.5 + parent: 2 + - uid: 17810 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 2 + - uid: 17811 + components: + - type: Transform + pos: -26.5,-23.5 + parent: 2 + - uid: 17812 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 2 + - uid: 17813 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 2 + - uid: 17814 + components: + - type: Transform + pos: -35.5,-19.5 + parent: 2 + - uid: 17815 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 2 + - uid: 17816 + components: + - type: Transform + pos: -32.5,-19.5 + parent: 2 + - uid: 17817 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 2 + - uid: 17818 + components: + - type: Transform + pos: -30.5,-19.5 + parent: 2 + - uid: 17819 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 2 + - uid: 17820 + components: + - type: Transform + pos: -28.5,-19.5 + parent: 2 + - uid: 17821 + components: + - type: Transform + pos: -27.5,-19.5 + parent: 2 + - uid: 17822 + components: + - type: Transform + pos: -34.5,-19.5 + parent: 2 + - uid: 17823 + components: + - type: Transform + pos: -26.5,-19.5 + parent: 2 + - uid: 17824 + components: + - type: Transform + pos: -24.5,-19.5 + parent: 2 + - uid: 17825 + components: + - type: Transform + pos: -23.5,-19.5 + parent: 2 + - uid: 17826 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 2 + - uid: 17827 + components: + - type: Transform + pos: -37.5,-15.5 + parent: 2 + - uid: 17828 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 2 + - uid: 17829 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 2 + - uid: 17830 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 + - uid: 17831 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 2 + - uid: 17832 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 2 + - uid: 17833 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 2 + - uid: 17834 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - uid: 17835 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 17836 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 2 + - uid: 17837 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 2 + - uid: 17838 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 2 + - uid: 17839 + components: + - type: Transform + pos: -33.5,-15.5 + parent: 2 + - uid: 17840 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - uid: 17841 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 2 + - uid: 17842 + components: + - type: Transform + pos: 36.5,28.5 + parent: 2 + - uid: 17843 + components: + - type: Transform + pos: 38.5,28.5 + parent: 2 + - uid: 17844 + components: + - type: Transform + pos: 39.5,28.5 + parent: 2 + - uid: 17845 + components: + - type: Transform + pos: 40.5,28.5 + parent: 2 + - uid: 17846 + components: + - type: Transform + pos: 41.5,28.5 + parent: 2 + - uid: 17847 + components: + - type: Transform + pos: 37.5,28.5 + parent: 2 + - uid: 17848 + components: + - type: Transform + pos: 42.5,28.5 + parent: 2 + - uid: 17849 + components: + - type: Transform + pos: 43.5,28.5 + parent: 2 + - uid: 17850 + components: + - type: Transform + pos: 44.5,28.5 + parent: 2 + - uid: 17851 + components: + - type: Transform + pos: 45.5,28.5 + parent: 2 + - uid: 17852 + components: + - type: Transform + pos: 46.5,28.5 + parent: 2 + - uid: 17853 + components: + - type: Transform + pos: 47.5,28.5 + parent: 2 + - uid: 17854 + components: + - type: Transform + pos: 48.5,28.5 + parent: 2 + - uid: 17855 + components: + - type: Transform + pos: 49.5,28.5 + parent: 2 + - uid: 17856 + components: + - type: Transform + pos: 51.5,28.5 + parent: 2 + - uid: 17857 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 + - uid: 17858 + components: + - type: Transform + pos: 49.5,35.5 + parent: 2 + - uid: 17859 + components: + - type: Transform + pos: 49.5,21.5 + parent: 2 + - uid: 17860 + components: + - type: Transform + pos: 49.5,23.5 + parent: 2 + - uid: 17861 + components: + - type: Transform + pos: 49.5,24.5 + parent: 2 + - uid: 17862 + components: + - type: Transform + pos: 49.5,25.5 + parent: 2 + - uid: 17863 + components: + - type: Transform + pos: 49.5,26.5 + parent: 2 + - uid: 17864 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 + - uid: 17865 + components: + - type: Transform + pos: 49.5,28.5 + parent: 2 + - uid: 17866 + components: + - type: Transform + pos: 49.5,29.5 + parent: 2 + - uid: 17867 + components: + - type: Transform + pos: 49.5,30.5 + parent: 2 + - uid: 17868 + components: + - type: Transform + pos: 49.5,31.5 + parent: 2 + - uid: 17869 + components: + - type: Transform + pos: 49.5,32.5 + parent: 2 + - uid: 17870 + components: + - type: Transform + pos: 49.5,33.5 + parent: 2 + - uid: 17871 + components: + - type: Transform + pos: 49.5,34.5 + parent: 2 + - uid: 17872 + components: + - type: Transform + pos: 49.5,22.5 + parent: 2 + - uid: 17873 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 17874 + components: + - type: Transform + pos: 45.5,34.5 + parent: 2 + - uid: 17875 + components: + - type: Transform + pos: 45.5,33.5 + parent: 2 + - uid: 17876 + components: + - type: Transform + pos: 45.5,30.5 + parent: 2 + - uid: 17877 + components: + - type: Transform + pos: 45.5,31.5 + parent: 2 + - uid: 17878 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 17879 + components: + - type: Transform + pos: 45.5,28.5 + parent: 2 + - uid: 17880 + components: + - type: Transform + pos: 45.5,27.5 + parent: 2 + - uid: 17881 + components: + - type: Transform + pos: 45.5,26.5 + parent: 2 + - uid: 17882 + components: + - type: Transform + pos: 45.5,32.5 + parent: 2 + - uid: 17883 + components: + - type: Transform + pos: 45.5,25.5 + parent: 2 + - uid: 17884 + components: + - type: Transform + pos: 45.5,24.5 + parent: 2 + - uid: 17885 + components: + - type: Transform + pos: 45.5,23.5 + parent: 2 + - uid: 17886 + components: + - type: Transform + pos: 45.5,22.5 + parent: 2 + - uid: 17887 + components: + - type: Transform + pos: 45.5,21.5 + parent: 2 + - uid: 17888 + components: + - type: Transform + pos: 37.5,21.5 + parent: 2 + - uid: 17889 + components: + - type: Transform + pos: 41.5,35.5 + parent: 2 + - uid: 17890 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 + - uid: 17891 + components: + - type: Transform + pos: 41.5,33.5 + parent: 2 + - uid: 17892 + components: + - type: Transform + pos: 41.5,31.5 + parent: 2 + - uid: 17893 + components: + - type: Transform + pos: 41.5,30.5 + parent: 2 + - uid: 17894 + components: + - type: Transform + pos: 41.5,29.5 + parent: 2 + - uid: 17895 + components: + - type: Transform + pos: 41.5,28.5 + parent: 2 + - uid: 17896 + components: + - type: Transform + pos: 41.5,27.5 + parent: 2 + - uid: 17897 + components: + - type: Transform + pos: 41.5,26.5 + parent: 2 + - uid: 17898 + components: + - type: Transform + pos: 41.5,32.5 + parent: 2 + - uid: 17899 + components: + - type: Transform + pos: 41.5,24.5 + parent: 2 + - uid: 17900 + components: + - type: Transform + pos: 41.5,23.5 + parent: 2 + - uid: 17901 + components: + - type: Transform + pos: 41.5,21.5 + parent: 2 + - uid: 17902 + components: + - type: Transform + pos: 41.5,25.5 + parent: 2 + - uid: 17903 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 + - uid: 17904 + components: + - type: Transform + pos: 37.5,22.5 + parent: 2 + - uid: 17905 + components: + - type: Transform + pos: 37.5,23.5 + parent: 2 + - uid: 17906 + components: + - type: Transform + pos: 37.5,25.5 + parent: 2 + - uid: 17907 + components: + - type: Transform + pos: 37.5,26.5 + parent: 2 + - uid: 17908 + components: + - type: Transform + pos: 37.5,27.5 + parent: 2 + - uid: 17909 + components: + - type: Transform + pos: 37.5,28.5 + parent: 2 + - uid: 17910 + components: + - type: Transform + pos: 37.5,29.5 + parent: 2 + - uid: 17911 + components: + - type: Transform + pos: 37.5,30.5 + parent: 2 + - uid: 17912 + components: + - type: Transform + pos: 37.5,24.5 + parent: 2 + - uid: 17913 + components: + - type: Transform + pos: 37.5,32.5 + parent: 2 + - uid: 17914 + components: + - type: Transform + pos: 37.5,34.5 + parent: 2 + - uid: 17915 + components: + - type: Transform + pos: 37.5,35.5 + parent: 2 + - uid: 17916 + components: + - type: Transform + pos: 37.5,31.5 + parent: 2 + - uid: 17917 + components: + - type: Transform + pos: 37.5,33.5 + parent: 2 + - uid: 17918 + components: + - type: Transform + pos: -55.5,79.5 + parent: 2 + - uid: 17919 + components: + - type: Transform + pos: -53.5,92.5 + parent: 2 + - uid: 17920 + components: + - type: Transform + pos: -53.5,91.5 + parent: 2 + - uid: 17921 + components: + - type: Transform + pos: -54.5,91.5 + parent: 2 + - uid: 17922 + components: + - type: Transform + pos: -55.5,91.5 + parent: 2 + - uid: 17923 + components: + - type: Transform + pos: -56.5,91.5 + parent: 2 + - uid: 17924 + components: + - type: Transform + pos: -58.5,91.5 + parent: 2 + - uid: 17925 + components: + - type: Transform + pos: -59.5,91.5 + parent: 2 + - uid: 17926 + components: + - type: Transform + pos: -57.5,91.5 + parent: 2 + - uid: 17927 + components: + - type: Transform + pos: -59.5,90.5 + parent: 2 + - uid: 17928 + components: + - type: Transform + pos: -59.5,89.5 + parent: 2 + - uid: 17929 + components: + - type: Transform + pos: -59.5,87.5 + parent: 2 + - uid: 17930 + components: + - type: Transform + pos: -59.5,86.5 + parent: 2 + - uid: 17931 + components: + - type: Transform + pos: -59.5,85.5 + parent: 2 + - uid: 17932 + components: + - type: Transform + pos: -59.5,84.5 + parent: 2 + - uid: 17933 + components: + - type: Transform + pos: -59.5,83.5 + parent: 2 + - uid: 17934 + components: + - type: Transform + pos: -59.5,82.5 + parent: 2 + - uid: 17935 + components: + - type: Transform + pos: -59.5,88.5 + parent: 2 + - uid: 17936 + components: + - type: Transform + pos: -59.5,80.5 + parent: 2 + - uid: 17937 + components: + - type: Transform + pos: -59.5,79.5 + parent: 2 + - uid: 17938 + components: + - type: Transform + pos: -59.5,78.5 + parent: 2 + - uid: 17939 + components: + - type: Transform + pos: -59.5,81.5 + parent: 2 + - uid: 17940 + components: + - type: Transform + pos: -60.5,78.5 + parent: 2 + - uid: 17941 + components: + - type: Transform + pos: -61.5,78.5 + parent: 2 + - uid: 17942 + components: + - type: Transform + pos: -58.5,78.5 + parent: 2 + - uid: 17943 + components: + - type: Transform + pos: -57.5,78.5 + parent: 2 + - uid: 17944 + components: + - type: Transform + pos: -56.5,78.5 + parent: 2 + - uid: 17945 + components: + - type: Transform + pos: -54.5,78.5 + parent: 2 + - uid: 17946 + components: + - type: Transform + pos: -53.5,78.5 + parent: 2 + - uid: 17947 + components: + - type: Transform + pos: -52.5,78.5 + parent: 2 + - uid: 17948 + components: + - type: Transform + pos: -51.5,78.5 + parent: 2 + - uid: 17949 + components: + - type: Transform + pos: -50.5,78.5 + parent: 2 + - uid: 17950 + components: + - type: Transform + pos: -49.5,78.5 + parent: 2 + - uid: 17951 + components: + - type: Transform + pos: -55.5,78.5 + parent: 2 + - uid: 17952 + components: + - type: Transform + pos: -47.5,78.5 + parent: 2 + - uid: 17953 + components: + - type: Transform + pos: -48.5,78.5 + parent: 2 + - uid: 17954 + components: + - type: Transform + pos: -47.5,79.5 + parent: 2 + - uid: 17955 + components: + - type: Transform + pos: -47.5,81.5 + parent: 2 + - uid: 17956 + components: + - type: Transform + pos: -47.5,82.5 + parent: 2 + - uid: 17957 + components: + - type: Transform + pos: -47.5,83.5 + parent: 2 + - uid: 17958 + components: + - type: Transform + pos: -47.5,84.5 + parent: 2 + - uid: 17959 + components: + - type: Transform + pos: -47.5,85.5 + parent: 2 + - uid: 17960 + components: + - type: Transform + pos: -47.5,80.5 + parent: 2 + - uid: 17961 + components: + - type: Transform + pos: -47.5,86.5 + parent: 2 + - uid: 17962 + components: + - type: Transform + pos: -47.5,87.5 + parent: 2 + - uid: 17963 + components: + - type: Transform + pos: -47.5,89.5 + parent: 2 + - uid: 17964 + components: + - type: Transform + pos: -47.5,90.5 + parent: 2 + - uid: 17965 + components: + - type: Transform + pos: -47.5,91.5 + parent: 2 + - uid: 17966 + components: + - type: Transform + pos: -47.5,88.5 + parent: 2 + - uid: 17967 + components: + - type: Transform + pos: -48.5,91.5 + parent: 2 + - uid: 17968 + components: + - type: Transform + pos: -49.5,91.5 + parent: 2 + - uid: 17969 + components: + - type: Transform + pos: -50.5,91.5 + parent: 2 + - uid: 17970 + components: + - type: Transform + pos: -51.5,91.5 + parent: 2 + - uid: 17971 + components: + - type: Transform + pos: -52.5,91.5 + parent: 2 + - uid: 17972 + components: + - type: Transform + pos: -51.5,90.5 + parent: 2 + - uid: 17973 + components: + - type: Transform + pos: -51.5,89.5 + parent: 2 + - uid: 17974 + components: + - type: Transform + pos: -51.5,87.5 + parent: 2 + - uid: 17975 + components: + - type: Transform + pos: -51.5,86.5 + parent: 2 + - uid: 17976 + components: + - type: Transform + pos: -51.5,85.5 + parent: 2 + - uid: 17977 + components: + - type: Transform + pos: -51.5,84.5 + parent: 2 + - uid: 17978 + components: + - type: Transform + pos: -51.5,88.5 + parent: 2 + - uid: 17979 + components: + - type: Transform + pos: -51.5,82.5 + parent: 2 + - uid: 17980 + components: + - type: Transform + pos: -51.5,81.5 + parent: 2 + - uid: 17981 + components: + - type: Transform + pos: -51.5,80.5 + parent: 2 + - uid: 17982 + components: + - type: Transform + pos: -51.5,83.5 + parent: 2 + - uid: 17983 + components: + - type: Transform + pos: -51.5,79.5 + parent: 2 + - uid: 17984 + components: + - type: Transform + pos: -55.5,80.5 + parent: 2 + - uid: 17985 + components: + - type: Transform + pos: -55.5,81.5 + parent: 2 + - uid: 17986 + components: + - type: Transform + pos: -55.5,83.5 + parent: 2 + - uid: 17987 + components: + - type: Transform + pos: -55.5,84.5 + parent: 2 + - uid: 17988 + components: + - type: Transform + pos: -55.5,85.5 + parent: 2 + - uid: 17989 + components: + - type: Transform + pos: -55.5,86.5 + parent: 2 + - uid: 17990 + components: + - type: Transform + pos: -55.5,87.5 + parent: 2 + - uid: 17991 + components: + - type: Transform + pos: -55.5,88.5 + parent: 2 + - uid: 17992 + components: + - type: Transform + pos: -55.5,89.5 + parent: 2 + - uid: 17993 + components: + - type: Transform + pos: -55.5,82.5 + parent: 2 + - uid: 17994 + components: + - type: Transform + pos: -55.5,90.5 + parent: 2 - proto: Cautery entities: - uid: 15530 @@ -43409,7 +44795,7 @@ entities: pos: -9.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -296583.75 + secondsUntilStateChange: -296901.84 state: Opening - uid: 6747 components: @@ -43417,7 +44803,7 @@ entities: pos: -8.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -296584.47 + secondsUntilStateChange: -296902.56 state: Opening - uid: 6749 components: @@ -43425,7 +44811,7 @@ entities: pos: -6.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -296583.03 + secondsUntilStateChange: -296901.12 state: Opening - uid: 6750 components: @@ -43433,7 +44819,7 @@ entities: pos: -5.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -296582.4 + secondsUntilStateChange: -296900.5 state: Opening - uid: 9721 components: @@ -54039,6 +55425,11 @@ entities: - type: Transform pos: -18.5,32.5 parent: 2 + - uid: 9041 + components: + - type: Transform + pos: -47.5,55.5 + parent: 2 - uid: 10575 components: - type: Transform @@ -65447,6 +66838,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 17999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,54.5 + parent: 2 + - uid: 18000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,53.5 + parent: 2 + - uid: 18001 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: -47.5,52.5 + parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic - proto: GasPipeTJunction entities: - uid: 85 @@ -65635,14 +67048,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,55.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10458 components: - type: Transform @@ -69227,6 +70632,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 17998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,51.5 + parent: 2 - proto: Gauze entities: - uid: 2384 @@ -76015,8 +77426,24 @@ entities: - uid: 9067 components: - type: Transform - pos: -35.585,62.874256 + pos: -35.060246,62.76903 parent: 2 + - type: HandheldLight + toggleActionEntity: 17721 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 17721 + - type: Physics + canCollide: True + - type: ActionsContainer - uid: 15928 components: - type: Transform @@ -78204,6 +79631,13 @@ entities: - type: Transform pos: -18.5,63.5 parent: 2 +- proto: PaperBin20 + entities: + - uid: 8764 + components: + - type: Transform + pos: -35.5,62.5 + parent: 2 - proto: PaperCNCSheet entities: - uid: 6026 From 9963416c1d015b98eea40d137559c6bd78e6be84 Mon Sep 17 00:00:00 2001 From: Milon Date: Sun, 9 Feb 2025 10:45:11 +0100 Subject: [PATCH 150/313] improve GetInStation filter (#33405) Co-authored-by: metalgearsloth --- .../Station/Systems/StationSystem.cs | 70 ++++++++++++++----- 1 file changed, 53 insertions(+), 17 deletions(-) diff --git a/Content.Server/Station/Systems/StationSystem.cs b/Content.Server/Station/Systems/StationSystem.cs index 22c0cba3f7..a61adb78ab 100644 --- a/Content.Server/Station/Systems/StationSystem.cs +++ b/Content.Server/Station/Systems/StationSystem.cs @@ -37,11 +37,20 @@ public sealed class StationSystem : EntitySystem private ISawmill _sawmill = default!; + private EntityQuery _gridQuery; + private EntityQuery _xformQuery; + + private ValueList _mapIds = new(); + private ValueList<(Box2Rotated Bounds, MapId MapId)> _gridBounds = new(); + /// public override void Initialize() { _sawmill = _logManager.GetSawmill("station"); + _gridQuery = GetEntityQuery(); + _xformQuery = GetEntityQuery(); + SubscribeLocalEvent(OnRoundEnd); SubscribeLocalEvent(OnPostGameMapLoad); SubscribeLocalEvent(OnStationAdd); @@ -211,45 +220,72 @@ public sealed class StationSystem : EntitySystem /// public Filter GetInStation(StationDataComponent dataComponent, float range = 32f) { - // Could also use circles if you wanted. - var bounds = new ValueList(dataComponent.Grids.Count); var filter = Filter.Empty(); - var mapIds = new ValueList(); - var xformQuery = GetEntityQuery(); + _mapIds.Clear(); + // First collect all valid map IDs where station grids exist foreach (var gridUid in dataComponent.Grids) { - if (!TryComp(gridUid, out MapGridComponent? grid) || - !xformQuery.TryGetComponent(gridUid, out var xform)) + if (!_xformQuery.TryGetComponent(gridUid, out var xform)) continue; var mapId = xform.MapID; - var position = _transform.GetWorldPosition(xform, xformQuery); - var bound = grid.LocalAABB.Enlarged(range).Translated(position); + if (!_mapIds.Contains(mapId)) + _mapIds.Add(mapId); + } - bounds.Add(bound); - if (!mapIds.Contains(mapId)) + // Cache the rotated bounds for each grid + _gridBounds.Clear(); + + foreach (var gridUid in dataComponent.Grids) + { + if (!_gridQuery.TryComp(gridUid, out var grid) || + !_xformQuery.TryGetComponent(gridUid, out var gridXform)) { - mapIds.Add(xform.MapID); + continue; } + + var (worldPos, worldRot) = _transform.GetWorldPositionRotation(gridXform); + var localBounds = grid.LocalAABB.Enlarged(range); + + // Create a rotated box using the grid's transform + var rotatedBounds = new Box2Rotated( + localBounds, + worldRot, + worldPos); + + _gridBounds.Add((rotatedBounds, gridXform.MapID)); } foreach (var session in Filter.GetAllPlayers(_player)) { var entity = session.AttachedEntity; - if (entity == null || !xformQuery.TryGetComponent(entity, out var xform)) + if (entity == null || !_xformQuery.TryGetComponent(entity, out var xform)) continue; var mapId = xform.MapID; - if (!mapIds.Contains(mapId)) + if (!_mapIds.Contains(mapId)) continue; - var position = _transform.GetWorldPosition(xform, xformQuery); - - foreach (var bound in bounds) + // Check if the player is directly on any station grid + var gridUid = xform.GridUid; + if (gridUid != null && dataComponent.Grids.Contains(gridUid.Value)) { - if (!bound.Contains(position)) + filter.AddPlayer(session); + continue; + } + + // If not directly on a grid, check against cached rotated bounds + var position = _transform.GetWorldPosition(xform); + + foreach (var (bounds, boundsMapId) in _gridBounds) + { + // Skip bounds on different maps + if (boundsMapId != mapId) + continue; + + if (!bounds.Contains(position)) continue; filter.AddPlayer(session); From f37b851810529d1737c75c6392949dd493465d46 Mon Sep 17 00:00:00 2001 From: rokudara-sen <160833839+rokudara-sen@users.noreply.github.com> Date: Sun, 9 Feb 2025 13:15:44 +0100 Subject: [PATCH 151/313] Fixed rotating anchored shuttle consoles (#35000) Fixed rotation shuttle consoles when anchored --- .../Entities/Structures/Machines/Computers/computers.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index 3537288a9d..d641f6bf1d 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -112,8 +112,6 @@ radius: 1.5 energy: 1.6 color: "#43ccb5" - - type: Rotatable - rotateWhileAnchored: true - type: entity parent: BaseComputer @@ -138,8 +136,6 @@ radius: 1.5 energy: 1.6 color: "#43ccb5" - - type: Rotatable - rotateWhileAnchored: true - type: ItemSlots slots: disk_slot: From 7be66599335fc931e9b5ef999f2f5c2887a7609d Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 9 Feb 2025 12:16:54 +0000 Subject: [PATCH 152/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b0b6920ba7..3076f88950 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: You can examine entities inside of your own container again. - type: Fix - id: 7420 - time: '2024-09-23T04:55:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32267 - author: Cojoke-dot changes: - message: L6 Saw now fits in the suit slot @@ -3901,3 +3894,10 @@ id: 7919 time: '2025-02-09T00:12:47.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34974 +- author: rokudara-sen + changes: + - message: Anchored shuttle console will no longer rotate. + type: Fix + id: 7920 + time: '2025-02-09T12:15:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35000 From 3b621a0245eec8584943243c7bce10ff00e07671 Mon Sep 17 00:00:00 2001 From: Boaz1111 <149967078+Boaz1111@users.noreply.github.com> Date: Sun, 9 Feb 2025 16:10:10 +0100 Subject: [PATCH 153/313] long bacon scarf (#34950) * went to the long bacon store. * obtainable :3 --- .../VendingMachines/Inventories/pride.yml | 2 ++ .../Entities/Clothing/Neck/scarfs.yml | 11 ++++++++ .../lesbian-long.rsi/equipped-NECK.png | Bin 0 -> 627 bytes .../PrideScarfs/lesbian-long.rsi/icon.png | Bin 0 -> 666 bytes .../lesbian-long.rsi/inhand-left.png | Bin 0 -> 340 bytes .../lesbian-long.rsi/inhand-right.png | Bin 0 -> 330 bytes .../PrideScarfs/lesbian-long.rsi/meta.json | 26 ++++++++++++++++++ 7 files changed, 39 insertions(+) create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/lesbian-long.rsi/equipped-NECK.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/lesbian-long.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/lesbian-long.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/lesbian-long.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/lesbian-long.rsi/meta.json diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/pride.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/pride.yml index 28d0ec7b25..c31ba95565 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/pride.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/pride.yml @@ -36,3 +36,5 @@ ClothingUniformColorRainbow: 2 ClothingUnderSocksCoder: 2 ClothingUnderSocksBee: 2 + contrabandInventory: + ClothingNeckScarfStripedLesbianLong: 2 diff --git a/Resources/Prototypes/Entities/Clothing/Neck/scarfs.yml b/Resources/Prototypes/Entities/Clothing/Neck/scarfs.yml index 82ebfa2b94..659bce9964 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/scarfs.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/scarfs.yml @@ -240,3 +240,14 @@ sprite: Clothing/Neck/Scarfs/PrideScarfs/trans.rsi - type: Clothing sprite: Clothing/Neck/Scarfs/PrideScarfs/trans.rsi + +- type: entity + parent: ClothingScarfBase + id: ClothingNeckScarfStripedLesbianLong + name: long bacon + description: Long bacon! Perfect for sharing with your girlfriend! + components: + - type: Sprite + sprite: Clothing/Neck/Scarfs/PrideScarfs/lesbian-long.rsi + - type: Clothing + sprite: Clothing/Neck/Scarfs/PrideScarfs/lesbian-long.rsi diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/lesbian-long.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/lesbian-long.rsi/equipped-NECK.png new file mode 100644 index 0000000000000000000000000000000000000000..7779936adaea48b47014d1b2b9c7a5f3f4d26f85 GIT binary patch literal 627 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBugD~Uq{1qt-3``uJE{-7;ac^gC^kQ}tX#3t&W|ky;S&Kz* zqpG;A0=M(|9VgA-QNQ5p zd`pG}-#;bp>W}^YS~}Bx!n5ePCrrgp9eZHm_4$3Xom2>;Ly7n;>#{}vmW2DsEqc23 zYDRg1T*{|IZ~iTFWtej~@e;%2Zxg>wNMQW4;I~&|am)BA#Z@+zUD`+v-va$j(P^^%mC_LF)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0xwBKK~z{r?Up}F z13?hQR|P@SX#4|45FzPAQYi@bB3RkQ;3u%L^a}`)mT0 z)fE7WN^uBdL73v91RIbiCrQH7L;Yqv*Jlej`l^e>E7S;xi1>J3 zKebV7$5dB1QOtdq;DQPCKSWX4s0FRaaB?gkssRii%y2{+L1ad>IY3dS zJzuGH+BS}$K|~{nG=dCCC`v&@+&SuqF%H!LHj$CY%mAEBo-|3&MK!>RWps@YDahYS zkS!Tqg029#Ml?gNApaL&{C4=N^}TZc`NbIX38Gtl@Ca;Jo&W#<07*qoM6N<$f>fm- AX#fBK literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/lesbian-long.rsi/inhand-left.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/lesbian-long.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..df0d874d0df07b3200b4f76907a67e6a30c7644c GIT binary patch literal 340 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBugD~Uq{1quc!Iz#cjv*CsZ*LlM9dZz8eHf@?>rmDGU}27q zZG-#9EgwCUlrrW!c_@cHI(2B8V^Ue#qzC^^rI~IUq zkJ;6(gBg#PNHX@;?lasOs^q}Z!62x>ug8sKpmlkWTx3cek`{ql=snvej z*L2^g?fe=NefH}%o_o4)?p)h>%klTDM?7g&PYjP{PKpkHd+gV&M*@s6(_&wD)iCrN V$kdcR{*47>tf#A=%Q~loCIAh}gbvUtS?`mh34hBI5CYJ_|DY8(r84`2;pOsZJ4V{~?jrA?x6SCfvY_brU)=j)DOCqsd?96@f(m!Jzf1= J);T3K0RTZBg1-O& literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/lesbian-long.rsi/meta.json b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/lesbian-long.rsi/meta.json new file mode 100644 index 0000000000..c32ea35675 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/lesbian-long.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da | In hand sprites sprited by PuroSlavKing (Github) for Space Station 14, recolored by MrGreen06 (Discord), extended by Boaz1111(github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} From 082b1f89799756bdeff2c3faad25c43433b8617e Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 9 Feb 2025 15:11:18 +0000 Subject: [PATCH 154/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 3076f88950..fdb2e19845 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,13 +1,4 @@ Entries: -- author: Cojoke-dot - changes: - - message: L6 Saw now fits in the suit slot - type: Tweak - - message: L6 Saw is now a 5x4 item - type: Tweak - id: 7421 - time: '2024-09-23T06:48:58.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30525 - author: ElectroJr changes: - message: Entities within the same container as the player only appear in the context @@ -3901,3 +3892,11 @@ id: 7920 time: '2025-02-09T12:15:44.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35000 +- author: Boaz1111 + changes: + - message: Long Bacon Scarf(Lesbian scarf but long) can now be found in the pride-o-mat's + hacked inventory! + type: Add + id: 7921 + time: '2025-02-09T15:10:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34950 From 360794eb3aafdfc97e871c70fff534fb36d21243 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sun, 9 Feb 2025 20:48:10 +0100 Subject: [PATCH 155/313] Publishing workflow for Vulture Test server (#35009) * Publishing workflow for Vulture Test server * Remove dep install from workflow Not necessary since changelogs don't happen --- .github/workflows/publish-testing.yml | 45 +++++++++++++++++++++++++++ Tools/publish_multi_request.py | 13 ++++++-- 2 files changed, 55 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/publish-testing.yml diff --git a/.github/workflows/publish-testing.yml b/.github/workflows/publish-testing.yml new file mode 100644 index 0000000000..aa3b35dea1 --- /dev/null +++ b/.github/workflows/publish-testing.yml @@ -0,0 +1,45 @@ +name: Publish Testing + +concurrency: + group: publish-testing + +on: + workflow_dispatch: + schedule: + - cron: '0 10 * * *' + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3.6.0 + with: + submodules: 'recursive' + - name: Setup .NET Core + uses: actions/setup-dotnet@v3.2.0 + with: + dotnet-version: 9.0.x + + - name: Get Engine Tag + run: | + cd RobustToolbox + git fetch --depth=1 + + - name: Install dependencies + run: dotnet restore + + - name: Build Packaging + run: dotnet build Content.Packaging --configuration Release --no-restore /m + + - name: Package server + run: dotnet run --project Content.Packaging server --platform win-x64 --platform linux-x64 --platform osx-x64 --platform linux-arm64 + + - name: Package client + run: dotnet run --project Content.Packaging client --no-wipe-release + + - name: Publish version + run: Tools/publish_multi_request.py --fork-id wizards-testing + env: + PUBLISH_TOKEN: ${{ secrets.PUBLISH_TOKEN }} + GITHUB_REPOSITORY: ${{ vars.GITHUB_REPOSITORY }} diff --git a/Tools/publish_multi_request.py b/Tools/publish_multi_request.py index a63359afd6..e67f9e40cd 100755 --- a/Tools/publish_multi_request.py +++ b/Tools/publish_multi_request.py @@ -1,5 +1,6 @@ #!/usr/bin/env python3 +import argparse import requests import os import subprocess @@ -18,6 +19,12 @@ ROBUST_CDN_URL = "https://wizards.cdn.spacestation14.com/" FORK_ID = "wizards" def main(): + parser = argparse.ArgumentParser() + parser.add_argument("--fork-id", default=FORK_ID) + + args = parser.parse_args() + fork_id = args.fork_id + session = requests.Session() session.headers = { "Authorization": f"Bearer {PUBLISH_TOKEN}", @@ -32,7 +39,7 @@ def main(): headers = { "Content-Type": "application/json" } - resp = session.post(f"{ROBUST_CDN_URL}fork/{FORK_ID}/publish/start", json=data, headers=headers) + resp = session.post(f"{ROBUST_CDN_URL}fork/{fork_id}/publish/start", json=data, headers=headers) resp.raise_for_status() print("Publish successfully started, adding files...") @@ -44,7 +51,7 @@ def main(): "Robust-Cdn-Publish-File": os.path.basename(file), "Robust-Cdn-Publish-Version": VERSION } - resp = session.post(f"{ROBUST_CDN_URL}fork/{FORK_ID}/publish/file", data=f, headers=headers) + resp = session.post(f"{ROBUST_CDN_URL}fork/{fork_id}/publish/file", data=f, headers=headers) resp.raise_for_status() @@ -56,7 +63,7 @@ def main(): headers = { "Content-Type": "application/json" } - resp = session.post(f"{ROBUST_CDN_URL}fork/{FORK_ID}/publish/finish", json=data, headers=headers) + resp = session.post(f"{ROBUST_CDN_URL}fork/{fork_id}/publish/finish", json=data, headers=headers) resp.raise_for_status() print("SUCCESS!") From afede7d4d0afaf808079ee6e05811d70d9602c67 Mon Sep 17 00:00:00 2001 From: Spessmann <156740760+Spessmann@users.noreply.github.com> Date: Sun, 9 Feb 2025 13:01:31 -0800 Subject: [PATCH 156/313] Removes Cog station (#34996) freedom!!! --- Content.Benchmarks/MapLoadBenchmark.cs | 2 +- .../Tests/PostMapInitTest.cs | 1 - .../Locale/en-US/job/job-description.ftl | 8 +- Resources/Maps/cog.yml | 206615 --------------- Resources/Prototypes/Maps/Pools/default.yml | 1 - Resources/Prototypes/Maps/cog.yml | 67 - 6 files changed, 5 insertions(+), 206689 deletions(-) delete mode 100644 Resources/Maps/cog.yml delete mode 100644 Resources/Prototypes/Maps/cog.yml diff --git a/Content.Benchmarks/MapLoadBenchmark.cs b/Content.Benchmarks/MapLoadBenchmark.cs index bc050b59f1..8182ba8ec6 100644 --- a/Content.Benchmarks/MapLoadBenchmark.cs +++ b/Content.Benchmarks/MapLoadBenchmark.cs @@ -46,7 +46,7 @@ public class MapLoadBenchmark PoolManager.Shutdown(); } - public static readonly string[] MapsSource = { "Empty", "Satlern", "Box", "Bagel", "Dev", "CentComm", "Core", "TestTeg", "Packed", "Omega", "Reach", "Meta", "Marathon", "MeteorArena", "Fland", "Oasis", "Cog", "Convex"}; + public static readonly string[] MapsSource = { "Empty", "Satlern", "Box", "Bagel", "Dev", "CentComm", "Core", "TestTeg", "Packed", "Omega", "Reach", "Meta", "Marathon", "MeteorArena", "Fland", "Oasis", "Convex"}; [ParamsSource(nameof(MapsSource))] public string Map; diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index 83ecd9cac3..f520fd968b 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -60,7 +60,6 @@ namespace Content.IntegrationTests.Tests "Reach", "Train", "Oasis", - "Cog", "Gate", "Amber", "Loop", diff --git a/Resources/Locale/en-US/job/job-description.ftl b/Resources/Locale/en-US/job/job-description.ftl index 81f59df622..d91bb8bd21 100644 --- a/Resources/Locale/en-US/job/job-description.ftl +++ b/Resources/Locale/en-US/job/job-description.ftl @@ -3,7 +3,7 @@ job-description-atmostech = Optimize the station's atmospherics setup, and synth job-description-bartender = Manage the bar and keep it lively, give out drinks, and listen to the crew's stories. job-description-botanist = Grow food for the chef, drugs for medbay, and other plants to keep yourself entertained. job-description-borg = Half-human, Half-machine. Follow your laws, serve the crew, and hound the science team for upgrades. -job-description-boxer = Fight your way to the top! Challenge the head of personnel and get brigged when you win. Currently available on Core, Convex and Cog. +job-description-boxer = Fight your way to the top! Challenge the head of personnel and get brigged when you win. Currently available on Core and Convex. job-description-brigmedic = Fight in the rear of the security service, for the lives of your comrades! You are the first and last hope of your squad. Hippocrates bless you. job-description-cadet = Learn the basics of arresting criminals and managing the brig. Listen to your supervisors and feel free to ask them for any help. job-description-captain = Keep the station running, delegate work to the other heads of staff, and exert your will. @@ -34,11 +34,11 @@ job-description-librarian = Manage the library, give out knowledge to any who se job-description-mime = Entertain the crew through non-vocal means, and engage with light rivalry with the clown. job-description-musician = Entertain the crew with your unique musical talent, and acquire new instruments to mess around with. job-description-passenger = Enjoy your stay aboard the station with no obligations! -job-description-psychologist = Provide emotional support to traumatized crew. Currently available on Box, Marathon, Cog and Oasis. +job-description-psychologist = Provide emotional support to traumatized crew. Currently available on Box, Marathon and Oasis. job-description-qm = Manage the supplies of the station & the cargo department, keep the salvage specialists working, make sure all orders are fulfilled, and keep the money flowing. job-description-rd = Manage the science department, unlocking technologies, acquiring & researching artifacts, and performing experiments. job-description-research-assistant = Learn the basics of how to research various artifacts, anomalies and robotics. -job-description-reporter = Entertain & inform the crew with your vibrant journalism through wireless cameras, the radio and the news. Currently available on Bagel Station, Cog, Convex, Core, Train and Oasis. +job-description-reporter = Entertain & inform the crew with your vibrant journalism through wireless cameras, the radio and the news. Currently available on Bagel Station, Convex, Core, Train and Oasis. job-description-salvagespec = Use the salvage magnet to draw in detatched scraps & asteroids to loot and enrich the station, build a salvage ship and then travel to new planets, while fighting off any space fauna along the way. job-description-scientist = Research alien artifacts, unlock new technologies, build newer and better machines around the station, and make everything run more efficiently. job-description-security = Catch criminals and enemies of the station, enforce the law, and ensure that the station does not fall into disarray. @@ -46,4 +46,4 @@ job-description-serviceworker = Learn the basics of bartending, cooking, and gro job-description-station-ai = Follow your laws, serve the crew. job-description-visitor = Enjoy your visit to the station. job-description-warden = Patrol the security department, ensure that no one is stealing from the armory, and make sure that all prisoners are processed and let out when their time is up. -job-description-zookeeper = Put on a joyful display of cute animals and space carps for all the crew to see. Currently available on Cog and Oasis. +job-description-zookeeper = Put on a joyful display of cute animals and space carps for all the crew to see. Currently available on Oasis. diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml deleted file mode 100644 index 4ca3010d67..0000000000 --- a/Resources/Maps/cog.yml +++ /dev/null @@ -1,206615 +0,0 @@ -meta: - format: 6 - postmapinit: false -tilemap: - 46: Space - 79: FloorArcadeBlue2 - 64: FloorAsteroidSandDug - 63: FloorAsteroidSandUnvariantized - 68: FloorAstroGrass - 49: FloorAstroIce - 48: FloorAstroSnow - 71: FloorBar - 41: FloorBlueCircuit - 83: FloorBoxing - 61: FloorBrokenWood - 87: FloorCarpetClown - 60: FloorClown - 88: FloorConcreteSmooth - 45: FloorDark - 59: FloorDarkMono - 77: FloorDesert - 54: FloorFreezer - 75: FloorGlass - 78: FloorGold - 50: FloorGreenCircuit - 84: FloorHydro - 65: FloorKitchen - 67: FloorLino - 86: FloorMime - 55: FloorMowedAstroGrass - 76: FloorPlanetDirt - 51: FloorRGlass - 62: FloorReinforced - 44: FloorSteel - 85: FloorSteelCheckerLight - 70: FloorSteelDamaged - 53: FloorSteelDirty - 72: FloorSteelMono - 47: FloorTechMaint - 52: FloorTechMaint2 - 73: FloorTechMaint3 - 58: FloorWhite - 69: FloorWhiteMini - 80: FloorWhiteMono - 56: FloorWood - 43: Lattice - 42: Plating -entities: -- proto: "" - entities: - - uid: 1 - components: - - type: MetaData - name: Map Entity - - type: Transform - - type: Map - mapPaused: True - - type: PhysicsMap - - type: GridTree - - type: MovedGrids - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - - uid: 12 - components: - - type: MetaData - name: grid - - type: Transform - pos: 1.09375,-1.3229165 - parent: 1 - - type: MapGrid - chunks: - 0,0: - ind: 0,0 - tiles: KQAAAAAAKQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKQAAAAAALQAAAAABKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKQAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKQAAAAAAKQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA - version: 6 - -1,0: - ind: -1,0 - tiles: LAAAAAAALAAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKQAAAAAAKQAAAAAAKQAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKQAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKQAAAAAAKgAAAAAALQAAAAACLAAAAAADLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKQAAAAAAKgAAAAAALQAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKQAAAAAAKQAAAAAAKQAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA - version: 6 - -1,-1: - ind: -1,-1 - tiles: LAAAAAABLAAAAAAAKgAAAAAAMAAAAAAAMQAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAAMgAAAAAAMgAAAAAALAAAAAADLAAAAAABKgAAAAAAMAAAAAAAMAAAAAAIMQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAAAMgAAAAAAMgAAAAAALAAAAAADLAAAAAACKgAAAAAAMQAAAAAAMAAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAALQAAAAACLQAAAAACLAAAAAABLAAAAAACKgAAAAAAMQAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAABLQAAAAACLQAAAAABLAAAAAADLAAAAAABKgAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAAALQAAAAADLQAAAAADLAAAAAABLAAAAAABKgAAAAAAMQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAADKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAAALQAAAAADMwAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAABLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAACMwAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAABMwAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAAALQAAAAACLQAAAAAA - version: 6 - 0,-1: - ind: 0,-1 - tiles: MgAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMgAAAAAALQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAABLQAAAAABLQAAAAABLQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAABLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAALQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAADLQAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAABKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA - version: 6 - -1,-2: - ind: -1,-2 - tiles: LAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAABKgAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAADKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAACNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAACLAAAAAABNQAAAAAALwAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAADKgAAAAAANQAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA - version: 6 - 0,-2: - ind: 0,-2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA - version: 6 - -2,-1: - ind: -2,-1 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACNwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAACKgAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAABLAAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAACLgAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAABKgAAAAAALAAAAAADLAAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAAALAAAAAADLgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAADLgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAABOAAAAAAALQAAAAABLQAAAAAALQAAAAABLQAAAAAAKgAAAAAALAAAAAACLAAAAAAA - version: 6 - -2,-2: - ind: -2,-2 - tiles: KgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAADKgAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAAOgAAAAABOgAAAAAAOgAAAAACKgAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAADOgAAAAAAOgAAAAABOgAAAAABKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAACKgAAAAAALAAAAAACLAAAAAAALAAAAAAALAAAAAADKgAAAAAAOgAAAAABOgAAAAABOgAAAAABKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAAALAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAADKgAAAAAAOgAAAAABOgAAAAACOgAAAAACKgAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAACKgAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAAAOgAAAAABOgAAAAABOgAAAAACOgAAAAACOgAAAAACKgAAAAAALwAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAACOgAAAAABOgAAAAABOgAAAAABOgAAAAACOgAAAAACLAAAAAACLAAAAAAAMwAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAACKgAAAAAAOgAAAAADOgAAAAACOgAAAAAAOgAAAAADOgAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAADKgAAAAAAOgAAAAADOgAAAAACOgAAAAAAOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAC - version: 6 - -2,0: - ind: -2,0 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADOAAAAAAAOAAAAAADLQAAAAABLQAAAAACLQAAAAADLQAAAAAALQAAAAABLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADLQAAAAABLQAAAAAALQAAAAACLQAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAADLQAAAAADLQAAAAABLQAAAAADLQAAAAADLQAAAAACLQAAAAACKgAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAABKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAADLAAAAAACLQAAAAADLQAAAAACLQAAAAABLQAAAAADKgAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAACMgAAAAAAMgAAAAAAMgAAAAAALQAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAABMgAAAAAALQAAAAABMgAAAAAAOwAAAAADOwAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAACMgAAAAAAMgAAAAAAMgAAAAAALQAAAAACKgAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAACLQAAAAABLQAAAAAALQAAAAAALQAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAADLAAAAAADKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAAALAAAAAADKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAB - version: 6 - -3,0: - ind: -3,0 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAACKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA - version: 6 - -3,-1: - ind: -3,-1 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAAOAAAAAACOAAAAAABOAAAAAAAOAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAAAOAAAAAADPQAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - -3,-2: - ind: -3,-2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOgAAAAACOgAAAAABOgAAAAAAOgAAAAADOgAAAAACKgAAAAAAOgAAAAADOgAAAAACKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAABOgAAAAADOgAAAAAAOgAAAAAAOgAAAAABLAAAAAABLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAACOgAAAAAAKgAAAAAAOgAAAAADOgAAAAADKgAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAAALAAAAAAAOgAAAAACOgAAAAAAOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAACOgAAAAADOgAAAAACOgAAAAACOgAAAAADKgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAAOgAAAAADOgAAAAABOgAAAAADOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAADOgAAAAABOgAAAAAAOgAAAAABOgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAABLQAAAAADLQAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAADLQAAAAAALQAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAABKgAAAAAALQAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAADKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAABKgAAAAAALAAAAAACLAAAAAABKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAALQAAAAABLQAAAAACLQAAAAACLQAAAAABLQAAAAACKgAAAAAALAAAAAABLAAAAAACKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAAAPQAAAAADOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAA - version: 6 - -1,-3: - ind: -1,-3 - tiles: OgAAAAABOgAAAAADOgAAAAADOgAAAAABOgAAAAACMwAAAAACOgAAAAADMwAAAAACOgAAAAAAOgAAAAACOgAAAAABKgAAAAAAOgAAAAACOgAAAAAAOgAAAAADOgAAAAACOgAAAAACOgAAAAADOgAAAAACOgAAAAABOgAAAAACOgAAAAADOgAAAAAAOgAAAAADOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAAAOgAAAAAAOgAAAAACOgAAAAADKgAAAAAAOgAAAAABOgAAAAACOgAAAAADOgAAAAACOgAAAAACOgAAAAABOgAAAAADOgAAAAAAOgAAAAADOgAAAAADOgAAAAABOgAAAAABOgAAAAADOgAAAAABOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAADOgAAAAAAOgAAAAADOgAAAAAAOgAAAAADOgAAAAABOgAAAAADOgAAAAACOgAAAAAAOgAAAAAAOgAAAAACOgAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAAAOgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAAAOgAAAAAAOgAAAAADOgAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAAAOgAAAAADOgAAAAACOgAAAAACOgAAAAACOgAAAAACOgAAAAABOgAAAAADOgAAAAAAOgAAAAADOgAAAAAAOgAAAAABOgAAAAACOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAADKgAAAAAAOgAAAAAAOgAAAAABOgAAAAABOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAACOgAAAAADOgAAAAADKgAAAAAAOgAAAAABOgAAAAADOgAAAAADKgAAAAAAOgAAAAABOgAAAAADOgAAAAAAOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAAAOgAAAAABOgAAAAADOgAAAAACOgAAAAABOgAAAAADOgAAAAACKgAAAAAAOgAAAAACOgAAAAADOgAAAAABOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAABOgAAAAADKgAAAAAAOgAAAAABOgAAAAABOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAADOgAAAAADOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACOgAAAAABOgAAAAACKgAAAAAAOgAAAAAAOgAAAAADOgAAAAACOgAAAAACOgAAAAADOgAAAAADOgAAAAABOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAADOgAAAAADOgAAAAACOgAAAAABOgAAAAADOgAAAAADOgAAAAADOgAAAAABOgAAAAAAOgAAAAACOgAAAAABOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAACKgAAAAAAOgAAAAACOgAAAAABOgAAAAABOgAAAAACOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACOgAAAAAAKgAAAAAAOgAAAAAAOgAAAAAA - version: 6 - -2,-3: - ind: -2,-3 - tiles: LAAAAAABLAAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAACKgAAAAAAOgAAAAAAOgAAAAABOgAAAAAAOgAAAAACOgAAAAAAKgAAAAAAOgAAAAABOgAAAAABLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAABOgAAAAABKgAAAAAAOgAAAAADOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAACOgAAAAADOgAAAAAAKgAAAAAAOgAAAAACOgAAAAADOgAAAAABOgAAAAACLwAAAAAAOgAAAAABOgAAAAADOgAAAAACOgAAAAABKgAAAAAAOgAAAAADOgAAAAABOgAAAAABOgAAAAAAOgAAAAABKgAAAAAAOgAAAAADOgAAAAABOgAAAAADOgAAAAAAOgAAAAABOgAAAAADOgAAAAAAOgAAAAACOgAAAAAAOgAAAAADOgAAAAABOgAAAAABOgAAAAACOgAAAAADOgAAAAADKgAAAAAAOgAAAAACOgAAAAADOgAAAAABOgAAAAAAOgAAAAADOgAAAAAAOgAAAAACOgAAAAACOgAAAAABOgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAAAOgAAAAACOgAAAAACOgAAAAADOgAAAAADOgAAAAACOgAAAAABOgAAAAABOgAAAAACOgAAAAABOgAAAAACOgAAAAABKgAAAAAAOgAAAAACOgAAAAAAOgAAAAACOgAAAAACOgAAAAADOgAAAAACOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABKgAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABLAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAOgAAAAACOgAAAAAAOgAAAAADOgAAAAADOgAAAAABOgAAAAAAOgAAAAAAOgAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAOgAAAAAAOgAAAAADOgAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAADOgAAAAADLAAAAAAALAAAAAACLAAAAAACKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAABOgAAAAADKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACLAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAOAAAAAACOAAAAAACOAAAAAABOAAAAAADOAAAAAABOAAAAAABOgAAAAABOgAAAAAALAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAOAAAAAAAOAAAAAADOAAAAAABOAAAAAADOAAAAAADOAAAAAACOgAAAAACOgAAAAACLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAADOAAAAAABOAAAAAACOAAAAAADOgAAAAAAOgAAAAADKgAAAAAALAAAAAAALAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAADOAAAAAAAOAAAAAACOAAAAAADOgAAAAACOgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADKgAAAAAAOAAAAAABOAAAAAADOgAAAAAAOgAAAAAA - version: 6 - -3,-3: - ind: -3,-3 - tiles: KgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAADOgAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAABOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAADOgAAAAADOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAAAOgAAAAADOgAAAAADLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAACKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAABOgAAAAAAOgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADOgAAAAABOgAAAAABOgAAAAABOgAAAAAAOgAAAAACKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACOgAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAADKgAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAALAAAAAAALAAAAAAAOgAAAAABOgAAAAADOgAAAAACOgAAAAACOgAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAABKgAAAAAALAAAAAACLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA - version: 6 - -4,-2: - ind: -4,-2 - tiles: LgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALAAAAAAALAAAAAADKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAANAAAAAAALAAAAAACLAAAAAABKgAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAABLAAAAAACKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAALAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAALAAAAAACKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAANAAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAABKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAADPQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAPQAAAAAEKgAAAAAAKgAAAAAAPQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA - version: 6 - -4,-3: - ind: -4,-3 - tiles: LgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAACLQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAACLQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAABLgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA - version: 6 - -4,-4: - ind: -4,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAQAAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA - version: 6 - -3,-4: - ind: -3,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAAKgAAAAAANgAAAAAAKgAAAAAANgAAAAAANgAAAAAAQQAAAAAAKgAAAAAAQQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAAKgAAAAAAQQAAAAAALAAAAAADKgAAAAAAPwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAKgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAALgAAAAAALgAAAAAAPwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAA - version: 6 - -2,-4: - ind: -2,-4 - tiles: KwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAQQAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAAKgAAAAAALAAAAAABQQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAOgAAAAAAOgAAAAADOgAAAAACQQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAACKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAADOAAAAAACKgAAAAAAOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAABOAAAAAADOAAAAAABKgAAAAAAOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAADOAAAAAABOAAAAAACKgAAAAAAOgAAAAADOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAADOAAAAAAAOAAAAAACOAAAAAADKgAAAAAAOgAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAACKgAAAAAAKgAAAAAAOgAAAAACLgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAOgAAAAACOgAAAAADOgAAAAACOgAAAAABOgAAAAADKgAAAAAAOgAAAAABOgAAAAADLgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAACLwAAAAAAKgAAAAAAOgAAAAABOgAAAAADOgAAAAADOgAAAAADOgAAAAAAOgAAAAABOgAAAAADOgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAACKgAAAAAAOgAAAAABOgAAAAACOgAAAAAAOgAAAAACOgAAAAADKgAAAAAAOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACOgAAAAAA - version: 6 - -1,-4: - ind: -1,-4 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADOgAAAAADOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAACLAAAAAADOgAAAAABOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACOgAAAAADKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAACNwAAAAAANwAAAAAAKgAAAAAARAAAAAABRAAAAAACRAAAAAADRAAAAAABOgAAAAACOgAAAAADLAAAAAABLAAAAAADLAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAARAAAAAACKgAAAAAARAAAAAACRAAAAAADRAAAAAADRAAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAARAAAAAADNwAAAAAAKgAAAAAARAAAAAACRAAAAAABRAAAAAACRAAAAAAAOgAAAAACKgAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAABKgAAAAAARAAAAAAANwAAAAAARAAAAAADRAAAAAADKgAAAAAARAAAAAACRAAAAAADRAAAAAACRAAAAAADOgAAAAAAOgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAARAAAAAADRAAAAAABRAAAAAAARAAAAAAAOgAAAAADKgAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAABKgAAAAAANwAAAAAARAAAAAABNwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAACOgAAAAACOgAAAAADOgAAAAADOgAAAAACOgAAAAACOgAAAAABOgAAAAACKgAAAAAAOgAAAAADOgAAAAACOgAAAAADOgAAAAADOgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAABOgAAAAADOgAAAAACKgAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAAAOgAAAAACKgAAAAAAOgAAAAADOgAAAAABOgAAAAABMwAAAAADOgAAAAABMwAAAAADOgAAAAAAOgAAAAADOgAAAAACKgAAAAAAOgAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAABMwAAAAACOgAAAAABMwAAAAAAOgAAAAABOgAAAAAAOgAAAAAAOgAAAAACOgAAAAABOgAAAAADOgAAAAADOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAOgAAAAADOgAAAAADMwAAAAADOgAAAAABMwAAAAADOgAAAAABOgAAAAABOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA - version: 6 - 0,-4: - ind: 0,-4 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAAARAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADRAAAAAAARAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACRAAAAAAALAAAAAAARAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAOgAAAAADOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAALgAAAAAAOgAAAAADOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALgAAAAAAOgAAAAACOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALgAAAAAAOgAAAAAAOgAAAAACOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALgAAAAAAOgAAAAADOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALgAAAAAAOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAALgAAAAAA - version: 6 - 0,-3: - ind: 0,-3 - tiles: OgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAALgAAAAAAOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALgAAAAAAOgAAAAADOgAAAAAAOgAAAAACLQAAAAACLQAAAAADLQAAAAADLQAAAAABLQAAAAADLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAALgAAAAAAOgAAAAACOgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAACLQAAAAADLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALgAAAAAAOgAAAAABOgAAAAAAKgAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAACLQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALgAAAAAAOgAAAAABOgAAAAABOgAAAAAALQAAAAAALQAAAAADLQAAAAAALQAAAAABLQAAAAABLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAALgAAAAAAOgAAAAABOgAAAAABKgAAAAAALQAAAAACLQAAAAADLQAAAAABLQAAAAACLQAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAALgAAAAAAOgAAAAADKgAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAAAOgAAAAACLQAAAAABLQAAAAACLQAAAAADLQAAAAADLQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACOgAAAAACOgAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAABOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAABOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAADKgAAAAAANwAAAAAAOgAAAAACKgAAAAAAOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAADOAAAAAAAOAAAAAABKgAAAAAANwAAAAAAOgAAAAAAOgAAAAABOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAABOAAAAAADKgAAAAAANwAAAAAAOgAAAAACKgAAAAAAOgAAAAAAOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAANwAAAAAA - version: 6 - 1,-2: - ind: 1,-2 - tiles: NwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAACKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAABMAAAAAAAMAAAAAAALAAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABKgAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAD - version: 6 - 1,-1: - ind: 1,-1 - tiles: LAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAADKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAAC - version: 6 - 1,0: - ind: 1,0 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAALAAAAAABKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAABLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALQAAAAAALQAAAAABLQAAAAAALQAAAAAAKgAAAAAALwAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAANAAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAANAAAAAAANAAAAAAALwAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAALwAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAANAAAAAAALwAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAANAAAAAAALwAAAAAALwAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA - version: 6 - 2,-1: - ind: 2,-1 - tiles: LAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAADKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAADKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAARgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAADKgAAAAAALAAAAAADKgAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAAAKgAAAAAALAAAAAABLAAAAAABNQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLwAAAAAALwAAAAAALwAAAAAAKgAAAAAANQAAAAAAKgAAAAAARgAAAAAERgAAAAAANQAAAAAAKgAAAAAAOAAAAAABOAAAAAACRQAAAAAARQAAAAABKgAAAAAALQAAAAACLwAAAAAAKQAAAAAALwAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAABNQAAAAAALAAAAAAAKgAAAAAAOAAAAAACOAAAAAABKgAAAAAARQAAAAABKgAAAAAALQAAAAADLwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAQwAAAAAAQwAAAAAAOAAAAAAALAAAAAADLQAAAAAALQAAAAACLQAAAAABLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAQwAAAAAAQwAAAAAAOAAAAAACKgAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAACKgAAAAAALQAAAAADLQAAAAADKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAACLQAAAAABLQAAAAABLAAAAAACLQAAAAACLQAAAAACKgAAAAAAKgAAAAAALAAAAAACNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAADKgAAAAAALQAAAAABLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAARgAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABNQAAAAAANQAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAA - version: 6 - 2,0: - ind: 2,0 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAARgAAAAAENQAAAAAANQAAAAAARgAAAAAENQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAADKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAADLQAAAAACKgAAAAAAKgAAAAAARgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAADKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAACLQAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAALQAAAAAALQAAAAACLwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAACLwAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAARgAAAAABNQAAAAAALAAAAAADKgAAAAAALAAAAAACNQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAARgAAAAAARgAAAAAAKgAAAAAARgAAAAAANQAAAAAARgAAAAAANQAAAAAANQAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADNQAAAAAAKgAAAAAANQAAAAAARgAAAAAEKgAAAAAANQAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAADKgAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAARgAAAAABKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAADNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAELAAAAAABNQAAAAAANQAAAAAANQAAAAAAKgAAAAAARgAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAARgAAAAAANQAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALAAAAAADRgAAAAACKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA - version: 6 - 2,-2: - ind: 2,-2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAARwAAAAAARwAAAAADRwAAAAACLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAACRwAAAAAARwAAAAABLAAAAAADKgAAAAAALAAAAAACLAAAAAADSAAAAAACSAAAAAADSAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAABRwAAAAACKgAAAAAAKgAAAAAALAAAAAADLAAAAAABSAAAAAADMwAAAAADSAAAAAACLAAAAAADLAAAAAADKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAABKgAAAAAALAAAAAAALAAAAAACSAAAAAACSAAAAAADSAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABRgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAARgAAAAABNQAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAABKgAAAAAARgAAAAAEKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAAANQAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALAAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAANQAAAAAANQAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAABKgAAAAAANQAAAAAAKgAAAAAARgAAAAAAKgAAAAAALwAAAAAALwAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAABKgAAAAAANQAAAAAALAAAAAABLAAAAAADRgAAAAACKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAALAAAAAADKgAAAAAANQAAAAAANQAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAARgAAAAADNQAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAANQAAAAAALAAAAAACRgAAAAAANQAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAALwAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAALAAAAAABLAAAAAAD - version: 6 - 1,-3: - ind: 1,-3 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAACKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACKgAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAACKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAA - version: 6 - 1,-4: - ind: 1,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAAB - version: 6 - 2,-3: - ind: 2,-3 - tiles: KgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAALAAAAAACKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAASQAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMwAAAAACLwAAAAAALAAAAAABLAAAAAADKgAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAADRwAAAAACRwAAAAADLAAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAA - version: 6 - 2,-4: - ind: 2,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAARgAAAAACKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA - version: 6 - 3,-3: - ind: 3,-3 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAADKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAABLQAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAA - version: 6 - 3,-4: - ind: 3,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 4,-4: - ind: 4,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 3,-2: - ind: 3,-2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADKgAAAAAAKgAAAAAALgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAACKgAAAAAALgAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAAAKgAAAAAALgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAAKgAAAAAALgAAAAAALAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAACKgAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAACKgAAAAAALAAAAAACKgAAAAAALAAAAAADKgAAAAAALQAAAAABSwAAAAABSwAAAAACLQAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAALQAAAAAASwAAAAAASwAAAAAALQAAAAADLAAAAAADLAAAAAABLAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAACLQAAAAACLQAAAAABLQAAAAACLQAAAAAALQAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAAALAAAAAADKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAA - version: 6 - 3,-1: - ind: 3,-1 - tiles: LAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAALwAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAALwAAAAAALAAAAAADLAAAAAADLAAAAAABOAAAAAABOAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAOAAAAAADOAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADOAAAAAACKgAAAAAALAAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAACKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAOAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAOAAAAAADOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAOAAAAAACOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLQAAAAAALQAAAAABLQAAAAADLQAAAAACLAAAAAACLAAAAAAAKgAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLQAAAAACLQAAAAABMwAAAAACLQAAAAADLAAAAAADLAAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAADNQAAAAAANQAAAAAANQAAAAAANQAAAAAALAAAAAABLAAAAAADLQAAAAACMwAAAAADLQAAAAADLQAAAAADLAAAAAACLAAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAABNQAAAAAAKgAAAAAANQAAAAAANQAAAAAALAAAAAABLAAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA - version: 6 - 4,-2: - ind: 4,-2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 4,-3: - ind: 4,-3 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAAD - version: 6 - 5,-3: - ind: 5,-3 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 5,-2: - ind: 5,-2 - tiles: LAAAAAADLAAAAAACKgAAAAAALgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 4,-1: - ind: 4,-1 - tiles: KgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA - version: 6 - 1,1: - ind: 1,1 - tiles: KgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAPQAAAAADOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAPQAAAAAGOAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAAALAAAAAADKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAPQAAAAAGOAAAAAADPQAAAAAGLAAAAAADKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAABLQAAAAADLQAAAAACLQAAAAAALQAAAAADKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAADLQAAAAAALQAAAAABLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAKgAAAAAAQwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAABLQAAAAACLQAAAAACLQAAAAACQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKwAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKwAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAACLQAAAAADKgAAAAAAKwAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAABLQAAAAACKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAA - version: 6 - 0,1: - ind: 0,1 - tiles: KgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAACRAAAAAADRAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAARAAAAAACRAAAAAACRAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAATAAAAAACRAAAAAABRAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAATAAAAAADTAAAAAABTAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAATAAAAAAATAAAAAADTAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAATAAAAAACRAAAAAABRAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAARAAAAAACRAAAAAABRAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAARAAAAAADRAAAAAABRAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAA - version: 6 - -3,1: - ind: -3,1 - tiles: KwAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAABLgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAACLgAAAAAALgAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAADLQAAAAAALQAAAAACKwAAAAAAKwAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAADLQAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAABLQAAAAACLQAAAAABLQAAAAADLQAAAAABKgAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAACLQAAAAADLQAAAAABLAAAAAABLAAAAAACLQAAAAACLQAAAAABLQAAAAAALQAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAABKgAAAAAALAAAAAACLAAAAAACLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAALAAAAAADLAAAAAAALAAAAAADKgAAAAAALAAAAAACLAAAAAADLAAAAAAAMwAAAAACMwAAAAAAMwAAAAADMwAAAAABMwAAAAACLAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAAAMwAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA - version: 6 - -2,1: - ind: -2,1 - tiles: LAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABKgAAAAAALAAAAAACKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAAFTQAAAAABKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAAATQAAAAAFKgAAAAAALAAAAAADLAAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAABTQAAAAAFKgAAAAAALAAAAAABLAAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAAATQAAAAADKgAAAAAALAAAAAAALAAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADTQAAAAABTQAAAAACKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAAFTQAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAAALAAAAAAAMwAAAAABMwAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAACLAAAAAACMwAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAADLAAAAAABKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAALQAAAAADLQAAAAAALQAAAAADLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAB - version: 6 - -1,1: - ind: -1,1 - tiles: LAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAADKgAAAAAAPgAAAAAALAAAAAACLAAAAAABKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAACKgAAAAAALAAAAAABLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAACRAAAAAACRAAAAAACRAAAAAABRAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAABRAAAAAADRAAAAAAARAAAAAAARAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAADRAAAAAACTAAAAAACTAAAAAAATAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABTAAAAAADTAAAAAAATAAAAAABTAAAAAADTAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAABTAAAAAABTAAAAAACTAAAAAABTAAAAAAATAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAACRAAAAAACTAAAAAABTAAAAAACTAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAABRAAAAAABRAAAAAAARAAAAAADRAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAAARAAAAAACRAAAAAAARAAAAAAARAAAAAAA - version: 6 - -4,1: - ind: -4,1 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAATgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAOgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAADLQAAAAABLAAAAAABLAAAAAACLgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAAALQAAAAAALQAAAAABLQAAAAABLAAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAABLQAAAAADLQAAAAADLQAAAAAALQAAAAACLAAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAACLQAAAAADLQAAAAADLQAAAAACKgAAAAAALAAAAAACLAAAAAADLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAADLQAAAAADLQAAAAABLAAAAAADLAAAAAADLAAAAAACLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAACLQAAAAAALQAAAAADLQAAAAACLQAAAAAALAAAAAADLAAAAAABLAAAAAABLgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAACKgAAAAAALAAAAAABLAAAAAABLgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAADLQAAAAAALQAAAAAALQAAAAABLQAAAAAALAAAAAACLAAAAAAB - version: 6 - -3,2: - ind: -3,2 - tiles: LAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAOAAAAAADOAAAAAACOAAAAAABKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAABKgAAAAAAOAAAAAACOAAAAAADOAAAAAABOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAACLAAAAAADQwAAAAAAOAAAAAADOAAAAAABOAAAAAACOAAAAAACQwAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAADLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAADKgAAAAAALAAAAAADLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAAALQAAAAACLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAA - version: 6 - -2,2: - ind: -2,2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALQAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALQAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAADLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAABLAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAABLAAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAABLAAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAABRwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAADLAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAACKgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAAAKgAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAABKgAAAAAAKgAAAAAAOAAAAAAD - version: 6 - -1,2: - ind: -1,2 - tiles: LAAAAAACLAAAAAABKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAADOAAAAAACOAAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA - version: 6 - 0,2: - ind: 0,2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAOAAAAAACOAAAAAAAOAAAAAABKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAOgAAAAADOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAOgAAAAAAOgAAAAADOgAAAAACOgAAAAAAOgAAAAAAOgAAAAABOgAAAAADOgAAAAADOgAAAAACOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAACOgAAAAABOgAAAAADOgAAAAABOgAAAAADOgAAAAAAOgAAAAABOgAAAAAAKgAAAAAAOAAAAAABOAAAAAACOAAAAAABOAAAAAACKgAAAAAAOgAAAAADOgAAAAABUAAAAAACUAAAAAADUAAAAAADUAAAAAACUAAAAAAAUAAAAAADOgAAAAAAOgAAAAACKgAAAAAAOAAAAAACOAAAAAAAOAAAAAABOAAAAAADKgAAAAAAOgAAAAABOgAAAAABUAAAAAABUAAAAAADUAAAAAABUAAAAAACUAAAAAACUAAAAAADOgAAAAAAOgAAAAACKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAAOgAAAAAAOgAAAAABUAAAAAADUAAAAAABUAAAAAABUAAAAAABUAAAAAABUAAAAAACOgAAAAAAOgAAAAABKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAAOgAAAAABOgAAAAABUAAAAAADUAAAAAACUAAAAAADUAAAAAADUAAAAAACUAAAAAACOgAAAAADOgAAAAADKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAAAOgAAAAACOgAAAAABOgAAAAACOgAAAAAAOgAAAAACOgAAAAABOgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAACOgAAAAAAOgAAAAAAOgAAAAACOgAAAAABOgAAAAADOgAAAAAAOgAAAAAAOgAAAAABOgAAAAABOgAAAAACKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAATwAAAAAATwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAABOAAAAAABOAAAAAACOAAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAB - version: 6 - 2,1: - ind: 2,1 - tiles: LAAAAAAANQAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAALAAAAAACLwAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAACNQAAAAAAKgAAAAAALwAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAABKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACRgAAAAADLAAAAAAAKgAAAAAALwAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALwAAAAAAKgAAAAAASQAAAAACKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAAANQAAAAAALAAAAAABKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAANQAAAAAARgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAADKgAAAAAAKgAAAAAANQAAAAAALAAAAAACRgAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAACNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALQAAAAADLQAAAAACLQAAAAADLQAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAQwAAAAAAKgAAAAAALAAAAAADNQAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAABKgAAAAAALQAAAAADLQAAAAABLQAAAAAALQAAAAACKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAABKgAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAADLQAAAAADLQAAAAAALQAAAAADLQAAAAACLQAAAAACKgAAAAAALQAAAAABQwAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALQAAAAABLQAAAAABLQAAAAADLQAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAABLQAAAAADLQAAAAACLQAAAAABQwAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAABKgAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAADKgAAAAAAKgAAAAAA - version: 6 - 3,0: - ind: 3,0 - tiles: KgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAANQAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACKgAAAAAALQAAAAADLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAALAAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAADLAAAAAAAKgAAAAAALwAAAAAALwAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALQAAAAABLQAAAAADKgAAAAAALAAAAAABLQAAAAABLQAAAAADLQAAAAABLQAAAAABLAAAAAABKgAAAAAAKQAAAAAALwAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALQAAAAAALQAAAAADKgAAAAAALAAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAABLAAAAAADKgAAAAAALwAAAAAALwAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALQAAAAAALQAAAAADKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 3,1: - ind: 3,1 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARgAAAAABLAAAAAACLAAAAAACRgAAAAABNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAANQAAAAAARgAAAAADNQAAAAAARgAAAAAARgAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAABKgAAAAAALQAAAAADLQAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 3,2: - ind: 3,2 - tiles: KgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAAALAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAABKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAADKgAAAAAALQAAAAACLQAAAAAALQAAAAADLQAAAAAALQAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAAAKgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAACLQAAAAADLQAAAAAALQAAAAABLQAAAAABLQAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAADKgAAAAAALAAAAAAALAAAAAAALAAAAAAA - version: 6 - 2,2: - ind: 2,2 - tiles: QwAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABKgAAAAAAKgAAAAAALAAAAAABQwAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAABLAAAAAACLAAAAAADKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAAB - version: 6 - 1,2: - ind: 1,2 - tiles: LgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAABKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAABOgAAAAADOgAAAAADLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAOgAAAAABOgAAAAADOgAAAAADOgAAAAACOgAAAAADOgAAAAACLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAADKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAOgAAAAAAOgAAAAADOgAAAAAAOgAAAAADOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAADOgAAAAACKgAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAACLQAAAAABLQAAAAACLQAAAAADLQAAAAADLQAAAAADLQAAAAACKgAAAAAAOgAAAAABOgAAAAACOgAAAAABOgAAAAABKgAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAABLQAAAAADLQAAAAACLQAAAAAALQAAAAABLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACOgAAAAAALAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAACKgAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAADKgAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAALQAAAAABLQAAAAADLQAAAAACKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAADLQAAAAACLQAAAAABLQAAAAABLQAAAAACLQAAAAAALQAAAAABLQAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAADLQAAAAABLQAAAAAALQAAAAAALQAAAAADLQAAAAADLQAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAACKgAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAABLQAAAAACLQAAAAABLQAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAAA - version: 6 - 4,2: - ind: 4,2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAVAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAVAAAAAAALAAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALQAAAAADKgAAAAAANwAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAADNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKwAAAAAA - version: 6 - 4,3: - ind: 4,3 - tiles: LAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAABKgAAAAAAKwAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAADKgAAAAAAKwAAAAAALAAAAAACLAAAAAABLAAAAAABLwAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAARAAAAAADKgAAAAAANwAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAABNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAATAAAAAAALAAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAATAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 5,2: - ind: 5,2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 5,3: - ind: 5,3 - tiles: LgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 3,3: - ind: 3,3 - tiles: LAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAADLAAAAAABLAAAAAACKgAAAAAARAAAAAADRAAAAAABRAAAAAACOAAAAAACOAAAAAACLwAAAAAARAAAAAACRAAAAAAARAAAAAAARAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAARAAAAAACRAAAAAACRAAAAAAAOAAAAAABOAAAAAAAOAAAAAAARAAAAAADRAAAAAADRAAAAAACTAAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAADTAAAAAABTAAAAAAATAAAAAACOAAAAAAAOAAAAAABOAAAAAACTAAAAAACTAAAAAADTAAAAAAATAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAADTAAAAAAATAAAAAABTAAAAAABOAAAAAADOAAAAAAAOAAAAAACTAAAAAADTAAAAAADTAAAAAACTAAAAAACLAAAAAACLAAAAAAALAAAAAABLAAAAAADLAAAAAABKgAAAAAARAAAAAAARAAAAAAARAAAAAADOAAAAAADOAAAAAACOAAAAAACRAAAAAAARAAAAAAARAAAAAAARAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAARAAAAAABRAAAAAABRAAAAAACOAAAAAABOAAAAAACOAAAAAABRAAAAAACRAAAAAAARAAAAAABRAAAAAADLAAAAAABKgAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAARAAAAAAARAAAAAADRAAAAAACOAAAAAABOAAAAAACOAAAAAADRAAAAAAARAAAAAADRAAAAAADRAAAAAAALAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAADKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAABKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAABKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAA - version: 6 - 2,3: - ind: 2,3 - tiles: KgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACQwAAAAAAKgAAAAAALQAAAAACLQAAAAADLQAAAAABLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAABLAAAAAAAQwAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADQwAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAADLQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABKgAAAAAAKgAAAAAALQAAAAACLQAAAAABLQAAAAACLQAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAADVQAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAADKgAAAAAALwAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAADVQAAAAACLQAAAAADLQAAAAADLQAAAAACLQAAAAACLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAADKgAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAABLQAAAAABLQAAAAAALQAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAADLAAAAAABVQAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAADLQAAAAABLQAAAAADLQAAAAACLQAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACVQAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAACLQAAAAABLQAAAAADLQAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAACKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAALAAAAAACVQAAAAABKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAASQAAAAADSQAAAAACNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAALAAAAAADNAAAAAAAKgAAAAAASQAAAAADKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAADKgAAAAAAKgAAAAAASQAAAAACKgAAAAAANAAAAAAAKgAAAAAANAAAAAAAKgAAAAAAOgAAAAADOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAABLAAAAAACKgAAAAAA - version: 6 - 1,3: - ind: 1,3 - tiles: KgAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAABLQAAAAADLQAAAAACRwAAAAADKgAAAAAALQAAAAAALQAAAAACLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAACLQAAAAADLQAAAAACLQAAAAADKgAAAAAAOAAAAAAAOAAAAAABQwAAAAAAKgAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAADLQAAAAACLQAAAAADLQAAAAAALQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAACKgAAAAAALQAAAAACLQAAAAADLQAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAACLQAAAAADLQAAAAABLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADKgAAAAAALQAAAAADLQAAAAAALQAAAAACVQAAAAACVQAAAAABVQAAAAADVQAAAAACKgAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAVQAAAAADVQAAAAACVQAAAAADVQAAAAADKgAAAAAALAAAAAACKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAACVQAAAAADVQAAAAADKgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAALwAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAADVQAAAAACVQAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAADVQAAAAAAVQAAAAABKgAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAACKgAAAAAAVQAAAAACVQAAAAACVQAAAAACVQAAAAACVQAAAAADVQAAAAACVQAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAAAVQAAAAADVQAAAAADVQAAAAACKgAAAAAALAAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAADVQAAAAAAVQAAAAADKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAALwAAAAAAKgAAAAAANAAAAAAA - version: 6 - 0,3: - ind: 0,3 - tiles: TwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAACOAAAAAACOAAAAAADOAAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAADOAAAAAABOAAAAAACOAAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAABOAAAAAABOAAAAAABOAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAABOAAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAADOAAAAAACOAAAAAABOAAAAAACOAAAAAADOAAAAAAAOAAAAAABOAAAAAAAOAAAAAADKgAAAAAAKgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAACOAAAAAABOAAAAAADOAAAAAADOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAABOAAAAAACNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAADOAAAAAAAOAAAAAAAOAAAAAABOAAAAAAAOAAAAAABOAAAAAABNAAAAAAAKgAAAAAAKgAAAAAAVgAAAAAAPAAAAAAAVwAAAAAAKgAAAAAAOAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAABNAAAAAAAKgAAAAAAKgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKgAAAAAAOAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKgAAAAAAOAAAAAABLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAVgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAOAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAVwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAACOAAAAAABOAAAAAAAOAAAAAAAOAAAAAACOAAAAAABOAAAAAACNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAASQAAAAADLwAAAAAAKgAAAAAANAAAAAAASQAAAAADNAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA - version: 6 - -1,3: - ind: -1,3 - tiles: OAAAAAAAOAAAAAADOAAAAAADOAAAAAABKgAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAADOAAAAAACOAAAAAACKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAAAOAAAAAADOAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADKgAAAAAASQAAAAACKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAABOAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAACKgAAAAAASQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAABKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAVQAAAAACVQAAAAAAVQAAAAABKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAACKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAVQAAAAACVQAAAAABVQAAAAACKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAABKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANAAAAAAAKgAAAAAANAAAAAAAVQAAAAACVQAAAAADVQAAAAACKgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAVQAAAAADVQAAAAADVQAAAAADKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAABKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAADKgAAAAAALAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAA - version: 6 - 3,4: - ind: 3,4 - tiles: KgAAAAAALQAAAAABKgAAAAAAKgAAAAAALAAAAAABKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALQAAAAABLQAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 2,4: - ind: 2,4 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAA - version: 6 - 1,4: - ind: 1,4 - tiles: LAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACKQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAABNQAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAABKgAAAAAALAAAAAADNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAA - version: 6 - 4,4: - ind: 4,4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 0,4: - ind: 0,4 - tiles: KgAAAAAAKgAAAAAAKgAAAAAALwAAAAAASQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAANQAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAABKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAALgAAAAAALgAAAAAA - version: 6 - -1,4: - ind: -1,4 - tiles: LAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAADKgAAAAAALAAAAAADLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAASQAAAAABSQAAAAACSQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAADLAAAAAAAKgAAAAAANAAAAAAANAAAAAAASQAAAAAANAAAAAAASQAAAAABNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAADOAAAAAACLAAAAAABOAAAAAAAOAAAAAAAOAAAAAABOAAAAAADOAAAAAACOAAAAAABOAAAAAABOAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAABOAAAAAADLAAAAAADOAAAAAAAOAAAAAACOAAAAAABOAAAAAABOAAAAAAAOAAAAAABOAAAAAABOAAAAAAALAAAAAADKgAAAAAAKwAAAAAALgAAAAAAOAAAAAABOAAAAAABOAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAACKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABOAAAAAAAOAAAAAADOAAAAAABOAAAAAABOAAAAAACOAAAAAAAOAAAAAACOAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACOAAAAAABOAAAAAAAOAAAAAACOAAAAAACOAAAAAAAOAAAAAADOAAAAAAAOAAAAAABLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADOAAAAAABOAAAAAABOAAAAAABOAAAAAACOAAAAAADOAAAAAADOAAAAAADKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAABOAAAAAABOAAAAAADOAAAAAAAOAAAAAABOAAAAAADOAAAAAADOAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 0,5: - ind: 0,5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 1,5: - ind: 1,5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAACLAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - -4,2: - ind: -4,2 - tiles: LgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAACLQAAAAABLQAAAAABLQAAAAABLAAAAAABLAAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAABLQAAAAACLAAAAAADLAAAAAADLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAACKgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKQAAAAAALQAAAAADLQAAAAABKQAAAAAAKQAAAAAAKQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKQAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAABLQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAABKQAAAAAAKQAAAAAAKQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA - version: 6 - -4,0: - ind: -4,0 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAA - version: 6 - -5,2: - ind: -5,2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA - version: 6 - -4,3: - ind: -4,3 - tiles: KwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAPQAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAPQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAPQAAAAAAPQAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAPQAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAPQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAPQAAAAAAPQAAAAAAOAAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAPQAAAAAAOAAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAB - version: 6 - -3,3: - ind: -3,3 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAABLQAAAAADLQAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADKgAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAADLwAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAADLQAAAAADLQAAAAACKgAAAAAALQAAAAADLQAAAAACLQAAAAABKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAADLQAAAAABLAAAAAABLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAADLQAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAALwAAAAAAOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAAALQAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAUAAAAAABOgAAAAABKgAAAAAALAAAAAACLAAAAAAALAAAAAACLQAAAAADLQAAAAABLQAAAAABLQAAAAABKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAAAKgAAAAAAOgAAAAADOgAAAAADOgAAAAADLAAAAAAAMwAAAAAALAAAAAADKgAAAAAALQAAAAACLQAAAAADLQAAAAADKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABKgAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAABKgAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAADKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAALQAAAAACKgAAAAAA - version: 6 - -5,3: - ind: -5,3 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - -2,3: - ind: -2,3 - tiles: LwAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAARwAAAAADRwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAASQAAAAABNAAAAAAAKgAAAAAAOAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACKgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAABNgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAAOgAAAAAAOgAAAAAAKgAAAAAAOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAAOgAAAAAAOgAAAAABKgAAAAAAOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAAALAAAAAABKgAAAAAAOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAASQAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAANAAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAADKgAAAAAALwAAAAAAKgAAAAAANAAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAANAAAAAAAKgAAAAAASQAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAASQAAAAABKgAAAAAALAAAAAAD - version: 6 - -4,4: - ind: -4,4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAABWAAAAAABWAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAACWAAAAAADWAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - -3,4: - ind: -3,4 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAABLQAAAAABLQAAAAAALQAAAAADLQAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALQAAAAACLQAAAAACLQAAAAACLQAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAABLQAAAAAALQAAAAABLQAAAAABLQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAACLAAAAAAAWAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAWAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAWAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAWAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAWAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAWAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAATgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAA - version: 6 - -2,4: - ind: -2,4 - tiles: KgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALQAAAAADLQAAAAACLQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAKgAAAAAANAAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 4,0: - ind: 4,0 - tiles: KwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAA - version: 6 - -4,-1: - ind: -4,-1 - tiles: LgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAADOAAAAAABPQAAAAAAKgAAAAAAKgAAAAAAPQAAAAADOAAAAAABKgAAAAAALQAAAAABLQAAAAABKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAPQAAAAAFKgAAAAAAKgAAAAAAOAAAAAABPQAAAAAFOAAAAAABOAAAAAAAOAAAAAAAPQAAAAAEKgAAAAAALQAAAAACMwAAAAABLQAAAAABLgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADKgAAAAAAKgAAAAAAOAAAAAAAPQAAAAAGPQAAAAADKgAAAAAAPQAAAAACKgAAAAAALQAAAAAALQAAAAACLQAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 3,5: - ind: 3,5 - tiles: KwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 2,5: - ind: 2,5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - -1,-5: - ind: -1,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALQAAAAACKgAAAAAALQAAAAABKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAALQAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAALQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA - version: 6 - -2,-5: - ind: -2,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA - version: 6 - 0,-5: - ind: 0,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAACLQAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAABLQAAAAADLQAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAAALQAAAAABKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - -5,-2: - ind: -5,-2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAADLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - -3,-5: - ind: -3,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA - version: 6 - -3,5: - ind: -3,5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - -2,5: - ind: -2,5 - tiles: LgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - - type: Broadphase - - type: Physics - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - - type: Fixtures - fixtures: {} - - type: OccluderTree - - type: SpreaderGrid - - type: Shuttle - - type: GridPathfinding - - type: Gravity - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - - type: DecalGrid - chunkCollection: - version: 2 - nodes: - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 8241: 30,2 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 8243: 29,5 - - node: - color: '#FFFFFFFF' - id: Arrows - decals: - 8967: 6.0002394,17.436628 - 8968: 11.993295,17.42273 - 8969: 13.000239,17.436626 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 2955: 64,44 - 6205: 7,-43 - 6206: 4,-43 - 7989: 20,1 - 7990: 20,-1 - 7991: 20,-3 - 7992: 20,-5 - 7993: 20,-7 - 7994: 20,-9 - 7995: 20,-11 - 8201: 30,-3 - 8204: 26,-17 - 8205: 18,-17 - 8206: 45,-1 - 8364: 35.78848,-2.4661767 - 8365: 40,-1 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 8199: 30,-15 - 8200: 30,-9 - 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' - id: Arrows - decals: - 8723: 57,7 - - node: - color: '#FFFFFFFF' - id: Basalt1 - decals: - 7385: -11.234561,-15.648184 - - node: - angle: 0.017453292519943295 rad - color: '#FFFFFFFF' - id: Basalt1 - decals: - 4031: 56.086494,53.12512 - - node: - color: '#FFFFFFFF' - id: Basalt2 - decals: - 2146: 1.4780407,25.396852 - 2147: -0.32112217,26.409403 - 7383: -12.776228,-15.283346 - - node: - color: '#FFFFFFFF' - id: Basalt3 - decals: - 2148: -2.4550138,28.593504 - - node: - color: '#FFFFFFFF' - id: Basalt4 - decals: - 2144: -3.9361854,24.785973 - 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' - id: Basalt4 - decals: - 4033: 61.153404,55.927242 - - node: - angle: 1.5882496193148399 rad - color: '#FFFFFFFF' - id: Basalt4 - decals: - 4034: 54.28404,57.88463 - - node: - angle: 4.729842272904633 rad - color: '#FFFFFFFF' - id: Basalt4 - decals: - 4035: 63.13922,51.83073 - - node: - color: '#FFFFFFFF' - id: Basalt5 - decals: - 1095: 15.921438,-35.694286 - 7382: -20.005394,-11.259718 - - node: - angle: 0.017453292519943295 rad - color: '#FFFFFFFF' - id: Basalt5 - decals: - 4032: 61.657166,51.951504 - - node: - color: '#FFFFFFFF' - id: Basalt7 - decals: - 1096: 27.108938,-35.725536 - 2143: 0.0052371025,24.359194 - 2150: -1.9110802,26.367563 - 2151: 1.862978,27.748316 - 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 - decals: - 2145: -4.3629637,29.480534 - 2153: 0.25628328,28.66045 - 4036: 54.19902,53.03212 - - node: - cleanable: True - color: '#00A700FF' - id: Blasto - decals: - 1857: 45,63 - - node: - cleanable: True - color: '#3C44AAFF' - id: Blasto - decals: - 7140: -4.079398,-65.97755 - - node: - color: '#791500FF' - id: Bot - decals: - 5220: -51,-14 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Bot - decals: - 8245: 31,2 - 8246: 31,3 - 8247: 31,4 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 645: -15,-24 - 646: -15,-25 - 647: -10,-29 - 648: -17,-18 - 649: -15,-18 - 651: -18,-29 - 652: -18,-28 - 1285: 40,-27 - 1287: 46,-27 - 1288: 46,-33 - 1289: 46,-32 - 1290: 46,-31 - 1291: 40,-33 - 1292: 40,-32 - 1293: 40,-31 - 1294: 39,-20 - 1296: 39,-18 - 1297: 37,-20 - 1298: 37,-19 - 1299: 37,-18 - 1300: 52,-38 - 1303: 58,-33 - 1304: 59,-33 - 1305: 60,-33 - 1314: 46,-19 - 1404: -23,-5 - 1405: -22,-5 - 1432: -34,-11 - 1433: -34,-22 - 1434: -30,-19 - 1435: -34,-19 - 1436: -24,-32 - 1437: -25,-32 - 1440: -43,-24 - 1441: -49,-27 - 1442: -49,-23 - 1718: 41,8 - 1719: 45,7 - 1720: 45,8 - 2035: -11,7 - 2036: -11,8 - 2037: -11,10 - 2038: -11,11 - 2039: -18,6 - 2040: -26,16 - 2041: -30,19 - 2042: -28,19 - 2043: -27,19 - 2044: -18,16 - 2045: -18,17 - 2046: -17,-9 - 2047: -15,-9 - 2048: -13,-7 - 2049: -26,2 - 2090: -29,11 - 2092: -32,7 - 2238: -45,38 - 2239: -45,39 - 2240: -45,41 - 2241: -45,42 - 2242: -42,42 - 2245: -35,53 - 2246: -31,52 - 2247: -31,54 - 2250: -42,59 - 2251: -45,59 - 2252: -48,59 - 2253: -34,44 - 2254: -37,44 - 2255: -32,41 - 2256: -31,41 - 2257: -33,36 - 2258: -18,33 - 2393: -40,28 - 2394: -40,29 - 2395: -46,28 - 2396: -46,29 - 2397: -43,29 - 2664: -17,45 - 2665: -16,45 - 2666: -15,45 - 2667: 15,44 - 2668: 15,45 - 2670: 15,57 - 2671: 15,56 - 2672: 15,55 - 2841: 46,47 - 2842: 42,44 - 2843: 42,45 - 2844: 36,40 - 2845: 33,47 - 2846: 32,47 - 2847: 31,47 - 2848: 30,47 - 2849: 29,47 - 2855: 35,46 - 2856: 35,47 - 2948: 59,42 - 2949: 60,42 - 2950: 61,42 - 2952: 62,45 - 2953: 61,45 - 2990: -9,59 - 3953: -21,29 - 3954: -20,29 - 3955: -14,23 - 4250: 14,40 - 4251: 15,40 - 4340: -52,24 - 4341: -52,34 - 4342: -44,-48 - 4343: -46,-50 - 4344: -46,-47 - 4345: -35,-38 - 4498: 33,-42 - 4523: 45,43 - 4524: 46,43 - 4525: 47,43 - 4527: -26,25 - 4528: -40,25 - 4529: -39,25 - 4530: -38,25 - 4532: -14,3 - 4533: -14,-20 - 4534: 1,-26 - 4535: 0,-26 - 4536: 0,-29 - 4537: 1,-29 - 4538: 34,-26 - 4539: 33,-26 - 4543: -20,4 - 4544: -20,14 - 4545: -23,31 - 4713: 15,58 - 5020: 3,43 - 5047: 42,56 - 5279: -9,-7 - 5280: 56,-12 - 5281: 57,-12 - 5529: -28,69 - 5551: -28,60 - 5552: -28,61 - 5553: -26,58 - 5554: -27,58 - 5555: -28,58 - 5786: 31,-2 - 6198: 3,-46 - 6200: 3,-40 - 6258: 58,-27 - 6337: -11,2 - 6519: 45,2 - 6630: 20,-19 - 6631: 23,-19 - 6632: 16,-17 - 6633: 28,-17 - 6652: -24,-8 - 6654: -25,-11 - 6655: -25,-12 - 6656: -25,-13 - 6657: -23,-13 - 6658: -25,-10 - 6659: -21,-3 - 6697: -5,-7 - 6782: 60,-21 - 6783: 60,-22 - 6784: 61,-21 - 6785: 61,-22 - 6786: 62,-21 - 6787: 62,-22 - 6788: 63,-22 - 6789: 63,-21 - 6792: 60,-19 - 6793: 61,-19 - 6794: 62,-19 - 6795: 63,-19 - 7203: 3,-60 - 7204: -8,-69 - 7205: -17,-59 - 7598: -26,47 - 7599: -31,46 - 7600: -9,-36 - 7726: 24,7 - 7764: 50,-2 - 7765: 50,-1 - 7766: 58,0 - 8016: 20,-15 - 8196: 31,-3 - 8197: 42,-2 - 8198: 42,-1 - 8253: 31,6 - 8912: 51,-11 - 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' - id: Bot - decals: - 6918: 40,-18 - 6919: 40,-20 - 6921: 32,21 - 6922: 33,21 - 6923: 35,22 - 6934: 32,25 - 7044: -18,-62 - 7045: -18,-61 - 7046: -16,-61 - 7047: -16,-62 - 8425: 40,-12 - 8427: 33,-15 - 8459: 37,-13 - 8468: 40,-15 - - node: - angle: 0.017453292519943295 rad - color: '#FFFFFFFF' - id: Bot - decals: - 6798: -22,31 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Bot - decals: - 2956: 51,59 - 2958: 48,65 - 2959: 50,65 - 7999: 8,-9 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: Bot - decals: - 8730: 62,-4 - - node: - color: '#000000FF' - id: BotGreyscale - decals: - 7721: 27,9 - - node: - color: '#0096FFFF' - id: BotGreyscale - decals: - 7712: 26,12 - 7713: 27,12 - 7714: 27,11 - - node: - color: '#90BBFFFF' - id: BotGreyscale - decals: - 7725: 25,8 - - node: - color: '#FF0000FF' - id: BotGreyscale - decals: - 7709: 26,11 - 7710: 25,11 - 7711: 25,12 - - node: - color: '#FF00FFFF' - id: BotGreyscale - decals: - 6801: 2,59 - - node: - color: '#FF4DFFFF' - id: BotGreyscale - decals: - 7720: 24,8 - - node: - color: '#FFA500FF' - id: BotGreyscale - decals: - 7716: 27,6 - 7717: 27,7 - 8680: 27,8 - - node: - color: '#FFFFFFFF' - id: BotGreyscale - decals: - 6802: 2,58 - 7718: 25,9 - 7719: 25,10 - - node: - color: '#FFFFFFFF' - id: Box - decals: - 716: 31,-19 - 1265: 53,-25 - 1306: 61,-31 - 1307: 61,-30 - 1308: 61,-29 - 2088: -31,9 - 10246: 14,-18 - 10247: 13,-18 - 10248: 12,-18 - 10249: 12,-15 - 10250: 13,-15 - 10251: 14,-15 - 10277: 15,-18 - 10278: 15,-15 - 10289: 37,2 - 10290: 40,1 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: Box - decals: - 6702: 3,-6 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - decals: - 2086: -30,10 - 6287: 62,-25 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - decals: - 8458: 38,-10 - 8564: 49,6 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - decals: - 2085: -32,10 - 6290: 61,-25 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - decals: - 8448: 36,-10 - 8565: 47,6 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - decals: - 2087: -30,8 - 6288: 62,-26 - 6690: 0,-16 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - decals: - 8449: 38,-12 - 8566: 49,4 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - decals: - 2084: -32,8 - 6289: 61,-26 - 6689: -2,-16 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - decals: - 8447: 36,-12 - 8578: 47,4 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkEndN - decals: - 6685: -1,-2 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkEndS - decals: - 6682: -1,-3 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: BrickTileDarkInnerNe - decals: - 8450: 36,-12 - 8576: 47,4 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: BrickTileDarkInnerNw - decals: - 8451: 38,-12 - 8574: 49,4 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: BrickTileDarkInnerSe - decals: - 8452: 36,-10 - 8573: 47,6 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: BrickTileDarkInnerSw - decals: - 8453: 38,-10 - 8572: 49,6 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - decals: - 4244: 24,49 - 4245: 24,50 - 6692: 0,-15 - 7848: 53,4 - 7849: 53,5 - 7850: 53,6 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: BrickTileDarkLineE - decals: - 8454: 36,-11 - 8571: 47,5 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: BrickTileDarkLineN - decals: - 8455: 37,-12 - 8577: 48,4 - 8580: 48,5 - 8583: 37,-11 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - decals: - 4722: 23,48 - 6687: -1,-16 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: BrickTileDarkLineS - decals: - 8461: 37,-10 - 8570: 48,6 - 8581: 48,5 - 8582: 37,-11 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 4246: 27,53 - 6691: -2,-15 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 8456: 38,-11 - 8568: 49,5 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNe - decals: - 4061: 76,54 - 4062: 74,55 - 4063: 77,52 - 7301: 18,-31 - 7302: 30,-31 - 7333: -10,21 - 7338: -20,24 - 7360: -19,-11 - 7361: -12,-13 - 7362: -11,-15 - 7519: 59,58 - 7940: 57,-1 - 7974: 61,5 - 8598: 30,25 - 9590: -5,75 - 9591: -5,72 - 9900: -48,74 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNw - decals: - 4038: 73,46 - 4039: 72,45 - 4044: 68,55 - 4045: 66,54 - 7292: 25,-31 - 7319: 11,-31 - 7332: -13,21 - 7337: -21,24 - 7518: 57,58 - 7939: 54,-1 - 7973: 58,5 - 8597: 28,25 - 9587: -12,72 - 9588: -12,75 - 9898: -53,74 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSe - decals: - 4055: 74,42 - 4056: 76,43 - 4057: 77,45 - 6314: -31,27 - 7286: 17,-36 - 7287: 18,-33 - 7288: 28,-36 - 7289: 30,-34 - 7334: -10,19 - 7335: -20,19 - 7365: -11,-16 - 7366: -19,-16 - 7935: 57,-4 - 7971: 61,3 - 9589: -5,74 - 9897: -48,69 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSw - decals: - 4058: 66,43 - 4059: 68,42 - 4073: 72,52 - 4074: 73,51 - 6313: -37,27 - 7293: 25,-33 - 7294: 26,-36 - 7299: 15,-36 - 7300: 11,-32 - 7331: -13,19 - 7336: -21,19 - 7357: -21,-15 - 7358: -20,-16 - 7359: -13,-16 - 7517: 57,52 - 7936: 54,-4 - 7972: 58,3 - 8596: 28,21 - 9592: -12,74 - 9899: -53,69 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelEndN - decals: - 4078: 66,45 - 6311: -37,28 - 6312: -31,28 - 7355: -21,-10 - 7356: -13,-11 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelEndS - decals: - 4072: 66,52 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerNe - decals: - 2527: 1,35 - 6325: -37,27 - 7372: -13,-13 - 7373: -12,-15 - 7380: -21,-11 - 7508: 76,52 - 7509: 74,54 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerNw - decals: - 2524: 8,35 - 4040: 73,45 - 4077: 74,46 - 6326: -31,27 - 7502: 68,54 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerSe - decals: - 2526: 1,40 - 7310: 28,-34 - 7323: 17,-33 - 7506: 74,43 - 7507: 76,45 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerSw - decals: - 2525: 8,40 - 4075: 73,52 - 4076: 74,51 - 7311: 26,-33 - 7312: 15,-32 - 7379: -20,-15 - 7505: 68,43 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineE - decals: - 2508: 1,37 - 2510: 1,39 - 4041: 77,46 - 4042: 77,51 - 4043: 76,53 - 7307: 30,-33 - 7308: 30,-32 - 7309: 28,-35 - 7320: 18,-32 - 7321: 17,-35 - 7322: 17,-34 - 7325: -10,20 - 7343: -20,20 - 7344: -20,21 - 7345: -20,22 - 7346: -20,23 - 7363: -12,-14 - 7364: -13,-12 - 7375: -19,-15 - 7376: -19,-14 - 7377: -19,-13 - 7378: -19,-12 - 7503: 76,44 - 7514: 59,57 - 7515: 59,56 - 7516: 59,53 - 7945: 57,-3 - 7946: 57,-2 - 7980: 61,4 - 8592: 30,22 - 8593: 30,23 - 8594: 30,24 - 9612: -5,71 - 9911: -48,70 - 9912: -48,73 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: BrickTileSteelLineE - decals: - 9952: 1,36 - 9953: 1,38 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineN - decals: - 2519: 3,35 - 2521: 5,35 - 2522: 6,35 - 2523: 7,35 - 4064: 69,55 - 4065: 70,55 - 4066: 71,55 - 4067: 72,55 - 4068: 73,55 - 4069: 67,54 - 4088: 58,58 - 6320: -32,27 - 6321: -33,27 - 6322: -34,27 - 6323: -35,27 - 6324: -36,27 - 7303: 26,-31 - 7304: 27,-31 - 7305: 28,-31 - 7306: 29,-31 - 7313: 12,-31 - 7314: 13,-31 - 7315: 14,-31 - 7316: 15,-31 - 7317: 16,-31 - 7318: 17,-31 - 7327: -12,21 - 7328: -11,21 - 7367: -20,-11 - 7510: 75,54 - 7943: 55,-1 - 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: - zIndex: 1 - color: '#FFFFFFFF' - id: BrickTileSteelLineN - decals: - 9950: 2,35 - 9951: 4,35 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineS - decals: - 2511: 2,40 - 2512: 2,40 - 2513: 3,40 - 2514: 4,40 - 2515: 5,40 - 2516: 6,40 - 2517: 7,40 - 4048: 69,42 - 4049: 70,42 - 4050: 71,42 - 4051: 72,42 - 4052: 73,42 - 4053: 75,43 - 4054: 75,43 - 4091: 58,52 - 6315: -36,27 - 6316: -35,27 - 6317: -34,27 - 6318: -33,27 - 6319: -32,27 - 7280: 12,-32 - 7281: 13,-32 - 7285: 14,-32 - 7296: 27,-36 - 7297: 29,-34 - 7298: 16,-36 - 7329: -12,19 - 7330: -11,19 - 7374: -12,-16 - 7504: 67,43 - 7937: 55,-4 - 7938: 56,-4 - 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 - decals: - 2503: 8,36 - 2504: 8,37 - 2505: 8,38 - 2506: 8,39 - 4060: 66,44 - 4071: 66,53 - 7282: 15,-35 - 7283: 15,-34 - 7284: 15,-33 - 7290: 26,-35 - 7291: 25,-32 - 7295: 26,-34 - 7326: -13,20 - 7339: -21,20 - 7340: -21,21 - 7341: -21,22 - 7342: -21,23 - 7351: -21,-14 - 7352: -21,-13 - 7353: -21,-12 - 7354: -21,-11 - 7368: -13,-15 - 7369: -13,-14 - 7370: -13,-13 - 7371: -13,-12 - 7511: 57,56 - 7512: 57,57 - 7513: 57,53 - 7941: 54,-3 - 7942: 54,-2 - 7979: 58,4 - 8591: 28,24 - 9611: -12,71 - 9909: -53,70 - 9910: -53,73 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteEndN - decals: - 6357: -9,-48 - 8601: -11,-48 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteEndS - decals: - 6354: -11,-51 - 6355: -9,-51 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineE - decals: - 8604: -9,-50 - 8605: -9,-49 - 8608: -11,-50 - 8609: -11,-49 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineW - decals: - 8602: -11,-50 - 8603: -11,-49 - 8606: -9,-50 - 8607: -9,-49 - - node: - color: '#FFFFFFFF' - id: BushAThree - decals: - 2106: 0.565907,29.296432 - - node: - color: '#FFFFFFFF' - id: BushATwo - decals: - 2105: -3.6181934,29.062122 - - node: - color: '#FFFFFFFF' - id: BushCOne - decals: - 1092: 28,-35 - - node: - color: '#FFFFFFFF' - id: BushCTwo - decals: - 2104: -4.9236326,26.442877 - 2123: -2.731164,29.304802 - - node: - color: '#FFFFFFFF' - id: BushDTwo - decals: - 2103: -3.6098251,28.459614 - 2122: -1.894344,29.572584 - - node: - color: '#FFFFFFFF' - id: Busha1 - decals: - 2110: 1.7374549,28.484718 - - node: - color: '#FFFFFFFF' - id: Busha2 - decals: - 2111: 0.8504257,28.37593 - - node: - color: '#FFFFFFFF' - id: Bushb1 - decals: - 1093: 15,-35 - 2124: 0.90063477,24.275513 - - node: - color: '#FFFFFFFF' - id: Bushb2 - decals: - 2107: -2.2123353,25.63116 - - node: - color: '#FFFFFFFF' - id: Bushb3 - decals: - 2108: 1.9131875,26.576767 - - node: - color: '#FFFFFFFF' - id: Bushc1 - decals: - 2109: 0.8253207,26.844551 - - node: - color: '#FFFFFFFF' - id: Bushd3 - decals: - 2125: -3.7855573,24.00773 - - node: - color: '#FFFFFFFF' - id: Bushe1 - decals: - 2100: -4.463382,24.911495 - - node: - color: '#FFFFFFFF' - id: Bushe3 - decals: - 2101: 0.49059296,23.940784 - - node: - color: '#FFFFFFFF' - id: Bushe4 - decals: - 2102: -0.21233535,30.719027 - 2121: -2.3127544,29.514006 - 2129: 2.2228107,30.016098 - - node: - color: '#FFFFFFFF' - id: Bushf1 - decals: - 2099: -4.5889044,26.61024 - - node: - color: '#FFFFFFFF' - id: Bushf2 - decals: - 2098: -3.96129,26.442877 - 2120: -1.8608712,30.124886 - 2128: -5.174679,29.472164 - - node: - color: '#FFFFFFFF' - id: Bushf3 - decals: - 2097: -3.358779,25.68137 - - node: - color: '#FFFFFFFF' - id: Bushg2 - decals: - 2126: -2.79811,24.819445 - 2127: -2.6474822,31.145805 - - node: - color: '#FFFFFFFF' - id: Bushh3 - decals: - 2114: -2.4550138,25.522375 - 2133: -1.2667288,24.501453 - 2134: -2.5135913,31.355011 - 2135: -1.0491562,29.564215 - - node: - color: '#FFFFFFFF' - id: Bushi1 - decals: - 2094: -5.024051,28.635345 - 7399: -19.874327,-15.327351 - - node: - color: '#FFFFFFFF' - id: Bushi2 - decals: - 2095: -4.2625446,28.7525 - 2130: -1.6432979,31.1207 - 2131: -3.6851392,24.3843 - 2132: 1.9215555,25.840366 - 7249: 12.603658,-31.090416 - - node: - color: '#FFFFFFFF' - id: Bushi3 - decals: - 2096: 0.4738567,25.639528 - 2115: -0.07007599,29.488901 - 2116: -1.0658925,25.488901 - 2117: -2.2876494,24.083044 - 7250: 17.846506,-33.016037 - 7251: 25.551167,-32.599907 - 7252: 27.10853,-31.335203 - 7253: 29.2285,-33.081314 - 7400: -20.184513,-12.597416 - - node: - color: '#FFFFFFFF' - id: Bushi4 - decals: - 7401: -20.915993,-14.910229 - 7402: -20.857828,-10.881952 - - node: - color: '#FFFFFFFF' - id: Bushj1 - decals: - 1091: 26,-35 - 7390: -19.207941,-11.52527 - 7391: -20.106089,-13.197729 - 7392: -20.707941,-12.4472065 - 7393: -19.666275,-14.61883 - - node: - color: '#FFFFFFFF' - id: Bushj2 - decals: - 7387: -20.286644,-14.638216 - 7388: -19.240349,-13.030947 - 7389: -20.71257,-11.664257 - - node: - color: '#FFFFFFFF' - id: Bushj3 - decals: - 7386: -19.272757,-15.68524 - 7394: -20.689423,-13.947067 - 7395: -19.772757,-13.872942 - 7396: -19.050533,-13.75712 - 7397: -20.930164,-10.073053 - 7398: -19.062784,-12.109478 - - node: - color: '#FFFFFFFF' - id: Bushk1 - decals: - 2118: 2.0889196,25.271328 - 2119: -4.9152646,30.066307 - 7257: 29.46742,-31.057781 - - node: - color: '#FFFFFFFF' - id: Bushk2 - decals: - 7256: 26.148851,-31.351519 - - node: - color: '#FFFFFFFF' - id: Bushk3 - decals: - 1094: 17,-35 - 2112: -0.55543184,25.673002 - - node: - color: '#FFFFFFFF' - id: Bushl3 - decals: - 2113: -1.7269804,25.162542 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Caution - decals: - 5282: 60,-15 - - node: - cleanable: True - color: '#3C44AAFF' - id: Clandestine - decals: - 7141: -3.1627312,-68.28798 - - node: - cleanable: True - color: '#8600003C' - id: Damaged - decals: - 4347: -44.25874,-48.932568 - 4357: -43.14474,-50.673935 - 4358: -44.534176,-46.580185 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Delivery - decals: - 8244: 29,6 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 650: -16,-18 - 1269: 52,-23 - 1270: 54,-23 - 1273: 62,-15 - 1276: 54,-37 - 1781: 33,35 - 1782: 33,36 - 1783: 33,37 - 2051: -16,-9 - 2052: -18,5 - 2053: -20,12 - 2054: -37,4 - 2055: -43,4 - 2056: -43,14 - 2057: -37,14 - 2228: -40,39 - 2229: -40,41 - 2230: -36,44 - 2231: -35,44 - 2232: -43,38 - 2233: -42,38 - 2234: -33,35 - 2259: -19,35 - 2260: -19,36 - 2261: -39,44 - 2398: -43,30 - 2857: 47,47 - 2858: 37,40 - 2859: 52,51 - 2860: 52,52 - 2954: 64,42 - 2991: -9,58 - 4518: -15,35 - 4519: -7,43 - 5749: -4,-16 - 5750: 2,-16 - 6401: -47,2 - 6402: -47,1 - 6660: -30,-5 - 6661: -30,-7 - 6666: -22,-3 - 8358: 24,-15 - 8359: 25,-15 - 8708: -38,66 - 8709: -38,67 - 8711: -38,68 - 8712: -33,66 - 8713: -33,67 - 8714: -33,68 - 8755: -3,19 - 8960: 33,-13 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Delivery - decals: - 7818: 62,3 - 7819: 62,4 - 7820: 62,5 - - node: - cleanable: True - color: '#B02E26FF' - id: Diablo - decals: - 7139: 1.3442132,-68.84953 - - node: - cleanable: True - zIndex: 1 - color: '#FFFFFFFF' - id: Dirt - decals: - 1458: -9,-25 - 1459: -8,-23 - 1686: 51,12 - 1687: 51,10 - 1689: 43,7 - 1690: 38,8 - 1691: 40,16 - 1692: 41,18 - 1693: 38,19 - 1694: 37,16 - 1695: 33,16 - 1696: 29,19 - 1698: 38,22 - 1699: 43,24 - 1700: 48,24 - 1701: 48,21 - 1840: 45,62 - 1841: 46,64 - 1842: 46,62 - 1843: 46,62 - 1844: 46,63 - 1845: 44,63 - 5269: -28,-15 - 5472: -7,0 - 6147: 4,-44 - 6148: 8,-46 - 6151: 8,-41 - 6153: 4,-46 - 6592: 38,10 - 6593: 37,6 - 6594: 33,8 - 6595: 31,12 - 6610: 33,14 - 6611: 30,16 - 6612: 32,21 - 6614: 39,24 - 6615: 51,18 - 6616: 45,8 - 6935: 34,24 - 6936: 35,29 - 6937: 34,33 - 6938: 33,22 - 6939: 32,17 - 6940: 33,12 - 6941: 32,10 - 6942: 37,12 - 6943: 39,7 - 6944: 40,6 - 6945: 41,6 - 6947: 44,-4 - 6948: 42,-5 - 6949: 43,-7 - 6950: 42,-11 - 6951: 44,-14 - 6952: 42,-17 - 6953: 44,-20 - 6954: 42,-25 - 6955: 40,-25 - 6956: 38,-23 - 6957: 39,-19 - 6960: 40,-9 - 6961: 44,-15 - 7030: 44,-22 - 7033: 48,27 - 7034: 40,31 - 7035: 30,10 - 7036: 28,14 - 7048: -38,-59 - 7049: -37,-57 - 7087: -35,-57 - 7088: -32,-60 - 7089: -35,-60 - 7090: -30,-57 - 7091: -29,-59 - 7092: -30,-60 - 7093: -33,-58 - 7094: -28,-60 - 7095: -8,-69 - 7096: -3,-69 - 7098: 1,-69 - 7099: 0,-68 - 7101: -5,-66 - 7102: 2,-65 - 7103: -7,-67 - 7146: -35,-16 - 7147: -26,-16 - 7171: -45,-17 - 7173: -54,-13 - 7188: -54,-49 - 7189: -48,-51 - 7190: -40,-51 - 7199: 3,-63 - 7200: 0,-65 - 7206: 4,-52 - 7207: 6,-48 - 7208: 10,-50 - 7209: 8,-49 - 7210: 9,-37 - 7211: 5,-37 - 7212: 4,-30 - 7213: -10,-32 - 7449: -65,-22 - 7498: -66,-20 - 7499: -65,-20 - 8099: 29,6 - 8129: 44,-1 - 8168: 42,4 - 8169: 45,0 - 8321: 37,-3 - 8322: 31,0 - 8406: 0,68 - 8407: 1,70 - 8408: -2,70 - 8409: -3,68 - 8476: 41,-16 - 8477: 40,-15 - 8478: 41,-14 - 8479: 41,-12 - 8480: 37,-16 - 8503: 30,22 - 8505: 29,22 - 8506: 29,23 - 8507: 30,23 - 8508: 30,24 - 8509: 29,24 - 8510: 28,24 - 8511: 28,25 - 8512: 29,25 - 8513: 30,25 - 8514: 28,23 - 8515: 28,22 - 8516: 28,21 - 8517: 30,21 - 8519: 29,21 - 8520: 30,21 - 8521: 28,22 - 8522: 29,25 - 8523: 30,23 - 8524: 28,24 - 8525: 29,23 - 8526: 30,24 - 8527: 29,24 - 8528: 28,25 - 8529: 30,25 - 8530: 30,22 - 8531: 29,22 - 8532: 29,21 - 8533: 28,21 - 8534: 31,22 - 8535: 31,23 - 8536: 31,24 - 8537: 31,23 - 8538: 31,22 - 8646: -57,-34 - 8648: -57,-30 - 8649: -59,-34 - 8650: -57,-35 - 8652: -59,-35 - 8655: -59,-19 - 8674: -48,-46 - 8675: -48,-44 - 8676: -51,-51 - 8677: -43,-54 - 8850: 62,-4 - 8913: 48,-6 - 8914: 50,-4 - 8915: 55,-9 - 8916: 55,-8 - 8917: 52,-9 - 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 - 10059: -58,-17 - 10060: -61,-16 - 10113: -10,-69 - 10114: -12,-72 - 10115: -14,-70 - 10116: -16,-72 - 10117: -16,-68 - 10118: -12,-67 - 10241: 3,69 - 10242: 5,70 - 10243: 6,68 - - node: - cleanable: True - zIndex: 1 - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 1443: -8,-24 - 1444: -8,-24 - 1445: -9,-24 - 1446: -9,-25 - 1447: -9,-23 - 1448: -9,-23 - 1449: -7,-24 - 1450: -7,-23 - 1460: -10,-24 - 1461: -10,-23 - 1466: 16,3 - 1467: 15,3 - 1482: 22,5 - 1484: 19,6 - 1490: 30,-14 - 1491: 32,-16 - 1492: 27,-18 - 1494: 21,-18 - 1496: 32,-24 - 1497: 30,-22 - 1498: 23,-23 - 1499: 21,-23 - 1500: 14,-24 - 1501: 10,-22 - 1502: 10,-24 - 1503: 12,-23 - 1504: 9,-20 - 1507: 9,-14 - 1552: 49,19 - 1553: 48,20 - 1554: 48,19 - 1555: 49,20 - 1556: 49,21 - 1557: 50,19 - 1558: 50,20 - 1559: 51,20 - 1560: 51,19 - 1561: 52,19 - 1562: 52,20 - 1563: 52,20 - 1564: 51,20 - 1565: 51,19 - 1566: 44,7 - 1567: 44,7 - 1568: 43,8 - 1570: 41,7 - 1571: 41,8 - 1572: 43,7 - 1573: 44,8 - 1574: 44,7 - 1575: 39,8 - 1576: 38,7 - 1577: 37,6 - 1579: 35,7 - 1580: 34,7 - 1581: 34,7 - 1582: 34,8 - 1583: 35,8 - 1590: 38,8 - 1591: 39,7 - 1592: 34,10 - 1593: 35,10 - 1594: 36,10 - 1595: 36,10 - 1596: 35,10 - 1679: 52,22 - 1680: 52,23 - 1681: 53,24 - 1682: 52,25 - 1683: 51,27 - 1684: 51,24 - 1685: 53,24 - 1805: 39,62 - 1806: 39,62 - 1807: 38,62 - 1808: 38,63 - 1810: 40,62 - 1832: 45,63 - 1833: 45,63 - 1834: 44,64 - 1835: 43,64 - 1836: 42,64 - 1837: 42,63 - 1838: 43,63 - 1839: 43,63 - 4107: 45,31 - 4108: 40,27 - 4109: 35,26 - 4110: 34,40 - 4111: 39,43 - 4112: 25,41 - 4113: 19,44 - 4114: 19,47 - 4115: 13,41 - 4116: 14,44 - 4117: 9,38 - 4119: -1,45 - 4120: -10,43 - 4121: -15,39 - 4122: -17,41 - 4123: -17,36 - 4124: -15,33 - 4125: -18,26 - 4126: -22,27 - 4127: -29,27 - 4128: -34,28 - 4130: -27,27 - 4131: -39,27 - 4132: -37,30 - 4133: -33,17 - 4134: -34,18 - 4135: -40,16 - 4136: -41,1 - 4137: -36,1 - 4138: -36,1 - 4139: -30,7 - 4140: -30,10 - 4142: -21,7 - 4143: -17,11 - 4144: -16,0 - 4145: -17,-3 - 4146: -10,-7 - 4147: -16,-14 - 4148: -17,-21 - 4149: -15,-25 - 4150: -16,-29 - 4151: -10,-28 - 4152: -6,-28 - 4153: 6,-28 - 4154: 10,-27 - 4155: 15,-23 - 4156: 11,-21 - 4158: 18,-18 - 4159: 25,-18 - 4160: 26,-17 - 4161: 34,-23 - 4162: 34,-20 - 4163: 22,-29 - 4164: 24,-28 - 4165: 20,-31 - 4166: 23,-38 - 4167: 21,-36 - 4168: 28,-39 - 4169: 32,-38 - 4170: 33,-36 - 4171: 36,-39 - 4172: 38,-39 - 4173: 39,-38 - 4174: 40,-38 - 4175: 40,-36 - 4176: 42,-35 - 4177: 44,-35 - 4179: 48,-34 - 4180: 48,-35 - 4181: 49,-37 - 4182: 47,-40 - 4184: 46,-39 - 4185: 45,-40 - 4186: 45,-40 - 4187: 53,-45 - 4188: 53,-44 - 4192: 57,-38 - 4193: 55,-36 - 4194: 57,-32 - 4195: 59,-32 - 4196: 58,-29 - 4199: 52,-29 - 4200: 51,-26 - 4202: 51,-37 - 4203: 52,-34 - 4204: 51,-32 - 4205: 53,-33 - 4252: 11,14 - 4253: 8,15 - 4254: 6,14 - 4255: 8,16 - 4256: 10,16 - 4257: 9,13 - 4258: 5,15 - 4259: 5,16 - 4260: 13,15 - 4261: 14,16 - 4262: 11,16 - 4263: 9,14 - 4264: 6,11 - 4265: 5,11 - 4266: 6,11 - 4267: 15,12 - 4268: 16,12 - 4270: 17,15 - 4271: 11,15 - 4272: 10,16 - 4273: 14,15 - 4274: 11,17 - 4283: 25,5 - 4284: 28,3 - 4293: 13,-28 - 4294: 17,-27 - 4295: 20,-28 - 4296: 25,-28 - 4297: 40,-24 - 4298: 47,-25 - 4299: 47,-25 - 4300: 46,-24 - 4301: 47,-24 - 4302: 47,-20 - 4303: 27,57 - 4304: 29,59 - 4395: -37,-40 - 4396: -37,-39 - 4397: -36,-39 - 4398: -35,-39 - 4399: -35,-39 - 4400: -35,-38 - 4401: -36,-38 - 4402: -35,-40 - 4403: -34,-39 - 4404: -34,-38 - 4406: -36,-36 - 4407: -38,-35 - 4408: -33,-36 - 4409: -37,-33 - 4410: -38,-31 - 4411: -37,-29 - 4412: -34,-27 - 4413: -33,-29 - 4414: -37,-28 - 4416: -30,-26 - 4418: -36,-25 - 4419: -39,-23 - 4420: -41,-24 - 4421: -39,-24 - 4422: -39,-25 - 4423: -38,-21 - 4424: -37,-22 - 4425: -36,-20 - 4426: -44,-20 - 4427: -33,-21 - 4428: -25,-31 - 4431: -36,-48 - 4432: -32,-47 - 4433: -31,-48 - 4434: -28,-49 - 4435: -27,-48 - 4436: -26,-49 - 4437: -27,-51 - 4439: -22,-51 - 4440: -18,-59 - 4441: -17,-58 - 4442: -18,-56 - 4443: -16,-55 - 4444: -11,-57 - 4445: -11,-55 - 4446: -12,-62 - 4447: -13,-62 - 4448: -14,-60 - 4449: -12,-53 - 4453: -7,-52 - 4457: 0,-48 - 4458: -3,-47 - 4459: -1,-45 - 4460: 1,-43 - 4461: -2,-42 - 4462: -4,-43 - 4463: -12,-42 - 4464: -16,-44 - 4465: -18,-43 - 4466: -11,-40 - 4467: -10,-39 - 4468: -16,-39 - 4469: -17,-36 - 4481: 4,-46 - 4483: -12,-56 - 4484: 8,-33 - 4485: 8,-32 - 4486: 8,-30 - 4487: 9,-30 - 4499: 35,-44 - 4500: 33,-44 - 4501: 35,-43 - 4502: 34,-43 - 4503: 34,-43 - 4504: 35,-42 - 4548: -13,44 - 4549: -9,45 - 4550: -5,44 - 4551: -3,44 - 4552: 2,44 - 4553: -8,48 - 4554: -11,49 - 4555: -10,52 - 4556: -11,54 - 4557: -10,55 - 4558: -16,53 - 4559: -15,55 - 4560: -14,54 - 4561: -17,55 - 4562: -17,56 - 4563: -5,53 - 4564: -7,55 - 4565: -6,56 - 4566: -5,54 - 4567: -6,54 - 4568: -11,59 - 4569: -8,64 - 4570: -12,65 - 4571: -9,61 - 4572: -4,58 - 4573: -17,64 - 4574: -19,39 - 4575: 8,34 - 4576: 4,44 - 4577: -1,45 - 4578: -18,70 - 4580: -20,70 - 4581: -20,71 - 4585: -18,67 - 4586: -19,66 - 4587: -15,68 - 4588: -15,69 - 4589: -16,68 - 4612: 59,-50 - 4613: 59,-50 - 4895: -1,-50 - 4896: 0,-51 - 4898: -10,-52 - 4899: -8,-50 - 4903: -12,-50 - 4904: -12,-47 - 4906: -15,-31 - 4907: -17,-30 - 4908: -13,-28 - 4911: -25,-29 - 4930: 11,4 - 4935: 27,4 - 4936: 28,3 - 5112: 47,8 - 5113: 48,8 - 5114: 48,8 - 5116: 52,10 - 5117: 52,10 - 5118: 52,12 - 5119: 50,12 - 5120: 42,8 - 5121: 41,8 - 5122: -41,-54 - 5123: -40,-53 - 5124: -42,-54 - 5125: -43,-54 - 5126: -45,-53 - 5127: -47,-53 - 5128: -47,-53 - 5130: -49,-50 - 5131: -49,-49 - 5132: -50,-48 - 5133: -49,-48 - 5134: -50,-47 - 5135: -50,-47 - 5136: -51,-46 - 5137: -50,-48 - 5138: -51,-48 - 5139: -51,-47 - 5140: -49,-47 - 5141: -53,-45 - 5142: -54,-45 - 5143: -54,-44 - 5144: -53,-43 - 5145: -52,-43 - 5146: -51,-43 - 5147: -50,-46 - 5148: -50,-46 - 5245: -57,-20 - 5246: -56,-20 - 5247: -56,-20 - 5249: -51,-20 - 5250: -52,-19 - 5251: -53,-20 - 5252: -53,-17 - 5253: -55,-15 - 5254: -55,-13 - 5255: -57,-15 - 5256: -50,-15 - 5257: -51,-14 - 5258: -49,-13 - 5259: -47,-13 - 5260: -45,-14 - 5261: -44,-16 - 5262: -45,-17 - 5263: -47,-17 - 5264: -51,-17 - 5265: -28,-17 - 5266: -29,-16 - 5270: -27,-13 - 5401: 52,-21 - 5402: 48,-19 - 5403: 52,-15 - 5404: 48,-15 - 5418: 55,12 - 5419: 54,11 - 5420: 54,10 - 5421: 54,8 - 5422: 55,8 - 5423: 55,9 - 5424: 55,10 - 5425: 51,8 - 5426: 50,8 - 5427: 48,8 - 5430: 45,8 - 5431: 5,-24 - 5432: -1,-24 - 5433: -2,-23 - 5434: 0,-23 - 5435: 0,-24 - 5436: 5,-22 - 5437: 6,-23 - 5438: 6,-21 - 5439: -3,-24 - 5440: -4,-23 - 5441: -3,-23 - 5442: -3,-24 - 5443: -7,-23 - 5444: -9,-23 - 5445: -6,-21 - 5446: -5,-22 - 5447: -11,-20 - 5448: -10,-18 - 5449: -11,-18 - 5450: -9,-19 - 5451: -8,-21 - 5452: -6,-21 - 5453: -9,-15 - 5454: -9,-13 - 5455: -9,-11 - 5457: -9,-7 - 5459: -9,-4 - 5460: -9,-2 - 5461: -9,0 - 5462: -8,2 - 5463: -8,2 - 5464: -8,3 - 5465: -7,2 - 5466: -7,3 - 5467: -7,4 - 5468: -7,7 - 5469: -6,7 - 5470: -6,8 - 5471: -6,9 - 5628: -26,53 - 5629: -25,53 - 5630: -26,54 - 5631: -25,54 - 5632: -25,55 - 5633: -26,55 - 5634: -24,55 - 5635: -28,53 - 5636: -29,55 - 5637: -28,56 - 5638: -30,50 - 5639: -31,50 - 5640: -27,51 - 5641: -24,52 - 5642: -23,52 - 5643: -23,53 - 5644: -24,53 - 5645: -24,54 - 5646: -23,55 - 5647: -24,55 - 5648: -25,55 - 5649: -25,54 - 5650: -26,53 - 5651: -25,54 - 5652: -19,55 - 5653: -23,61 - 5654: -24,62 - 5655: -27,64 - 5656: -29,63 - 5657: -28,67 - 5658: -29,68 - 5659: -27,69 - 5660: -29,72 - 5661: -31,72 - 5662: -33,72 - 5663: -35,72 - 5664: -37,72 - 5665: -40,72 - 5667: -44,70 - 5668: -45,72 - 5669: -42,69 - 5670: -42,68 - 5671: -42,66 - 5672: -42,65 - 5673: -43,65 - 5674: -45,65 - 5675: -47,65 - 5676: -49,65 - 5677: -50,65 - 5678: -51,65 - 5679: -51,65 - 5680: -51,64 - 5681: -51,62 - 5683: -53,61 - 5684: -54,61 - 5687: -51,61 - 5688: -51,59 - 5689: -51,56 - 5690: -51,54 - 5691: -51,51 - 5692: -51,50 - 5693: -51,49 - 5694: -50,49 - 5695: -49,44 - 5696: -49,44 - 5697: -47,46 - 5698: -47,46 - 5699: -46,46 - 5700: -46,47 - 5701: -45,47 - 5702: -47,45 - 5703: -48,45 - 5704: -48,44 - 5705: -43,44 - 5706: -41,44 - 5707: -40,48 - 5708: -40,45 - 5709: -43,48 - 5710: -35,46 - 5711: -36,48 - 5712: -34,49 - 5713: -28,47 - 5714: -31,44 - 5715: -28,44 - 5716: -30,46 - 5717: -23,44 - 5718: -22,46 - 5719: -21,44 - 5720: -19,49 - 5721: -20,49 - 5722: -21,49 - 5723: -24,57 - 5724: -23,57 - 5725: -26,59 - 5726: -27,60 - 5727: -23,64 - 5728: -24,65 - 5729: -22,65 - 5730: -23,64 - 5970: 37,10 - 5971: 34,11 - 5972: 33,11 - 5973: 33,12 - 5974: 32,12 - 5975: 37,14 - 5976: 36,14 - 5977: 35,14 - 5978: 35,15 - 5979: 35,15 - 5980: 35,17 - 5981: 35,17 - 5982: 35,18 - 5983: 38,16 - 5984: 37,17 - 5985: 37,18 - 5986: 39,18 - 5987: 39,19 - 5988: 44,14 - 5989: 46,14 - 5990: 48,14 - 5991: 50,14 - 5992: 48,14 - 5993: 47,14 - 5994: 46,14 - 5995: 45,14 - 5996: 44,14 - 5997: 46,14 - 5998: 46,14 - 5999: 47,14 - 6000: 48,14 - 6001: 49,14 - 6002: 49,14 - 6003: 51,14 - 6004: 51,14 - 6005: 52,15 - 6006: 51,15 - 6007: 51,16 - 6008: 51,16 - 6009: 52,16 - 6010: 52,17 - 6011: 53,17 - 6012: 53,17 - 6013: 54,17 - 6014: 54,17 - 6015: 48,10 - 6016: 47,11 - 6017: 45,11 - 6018: 44,10 - 6019: 44,11 - 6020: 45,11 - 6021: 47,10 - 6022: 48,10 - 6023: 48,11 - 6024: 48,11 - 6025: 47,12 - 6026: 49,12 - 6027: 50,12 - 6028: 51,12 - 6029: 52,13 - 6030: 52,13 - 6031: 52,12 - 6032: 40,11 - 6033: 38,12 - 6034: 38,11 - 6035: 36,11 - 6036: 37,10 - 6138: 3,-45 - 6140: 4,-41 - 6141: 3,-40 - 6142: 6,-40 - 6143: 8,-41 - 6146: 8,-46 - 6403: -31,-39 - 6404: -30,-38 - 6406: -30,-44 - 6407: -23,-47 - 6408: -27,-51 - 6409: -21,-52 - 6410: -8,-53 - 6411: -13,-49 - 6412: -7,-51 - 6413: -7,-48 - 6414: -8,-47 - 6520: 41,-1 - 6521: 41,0 - 6522: 41,1 - 6524: 45,2 - 6525: 46,3 - 6526: 45,4 - 6530: 42,7 - 6531: 43,4 - 6532: 43,3 - 6535: 44,-5 - 6536: 44,-6 - 6542: 29,-4 - 6543: 29,-1 - 6545: 30,-11 - 6547: 36,-7 - 6548: 34,-6 - 6549: 34,-8 - 6550: 38,-6 - 6551: 39,-7 - 6552: 41,-11 - 6553: 41,-13 - 6557: 42,-14 - 6558: 43,-13 - 6564: 55,-6 - 6577: 53,-2 - 6579: 47,-1 - 6584: 44,-3 - 6585: 45,-3 - 6586: 46,-3 - 6588: 47,-2 - 6589: 38,10 - 6590: 39,12 - 6591: 39,12 - 6596: 30,12 - 6597: 30,12 - 6598: 30,13 - 6599: 31,14 - 6600: 32,13 - 6601: 32,12 - 6602: 33,12 - 6603: 34,12 - 6604: 34,12 - 6605: 34,11 - 6606: 34,10 - 6607: 33,10 - 6608: 32,10 - 6609: 31,10 - 6962: 44,-19 - 6963: 44,-18 - 6964: 42,-16 - 6965: 44,-14 - 6966: 44,-25 - 6967: 42,-24 - 6968: 44,-22 - 6969: 43,-20 - 6970: 43,-17 - 6971: 44,-14 - 6972: 43,-11 - 6973: 43,-8 - 6974: 42,-7 - 6975: 43,-6 - 6976: 42,-4 - 6977: 43,-4 - 6981: 43,4 - 6982: 43,6 - 7050: -37,-59 - 7051: -38,-59 - 7052: -38,-58 - 7053: -39,-58 - 7054: -39,-57 - 7055: -37,-57 - 7059: -34,-60 - 7060: -35,-60 - 7061: -35,-59 - 7062: -33,-59 - 7063: -33,-60 - 7064: -33,-59 - 7065: -35,-58 - 7066: -34,-57 - 7067: -34,-57 - 7068: -32,-57 - 7069: -31,-59 - 7070: -30,-60 - 7071: -29,-60 - 7072: -30,-57 - 7104: -9,-67 - 7105: -8,-67 - 7106: -7,-69 - 7107: -4,-69 - 7109: -2,-68 - 7111: -2,-66 - 7112: -1,-69 - 7113: -3,-67 - 7114: 1,-68 - 7116: -4,-66 - 7117: -1,-69 - 7118: 1,-67 - 7119: 2,-66 - 7120: 2,-67 - 7148: -35,-16 - 7149: -36,-16 - 7150: -36,-15 - 7151: -35,-15 - 7153: -28,-17 - 7154: -29,-17 - 7155: -26,-15 - 7156: -22,-18 - 7157: -23,-17 - 7158: -24,-17 - 7159: -27,-17 - 7160: -24,-13 - 7161: -23,-12 - 7162: -25,-10 - 7163: -30,-13 - 7164: -32,-13 - 7165: -34,-13 - 7166: -36,-13 - 7167: -38,-13 - 7168: -40,-13 - 7169: -44,-13 - 7170: -45,-13 - 7174: -59,-34 - 7175: -59,-32 - 7180: -59,-20 - 7181: -50,-41 - 7182: -51,-39 - 7183: -54,-51 - 7184: -53,-51 - 7185: -53,-49 - 7186: -54,-48 - 7187: -53,-48 - 7195: 3,-60 - 7214: -8,-40 - 7215: -8,-39 - 7216: -8,-37 - 7217: -9,-35 - 7218: -8,-34 - 7219: -8,-32 - 7220: -9,-32 - 7221: -7,-31 - 7222: -6,-31 - 7223: -4,-31 - 7224: -1,-31 - 7225: 4,-31 - 7226: 4,-30 - 7227: 5,-30 - 7228: 4,-37 - 7229: 7,-36 - 7230: 4,-54 - 7231: 4,-56 - 7232: 4,-57 - 7233: 1,-58 - 7234: 1,-63 - 7235: 0,-62 - 7236: -7,-65 - 7237: -7,-64 - 7238: 0,-63 - 7239: -1,-63 - 7240: -17,-66 - 7241: -17,-69 - 7242: -18,-68 - 7243: -17,-68 - 7244: -18,-66 - 7245: -16,-64 - 7443: -65,-22 - 7444: -65,-28 - 7486: -65,-30 - 7487: -64,-30 - 7488: -66,-20 - 7489: -64,-20 - 7492: -66,-22 - 7493: -66,-28 - 7494: -66,-30 - 7495: -65,-29 - 8075: 17,-11 - 8076: 10,-7 - 8077: 9,-12 - 8078: 20,-14 - 8080: 19,-11 - 8081: 12,-7 - 8082: 15,-5 - 8083: 16,-9 - 8084: 11,-10 - 8085: 17,-9 - 8086: 17,-6 - 8087: 9,-5 - 8088: 10,1 - 8089: 8,3 - 8090: 9,5 - 8091: 11,6 - 8092: 19,2 - 8093: 18,-3 - 8094: 16,-1 - 8095: 30,-5 - 8096: 25,6 - 8097: 27,10 - 8098: 26,11 - 8100: 29,12 - 8101: 29,10 - 8102: 30,9 - 8103: 30,8 - 8104: 31,8 - 8105: 31,7 - 8106: 31,6 - 8107: 31,5 - 8111: 29,2 - 8112: 29,6 - 8121: 45,-2 - 8122: 45,-1 - 8123: 43,-2 - 8124: 47,-2 - 8126: 44,-1 - 8127: 43,1 - 8128: 42,2 - 8131: 56,-6 - 8132: 54,-5 - 8133: 58,-2 - 8134: 53,1 - 8135: 53,-1 - 8136: 56,0 - 8137: 61,2 - 8138: 58,4 - 8140: 62,4 - 8141: 54,4 - 8142: 55,6 - 8152: 64,4 - 8171: 2,-20 - 8317: 34,-2 - 8318: 40,-3 - 8319: 38,-2 - 8481: 35,-12 - 8482: 36,-13 - 8483: 38,-13 - 8484: 38,-16 - 8485: 37,-15 - 8486: 35,-16 - 8487: 41,-16 - 8488: 40,-16 - 8489: 41,-14 - 8490: 41,-13 - 8491: 40,-13 - 8492: 41,-12 - 8493: 40,-12 - 8494: 42,-15 - 8495: 41,-15 - 8496: 40,-14 - 8497: 42,-16 - 8498: 41,-12 - 8499: 43,-14 - 8500: 43,-13 - 8501: 44,-13 - 8502: 42,-11 - 8539: 31,22 - 8540: 31,22 - 8541: 31,23 - 8542: 31,24 - 8584: 30,21 - 8585: 30,21 - 8586: 28,22 - 8587: 28,23 - 8588: 28,23 - 8589: 29,25 - 8590: 29,25 - 8633: 54,60 - 8634: 54,62 - 8635: 52,61 - 8637: -57,-31 - 8639: -57,-30 - 8641: -57,-33 - 8642: -57,-33 - 8643: -58,-34 - 8644: -58,-33 - 8657: -59,-20 - 8664: -54,-36 - 8665: -54,-37 - 8666: -54,-39 - 8667: -54,-41 - 8668: -54,-43 - 8669: -53,-44 - 8670: -51,-44 - 8671: -51,-44 - 8672: -48,-46 - 8673: -48,-46 - 8818: 39,-36 - 8819: 41,-36 - 8820: 43,-36 - 8822: 32,-26 - 8823: 39,-19 - 8824: 61,-3 - 8825: 61,-2 - 8829: 62,-2 - 8830: 62,-3 - 8832: 61,6 - 8833: 60,2 - 8834: 58,5 - 8835: 57,4 - 8836: 59,6 - 8837: 58,7 - 8838: 61,9 - 8839: 59,10 - 8842: 60,11 - 8844: 59,10 - 8846: 57,10 - 8848: 62,7 - 8849: 62,-3 - 8892: 47,0 - 8893: 48,1 - 8894: 50,1 - 8899: -22,-32 - 8900: -21,-31 - 8901: -26,-30 - 8902: -22,-28 - 8903: -21,-28 - 8904: -23,-30 - 8905: -18,-31 - 8919: 45,-4 - 8920: 46,-4 - 8921: 45,-5 - 8922: 45,-6 - 8923: 47,-6 - 8924: 48,-6 - 8925: 49,-6 - 8928: 50,-4 - 8929: 49,-4 - 8930: 50,1 - 8931: 51,-8 - 8932: 51,-7 - 8933: 52,-9 - 8934: 53,-8 - 8935: 54,-9 - 8936: 55,-8 - 8937: 56,-8 - 8938: 56,-9 - 8939: 55,-9 - 8940: 51,-5 - 8952: -9,-63 - 8953: -7,-63 - 8954: -6,-62 - 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 - 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 - 9954: -1,22 - 9955: -1,21 - 9956: -3,22 - 9957: -3,22 - 9958: -4,22 - 9959: -5,19 - 9960: -5,20 - 9961: -3,21 - 9962: -2,21 - 9984: -1,10 - 9985: 0,7 - 9986: -2,7 - 9987: -2,7 - 9988: -1,7 - 9989: -3,10 - 9990: -4,11 - 9991: -7,4 - 9992: -7,5 - 9993: -7,6 - 9994: -6,7 - 9995: -9,0 - 9996: -10,-2 - 9997: -11,-2 - 9998: -11,-1 - 9999: -13,-2 - 10000: -12,-5 - 10001: -11,-4 - 10002: -12,-4 - 10003: -12,-4 - 10004: -2,-4 - 10005: -11,-11 - 10006: -11,-10 - 10007: -11,-10 - 10008: -11,-9 - 10009: -12,-9 - 10010: -12,-9 - 10011: -11,-7 - 10012: -10,-13 - 10013: -10,-12 - 10014: -7,-16 - 10015: -8,-16 - 10016: -7,-15 - 10017: -7,-15 - 10018: -7,-18 - 10019: -4,-20 - 10020: -4,-21 - 10021: -5,-20 - 10022: -3,-19 - 10023: -3,-21 - 10024: -1,-21 - 10025: 3,-21 - 10026: 4,-19 - 10027: 4,-15 - 10028: 4,-16 - 10029: 4,-16 - 10030: 4,-17 - 10031: 4,-24 - 10032: 2,-24 - 10033: -13,-23 - 10034: -60,-28 - 10035: -61,-28 - 10036: -63,-30 - 10037: -60,-22 - 10038: -59,-22 - 10039: -59,-25 - 10040: -59,-28 - 10041: -61,-16 - 10042: -61,-16 - 10043: -61,-16 - 10044: -61,-16 - 10045: -61,-15 - 10046: -60,-14 - 10047: -57,-17 - 10048: -58,-16 - 10049: -57,-16 - 10050: -58,-17 - 10051: -54,-17 - 10052: -55,-17 - 10053: -55,-16 - 10054: -54,-16 - 10055: -53,-16 - 10056: -55,-15 - 10057: -54,-13 - 10058: -54,-13 - 10061: -60,-14 - 10062: -60,-14 - 10063: -60,-14 - 10064: -57,-17 - 10065: -55,-16 - 10066: -55,-16 - 10067: -55,-15 - 10068: -56,-16 - 10069: -56,-16 - 10070: -55,-15 - 10071: -54,-16 - 10072: -54,-16 - 10073: -54,-16 - 10074: -51,-15 - 10075: -50,-15 - 10076: -51,-13 - 10077: -52,-20 - 10078: -52,-20 - 10079: -52,-20 - 10080: -53,-20 - 10081: -51,-20 - 10082: -46,-23 - 10083: -17,-70 - 10084: -15,-69 - 10085: -15,-70 - 10086: -14,-70 - 10087: -13,-69 - 10088: -12,-69 - 10089: -11,-70 - 10090: -11,-71 - 10091: -11,-72 - 10092: -12,-72 - 10093: -12,-71 - 10094: -14,-72 - 10095: -15,-72 - 10096: -15,-72 - 10097: -16,-72 - 10098: -16,-72 - 10099: -15,-72 - 10100: -10,-69 - 10101: -10,-69 - 10102: -11,-69 - 10103: -11,-69 - 10104: -11,-70 - 10105: -13,-70 - 10106: -16,-68 - 10107: -16,-69 - 10108: -14,-69 - 10109: -12,-70 - 10110: -11,-70 - 10111: -16,-70 - 10112: -17,-68 - 10119: -16,-66 - 10120: -13,-66 - 10121: -12,-66 - 10122: -13,-67 - 10123: -12,-67 - 10124: -11,-67 - 10125: -13,-67 - 10126: -14,-67 - 10127: -14,-66 - 10128: -15,-66 - 10129: -15,-65 - 10130: -13,-65 - 10131: -13,-65 - 10132: -9,-65 - 10133: -8,-64 - 10134: -14,-63 - 10146: -24,9 - 10147: -25,9 - 10148: -21,9 - 10149: -21,10 - 10150: -20,9 - 10151: -24,7 - 10152: -24,4 - 10153: -22,5 - 10154: -21,4 - 10155: -20,13 - 10156: -22,13 - 10157: -23,14 - 10158: -24,14 - 10159: -24,11 - 10160: -20,12 - 10218: 3,68 - 10219: 4,70 - 10220: 5,69 - 10221: 6,68 - 10222: 6,68 - 10223: 5,70 - 10226: 6,70 - 10227: 5,70 - 10229: 2,69 - 10231: 3,70 - - node: - cleanable: True - zIndex: 1 - color: '#FFFFFFFF' - id: DirtHeavyMonotile - decals: - 1600: 41,16 - 1601: 40,16 - 1602: 41,17 - 1603: 40,18 - 1604: 39,16 - 1605: 38,17 - 1606: 38,18 - 1607: 38,18 - 1608: 39,19 - 1609: 40,17 - 1610: 37,17 - 1611: 40,18 - 1612: 40,19 - 1613: 41,19 - 1614: 41,18 - 1615: 37,19 - 1616: 37,18 - 1617: 41,21 - 1618: 38,22 - 1619: 39,23 - 1620: 39,22 - 1621: 41,22 - 1622: 38,24 - 1623: 39,24 - 1624: 40,24 - 1811: 38,62 - 1812: 38,63 - 1814: 40,62 - 1815: 40,62 - 1816: 39,62 - 1818: 38,63 - 1819: 38,62 - 1820: 38,63 - 1822: 41,62 - 1823: 42,63 - 1824: 42,63 - 1825: 42,64 - 1826: 43,64 - 1827: 45,63 - 1828: 44,64 - 1829: 44,64 - 1830: 45,63 - 1831: 45,63 - 1846: 44,62 - 1847: 44,62 - 1848: 45,64 - 1849: 45,64 - 1850: 45,62 - 1851: 45,62 - 1852: 44,63 - 1853: 46,62 - 1854: 46,63 - 1855: 46,64 - 2992: 0,-2 - 2994: -2,-8 - 2995: -7,-7 - 2996: -16,-7 - 2997: -15,-4 - 2998: -17,-3 - 2999: -17,1 - 3000: -11,6 - 3001: -9,8 - 3002: -19,8 - 3004: -19,11 - 3005: -16,12 - 3006: -17,18 - 3007: -23,16 - 3008: -21,16 - 3009: -23,17 - 3010: -23,21 - 3011: -27,22 - 3012: -28,22 - 3013: -28,23 - 3014: -16,21 - 3015: -15,22 - 3016: -18,25 - 3017: -19,28 - 3018: -24,27 - 3020: -31,27 - 3021: -33,26 - 3022: -38,27 - 3023: -38,29 - 3024: -36,29 - 3026: -34,32 - 3027: -39,35 - 3028: -28,33 - 3029: -27,32 - 3030: -27,36 - 3031: -31,38 - 3032: -31,39 - 3033: -38,41 - 3034: -28,39 - 3036: -30,43 - 3037: -28,46 - 3038: -30,51 - 3039: -29,52 - 3040: -27,50 - 3041: -29,54 - 3042: -31,55 - 3044: -35,56 - 3045: -39,53 - 3046: -43,51 - 3047: -45,52 - 3049: -47,55 - 3050: -43,58 - 3052: -45,61 - 3053: -49,62 - 3054: -42,62 - 3055: -42,63 - 3057: -40,58 - 3058: -36,58 - 3059: -34,64 - 3060: -36,65 - 3061: -35,59 - 3062: -31,59 - 3064: -36,66 - 3065: -20,61 - 3066: -21,60 - 3067: -21,61 - 3068: -20,62 - 3069: -20,63 - 3071: -16,59 - 3072: -16,63 - 3073: -10,64 - 3074: -12,62 - 3075: -9,60 - 3076: -8,64 - 3077: -11,60 - 3078: -9,59 - 3079: -3,59 - 3080: -4,61 - 3081: -3,62 - 3082: -4,64 - 3083: -4,68 - 3084: -3,69 - 3085: -9,68 - 3090: 2,69 - 3091: -1,66 - 3097: 4,65 - 3098: 4,65 - 3100: 5,61 - 3101: 6,62 - 3102: 7,61 - 3103: 8,61 - 3104: 5,57 - 3105: 4,57 - 3106: 3,58 - 3107: 7,58 - 3108: 9,59 - 3111: 10,44 - 3112: 13,44 - 3113: 12,41 - 3114: 14,41 - 3116: 8,40 - 3117: 9,36 - 3118: 5,37 - 3119: 7,35 - 3120: 1,37 - 3121: 2,39 - 3122: 2,34 - 3123: 4,31 - 3124: 4,30 - 3125: 4,28 - 3126: 5,31 - 3127: 5,31 - 3128: -3,35 - 3129: -3,35 - 3130: -8,32 - 3131: -8,30 - 3132: -7,31 - 3133: -8,32 - 3134: -8,33 - 3135: -6,33 - 3136: -4,33 - 3137: -3,34 - 3138: -3,36 - 3139: -2,37 - 3140: -2,38 - 3141: -3,38 - 3142: -3,39 - 3143: -6,35 - 3144: -6,35 - 3145: -7,36 - 3146: -8,35 - 3147: -8,36 - 3148: -2,47 - 3149: -3,48 - 3150: -3,49 - 3151: -2,50 - 3152: -3,51 - 3153: -3,52 - 3154: -3,52 - 3155: -2,53 - 3156: -3,55 - 3157: -2,56 - 3158: -2,56 - 3159: -1,55 - 3160: 0,55 - 3161: -1,57 - 3162: 0,57 - 3163: 0,56 - 3164: 0,56 - 3169: 1,62 - 3170: 2,61 - 3171: 3,61 - 3172: 4,62 - 3173: 5,61 - 3174: 6,61 - 3175: 6,62 - 3176: 7,61 - 3177: 9,61 - 3178: 11,62 - 3179: 11,61 - 3180: 7,65 - 3181: 9,66 - 3182: 7,66 - 3183: 6,65 - 3184: 8,65 - 3185: 8,66 - 3186: 8,68 - 3187: 8,68 - 3188: 10,68 - 3189: 10,67 - 3190: 9,67 - 3191: 8,66 - 3192: 10,66 - 3193: 4,64 - 3194: 3,65 - 3199: 15,66 - 3200: 13,69 - 3201: 11,74 - 3202: 12,77 - 3203: 11,80 - 3204: 12,84 - 3205: 25,83 - 3206: 25,80 - 3207: 25,76 - 3208: 26,78 - 3209: 24,69 - 3210: 21,67 - 3211: 26,65 - 3212: 27,66 - 3213: 27,67 - 3214: 27,68 - 3215: 24,65 - 3216: 26,65 - 3217: 28,65 - 3218: 28,67 - 3219: 29,66 - 3220: 24,62 - 3221: 24,63 - 3222: 27,62 - 3223: 27,62 - 3224: 28,63 - 3225: 29,63 - 3226: 30,62 - 3227: 30,63 - 3228: 30,63 - 3229: 31,62 - 3230: 31,62 - 3231: 31,63 - 3232: 32,62 - 3233: 34,62 - 3234: 34,61 - 3235: 34,60 - 3236: 33,62 - 3237: 32,61 - 3238: 32,61 - 3239: 35,60 - 3240: 34,59 - 3241: 36,59 - 3242: 36,60 - 3243: 35,60 - 3244: 35,61 - 3245: 35,66 - 3246: 36,66 - 3247: 34,67 - 3248: 34,66 - 3249: 34,65 - 3250: 33,65 - 3251: 31,65 - 3252: 31,67 - 3253: 36,61 - 3254: 36,62 - 3255: 36,63 - 3256: 35,61 - 3257: 39,62 - 3258: 39,62 - 3260: 39,62 - 3261: 43,62 - 3262: 44,59 - 3263: 45,58 - 3265: 45,60 - 3266: 45,59 - 3267: 43,55 - 3269: 38,56 - 3270: 35,53 - 3271: 36,51 - 3272: 40,51 - 3273: 41,52 - 3274: 41,53 - 3275: 40,48 - 3276: 39,47 - 3277: 40,46 - 3278: 39,46 - 3279: 37,46 - 3280: 39,47 - 3281: 40,47 - 3282: 40,48 - 3283: 40,49 - 3284: 40,47 - 3286: 32,46 - 3288: 29,46 - 3289: 35,50 - 3290: 31,49 - 3291: 26,46 - 3293: 25,49 - 3295: 21,49 - 3296: 19,46 - 3297: 18,48 - 3298: 18,51 - 3299: 20,53 - 3300: 24,42 - 3301: 25,41 - 3302: 20,42 - 3303: 22,40 - 3304: 29,36 - 3305: 30,37 - 3306: 28,37 - 3307: 29,38 - 3308: 30,42 - 3309: 31,54 - 3310: 28,55 - 3311: 30,57 - 3312: 27,59 - 3314: 51,55 - 3315: 50,54 - 3316: 51,50 - 3317: 50,48 - 3318: 51,44 - 3319: 54,45 - 3320: 55,44 - 3321: 44,44 - 3322: 41,42 - 3323: 37,42 - 3324: 34,40 - 3325: 35,36 - 3326: 34,33 - 3327: 35,29 - 3328: 34,27 - 3330: 39,28 - 3331: 38,30 - 3332: 39,30 - 3333: 39,28 - 3334: 44,30 - 3335: 43,31 - 3336: 42,29 - 3337: 44,27 - 3338: 48,30 - 3339: 50,29 - 3340: 51,30 - 3341: 49,33 - 3342: 55,28 - 3343: 56,29 - 3344: 53,30 - 3345: 51,23 - 3346: 53,24 - 3347: 52,25 - 3348: 51,24 - 3349: 51,24 - 3350: 51,17 - 3351: 51,19 - 3352: 49,19 - 3353: 48,20 - 3354: 49,21 - 3355: 50,18 - 3356: 46,17 - 3357: 44,18 - 3358: 45,19 - 3359: 39,17 - 3360: 38,18 - 3361: 41,19 - 3362: 33,18 - 3363: 33,19 - 3364: 33,20 - 3366: 41,24 - 3367: 39,25 - 3368: 38,23 - 3369: 38,22 - 3370: 24,26 - 3372: 20,29 - 3373: 21,30 - 3374: 23,29 - 3375: 21,27 - 3376: 20,28 - 3377: 21,33 - 3378: 35,35 - 3379: 40,41 - 3380: 42,43 - 3382: 48,44 - 3383: 49,45 - 3384: 46,47 - 3385: 44,48 - 3386: 46,49 - 3387: 48,47 - 3388: 48,49 - 3389: 44,50 - 3390: 46,52 - 3391: 47,50 - 3392: 45,50 - 3393: 54,47 - 3394: 55,49 - 3395: 56,48 - 3396: 59,49 - 3397: 62,48 - 3398: 64,49 - 3399: 64,48 - 3400: 66,49 - 3401: 69,47 - 3402: 70,49 - 3403: 70,45 - 3404: 76,47 - 3405: 75,50 - 3406: 63,43 - 3407: 60,45 - 3408: 61,42 - 3409: 64,42 - 3410: 64,42 - 3411: 47,10 - 3412: 43,7 - 3426: 10,0 - 3433: 9,-21 - 3434: 10,-22 - 3435: 11,-23 - 3436: 12,-22 - 3437: 15,-23 - 3438: 22,-23 - 3439: 21,-22 - 3443: 26,-17 - 3444: 26,-22 - 3445: 27,-23 - 3447: 32,-22 - 3448: 32,-23 - 3449: 34,-19 - 3450: 39,-24 - 3451: 39,-23 - 3452: 41,-21 - 3453: 42,-22 - 3454: 41,-23 - 3455: 38,-23 - 3456: 38,-23 - 3457: 42,-23 - 3458: 42,-22 - 3459: 42,-19 - 3460: 42,-22 - 3461: 38,-22 - 3462: 38,-20 - 3464: 42,-20 - 3465: 43,-22 - 3466: 44,-24 - 3467: 43,-24 - 3468: 39,-22 - 3469: 42,-20 - 3470: 43,-18 - 3471: 42,-19 - 3472: 42,-21 - 3473: 41,-22 - 3474: 43,-16 - 3475: 43,-14 - 3476: 41,-12 - 3479: 47,-20 - 3480: 50,-17 - 3481: 51,-20 - 3482: 48,-17 - 3484: 48,-17 - 3485: 50,-19 - 3486: 47,-14 - 3488: 53,-12 - 3489: 54,-12 - 3492: 62,-16 - 3493: 63,-15 - 3498: 57,-21 - 3500: 59,-30 - 3501: 57,-31 - 3503: 60,-30 - 3504: 56,-36 - 3505: 57,-36 - 3511: 50,-44 - 3512: 50,-43 - 3513: 50,-44 - 3514: 51,-45 - 3515: 51,-44 - 3516: 50,-43 - 3517: 50,-43 - 3518: 49,-44 - 3519: 47,-43 - 3520: 47,-43 - 3521: 46,-43 - 3522: 46,-44 - 3523: 47,-40 - 3525: 46,-39 - 3527: 50,-41 - 3528: 49,-36 - 3529: 46,-37 - 3531: 47,-35 - 3533: 48,-36 - 3534: 48,-36 - 3537: 49,-34 - 3538: 49,-33 - 3539: 48,-33 - 3540: 49,-35 - 3541: 46,-35 - 3542: 44,-35 - 3543: 43,-36 - 3544: 42,-35 - 3545: 41,-36 - 3546: 40,-35 - 3547: 42,-39 - 3548: 43,-39 - 3549: 41,-38 - 3550: 40,-39 - 3551: 39,-39 - 3552: 40,-40 - 3553: 42,-40 - 3554: 39,-39 - 3555: 38,-39 - 3556: 36,-39 - 3557: 36,-39 - 3558: 36,-38 - 3559: 40,-36 - 3560: 38,-36 - 3561: 37,-35 - 3562: 34,-36 - 3563: 33,-36 - 3564: 32,-36 - 3565: 32,-35 - 3566: 32,-34 - 3567: 32,-32 - 3568: 32,-28 - 3569: 31,-27 - 3570: 29,-27 - 3572: 23,-27 - 3573: 20,-28 - 3574: 22,-28 - 3575: 22,-29 - 3576: 22,-32 - 3577: 21,-33 - 3578: 22,-32 - 3579: 23,-37 - 3580: 25,-38 - 3581: 26,-39 - 3582: 29,-39 - 3583: 30,-40 - 3584: 31,-42 - 3585: 31,-44 - 3586: 31,-47 - 3587: 30,-49 - 3588: 30,-51 - 3589: 13,-54 - 3590: 12,-53 - 3591: 13,-52 - 3592: 12,-50 - 3593: 13,-48 - 3594: 12,-45 - 3595: 13,-43 - 3596: 13,-40 - 3597: 14,-39 - 3598: 8,-39 - 3599: 9,-38 - 3600: 10,-39 - 3601: 9,-39 - 3602: 9,-38 - 3603: 8,-40 - 3604: 8,-40 - 3605: 8,-42 - 3606: 8,-44 - 3607: 8,-46 - 3608: 8,-48 - 3609: 7,-48 - 3610: 7,-49 - 3611: 5,-49 - 3612: 5,-50 - 3613: 4,-50 - 3614: 3,-50 - 3615: 3,-51 - 3616: 5,-37 - 3617: 5,-36 - 3618: 6,-36 - 3619: 6,-36 - 3620: 7,-37 - 3621: 8,-36 - 3622: 9,-35 - 3623: 10,-38 - 3624: 10,-39 - 3625: 9,-39 - 3626: 3,-37 - 3630: -4,-37 - 3631: -5,-34 - 3632: 4,-42 - 3634: -1,-43 - 3635: -2,-46 - 3636: -4,-43 - 3637: -10,-44 - 3638: -14,-43 - 3639: -17,-45 - 3640: -16,-46 - 3641: -17,-49 - 3642: -17,-52 - 3643: -17,-56 - 3644: -14,-56 - 3645: -12,-60 - 3646: -11,-62 - 3647: -21,-52 - 3648: -22,-52 - 3649: -16,-61 - 3650: -16,-61 - 3651: -18,-62 - 3652: -17,-61 - 3653: -7,-53 - 3655: -7,-50 - 3657: -12,-52 - 3660: -17,-50 - 3661: -22,-47 - 3662: -21,-45 - 3663: -23,-45 - 3665: -30,-43 - 3666: -31,-44 - 3667: -35,-44 - 3668: -22,-40 - 3669: -21,-39 - 3670: -16,-40 - 3671: -17,-38 - 3672: -15,-37 - 3673: -15,-35 - 3674: -11,-34 - 3675: -12,-35 - 3676: -14,-36 - 3678: -31,-37 - 3679: -30,-34 - 3680: -31,-31 - 3681: -30,-29 - 3682: -30,-27 - 3683: -33,-28 - 3686: -27,-25 - 3687: -26,-25 - 3688: -25,-25 - 3689: -26,-31 - 3691: -24,-31 - 3694: -20,-25 - 3696: -22,-20 - 3697: -20,-21 - 3698: -20,-22 - 3699: -26,-21 - 3700: -25,-20 - 3701: -26,-21 - 3702: -27,-21 - 3703: -31,-20 - 3704: -32,-21 - 3705: -34,-20 - 3706: -30,-21 - 3707: -37,-24 - 3708: -39,-24 - 3709: -39,-23 - 3710: -37,-21 - 3711: -37,-21 - 3712: -34,-27 - 3713: -38,-30 - 3714: -38,-31 - 3715: -38,-34 - 3716: -33,-36 - 3717: -31,-35 - 3718: -30,-37 - 3719: -40,-45 - 3720: -41,-43 - 3721: -42,-43 - 3722: -39,-44 - 3723: -38,-46 - 3724: -38,-48 - 3725: -43,-46 - 3726: -44,-43 - 3727: -43,-43 - 3728: -42,-43 - 3729: -40,-44 - 3730: -38,-46 - 3731: -39,-47 - 3732: -39,-48 - 3733: -39,-49 - 3734: -38,-48 - 3735: -39,-47 - 3736: -47,-41 - 3737: -48,-39 - 3738: -44,-39 - 3739: -42,-40 - 3740: -42,-35 - 3741: -46,-34 - 3742: -41,-34 - 3743: -45,-36 - 3744: -50,-32 - 3745: -50,-31 - 3746: -52,-31 - 3747: -54,-31 - 3748: -53,-32 - 3749: -51,-32 - 3750: -50,-31 - 3751: -51,-31 - 3752: -53,-31 - 3753: -54,-31 - 3754: -54,-30 - 3755: -54,-30 - 3756: -55,-32 - 3757: -53,-32 - 3758: -52,-32 - 3759: -51,-32 - 3760: -50,-32 - 3761: -50,-34 - 3762: -50,-35 - 3763: -50,-35 - 3764: -49,-35 - 3765: -49,-36 - 3766: -45,-30 - 3767: -44,-28 - 3768: -49,-26 - 3769: -48,-25 - 3770: -45,-25 - 3771: -45,-27 - 3772: -47,-28 - 3773: -50,-25 - 3774: -49,-23 - 3775: -46,-23 - 3776: -44,-25 - 3777: -46,-27 - 3778: -43,-20 - 3779: -42,-20 - 3780: -43,-21 - 3781: -27,-11 - 3783: -27,-9 - 3784: -27,-8 - 3785: -27,-6 - 3786: -27,-4 - 3787: -31,-11 - 3788: -33,-10 - 3789: -34,-10 - 3790: -36,-11 - 3791: -35,-11 - 3792: -33,-11 - 3798: -21,-6 - 3799: -22,-4 - 3800: -26,-5 - 3802: -23,-8 - 3803: -16,-7 - 3804: -16,-5 - 3805: -18,-5 - 3806: -16,-2 - 3807: -17,1 - 3809: -24,0 - 3810: -22,1 - 3811: -29,2 - 3812: -31,2 - 3813: -34,2 - 3814: -38,1 - 3815: -39,2 - 3816: -42,2 - 3817: -45,1 - 3818: -30,7 - 3819: -30,9 - 3820: -31,9 - 3821: -31,9 - 3822: -33,17 - 3823: -39,17 - 3824: -40,16 - 3825: -42,16 - 3826: -29,17 - 3827: -27,14 - 3828: -26,13 - 3829: -26,12 - 3830: -26,10 - 3832: -26,8 - 3833: -24,10 - 3834: -23,8 - 3835: -18,9 - 3836: -17,7 - 3837: -16,6 - 3838: -16,9 - 3839: -16,12 - 3840: -17,13 - 3841: -16,15 - 3842: -16,17 - 3843: -17,20 - 3844: -16,22 - 3845: -17,25 - 3846: -18,28 - 3847: -21,27 - 3848: -25,28 - 3851: -39,29 - 3852: -43,28 - 3853: -48,25 - 3854: -49,27 - 3855: -47,30 - 3856: -49,32 - 3857: -54,25 - 3858: -55,26 - 3859: -57,28 - 3860: -54,32 - 3861: -52,32 - 3862: -52,36 - 3863: -51,37 - 3864: -48,41 - 3865: -49,41 - 3866: -49,43 - 3867: -48,42 - 3868: -49,41 - 3869: -49,43 - 3870: -47,41 - 3871: -47,40 - 3872: -48,42 - 3873: -49,45 - 3874: -50,46 - 3875: -52,46 - 3876: -49,45 - 3877: -46,46 - 3878: -45,46 - 3879: -43,39 - 3880: -42,41 - 3881: -42,39 - 3882: -11,23 - 3883: -10,24 - 3884: -10,27 - 3885: -9,28 - 3886: -9,28 - 3887: -9,28 - 3888: -7,20 - 3889: -7,24 - 3890: -7,24 - 3891: -8,23 - 3892: -8,22 - 3893: -7,20 - 3894: -7,19 - 3895: -8,17 - 3896: -8,17 - 3897: -9,17 - 3898: -10,17 - 3899: -12,16 - 3900: -20,16 - 3901: -21,17 - 3902: -23,17 - 3903: -7,14 - 3904: -7,13 - 3905: -4,19 - 3906: -3,19 - 3907: -4,20 - 3908: -5,21 - 3909: -4,20 - 3910: -4,20 - 3911: -3,15 - 3912: -2,16 - 3913: -2,16 - 4206: -35,27 - 4207: -34,27 - 4208: -32,27 - 4209: -31,28 - 4590: -19,70 - 4591: -18,71 - 4592: -19,71 - 4593: -19,72 - 4594: -19,72 - 4609: 58,-49 - 4610: 58,-50 - 5149: -56,-40 - 5150: -54,-40 - 5151: -54,-37 - 5152: -53,-36 - 5153: -53,-35 - 5154: -56,-36 - 5155: -58,-36 - 5156: -59,-34 - 5157: -59,-32 - 5165: -55,-17 - 5166: -54,-17 - 5167: -53,-17 - 5168: -50,-17 - 5171: -48,-16 - 5172: -48,-17 - 5173: -49,-17 - 5174: -41,-13 - 5175: -39,-13 - 5176: -38,-13 - 5177: -35,-13 - 5178: -31,-13 - 5179: -30,-13 - 5180: -28,-13 - 5181: -31,-11 - 5182: -32,-10 - 5183: -32,-10 - 5184: -32,-10 - 5185: -34,-47 - 5186: -40,-51 - 5187: -40,-51 - 5188: -45,-54 - 5189: -38,-49 - 5267: -28,-16 - 5268: -28,-15 - 6415: -10,-48 - 6416: -10,-49 - 6417: -10,-51 - 6418: -10,-50 - 6419: -1,-44 - 6420: 6,-46 - 6421: 7,-43 - 6422: 5,-43 - 6423: 7,-41 - 6425: 3,-35 - 7037: 28,12 - 7038: 29,12 - 7039: 30,10 - 7040: 28,14 - 7041: 27,16 - 7042: 27,17 - 7043: 27,16 - 7073: -33,-60 - 7074: -35,-59 - 7075: -37,-58 - 7076: -35,-57 - 7077: -30,-58 - 7078: -29,-59 - 7079: -28,-60 - 7080: -29,-57 - 7695: 1,-38 - 7696: -2,-36 - 7697: 2,-33 - 8159: 55,-2 - 8160: 56,-3 - 8543: 31,22 - 8544: 31,23 - 8545: 31,24 - 8546: 31,23 - 8547: 32,24 - 8548: 32,22 - 8549: 33,23 - 8550: 32,24 - 8551: 33,24 - 8552: 34,22 - 8553: 35,23 - 8610: 57,60 - 8611: 55,61 - 8612: 57,63 - 8613: 55,64 - 8645: -57,-34 - - node: - cleanable: True - zIndex: 1 - color: '#FFFFFFFF' - id: DirtLight - decals: - 1451: -8,-24 - 1452: -9,-24 - 1453: -9,-25 - 1454: -9,-23 - 1455: -8,-23 - 1456: -7,-23 - 1457: -7,-24 - 1642: 41,24 - 1643: 41,25 - 1644: 40,23 - 1645: 40,22 - 1646: 38,22 - 1647: 38,23 - 1648: 39,23 - 1649: 35,22 - 1650: 40,24 - 1651: 40,23 - 1652: 38,25 - 1653: 45,25 - 1654: 46,24 - 1655: 49,24 - 1656: 52,22 - 1657: 53,23 - 1658: 52,24 - 1659: 54,24 - 1660: 54,23 - 1661: 53,23 - 1662: 51,23 - 1663: 51,25 - 1664: 51,26 - 1665: 48,26 - 1666: 48,26 - 1667: 47,27 - 1668: 48,27 - 1669: 48,27 - 1670: 41,23 - 1671: 47,16 - 1672: 47,16 - 1673: 44,18 - 1674: 45,19 - 1675: 46,21 - 1676: 45,20 - 1677: 43,19 - 1678: 44,18 - 6989: 35,27 - 6990: 34,31 - 6991: 34,37 - 6992: 33,23 - 6993: 33,21 - 6994: 33,21 - 6995: 33,21 - 6996: 32,18 - 6997: 32,16 - 6998: 36,12 - 6999: 36,7 - 7000: 40,8 - 7001: 42,4 - 7002: 42,2 - 7004: 44,-5 - 7005: 43,-5 - 7006: 42,-6 - 7007: 42,-8 - 7008: 43,-9 - 7009: 42,-9 - 7010: 44,-11 - 7011: 42,-14 - 7012: 43,-17 - 7013: 44,-17 - 7014: 43,-19 - 7015: 43,-21 - 7016: 44,-23 - 7017: 43,-23 - 7018: 44,-27 - 7019: 43,-28 - 7020: 42,-27 - 7021: 45,-30 - 7022: 43,-32 - 7023: 41,-30 - 7024: 46,-28 - 7025: 45,-33 - 7026: 41,-33 - 7027: 40,-29 - 7028: 37,-27 - 7029: 37,-23 - 7085: -34,-59 - 7086: -30,-59 - 7130: 1,-66 - 7131: -3,-69 - 7132: -5,-69 - 7467: -65,-28 - 7476: -65,-30 - 7477: -65,-28 - 7478: -65,-20 - 7681: 0,-39 - 7682: 1,-40 - 7683: -1,-37 - 7684: 3,-34 - 7685: 2,-34 - 7686: 3,-35 - 7687: -1,-34 - 7688: 0,-35 - 7689: -1,-33 - 7690: -2,-34 - 7691: -4,-36 - 7692: -6,-34 - 7693: -4,-40 - 7694: -6,-38 - 8065: 16,-11 - 8066: 11,-9 - 8067: 15,-6 - 8068: 16,-1 - 8069: 18,-5 - 8070: 14,-9 - 8071: 11,-6 - 8072: 19,-5 - 8073: 18,2 - 8074: 15,-1 - 8157: 58,-4 - 8158: 56,-2 - 8554: 29.134378,23.105629 - 8555: 29.850428,21.84541 - 8556: 28.655983,21.215342 - 8557: 28.473885,22.515358 - 8558: 28.461538,23.463549 - 8559: 29.65907,23.973162 - 8560: 29.498575,24.495665 - 8561: 30.483143,22.477749 - 8562: 29.489317,22.508635 - 8563: 29.612774,23.37652 - 8614: 58,61 - 8615: 58,60 - 8617: 52,62 - 8618: 49,62 - 8620: 50,63 - 8622: 48,63 - 8623: 49,62 - 8624: 58,64 - 8625: 49,59 - 8628: 56,62 - 8629: 56,62 - 8630: 56,62 - 8631: 54,60 - 8632: 54,60 - 8853: 62,-3 - 8854: 62,-3 - 8855: 61,-3 - 8857: 58,-3 - 8858: 54,2 - 8896: -20,-31 - 8897: -22,-30 - 8898: -20,-29 - 8941: 51,-4 - 8942: 48,-4 - 8943: 46,-2 - 8944: 48,0 - 8945: 47,1 - 8946: 49,1 - 8947: 49,1 - 8948: 49,1 - 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 - 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 - 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 - 9622: 5,-60 - 9623: 5,-60 - 9624: 6,-62 - 9625: 6,-62 - 9626: 6,-62 - 9627: 6,-62 - 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 - 10237: 3,69 - 10238: 5,69 - 10239: 5,69 - 10240: 5,68 - - node: - cleanable: True - zIndex: 1 - color: '#FFFFFFFF' - id: DirtMedium - decals: - 957: 10,-35 - 958: 9,-35 - 959: 7,-37 - 1462: -11,-24 - 1463: -12,-25 - 1625: 39,22 - 1626: 38,23 - 1627: 37,22 - 1628: 37,21 - 1629: 38,22 - 1630: 37,23 - 1631: 37,25 - 1632: 39,25 - 1633: 40,24 - 1634: 41,24 - 1635: 40,23 - 1636: 42,25 - 1637: 44,25 - 1638: 44,24 - 1639: 46,25 - 1640: 48,25 - 1641: 49,24 - 6983: 33,10 - 6984: 32,15 - 6985: 33,17 - 6986: 33,19 - 6987: 32,23 - 6988: 33,25 - 7081: -32,-59 - 7082: -30,-60 - 7083: -29,-60 - 7084: -31,-57 - 7121: -5,-67 - 7122: -5,-66 - 7123: -2,-66 - 7124: -1,-66 - 7125: -8,-69 - 7126: -2,-69 - 7127: -3,-68 - 7128: -5,-69 - 7129: 0,-66 - 7196: 4,-61 - 8161: 42,-8 - 8162: 42,1 - 8163: 43,0 - 8164: 42,4 - 8165: 42,4 - 8166: 42,4 - 8167: 42,4 - 8324: 40,-1 - 8325: 38,-3 - 8326: 34,-2 - 8327: 40,-2 - 8328: 40,-1 - 8330: 36,-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 - 9963: -5,22 - 9964: -4,21 - 9965: -2,17 - 9966: -2,17 - 9967: -3,17 - 9968: -4,15 - 9969: -1,15 - 9970: -1,15 - 9971: -4,17 - 9972: -4,17 - 9973: -13,17 - 9974: -13,17 - 9975: -12,10 - 9976: -9,11 - 9977: -8,9 - 9978: -3,10 - 9979: -4,10 - 9980: -5,10 - 9981: -5,11 - 9982: -4,11 - 9983: -3,11 - 10232: 2,68 - 10233: 3,69 - 10234: 5,69 - 10235: 6,69 - 10236: 5,69 - - node: - cleanable: True - color: '#B02E26FF' - id: Donk - decals: - 7143: 0.9831021,-65.99472 - - node: - color: '#FFFFFFFF' - id: FlowersBROne - decals: - 7265: 27.759794,-33.944973 - - node: - color: '#FFFFFFFF' - id: FlowersBRThree - decals: - 7264: 26.104586,-35.788994 - - node: - color: '#FFFFFFFF' - id: FlowersBRTwo - decals: - 9634: 3.844667,-59.998734 - - node: - cleanable: True - color: '#8600003C' - id: Flowersbr1 - decals: - 4355: -44.55099,-50.423935 - - node: - cleanable: True - color: '#8600003C' - id: Flowersbr2 - decals: - 4356: -41.98849,-47.90831 - - node: - color: '#FFFFFFFF' - id: Flowerspv1 - decals: - 7266: 29.790075,-31.994879 - - node: - color: '#FFFFFFFF' - id: Flowerspv3 - decals: - 9635: 4.798371,-61.027225 - - node: - color: '#FFFFFFFF' - id: Flowersy1 - decals: - 7263: 29.953148,-33.69203 - - node: - color: '#FFFFFFFF' - id: Flowersy2 - decals: - 7260: 25.158693,-31.321817 - - node: - color: '#FFFFFFFF' - id: Flowersy3 - decals: - 7258: 26.24314,-34.01442 - 7259: 28.224497,-32.072487 - 9633: 6.0730624,-60.884834 - - node: - cleanable: True - color: '#8600003C' - id: Flowersy4 - decals: - 4354: -45.285366,-47.986435 - - node: - color: '#FFFFFFFF' - id: Flowersy4 - decals: - 7261: 26.993282,-32.904743 - 7262: 27.84127,-35.829796 - - node: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - decals: - 5611: -51,28 - 5612: -51,29 - 5760: 39,-5 - 5958: -54,38 - 7565: -58,28 - 7566: -58,29 - - node: - color: '#43990996' - id: FullTileOverlayGreyscale - decals: - 593: -11,-61 - - node: - color: '#52B4E956' - id: FullTileOverlayGreyscale - decals: - 5094: 7,42 - 5095: 8,42 - - node: - color: '#52B4E996' - id: FullTileOverlayGreyscale - decals: - 272: -15,-45 - 273: -15,-46 - 274: -5,-46 - 275: -5,-45 - 276: -4,-45 - 277: -3,-45 - 278: -2,-45 - 279: -1,-45 - 280: 0,-45 - 281: 1,-45 - 1786: 29,40 - 1787: 30,40 - 1804: 31,40 - 2402: -3,58 - 2403: -4,58 - 2404: -5,58 - 2405: -5,59 - 2406: -4,59 - 2407: -3,59 - 2408: -3,60 - 2409: -4,60 - 2410: -5,60 - 2411: -5,61 - 2412: -4,61 - 2413: -6,61 - 2414: -5,62 - 2415: -4,62 - 2416: -3,62 - 2417: -3,61 - 2418: -3,63 - 2419: -4,63 - 2420: -5,63 - 2421: -5,64 - 2422: -4,64 - 2423: -3,64 - 2424: -3,65 - 2425: -4,65 - 2426: -5,65 - 2976: -17,-41 - 2977: -16,-41 - 5763: 35,-5 - 6196: 6,-39 - 6197: 3,-39 - 8869: -19,-40 - 8870: -19,-39 - 8871: -22,-38 - 8872: -21,-38 - 8873: -23,-38 - 8881: -22,-32 - - node: - color: '#52B4E9FF' - id: FullTileOverlayGreyscale - decals: - 146: -49,-26 - 147: -49,-22 - 148: -47,-23 - - node: - color: '#79150096' - id: FullTileOverlayGreyscale - decals: - 5214: -50,-15 - 5215: -51,-15 - - node: - color: '#8BC9DAFF' - id: FullTileOverlayGreyscale - decals: - 962: -4,-2 - 963: -4,-1 - 964: 2,-1 - 965: 2,-2 - 966: 2,-3 - - node: - zIndex: 1 - color: '#8BC9DAFF' - id: FullTileOverlayGreyscale - decals: - 6701: -4,-3 - - node: - color: '#9FED5896' - id: FullTileOverlayGreyscale - decals: - 159: 3,-13 - 160: 3,-12 - 161: 3,-11 - 162: 2,-13 - 163: -5,-11 - 164: -5,-12 - 165: -5,-13 - 166: -4,-13 - 2427: -16,58 - 2428: -15,58 - 2429: -17,58 - 2430: -17,59 - 2431: -16,59 - 2432: -15,59 - 2433: -15,60 - 2434: -16,60 - 2435: -17,60 - 2436: -17,61 - 2437: -16,61 - 2438: -15,61 - 2439: -15,62 - 2440: -16,62 - 2441: -17,62 - 2442: -17,63 - 2443: -16,63 - 2444: -15,63 - 2445: -15,64 - 2446: -16,64 - 2447: -17,64 - 2448: -17,65 - 2449: -16,65 - 2450: -15,65 - 2453: -14,63 - 2866: 52,47 - 2867: 52,48 - 5766: 36,-8 - 8863: 52,46 - 8864: 53,46 - 8865: 53,54 - - node: - color: '#A4610696' - id: FullTileOverlayGreyscale - decals: - 1148: 52,-24 - 1149: 53,-24 - 1150: 54,-24 - 1151: 54,-23 - 1152: 53,-23 - 1153: 52,-23 - 1154: 49,-23 - 1335: 48,-21 - 5765: 33,-5 - 9129: 48,-31 - 9130: 49,-31 - 9289: 54,-40 - - node: - color: '#D381C996' - id: FullTileOverlayGreyscale - decals: - 64: -29,-32 - 65: -29,-31 - 66: -29,-30 - 67: -29,-29 - 68: -29,-28 - 69: -22,-25 - 70: -21,-25 - 71: -20,-25 - 637: -14,-20 - 3942: -19,-22 - 3943: -19,-21 - 3944: -19,-20 - 5762: 36,-5 - 9153: 47,60 - 9154: 48,60 - - node: - zIndex: 1 - color: '#D381C996' - id: FullTileOverlayGreyscale - decals: - 209: -43,-34 - 210: -44,-34 - 211: -45,-34 - 212: -44,-33 - 213: -45,-33 - 214: -43,-33 - - node: - color: '#D4D4D428' - id: FullTileOverlayGreyscale - decals: - 5854: -5,46 - 5888: 25,28 - - node: - color: '#D4D4D496' - id: FullTileOverlayGreyscale - decals: - 5764: 34,-5 - - node: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - decals: - 568: -6,-49 - 569: -6,-48 - 2772: 20,57 - 2773: 20,58 - 5389: -47,52 - 5515: -30,62 - 5761: 38,-5 - 8866: -20,39 - 8867: -38,52 - 8868: -38,53 - - node: - color: '#DE3A3AFF' - id: FullTileOverlayGreyscale - decals: - 143: -49,-28 - 144: -46,-23 - 145: -49,-24 - - node: - color: '#EFB34196' - id: FullTileOverlayGreyscale - decals: - 680: 33,-21 - 681: 34,-21 - 682: 34,-20 - 683: 33,-20 - 684: 33,-19 - 685: 34,-19 - 686: 34,-18 - 687: 33,-18 - 688: 35,-18 - 689: 35,-19 - 690: 35,-20 - 691: 35,-21 - 692: 30,-19 - 693: 31,-19 - 703: 34,-22 - 847: 29,-14 - 848: 29,-13 - 849: 29,-12 - 1360: 12,-25 - 1361: 13,-25 - 2825: 45,46 - 5767: 35,-8 - 8859: 49,47 - 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' - id: Gib - decals: - 8752: -4,21 - - node: - color: '#FFFFFFFF' - id: Grassa2 - decals: - 7272: 14.3041115,-31.1463 - 7273: 15.731014,-33.390133 - - node: - color: '#FFFFFFFF' - id: Grassa4 - decals: - 2155: -1.7855573,23.949152 - - node: - color: '#FFFFFFFF' - id: Grassa5 - decals: - 7274: 15.771784,-32.003036 - - node: - color: '#FFFFFFFF' - id: Grassb4 - decals: - 6047: 0.3860445,30.988146 - 7270: 12.037374,-31.96224 - 7271: 17.753141,-30.893362 - - node: - color: '#FFFFFFFF' - id: Grassb5 - decals: - 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 - decals: - 3970: 66.605995,44.07983 - 3971: 70.258766,42.40622 - 3972: 71.95698,44.31594 - 3973: 75.59439,45.89838 - 3974: 74.61523,43.194633 - 3975: 73.00411,42.277966 - 3976: 76.44856,51.970413 - 3977: 73.94856,51.102356 - 3978: 73.290405,54.02997 - 3979: 66.186264,52.821636 - 3980: 62.615807,52.134136 - 3981: 60.365807,53.009136 - 3982: 62.911392,56.39766 - 3983: 55.994537,56.078217 - 3984: 55.786022,52.16155 - 4083: 70.61969,54.492535 - 4084: 69.453026,53.082813 - 4085: 72.24678,52.499477 - 4086: 71.920395,53.749477 - 6340: -11.384821,20.822517 - 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 - decals: - 2159: -0.74790025,24.936602 - 3985: 66.56664,53.61988 - 3986: 69.63294,54.77266 - 3987: 70.506165,53.392487 - 3988: 75.203316,52.401848 - 3989: 75.65206,44.791546 - 3991: 73.27011,43.4096 - 3992: 67.67875,43.42349 - 3993: 61.113495,52.366886 - 3994: 60.532585,57.420284 - 3995: 54.65064,52.586952 - 4079: 68.65254,42.701946 - 4080: 69.952675,44.10507 - 4081: 74.31514,52.17988 - 6042: 0.5364504,30.177677 - 6043: 1.2951236,30.04314 - 6044: 0.95249677,30.984898 - 6045: -3.5628335,30.935976 - 6046: -3.489414,24.993238 - 6338: -12.118657,19.028696 - 6339: -12.828032,20.153912 - 7525: -8.210987,-57.681267 - 7530: -7.139781,-57.569675 - 7532: -7.8412213,-55.090317 - 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 - decals: - 2160: 0.08891964,23.924047 - 2161: -1.6600342,30.827814 - 3996: 68.40015,53.729958 - 3997: 73.47744,52.398594 - 3998: 74.45184,44.579674 - 3999: 71.75756,43.38838 - 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 - decals: - 2162: -3.6349297,30.14162 - 4000: 72.08049,42.478657 - 4001: 69.31717,43.464767 - 4002: 73.30328,44.506435 - 4003: 75.37967,44.03421 - 4004: 76.31546,50.96148 - 4005: 73.95867,54.909767 - 4006: 68.254616,54.3681 - 4007: 61.714466,52.94449 - 4008: 60.363934,56.15657 - 4009: 55.872505,57.57324 - 4082: 74.70531,53.74932 - 7677: -2.7344475,-59.606365 - - node: - color: '#FFFFFFFF' - id: Grasse2 - decals: - 2158: 0.59937954,25.17091 - 4019: 67.023994,43.036346 - 4021: 68.42677,44.008568 - 4022: 73.80874,45.46837 - 4023: 75.475624,51.51059 - 4024: 75.94074,53.167503 - 4025: 69.29197,54.035557 - 4026: 59.915527,57.05167 - 4027: 55.46993,56.871117 - 4028: 55.462982,53.107086 - 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 - decals: - 2156: -0.43827748,30.14999 - 2157: -3.927817,29.91568 - 4010: 54.851673,56.024628 - 4011: 54.560005,56.98296 - 4012: 53.98362,52.028107 - 4013: 60.216366,52.048943 - 4014: 67.391304,53.078842 - 4015: 73.14992,51.7334 - 4016: 74.73748,45.363224 - 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 - decals: - 4315: -50,34 - 4316: -49,34 - 4317: -48,34 - 4318: -47,34 - 4329: -55,34 - 4330: -54,34 - 4331: -53,34 - 4687: -38,23 - 4688: -37,23 - 4689: -36,23 - 4690: -35,23 - 4691: -34,23 - 4692: -33,23 - 5734: -1,-8 - 5742: -2,-10 - 5743: -1,-10 - 5744: 0,-10 - 5955: -42,30 - 5956: -44,30 - 7564: -57,33 - 7578: -44,25 - 7579: -43,25 - 7580: -42,25 - - node: - color: '#3EB38896' - id: HalfTileOverlayGreyscale - decals: - 8037: 19,7 - 8038: 20,7 - 8039: 21,7 - 8040: 22,7 - 8251: 30,6 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale - decals: - 260: -17,-54 - 382: -23,-42 - 383: -22,-42 - 384: -21,-42 - 385: -17,-42 - 386: -16,-42 - 387: -15,-42 - 388: -14,-42 - 389: -13,-42 - 390: -12,-42 - 391: -11,-42 - 392: -10,-42 - 393: -9,-42 - 394: -8,-42 - 395: -7,-42 - 396: -6,-42 - 397: -5,-42 - 398: -3,-42 - 399: -2,-42 - 400: -1,-42 - 401: 0,-42 - 420: -4,-42 - 422: -3,-46 - 423: -2,-46 - 424: -1,-46 - 425: 0,-46 - 432: -21,-50 - 433: -22,-50 - 434: -23,-50 - 598: -14,-55 - 599: -13,-55 - 600: -12,-55 - 601: -11,-55 - 1796: 27,37 - 1797: 29,39 - 1798: 30,39 - 2472: -9,49 - 2473: -8,49 - 2474: -7,49 - 2576: 7,41 - 2577: 8,41 - 2962: -16,-33 - 2963: -15,-33 - 2964: -12,-34 - 2965: -13,-34 - 6161: 4,-39 - 6162: 5,-39 - 7646: -6,-38 - 7647: -5,-38 - 7648: -4,-38 - 7649: -3,-38 - 7650: -6,-33 - 7651: -5,-33 - 7652: -4,-33 - 7669: -1,-33 - 8878: -21,-28 - 8879: -22,-28 - - node: - color: '#79150096' - id: HalfTileOverlayGreyscale - decals: - 5217: -50,-13 - - node: - color: '#8C347F96' - id: HalfTileOverlayGreyscale - decals: - 1534: 45,21 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale - decals: - 2454: -12,66 - 2873: 57,45 - 2875: 55,45 - 2876: 54,45 - 2877: 53,45 - 2878: 52,45 - 2896: 55,50 - 2897: 56,50 - 2898: 57,50 - 2899: 58,50 - 2900: 59,50 - 2910: 74,50 - 2911: 75,50 - 2915: 65,50 - 2916: 64,50 - 2917: 63,50 - 2918: 62,50 - 2919: 61,50 - 2927: 70,52 - 2928: 69,52 - 2929: 68,52 - 4234: 34,57 - 4235: 35,57 - 4236: 36,57 - 4237: 37,57 - 4238: 38,57 - 4239: 39,57 - 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 - decals: - 1131: 48,-27 - 1132: 51,-25 - 1133: 52,-25 - 1134: 53,-25 - 1170: 54,-11 - 1321: 76,-31 - 1322: 77,-31 - 1323: 78,-31 - 1324: 79,-31 - 1325: 80,-31 - 1326: 81,-31 - 5296: 47,-14 - 5297: 49,-14 - 5298: 48,-14 - 5307: 50,-16 - 5319: 49,-19 - 5320: 50,-19 - 5321: 51,-19 - 5336: 55,-11 - 5337: 56,-11 - 5338: 57,-11 - 5339: 58,-11 - 6241: 57,-19 - 6242: 56,-19 - 6243: 55,-19 - 6259: 58,-19 - 6260: 60,-19 - 6261: 61,-19 - 6262: 62,-19 - 6275: 62,-24 - 9285: 59,-40 - 9286: 58,-40 - 9287: 57,-40 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale - decals: - 77: -25,-24 - 78: -26,-24 - 79: -27,-24 - 80: -28,-24 - 81: -29,-24 - 82: -30,-24 - 83: -31,-24 - 84: -32,-24 - 85: -33,-24 - 86: -35,-27 - 87: -36,-27 - 88: -37,-27 - 89: -36,-35 - 90: -35,-35 - 91: -34,-35 - 92: -33,-35 - 93: -32,-35 - 205: -42,-33 - 206: -41,-33 - 207: -47,-33 - 208: -46,-33 - 228: -41,-29 - 229: -40,-29 - 622: -14,-27 - 623: -13,-27 - 624: -12,-27 - 625: -11,-27 - 626: -10,-27 - 627: -9,-27 - 628: -8,-27 - 629: -6,-26 - 630: -5,-26 - 631: -4,-26 - 632: -3,-26 - 633: -2,-26 - 3939: -22,-20 - 3940: -21,-20 - 3941: -20,-20 - 9146: 49,56 - 9147: 47,56 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale - decals: - 1868: -22,11 - 1869: -23,11 - 1870: -24,11 - 1871: -25,11 - 1872: -19,11 - 1886: -21,11 - 1887: -20,11 - 1888: -24,5 - 1889: -23,5 - 1890: -22,5 - 1891: -21,5 - 1892: -20,5 - 5846: -12,45 - 5847: -13,45 - 5848: -14,45 - 5849: -6,45 - 5850: -5,45 - 5864: 14,45 - 5865: 13,45 - 5866: 11,45 - 5867: 12,45 - 5868: 10,45 - 5869: 9,45 - 5870: 8,45 - 5871: 6,45 - 5872: 7,45 - 5873: 5,45 - 5929: 44,56 - 5930: 45,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 - decals: - 5021: 2,45 - 5022: 3,45 - 5041: -10,45 - 5042: -9,45 - 5043: -8,45 - 5069: -24,11 - 5070: -23,11 - 5071: -22,11 - 5072: -21,11 - 5073: -20,11 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 2269: -39,42 - 2270: -38,42 - 2271: -37,42 - 2272: -35,42 - 2273: -36,42 - 2274: -33,41 - 2275: -30,41 - 2276: -29,41 - 2277: -28,41 - 2278: -22,41 - 2279: -23,41 - 2280: -24,41 - 2281: -25,41 - 2282: -26,41 - 2283: -31,60 - 2284: -32,60 - 2285: -33,60 - 2778: 22,59 - 4220: -31,31 - 5363: -43,53 - 5364: -44,53 - 5365: -46,52 - 5366: -40,56 - 5512: -27,61 - 5525: -30,70 - 5526: -29,70 - 5528: -27,70 - 5532: -28,70 - 5542: -30,65 - 5543: -29,65 - 5544: -28,65 - 5545: -27,65 - 5584: -39,60 - 5592: -36,60 - 5593: -35,60 - 6371: -10,-46 - 6372: -9,-46 - 6373: -8,-46 - 6375: -10,-52 - 6376: -9,-52 - 6431: -13,-50 - 6455: -23,29 - 6456: -24,29 - 6457: -28,29 - 6458: -29,29 - 7581: -29,48 - 7582: -28,48 - 7583: -27,48 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale - decals: - 696: 31,-20 - 704: 34,-23 - 705: 33,-23 - 718: 25,-26 - 719: 26,-26 - 721: 29,-26 - 722: 32,-26 - 725: 35,-26 - 726: 36,-26 - 727: 37,-26 - 728: 38,-26 - 760: 15,-26 - 761: 16,-26 - 762: 17,-26 - 763: 18,-26 - 776: 11,-20 - 777: 12,-20 - 778: 13,-20 - 858: 26,-21 - 1364: 32,-14 - 1393: -24,-3 - 1394: -23,-3 - 2786: 45,53 - 2787: 46,53 - 2788: 47,53 - 2789: 49,45 - 2790: 48,45 - 2791: 47,45 - 2792: 46,45 - 2794: 44,45 - 2795: 43,45 - 2796: 39,43 - 2797: 38,43 - 2798: 37,43 - 2799: 36,43 - 2802: 34,43 - 2804: 29,43 - 2805: 30,43 - 2808: 33,43 - 2811: 34,47 - 4724: 35,43 - 4729: -13,-22 - 4730: -12,-22 - 4731: -11,-22 - 5048: 13,-26 - 5049: 12,-26 - 5050: 11,-26 - 5051: 10,-26 - 5052: 9,-26 - 5053: 8,-26 - 5054: 7,-26 - 5055: 6,-26 - 5056: 2,-26 - 5057: 3,-26 - 5058: 4,-26 - 5059: 5,-26 - 5276: 31,-26 - 5277: 30,-26 - 6622: 17,-16 - 6623: 18,-16 - 6629: 27,-26 - 7863: 53,2 - 7865: 57,0 - 7866: 56,0 - 7929: 56,-4 - 8220: 35,-2 - 8221: 36,-2 - 8222: 37,-2 - 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' - id: HalfTileOverlayGreyscale - decals: - 8469: 33,-14 - - node: - color: '#FA750096' - id: HalfTileOverlayGreyscale - decals: - 184: -35,-42 - 185: -34,-42 - 186: -33,-42 - 187: -32,-42 - 188: -30,-42 - 189: -29,-42 - 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 - decals: - 4334: -53,24 - 4335: -54,24 - 4336: -55,24 - 4337: -56,24 - 4338: -57,24 - 5625: -53,16 - 5626: -52,16 - 5627: -51,16 - 5731: -1,-6 - 5746: -1,-4 - 5952: -44,27 - 5953: -43,27 - 5954: -42,27 - 6444: -30,25 - 6445: -29,25 - 6447: -24,26 - 6448: -23,26 - 6449: -21,26 - 6450: -20,26 - - node: - color: '#43990996' - id: HalfTileOverlayGreyscale180 - decals: - 583: -11,-60 - - node: - color: '#52B4E956' - id: HalfTileOverlayGreyscale180 - decals: - 5092: 7,43 - 5093: 8,43 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 379: -23,-48 - 380: -22,-48 - 381: -21,-48 - 405: -15,-44 - 406: -14,-44 - 407: -13,-44 - 408: -12,-44 - 409: -11,-44 - 410: -10,-44 - 411: -9,-44 - 412: -8,-44 - 413: -7,-44 - 414: -6,-44 - 415: -5,-44 - 416: -4,-44 - 417: -3,-44 - 418: -1,-44 - 419: 0,-44 - 421: -2,-44 - 427: 0,-48 - 428: -1,-48 - 429: -2,-48 - 430: -3,-48 - 431: -17,-52 - 437: -23,-52 - 438: -22,-52 - 594: -14,-57 - 595: -13,-57 - 596: -12,-57 - 597: -11,-57 - 655: -16,-31 - 656: -15,-31 - 657: -13,-29 - 658: -12,-29 - 659: -11,-29 - 660: -9,-29 - 661: -8,-29 - 662: -7,-29 - 663: -6,-29 - 664: -5,-29 - 665: -4,-29 - 666: -3,-29 - 667: -2,-29 - 1791: 27,35 - 1792: 28,35 - 1793: 29,35 - 1794: 30,35 - 2370: -48,54 - 2400: -50,24 - 2966: -12,-36 - 2967: -13,-36 - 2968: -17,-40 - 2969: -16,-40 - 4725: -17,-31 - 7642: -5,-40 - 7643: -4,-40 - 7644: -3,-40 - 7645: -6,-40 - 7653: -6,-36 - 7654: -5,-36 - 7655: -4,-36 - - node: - color: '#8C347F96' - id: HalfTileOverlayGreyscale180 - decals: - 604: 7,-53 - 1544: 44,16 - 1545: 45,16 - 1546: 46,16 - - node: - color: '#8D1C9996' - id: HalfTileOverlayGreyscale180 - decals: - 1108: 55,-38 - 1113: 58,-33 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale180 - decals: - 167: -3,-13 - 168: -2,-13 - 169: 0,-13 - 170: 1,-13 - 2455: -12,58 - 2861: 59,47 - 2862: 58,47 - 2863: 57,47 - 2901: 61,47 - 2902: 62,47 - 2903: 63,47 - 2904: 64,47 - 2905: 65,47 - 2906: 66,47 - 2907: 74,47 - 2908: 75,47 - 2909: 76,47 - 2924: 68,45 - 2925: 69,45 - 2926: 70,45 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - decals: - 1121: 56,-38 - 1122: 59,-33 - 1139: 50,-30 - 1140: 49,-30 - 1141: 48,-30 - 1158: 52,-22 - 1159: 53,-22 - 1179: 56,-25 - 1180: 57,-25 - 1315: 76,-33 - 1316: 77,-33 - 1317: 78,-33 - 1318: 79,-33 - 1319: 80,-33 - 1320: 81,-33 - 5288: 56,-17 - 5289: 57,-17 - 5317: 50,-15 - 5318: 51,-15 - 5326: 49,-15 - 5329: 50,-18 - 5501: 55,-17 - 6248: 54,-22 - 6251: 55,-22 - 6265: 60,-22 - 6267: 61,-22 - 6268: 62,-22 - 6281: 62,-27 - 6796: 59,-22 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale180 - decals: - 72: -29,-26 - 73: -28,-26 - 76: -25,-26 - 94: -36,-29 - 95: -35,-29 - 96: -34,-29 - 97: -33,-29 - 98: -32,-29 - 99: -33,-36 - 100: -34,-36 - 101: -35,-36 - 102: -36,-36 - 103: -37,-36 - 104: -38,-36 - 222: -44,-40 - 223: -43,-40 - 224: -42,-40 - 225: -41,-40 - 226: -41,-31 - 227: -40,-31 - 230: -47,-31 - 231: -46,-31 - 232: -45,-31 - 233: -44,-31 - 3937: -21,-22 - 3938: -20,-22 - 3945: -33,-22 - 3947: -31,-22 - 3948: -30,-22 - 4514: -32,-22 - 4516: -26,-32 - 5602: -32,-40 - 5603: -31,-40 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale180 - decals: - 1873: -24,13 - 1874: -23,13 - 1875: -22,13 - 1876: -21,13 - 1877: -20,13 - 1893: -25,7 - 1894: -24,7 - 1895: -23,7 - 1896: -22,7 - 1897: -21,7 - 1898: -20,7 - 1899: -19,7 - 5821: -19,26 - 5822: -20,26 - 5823: -21,26 - 5838: -12,43 - 5839: -11,43 - 5840: -10,43 - 5841: -9,43 - 5842: -8,43 - 5843: -6,43 - 5844: -5,43 - 5855: 5,43 - 5856: 4,43 - 5857: 2,43 - 5858: 1,43 - 5859: 0,43 - 5863: 10,43 - 5906: 43,41 - 5907: 42,41 - 5908: 41,41 - 5909: 39,41 - 5910: 40,41 - 5911: 38,41 - 5912: 48,43 - 5913: 47,43 - 5914: 44,43 - 5915: 45,43 - 5916: 46,43 - 5917: 57,44 - 5918: 56,44 - 5919: 55,44 - 5920: 54,44 - 5921: 53,44 - 5922: 52,44 - 5923: 51,44 - 5942: -23,26 - 5943: -24,26 - 5944: -25,26 - 5947: -29,25 - 5948: -30,25 - 5965: 38,-7 - 6332: -14,1 - 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 - decals: - 5038: 13,40 - 5039: 12,40 - 5074: -24,7 - 5075: -23,7 - 5076: -22,7 - 5077: -21,7 - 5078: -20,7 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - decals: - 2286: -33,58 - 2287: -32,58 - 2288: -31,58 - 2302: -39,34 - 2303: -38,34 - 2304: -34,35 - 2305: -35,35 - 2306: -36,35 - 2311: -32,38 - 2312: -31,38 - 2313: -30,38 - 2314: -29,38 - 2315: -28,38 - 2316: -26,38 - 2317: -25,38 - 2318: -24,38 - 2319: -23,38 - 2320: -22,38 - 2371: -45,50 - 2372: -44,50 - 2373: -43,50 - 2399: -49,24 - 2783: 22,56 - 5361: -47,50 - 5362: -46,50 - 5374: -40,50 - 5382: -44,55 - 5516: -30,63 - 5517: -29,63 - 5518: -28,63 - 5519: -27,63 - 6382: -10,-47 - 6383: -9,-47 - 6388: -10,-53 - 6389: -9,-53 - 6390: -8,-53 - 7574: -57,33 - 8380: -13,-53 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 173: 2,-6 - 706: 34,-24 - 707: 33,-24 - 708: 32,-24 - 709: 31,-24 - 710: 30,-24 - 735: 31,-29 - 736: 30,-29 - 737: 29,-29 - 738: 27,-29 - 739: 26,-29 - 740: 25,-29 - 741: 24,-29 - 749: 12,-29 - 750: 13,-29 - 751: 11,-29 - 752: 15,-29 - 753: 16,-29 - 754: 17,-29 - 755: 19,-29 - 756: 18,-29 - 783: 10,-24 - 784: 9,-24 - 785: 11,-24 - 786: 12,-24 - 787: 13,-24 - 788: 16,-24 - 789: 17,-24 - 809: 26,-19 - 810: 27,-19 - 811: 17,-18 - 812: 18,-18 - 817: 24,-18 - 859: 26,-24 - 1362: 30,-17 - 1391: -23,-8 - 1392: -22,-8 - 2401: -48,24 - 2785: 44,47 - 6038: 30,45 - 6040: 33,45 - 6041: 34,45 - 6651: -24,-13 - 7823: 48,-2 - 7824: 46,-2 - 7825: 45,-2 - 7826: 44,-2 - 7912: 55,-1 - 8216: 37,-3 - 8217: 36,-3 - 8347: 38,-3 - 8348: 39,-3 - 8788: 2,11 - 8789: 3,11 - 8790: 4,11 - 8791: 5,11 - 8792: 6,11 - 8906: 54,-6 - 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 - decals: - 192: -27,-45 - 195: -31,-45 - 6049: -32,-45 - 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 - decals: - 4210: -40,30 - 4211: -40,31 - 4212: -40,32 - 4213: -40,26 - 4214: -40,27 - 5732: 0,-7 - 6462: -12,23 - 6463: -12,24 - 6464: -12,25 - 7557: -58,26 - 7558: -58,27 - 7560: -58,30 - 7561: -58,31 - 7562: -50,27 - 7563: -50,30 - - node: - color: '#3EB38896' - id: HalfTileOverlayGreyscale270 - decals: - 8024: 8,-12 - 8025: 8,-11 - 8026: 8,-10 - 8248: 29,2 - 8249: 29,3 - 8250: 29,4 - - node: - color: '#43990996' - id: HalfTileOverlayGreyscale270 - decals: - 584: -14,-59 - 585: -14,-60 - 586: -14,-61 - 587: -14,-62 - 588: -14,-63 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 255: -18,-58 - 256: -18,-57 - 257: -18,-56 - 258: -18,-55 - 282: -18,-51 - 283: -18,-50 - 284: -18,-49 - 285: -18,-48 - 286: -18,-47 - 287: -18,-46 - 288: -18,-45 - 289: -18,-44 - 290: -18,-43 - 291: -4,-47 - 367: -24,-51 - 368: -24,-47 - 369: -24,-46 - 370: -24,-45 - 371: -24,-44 - 372: -24,-43 - 1795: 26,36 - 1802: 28,38 - 2475: -6,50 - 2476: -6,51 - 4726: -18,-30 - 6164: 3,-45 - 6165: 3,-44 - 6166: 3,-42 - 6167: 3,-41 - 7670: -1,-38 - 7671: -1,-37 - 7673: -2,-34 - - node: - color: '#8BC9DAFF' - id: HalfTileOverlayGreyscale270 - decals: - 968: -3,-2 - - node: - zIndex: 1 - color: '#8BC9DAFF' - id: HalfTileOverlayGreyscale270 - decals: - 6700: -3,-3 - - node: - color: '#8C347F96' - id: HalfTileOverlayGreyscale270 - decals: - 1535: 43,18 - 1536: 43,17 - 1543: 44,20 - - node: - color: '#8D1C9996' - id: HalfTileOverlayGreyscale270 - decals: - 1104: 56,-31 - 1106: 55,-34 - 1349: 56,-29 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale270 - decals: - 2456: -13,59 - 2457: -13,60 - 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: - 1119: 56,-30 - 1120: 55,-35 - 1142: 49,-26 - 1143: 49,-25 - 1174: 46,-19 - 1333: 46,-20 - 1339: 46,-17 - 1340: 46,-15 - 5295: 50,-13 - 5308: 49,-17 - 5322: 52,-18 - 5323: 52,-16 - 5341: 49,-21 - 5354: 54,-15 - 6247: 56,-24 - 6252: 56,-23 - - node: - zIndex: 1 - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - decals: - 6916: 46,-16 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale270 - decals: - 59: -31,-34 - 60: -31,-33 - 61: -31,-32 - 62: -31,-31 - 63: -31,-30 - 105: -39,-35 - 106: -39,-34 - 107: -38,-32 - 108: -38,-31 - 109: -38,-30 - 110: -38,-29 - 111: -38,-28 - 112: -34,-25 - 113: -34,-26 - 611: -18,-27 - 612: -18,-26 - 613: -18,-25 - 614: -18,-23 - 615: -18,-22 - 616: -18,-21 - 617: -18,-20 - 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 - decals: - 1878: -18,12 - 1879: -18,13 - 1906: -18,-4 - 1907: -18,-3 - 5811: -18,15 - 5812: -18,18 - 5813: -18,19 - 5814: -18,20 - 5815: -18,21 - 5816: -18,22 - 5817: -18,23 - 5818: -18,24 - 5819: -18,25 - 5860: 11,40 - 5861: 11,41 - 5862: 11,42 - 5879: 18,26 - 5880: 18,27 - 5881: 18,28 - 5882: 18,29 - 5883: 18,30 - 5961: 33,-7 - 5962: 33,-6 - 6432: -17,-16 - 6433: -17,-15 - 6434: -17,-14 - 6435: -17,-13 - 6436: -17,-12 - 6437: -17,-11 - 7413: -14,-1 - 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 - decals: - 5060: -12,53 - 5061: -12,54 - 5062: -12,55 - 5063: -12,56 - 7573: -46,27 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - decals: - 509: -13,-47 - 2263: -40,35 - 2264: -40,36 - 2265: -40,37 - 2266: -40,38 - 2267: -40,40 - 2294: -37,48 - 2295: -37,49 - 2296: -37,50 - 2297: -37,51 - 2298: -37,56 - 2299: -37,55 - 2325: -18,34 - 2326: -18,35 - 2327: -18,36 - 2328: -18,37 - 2329: -19,39 - 2331: -18,42 - 2332: -18,43 - 2333: -18,44 - 2779: 21,57 - 2780: 21,58 - 4215: -35,32 - 4216: -35,33 - 4222: -32,30 - 4223: -32,29 - 5385: -45,56 - 5556: -28,59 - 6377: -8,-51 - 6378: -8,-50 - 6379: -8,-49 - 6380: -8,-48 - 6395: -13,-48 - 6430: -14,-51 - 7584: -32,43 - 7585: -32,44 - 7593: -32,50 - 7594: -32,51 - 7595: -32,55 - 7596: -32,56 - 8381: -14,-52 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale270 - decals: - 742: 20,-31 - 743: 20,-32 - 744: 20,-33 - 757: 20,-30 - 779: 8,-20 - 780: 8,-21 - 781: 8,-22 - 782: 8,-23 - 856: 25,-23 - 857: 25,-22 - 1933: -18,-7 - 1934: -18,-6 - 1935: -18,-5 - 2812: 29,46 - 2815: 50,46 - 2816: 50,47 - 2817: 50,48 - 2818: 50,54 - 2819: 50,53 - 2820: 50,52 - 2822: 50,50 - 2823: 50,49 - 2836: 44,50 - 2837: 44,51 - 2838: 44,52 - 2839: 43,48 - 5787: 29,-5 - 5788: 29,-4 - 5789: 29,-3 - 5790: 29,-2 - 5791: 29,-1 - 5792: 29,0 - 6514: 45,4 - 6518: 45,3 - 7832: 42,-7 - 7833: 42,-6 - 7834: 42,-4 - 7836: 42,0 - 7837: 42,1 - 7856: 53,-5 - 7857: 53,-4 - 7870: 52,1 - 7930: 57,-3 - 7950: 57,2 - 7951: 57,3 - 7952: 57,4 - 7953: 57,5 - 7954: 57,6 - 8781: 1,19 - 8782: 1,17 - 8783: 1,18 - 8784: 1,15 - 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 - decals: - 4319: -46,30 - 4320: -46,31 - 4321: -46,26 - 4693: -32,21 - 4694: -32,22 - 5733: -2,-7 - 5748: -11,-7 - 6465: -10,23 - 6466: -10,24 - 6467: -10,25 - 7556: -46,27 - - node: - color: '#3EB38896' - id: HalfTileOverlayGreyscale90 - decals: - 7571: -50,30 - 8252: 31,5 - - node: - color: '#43990996' - id: HalfTileOverlayGreyscale90 - decals: - 578: -13,-63 - 579: -13,-62 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale90 - decals: - 261: -16,-55 - 262: -16,-56 - 263: -16,-57 - 264: -16,-58 - 265: -16,-51 - 266: -16,-50 - 267: -16,-49 - 268: -16,-48 - 269: -16,-47 - 270: -16,-46 - 271: -16,-45 - 373: -20,-43 - 374: -20,-44 - 375: -20,-45 - 376: -20,-46 - 377: -20,-47 - 402: 1,-43 - 426: 1,-47 - 435: -20,-52 - 436: -20,-51 - 668: -14,-30 - 1799: 31,36 - 1800: 31,37 - 1801: 31,38 - 2460: -7,59 - 2461: -7,63 - 2462: -7,64 - 2463: -7,65 - 2477: -10,50 - 2478: -10,51 - 6154: 8,-46 - 6155: 8,-45 - 6156: 8,-44 - 6157: 8,-42 - 6158: 8,-41 - 6159: 8,-40 - 7569: -58,30 - 7662: 1,-39 - 7663: 1,-38 - 7664: 0,-35 - 7666: 3,-34 - 7674: 0,-36 - 8874: -20,-31 - 8875: -20,-30 - 8876: -20,-29 - - node: - color: '#79150096' - id: HalfTileOverlayGreyscale90 - decals: - 5216: -49,-14 - - node: - color: '#8BC9DAFF' - id: HalfTileOverlayGreyscale90 - decals: - 969: 1,-2 - 970: 1,-3 - - node: - color: '#8C347F96' - id: HalfTileOverlayGreyscale90 - decals: - 603: 8,-52 - 1547: 46,19 - 1548: 46,20 - 1549: 46,18 - - node: - color: '#8D1C9996' - id: HalfTileOverlayGreyscale90 - decals: - 1110: 61,-30 - 1114: 57,-34 - 1115: 57,-36 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale90 - decals: - 2879: 51,46 - 2880: 51,47 - 2881: 51,48 - 2882: 51,49 - 2883: 51,50 - 2886: 51,52 - 2887: 51,53 - 2888: 52,55 - 2889: 52,59 - 2890: 52,58 - 2891: 52,57 - 2892: 52,56 - 2932: 77,48 - 2933: 77,49 - 4723: 51,51 - 7570: -58,31 - 8369: 72,48 - 8370: 72,49 - 9101: 38,-31 - 9102: 38,-32 - 9103: 38,-33 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - decals: - 1116: 57,-35 - 1117: 60,-32 - 1135: 54,-26 - 1136: 54,-27 - 1137: 54,-28 - 1138: 54,-29 - 1341: 63,-16 - 1342: 63,-15 - 1343: 63,-14 - 5313: 48,-18 - 5314: 48,-17 - 5315: 48,-16 - 5334: 58,-15 - 5352: 53,-17 - 5353: 53,-15 - 6235: 58,-24 - 6236: 58,-23 - 6270: 63,-21 - 6271: 63,-20 - 6278: 63,-26 - 6279: 63,-25 - 7568: -58,26 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale90 - decals: - 43: -30,-36 - 44: -30,-35 - 45: -30,-34 - 46: -30,-33 - 47: -30,-32 - 48: -30,-31 - 49: -30,-30 - 50: -30,-29 - 51: -30,-28 - 52: -30,-27 - 53: -24,-25 - 54: -37,-30 - 55: -37,-31 - 56: -37,-32 - 57: -37,-33 - 58: -37,-34 - 235: -43,-30 - 236: -43,-29 - 237: -43,-28 - 238: -43,-27 - 239: -43,-26 - 240: -43,-25 - 241: -49,-39 - 242: -49,-40 - 243: -49,-41 - 244: -49,-38 - 618: -15,-21 - 619: -15,-22 - 620: -15,-23 - 621: -15,-26 - 638: -15,-20 - 5599: -30,-38 - 5600: -30,-39 - 7567: -58,27 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale90 - decals: - 1880: -26,12 - 1881: -26,13 - 1882: -26,14 - 1902: -26,6 - 1903: -26,5 - 1904: -26,4 - 1920: -15,-9 - 1921: -15,-8 - 1922: -15,-7 - 1924: -15,-5 - 1925: -15,-4 - 1927: -15,-2 - 1928: -15,-1 - 1929: -15,0 - 5800: -15,-6 - 5802: -15,15 - 5803: -15,16 - 5804: -15,17 - 5805: -15,18 - 5806: -15,19 - 5807: -15,20 - 5808: -15,21 - 5809: -15,22 - 5810: -15,23 - 5824: -15,32 - 5825: -15,33 - 5826: -15,34 - 5827: -15,35 - 5828: -15,36 - 5829: -15,37 - 5830: -15,38 - 5831: -15,39 - 5832: -15,40 - 5878: 15,43 - 5884: 24,26 - 5887: 24,30 - 5891: 35,22 - 5892: 35,24 - 5894: 35,26 - 5895: 35,27 - 5896: 35,28 - 5897: 35,29 - 5898: 35,30 - 5899: 35,31 - 5900: 35,32 - 5901: 35,33 - 5902: 35,34 - 5903: 35,35 - 5904: 35,36 - 5905: 35,37 - 5963: 39,-6 - 6331: -15,-3 - 6438: -15,-16 - 6439: -15,-15 - 6440: -15,-14 - 6441: -15,-13 - 6442: -15,-12 - 6443: -15,-11 - 7415: -13,-1 - 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 - decals: - 5064: -9,52 - 5065: -9,53 - 5066: -9,54 - 5067: -9,55 - 5068: -9,56 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - decals: - 504: -12,-52 - 505: -12,-51 - 506: -12,-47 - 516: -7,-47 - 517: -7,-48 - 518: -7,-49 - 519: -7,-50 - 520: -7,-51 - 521: -7,-52 - 2289: -34,55 - 2290: -34,56 - 2291: -34,51 - 2292: -34,49 - 2293: -34,48 - 2309: -33,37 - 2321: -21,39 - 2781: 23,57 - 2782: 23,58 - 4217: -33,32 - 4218: -33,33 - 4221: -30,30 - 4224: -36,29 - 4225: -36,30 - 5375: -39,51 - 5376: -39,55 - 5386: -43,56 - 5509: -23,61 - 5510: -23,62 - 5547: -26,64 - 5557: -26,59 - 5558: -26,60 - 6396: -12,-48 - 7586: -26,45 - 7587: -26,44 - 7588: -26,43 - 7589: -28,53 - 7590: -28,54 - 7591: -28,55 - 7592: -28,56 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale90 - decals: - 694: 32,-21 - 695: 32,-22 - 745: 23,-33 - 746: 23,-32 - 747: 23,-31 - 748: 23,-30 - 790: 18,-23 - 791: 18,-22 - 805: 28,-18 - 854: 27,-23 - 855: 27,-22 - 1397: -20,-4 - 1398: -20,-5 - 1399: -20,-6 - 2831: 48,48 - 2832: 48,49 - 2833: 48,50 - 2834: 48,51 - 2835: 48,52 - 5793: 31,-1 - 5794: 31,0 - 5796: 31,-4 - 5797: 31,-5 - 6471: -27,-3 - 6472: -27,-5 - 6473: -27,-6 - 6474: -27,-8 - 6475: -27,-9 - 6476: -27,-10 - 6477: -27,-11 - 6648: -23,-12 - 6649: -23,-11 - 6650: -23,-10 - 7572: -50,27 - 7827: 43,-3 - 7828: 43,-4 - 7829: 43,-6 - 7839: 43,2 - 7867: 55,1 - 7911: 54,-2 - 7947: 55,4 - 7948: 55,5 - 7949: 55,6 - 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' - id: LoadingArea - decals: - 5283: 53,-16 - 5284: 53,-14 - - node: - color: '#FFFFFFFF' - id: LoadingArea - decals: - 6106: -27,-28 - 6108: -26,-28 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 7815: 64,5 - 7816: 64,4 - 7817: 64,3 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 6080: -26,-26 - 6081: -27,-26 - - node: - color: '#D381C996' - id: MiniTileBoxOverlay - decals: - 245: -44,-21 - - node: - color: '#52B4E996' - id: MiniTileOverlay - decals: - 7727: -42,-21 - - node: - color: '#D381C996' - id: MiniTileWhiteLineW - decals: - 219: -47,-37 - 220: -47,-36 - 221: -47,-35 - - node: - color: '#52B4E996' - id: MonoOverlay - decals: - 2552: 7,36 - 2553: 6,36 - 2554: 5,36 - 2555: 4,36 - 2556: 3,36 - 2557: 2,36 - 2558: 2,37 - 2559: 3,37 - 2560: 4,37 - 2561: 5,37 - 2562: 6,37 - 2563: 7,37 - 2564: 7,38 - 2565: 6,38 - 2566: 5,38 - 2567: 4,38 - 2568: 3,38 - 2569: 2,38 - 2570: 2,39 - 2571: 3,39 - 2572: 4,39 - 2573: 5,39 - 2574: 6,39 - 2575: 7,39 - - node: - cleanable: True - angle: 0.017453292519943295 rad - color: '#1861D5FF' - id: Newton - decals: - 6797: 0.5603361,61.02496 - - node: - cleanable: True - color: '#B02E26FF' - id: Osiron - decals: - 7144: 0.51088,-66.93287 - - node: - cleanable: True - color: '#0E7F1BFF' - id: Prima - decals: - 6671: -19.012123,60.54917 - - node: - color: '#00000094' - id: QuarterTileOverlayGreyscale - decals: - 1400: -25,-7 - 1401: -25,-6 - 1402: -25,-5 - 1403: -25,-4 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - decals: - 4682: -36,19 - 4683: -35,19 - 4684: -34,19 - 4685: -33,19 - 4686: -32,19 - 5614: -50,29 - 5738: 0,-8 - - node: - color: '#3EB38896' - id: QuarterTileOverlayGreyscale - decals: - 8012: 23,-17 - 8017: 22,-17 - 8018: 21,-17 - 8019: 20,-17 - 8020: 19,-17 - 8022: 24,-17 - 8023: 24,-16 - - node: - color: '#474F52FF' - id: QuarterTileOverlayGreyscale - decals: - 2012: -12,4 - 2013: -11,4 - 2014: -10,4 - 2015: -9,5 - 2016: -9,6 - 2017: -9,7 - 2018: -9,8 - 2019: -9,9 - 2020: -8,9 - 2021: -8,10 - 2022: -9,10 - 2023: -9,11 - 2024: -8,11 - 2025: -9,12 - 2026: -9,13 - 2027: -10,14 - 2028: -11,14 - 2029: -12,14 - 2030: -10,13 - 2031: -11,13 - 2636: 17,66 - 2637: 18,66 - 2638: 19,66 - 2639: 20,66 - 2640: 20,67 - 2641: 20,68 - 2642: 21,68 - 2643: 22,68 - 2644: 22,69 - 2645: 23,69 - 2646: 23,70 - 2647: 24,70 - 2648: 25,70 - 2649: 12,70 - 2650: 13,70 - 2651: 14,69 - 2652: 15,68 - 2653: 16,68 - 2654: 17,62 - 2655: 18,62 - 2656: 19,62 - 2657: 20,62 - 2658: 17,60 - 2659: 17,59 - 2660: 17,58 - 2661: 17,57 - 2662: 17,56 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 175: -36,-47 - 176: -35,-47 - 177: -34,-47 - 178: -33,-47 - 179: -32,-47 - 180: -31,-47 - 181: -30,-47 - 1803: 28,37 - 2479: -9,51 - 2480: -9,50 - 2481: -8,50 - 2482: -8,51 - 2483: -7,51 - 2484: -7,50 - 2578: 9,41 - 2973: -11,-34 - 2974: -14,-33 - 2980: -16,-37 - 2986: -15,-36 - 4818: -4,-50 - 4819: -3,-50 - 4820: -3,-51 - 4821: -4,-51 - 4831: -2,-51 - 4832: -2,-50 - 4833: -1,-50 - 4834: -1,-51 - 4841: 0,-51 - 4842: 0,-50 - 4843: 1,-50 - 4844: 1,-51 - 7602: -4,-52 - 7603: -4,-53 - 7604: -4,-54 - 7605: -3,-54 - 7606: -3,-53 - 7607: -3,-52 - 7608: -2,-52 - 7609: -2,-53 - 7610: -2,-54 - 7611: -1,-54 - 7612: -1,-53 - 7613: -1,-52 - 7614: 0,-52 - 7615: 0,-53 - 7616: 0,-54 - 7617: 1,-54 - 7618: 1,-53 - 7619: 1,-52 - 7620: 1,-56 - 7621: 1,-55 - - node: - color: '#8C347F96' - id: QuarterTileOverlayGreyscale - decals: - 608: 7,-52 - 1551: 44,19 - - node: - color: '#8D1C9996' - id: QuarterTileOverlayGreyscale - decals: - 1107: 55,-36 - 6257: 57,-28 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - decals: - 1055: 20,-36 - 1056: 20,-35 - 1057: 24,-36 - 1058: 24,-35 - 1059: 28,-37 - 1060: 27,-37 - 1061: 26,-37 - 1062: 25,-37 - 1063: 24,-37 - 1064: 20,-37 - 1065: 19,-37 - 1066: 18,-37 - 1067: 17,-37 - 1068: 16,-37 - 1069: 15,-37 - 2470: -13,64 - 2871: 54,49 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 1128: 56,-32 - 1147: 49,-27 - 5293: 51,-12 - 5294: 50,-14 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale - decals: - 116: -34,-27 - 117: -31,-35 - 120: -38,-33 - 127: -28,-19 - 128: -28,-20 - 129: -28,-21 - 130: -28,-22 - 635: -7,-27 - 5605: -32,-38 - 9144: 50,56 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale - decals: - 1883: -18,11 - 5851: -4,45 - 5852: -11,45 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale - decals: - 1001: 30,-41 - 1002: 30,-42 - 1003: 30,-43 - 1004: 30,-44 - 1005: 30,-45 - 1006: 30,-46 - 1007: 30,-47 - 1008: 30,-48 - 1009: 30,-49 - 1046: 27,-40 - 5024: 4,45 - 5044: -7,45 - 5082: -19,11 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 2338: -18,41 - 2365: -40,59 - 4226: -31,34 - 4227: -30,34 - 4228: -29,34 - 4229: -28,34 - 4230: -27,34 - 4231: -26,34 - 4232: -25,34 - 5377: -45,52 - 5533: -30,66 - 5534: -30,67 - 5535: -30,68 - 5536: -30,69 - 6392: -8,-52 - 6454: -19,29 - 6461: -27,29 - 6715: -18,2 - 6716: -18,1 - 6717: -18,0 - 6718: -18,-1 - 6719: -18,-2 - 6720: -18,3 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - decals: - 712: 30,-21 - 2813: 40,43 - 2814: 50,45 - 2840: 44,49 - 6478: -28,-11 - 6479: -28,-10 - 6480: -28,-9 - 6481: -28,-8 - 6482: -28,-7 - 6483: -28,-6 - 6484: -28,-5 - 6485: -28,-4 - 6486: -28,-3 - 7830: 42,-8 - 7847: 44,0 - 7917: 57,-4 - 7923: 56,-2 - 7924: 55,-4 - 7926: 57,-2 - 7934: 55,-3 - 8232: 33,-2 - 8233: 34,-2 - 8882: 58,7 - 8883: 59,7 - 8884: 60,7 - 8885: 61,7 - 8886: 62,-3 - 8887: 61,-2 - 8989: 47,0 - - node: - zIndex: 1 - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - decals: - 8473: 40,-16 - 8475: 40,-13 - - node: - color: '#FA750096' - id: QuarterTileOverlayGreyscale - decals: - 6062: -34,-44 - 6063: -33,-44 - 6064: -32,-44 - 6065: -31,-44 - 6066: -30,-44 - 6067: -29,-44 - 6069: -27,-44 - 6070: -26,-44 - 6071: -35,-44 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - decals: - 4677: -36,25 - 4678: -35,25 - 4679: -34,25 - 4680: -33,25 - 4681: -32,25 - 5735: -2,-6 - 6452: -25,26 - - node: - color: '#3EB38896' - id: QuarterTileOverlayGreyscale180 - decals: - 8021: 18,-16 - 8032: 27,5 - 8033: 26,5 - 8034: 25,5 - 8036: 24,5 - - node: - color: '#43990996' - id: QuarterTileOverlayGreyscale180 - decals: - 581: -13,-61 - 582: -12,-60 - - node: - color: '#474F52FF' - id: QuarterTileOverlayGreyscale180 - decals: - 1985: -10,9 - 1986: -10,10 - 1987: -10,11 - 1988: -10,12 - 1989: -10,13 - 1990: -10,14 - 1991: -11,14 - 1992: -12,14 - 1993: -9,13 - 1994: -9,12 - 1995: -9,11 - 1996: -9,10 - 1997: -9,9 - 1998: -9,8 - 1999: -9,7 - 2000: -10,8 - 2001: -10,7 - 2002: -10,6 - 2003: -10,5 - 2004: -10,4 - 2005: -11,4 - 2006: -12,4 - 2007: -9,5 - 2008: -9,6 - 2009: -8,9 - 2010: -8,10 - 2011: -8,11 - 2032: -12,5 - 2033: -11,5 - 2622: 19,56 - 2623: 19,57 - 2624: 19,58 - 2625: 19,59 - 2626: 19,60 - 2627: 19,61 - 2628: 16,64 - 2629: 17,64 - 2630: 18,64 - 2631: 19,64 - 2632: 14,69 - 2633: 16,68 - 2634: 16,67 - 2635: 13,70 - 2663: 16,61 - - node: - color: '#52B4E956' - id: QuarterTileOverlayGreyscale180 - decals: - 5090: 6,43 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 404: -16,-44 - 671: -14,-29 - 2466: -8,58 - 2467: -7,60 - 2485: -9,50 - 2486: -9,51 - 2487: -8,51 - 2488: -8,50 - 2489: -7,50 - 2490: -7,51 - 2971: -18,-40 - 2982: -18,-35 - 2983: -17,-34 - 4788: -4,-50 - 4789: -4,-51 - 4796: -3,-51 - 4797: -3,-50 - 4798: -2,-50 - 4799: -2,-51 - 4806: -1,-51 - 4807: -1,-50 - 4808: 0,-50 - 4809: 0,-51 - 4816: 1,-51 - 4817: 1,-50 - 7622: 1,-56 - 7623: 1,-55 - 7624: 1,-54 - 7625: 0,-54 - 7626: -1,-54 - 7627: -2,-54 - 7628: -3,-54 - 7629: -4,-54 - 7630: -4,-53 - 7631: -4,-52 - 7632: -3,-52 - 7633: -3,-53 - 7634: -2,-53 - 7635: -2,-52 - 7636: -1,-52 - 7637: -1,-53 - 7638: 0,-53 - 7639: 0,-52 - 7640: 1,-52 - 7641: 1,-53 - - node: - color: '#8D1C9996' - id: QuarterTileOverlayGreyscale180 - decals: - 1111: 60,-31 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale180 - decals: - 172: 2,-12 - 1049: 28,-37 - 1050: 23,-35 - 1051: 23,-36 - 1052: 24,-36 - 1053: 19,-35 - 1054: 19,-36 - 2894: 51,54 - 2935: 71,47 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 1123: 57,-33 - 6272: 58,-22 - 6282: 61,-27 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale180 - decals: - 123: -37,-29 - 124: -30,-26 - 131: -24,-22 - 132: -24,-21 - 133: -24,-20 - 134: -24,-19 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale180 - decals: - 1885: -26,15 - 1901: -26,7 - 5833: -15,41 - 5834: -14,42 - 5835: -13,43 - 5876: 9,43 - 5890: 24,27 - 5924: 50,44 - 5959: 34,-8 - 5960: 36,-7 - 6336: -15,1 - 9284: 56,-41 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale180 - decals: - 975: 13,-49 - 976: 13,-48 - 977: 13,-47 - 978: 13,-46 - 979: 13,-45 - 980: 13,-44 - 981: 13,-43 - 982: 13,-42 - 983: 13,-41 - 984: 13,-40 - 985: 14,-40 - 986: 15,-40 - 987: 16,-40 - 988: 16,-39 - 989: 17,-39 - 990: 18,-39 - 991: 19,-39 - 992: 20,-39 - 993: 21,-39 - 994: 22,-39 - 995: 23,-39 - 996: 24,-39 - 997: 25,-39 - 998: 26,-39 - 999: 28,-40 - 1000: 29,-40 - 1047: 27,-40 - 5040: 11,40 - 5080: -25,7 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 2308: -37,35 - 2310: -33,38 - 5388: -43,57 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - decals: - 759: 23,-29 - 1389: -21,-7 - 7840: 43,-2 - 7914: 54,-1 - 7918: 56,-1 - 7920: 54,-3 - 7928: 56,-2 - 7933: 55,-3 - 7955: 59,2 - 7956: 60,2 - 7957: 61,2 - 7958: 62,2 - 8219: 34,-3 - 8229: 33,-3 - 8793: 7,12 - 8794: 8,12 - 8795: 9,12 - 8796: 10,12 - 8797: 11,12 - 8798: 12,12 - 8799: 13,12 - 8889: 61,-2 - 9106: 38,-29 - - node: - color: '#FA750096' - id: QuarterTileOverlayGreyscale180 - decals: - 6053: -35,-43 - 6054: -34,-43 - 6055: -33,-43 - 6056: -32,-43 - 6057: -31,-43 - 6058: -30,-43 - 6059: -29,-43 - 6060: -28,-43 - 6061: -27,-43 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - decals: - 5613: -50,28 - 5736: 0,-6 - 6451: -19,26 - 6453: -28,25 - 6468: -12,27 - 6469: -11,27 - 6470: -10,27 - - node: - color: '#52B4E956' - id: QuarterTileOverlayGreyscale270 - decals: - 5091: 9,43 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 - decals: - 440: -21,-52 - 451: -24,-40 - 452: -23,-40 - 453: -22,-40 - 454: -21,-40 - 455: -20,-40 - 456: -20,-39 - 457: -21,-39 - 458: -22,-39 - 459: -23,-39 - 460: -24,-39 - 461: -13,-40 - 462: -12,-40 - 463: -11,-40 - 464: -10,-40 - 465: -10,-39 - 466: -11,-39 - 467: -12,-39 - 468: -13,-39 - 469: -13,-38 - 470: -12,-38 - 471: -11,-38 - 472: -10,-38 - 2528: 0,34 - 2529: 1,33 - 2530: 2,34 - 2531: 1,35 - 2532: 0,36 - 2533: 0,38 - 2534: 1,37 - 2535: 3,35 - 2536: 4,34 - 2537: 6,34 - 2538: 5,35 - 2539: 1,39 - 2540: 0,40 - 2970: -15,-40 - 2972: -11,-36 - 2984: -15,-35 - 2987: -16,-34 - 7672: -1,-36 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - decals: - 171: -4,-12 - 2471: -13,62 - 2934: 67,47 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 6253: 56,-22 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale270 - decals: - 122: -31,-29 - 5606: -32,-36 - 6095: -27,-29 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale270 - decals: - 1900: -18,7 - 5820: -18,26 - 5845: -4,43 - 5875: 11,43 - 5877: 6,43 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale270 - decals: - 139: -28,-19 - 140: -28,-20 - 141: -28,-21 - 142: -28,-22 - 1070: 15,-37 - 1071: 20,-36 - 1072: 20,-35 - 1073: 24,-35 - 1074: 24,-36 - 1090: 19,-36 - 2491: -9,50 - 2492: -8,50 - 2493: -7,50 - 2494: -7,51 - 2495: -8,51 - 2496: -9,51 - 5079: -19,7 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 1019: 14,-40 - 1020: 15,-40 - 1021: 16,-40 - 1022: 17,-39 - 1023: 18,-39 - 1024: 19,-39 - 1025: 20,-39 - 1026: 21,-39 - 1027: 22,-39 - 1028: 23,-39 - 1029: 24,-39 - 1030: 25,-39 - 1031: 26,-39 - 1032: 27,-40 - 1033: 28,-40 - 1034: 29,-40 - 1035: 30,-40 - 1036: 30,-41 - 1037: 30,-42 - 1038: 30,-43 - 1039: 30,-44 - 1040: 30,-45 - 1041: 30,-46 - 1042: 27,-39 - 1043: 30,-47 - 1044: 30,-48 - 1045: 30,-49 - 2337: -18,38 - 2348: -37,52 - 2352: -37,57 - 5387: -45,57 - 6391: -8,-47 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - decals: - 758: 20,-29 - 818: 25,-18 - 1380: -25,-4 - 1381: -25,-5 - 1382: -25,-6 - 1383: -25,-7 - 1965: -10,5 - 1966: -11,5 - 1967: -12,4 - 1968: -11,4 - 1969: -10,4 - 1970: -9,5 - 1971: -9,6 - 1972: -9,7 - 1973: -9,8 - 1974: -9,9 - 1975: -8,9 - 1976: -8,10 - 1977: -9,10 - 1978: -9,11 - 1979: -8,11 - 1980: -9,12 - 1981: -9,13 - 1982: -10,14 - 1983: -11,14 - 1984: -12,14 - 2598: 23,70 - 2599: 22,69 - 2600: 20,68 - 2601: 20,67 - 2611: 17,64 - 2612: 18,64 - 2613: 19,64 - 2614: 20,64 - 2615: 17,56 - 2616: 17,57 - 2617: 17,58 - 2618: 20,61 - 2619: 17,59 - 2620: 17,60 - 2621: 17,61 - 2824: 50,55 - 6620: 19,-18 - 7838: 42,3 - 7845: 49,-2 - 7931: 57,-1 - 9128: 35,-29 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 5737: -2,-8 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 441: -24,-39 - 442: -23,-39 - 443: -22,-39 - 444: -21,-39 - 445: -20,-39 - 446: -20,-40 - 447: -21,-40 - 448: -22,-40 - 449: -23,-40 - 450: -24,-40 - 473: -13,-40 - 474: -12,-40 - 475: -11,-40 - 476: -10,-40 - 477: -10,-39 - 478: -11,-39 - 479: -12,-39 - 480: -13,-39 - 481: -13,-38 - 482: -12,-38 - 483: -11,-38 - 484: -10,-38 - 2464: -7,62 - 2465: -8,66 - 2541: 0,33 - 2542: 0,35 - 2543: 1,34 - 2545: 3,34 - 2547: 0,37 - 2548: 0,39 - 2550: 5,34 - 2579: 6,41 - 2975: -17,-33 - 2981: -17,-37 - 2985: -18,-36 - 9946: 4,35 - 9947: 2,35 - 9948: 1,36 - 9949: 1,38 - - node: - color: '#8C347F96' - id: QuarterTileOverlayGreyscale90 - decals: - 1550: 46,17 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale90 - decals: - 2895: 51,45 - 2936: 71,50 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 1146: 50,-25 - 5356: 53,-18 - 6286: 61,-24 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 121: -37,-35 - 636: -15,-27 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale90 - decals: - 1884: -26,11 - 1905: -26,3 - 5853: -7,45 - 5874: 4,45 - 5889: 24,29 - 6330: -14,2 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale90 - decals: - 135: -24,-22 - 136: -24,-21 - 137: -24,-20 - 138: -24,-19 - 1075: 19,-35 - 1076: 19,-36 - 1077: 15,-37 - 1078: 16,-37 - 1079: 17,-37 - 1080: 18,-37 - 1081: 19,-37 - 1082: 23,-36 - 1083: 23,-35 - 1084: 23,-37 - 1085: 24,-37 - 1086: 25,-37 - 1087: 26,-37 - 1088: 27,-37 - 1089: 28,-37 - 2497: -9,50 - 2498: -8,50 - 2499: -7,50 - 2500: -7,51 - 2501: -8,51 - 2502: -9,51 - 5026: 1,45 - 5045: -11,45 - 5081: -25,11 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 - decals: - 1010: 13,-49 - 1011: 13,-48 - 1012: 13,-47 - 1013: 13,-46 - 1014: 13,-45 - 1015: 13,-44 - 1016: 13,-43 - 1017: 13,-42 - 1018: 13,-41 - 1048: 16,-40 - 2339: -34,41 - 5537: -27,69 - 5538: -27,68 - 5539: -27,67 - 5540: -27,66 - 6459: -30,29 - 6460: -25,29 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 701: 32,-23 - 1936: -12,13 - 1937: -12,14 - 1938: -11,14 - 1939: -11,13 - 1940: -10,13 - 1941: -10,12 - 1942: -10,11 - 1943: -10,10 - 1944: -10,9 - 1945: -10,8 - 1946: -10,7 - 1947: -10,6 - 1948: -10,5 - 1949: -10,4 - 1950: -11,4 - 1951: -12,4 - 1952: -9,5 - 1953: -9,6 - 1954: -9,7 - 1955: -9,8 - 1956: -8,9 - 1957: -9,9 - 1958: -9,10 - 1959: -8,10 - 1960: -8,11 - 1961: -9,11 - 1962: -9,12 - 1963: -9,13 - 1964: -10,14 - 2580: 19,56 - 2581: 19,57 - 2582: 19,58 - 2583: 19,59 - 2584: 19,60 - 2585: 16,62 - 2586: 17,62 - 2587: 18,62 - 2588: 19,62 - 2589: 15,68 - 2590: 14,68 - 2591: 14,69 - 2592: 13,69 - 2593: 13,70 - 2594: 12,70 - 2595: 11,70 - 2596: 24,70 - 2597: 23,70 - 2602: 16,68 - 2603: 16,67 - 2604: 16,66 - 2605: 17,66 - 2606: 18,66 - 2607: 19,66 - 2608: 20,68 - 2609: 21,68 - 2610: 22,69 - 5046: 28,43 - 7831: 43,-8 - 7841: 43,0 - 7868: 55,0 - 7932: 54,-4 - 8238: 10,-20 - 9009: 27,-16 - 9042: 10,-15 - 9066: 31,-14 - - node: - color: '#FFFFFFFF' - id: Rock01 - decals: - 2136: -4.948737,24.936602 - - node: - color: '#FFFFFFFF' - id: Rock02 - decals: - 2140: -2.2374403,24.710659 - - node: - color: '#FFFFFFFF' - id: Rock03 - decals: - 2139: 1.85461,29.288065 - 2142: -2.6140094,30.384298 - - node: - color: '#FFFFFFFF' - id: Rock04 - decals: - 2141: -0.8901596,24.250408 - 7277: 13.293049,-31.913282 - - node: - color: '#FFFFFFFF' - id: Rock05 - decals: - 7275: 16.896997,-32.451805 - - node: - color: '#FFFFFFFF' - id: Rock06 - decals: - 2138: 2.0638146,24.844551 - 4030: 53.91192,55.78859 - 7276: 11.050772,-32.109108 - 7278: 28.337894,-31.138142 - 7348: -20.767199,23.666767 - - node: - color: '#FFFFFFFF' - id: Rock07 - decals: - 2137: -0.48848653,30.785973 - 4029: 62.931503,57.75387 - 7279: 28.908653,-33.8389 - 7347: -20.375824,19.28789 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: SpaceStationSign1 - decals: - 10139: -25,9 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: SpaceStationSign2 - decals: - 10140: -24,9 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: SpaceStationSign3 - decals: - 10141: -23,9 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: SpaceStationSign4 - decals: - 10142: -22,9 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: SpaceStationSign5 - decals: - 10143: -21,9 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: SpaceStationSign6 - decals: - 10144: -20,9 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: SpaceStationSign7 - decals: - 10145: -19,9 - - node: - color: '#32CD3293' - id: ThreeQuarterTileOverlayGreyscale - decals: - 9660: -46,63 - - node: - color: '#43990996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 589: -12,-62 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 253: -18,-54 - 354: -4,-46 - 361: -18,-42 - 362: -24,-50 - 363: -24,-42 - 1784: 26,37 - 1785: 28,39 - 2369: -49,56 - 2978: -16,-36 - 7658: -2,-33 - 7659: 2,-33 - - node: - color: '#79150096' - id: ThreeQuarterTileOverlayGreyscale - decals: - 5218: -51,-13 - - node: - color: '#8BC9DAFF' - id: ThreeQuarterTileOverlayGreyscale - decals: - 971: -3,-1 - - node: - color: '#8C347F96' - id: ThreeQuarterTileOverlayGreyscale - decals: - 606: 6,-52 - 607: 7,-51 - 1537: 43,19 - 1542: 44,21 - - node: - color: '#8D1C9996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1105: 55,-32 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale - decals: - 2452: -13,66 - 2869: 53,49 - 2870: 54,50 - 2920: 67,52 - - node: - color: '#A020F093' - id: ThreeQuarterTileOverlayGreyscale - decals: - 9667: -43,63 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1129: 54,-36 - 1130: 49,-24 - 1168: 53,-11 - 1347: 56,-28 - 5291: 46,-14 - 5292: 50,-12 - 5330: 49,-16 - 6256: 57,-27 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 114: -38,-27 - 115: -34,-24 - 119: -39,-33 - 634: -7,-26 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale - decals: - 7409: -14,0 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - decals: - 492: -13,-46 - 2268: -40,42 - 2334: -18,45 - 2335: -19,41 - 2353: -30,60 - 2364: -40,60 - 2374: -45,53 - 2774: 21,59 - 5360: -41,56 - 6384: -11,-52 - 6385: -11,-46 - 6429: -14,-50 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale - decals: - 698: 30,-20 - 699: 29,-21 - 772: 8,-19 - 850: 25,-21 - 1388: -25,-3 - 2827: 44,53 - 2828: 43,49 - 6512: 45,5 - 6621: 16,-16 - 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: '#3EB38896' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 10282: 18,-14 - - node: - color: '#43990996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 580: -12,-61 - 590: -11,-63 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 254: -16,-59 - 355: 1,-48 - 356: -16,-52 - 378: -20,-48 - 403: 1,-44 - 439: -20,-53 - 654: -14,-31 - 1788: 31,35 - 2366: -47,54 - 2468: -7,58 - 2988: -17,-35 - 7667: 3,-35 - - node: - color: '#8C347F96' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 605: 8,-53 - 1539: 47,16 - - node: - color: '#8D1C9996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1112: 60,-33 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2893: 52,54 - 2921: 71,45 - 2931: 77,47 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1124: 61,-31 - 5331: 51,-18 - 5335: 58,-17 - 6239: 58,-25 - 6264: 63,-22 - 6280: 63,-27 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 125: -24,-26 - 234: -43,-31 - 5601: -30,-40 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 5836: -14,41 - 5837: -13,42 - 5964: 39,-7 - 7416: -13,-2 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 494: -12,-53 - 496: -7,-53 - 2307: -37,34 - 2323: -21,38 - 2775: 23,56 - 5373: -39,50 - 5383: -43,55 - 5546: -26,63 - 6393: -12,-49 - 7597: -29,50 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 702: 35,-24 - 774: 18,-24 - 806: 28,-19 - 853: 27,-24 - 1385: -21,-8 - 1386: -20,-7 - 2830: 48,47 - 6039: 35,45 - 8231: 40,-3 - 9040: 11,-17 - 9060: 31,-17 - - node: - color: '#FA750096' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 199: -26,-45 - - node: - color: '#3EB38896' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 10281: 17,-14 - - node: - color: '#43990996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 591: -12,-63 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 252: -18,-59 - 353: -4,-48 - 357: -18,-52 - 358: -21,-53 - 359: -24,-52 - 360: -24,-48 - 1790: 26,35 - 2367: -49,54 - 2989: -16,-35 - 4727: -18,-31 - 7656: -1,-40 - 7657: -2,-36 - 7668: 2,-35 - - node: - color: '#8C347F96' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 609: 6,-53 - 1538: 43,16 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 2451: -13,58 - 2868: 53,47 - 2923: 67,45 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1169: 53,-12 - 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 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 2262: -40,34 - 2336: -19,38 - 2354: -30,58 - 2776: 21,56 - 5372: -41,50 - 5384: -45,55 - 6386: -11,-53 - 6387: -11,-47 - 6394: -13,-49 - 8379: -14,-53 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 773: 8,-24 - 792: 16,-18 - 793: 25,-19 - 852: 25,-24 - 1384: -25,-8 - 2826: 43,47 - 6037: 29,45 - 6619: 19,-19 - 8041: 52,0 - 8800: 1,11 - 8910: 53,-6 - 8996: 29,-24 - 9054: 1,-21 - - node: - color: '#FA750096' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 197: -36,-45 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 4696: -32,23 - - node: - color: '#43990996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 592: -11,-62 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 251: -16,-54 - 352: 1,-46 - 364: -20,-50 - 365: -20,-42 - 366: 1,-42 - 1789: 31,39 - 2368: -47,56 - 2469: -7,66 - 2979: -17,-36 - 7660: 0,-33 - 7661: 3,-33 - 8880: -20,-28 - - node: - color: '#79150096' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 5219: -49,-13 - - node: - color: '#8BC9DAFF' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 972: 1,-1 - - node: - color: '#8C347F96' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 610: 8,-51 - 1540: 47,17 - 1541: 46,21 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2922: 71,52 - 2930: 77,50 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1125: 61,-29 - 1144: 54,-25 - 1145: 50,-24 - 5333: 51,-16 - 6244: 54,-18 - 6269: 63,-19 - 6273: 63,-24 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 126: -24,-24 - 6084: -24,-28 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 7411: -13,0 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 493: -12,-46 - 499: -7,-46 - 500: -12,-50 - 2324: -21,41 - 2340: -34,42 - 2777: 23,59 - 4219: -30,31 - 5358: -39,56 - 5541: -26,65 - 5559: -26,61 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 697: 32,-20 - 700: 35,-23 - 775: 18,-21 - 798: 28,-16 - 851: 27,-21 - 1387: -20,-3 - 2829: 48,53 - 7864: 55,2 - 8992: 50,1 - 9041: 10,-14 - - node: - color: '#FA750096' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 198: -26,-42 - - node: - cleanable: True - color: '#1861D5FF' - id: Waffle - decals: - 6678: -0.19142652,59.79244 - - node: - color: '#000000FF' - id: WarnBox - decals: - 5966: 37,19 - 5967: 43,14 - - node: - color: '#DE3A3AFF' - id: WarnBox - decals: - 4106: -34,50 - - node: - color: '#EFB341FF' - id: WarnBox - decals: - 4597: 5,32 - 5502: -9,-25 - 8911: 56,-9 - - node: - color: '#FFFFFFFF' - id: WarnBox - decals: - 249: -28,-50 - 717: 32,-19 - 2226: -33,53 - 2227: -32,48 - - node: - color: '#0E7F1BFF' - id: WarnBoxGreyscale - decals: - 6680: -16,65 - - node: - color: '#1861D5FF' - id: WarnBoxGreyscale - decals: - 6679: -4,65 - - node: - color: '#8C347FFF' - id: WarnBoxGreyscale - decals: - 5968: 37,19 - 5969: 43,14 - - node: - zIndex: 1 - color: '#D381C9FF' - id: WarnCornerGreyscaleNE - decals: - 8389: -22,-22 - - node: - color: '#000000FF' - id: WarnCornerNE - decals: - 8388: -22,-22 - - node: - color: '#FFFFFFFF' - id: WarnCornerNE - decals: - 2688: 22,66 - 2697: 12,84 - 2698: 25,84 - 2699: 26,82 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 1429: -37,-10 - 2687: 21,66 - 2700: 10,82 - 2701: 11,84 - 2742: 24,84 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 542: -6,-50 - - node: - zIndex: 1 - color: '#52B4E9FF' - id: WarnCornerSE - decals: - 8421: 39,53 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 22: -41,-44 - 23: -47,-28 - 2686: 22,65 - 2693: 12,72 - 2694: 25,72 - 2695: 26,77 - - node: - zIndex: 1 - color: '#EFB341FF' - id: WarnCornerSW - decals: - 8422: 10,-19 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 2689: 21,65 - 2690: 23,73 - 2691: 24,72 - 2692: 11,72 - 2696: 10,77 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 886: 13,-22 - 2746: 25,82 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 885: 18,-22 - 2743: 11,82 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 19: -48,-28 - 20: -47,-24 - 21: -46,-34 - 602: -16,-46 - 1260: 57,-37 - 2745: 25,77 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 1253: 57,-25 - 2744: 11,77 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 9034: 9,-15 - - node: - color: '#439909FF' - id: WarnEndE - decals: - 8366: 25,56 - - node: - zIndex: 1 - color: '#A46106FF' - id: WarnEndE - decals: - 8423: 46,-18 - - node: - zIndex: 1 - color: '#52B4E9FF' - id: WarnEndGreyscaleN - decals: - 8384: -30,-45 - - node: - color: '#000000FF' - id: WarnEndN - decals: - 8385: -30,-45 - - node: - zIndex: 1 - color: '#52B4E9FF' - id: WarnEndN - decals: - 8419: 59,52 - - node: - zIndex: 1 - color: '#52B4E9FF' - id: WarnEndS - decals: - 8420: 67,50 - - node: - color: '#FFFFFFFF' - id: WarnFull - decals: - 250: -28,-51 - 1255: 58,-38 - 1256: 59,-38 - 1257: 60,-38 - 1258: 61,-38 - 1261: 47,-22 - 1262: 46,-22 - 2078: -14,6 - 2079: -14,12 - 4490: 56,-26 - 4491: 56,-27 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 31: -47,-27 - 32: -47,-26 - 33: -47,-25 - 40: -41,-43 - 41: -41,-42 - 246: -46,-37 - 247: -46,-36 - 248: -46,-35 - 572: -16,-48 - 573: -16,-47 - 874: 23,-24 - 875: 23,-23 - 876: 23,-22 - 877: 23,-21 - 878: 13,-21 - 879: 13,-20 - 1259: 57,-38 - 2069: -15,5 - 2070: -15,6 - 2071: -15,7 - 2072: -15,8 - 2073: -15,9 - 2074: -15,10 - 2075: -15,11 - 2076: -15,12 - 2077: -15,13 - 2219: -42,39 - 2220: -42,40 - 2221: -42,41 - 2384: -38,64 - 2385: -38,65 - 2702: 12,73 - 2703: 12,74 - 2704: 12,75 - 2705: 12,76 - 2706: 12,77 - 2707: 12,78 - 2708: 12,79 - 2709: 12,80 - 2710: 12,81 - 2711: 12,82 - 2712: 12,83 - 2713: 25,73 - 2714: 25,74 - 2715: 25,75 - 2716: 25,76 - 2717: 26,78 - 2718: 26,79 - 2719: 26,80 - 2720: 26,81 - 2721: 25,83 - 2946: 59,55 - 2947: 59,54 - 4606: 59,-49 - 4616: 59,-50 - 5598: -35,62 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WarnLineE - decals: - 8718: -38,66 - 8719: -38,67 - 8720: -38,68 - 9036: 11,-17 - 9037: 11,-16 - 9038: 11,-15 - 10175: -1,43 - 10176: -1,44 - 10177: -1,45 - 10178: -14,27 - 10179: -14,28 - 10190: 14,-28 - 10191: 14,-27 - 10192: 28,-28 - 10193: 28,-27 - 10198: 47,-29 - 10199: 47,-28 - 10216: 35,11 - 10217: 35,12 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 8: -46,-44 - 9: -45,-44 - 10: -44,-44 - 11: -43,-44 - 12: -42,-44 - 13: -46,-24 - 14: -45,-24 - 15: -44,-24 - 16: -43,-24 - 17: -42,-34 - 18: -41,-34 - 34: -22,-24 - 35: -20,-24 - 36: -21,-24 - 151: -2,-14 - 152: 0,-14 - 153: -2,-8 - 154: -1,-8 - 155: 0,-8 - 215: -45,-34 - 576: -4,-44 - 577: 0,-44 - 973: -1,-14 - 1244: 59,-15 - 1252: 56,-25 - 1280: 77,-30 - 1281: 78,-30 - 1282: 79,-30 - 1283: 80,-30 - 1707: 48,19 - 1708: 49,19 - 1709: 50,19 - 1710: 51,19 - 1711: 52,19 - 2224: -31,49 - 2225: -30,49 - 5521: -30,66 - 5522: -29,66 - 5523: -28,66 - 5524: -27,66 - 8297: 13,-12 - 8298: 14,-12 - 8301: 17,-12 - 8302: 18,-12 - 8303: 19,-12 - 8304: 20,-12 - 8732: 58,9 - 8733: 59,9 - 8734: 60,9 - 8735: 61,9 - 8736: 62,9 - 8737: 57,9 - 9000: 12,-12 - 9001: 11,-12 - 9002: 10,-12 - 9003: 9,-12 - 10164: 34,38 - 10165: 35,38 - 10279: 16,-12 - 10280: 15,-12 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WarnLineN - decals: - 9035: 8,-15 - 10170: 50,50 - 10171: 51,50 - 10182: -18,30 - 10183: -17,30 - 10184: -16,30 - 10206: 30,-43 - 10207: 31,-43 - 10208: 12,-43 - 10209: 13,-43 - - node: - zIndex: 2 - color: '#FFFFFFFF' - id: WarnLineN - decals: - 216: -45,-34 - 217: -44,-34 - 218: -43,-34 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 0: -48,-41 - 1: -48,-40 - 2: -48,-39 - 24: -50,-28 - 25: -50,-27 - 26: -50,-26 - 27: -50,-25 - 28: -50,-24 - 29: -50,-23 - 30: -50,-22 - 870: 20,-24 - 871: 20,-23 - 872: 20,-22 - 873: 20,-21 - 884: 18,-21 - 1431: -37,-11 - 1715: 36,17 - 2060: -13,5 - 2061: -13,6 - 2062: -13,7 - 2063: -13,8 - 2064: -13,9 - 2065: -13,10 - 2066: -13,11 - 2067: -13,12 - 2068: -13,13 - 2214: -44,38 - 2215: -44,39 - 2216: -44,40 - 2217: -44,41 - 2218: -44,42 - 2379: -33,64 - 2380: -33,65 - 2722: 11,73 - 2723: 11,74 - 2724: 11,75 - 2725: 11,76 - 2726: 10,78 - 2727: 10,79 - 2728: 10,80 - 2729: 10,81 - 2730: 11,83 - 2731: 24,83 - 2732: 24,82 - 2733: 24,81 - 2734: 24,80 - 2735: 24,79 - 2736: 24,78 - 2737: 24,77 - 2738: 24,76 - 2739: 24,75 - 2740: 24,74 - 2741: 24,73 - 2944: 57,54 - 2945: 57,55 - 5597: -36,62 - 10284: 37,3 - 10285: 37,1 - 10286: 37,0 - 10287: 37,2 - 10291: 37,4 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WarnLineS - decals: - 541: -6,-53 - 548: -6,-52 - 549: -6,-51 - 8715: -33,66 - 8716: -33,67 - 8717: -33,68 - 9032: 9,-17 - 9033: 9,-16 - 10172: -1,43 - 10173: -1,44 - 10174: -1,45 - 10180: -14,27 - 10181: -14,28 - 10188: 14,-28 - 10189: 14,-27 - 10194: 28,-28 - 10195: 28,-27 - 10196: 47,-29 - 10197: 47,-28 - 10202: 55,-22 - 10203: 55,-21 - 10204: 55,-20 - 10205: 55,-19 - 10214: 35,11 - 10215: 35,12 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 3: -45,-39 - 4: -44,-39 - 5: -43,-39 - 6: -42,-39 - 7: -41,-39 - 37: -22,-26 - 38: -21,-26 - 39: -20,-26 - 149: -2,-14 - 150: 0,-14 - 156: -2,-6 - 157: -1,-6 - 158: 0,-6 - 574: -4,-46 - 575: 0,-46 - 880: 14,-22 - 881: 16,-22 - 882: 15,-22 - 883: 17,-22 - 974: -1,-14 - 1249: 59,-15 - 1417: -32,-10 - 1418: -33,-10 - 1419: -34,-10 - 1420: -35,-10 - 1421: -36,-10 - 2222: -31,49 - 2223: -30,49 - 2375: -37,62 - 2378: -34,62 - 8305: 14,4 - 8306: 15,4 - 8307: 16,4 - 8308: 17,4 - 8309: 18,4 - 8310: 19,4 - 8311: 20,4 - 10166: 34,38 - 10167: 35,38 - 10244: 61,1 - 10245: 62,1 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WarnLineW - decals: - 10168: 51,50 - 10169: 50,50 - 10185: -18,30 - 10186: -17,30 - 10187: -16,30 - 10210: 12,-43 - 10211: 13,-43 - 10212: 30,-43 - 10213: 31,-43 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNe - decals: - 4701: 14,58 - 4719: 30,49 - 5396: 49,-11 - 5756: -42,34 - 7539: -22,-54 - 7549: -20,-55 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNw - decals: - 4700: 8,58 - 5395: 46,-11 - 5755: -45,34 - 6722: -26,0 - 7538: -24,-54 - 8371: 11,51 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSe - decals: - 5391: 49,-13 - 6729: -24,-1 - 7547: -20,-57 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSw - decals: - 5390: 46,-13 - 6728: -26,-1 - 7548: -24,-57 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinEndN - decals: - 6723: -24,1 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 7551: -22,-55 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - decals: - 6726: -24,0 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 1372: 49,-8 - 1373: 49,-9 - 1378: 48,-10 - 4702: 14,57 - 4703: 14,56 - 4704: 14,55 - 5397: 49,-12 - 5758: -42,33 - 5759: -42,32 - 6727: -24,0 - 7540: -20,-56 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 1859: 11,36 - 1860: 12,36 - 1861: 13,36 - 1862: 14,36 - 4705: 9,58 - 4706: 10,58 - 4707: 11,58 - 4708: 12,58 - 4709: 13,58 - 4720: 29,49 - 5398: 47,-11 - 5399: 48,-11 - 5752: -44,34 - 5753: -43,34 - 6725: -25,0 - 7543: -23,-54 - 7550: -21,-55 - 8375: 12,51 - 8376: 13,51 - 8377: 14,51 - 8378: 15,51 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 5392: 47,-13 - 5393: 48,-13 - 6724: -25,-1 - 7544: -23,-57 - 7545: -22,-57 - 7546: -21,-57 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 1374: 47,-9 - 1375: 47,-8 - 1379: 48,-10 - 4710: 8,55 - 4711: 8,56 - 4712: 8,57 - 5394: 46,-12 - 5757: -45,33 - 7541: -24,-56 - 7542: -24,-55 - 8372: 11,47 - 8373: 11,48 - 8374: 11,49 - - node: - cleanable: True - color: '#780000FF' - id: amyjon - decals: - 1856: 42.29139,61.960155 - - node: - angle: 3.141592653589793 rad - color: '#3C44AAFF' - id: arrow - decals: - 7133: -2,-66 - - node: - angle: 3.141592653589793 rad - color: '#B02E26FF' - id: arrow - decals: - 7134: -1,-66 - - node: - cleanable: True - color: '#FFFFFFFF' - id: body - decals: - 9704: -54.01239,56.214497 - - node: - cleanable: True - color: '#FFFFFFFF' - id: burnt1 - decals: - 8761: -2,22 - 8762: -4,20 - 8763: -5,21 - 8770: -1,19 - 8771: -1,19 - 8772: -1,20 - 8773: -2,21 - 8774: -1,21 - 8775: -1,21 - 8776: -3,20 - 8777: -4,22 - 8778: -4,22 - - node: - cleanable: True - color: '#FFFFFFFF' - id: burnt2 - decals: - 8759: -1,20 - 8760: -1,20 - 8768: -1,19 - 8769: -1,19 - - node: - cleanable: True - color: '#FFFFFFFF' - id: burnt3 - decals: - 8764: -1,21 - 8765: -5,19 - 8766: -1,20 - 8767: -1,19 - - node: - cleanable: True - color: '#FFFFFFFF' - id: burnt4 - decals: - 8756: -1,19 - 8757: -1,19 - 8758: -1,19 - 8779: -3,20 - - node: - cleanable: True - color: '#3C44AAFF' - id: engie - decals: - 7142: -4.9960647,-67.1205 - - node: - angle: 1.5707963267948966 rad - color: '#726F6AFF' - id: footprint - decals: - 5221: -47.178535,-13.143991 - 5224: -46.87943,-12.847696 - 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' - id: grasssnow - decals: - 4352: -46.01974,-50.080185 - - node: - color: '#FFFFFFFF' - id: grasssnow - decals: - 10162: 21.08367,-26.059422 - 10163: 21.882736,-26.075739 - - node: - cleanable: True - color: '#8600003C' - id: grasssnow08 - decals: - 4353: -46.285366,-48.923935 - - node: - cleanable: True - color: '#8600003C' - id: grasssnow13 - decals: - 4351: -42.115974,-49.834988 - - node: - cleanable: True - color: '#00FFFFFF' - id: guy - decals: - 8754: -4,19 - - node: - cleanable: True - color: '#1861D5FF' - id: matt - decals: - 6672: -0.026437283,63.13437 - - node: - cleanable: True - color: '#0E7F1BFF' - id: prolizard - decals: - 6669: -19.028715,63.085564 - - node: - cleanable: True - color: '#0E7F1BFF' - 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 - color: '#FF551CFF' - id: space - decals: - 2059: -29,-1 - - node: - cleanable: True - color: '#8600003C' - id: splatter - decals: - 4346: -43.60249,-49.354443 - - node: - cleanable: True - angle: 1.2740903539558606 rad - color: '#8600003C' - id: splatter - decals: - 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: - tiles: - 0,0: - 0: 26215 - 0,-1: - 0: 30577 - -1,0: - 0: 47935 - 0,1: - 0: 7 - 1: 4096 - 2: 40960 - -1,1: - 0: 15 - 1: 49152 - 2: 12288 - 0,2: - 0: 57360 - 2: 238 - -1,2: - 0: 15344 - 0,3: - 0: 61166 - -1,3: - 0: 62136 - 0,4: - 0: 61167 - 1,1: - 2: 30438 - 1,2: - 2: 255 - 0: 28672 - 1,3: - 0: 65535 - 1,0: - 2: 26214 - 1,4: - 0: 8191 - 1,-1: - 2: 58976 - 0: 2186 - 2,0: - 1: 30576 - 2,1: - 2: 8337 - 1: 3680 - 2,2: - 2: 4083 - 2,3: - 0: 65535 - 2,-1: - 2: 36864 - 1: 24576 - 0: 239 - 2,4: - 0: 36863 - 3,0: - 2: 4369 - 0: 52428 - 3,1: - 2: 4113 - 1: 256 - 0: 51404 - 3,2: - 2: 817 - 0: 3272 - 3,3: - 0: 65399 - 3,-1: - 2: 4096 - 0: 52479 - 3,4: - 0: 4095 - 4,0: - 0: 65535 - 4,1: - 0: 43775 - 4,2: - 0: 4912 - 2: 52416 - 4,3: - 0: 4369 - 2: 52428 - -4,0: - 0: 32767 - -4,-1: - 0: 65339 - -5,0: - 0: 52703 - -4,1: - 0: 49073 - -5,1: - 0: 64985 - -4,2: - 0: 48059 - -5,2: - 0: 65535 - -4,3: - 0: 12735 - -5,3: - 0: 51677 - -4,4: - 0: 46079 - -3,0: - 0: 3064 - -3,1: - 0: 65527 - -3,2: - 0: 65535 - -3,3: - 0: 2047 - -3,4: - 0: 28927 - -3,-1: - 0: 59235 - -2,0: - 0: 13090 - -2,2: - 0: 56820 - -2,3: - 0: 63076 - -2,1: - 0: 25122 - -2,4: - 0: 45951 - -1,-1: - 0: 65532 - -1,4: - 0: 45311 - -4,-4: - 0: 48059 - -5,-4: - 0: 48059 - -4,-3: - 0: 45755 - -5,-3: - 0: 43195 - -4,-2: - 0: 48123 - -5,-2: - 0: 57304 - -5,-1: - 0: 56541 - -4,-5: - 0: 11063 - -3,-4: - 0: 55739 - -3,-3: - 0: 12900 - 2: 32768 - -3,-2: - 0: 12528 - 2: 32768 - -3,-5: - 0: 44687 - -2,-4: - 0: 32819 - -2,-3: - 2: 61440 - 0: 136 - -2,-2: - 0: 240 - 2: 61440 - -2,-5: - 0: 4794 - -1,-4: - 0: 64989 - -1,-3: - 0: 7423 - -1,-2: - 0: 7420 - 0,-4: - 0: 62805 - 0,-3: - 0: 511 - 0,-2: - 0: 3581 - 1,-4: - 0: 17623 - 1,-2: - 0: 41718 - 1,-5: - 0: 21591 - 1,-3: - 0: 25668 - 2,-4: - 0: 2047 - 2,-3: - 0: 65535 - 2,-2: - 0: 61183 - 2,-5: - 0: 62079 - 3,-4: - 0: 61695 - 3,-3: - 0: 65535 - 3,-2: - 0: 65535 - 3,-5: - 0: 65295 - 4,-4: - 0: 62982 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - -4,-8: - 0: 63347 - -4,-9: - 0: 32767 - -5,-8: - 0: 56784 - -4,-7: - 0: 62463 - -5,-7: - 0: 64973 - -4,-6: - 0: 15295 - -5,-6: - 0: 65485 - -5,-5: - 0: 35471 - -3,-8: - 0: 62717 - -3,-7: - 0: 45311 - -3,-6: - 0: 33723 - -2,-8: - 0: 61681 - -2,-7: - 0: 3839 - -2,-6: - 0: 63931 - -2,-9: - 0: 56829 - -1,-8: - 0: 28912 - -1,-7: - 0: 2047 - -1,-6: - 0: 45567 - -1,-5: - 0: 51 - -1,-9: - 0: 56829 - 0,-8: - 0: 14576 - 0,-7: - 0: 4095 - 0,-6: - 0: 57599 - 0,-9: - 0: 57297 - 0,-5: - 0: 238 - 1,-8: - 0: 3002 - 1,-7: - 0: 12287 - 1,-6: - 0: 23671 - 1,-9: - 0: 41710 - 2,-8: - 0: 37819 - 2,-7: - 0: 4095 - 2,-6: - 0: 65535 - 2,-9: - 0: 14843 - 3,-8: - 0: 45311 - 3,-7: - 0: 15359 - 3,-6: - 0: 65535 - 3,-9: - 0: 39867 - 4,-8: - 0: 61559 - 4,-7: - 0: 6143 - 4,-6: - 0: 30583 - 4,-5: - 0: 65155 - -8,-4: - 0: 64440 - -8,-5: - 2: 12288 - 0: 32887 - -9,-4: - 0: 63731 - -8,-3: - 1: 272 - 0: 224 - 2: 8192 - -9,-3: - 1: 4080 - -8,-2: - 0: 58592 - -8,-1: - 2: 8736 - 0: 49152 - -7,-4: - 0: 45279 - -7,-3: - 0: 15289 - -7,-2: - 0: 48123 - -7,-1: - 0: 53695 - -7,-5: - 0: 61695 - -7,0: - 0: 32541 - -6,-4: - 0: 47347 - -6,-3: - 0: 7099 - -6,-2: - 0: 65535 - -6,-1: - 0: 61695 - -6,-5: - 0: 31903 - -6,0: - 0: 4095 - -8,-8: - 0: 65262 - -9,-8: - 2: 224 - 0: 61440 - -8,-7: - 0: 65407 - -9,-7: - 0: 64767 - -8,-6: - 0: 65295 - -9,-6: - 0: 56605 - -9,-5: - 0: 8653 - 2: 32768 - -8,-9: - 0: 26231 - -7,-7: - 0: 65422 - -7,-6: - 0: 65311 - -7,-8: - 0: 61166 - -6,-8: - 0: 57301 - -6,-7: - 0: 64781 - -6,-6: - 0: 64781 - -6,-9: - 0: 20479 - -5,-9: - 0: 65535 - -8,0: - 0: 36848 - -9,0: - 0: 4080 - -8,1: - 2: 115 - 0: 61440 - -9,1: - 2: 17614 - -8,2: - 0: 65535 - -8,3: - 2: 880 - 0: 32768 - -9,3: - 2: 3780 - -8,4: - 0: 24063 - -7,1: - 0: 59127 - -7,3: - 0: 30582 - -7,2: - 0: 61166 - -7,4: - 0: 47935 - -6,1: - 0: 65535 - -6,2: - 0: 65535 - -6,3: - 0: 4095 - -6,4: - 0: 46079 - -5,4: - 0: 56575 - -12,0: - 0: 4080 - -12,3: - 2: 7952 - -13,3: - 2: 752 - -12,4: - 2: 49 - 0: 136 - -12,1: - 2: 14 - -11,0: - 0: 12272 - -11,1: - 0: 34 - 2: 8 - -11,3: - 0: 8736 - 2: 2048 - -11,4: - 0: 255 - -10,0: - 0: 36848 - -10,1: - 2: 3 - 0: 136 - -10,3: - 2: 768 - 0: 34944 - -10,4: - 0: 255 - -9,4: - 0: 65535 - -9,2: - 2: 17476 - -12,-4: - 0: 60651 - -12,-5: - 0: 45056 - 2: 119 - -13,-4: - 0: 61024 - -11,-4: - 0: 62365 - -11,-5: - 0: 53263 - -10,-4: - 0: 61815 - -10,-5: - 0: 30479 - -10,-3: - 1: 2176 - -13,-8: - 0: 4095 - -12,-8: - 0: 61408 - -12,-7: - 0: 65535 - -13,-7: - 0: 52733 - -12,-6: - 0: 2047 - -13,-6: - 0: 3581 - -13,-5: - 2: 136 - 0: 57907 - -12,-9: - 0: 61166 - -11,-8: - 0: 49072 - -11,-7: - 0: 45875 - -11,-6: - 0: 28859 - -11,-9: - 0: 65535 - -10,-8: - 0: 57308 - -10,-7: - 0: 61644 - -10,-6: - 0: 65535 - -10,-9: - 0: 61182 - -4,-12: - 0: 15359 - -4,-13: - 0: 40413 - -5,-12: - 0: 56797 - -4,-11: - 0: 8191 - -5,-11: - 0: 36861 - -4,-10: - 0: 15291 - -5,-10: - 0: 64767 - -3,-12: - 0: 4095 - -3,-11: - 0: 8191 - -3,-10: - 0: 1911 - -3,-9: - 0: 3067 - -3,-13: - 0: 65535 - -2,-12: - 0: 36663 - -2,-11: - 0: 8191 - -2,-10: - 0: 7645 - -2,-13: - 0: 32631 - -1,-12: - 0: 65535 - -1,-11: - 0: 4095 - -1,-10: - 0: 35835 - 0,-12: - 0: 48955 - 0,-11: - 0: 39931 - 0,-10: - 0: 62399 - -8,-12: - 0: 61687 - -9,-12: - 0: 63231 - -8,-11: - 0: 4095 - -9,-11: - 0: 12287 - -8,-10: - 0: 30583 - -9,-10: - 0: 2039 - -9,-9: - 0: 255 - 2: 57344 - -7,-12: - 0: 29431 - -7,-11: - 0: 2047 - -7,-10: - 2: 21847 - -7,-9: - 2: 1877 - -7,-13: - 0: 30578 - -6,-12: - 0: 65535 - -6,-11: - 0: 45055 - -6,-10: - 0: 65279 - -5,-13: - 0: 52733 - -12,-12: - 0: 2510 - -13,-12: - 0: 32510 - -12,-11: - 0: 14557 - -13,-11: - 0: 61686 - -12,-10: - 0: 59583 - -13,-10: - 0: 4095 - -13,-9: - 0: 62702 - -12,-13: - 0: 60563 - -11,-12: - 0: 895 - -11,-11: - 0: 4095 - -11,-10: - 0: 65535 - -11,-13: - 0: 63288 - -10,-12: - 0: 30439 - -10,-11: - 0: 10103 - -10,-13: - 0: 29375 - -10,-10: - 0: 10922 - -9,-13: - 0: 12288 - 2: 2048 - -16,-8: - 0: 28608 - -17,-8: - 0: 35840 - -16,-7: - 0: 61167 - -17,-7: - 0: 12 - 2: 50176 - -16,-6: - 0: 61422 - -17,-6: - 0: 35840 - 2: 4 - -16,-5: - 0: 35023 - -17,-5: - 0: 12 - -15,-8: - 0: 15290 - -15,-7: - 0: 13107 - 2: 32768 - -15,-6: - 0: 9011 - -16,-4: - 0: 2184 - -15,-5: - 0: 54506 - -15,-9: - 0: 65527 - -15,-4: - 0: 56797 - -14,-7: - 2: 4369 - 0: 3276 - -14,-5: - 0: 63739 - -14,-8: - 0: 3822 - -14,-6: - 2: 273 - 0: 3276 - -14,-4: - 0: 65535 - -14,-9: - 0: 58620 - -16,-12: - 2: 19660 - -16,-13: - 1: 17026 - -16,-11: - 2: 3140 - -15,-12: - 2: 61438 - -15,-11: - 2: 3918 - -15,-13: - 1: 4612 - 2: 60608 - -15,-10: - 0: 24584 - -14,-11: - 2: 257 - 0: 17612 - -14,-10: - 0: 30543 - -14,-12: - 0: 49356 - -14,-13: - 0: 51424 - 2: 273 - -13,-13: - 0: 61160 - -16,-14: - 1: 2048 - -15,-15: - 2: 61440 - -15,-14: - 1: 40960 - 2: 2286 - -14,-15: - 2: 12288 - -14,-14: - 2: 12288 - 1: 18432 - -13,-14: - 1: 640 - -13,-15: - 2: 24576 - -12,-14: - 0: 65024 - 1: 8 - -12,-15: - 1: 4096 - -11,-14: - 0: 64256 - -11,-16: - 2: 58030 - -11,-17: - 2: 41646 - -11,-15: - 2: 2 - 1: 33920 - -10,-16: - 2: 58111 - -10,-14: - 0: 16368 - -10,-17: - 2: 62207 - -10,-15: - 0: 61152 - -9,-16: - 2: 767 - -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 - -6,-16: - 0: 65039 - -6,-15: - 0: 62719 - -6,-14: - 0: 36863 - -6,-13: - 0: 4095 - -5,-16: - 0: 56719 - -5,-15: - 0: 56569 - -5,-14: - 0: 40413 - -5,-17: - 0: 64187 - -4,-16: - 0: 56769 - -4,-15: - 0: 53756 - -4,-14: - 0: 49631 - -4,-17: - 0: 65473 - -3,-16: - 0: 46008 - -3,-15: - 0: 47167 - -3,-14: - 0: 62139 - -3,-17: - 0: 61872 - -2,-16: - 0: 3839 - -2,-15: - 0: 30567 - -2,-14: - 0: 28791 - -2,-17: - 0: 15097 - -1,-16: - 0: 3575 - -1,-15: - 0: 65535 - -1,-14: - 0: 65295 - -1,-13: - 0: 4095 - 0,-16: - 0: 41970 - 0,-14: - 0: 48043 - 0,-13: - 0: 39931 - 0,-17: - 0: 30583 - 0,-15: - 0: 36394 - 1,-16: - 0: 30560 - 1,-15: - 0: 63255 - 1,-14: - 0: 53745 - 1,-13: - 0: 64413 - 1,-17: - 2: 4369 - 1,-12: - 0: 65294 - 2,-15: - 0: 28672 - 2,-14: - 0: 54374 - 2,-13: - 0: 21525 - 2,-12: - 0: 21831 - 3,-15: - 0: 12800 - 3,-14: - 0: 14099 - 3,-13: - 0: 13111 - 3,-12: - 0: 14131 - 1,-11: - 0: 65535 - 1,-10: - 0: 61567 - 2,-11: - 0: 21877 - 2,-10: - 0: 16325 - 3,-11: - 0: 13111 - 3,-10: - 0: 36863 - 4,-10: - 0: 65521 - 4,-9: - 0: 29627 - 5,-8: - 0: 65535 - 5,-7: - 0: 40959 - 5,-6: - 0: 65535 - 5,-5: - 0: 65529 - 5,-9: - 0: 63231 - 5,-4: - 0: 5461 - 2: 49152 - 6,-8: - 0: 61678 - 6,-7: - 0: 3839 - 6,-5: - 0: 65508 - 6,-6: - 0: 61166 - 6,-4: - 0: 255 - 1: 12288 - 2: 49152 - 6,-9: - 0: 60637 - 7,-8: - 0: 57463 - 7,-7: - 0: 3839 - 7,-5: - 0: 61948 - 7,-9: - 0: 30557 - 7,-6: - 0: 61166 - 7,-4: - 0: 61133 - 8,-8: - 0: 61883 - 8,-7: - 0: 4095 - 8,-6: - 0: 62975 - 8,-5: - 0: 3839 - 5,-3: - 0: 4369 - 2: 17476 - 5,-2: - 0: 4369 - 2: 17476 - 5,-1: - 0: 4369 - 2: 17476 - 5,0: - 0: 4369 - 2: 50244 - 6,-3: - 3: 48 - 4: 12288 - 2: 34952 - 6,-2: - 5: 48 - 1: 12288 - 2: 34952 - 6,-1: - 1: 12336 - 2: 34952 - 6,0: - 2: 51336 - 1: 12336 - 7,-3: - 0: 61166 - 7,-2: - 0: 58606 - 7,-1: - 0: 61166 - 7,0: - 0: 61006 - 8,-4: - 0: 41979 - 8,-3: - 0: 2744 - 8,-2: - 0: 61167 - 8,-1: - 0: 4080 - 4,4: - 0: 273 - 2: 52428 - 5,1: - 0: 32753 - 5,2: - 2: 64880 - 5,3: - 2: 30583 - 5,4: - 2: 32767 - 6,1: - 0: 65520 - 6,2: - 0: 61167 - 6,3: - 0: 14 - 2: 1024 - 7,1: - 0: 36606 - 7,2: - 0: 26478 - 7,3: - 0: 18254 - 6,4: - 0: 200 - 2: 49971 - 7,4: - 0: 26230 - 8,2: - 0: 63270 - 8,3: - 0: 47935 - 8,0: - 0: 61166 - 9,-4: - 0: 28919 - 9,-3: - 0: 1911 - 9,-2: - 0: 57297 - 9,-1: - 0: 36848 - 9,0: - 0: 65531 - 10,-4: - 0: 65535 - 10,-3: - 0: 56799 - 10,-1: - 0: 65500 - 10,-2: - 0: 52428 - 10,-5: - 0: 52703 - 10,0: - 0: 56796 - 11,-4: - 0: 57309 - 11,-3: - 0: 57565 - 11,-2: - 0: 28430 - 11,-1: - 0: 65431 - 11,-5: - 0: 56797 - 11,0: - 0: 58031 - 12,-4: - 0: 65535 - 12,-3: - 0: 47551 - 12,-2: - 0: 44939 - 12,-1: - 0: 65359 - 8,1: - 0: 28174 - 8,4: - 0: 48059 - 9,1: - 0: 65295 - 9,2: - 0: 63343 - 9,3: - 0: 36615 - 9,4: - 0: 61182 - 10,1: - 0: 65485 - 10,2: - 0: 47919 - 10,3: - 0: 10799 - 10,4: - 0: 48059 - 11,1: - 0: 14574 - 11,2: - 0: 65423 - 11,3: - 0: 4063 - 11,4: - 0: 63487 - 12,0: - 0: 12407 - 12,1: - 0: 3003 - 12,2: - 0: 48927 - 12,3: - 0: 44943 - 8,-9: - 0: 47615 - 9,-8: - 0: 29559 - 9,-7: - 0: 1919 - 9,-6: - 0: 20222 - 9,-9: - 0: 28927 - 9,-5: - 0: 3822 - 10,-8: - 0: 65535 - 10,-7: - 0: 56575 - 10,-6: - 0: 56829 - 10,-9: - 0: 61695 - 11,-8: - 0: 63351 - 11,-7: - 0: 53631 - 11,-6: - 0: 56799 - 11,-9: - 0: 29425 - 12,-8: - 0: 65464 - 12,-7: - 0: 61183 - 12,-6: - 0: 65062 - 12,-5: - 0: 65535 - 5,-10: - 0: 65520 - 6,-10: - 0: 65528 - 7,-10: - 0: 8191 - 7,-12: - 0: 52940 - 7,-11: - 0: 52430 - 7,-13: - 0: 52430 - 8,-11: - 0: 4074 - 8,-10: - 0: 15291 - 7,-15: - 0: 50176 - 7,-14: - 0: 52876 - 8,-14: - 0: 30242 - 8,-12: - 0: 41642 - 8,-13: - 0: 58082 - 9,-12: - 0: 4113 - 2: 2248 - 9,-11: - 0: 4081 - 9,-10: - 0: 35771 - 9,-13: - 0: 4113 - 2: 35016 - 10,-12: - 2: 12287 - 10,-11: - 0: 36832 - 10,-10: - 0: 35771 - 10,-13: - 2: 12287 - 11,-12: - 2: 65535 - 11,-11: - 0: 16852 - 11,-10: - 0: 20814 - 11,-13: - 2: 61439 - 12,-12: - 2: 240 - 0: 57344 - 12,-11: - 0: 58622 - 12,-10: - 0: 47919 - 12,-9: - 0: 48059 - 9,-14: - 2: 35066 - 0: 4096 - 9,-16: - 2: 11776 - 9,-15: - 2: 43754 - 10,-16: - 2: 40704 - 10,-15: - 2: 12287 - 10,-14: - 2: 12287 - 11,-16: - 2: 3840 - 11,-15: - 2: 61439 - 11,-14: - 2: 61439 - 12,-16: - 2: 44800 - 12,-15: - 2: 36863 - 12,-14: - 2: 4095 - 12,-13: - 2: 240 - 13,-12: - 2: 48 - 0: 43656 - 13,-11: - 0: 63722 - 13,-10: - 0: 56717 - 13,-9: - 0: 64412 - 13,-8: - 0: 63259 - 13,-13: - 0: 34816 - 2: 52 - 14,-12: - 0: 4369 - 2: 3072 - 14,-11: - 0: 61713 - 14,-10: - 0: 16159 - 14,-9: - 0: 62463 - 14,-13: - 0: 65280 - 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: - 2: 49344 - 0: 3072 - 16,-10: - 2: 61680 - 0: 3840 - 16,-9: - 0: 255 - 2: 7936 - 13,-16: - 2: 36608 - 13,-15: - 2: 20479 - 13,-14: - 2: 20479 - 14,-16: - 2: 12032 - 14,-15: - 2: 20479 - 14,-14: - 2: 18423 - 15,-16: - 2: 12032 - 15,-15: - 2: 4095 - 16,-16: - 2: 7936 - 16,-15: - 2: 4095 - 17,-16: - 2: 40704 - 17,-15: - 2: 4095 - 18,-16: - 2: 18176 - 18,-15: - 2: 1397 - 13,-7: - 0: 30583 - 13,-6: - 0: 65399 - 13,-5: - 0: 63487 - 13,-4: - 0: 4095 - 14,-7: - 0: 30071 - 14,-6: - 0: 65407 - 14,-5: - 0: 28799 - 14,-4: - 0: 2039 - 15,-7: - 0: 65521 - 15,-6: - 0: 65295 - 15,-5: - 0: 61695 - 15,-4: - 0: 65535 - 13,-3: - 0: 61679 - 13,-2: - 0: 60971 - 13,-1: - 0: 65518 - 13,0: - 0: 20479 - 14,-3: - 0: 4215 - 2: 49152 - 14,-2: - 0: 13057 - 14,-1: - 0: 65535 - 14,0: - 0: 61135 - 15,-3: - 2: 64160 - 15,-1: - 0: 4086 - 15,-2: - 2: 2730 - 15,0: - 0: 30566 - 16,-4: - 0: 257 - 16,-2: - 2: 61440 - 16,-1: - 2: 35023 - 0: 9008 - 19,-8: - 0: 61183 - 19,-9: - 0: 62207 - 19,-7: - 0: 14 - 20,-8: - 0: 4403 - 2: 128 - 20,-7: - 0: 1 - 17,-10: - 2: 61680 - 0: 3840 - 17,-9: - 0: 255 - 2: 3840 - 18,-10: - 2: 28784 - 0: 3840 - 1: 32896 - 18,-9: - 0: 255 - 2: 1792 - 19,-10: - 1: 65520 - 20,-10: - 1: 13104 - 2: 34824 - 20,-9: - 0: 12799 - 2: 34816 - 21,-10: - 2: 3951 - 0: 61440 - 21,-9: - 0: 4027 - 2: 28672 - 21,-8: - 2: 1402 - 22,-10: - 2: 16 - 0: 4096 - 22,-9: - 0: 273 - 16,0: - 0: 13090 - 2: 34957 - 17,-2: - 2: 61440 - 17,-1: - 2: 255 - 18,-2: - 2: 61440 - 18,-1: - 2: 255 - 19,-2: - 2: 12288 - 19,-1: - 2: 55 - 4,5: - 0: 285 - 2: 17600 - 3,5: - 0: 3838 - 4,6: - 2: 4375 - 0: 52224 - 3,6: - 2: 65535 - 4,7: - 2: 273 - 0: 36044 - 3,7: - 2: 20479 - 5,5: - 2: 119 - 1: 29184 - 5,6: - 1: 7 - 0: 65280 - 5,7: - 0: 65535 - 5,8: - 0: 8738 - 2: 34944 - 6,6: - 0: 4352 - 2: 1024 - 6,7: - 0: 287 - 2: 1024 - 7,5: - 0: 65396 - 7,6: - 0: 45183 - 7,7: - 0: 65535 - 7,8: - 0: 61695 - 8,5: - 0: 65339 - 8,6: - 0: 56575 - 8,7: - 0: 56829 - 0,5: - 0: 3854 - -1,5: - 0: 4091 - 0,6: - 0: 30583 - -1,6: - 0: 65535 - 0,7: - 0: 30583 - -1,7: - 0: 65535 - 1,5: - 0: 7645 - 1,6: - 0: 4369 - 2: 3276 - 1,7: - 0: 45855 - 1,8: - 0: 65307 - 2,5: - 0: 35835 - 2,6: - 2: 65535 - 2,7: - 2: 15 - 0: 12288 - 2,8: - 0: 45827 - 3,8: - 2: 68 - 0: 28672 - -13,4: - 2: 128 - 0: 29491 - -12,5: - 2: 769 - 0: 34944 - -12,6: - 0: 30527 - -13,6: - 0: 57343 - -12,7: - 0: 30719 - -13,7: - 0: 65023 - -12,8: - 0: 36787 - -11,5: - 0: 65392 - -11,6: - 0: 28791 - -11,7: - 0: 2047 - -11,8: - 0: 32631 - -10,5: - 2: 7 - 0: 57088 - -10,6: - 0: 65392 - -10,7: - 0: 65535 - -10,8: - 0: 65295 - -9,5: - 0: 65534 - -9,6: - 0: 65534 - -9,7: - 0: 4095 - -9,8: - 0: 62702 - -8,5: - 0: 57296 - -8,6: - 0: 65488 - -8,7: - 0: 26623 - -7,5: - 0: 65336 - -7,6: - 0: 65394 - -7,7: - 0: 62719 - -7,8: - 0: 4095 - -6,5: - 0: 64443 - -6,6: - 0: 64267 - -6,7: - 0: 57535 - -6,8: - 0: 43774 - -5,5: - 0: 56797 - -5,6: - 0: 65485 - -5,7: - 0: 56575 - -5,8: - 0: 60669 - -4,5: - 0: 29627 - -4,6: - 0: 61777 - -4,7: - 0: 5407 - -4,8: - 0: 13107 - 2: 34952 - -3,5: - 0: 28799 - -3,6: - 0: 62071 - -3,7: - 0: 15 - 2: 1792 - -2,5: - 0: 15295 - -2,6: - 0: 48059 - -2,7: - 0: 48059 - -2,8: - 0: 63731 - -16,5: - 2: 32768 - -16,6: - 2: 34952 - -15,5: - 2: 4465 - -15,6: - 2: 3 - 0: 52360 - -16,7: - 2: 34952 - -15,7: - 2: 17 - 0: 52428 - -16,8: - 2: 2184 - -15,4: - 2: 65160 - -14,4: - 2: 4099 - 0: 51336 - -14,5: - 0: 4060 - -14,6: - 0: 65535 - -14,7: - 0: 65535 - -15,8: - 0: 136 - 2: 4400 - -14,3: - 2: 6640 - -14,8: - 0: 3839 - -13,5: - 0: 6007 - -13,8: - 0: 7679 - -12,9: - 0: 43578 - -13,9: - 0: 4095 - -12,10: - 0: 15291 - -13,10: - 0: 52428 - 2: 4369 - -12,11: - 0: 65535 - -13,11: - 0: 57308 - -12,12: - 0: 60942 - -11,9: - 0: 63239 - -11,10: - 0: 2039 - -11,11: - 0: 61182 - -11,12: - 0: 47886 - -10,9: - 0: 65535 - -10,10: - 0: 8191 - -10,11: - 0: 5403 - -10,12: - 0: 48015 - -9,9: - 0: 65519 - -9,10: - 0: 14335 - -9,11: - 0: 15159 - -9,12: - 0: 30591 - -8,9: - 0: 65295 - -8,10: - 0: 61695 - -8,11: - 0: 61167 - -8,8: - 0: 3808 - -8,12: - 0: 65391 - -7,9: - 0: 56591 - -7,10: - 0: 61663 - -7,11: - 0: 29695 - -7,12: - 0: 30211 - -6,9: - 0: 65307 - -6,10: - 0: 62719 - -6,11: - 0: 65535 - -6,12: - 0: 36771 - -5,9: - 0: 65230 - -5,10: - 0: 56559 - -5,11: - 0: 37343 - -4,9: - 0: 13107 - 2: 34952 - -4,10: - 0: 65395 - -4,11: - 0: 61695 - -5,12: - 0: 47544 - -4,12: - 0: 65535 - -3,9: - 2: 4096 - -3,10: - 2: 227 - 0: 61440 - -3,11: - 0: 58623 - -3,12: - 0: 61166 - -2,9: - 0: 15 - -2,10: - 2: 240 - 0: 61440 - -2,11: - 0: 14847 - -2,12: - 0: 65535 - -1,8: - 0: 58992 - -1,10: - 0: 63078 - -1,11: - 0: 26367 - -1,9: - 0: 26214 - -1,12: - 0: 26214 - 0,8: - 0: 65392 - 0,9: - 0: 65535 - 0,10: - 0: 61695 - 0,11: - 0: 64767 - 0,12: - 0: 65535 - 1,9: - 0: 65535 - 1,10: - 0: 63743 - 1,11: - 0: 45311 - 1,12: - 0: 48059 - 2,9: - 0: 15291 - 2,10: - 0: 63931 - 2,11: - 0: 62207 - 2,12: - 0: 65535 - 3,9: - 0: 14199 - 3,10: - 0: 65535 - 3,11: - 0: 61695 - 3,12: - 0: 65535 - 4,10: - 0: 61438 - 8,8: - 0: 60637 - 9,5: - 0: 65256 - 9,6: - 0: 58606 - 9,7: - 0: 61166 - 10,5: - 0: 46064 - 10,6: - 0: 53503 - 10,7: - 0: 56829 - 11,5: - 0: 41079 - 11,6: - 0: 47359 - 11,7: - 0: 16307 - 10,8: - 0: 52696 - 11,8: - 0: 65529 - 12,4: - 0: 65262 - 12,5: - 0: 43583 - 12,6: - 0: 48123 - 12,7: - 0: 4048 - 13,1: - 0: 20479 - 13,2: - 0: 56783 - 13,3: - 0: 5407 - 13,4: - 0: 4437 - 1: 49152 - 14,1: - 0: 61166 - 14,2: - 0: 61152 - 14,3: - 6: 2 - 7: 4 - 0: 8 - 2: 224 - 15,1: - 0: 30583 - 15,2: - 0: 30576 - 15,3: - 0: 1 - 8: 6 - 2: 240 - 16,1: - 0: 9011 - 2: 34956 - 16,2: - 2: 51341 - 0: 13090 - 16,3: - 2: 255 - 12,8: - 0: 65534 - 13,5: - 0: 29441 - 2: 12 - 13,6: - 0: 57463 - 13,7: - 0: 61166 - 13,8: - 0: 65535 - 14,5: - 2: 4369 - 14,6: - 2: 17427 - 0: 4096 - 14,7: - 0: 4369 - 2: 17476 - 14,8: - 0: 28945 - 2: 68 - 12,9: - 0: 65535 - 11,9: - 0: 65535 - 12,10: - 0: 7423 - 11,10: - 0: 61678 - 12,11: - 0: 65535 - 11,11: - 0: 62207 - 12,12: - 0: 56799 - 13,9: - 0: 65535 - 13,10: - 0: 4095 - 13,11: - 0: 62463 - 13,12: - 0: 7407 - 14,9: - 0: 6007 - 14,10: - 0: 35639 - 14,11: - 0: 61947 - 14,12: - 0: 12287 - 15,9: - 2: 12304 - 15,10: - 0: 65280 - 15,11: - 0: 57599 - 15,12: - 0: 3839 - 16,10: - 0: 53504 - 2: 64 - 16,11: - 0: 61663 - 8,9: - 0: 60654 - 7,9: - 0: 65535 - 8,10: - 0: 65534 - 7,10: - 0: 65534 - 8,11: - 0: 65521 - 7,11: - 0: 61160 - 8,12: - 0: 57300 - 9,10: - 0: 65531 - 9,8: - 0: 3808 - 9,9: - 0: 36590 - 9,11: - 0: 61152 - 10,9: - 0: 65535 - 10,10: - 0: 65524 - 10,11: - 0: 45532 - 9,12: - 0: 29688 - 9: 32768 - 10,12: - 0: 187 - 9: 28672 - 11,12: - 0: 65535 - 4,9: - 0: 57344 - 2: 136 - 4,11: - 0: 61166 - 4,12: - 0: 61166 - 4,8: - 2: 34944 - 5,9: - 0: 61986 - 2: 136 - 5,10: - 0: 65535 - 5,11: - 0: 65535 - 5,12: - 0: 65535 - 6,9: - 0: 28876 - 6,10: - 0: 32755 - 6,11: - 0: 65522 - 6,8: - 0: 49152 - 6,12: - 0: 61438 - 16,12: - 0: 4095 - 17,10: - 0: 65280 - 17,11: - 0: 63487 - 17,12: - 0: 32767 - 18,10: - 0: 63232 - 18,11: - 0: 52991 - 18,12: - 0: 60637 - 19,10: - 2: 50416 - 0: 4096 - 19,11: - 0: 13105 - 2: 34952 - 19,12: - 0: 13107 - 2: 34952 - 20,10: - 2: 17968 - 20,11: - 2: 20292 - 16,13: - 0: 3581 - 15,13: - 0: 65535 - 16,14: - 2: 49158 - 15,14: - 0: 4095 - 16,15: - 2: 116 - 15,15: - 2: 8946 - 17,13: - 0: 65535 - 17,14: - 2: 61984 - 17,15: - 2: 2 - 18,13: - 0: 32767 - 18,14: - 2: 61984 - 18,15: - 2: 2 - 19,13: - 0: 275 - 2: 19592 - 19,14: - 2: 62543 - 19,15: - 2: 4 - 20,12: - 2: 62532 - 20,14: - 2: 4403 - 20,13: - 2: 25668 - 12,13: - 0: 64733 - 11,13: - 0: 61695 - 12,14: - 0: 56799 - 11,14: - 0: 47887 - 12,15: - 0: 65481 - 11,15: - 0: 30491 - 12,16: - 0: 626 - 13,13: - 0: 65485 - 13,14: - 0: 7645 - 13,15: - 0: 57308 - 13,16: - 0: 797 - 2: 52224 - 14,13: - 0: 65535 - 14,14: - 0: 4095 - 14,15: - 0: 30583 - 14,16: - 0: 7 - 2: 65280 - 15,16: - 2: 13107 - 7,12: - 0: 61408 - 8,13: - 0: 57308 - 7,13: - 0: 65524 - 8,14: - 0: 54749 - 7,14: - 0: 65535 - 8,15: - 0: 65532 - 7,15: - 0: 65287 - 9,13: - 0: 62259 - 9: 136 - 9,14: - 0: 61695 - 9,15: - 0: 56607 - 8,16: - 0: 61176 - 10,13: - 9: 119 - 0: 61440 - 10,14: - 0: 64669 - 10,15: - 0: 57103 - 10,16: - 0: 12 - 2: 8720 - 11,16: - 0: 7 - 2: 41472 - 4,13: - 0: 44782 - 3,13: - 0: 65535 - 4,14: - 0: 61166 - 3,14: - 0: 65535 - 4,15: - 0: 65534 - 3,15: - 0: 16368 - 4,16: - 0: 65535 - 5,13: - 0: 4095 - 5,14: - 0: 61438 - 5,15: - 0: 40948 - 5,16: - 0: 63347 - 6,13: - 0: 58599 - 6,15: - 0: 65294 - 6,14: - 0: 61166 - 6,16: - 0: 64756 - 0,13: - 0: 45967 - -1,13: - 0: 61030 - 0,14: - 0: 56731 - -1,14: - 0: 48014 - 0,15: - 0: 40945 - -1,15: - 0: 48123 - 0,16: - 0: 7645 - 1,13: - 0: 47291 - 1,14: - 0: 49083 - 1,15: - 0: 36848 - 1,16: - 0: 3549 - 2,13: - 0: 65535 - 2,14: - 0: 65535 - 2,15: - 0: 53233 - 2,16: - 0: 63473 - 3,16: - 0: 64728 - -4,13: - 0: 30576 - -5,13: - 0: 63921 - -4,14: - 0: 47879 - -5,14: - 0: 47417 - -4,15: - 0: 64443 - -5,15: - 0: 64443 - -4,16: - 0: 14523 - -3,13: - 0: 65534 - -3,14: - 0: 65391 - -3,15: - 0: 65535 - -3,16: - 0: 20479 - -2,14: - 0: 47886 - -2,15: - 0: 48123 - -2,13: - 0: 61156 - -2,16: - 0: 33723 - -1,16: - 0: 63675 - 12,17: - 2: 61440 - 12,18: - 2: 52479 - 11,17: - 2: 64170 - 11,18: - 2: 43775 - 12,19: - 2: 36863 - 11,19: - 2: 45055 - 13,17: - 2: 63624 - 13,18: - 2: 39423 - 13,19: - 2: 36863 - 12,20: - 2: 15 - 14,17: - 2: 61998 - 14,18: - 2: 8959 - 14,19: - 2: 10231 - 13,20: - 2: 15 - 14,20: - 2: 15 - 15,17: - 2: 65059 - 15,18: - 2: 8191 - 15,19: - 2: 4369 - 15,20: - 2: 1 - 16,17: - 2: 13056 - 16,18: - 2: 819 - 7,16: - 0: 48048 - 8,17: - 2: 61712 - 7,17: - 0: 11 - 2: 61312 - 8,18: - 2: 255 - 7,18: - 2: 43758 - 8,19: - 2: 3840 - 7,19: - 2: 19663 - 9,16: - 0: 4368 - 2: 192 - 9,17: - 2: 61440 - 9,18: - 2: 255 - 9,19: - 2: 3840 - 10,17: - 2: 61986 - 10,18: - 2: 8959 - 10,19: - 2: 18402 - 10,20: - 2: 12 - 11,20: - 2: 15 - 4,17: - 0: 15 - 2: 3840 - 3,17: - 0: 4991 - 2: 32768 - 5,17: - 0: 2255 - 2: 8448 - 6,17: - 0: 13085 - 2: 34816 - 6,18: - 0: 13107 - 2: 34952 - 5,19: - 0: 8 - 6,19: - 0: 30579 - 6,20: - 0: 14199 - 7,20: - 2: 29764 - 0,17: - 0: 4061 - -1,17: - 0: 7679 - 1,17: - 0: 1911 - 1,19: - 2: 17484 - 1,20: - 2: 50244 - 2,17: - 0: 34823 - 2: 8960 - 1,18: - 2: 34952 - 2,19: - 2: 1 - 0: 52424 - 2,18: - 2: 8738 - 0: 34952 - 2,20: - 0: 36044 - 2: 4096 - 3,18: - 0: 4369 - 3,19: - 0: 4371 - 3,20: - 0: 12561 - -5,16: - 0: 62395 - -4,17: - 0: 61695 - -5,17: - 0: 30511 - -4,18: - 0: 35071 - -4,19: - 0: 8 - 2: 32768 - -3,17: - 0: 62718 - -3,18: - 0: 65535 - -3,19: - 0: 4095 - -2,17: - 0: 61694 - -2,18: - 0: 65535 - -2,19: - 0: 4095 - -1,18: - 0: 4369 - 2: 1092 - -1,19: - 0: 1 - 2: 4096 - 1,21: - 2: 34952 - 2,21: - 2: 65058 - 0: 8 - 2,22: - 2: 3311 - 3,21: - 0: 1 - 2: 768 - 3,22: - 2: 61696 - 4,22: - 2: 61440 - 5,22: - 2: 61440 - 5,20: - 0: 32768 - 6,21: - 0: 3 - 2: 61320 - 5,21: - 2: 2048 - 6,22: - 2: 6126 - 7,21: - 2: 12834 - 7,22: - 2: 1 - -16,10: - 2: 65535 - -17,10: - 2: 65519 - -16,11: - 2: 61455 - -17,11: - 2: 61999 - -16,12: - 2: 255 - -15,10: - 2: 65535 - -15,11: - 2: 64991 - -15,9: - 2: 52303 - -15,12: - 2: 56831 - -14,9: - 2: 257 - 0: 3276 - -14,10: - 2: 4369 - -14,11: - 2: 3 - 0: 36736 - -14,12: - 2: 4403 - 0: 49280 - -13,12: - 0: 64504 - -19,11: - 2: 52224 - -19,12: - 2: 3276 - -18,11: - 2: 63300 - -18,12: - 2: 18431 - -18,10: - 2: 50252 - -17,12: - 2: 8959 - -16,13: - 2: 4095 - -17,13: - 2: 12287 - -16,14: - 2: 15 - -17,14: - 2: 15 - -15,13: - 2: 8191 - -15,14: - 2: 15 - 0: 32768 - -15,15: - 0: 2184 - -14,13: - 2: 273 - 0: 1036 - -14,14: - 0: 28774 - -14,15: - 0: 32631 - -13,13: - 0: 64318 - -13,14: - 0: 47803 - -13,15: - 0: 43939 - -13,16: - 0: 61683 - -12,13: - 0: 45966 - -12,14: - 0: 65439 - -12,15: - 0: 56793 - -11,13: - 0: 63935 - -11,14: - 0: 65339 - -11,15: - 0: 26212 - -10,13: - 0: 49151 - -10,14: - 0: 65419 - -10,15: - 0: 2187 - 2: 4864 - -10,16: - 2: 4369 - 0: 52428 - -9,13: - 0: 29683 - -9,14: - 0: 65399 - -9,15: - 0: 1871 - -9,16: - 0: 65535 - -8,13: - 0: 65278 - -8,14: - 0: 63247 - -8,15: - 0: 50439 - -18,13: - 2: 17604 - -18,14: - 2: 12 - -8,16: - 0: 52428 - -7,13: - 0: 56784 - -7,14: - 0: 63237 - -7,15: - 0: 29431 - -7,16: - 0: 13175 - -6,13: - 0: 61875 - -6,14: - 0: 61872 - -6,15: - 0: 39864 - -6,16: - 0: 1395 - 2: 16384 - -14,17: - 0: 61132 - -14,18: - 0: 52462 - -14,16: - 2: 1088 - -13,17: - 0: 65535 - -13,18: - 0: 65535 - -13,19: - 0: 15 - -12,16: - 0: 1776 - -12,17: - 0: 30527 - -12,18: - 0: 13175 - 2: 32768 - -11,16: - 0: 29808 - -11,17: - 0: 30071 - -11,18: - 0: 127 - 2: 28672 - -10,17: - 2: 3857 - 0: 12 - -10,18: - 0: 20415 - -10,19: - 0: 61439 - -9,17: - 0: 15 - 2: 3840 - -9,18: - 0: 1887 - -9,19: - 0: 273 - 2: 1024 - -8,17: - 2: 256 - 0: 3276 - -8,18: - 0: 65535 - -8,19: - 0: 53205 - -7,17: - 0: 819 - -7,18: - 0: 4383 - 2: 17408 - -7,19: - 0: 13105 - -6,18: - 0: 15 - 2: 32768 - -6,17: - 2: 1092 - -5,18: - 0: 631 - -6,19: - 2: 8 - 17,2: - 2: 61440 - 17,3: - 2: 255 - 18,2: - 2: 61440 - 18,3: - 2: 255 - 19,2: - 2: 12288 - 19,3: - 2: 55 - -4,-19: - 0: 20480 - -4,-18: - 0: 65367 - -5,-18: - 0: 47872 - 2: 4 - -3,-18: - 0: 29495 - -2,-18: - 0: 61440 - -1,-18: - 0: 65280 - -1,-17: - 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 - -11,-18: - 2: 41696 - -10,-18: - 2: 62192 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - immutable: True - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.823984 - - 82.09976 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.813705 - - 82.06108 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 235 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - - type: BecomesStation - id: Cog - - 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 - components: - - type: Transform - parent: 12708 - - type: EntityTargetAction - container: 12708 -- proto: ActionToggleBlock - entities: - - uid: 11047 - components: - - type: Transform - parent: 4565 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 4565 - - uid: 19882 - components: - - type: Transform - parent: 20850 - - type: InstantAction - container: 20850 - - uid: 20777 - components: - - type: Transform - parent: 20873 - - type: InstantAction - container: 20873 - - uid: 31202 - components: - - type: Transform - parent: 31201 - - type: InstantAction - container: 31201 -- proto: ActionToggleInternals - entities: - - uid: 899 - components: - - type: Transform - parent: 28460 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 28460 - - uid: 2687 - components: - - type: Transform - parent: 30709 - - type: InstantAction - container: 30709 - - uid: 3128 - components: - - type: Transform - parent: 5894 - - type: InstantAction - container: 5894 - - uid: 4142 - components: - - type: Transform - parent: 5895 - - type: InstantAction - container: 5895 - - uid: 6678 - components: - - type: Transform - parent: 31675 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 31675 - - uid: 6679 - components: - - type: Transform - parent: 31364 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 31364 - - uid: 9757 - components: - - type: Transform - parent: 2921 - - type: InstantAction - container: 2921 - - uid: 9827 - components: - - type: Transform - parent: 2922 - - type: InstantAction - container: 2922 - - uid: 11199 - components: - - type: Transform - parent: 11126 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 11126 - - uid: 12128 - components: - - type: Transform - parent: 23717 - - type: InstantAction - container: 23717 - - uid: 27130 - components: - - type: Transform - parent: 27129 - - type: InstantAction - container: 27129 - - uid: 28700 - components: - - type: Transform - parent: 28698 - - type: InstantAction - container: 28698 - - uid: 30712 - components: - - type: Transform - parent: 30711 - - type: InstantAction - container: 30711 - - uid: 31737 - components: - - type: Transform - parent: 30710 - - type: InstantAction - container: 30710 - - uid: 31738 - components: - - type: Transform - parent: 30713 - - type: InstantAction - container: 30713 -- proto: ActionToggleJetpack - entities: - - uid: 28699 - components: - - type: Transform - parent: 28698 - - type: InstantAction - 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 - parent: 10388 - - type: InstantAction - container: 10388 - - uid: 5597 - components: - - type: Transform - parent: 10389 - - type: InstantAction - container: 10389 - - uid: 8998 - components: - - type: Transform - parent: 8997 - - type: InstantAction - container: 8997 - - uid: 9392 - components: - - type: Transform - parent: 8999 - - type: InstantAction - container: 8999 - - uid: 12036 - components: - - type: Transform - parent: 4313 - - type: InstantAction - container: 4313 - - uid: 12037 - components: - - type: Transform - parent: 12064 - - type: InstantAction - container: 12064 - - uid: 18678 - components: - - type: Transform - parent: 18677 - - type: InstantAction - container: 18677 - - uid: 18680 - components: - - type: Transform - parent: 18679 - - type: InstantAction - container: 18679 - - uid: 19657 - components: - - type: Transform - parent: 16708 - - type: InstantAction - container: 16708 - - uid: 21292 - components: - - type: Transform - parent: 21291 - - type: InstantAction - container: 21291 - - uid: 22203 - components: - - type: Transform - parent: 22202 - - type: InstantAction - container: 22202 - - uid: 30348 - components: - - type: Transform - parent: 30347 - - type: InstantAction - container: 30347 -- proto: AirAlarm - entities: - - uid: 70 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,53.5 - parent: 12 - - type: DeviceList - devices: - - 11460 - - 20124 - - 20125 - - 246 - - 62 - - 7558 - - 27108 - - 7560 - - uid: 328 - components: - - type: Transform - pos: 56.5,65.5 - parent: 12 - - type: DeviceList - devices: - - 616 - - uid: 377 - components: - - type: Transform - pos: -19.5,-57.5 - parent: 12 - - type: DeviceList - devices: - - 2760 - - 2759 - - 28344 - - 3996 - - 3995 - - 2761 - - 2762 - - 3994 - - 28345 - - uid: 448 - components: - - type: Transform - pos: 31.5,1.5 - parent: 12 - - type: DeviceList - devices: - - 10811 - - 5298 - - 9485 - - 9303 - - 23891 - - 9302 - - uid: 449 - components: - - type: Transform - pos: -18.5,12.5 - parent: 12 - - type: DeviceList - devices: - - 15907 - - 23916 - - 15699 - - 15701 - - 23915 - - 23914 - - 16408 - - 16409 - - 16490 - - 15858 - - 15807 - - 15901 - - 10199 - - 16492 - - 16530 - - 9646 - - 15908 - - 15909 - - 15840 - - 16491 - - 15893 - - uid: 450 - components: - - type: Transform - pos: 22.5,-19.5 - parent: 12 - - type: DeviceList - devices: - - 5585 - - 10012 - - 9315 - - 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 - pos: -47.5,-37.5 - parent: 12 - - type: DeviceList - devices: - - 2076 - - 2077 - - 26245 - - 1136 - - 2098 - - 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 - pos: 32.5,-12.5 - parent: 12 - - type: DeviceList - devices: - - 9479 - - 5281 - - 10002 - - 9302 - - 4266 - - 9305 - - uid: 1375 - components: - - type: Transform - pos: 38.5,5.5 - parent: 12 - - type: DeviceList - devices: - - 2416 - - 2680 - - 6291 - - uid: 1699 - components: - - type: Transform - pos: -44.5,-21.5 - parent: 12 - - type: DeviceList - devices: - - 23933 - - 9989 - - 1137 - - 1138 - - 2099 - - 2079 - - 23934 - - uid: 2025 - components: - - type: Transform - pos: 12.5,19.5 - parent: 12 - - type: DeviceList - devices: - - 9719 - - uid: 2089 - components: - - type: Transform - pos: -28.5,-19.5 - parent: 12 - - type: DeviceList - devices: - - 1211 - - 1244 - - 2101 - - 1275 - - 2082 - - uid: 2545 - components: - - type: Transform - pos: -20.5,-32.5 - parent: 12 - - type: DeviceList - devices: - - 3634 - - 3635 - - 3555 - - 3584 - - 4087 - - 9977 - - 9976 - - uid: 2611 - components: - - type: Transform - pos: 43.5,22.5 - parent: 12 - - type: DeviceList - devices: - - 12838 - - 12839 - - 2612 - - 12341 - - 12343 - - uid: 2614 - components: - - type: Transform - pos: -15.5,-9.5 - parent: 12 - - type: DeviceList - devices: - - 9332 - - 4417 - - 28342 - - 10072 - - 10073 - - 9329 - - 9330 - - uid: 2629 - components: - - type: Transform - pos: -36.5,-18.5 - parent: 12 - - type: DeviceList - devices: - - 1217 - - 2100 - - 1250 - - 2081 - - uid: 2852 - components: - - type: Transform - pos: 29.5,-36.5 - parent: 12 - - type: DeviceList - devices: - - 4155 - - 2824 - - 6175 - - 6005 - - 23935 - - 23936 - - 6812 - - 6783 - - 6815 - - 6816 - - 6283 - - 6978 - - 6979 - - 28379 - - 28380 - - uid: 2857 - components: - - type: Transform - pos: -14.5,24.5 - parent: 12 - - type: DeviceList - devices: - - 15699 - - 15701 - - 23906 - - 23907 - - 23908 - - 23909 - - 16632 - - 16631 - - 15702 - - 15700 - - 16633 - - 16634 - - 16635 - - 16636 - - 19846 - - uid: 2966 - components: - - type: Transform - pos: 10.5,19.5 - parent: 12 - - type: DeviceList - devices: - - 2023 - - uid: 3224 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-12.5 - parent: 12 - - uid: 3983 - components: - - type: Transform - pos: 16.5,6.5 - parent: 12 - - type: DeviceList - devices: - - 28143 - - 31992 - - 31991 - - 31990 - - 28936 - - 27970 - - 27965 - - 27957 - - 31993 - - 31994 - - 31995 - - uid: 4418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-29.5 - parent: 12 - - type: DeviceList - devices: - - 23928 - - 7460 - - 7459 - - 7389 - - 7388 - - 7390 - - 19173 - - 26312 - - 28364 - - 29393 - - uid: 4906 - components: - - type: Transform - pos: 38.5,-0.5 - parent: 12 - - type: DeviceList - devices: - - 9303 - - 10811 - - 5298 - - 6709 - - 5011 - - 2679 - - 28904 - - uid: 5098 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-30.5 - parent: 12 - - type: DeviceList - devices: - - 9434 - - 9449 - - 5197 - - 2083 - - 5030 - - uid: 5109 - components: - - type: Transform - pos: -19.5,-26.5 - parent: 12 - - type: DeviceList - devices: - - 11314 - - 5030 - - 5111 - - 11209 - - 9436 - - uid: 6833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-30.5 - parent: 12 - - type: DeviceList - devices: - - 26161 - - 1553 - - 7458 - - 7616 - - 7615 - - 7618 - - 7617 - - 8916 - - 8597 - - 8540 - - 27072 - - uid: 7342 - components: - - type: Transform - pos: 44.5,-9.5 - parent: 12 - - type: DeviceList - devices: - - 8460 - - 4566 - - 2674 - - 7357 - - 8985 - - 8980 - - 29111 - - 24427 - - 7388 - - 29393 - - 7389 - - 2348 - - 8986 - - uid: 8504 - components: - - type: Transform - pos: 61.5,-17.5 - parent: 12 - - type: DeviceList - devices: - - 1553 - - 25548 - - 4203 - - 8515 - - 6744 - - 2909 - - 346 - - 8673 - - uid: 8914 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-33.5 - parent: 12 - - type: DeviceList - devices: - - 8923 - - 8924 - - 8538 - - 7462 - - 9114 - - 7461 - - 26319 - - 26314 - - 27072 - - uid: 8971 - components: - - type: Transform - pos: -9.5,-44.5 - parent: 12 - - type: DeviceList - devices: - - 2828 - - 10538 - - 26118 - - 7519 - - 11462 - - 4002 - - 2613 - - 4004 - - 4005 - - 4006 - - uid: 9101 - components: - - type: Transform - pos: 34.5,13.5 - parent: 12 - - type: DeviceList - devices: - - 12340 - - 8306 - - 7820 - - 27889 - - 25677 - - 30441 - - 30449 - - 27918 - - 29100 - - uid: 9142 - components: - - type: Transform - pos: 62.5,8.5 - parent: 12 - - type: DeviceList - devices: - - 9717 - - 5887 - - 7547 - - 2020 - - 630 - - uid: 9702 - components: - - type: Transform - pos: -11.5,3.5 - parent: 12 - - type: DeviceList - devices: - - 16702 - - 9329 - - 9330 - - 23918 - - 23914 - - 23915 - - 21640 - - 6205 - - 21889 - - 21519 - - 10509 - - 21943 - - 21944 - - uid: 9972 - components: - - type: Transform - pos: -35.5,-33.5 - parent: 12 - - type: DeviceList - devices: - - 1136 - - 2098 - - 2097 - - 1135 - - 1146 - - 1226 - - 2102 - - 1220 - - 2083 - - 2084 - - 2082 - - 2081 - - 2080 - - 2077 - - 2075 - - 29867 - - uid: 9974 - components: - - type: Transform - pos: -12.5,-57.5 - parent: 12 - - type: DeviceList - devices: - - 2754 - - 10457 - - 2755 - - 9983 - - 10450 - - 3997 - - 6753 - - 2686 - - uid: 9975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-38.5 - parent: 12 - - type: DeviceList - devices: - - 3519 - - 3725 - - 9979 - - 9980 - - 9981 - - uid: 9984 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-48.5 - parent: 12 - - type: DeviceList - devices: - - 2760 - - 2759 - - 3533 - - 2762 - - 3584 - - 7327 - - 8303 - - 30260 - - 29095 - - uid: 10018 - components: - - type: Transform - pos: 31.5,-17.5 - parent: 12 - - type: DeviceList - devices: - - 10005 - - 10006 - - 10004 - - 9310 - - 379 - - uid: 10019 - components: - - type: Transform - pos: 23.5,-15.5 - parent: 12 - - type: DeviceList - devices: - - 9315 - - 9314 - - 9318 - - 9305 - - 9310 - - 9311 - - 5280 - - 10003 - - 10026 - - uid: 10201 - components: - - type: Transform - pos: 11.5,-18.5 - parent: 12 - - type: DeviceList - devices: - - 5254 - - 5309 - - 9322 - - 9321 - - 10013 - - 9320 - - uid: 11505 - components: - - type: Transform - pos: 30.5,7.5 - parent: 12 - - type: DeviceList - devices: - - 12232 - - 12231 - - 31515 - - 23891 - - 31516 - - 31517 - - uid: 12032 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-24.5 - parent: 12 - - type: DeviceList - devices: - - 801 - - 9988 - - 9987 - - 800 - - uid: 12273 - components: - - type: Transform - pos: 2.5,21.5 - parent: 12 - - type: DeviceList - devices: - - 11341 - - 6735 - - 2516 - - 2604 - - 3702 - - 1537 - - uid: 12578 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,46.5 - parent: 12 - - type: DeviceList - devices: - - 14094 - - 24191 - - 14090 - - 14477 - - 23748 - - 23747 - - 23749 - - uid: 13076 - components: - - type: Transform - pos: 39.5,32.5 - parent: 12 - - type: DeviceList - devices: - - 12735 - - 13302 - - 12730 - - 13173 - - 13222 - - uid: 13303 - components: - - type: Transform - pos: 55.5,43.5 - parent: 12 - - type: DeviceList - devices: - - 12732 - - 12737 - - 12733 - - 13246 - - 13262 - - 12734 - - 12739 - - 13307 - - 13165 - - 13306 - - 13292 - - 13297 - - uid: 13750 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,27.5 - parent: 12 - - type: DeviceList - devices: - - 13674 - - 13589 - - 13752 - - uid: 13751 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,30.5 - parent: 12 - - type: DeviceList - devices: - - 13582 - - 13753 - - 14973 - - 13592 - - 13593 - - uid: 13943 - components: - - type: Transform - pos: 26.5,38.5 - parent: 12 - - type: DeviceList - devices: - - 13925 - - 13923 - - 13944 - - 13863 - - uid: 16496 - components: - - type: Transform - pos: -28.5,19.5 - parent: 12 - - type: DeviceList - devices: - - 15876 - - 15872 - - 16495 - - uid: 16497 - components: - - type: Transform - pos: -32.5,3.5 - parent: 12 - - type: DeviceList - devices: - - 15860 - - 15806 - - 16405 - - 15909 - - 15908 - - 10288 - - 10287 - - uid: 16499 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,7.5 - parent: 12 - - type: DeviceList - devices: - - 16489 - - uid: 18884 - components: - - type: Transform - pos: -41.5,26.5 - parent: 12 - - type: DeviceList - devices: - - 18885 - - 18751 - - 15873 - - 15877 - - 18886 - - 17643 - - 18848 - - uid: 18887 - components: - - type: Transform - pos: -53.5,35.5 - parent: 12 - - type: DeviceList - devices: - - 18893 - - 18790 - - 18791 - - 18834 - - 18891 - - 18776 - - 17653 - - 17651 - - 17652 - - 17656 - - 17655 - - 17654 - - uid: 18888 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,31.5 - parent: 12 - - type: DeviceList - devices: - - 18736 - - 18889 - - 18799 - - 18813 - - 18890 - - 18752 - - 18755 - - 18892 - - uid: 20779 - components: - - type: Transform - pos: -34.5,69.5 - parent: 12 - - type: DeviceList - devices: - - 20843 - - 20844 - - 20105 - - 20106 - - 7350 - - uid: 20784 - components: - - type: Transform - pos: 46.5,-6.5 - parent: 12 - - type: DeviceList - devices: - - 26327 - - 26569 - - 8461 - - uid: 22005 - components: - - type: Transform - pos: 11.5,-13.5 - parent: 12 - - type: DeviceList - devices: - - 7529 - - 9321 - - 7229 - - 5316 - - 617 - - 4938 - - uid: 22248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-5.5 - parent: 12 - - type: DeviceList - devices: - - 22250 - - 22247 - - 22246 - - 22249 - - 22245 - - 22244 - - uid: 22393 - components: - - type: Transform - pos: -4.5,52.5 - parent: 12 - - uid: 22398 - components: - - type: Transform - pos: -10.5,67.5 - parent: 12 - - type: DeviceList - devices: - - 22397 - - 21804 - - 21802 - - 19746 - - 21807 - - 21806 - - 22395 - - 19739 - - 21805 - - 21803 - - 22396 - - 19738 - - 19813 - - 19742 - - 19741 - - 19740 - - uid: 22582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,39.5 - parent: 12 - - type: DeviceList - devices: - - 22579 - - 22548 - - 22550 - - 22581 - - 22583 - - 22521 - - 22523 - - 15783 - - uid: 22815 - components: - - type: Transform - pos: 61.5,46.5 - parent: 12 - - type: DeviceList - devices: - - 24112 - - 32358 - - 24190 - - uid: 23594 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,66.5 - parent: 12 - - type: DeviceList - devices: - - 14558 - - 14561 - - 14559 - - 14557 - - 14587 - - 14588 - - 14524 - - 14525 - - 23624 - - 23193 - - 23192 - - 23623 - - 23263 - - 23261 - - 15420 - - 23264 - - 23262 - - 14622 - - 14553 - - uid: 23625 - components: - - type: Transform - pos: 23.5,60.5 - parent: 12 - - type: DeviceList - devices: - - 20983 - - 23592 - - 20984 - - 14524 - - 14525 - - 14558 - - uid: 23626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,51.5 - parent: 12 - - type: DeviceList - devices: - - 22813 - - 22812 - - 23396 - - 20956 - - 14588 - - 14587 - - 14619 - - 14620 - - 17133 - - 17134 - - 20962 - - 14486 - - 14483 - - uid: 23630 - components: - - type: Transform - pos: 7.5,60.5 - parent: 12 - - type: DeviceList - devices: - - 23629 - - 23398 - - 23628 - - 23397 - - 23400 - - 23399 - - 20029 - - 23627 - - 14618 - - 21567 - - 22718 - - 23633 - - 23634 - - uid: 23632 - components: - - type: Transform - pos: 2.5,53.5 - parent: 12 - - type: DeviceList - devices: - - 17132 - - 17131 - - 22591 - - 22590 - - 23631 - - uid: 23635 - components: - - type: Transform - pos: 28.5,61.5 - parent: 12 - - type: DeviceList - devices: - - 14486 - - 14484 - - 14485 - - 20980 - - 21010 - - 23636 - - uid: 23639 - components: - - type: Transform - pos: 39.5,50.5 - parent: 12 - - type: DeviceList - devices: - - 23640 - - 21019 - - 21006 - - uid: 23643 - components: - - type: Transform - pos: 35.5,44.5 - parent: 12 - - type: DeviceList - devices: - - 24082 - - 24083 - - 14478 - - 14477 - - 14479 - - 14089 - - 14088 - - 13165 - - 13307 - - 14481 - - 14480 - - 17134 - - 17133 - - 13863 - - 14959 - - 13824 - - 23644 - - 13946 - - 13945 - - uid: 23786 - components: - - type: Transform - pos: -33.5,52.5 - parent: 12 - - type: DeviceList - devices: - - 20006 - - 20010 - - 23788 - - 21374 - - 21373 - - 23789 - - 22332 - - 22331 - - 23787 - - 23790 - - uid: 23791 - components: - - type: Transform - pos: -39.5,61.5 - parent: 12 - - type: DeviceList - devices: - - 19431 - - 19430 - - 23795 - - 19338 - - 19339 - - 20344 - - 19394 - - 19397 - - 23794 - - 20345 - - 19393 - - 19396 - - 23792 - - 19290 - - 19395 - - 19392 - - 23793 - - 19289 - - 245 - - 246 - - 26113 - - uid: 23796 - components: - - type: Transform - pos: -45.5,53.5 - parent: 12 - - type: DeviceList - devices: - - 11460 - - 245 - - 20127 - - 23798 - - 20126 - - uid: 23800 - components: - - type: Transform - pos: -41.5,43.5 - parent: 12 - - type: DeviceList - devices: - - 20012 - - 20002 - - 20333 - - 20334 - - 23808 - - uid: 23804 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,33.5 - parent: 12 - - type: DeviceList - devices: - - 18814 - - 18827 - - 23801 - - 17648 - - 17649 - - uid: 23809 - components: - - type: Transform - pos: -37.5,43.5 - parent: 12 - - type: DeviceList - devices: - - 23803 - - 20008 - - 20003 - - 23810 - - 20336 - - 20335 - - 20334 - - 20333 - - 20337 - - 20775 - - 15732 - - 17653 - - 17651 - - 17652 - - 17656 - - 17655 - - 17654 - - 17648 - - 23812 - - uid: 23811 - components: - - type: Transform - pos: -22.5,42.5 - parent: 12 - - type: DeviceList - devices: - - 23810 - - 20009 - - 20004 - - 23814 - - 23813 - - 23812 - - 15733 - - uid: 24184 - components: - - type: Transform - pos: 72.5,50.5 - parent: 12 - - type: DeviceList - devices: - - 23750 - - 23747 - - 23748 - - 23751 - - 23752 - - 23753 - - 23756 - - 23754 - - 23755 - - 24008 - - 23997 - - 24185 - - 23986 - - 23996 - - 32354 - - 32353 - - 23641 - - 23957 - - 23944 - - 24007 - - 24002 - - uid: 24187 - components: - - type: Transform - pos: 59.5,59.5 - parent: 12 - - type: DeviceList - devices: - - 23749 - - 19880 - - 23943 - - 14476 - - 24188 - - 23750 - - 32328 - - 32340 - - 32341 - - uid: 25448 - components: - - type: Transform - pos: -30.5,-40.5 - parent: 12 - - type: DeviceList - devices: - - 25372 - - 3992 - - 3988 - - 1313 - - 1306 - - 2094 - - 25373 - - 12725 - - 13837 - - uid: 25516 - components: - - type: Transform - pos: -15.5,52.5 - parent: 12 - - type: DeviceList - devices: - - 22592 - - 19752 - - 19747 - - 2201 - - 19749 - - 4153 - - uid: 26792 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,5.5 - parent: 12 - - type: DeviceList - devices: - - 6212 - - 28752 - - uid: 27296 - components: - - type: Transform - pos: 0.5,-31.5 - parent: 12 - - type: DeviceList - devices: - - 30503 - - 9606 - - 5379 - - 4723 - - 26054 - - 28356 - - 21081 - - 27272 - - 4855 - - 17577 - - 9979 - - 3725 - - 30504 - - 25097 - - 27280 - - 4009 - - 4011 - - uid: 27311 - components: - - type: Transform - pos: 52.5,3.5 - parent: 12 - - type: DeviceList - devices: - - 2501 - - 2020 - - 26923 - - 609 - - 2034 - - 26790 - - 15130 - - 22142 - - 630 - - uid: 27312 - components: - - type: Transform - pos: 52.5,7.5 - parent: 12 - - type: DeviceList - devices: - - 26923 - - 7789 - - 27005 - - 20793 - - uid: 28270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,37.5 - parent: 12 - - type: DeviceList - devices: - - 23814 - - 23817 - - 19750 - - 19751 - - 18638 - - 18637 - - 18636 - - 18645 - - 18646 - - 18639 - - 18644 - - 16635 - - 16634 - - 16633 - - 26331 - - 26330 - - 28334 - - 28335 - - uid: 28271 - components: - - type: Transform - pos: 45.5,57.5 - parent: 12 - - type: DeviceList - devices: - - 28272 - - 4523 - - 23941 - - 24083 - - 24082 - - 23943 - - 14476 - - 14475 - - 26899 - - 14472 - - 14471 - - uid: 28328 - components: - - type: Transform - pos: 48.5,64.5 - parent: 12 - - type: DeviceList - devices: - - 23093 - - 28329 - - 14475 - - 616 - - 708 - - 5873 - - uid: 28330 - components: - - type: Transform - pos: 20.5,32.5 - parent: 12 - - type: DeviceList - devices: - - 13674 - - 13589 - - 13752 - - 13748 - - 13592 - - uid: 28331 - components: - - type: Transform - pos: 6.5,46.5 - parent: 12 - - type: DeviceList - devices: - - 18638 - - 18637 - - 18636 - - 17131 - - 17132 - - 22521 - - 22523 - - 14618 - - 14619 - - 14620 - - 26333 - - 26332 - - 28332 - - uid: 28337 - components: - - type: Transform - pos: -8.5,29.5 - parent: 12 - - type: DeviceList - devices: - - 16379 - - 16636 - - 19846 - - 26328 - - 26329 - - 28338 - - 15655 - - 15656 - - 15653 - - 15654 - - uid: 28339 - components: - - type: Transform - pos: -22.5,30.5 - parent: 12 - - type: DeviceList - devices: - - 15702 - - 15700 - - 28341 - - 21057 - - 21058 - - 20772 - - 17647 - - 17646 - - 28340 - - 23911 - - uid: 28343 - components: - - type: Transform - pos: -40.5,-46.5 - parent: 12 - - type: DeviceList - devices: - - 2096 - - 1117 - - 1134 - - 2075 - - 3986 - - 2073 - - 2074 - - 610 - - 993 - - 994 - - 2095 - - uid: 28354 - components: - - type: Transform - pos: -0.5,-48.5 - parent: 12 - - type: DeviceList - devices: - - 27285 - - 28357 - - 20790 - - 2727 - - 4006 - - 27291 - - 2695 - - 26128 - - 4007 - - 9605 - - uid: 28358 - components: - - type: Transform - pos: 4.5,-37.5 - parent: 12 - - type: DeviceList - devices: - - 4008 - - 4010 - - 4011 - - 9980 - - uid: 28360 - components: - - type: Transform - pos: -4.5,-24.5 - parent: 12 - - type: DeviceList - devices: - - 28362 - - 23572 - - 23799 - - 28361 - - 5581 - - 5582 - - 23923 - - 23922 - - 23919 - - 23920 - - 23921 - - 2085 - - 4417 - - 9332 - - uid: 28363 - components: - - type: Transform - pos: 32.5,-24.5 - parent: 12 - - type: DeviceList - devices: - - 6806 - - 6807 - - 7390 - - 7493 - - 26337 - - 26336 - - uid: 28365 - components: - - type: Transform - pos: 17.5,-24.5 - parent: 12 - - type: DeviceList - devices: - - 5579 - - 5580 - - 9320 - - 25972 - - 2609 - - 6983 - - 5993 - - 9316 - - 9317 - - 6783 - - 6812 - - uid: 28366 - components: - - type: Transform - pos: 3.5,-24.5 - parent: 12 - - type: DeviceList - devices: - - 5328 - - 5344 - - 4003 - - 5581 - - 5582 - - 5579 - - 5580 - - uid: 28367 - components: - - type: Transform - pos: 51.5,-23.5 - parent: 12 - - type: DeviceList - devices: - - 8536 - - 28368 - - 8535 - - 7458 - - 9114 - - 7462 - - 9116 - - 9117 - - 7456 - - uid: 28371 - components: - - type: Transform - pos: 57.5,-9.5 - parent: 12 - - type: DeviceList - devices: - - 8919 - - 28372 - - 8710 - - 21942 - - 26369 - - 8695 - - 8698 - - 7775 - - 7785 - - uid: 28373 - components: - - type: Transform - pos: 50.5,-10.5 - parent: 12 - - type: DeviceList - devices: - - 9117 - - 9116 - - 9115 - - 7775 - - 7456 - - 8460 - - 2294 - - 8919 - - 8678 - - 8677 - - 6744 - - 8515 - - 4203 - - 7785 - - 27065 - - 27102 - - 25548 - - 9482 - - uid: 28381 - components: - - type: Transform - pos: -36.5,18.5 - parent: 12 - - type: DeviceList - devices: - - 15876 - - 15872 - - 16495 - - 10289 - - 10291 - - 15906 - - 15907 - - uid: 28383 - components: - - type: Transform - pos: 45.5,32.5 - parent: 12 - - type: DeviceList - devices: - - 28384 - - 12731 - - 12736 - - 13173 - - 3514 - - 3513 - - 13219 - - uid: 28502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-45.5 - parent: 12 - - type: DeviceList - devices: - - 4018 - - 4017 - - 25372 - - 3992 - - 3993 - - 28504 - - 3555 - - 4087 - - 6755 - - 6754 - - uid: 29270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,63.5 - parent: 12 - - type: DeviceList - devices: - - 29258 - - 29259 - - 29271 - - 29207 - - uid: 29272 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,60.5 - parent: 12 - - type: DeviceList - devices: - - 4163 - - 29261 - - 16366 - - 29207 - - 26289 - - 24662 - - 16364 - - uid: 29275 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,45.5 - parent: 12 - - type: DeviceList - devices: - - 20014 - - 20013 - - 20336 - - 20335 - - 20339 - - 29276 - - 62 - - 27108 - - 7560 - - 29277 - - 29278 - - 19338 - - 19339 - - 16364 - - uid: 30349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,74.5 - parent: 12 - - type: DeviceList - devices: - - 26345 - - 22399 - - 19744 - - 5232 - - uid: 30445 - components: - - type: Transform - pos: 39.5,9.5 - parent: 12 - - type: DeviceList - devices: - - 26994 - - 30446 - - 30444 - - 8306 - - 7820 - - 12336 - - 12340 - - 2324 - - 25681 - - 30447 - - 30448 - - uid: 30450 - components: - - type: Transform - pos: 33.5,48.5 - parent: 12 - - type: DeviceList - devices: - - 22826 - - 21007 - - 30451 - - 14481 - - 14480 - - uid: 30452 - components: - - type: Transform - pos: 36.5,58.5 - parent: 12 - - type: DeviceList - devices: - - 30451 - - 14482 - - 21006 - - 21019 - - 23640 - - 14470 - - 14473 - - 14471 - - uid: 30453 - components: - - type: Transform - pos: 33.5,26.5 - parent: 12 - - type: DeviceList - devices: - - 23645 - - 2673 - - 13939 - - 13946 - - 13945 - - 12344 - - 29100 - - 27918 - - 13593 - - uid: 31755 - components: - - type: Transform - pos: 44.5,1.5 - parent: 12 - - type: DeviceList - devices: - - 7357 - - 2674 - - 2679 - - 31758 - - 19555 - - 7806 - - 31760 - - 31759 - - 25681 - - 2324 - - 28904 - - uid: 32066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-15.5 - parent: 12 - - type: DeviceList - devices: - - 7183 - - 4566 - - 4266 - - 32067 - - 32069 - - uid: 32231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-1.5 - parent: 12 - - type: DeviceList - devices: - - 32227 - - 32226 - - 32234 - - 32225 - - 32224 - - 32235 - - uid: 32232 - components: - - type: Transform - pos: -3.5,-9.5 - parent: 12 - - type: DeviceList - devices: - - 32229 - - 10069 -- proto: AirCanister - entities: - - uid: 138 - components: - - type: Transform - pos: 55.5,10.5 - parent: 12 - - uid: 1792 - components: - - type: Transform - pos: -33.5,-18.5 - parent: 12 - - uid: 1794 - components: - - type: Transform - pos: -51.5,-37.5 - parent: 12 - - uid: 2831 - components: - - 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 - pos: 81.5,-30.5 - parent: 12 - - uid: 9787 - components: - - type: Transform - pos: 1.5,-18.5 - parent: 12 - - uid: 10982 - components: - - type: Transform - pos: -20.5,-2.5 - parent: 12 - - uid: 12143 - components: - - type: Transform - pos: 31.5,47.5 - parent: 12 - - uid: 13514 - components: - - type: Transform - pos: 53.5,23.5 - parent: 12 - - uid: 18247 - components: - - type: Transform - pos: -49.5,40.5 - parent: 12 - - uid: 21522 - components: - - 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 - pos: -1.5,67.5 - parent: 12 - - uid: 25347 - components: - - type: Transform - pos: -20.5,61.5 - parent: 12 - - uid: 26544 - components: - - type: Transform - pos: 25.5,10.5 - parent: 12 - - uid: 26590 - components: - - type: Transform - pos: 2.5,-18.5 - parent: 12 - - uid: 26686 - components: - - type: Transform - pos: 25.5,9.5 - parent: 12 - - uid: 29112 - components: - - 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 - pos: -17.5,-60.5 - parent: 12 -- proto: Airlock - entities: - - uid: 2309 - components: - - type: Transform - pos: 33.5,9.5 - parent: 12 - - uid: 4217 - components: - - type: Transform - pos: 8.5,-28.5 - parent: 12 - - uid: 12345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,23.5 - parent: 12 - - uid: 19876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,51.5 - parent: 12 - - uid: 25323 - components: - - type: Transform - 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 - components: - - type: Transform - pos: -43.5,54.5 - parent: 12 - - uid: 20791 - components: - - type: Transform - pos: -37.5,54.5 - parent: 12 - - uid: 24667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,61.5 - parent: 12 - - uid: 24668 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,61.5 - parent: 12 - - uid: 27062 - components: - - type: Transform - pos: -41.5,55.5 - parent: 12 - - uid: 27104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,52.5 - parent: 12 -- proto: AirlockAssemblyMaintenance - entities: - - uid: 15446 - components: - - type: Transform - pos: 44.5,-5.5 - parent: 12 -- proto: AirlockAtmosphericsGlassLocked - entities: - - uid: 24654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,5.5 - parent: 12 - - uid: 25466 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,6.5 - parent: 12 -- proto: AirlockAtmosphericsLocked - entities: - - uid: 2181 - components: - - type: Transform - pos: 30.5,1.5 - parent: 12 - - uid: 7224 - components: - - type: Transform - pos: 20.5,-15.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 22526: - - DoorStatus: DoorBolt - - uid: 22526 - components: - - type: Transform - pos: 20.5,-13.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 7224: - - DoorStatus: DoorBolt - - uid: 29964 - components: - - type: Transform - pos: 28.5,5.5 - parent: 12 -- proto: AirlockBarLocked - entities: - - uid: 22821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,50.5 - parent: 12 - - uid: 22822 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,50.5 - parent: 12 -- proto: AirlockBrigGlassLocked - entities: - - uid: 370 - components: - - type: Transform - pos: -26.5,40.5 - parent: 12 - - uid: 985 - components: - - type: Transform - pos: -37.5,59.5 - parent: 12 - - uid: 1014 - components: - - type: Transform - pos: -37.5,58.5 - parent: 12 - - uid: 19437 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,43.5 - parent: 12 - - uid: 19438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,43.5 - parent: 12 - - uid: 19439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,40.5 - parent: 12 - - uid: 19837 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,59.5 - parent: 12 -- proto: AirlockBrigLocked - entities: - - uid: 64 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,56.5 - parent: 12 - - uid: 19440 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,42.5 - parent: 12 - - uid: 20806 - components: - - type: Transform - pos: -37.5,48.5 - parent: 12 - - uid: 20809 - components: - - type: Transform - pos: -33.5,34.5 - parent: 12 - - uid: 21299 - components: - - type: Transform - pos: -42.5,47.5 - parent: 12 -- proto: AirlockCaptainLocked - entities: - - uid: 17375 - components: - - type: Transform - pos: -51.5,23.5 - parent: 12 -- proto: AirlockCargoGlassLocked - entities: - - uid: 7466 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-22.5 - parent: 12 - - uid: 7761 - components: - - type: Transform - pos: 59.5,-14.5 - parent: 12 -- proto: AirlockCargoLocked - entities: - - uid: 454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-11.5 - parent: 12 - - uid: 26170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-23.5 - parent: 12 -- proto: AirlockChapelLocked - entities: - - uid: 13309 - components: - - type: Transform - pos: 38.5,26.5 - parent: 12 - - uid: 13310 - components: - - type: Transform - pos: 41.5,29.5 - parent: 12 - - uid: 29116 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,30.5 - parent: 12 -- proto: AirlockChemistryGlassLocked - entities: - - uid: 1082 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-45.5 - parent: 12 -- proto: AirlockChiefEngineerLocked - entities: - - uid: 5493 - components: - - type: Transform - pos: 26.5,-19.5 - parent: 12 -- proto: AirlockChiefMedicalOfficerGlassLocked - entities: - - uid: 2576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-40.5 - parent: 12 -- proto: AirlockCommandGlass - entities: - - uid: 27434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,22.5 - parent: 12 -- proto: AirlockCommandGlassLocked - entities: - - uid: 5233 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 12 - - uid: 22232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-5.5 - parent: 12 -- proto: AirlockCommandLocked - entities: - - uid: 146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 12 - - uid: 162 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 4 - - uid: 16380 - components: - - type: Transform - pos: -10.5,26.5 - parent: 12 - - uid: 19013 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,28.5 - parent: 12 - - uid: 19014 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,29.5 - parent: 12 - - uid: 19015 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,28.5 - parent: 12 - - uid: 19016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,29.5 - parent: 12 - - uid: 19017 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,35.5 - parent: 12 - - uid: 19018 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,37.5 - parent: 12 - - uid: 21325 - components: - - type: Transform - pos: -9.5,-6.5 - parent: 12 -- proto: AirlockDetectiveLocked - entities: - - uid: 13590 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,28.5 - parent: 12 - - uid: 13591 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,29.5 - parent: 12 -- proto: AirlockEngineering - entities: - - uid: 26624 - components: - - type: Transform - pos: 17.5,6.5 - 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 - pos: 32.5,-2.5 - parent: 12 - - uid: 5096 - components: - - type: Transform - pos: 30.5,-5.5 - parent: 12 - - uid: 5435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-24.5 - parent: 12 - - uid: 5436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-24.5 - parent: 12 - - uid: 11005 - components: - - type: Transform - pos: 32.5,-1.5 - parent: 12 - - uid: 27383 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,3.5 - parent: 12 -- proto: AirlockEngineeringLocked - entities: - - uid: 73 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-8.5 - parent: 12 - - uid: 494 - components: - - type: Transform - pos: 4.5,21.5 - parent: 12 - - uid: 1016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,46.5 - parent: 12 - - uid: 2421 - components: - - type: Transform - pos: 39.5,0.5 - parent: 12 - - uid: 3226 - components: - - type: Transform - pos: -10.5,-30.5 - parent: 12 - - uid: 4469 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-24.5 - parent: 12 - - uid: 4474 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-17.5 - parent: 12 - - uid: 4683 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-10.5 - parent: 12 - - uid: 5517 - components: - - type: Transform - pos: 20.5,-19.5 - parent: 12 - - uid: 5518 - components: - - type: Transform - pos: 23.5,-19.5 - parent: 12 - - uid: 5866 - components: - - type: Transform - pos: 29.5,-18.5 - parent: 12 - - uid: 5872 - components: - - type: Transform - pos: 34.5,-14.5 - parent: 12 - - uid: 5882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-22.5 - parent: 12 - - uid: 5994 - components: - - type: Transform - pos: -4.5,34.5 - parent: 12 - - uid: 6352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-41.5 - parent: 12 - - uid: 6355 - components: - - type: Transform - pos: 39.5,-36.5 - parent: 12 - - uid: 6707 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-1.5 - parent: 12 - - uid: 9081 - components: - - type: Transform - pos: 39.5,-14.5 - parent: 12 - - uid: 9824 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-19.5 - parent: 12 - - uid: 10017 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-16.5 - parent: 12 - - uid: 10667 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,14.5 - parent: 12 - - uid: 10937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,16.5 - parent: 12 - - uid: 11006 - components: - - type: Transform - pos: 41.5,-1.5 - parent: 12 - - uid: 11007 - components: - - type: Transform - pos: 41.5,-0.5 - parent: 12 - - uid: 11351 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,22.5 - parent: 12 - - uid: 11609 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,26.5 - parent: 12 - - uid: 13169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-0.5 - parent: 12 - - uid: 15705 - components: - - type: Transform - pos: -20.5,34.5 - parent: 12 - - uid: 18311 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-19.5 - parent: 12 - - uid: 22224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-7.5 - parent: 12 - - uid: 24482 - components: - - type: Transform - pos: 35.5,64.5 - parent: 12 - - uid: 24497 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,1.5 - parent: 12 - - uid: 24705 - components: - - type: Transform - pos: 11.5,65.5 - parent: 12 - - uid: 25380 - components: - - type: Transform - pos: -23.5,58.5 - parent: 12 - - uid: 25933 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,1.5 - parent: 12 - - uid: 26389 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-15.5 - parent: 12 - - uid: 27457 - components: - - type: Transform - pos: -48.5,-42.5 - parent: 12 - - uid: 27661 - components: - - 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: 29431 - components: - - type: Transform - pos: 5.5,-54.5 - parent: 12 - - uid: 31074 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-46.5 - parent: 12 - - uid: 32061 - components: - - type: Transform - pos: 40.5,-10.5 - parent: 12 -- proto: AirlockEVALocked - entities: - - uid: 10782 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,6.5 - parent: 12 - - uid: 10783 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,12.5 - parent: 12 - - uid: 10784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,9.5 - parent: 12 -- proto: AirlockExternalEngineeringLocked - entities: - - uid: 3596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-2.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 28770: - - DoorStatus: InputB - - 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 - rot: -1.5707963267948966 rad - pos: 48.5,-42.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 6351: - - DoorStatus: DoorBolt - - uid: 6351 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-43.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 6350: - - DoorStatus: DoorBolt - - uid: 14260 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,66.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 14261: - - DoorStatus: DoorBolt - - uid: 14261 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,68.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 14260: - - DoorStatus: DoorBolt - - uid: 19020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,46.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 19019: - - DoorStatus: DoorBolt - - uid: 26518 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-1.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 28770: - - DoorStatus: InputA - - uid: 26625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,6.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 26626: - - DoorStatus: DoorBolt - - uid: 26626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,8.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 26625: - - DoorStatus: DoorBolt - - 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 - pos: -52.5,-49.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 31109: - - DoorStatus: DoorBolt - - uid: 31109 - components: - - type: Transform - pos: -54.5,-50.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 31108: - - DoorStatus: DoorBolt -- proto: AirlockExternalGlass - entities: - - uid: 395 - components: - - type: Transform - pos: -28.5,-4.5 - parent: 12 - - uid: 402 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-1.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 479: - - DoorStatus: DoorBolt - - uid: 478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,0.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - 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: 6255 - components: - - type: Transform - pos: 12.5,-54.5 - parent: 12 - - uid: 6267 - components: - - type: Transform - pos: 31.5,-54.5 - parent: 12 - - uid: 10296 - components: - - type: Transform - pos: -36.5,3.5 - parent: 12 - - uid: 10297 - components: - - type: Transform - pos: -42.5,3.5 - parent: 12 - - uid: 10298 - components: - - type: Transform - pos: -42.5,15.5 - parent: 12 - - uid: 10299 - components: - - type: Transform - pos: -36.5,15.5 - parent: 12 - - uid: 10620 - components: - - type: Transform - pos: -15.5,-70.5 - parent: 12 - - uid: 10786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,9.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 10785: - - DoorStatus: DoorBolt - - uid: 12234 - components: - - type: Transform - pos: -13.5,-70.5 - parent: 12 - - uid: 14903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,71.5 - parent: 12 - - uid: 14904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,71.5 - parent: 12 - - uid: 14905 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,71.5 - parent: 12 - - uid: 14906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,71.5 - parent: 12 - - uid: 21313 - components: - - type: Transform - pos: 57.5,-49.5 - parent: 12 - - uid: 28520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,1.5 - parent: 12 - - uid: 28528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,2.5 - parent: 12 - - uid: 31611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-19.5 - parent: 12 - - uid: 31613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-29.5 - parent: 12 - - uid: 31643 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-27.5 - parent: 12 - - uid: 31644 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-21.5 - parent: 12 -- proto: AirlockExternalGlassAtmosphericsLocked - entities: - - uid: 4947 - components: - - type: Transform - pos: 7.5,-1.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 7250: - - DoorStatus: DoorBolt - - uid: 5024 - components: - - type: Transform - pos: 22.5,-13.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 7562: - - DoorStatus: DoorBolt - - uid: 7250 - components: - - type: Transform - pos: 8.5,-3.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 4947: - - DoorStatus: DoorBolt - - uid: 7562 - components: - - type: Transform - pos: 22.5,-15.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 5024: - - DoorStatus: DoorBolt -- proto: AirlockExternalGlassEngineeringLocked - entities: - - uid: 1810 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,19.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 3 - - type: DeviceLinkSource - linkedPorts: - 10791: - - DoorStatus: DoorBolt - 16347: - - DoorStatus: DoorBolt - 1813: - - DoorStatus: DoorBolt - - uid: 1813 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,21.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 3 - - type: DeviceLinkSource - linkedPorts: - 1810: - - DoorStatus: DoorBolt - 16347: - - DoorStatus: DoorBolt - 10791: - - DoorStatus: DoorBolt - - uid: 10791 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,23.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 3 - - type: DeviceLinkSource - linkedPorts: - 1810: - - DoorStatus: DoorBolt - 1813: - - DoorStatus: DoorBolt - 16347: - - DoorStatus: DoorBolt - - 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 - rot: 3.141592653589793 rad - pos: 12.5,21.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 3 - - type: DeviceLinkSource - linkedPorts: - 1810: - - DoorStatus: DoorBolt - 1813: - - DoorStatus: DoorBolt - 10791: - - DoorStatus: DoorBolt - - uid: 19019 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,46.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 19020: - - DoorStatus: DoorBolt - - uid: 19811 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-1.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 28883: - - DoorStatus: InputA - - uid: 28279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-2.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 28883: - - DoorStatus: InputB - - 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 - components: - - type: Transform - pos: 80.5,-33.5 - parent: 12 - - uid: 479 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-0.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 402: - - DoorStatus: DoorBolt - 478: - - DoorStatus: DoorBolt - - uid: 2041 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-10.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 11931: - - DoorStatus: DoorBolt - - uid: 9560 - components: - - type: Transform - pos: 5.5,28.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 10826: - - DoorStatus: DoorBolt - - uid: 10785 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,9.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 10786: - - DoorStatus: DoorBolt - - uid: 10826 - components: - - type: Transform - pos: 7.5,28.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 9560: - - DoorStatus: DoorBolt - - uid: 11931 - components: - - type: Transform - pos: -30.5,-10.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 2041: - - DoorStatus: DoorBolt - - uid: 11947 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,17.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 5 - - type: DeviceLinkSource - linkedPorts: - 27864: - - 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: - 25663: - - DoorStatus: DoorBolt - - uid: 27232 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,66.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 29229: - - DoorStatus: DoorBolt - - uid: 27864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,17.5 - parent: 12 - - type: Door - secondsUntilStateChange: -21048.898 - state: Opening - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 11947: - - DoorStatus: DoorBolt - lastSignals: - DoorStatus: True - - uid: 28369 - components: - - type: Transform - pos: 77.5,-33.5 - parent: 12 - - uid: 29229 - components: - - type: Transform - pos: -23.5,63.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 27232: - - DoorStatus: DoorBolt - - uid: 31450 - components: - - type: Transform - pos: 53.5,66.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 161: - - DoorStatus: DoorBolt -- proto: AirlockExternalGlassShuttleArrivals - entities: - - uid: 14686 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,76.5 - parent: 12 - - uid: 14726 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,83.5 - parent: 12 - - uid: 14801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,83.5 - parent: 12 - - uid: 14817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,76.5 - parent: 12 -- proto: AirlockExternalGlassShuttleEmergencyLocked - entities: - - uid: 15 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-51.5 - parent: 12 - - uid: 368 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-43.5 - parent: 12 - - uid: 378 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-45.5 - parent: 12 - - uid: 390 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-53.5 - parent: 12 - - uid: 2250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-53.5 - parent: 12 - - uid: 14185 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-51.5 - parent: 12 - - uid: 14186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-43.5 - parent: 12 - - uid: 14653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-45.5 - parent: 12 -- proto: AirlockExternalGlassShuttleEscape - entities: - - uid: 573 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-71.5 - parent: 12 - - uid: 1033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,74.5 - parent: 12 - - uid: 1347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,66.5 - parent: 12 - - uid: 24238 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,66.5 - parent: 12 - - uid: 25592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-39.5 - parent: 12 -- proto: AirlockExternalGlassShuttleLocked - entities: - - uid: 552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-6.5 - parent: 12 - - type: Door - changeAirtight: False - - type: DeviceLinkSource - lastSignals: - DoorStatus: False - DockStatus: False - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-4.5 - parent: 12 - - uid: 7491 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-49.5 - parent: 12 - - uid: 7771 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-15.5 - parent: 12 - - uid: 7772 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-13.5 - parent: 12 - - uid: 10265 - components: - - type: Transform - pos: -42.5,13.5 - parent: 12 - - uid: 10285 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,5.5 - parent: 12 - - uid: 10286 - components: - - type: Transform - pos: -36.5,13.5 - parent: 12 - - uid: 10393 - components: - - type: Transform - pos: 13.5,-57.5 - parent: 12 - - uid: 25330 - components: - - type: Transform - pos: 30.5,-57.5 - parent: 12 - - uid: 26130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,1.5 - parent: 12 - - uid: 26256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-48.5 - parent: 12 - - uid: 28506 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,2.5 - parent: 12 - - uid: 28532 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,5.5 - parent: 12 - - uid: 31614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-29.5 - parent: 12 - - uid: 31634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-19.5 - parent: 12 - - uid: 31635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-21.5 - parent: 12 - - uid: 31639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-27.5 - parent: 12 -- proto: AirlockExternalLocked - entities: - - uid: 161 - components: - - type: Transform - pos: 52.5,64.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 31450: - - DoorStatus: DoorBolt - - uid: 530 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-5.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 925: - - DoorStatus: DoorBolt - - uid: 925 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-3.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 530: - - DoorStatus: DoorBolt - - uid: 25663 - components: - - type: Transform - 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: 31079 - components: - - type: Transform - pos: -15.5,-72.5 - parent: 12 - - uid: 31080 - components: - - type: Transform - pos: -13.5,-72.5 - parent: 12 -- proto: AirlockFreezerLocked - entities: - - uid: 15387 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,51.5 - parent: 12 -- proto: AirlockGlass - entities: - - uid: 82 - components: - - type: Transform - pos: -14.5,-9.5 - parent: 12 - - uid: 83 - components: - - type: Transform - pos: -16.5,-9.5 - parent: 12 - - uid: 84 - components: - - type: Transform - pos: -16.5,-16.5 - parent: 12 - - uid: 207 - components: - - type: Transform - pos: -14.5,-16.5 - parent: 12 - - uid: 292 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-5.5 - parent: 12 - - uid: 445 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,4.5 - parent: 12 - - uid: 446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,4.5 - parent: 12 - - uid: 502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-9.5 - parent: 12 - - uid: 549 - components: - - type: Transform - pos: -13.5,-24.5 - parent: 12 - - uid: 550 - components: - - type: Transform - pos: -13.5,-23.5 - parent: 12 - - uid: 553 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-9.5 - parent: 12 - - uid: 918 - components: - - type: Transform - pos: 16.5,41.5 - parent: 12 - - uid: 1168 - components: - - type: Transform - pos: 42.5,-25.5 - parent: 12 - - uid: 1436 - components: - - type: Transform - pos: 44.5,-25.5 - parent: 12 - - uid: 2092 - components: - - type: Transform - pos: -25.5,-3.5 - parent: 12 - - uid: 2093 - components: - - type: Transform - pos: -25.5,-6.5 - parent: 12 - - uid: 2345 - components: - - type: Transform - pos: 32.5,20.5 - parent: 12 - - uid: 2539 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-31.5 - parent: 12 - - uid: 5495 - components: - - type: Transform - pos: 16.5,42.5 - parent: 12 - - uid: 5583 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-26.5 - parent: 12 - - uid: 5584 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-27.5 - parent: 12 - - uid: 5986 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-31.5 - parent: 12 - - uid: 6811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-33.5 - parent: 12 - - uid: 6813 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-33.5 - parent: 12 - - uid: 7391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-27.5 - parent: 12 - - uid: 7847 - components: - - type: Transform - pos: 43.5,5.5 - parent: 12 - - uid: 11356 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-25.5 - parent: 12 - - uid: 13068 - components: - - type: Transform - pos: 39.5,40.5 - parent: 12 - - uid: 13073 - components: - - type: Transform - pos: 42.5,40.5 - parent: 12 - - uid: 13754 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,32.5 - parent: 12 - - uid: 13755 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,38.5 - parent: 12 - - uid: 15693 - components: - - type: Transform - pos: -21.5,28.5 - parent: 12 - - uid: 15694 - components: - - type: Transform - pos: -21.5,27.5 - parent: 12 - - uid: 15695 - components: - - type: Transform - pos: -16.5,14.5 - parent: 12 - - uid: 15696 - components: - - type: Transform - pos: -15.5,14.5 - parent: 12 - - uid: 15902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,1.5 - parent: 12 - - uid: 15903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,2.5 - parent: 12 - - uid: 15904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,17.5 - parent: 12 - - uid: 15905 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,16.5 - parent: 12 - - uid: 19441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,44.5 - parent: 12 - - uid: 19452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,46.5 - parent: 12 - - uid: 19453 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,46.5 - parent: 12 - - uid: 19848 - components: - - type: Transform - pos: 27.5,42.5 - parent: 12 - - uid: 19878 - components: - - type: Transform - pos: 27.5,41.5 - parent: 12 - - uid: 21593 - components: - - type: Transform - pos: -25.5,30.5 - parent: 12 - - uid: 21645 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,64.5 - parent: 12 - - uid: 23136 - components: - - type: Transform - pos: 42.5,5.5 - parent: 12 - - uid: 23140 - components: - - type: Transform - pos: 33.5,20.5 - parent: 12 - - uid: 24216 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,44.5 - parent: 12 - - uid: 24217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,44.5 - parent: 12 - - uid: 24219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,60.5 - parent: 12 - - uid: 24239 - components: - - type: Transform - pos: 9.5,46.5 - parent: 12 - - uid: 24240 - components: - - type: Transform - pos: 8.5,42.5 - parent: 12 - - uid: 24241 - components: - - type: Transform - pos: 7.5,42.5 - parent: 12 - - uid: 24242 - components: - - type: Transform - pos: 3.5,46.5 - parent: 12 - - uid: 24243 - components: - - type: Transform - pos: 2.5,46.5 - parent: 12 - - uid: 24284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,57.5 - parent: 12 - - uid: 24285 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,57.5 - parent: 12 - - uid: 24286 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,61.5 - parent: 12 - - uid: 24287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,63.5 - parent: 12 - - uid: 24288 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,67.5 - parent: 12 - - uid: 24289 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,70.5 - parent: 12 - - uid: 25273 - components: - - type: Transform - pos: 17.5,55.5 - parent: 12 - - uid: 25274 - components: - - type: Transform - pos: 19.5,55.5 - parent: 12 - - uid: 28390 - components: - - type: Transform - pos: -24.5,5.5 - parent: 12 -- proto: AirlockHatchMaintenance - entities: - - uid: 21605 - components: - - type: Transform - pos: -21.5,55.5 - parent: 12 -- proto: AirlockHeadOfPersonnelLocked - entities: - - uid: 18846 - components: - - type: Transform - pos: -38.5,22.5 - parent: 12 - - uid: 18847 - components: - - type: Transform - pos: -45.5,24.5 - parent: 12 -- proto: AirlockHeadOfSecurityLocked - entities: - - uid: 20816 - components: - - type: Transform - pos: -45.5,34.5 - parent: 12 - - uid: 20817 - components: - - type: Transform - pos: -40.5,34.5 - parent: 12 -- proto: AirlockHydroGlassLocked - entities: - - uid: 23742 - components: - - type: Transform - pos: 57.5,51.5 - parent: 12 - - uid: 23743 - components: - - type: Transform - pos: 60.5,48.5 - parent: 12 - - uid: 23744 - components: - - type: Transform - pos: 60.5,49.5 - parent: 12 - - uid: 23745 - components: - - type: Transform - pos: 65.5,53.5 - parent: 12 -- proto: AirlockHydroponicsLocked - entities: - - uid: 23746 - components: - - type: Transform - pos: 65.5,44.5 - parent: 12 - - uid: 24102 - components: - - type: Transform - pos: 56.5,46.5 - parent: 12 -- proto: AirlockJanitorLocked - entities: - - uid: 4118 - components: - - type: Transform - pos: 7.5,-49.5 - parent: 12 - - uid: 12251 - components: - - type: Transform - pos: 42.5,21.5 - parent: 12 -- proto: AirlockKitchenLocked - entities: - - uid: 22823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,54.5 - parent: 12 - - uid: 22824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,54.5 - parent: 12 -- proto: AirlockLawyerGlassLocked - entities: - - uid: 21641 - components: - - type: Transform - pos: -18.5,0.5 - parent: 12 -- proto: AirlockLawyerLocked - entities: - - uid: 417 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,2.5 - 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 - rot: -1.5707963267948966 rad - pos: -7.5,-32.5 - parent: 12 - - uid: 3037 - components: - - type: Transform - pos: -9.5,-34.5 - parent: 12 - - uid: 3070 - components: - - type: Transform - pos: -9.5,-29.5 - parent: 12 - - uid: 3071 - components: - - type: Transform - pos: 8.5,-33.5 - parent: 12 - - uid: 6002 - components: - - type: Transform - pos: 11.5,-38.5 - parent: 12 - - uid: 6051 - components: - - type: Transform - pos: 11.5,-37.5 - parent: 12 - - uid: 6810 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-36.5 - parent: 12 - - uid: 6814 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-36.5 - parent: 12 - - uid: 7128 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-29.5 - parent: 12 - - uid: 7465 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-33.5 - parent: 12 - - uid: 14196 - components: - - type: Transform - 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 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-6.5 - parent: 12 - - uid: 11016 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,7.5 - parent: 12 - - uid: 25481 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,10.5 - parent: 12 -- proto: AirlockMaintCargoLocked - entities: - - uid: 8973 - components: - - type: Transform - pos: 45.5,-13.5 - parent: 12 - - uid: 23143 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-9.5 - parent: 12 - - uid: 27885 - components: - - type: Transform - pos: 45.5,-23.5 - parent: 12 -- proto: AirlockMaintEngiLocked - entities: - - uid: 67 - components: - - type: Transform - pos: 7.5,-21.5 - parent: 12 - - uid: 1551 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-6.5 - parent: 12 - - uid: 7829 - components: - - type: Transform - pos: 7.5,-14.5 - parent: 12 - - uid: 27354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,7.5 - parent: 12 -- proto: AirlockMaintGlassLocked - entities: - - uid: 27845 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,72.5 - parent: 12 - - uid: 29661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,72.5 - parent: 12 -- proto: AirlockMaintHOPLocked - entities: - - uid: 18664 - components: - - type: Transform - pos: -30.5,22.5 - parent: 12 -- proto: AirlockMaintHydroLocked - entities: - - uid: 23741 - components: - - type: Transform - pos: 58.5,45.5 - parent: 12 -- proto: AirlockMaintJanitorLocked - entities: - - uid: 12080 - components: - - type: Transform - pos: 47.5,19.5 - parent: 12 -- proto: AirlockMaintLocked - entities: - - uid: 85 - components: - - type: Transform - pos: -7.5,-21.5 - parent: 12 - - uid: 276 - components: - - type: Transform - pos: 1.5,70.5 - parent: 12 - - uid: 359 - components: - - type: Transform - pos: -18.5,17.5 - parent: 12 - - uid: 362 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,16.5 - parent: 12 - - uid: 385 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-24.5 - parent: 12 - - uid: 453 - components: - - type: Transform - pos: 39.5,20.5 - parent: 12 - - uid: 1050 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-20.5 - parent: 12 - - uid: 1613 - components: - - type: Transform - pos: -44.5,68.5 - parent: 12 - - uid: 2358 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-22.5 - parent: 12 - - uid: 3506 - components: - - type: Transform - 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: 5662 - components: - - type: Transform - 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: - - type: Transform - pos: 41.5,62.5 - parent: 12 - - uid: 10635 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,16.5 - parent: 12 - - uid: 10654 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,1.5 - parent: 12 - - uid: 10698 - components: - - type: Transform - pos: 48.5,-39.5 - parent: 12 - - uid: 10707 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,16.5 - parent: 12 - - uid: 10708 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,17.5 - parent: 12 - - uid: 10709 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,20.5 - parent: 12 - - uid: 10710 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,26.5 - parent: 12 - - uid: 10711 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,26.5 - parent: 12 - - uid: 10712 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,29.5 - parent: 12 - - uid: 10713 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,29.5 - parent: 12 - - uid: 11164 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,24.5 - parent: 12 - - uid: 11950 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,9.5 - parent: 12 - - uid: 11951 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,15.5 - parent: 12 - - uid: 11952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,17.5 - parent: 12 - - uid: 11953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,22.5 - parent: 12 - - uid: 11954 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,25.5 - parent: 12 - - uid: 12019 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,12.5 - parent: 12 - - uid: 12320 - components: - - type: Transform - pos: 31.5,12.5 - parent: 12 - - uid: 14946 - components: - - type: Transform - pos: 44.5,61.5 - parent: 12 - - uid: 15581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,35.5 - parent: 12 - - uid: 15582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,42.5 - parent: 12 - - uid: 15583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,42.5 - parent: 12 - - uid: 16419 - components: - - type: Transform - pos: 46.5,8.5 - parent: 12 - - uid: 16787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-1.5 - parent: 12 - - uid: 18626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,46.5 - parent: 12 - - uid: 18635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,46.5 - parent: 12 - - uid: 21594 - components: - - type: Transform - pos: -23.5,33.5 - parent: 12 - - uid: 21595 - components: - - type: Transform - pos: -18.5,33.5 - parent: 12 - - uid: 21890 - components: - - type: Transform - pos: -12.5,-7.5 - parent: 12 - - uid: 21999 - components: - - type: Transform - pos: -12.5,-5.5 - parent: 12 - - uid: 22340 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,49.5 - parent: 12 - - uid: 22341 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,69.5 - parent: 12 - - uid: 22342 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,69.5 - parent: 12 - - uid: 22343 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,63.5 - parent: 12 - - uid: 22344 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,61.5 - parent: 12 - - uid: 22345 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,63.5 - parent: 12 - - uid: 22346 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,63.5 - parent: 12 - - uid: 22347 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,67.5 - parent: 12 - - uid: 22349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,61.5 - parent: 12 - - uid: 22350 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,62.5 - parent: 12 - - uid: 22351 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,61.5 - parent: 12 - - uid: 22352 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,62.5 - parent: 12 - - uid: 22353 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,64.5 - parent: 12 - - uid: 22354 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,67.5 - parent: 12 - - uid: 22355 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,57.5 - parent: 12 - - uid: 22356 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,55.5 - parent: 12 - - uid: 23590 - components: - - type: Transform - pos: 4.5,33.5 - parent: 12 - - uid: 24233 - components: - - type: Transform - pos: 8.5,60.5 - parent: 12 - - uid: 25595 - components: - - type: Transform - pos: -3.5,70.5 - parent: 12 - - uid: 26294 - components: - - 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 - rot: 1.5707963267948966 rad - pos: -27.5,-11.5 - parent: 12 - - uid: 27454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-39.5 - parent: 12 - - uid: 27995 - components: - - type: Transform - pos: -6.5,1.5 - parent: 12 - - uid: 28280 - components: - - type: Transform - 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: 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: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,48.5 - parent: 12 - - uid: 29721 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,62.5 - parent: 12 - - uid: 30458 - components: - - type: Transform - pos: 30.5,20.5 - parent: 12 - - uid: 30518 - components: - - type: Transform - pos: -41.5,-52.5 - parent: 12 - - uid: 31191 - components: - - type: Transform - pos: -10.5,-64.5 - parent: 12 - - uid: 31192 - components: - - type: Transform - pos: -25.5,-59.5 - parent: 12 - - uid: 31258 - components: - - type: Transform - pos: -5.5,-68.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 31259 - components: - - type: Transform - pos: -7.5,-67.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 31293 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-65.5 - parent: 12 - - uid: 31294 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-63.5 - parent: 12 - - uid: 31393 - components: - - type: Transform - pos: 4.5,-58.5 - parent: 12 -- proto: AirlockMaintMedLocked - entities: - - uid: 619 - components: - - type: Transform - pos: -16.5,-66.5 - parent: 12 - - uid: 2868 - components: - - type: Transform - pos: 2.5,-50.5 - parent: 12 - - uid: 2933 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-40.5 - parent: 12 - - uid: 3032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-36.5 - parent: 12 - - uid: 24641 - components: - - type: Transform - pos: -26.5,-51.5 - parent: 12 - - uid: 25401 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-40.5 - parent: 12 - - uid: 27271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-34.5 - parent: 12 - - uid: 30701 - components: - - type: Transform - pos: -16.5,-59.5 - parent: 12 - - uid: 30702 - components: - - type: Transform - pos: -16.5,-62.5 - parent: 12 -- proto: AirlockMaintRnDLocked - entities: - - uid: 684 - components: - - type: Transform - pos: -47.5,-29.5 - parent: 12 - - uid: 727 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-33.5 - parent: 12 - - uid: 915 - components: - - type: Transform - pos: -53.5,-33.5 - parent: 12 - - uid: 1015 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-38.5 - parent: 12 - - uid: 2854 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-18.5 - parent: 12 - - uid: 27452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-39.5 - parent: 12 -- proto: AirlockMaintRnDMedLocked - entities: - - uid: 27451 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-49.5 - parent: 12 -- proto: AirlockMaintSecLocked - entities: - - uid: 18246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,59.5 - parent: 12 - - uid: 20807 - components: - - type: Transform - pos: -23.5,37.5 - parent: 12 - - uid: 20808 - components: - - type: Transform - pos: -31.5,36.5 - parent: 12 - - uid: 20810 - components: - - type: Transform - pos: -43.5,45.5 - parent: 12 - - uid: 25370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,55.5 - parent: 12 -- proto: AirlockMaintServiceLocked - entities: - - uid: 22889 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,58.5 - parent: 12 -- proto: AirlockMedical - entities: - - uid: 2633 - components: - - type: Transform - pos: -14.5,-55.5 - parent: 12 -- proto: AirlockMedicalGlassLocked - entities: - - uid: 1043 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-46.5 - parent: 12 - - uid: 1083 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-46.5 - parent: 12 - - uid: 2533 - components: - - type: Transform - pos: -18.5,-42.5 - parent: 12 - - uid: 2534 - components: - - type: Transform - pos: -18.5,-41.5 - parent: 12 - - uid: 2548 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-40.5 - parent: 12 - - uid: 2550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-40.5 - parent: 12 - - uid: 2638 - components: - - type: Transform - pos: -13.5,-47.5 - parent: 12 - - uid: 2639 - components: - - type: Transform - pos: -13.5,-46.5 - parent: 12 - - uid: 2904 - components: - - type: Transform - pos: -4.5,-49.5 - parent: 12 - - uid: 11589 - components: - - type: Transform - pos: 31.5,40.5 - parent: 12 -- proto: AirlockMedicalLocked - entities: - - uid: 2431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-57.5 - parent: 12 - - uid: 2432 - components: - - type: Transform - pos: -18.5,-58.5 - parent: 12 - - uid: 2640 - components: - - type: Transform - pos: -18.5,-50.5 - parent: 12 - - uid: 2643 - components: - - type: Transform - pos: -16.5,-52.5 - parent: 12 - - uid: 2693 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-40.5 - parent: 12 - - uid: 2773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-53.5 - parent: 12 - - uid: 3123 - components: - - type: Transform - pos: 0.5,-48.5 - parent: 12 - - uid: 3124 - components: - - type: Transform - pos: -5.5,-45.5 - parent: 12 - - uid: 5393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-38.5 - parent: 12 - - uid: 5475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-33.5 - parent: 12 - - uid: 7444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-34.5 - parent: 12 - - uid: 26053 - components: - - type: Transform - pos: 1.5,-54.5 - parent: 12 -- proto: AirlockMedicalMorgueLocked - entities: - - uid: 3029 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-39.5 - parent: 12 - - uid: 3098 - components: - - type: Transform - pos: 2.5,-42.5 - parent: 12 - - uid: 3099 - components: - - type: Transform - pos: 2.5,-45.5 - parent: 12 - - uid: 22118 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-42.5 - parent: 12 -- proto: AirlockMedicalScienceGlassLocked - entities: - - uid: 830 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-47.5 - parent: 12 - - type: PaintableAirlock - department: Medical - - uid: 840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-48.5 - parent: 12 - - type: PaintableAirlock - department: Medical -- proto: AirlockMedicalScienceLocked - entities: - - uid: 514 - components: - - type: Transform - pos: -36.5,-46.5 - parent: 12 - - type: PaintableAirlock - department: Medical - - uid: 12682 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-32.5 - parent: 12 - - type: PaintableAirlock - department: Medical -- proto: AirlockQuartermasterLocked - entities: - - uid: 8437 - components: - - type: Transform - pos: 48.5,-9.5 - parent: 12 -- proto: AirlockResearchDirectorLocked - entities: - - uid: 626 - components: - - type: Transform - pos: -34.5,-24.5 - parent: 12 - - uid: 634 - components: - - type: Transform - pos: -40.5,-19.5 - parent: 12 -- proto: AirlockSalvageGlassLocked - entities: - - uid: 8034 - components: - - type: Transform - pos: 58.5,-35.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 27073: - - DoorStatus: InputB - 8034: - - DoorStatus: DoorBolt - - uid: 8035 - components: - - type: Transform - pos: 58.5,-34.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 3 - - type: DeviceLinkSource - linkedPorts: - 27073: - - DoorStatus: InputA - - uid: 8036 - components: - - type: Transform - pos: 61.5,-34.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 3 - - type: DeviceLinkSource - linkedPorts: - 26946: - - DoorStatus: InputA - - uid: 8037 - components: - - type: Transform - pos: 61.5,-35.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 3 - - type: DeviceLinkSource - linkedPorts: - 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 - rot: 1.5707963267948966 rad - pos: 60.5,-27.5 - parent: 12 - - uid: 8043 - components: - - type: Transform - pos: 55.5,-28.5 - parent: 12 - - uid: 10629 - components: - - type: Transform - pos: 58.5,-25.5 - parent: 12 -- proto: AirlockScienceGlassLocked - entities: - - uid: 641 - components: - - type: Transform - pos: -38.5,-29.5 - parent: 12 - - uid: 695 - components: - - type: Transform - pos: -50.5,-26.5 - parent: 12 - - uid: 696 - components: - - 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 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-24.5 - parent: 12 - - uid: 487 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-24.5 - parent: 12 - - uid: 488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-22.5 - parent: 12 - - uid: 515 - components: - - type: Transform - pos: -24.5,-26.5 - parent: 12 - - uid: 640 - components: - - type: Transform - pos: -41.5,-29.5 - parent: 12 - - uid: 972 - components: - - type: Transform - pos: -45.5,-39.5 - parent: 12 - - uid: 973 - components: - - type: Transform - pos: -39.5,-34.5 - parent: 12 - - uid: 984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-40.5 - parent: 12 - - uid: 5130 - components: - - type: Transform - pos: -22.5,-29.5 - parent: 12 -- proto: AirlockSecurityGlassLocked - entities: - - uid: 63 - components: - - type: Transform - pos: -48.5,57.5 - parent: 12 - - uid: 8715 - components: - - type: Transform - pos: 51.5,-30.5 - parent: 12 - - uid: 8716 - components: - - type: Transform - pos: 51.5,-35.5 - parent: 12 - - uid: 12713 - components: - - type: Transform - pos: -26.5,62.5 - parent: 12 - - uid: 19232 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,61.5 - parent: 12 - - uid: 19302 - components: - - type: Transform - pos: -41.5,60.5 - parent: 12 - - uid: 19303 - components: - - type: Transform - pos: -44.5,60.5 - parent: 12 - - uid: 19304 - components: - - type: Transform - pos: -47.5,60.5 - parent: 12 - - uid: 19326 - components: - - type: Transform - pos: -33.5,53.5 - parent: 12 - - uid: 19333 - components: - - type: Transform - pos: -31.5,53.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 19454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,48.5 - parent: 12 -- proto: AirlockSecurityLocked - entities: - - uid: 20811 - components: - - type: Transform - pos: -40.5,39.5 - parent: 12 - - uid: 20812 - components: - - type: Transform - pos: -40.5,41.5 - parent: 12 - - uid: 23570 - components: - - type: Transform - 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 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,39.5 - parent: 12 - - uid: 15804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,39.5 - parent: 12 - - uid: 23565 - components: - - type: Transform - pos: 53.5,55.5 - parent: 12 -- proto: AirlockServiceLocked - entities: - - uid: 208 - components: - - type: Transform - pos: 10.5,-34.5 - parent: 12 - - uid: 259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,20.5 - parent: 12 - - uid: 6097 - components: - - type: Transform - pos: 12.5,-32.5 - parent: 12 - - uid: 11144 - components: - - type: Transform - pos: 30.5,-34.5 - parent: 12 - - uid: 14955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-16.5 - parent: 12 - - uid: 21046 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,44.5 - parent: 12 - - uid: 22814 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,52.5 - parent: 12 - - uid: 22887 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,48.5 - parent: 12 - - uid: 22888 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,55.5 - parent: 12 - - uid: 27736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,23.5 - parent: 12 - - uid: 28653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-14.5 - parent: 12 -- proto: AirlockTheatreLocked - entities: - - uid: 23401 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,58.5 - parent: 12 -- proto: AirlockVirologyLocked - entities: - - uid: 2298 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-59.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 2477: - - DoorStatus: DoorBolt - - uid: 2477 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-59.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 2298: - - DoorStatus: DoorBolt - - uid: 2626 - components: - - type: Transform - pos: -14.5,-58.5 - parent: 12 -- proto: AirSensor - entities: - - uid: 325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,62.5 - parent: 12 - - uid: 346 - components: - - type: Transform - pos: 60.5,-20.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8504 - - uid: 2023 - components: - - type: Transform - pos: 8.5,22.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2966 - - uid: 2094 - components: - - type: Transform - pos: -30.5,-44.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 25448 - - uid: 2095 - components: - - type: Transform - pos: -43.5,-46.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28343 - - uid: 2096 - components: - - type: Transform - pos: -39.5,-43.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28343 - - uid: 2097 - components: - - type: Transform - pos: -43.5,-37.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9972 - - 921 - - uid: 2098 - components: - - type: Transform - pos: -49.5,-38.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9972 - - 921 - - uid: 2099 - components: - - type: Transform - pos: -45.5,-25.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 1699 - - uid: 2100 - components: - - type: Transform - pos: -37.5,-23.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2629 - - uid: 2101 - components: - - type: Transform - pos: -26.5,-20.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2089 - - uid: 2102 - components: - - type: Transform - pos: -29.5,-29.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9972 - - uid: 2201 - components: - - type: Transform - pos: -14.5,50.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 25516 - - uid: 2294 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-19.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28373 - - uid: 2416 - components: - - type: Transform - pos: 38.5,3.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 1375 - - uid: 2604 - components: - - type: Transform - pos: 2.5,16.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 12273 - - uid: 2609 - components: - - type: Transform - pos: 21.5,-28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28365 - - uid: 2612 - components: - - type: Transform - pos: 44.5,18.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2611 - - uid: 2727 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-57.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28354 - - uid: 2828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-51.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8971 - - uid: 3702 - components: - - type: Transform - pos: 15.5,16.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 12273 - - uid: 4003 - components: - - type: Transform - pos: 7.5,-26.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28366 - - uid: 4087 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-41.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2545 - - 28502 - - uid: 4153 - components: - - type: Transform - pos: -14.5,53.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 25516 - - uid: 4163 - components: - - type: Transform - pos: -26.5,61.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29272 - - uid: 5011 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 4906 - - uid: 5111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 5109 - - uid: 5197 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-29.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 5098 - - uid: 5316 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-15.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22005 - - uid: 7350 - components: - - type: Transform - pos: -34.5,66.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 20779 - - uid: 7493 - components: - - type: Transform - pos: 36.5,-27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28363 - - uid: 7547 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9142 - - uid: 7558 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,54.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 70 - - uid: 7789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27312 - - 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 - rot: 1.5707963267948966 rad - pos: 58.5,-30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 6833 - - uid: 8919 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-14.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28371 - - 28373 - - uid: 8920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-8.5 - parent: 12 - - uid: 8921 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-31.5 - parent: 12 - - uid: 8922 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-43.5 - parent: 12 - - uid: 8923 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-36.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8914 - - uid: 8924 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-34.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8914 - - uid: 8986 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-11.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 7342 - - uid: 9719 - components: - - type: Transform - pos: 14.5,22.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2025 - - uid: 9976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-36.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2545 - - uid: 9977 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-36.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2545 - - uid: 9979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-37.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9975 - - 27296 - - uid: 9980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-43.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9975 - - 28358 - - uid: 9981 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-46.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9975 - - uid: 9983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-59.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9974 - - uid: 9985 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-47.5 - parent: 12 - - uid: 9986 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-47.5 - parent: 12 - - uid: 9987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-26.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 12032 - - uid: 9988 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-22.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 12032 - - uid: 9989 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-31.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 1699 - - uid: 10000 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-1.5 - parent: 12 - - uid: 10002 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-14.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 1288 - - uid: 10003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-16.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10019 - - uid: 10004 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-21.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10018 - - uid: 10012 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-21.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 450 - - uid: 10013 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-21.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10201 - - uid: 10450 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-62.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9974 - - uid: 13262 - components: - - type: Transform - pos: 40.5,37.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13303 - - uid: 13302 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,29.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13076 - - uid: 13752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13750 - - 28330 - - uid: 13753 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,32.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13751 - - uid: 13944 - components: - - type: Transform - pos: 29.5,37.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13943 - - uid: 15420 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,74.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23594 - - uid: 16405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 16497 - - uid: 16489 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,9.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 16499 - - uid: 16490 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,9.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 449 - - uid: 16491 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,16.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 449 - - uid: 16492 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 449 - - uid: 16495 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,17.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 16496 - - 28381 - - uid: 16500 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,9.5 - parent: 12 - - uid: 18885 - components: - - type: Transform - pos: -43.5,23.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18884 - - uid: 18886 - components: - - type: Transform - pos: -33.5,22.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18884 - - uid: 18889 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18888 - - uid: 18890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18888 - - uid: 18891 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18887 - - uid: 18892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,21.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18888 - - uid: 18893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,37.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18887 - - uid: 21640 - components: - - type: Transform - pos: -15.5,-2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9702 - - uid: 22249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22248 - - uid: 22250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22248 - - uid: 22392 - components: - - type: Transform - pos: -8.5,48.5 - parent: 12 - - uid: 22394 - components: - - type: Transform - pos: -5.5,55.5 - parent: 12 - - uid: 22395 - components: - - type: Transform - pos: -9.5,62.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22398 - - uid: 22396 - components: - - type: Transform - pos: -15.5,62.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22398 - - uid: 22397 - components: - - type: Transform - pos: -3.5,62.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22398 - - uid: 22399 - components: - - type: Transform - pos: -9.5,72.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 30349 - - uid: 22579 - components: - - type: Transform - pos: 8.5,32.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22582 - - uid: 22581 - components: - - type: Transform - pos: 5.5,34.5 - parent: 12 - - 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 - rot: 1.5707963267948966 rad - pos: 21.5,57.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23625 - - uid: 23623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,74.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23594 - - uid: 23624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,65.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23594 - - uid: 23627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,53.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23630 - - uid: 23628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,58.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23630 - - uid: 23629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,57.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23630 - - uid: 23631 - components: - - type: Transform - pos: 2.5,51.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23632 - - uid: 23636 - components: - - type: Transform - pos: 29.5,58.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23635 - - uid: 23640 - components: - - type: Transform - pos: 36.5,52.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23639 - - 30452 - - uid: 23641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,49.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24184 - - uid: 23642 - components: - - type: Transform - pos: 33.5,45.5 - parent: 12 - - uid: 23644 - components: - - type: Transform - pos: 37.5,41.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23643 - - uid: 23645 - components: - - type: Transform - pos: 35.5,29.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 30453 - - uid: 23787 - components: - - type: Transform - pos: -28.5,53.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23786 - - uid: 23788 - components: - - type: Transform - pos: -28.5,46.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23786 - - uid: 23789 - components: - - type: Transform - pos: -26.5,51.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23786 - - uid: 23792 - components: - - type: Transform - pos: -44.5,62.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23791 - - uid: 23793 - components: - - type: Transform - pos: -47.5,62.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23791 - - uid: 23794 - components: - - type: Transform - pos: -41.5,62.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23791 - - uid: 23795 - components: - - type: Transform - pos: -43.5,58.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23791 - - uid: 23798 - components: - - type: Transform - pos: -42.5,52.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23796 - - uid: 23801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,35.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23804 - - uid: 23803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,39.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23809 - - uid: 23808 - components: - - type: Transform - pos: -43.5,40.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23800 - - uid: 23810 - components: - - type: Transform - pos: -23.5,40.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23809 - - 23811 - - uid: 24185 - components: - - type: Transform - pos: 70.5,48.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24184 - - uid: 24188 - components: - - type: Transform - pos: 58.5,55.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24187 - - uid: 24190 - components: - - type: Transform - pos: 60.5,44.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22815 - - uid: 24191 - components: - - type: Transform - pos: 57.5,49.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 12578 - - uid: 26054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-34.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27296 - - uid: 26569 - components: - - type: Transform - pos: 47.5,-7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 20784 - - uid: 26790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27311 - - uid: 27889 - components: - - type: Transform - pos: 33.5,11.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9101 - - uid: 28272 - components: - - type: Transform - pos: 49.5,56.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28271 - - uid: 28329 - components: - - type: Transform - pos: 49.5,62.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28328 - - uid: 28332 - components: - - type: Transform - pos: 7.5,44.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28331 - - uid: 28334 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,44.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28270 - - uid: 28335 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,32.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28270 - - uid: 28336 - components: - - type: Transform - pos: -15.5,21.5 - parent: 12 - - uid: 28338 - components: - - type: Transform - pos: -8.5,28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28337 - - uid: 28340 - components: - - type: Transform - pos: -38.5,28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28339 - - uid: 28341 - components: - - type: Transform - pos: -23.5,27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28339 - - uid: 28342 - components: - - type: Transform - pos: -15.5,-14.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2614 - - uid: 28344 - components: - - type: Transform - pos: -21.5,-59.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 377 - - uid: 28345 - components: - - type: Transform - pos: -19.5,-54.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 377 - - uid: 28357 - components: - - type: Transform - pos: -1.5,-50.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28354 - - uid: 28361 - components: - - type: Transform - pos: -3.5,-27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28360 - - uid: 28362 - components: - - type: Transform - pos: -15.5,-20.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28360 - - uid: 28364 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 4418 - - uid: 28368 - components: - - type: Transform - pos: 51.5,-26.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28367 - - uid: 28372 - components: - - type: Transform - pos: 63.5,-14.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28371 - - uid: 28379 - components: - - type: Transform - pos: 12.5,-39.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2852 - - uid: 28380 - components: - - type: Transform - pos: 31.5,-39.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2852 - - uid: 28384 - components: - - type: Transform - pos: 45.5,30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28383 - - uid: 28752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26792 - - uid: 29095 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-48.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9984 - - uid: 29111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-23.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 7342 - - uid: 29271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,64.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29270 - - uid: 29278 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,54.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29275 - - uid: 30260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-42.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9984 - - uid: 30446 - components: - - type: Transform - pos: 40.5,7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 30445 - - uid: 30503 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-38.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27296 - - uid: 30504 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-33.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27296 - - uid: 31517 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,4.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 11505 - - uid: 31759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 31755 - - uid: 31760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,3.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 31755 - - uid: 31993 - components: - - type: Transform - pos: 17.5,5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3983 - - uid: 31994 - components: - - type: Transform - pos: 16.5,-12.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3983 - - uid: 31995 - components: - - type: Transform - pos: 16.5,-4.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3983 -- proto: AirTankFilled - entities: - - uid: 354 - components: - - type: Transform - pos: -19.487133,-3.526132 - parent: 12 - - uid: 5894 - components: - - type: Transform - rot: -43.98229715025713 rad - pos: 33.353954,-19.804523 - parent: 12 - - type: GasTank - toggleActionEntity: 3128 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 3128 - - uid: 5895 - components: - - type: Transform - rot: -43.98229715025713 rad - pos: 33.696545,-19.883226 - parent: 12 - - type: GasTank - toggleActionEntity: 4142 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 4142 - - uid: 24346 - components: - - type: Transform - pos: -19.430058,-3.2733665 - parent: 12 - - uid: 26399 - components: - - type: Transform - pos: 55.76299,-49.517273 - parent: 12 - - uid: 26400 - components: - - type: Transform - pos: 55.398403,-49.47558 - parent: 12 - - uid: 28460 - components: - - type: Transform - 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 - rot: -18.84955592153876 rad - pos: -17.75976,-61.27799 - parent: 12 - - type: GasTank - toggleActionEntity: 2687 - - type: ActionsContainer - - type: ContainerContainer - containers: - 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 - components: - - type: Transform - pos: 55.5,37.5 - parent: 12 -- proto: AltarTechnology - entities: - - uid: 363 - components: - - type: Transform - pos: -0.5,-20.5 - parent: 12 -- proto: AmeController - entities: - - uid: 4538 - components: - - type: Transform - pos: 37.5,2.5 - parent: 12 -- proto: AmePartFlatpack - entities: - - uid: 2422 - components: - - type: Transform - pos: 40.70155,3.4612155 - parent: 12 - - uid: 31868 - components: - - type: Transform - pos: 40.423157,3.779093 - parent: 12 -- proto: AnomalyScanner - entities: - - uid: 9548 - components: - - type: Transform - parent: 9298 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 13796 - components: - - type: Transform - pos: -40.788715,-39.176174 - parent: 12 -- proto: AnomalyVesselCircuitboard - entities: - - uid: 1808 - components: - - type: Transform - parent: 1807 - - type: Physics - canCollide: False - - uid: 4864 - components: - - type: Transform - pos: 41.71727,-39.333447 - parent: 12 -- proto: APCBasic - entities: - - uid: 86 - components: - - type: Transform - pos: -9.5,-16.5 - parent: 12 - - uid: 145 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 12 - - uid: 247 - components: - - type: Transform - pos: -46.5,53.5 - parent: 12 - - uid: 250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,4.5 - parent: 12 - - uid: 678 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,54.5 - parent: 12 - - uid: 853 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,31.5 - parent: 12 - - uid: 1365 - components: - - type: Transform - pos: -27.5,-17.5 - parent: 12 - - uid: 1366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-28.5 - parent: 12 - - uid: 1367 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-37.5 - parent: 12 - - uid: 1518 - components: - - type: Transform - pos: -28.5,-40.5 - parent: 12 - - uid: 1541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-20.5 - parent: 12 - - uid: 1620 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-27.5 - parent: 12 - - uid: 1621 - components: - - type: Transform - pos: -47.5,-20.5 - parent: 12 - - uid: 2543 - components: - - type: Transform - pos: -13.5,-57.5 - parent: 12 - - uid: 2743 - components: - - type: Transform - pos: -23.5,-1.5 - parent: 12 - - uid: 2888 - components: - - type: Transform - pos: 57.5,59.5 - parent: 12 - - uid: 3081 - components: - - type: Transform - pos: -7.5,-29.5 - parent: 12 - - uid: 3082 - components: - - 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 - rot: 3.141592653589793 rad - pos: 5.5,-46.5 - parent: 12 - - uid: 4618 - components: - - type: Transform - pos: 54.5,13.5 - parent: 12 - - uid: 4868 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-21.5 - parent: 12 - - uid: 5600 - components: - - type: Transform - pos: 19.5,-15.5 - parent: 12 - - uid: 5602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-9.5 - parent: 12 - - uid: 6749 - components: - - type: Transform - pos: 13.5,-36.5 - parent: 12 - - uid: 7825 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 12 - - uid: 7899 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-10.5 - parent: 12 - - uid: 7901 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-31.5 - parent: 12 - - uid: 7945 - components: - - type: Transform - pos: 42.5,-33.5 - parent: 12 - - uid: 8045 - components: - - type: Transform - pos: 79.5,-33.5 - parent: 12 - - uid: 9141 - components: - - type: Transform - pos: 59.5,-27.5 - parent: 12 - - uid: 9589 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,67.5 - parent: 12 - - uid: 9640 - components: - - type: Transform - pos: -0.5,5.5 - parent: 12 - - uid: 9899 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-53.5 - parent: 12 - - uid: 9915 - components: - - type: Transform - pos: -8.5,-40.5 - parent: 12 - - uid: 10365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-11.5 - parent: 12 - - uid: 10704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,61.5 - parent: 12 - - uid: 10893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,15.5 - parent: 12 - - uid: 11127 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,6.5 - parent: 12 - - uid: 11213 - components: - - type: Transform - pos: 57.5,8.5 - parent: 12 - - uid: 11348 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,25.5 - parent: 12 - - uid: 11423 - components: - - type: Transform - pos: 43.5,26.5 - parent: 12 - - uid: 11512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,18.5 - parent: 12 - - uid: 12067 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-16.5 - parent: 12 - - uid: 12423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,26.5 - parent: 12 - - uid: 12616 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,28.5 - parent: 12 - - uid: 13759 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,38.5 - parent: 12 - - uid: 14774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,70.5 - parent: 12 - - uid: 15186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,51.5 - parent: 12 - - uid: 15242 - components: - - type: Transform - pos: 32.5,48.5 - parent: 12 - - uid: 15243 - components: - - type: Transform - pos: 35.5,58.5 - parent: 12 - - uid: 16031 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,1.5 - parent: 12 - - uid: 16089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,13.5 - parent: 12 - - uid: 16151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,17.5 - parent: 12 - - uid: 16296 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,33.5 - parent: 12 - - uid: 16403 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,22.5 - parent: 12 - - uid: 16940 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,48.5 - parent: 12 - - uid: 16941 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,56.5 - parent: 12 - - uid: 17208 - components: - - type: Transform - pos: -35.5,69.5 - parent: 12 - - uid: 17424 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,17.5 - parent: 12 - - uid: 17639 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,47.5 - parent: 12 - - uid: 17640 - components: - - type: Transform - pos: -32.5,42.5 - parent: 12 - - uid: 17657 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,57.5 - parent: 12 - - uid: 17663 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,35.5 - parent: 12 - - uid: 17733 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,32.5 - parent: 12 - - uid: 17734 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,21.5 - parent: 12 - - uid: 18336 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,64.5 - parent: 12 - - uid: 18596 - components: - - type: Transform - pos: 58.5,65.5 - parent: 12 - - uid: 18904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,36.5 - parent: 12 - - uid: 20346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,49.5 - parent: 12 - - uid: 20347 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,38.5 - parent: 12 - - uid: 21086 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,31.5 - parent: 12 - - uid: 21167 - components: - - type: Transform - pos: -11.5,46.5 - parent: 12 - - uid: 21918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-25.5 - parent: 12 - - uid: 22225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-5.5 - parent: 12 - - uid: 24703 - components: - - type: Transform - pos: 5.5,63.5 - parent: 12 - - uid: 24780 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,64.5 - parent: 12 - - uid: 24795 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,57.5 - parent: 12 - - uid: 24805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,51.5 - parent: 12 - - uid: 25060 - components: - - type: Transform - pos: 60.5,46.5 - parent: 12 - - uid: 25100 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-23.5 - parent: 12 - - uid: 25108 - components: - - type: Transform - pos: 45.5,54.5 - parent: 12 - - uid: 25276 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,7.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 - rot: 1.5707963267948966 rad - pos: -1.5,-36.5 - parent: 12 - - uid: 27355 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,50.5 - parent: 12 - - uid: 27754 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-52.5 - parent: 12 - - uid: 28717 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-4.5 - parent: 12 - - uid: 28969 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 12 - - uid: 29343 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,3.5 - parent: 12 - - uid: 29777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,49.5 - parent: 12 - - uid: 30404 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 12 - - uid: 30405 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,72.5 - parent: 12 - - uid: 30738 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-57.5 - parent: 12 - - uid: 30739 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-56.5 - parent: 12 - - uid: 31292 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-65.5 - parent: 12 - - uid: 32045 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-12.5 - parent: 12 -- proto: APCElectronics - entities: - - uid: 10892 - components: - - type: Transform - parent: 10889 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: APECircuitboard - entities: - - uid: 21693 - components: - - type: Transform - pos: 41.347633,-39.387844 - parent: 12 -- proto: AppleSeeds - entities: - - uid: 23539 - components: - - type: Transform - pos: 57.293247,57.90518 - parent: 12 -- proto: ArrivalsShuttleTimer - entities: - - uid: 16552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,75.5 - parent: 12 - - uid: 16553 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,75.5 - parent: 12 - - uid: 16555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,69.5 - parent: 12 - - uid: 16556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,84.5 - parent: 12 - - uid: 16557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,84.5 - parent: 12 -- proto: ArtifactAnalyzerMachineCircuitboard - entities: - - uid: 6300 - components: - - type: Transform - pos: 41.52228,-39.638065 - parent: 12 -- proto: ArtistCircuitBoard - entities: - - uid: 28850 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -3.622931,-15.409775 - parent: 12 -- proto: Ash - entities: - - uid: 28977 - components: - - type: Transform - pos: -55.65416,60.668686 - parent: 12 -- proto: Ashtray - entities: - - uid: 6886 - components: - - type: Transform - pos: 24.488516,-38.63795 - parent: 12 - - uid: 13635 - components: - - type: Transform - pos: 32.608833,27.721952 - parent: 12 - - uid: 15101 - components: - - type: Transform - pos: 21.5,44.5 - parent: 12 - - uid: 16781 - components: - - type: Transform - pos: -28.507593,15.635736 - parent: 12 - - uid: 21466 - components: - - type: Transform - pos: -32.525604,30.570112 - parent: 12 - - uid: 22677 - components: - - 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 - components: - - type: Transform - pos: 2.3982162,-1.3528447 - parent: 12 -- proto: AsteroidRock - entities: - - uid: 4769 - components: - - type: Transform - pos: -58.5,-51.5 - parent: 12 - - uid: 4976 - components: - - type: Transform - pos: -52.5,-52.5 - parent: 12 - - uid: 7157 - components: - - type: Transform - pos: -59.5,-53.5 - parent: 12 - - uid: 10819 - components: - - type: Transform - pos: -61.5,-49.5 - parent: 12 - - uid: 10823 - components: - - type: Transform - pos: -61.5,-50.5 - parent: 12 - - uid: 17288 - components: - - type: Transform - pos: -48.5,-55.5 - parent: 12 - - uid: 25452 - components: - - type: Transform - pos: -60.5,-52.5 - parent: 12 - - uid: 25568 - components: - - type: Transform - pos: -56.5,-51.5 - parent: 12 - - uid: 25682 - components: - - type: Transform - pos: -59.5,-49.5 - parent: 12 - - uid: 25738 - components: - - type: Transform - pos: -58.5,-53.5 - parent: 12 - - uid: 26291 - components: - - type: Transform - pos: -59.5,-51.5 - parent: 12 - - uid: 26305 - components: - - type: Transform - pos: -41.5,-55.5 - parent: 12 - - uid: 26413 - components: - - type: Transform - pos: -41.5,-56.5 - parent: 12 - - uid: 29024 - components: - - type: Transform - pos: -60.5,-51.5 - parent: 12 - - uid: 29978 - components: - - type: Transform - pos: -59.5,-47.5 - parent: 12 - - uid: 30180 - components: - - type: Transform - pos: -60.5,-48.5 - parent: 12 - - uid: 30184 - components: - - type: Transform - pos: -62.5,-50.5 - parent: 12 - - uid: 30271 - components: - - type: Transform - pos: -51.5,-53.5 - parent: 12 - - uid: 30305 - components: - - type: Transform - pos: -50.5,-54.5 - parent: 12 - - uid: 30426 - components: - - type: Transform - pos: -51.5,-54.5 - parent: 12 - - uid: 30533 - components: - - type: Transform - pos: -46.5,-55.5 - parent: 12 - - uid: 30536 - components: - - type: Transform - pos: -49.5,-54.5 - parent: 12 - - uid: 30537 - components: - - type: Transform - pos: -49.5,-53.5 - parent: 12 - - uid: 30538 - components: - - type: Transform - pos: -47.5,-55.5 - parent: 12 - - uid: 31026 - components: - - type: Transform - pos: -50.5,-52.5 - parent: 12 - - uid: 31034 - components: - - type: Transform - pos: -57.5,-52.5 - parent: 12 - - uid: 31036 - components: - - type: Transform - pos: -61.5,-51.5 - parent: 12 - - uid: 31042 - components: - - type: Transform - pos: -60.5,-49.5 - parent: 12 -- proto: AsteroidRockCoal - entities: - - uid: 11027 - components: - - type: Transform - pos: -59.5,-52.5 - parent: 12 - - uid: 30341 - components: - - type: Transform - pos: -40.5,-57.5 - parent: 12 - - uid: 30457 - components: - - type: Transform - pos: -49.5,-55.5 - parent: 12 - - uid: 31038 - components: - - type: Transform - pos: -58.5,-50.5 - parent: 12 -- proto: AsteroidRockTin - entities: - - uid: 10822 - components: - - type: Transform - pos: -51.5,-52.5 - parent: 12 - - uid: 25823 - components: - - type: Transform - pos: -59.5,-50.5 - parent: 12 - - uid: 30342 - components: - - type: Transform - pos: -57.5,-53.5 - parent: 12 - - uid: 31030 - components: - - type: Transform - pos: -45.5,-55.5 - parent: 12 -- proto: AtmosDeviceFanDirectional - entities: - - uid: 159 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-71.5 - parent: 12 - - uid: 193 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-39.5 - parent: 12 - - uid: 228 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-4.5 - parent: 12 - - uid: 229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-6.5 - parent: 12 - - uid: 414 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,51.5 - parent: 12 - - uid: 451 - components: - - type: Transform - pos: 80.5,-33.5 - parent: 12 - - uid: 563 - components: - - type: Transform - pos: -15.5,-72.5 - parent: 12 - - uid: 919 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-51.5 - parent: 12 - - uid: 1355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,1.5 - parent: 12 - - uid: 1818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-43.5 - parent: 12 - - uid: 1963 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-49.5 - parent: 12 - - uid: 2280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-48.5 - parent: 12 - - uid: 2540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-53.5 - parent: 12 - - uid: 3781 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,66.5 - parent: 12 - - uid: 4550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-45.5 - parent: 12 - - uid: 7776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-10.5 - parent: 12 - - uid: 8496 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,5.5 - parent: 12 - - uid: 8497 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-13.5 - parent: 12 - - uid: 9039 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-15.5 - parent: 12 - - uid: 10290 - components: - - type: Transform - pos: 77.5,-33.5 - parent: 12 - - uid: 10292 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,5.5 - parent: 12 - - uid: 10293 - components: - - type: Transform - pos: -36.5,13.5 - parent: 12 - - uid: 10294 - components: - - type: Transform - pos: -42.5,13.5 - parent: 12 - - uid: 10834 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,83.5 - parent: 12 - - uid: 10948 - components: - - type: Transform - pos: 8.5,33.5 - parent: 12 - - uid: 11033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,76.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 - rot: -1.5707963267948966 rad - pos: 29.5,-43.5 - parent: 12 - - uid: 14763 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-45.5 - parent: 12 - - uid: 14787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-51.5 - parent: 12 - - uid: 20267 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,66.5 - parent: 12 - - uid: 23893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,76.5 - parent: 12 - - uid: 25444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,74.5 - parent: 12 - - uid: 28519 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,2.5 - parent: 12 - - uid: 31081 - components: - - type: Transform - pos: -13.5,-72.5 - parent: 12 - - uid: 31633 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-29.5 - parent: 12 - - uid: 31640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-19.5 - parent: 12 - - uid: 31641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-27.5 - parent: 12 - - uid: 31642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-21.5 - parent: 12 -- proto: AtmosFixBlockerMarker - entities: - - uid: 93 - components: - - type: Transform - pos: 21.5,24.5 - parent: 12 - - uid: 96 - components: - - type: Transform - pos: 22.5,24.5 - parent: 12 - - uid: 100 - components: - - type: Transform - pos: 22.5,23.5 - parent: 12 - - uid: 1351 - components: - - type: Transform - pos: 9.5,5.5 - parent: 12 - - uid: 1700 - components: - - type: Transform - pos: 9.5,-0.5 - parent: 12 - - uid: 2137 - components: - - type: Transform - pos: 21.5,22.5 - parent: 12 - - uid: 2160 - components: - - type: Transform - pos: 7.5,3.5 - parent: 12 - - uid: 2162 - components: - - type: Transform - pos: 7.5,2.5 - parent: 12 - - uid: 2163 - components: - - type: Transform - pos: 7.5,1.5 - parent: 12 - - uid: 2178 - components: - - type: Transform - pos: 20.5,23.5 - parent: 12 - - uid: 2180 - components: - - type: Transform - pos: 21.5,23.5 - parent: 12 - - uid: 2182 - components: - - type: Transform - pos: 20.5,24.5 - parent: 12 - - uid: 4706 - components: - - type: Transform - pos: 8.5,2.5 - parent: 12 - - uid: 4722 - components: - - type: Transform - pos: 9.5,3.5 - parent: 12 - - uid: 4730 - components: - - type: Transform - pos: 8.5,1.5 - parent: 12 - - uid: 4733 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 12 - - uid: 4735 - components: - - type: Transform - pos: 9.5,2.5 - parent: 12 - - uid: 4737 - components: - - type: Transform - pos: 10.5,3.5 - parent: 12 - - uid: 4738 - components: - - type: Transform - pos: 10.5,1.5 - parent: 12 - - uid: 4740 - components: - - type: Transform - pos: 10.5,2.5 - parent: 12 - - uid: 4741 - components: - - type: Transform - pos: 25.5,1.5 - parent: 12 - - uid: 4742 - components: - - type: Transform - pos: 24.5,1.5 - parent: 12 - - uid: 4801 - components: - - type: Transform - pos: 25.5,-4.5 - parent: 12 - - uid: 4852 - components: - - type: Transform - pos: 25.5,3.5 - parent: 12 - - uid: 4853 - components: - - type: Transform - pos: 24.5,3.5 - parent: 12 - - uid: 4865 - components: - - type: Transform - pos: 25.5,-12.5 - parent: 12 - - uid: 4872 - components: - - type: Transform - pos: 24.5,-4.5 - parent: 12 - - uid: 4873 - components: - - type: Transform - pos: 25.5,-2.5 - parent: 12 - - uid: 4874 - components: - - type: Transform - pos: 24.5,-2.5 - parent: 12 - - uid: 4878 - components: - - type: Transform - pos: 8.5,3.5 - parent: 12 - - uid: 5026 - components: - - type: Transform - pos: 25.5,-0.5 - parent: 12 - - uid: 5191 - components: - - type: Transform - pos: 24.5,-12.5 - parent: 12 - - uid: 5192 - components: - - type: Transform - pos: 10.5,5.5 - parent: 12 - - uid: 5812 - components: - - type: Transform - pos: 9.5,1.5 - parent: 12 - - uid: 5819 - components: - - type: Transform - pos: 10.5,-0.5 - parent: 12 - - uid: 7272 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,7.5 - parent: 12 - - uid: 7273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,7.5 - parent: 12 - - uid: 7274 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,7.5 - parent: 12 - - uid: 7287 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-10.5 - parent: 12 - - uid: 7288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-9.5 - parent: 12 - - uid: 7289 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-10.5 - parent: 12 - - uid: 7290 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-9.5 - parent: 12 - - uid: 7291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-10.5 - parent: 12 - - uid: 7292 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-9.5 - parent: 12 - - uid: 7293 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-10.5 - parent: 12 - - uid: 7294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-9.5 - parent: 12 - - uid: 7295 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-10.5 - parent: 12 - - uid: 7296 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-9.5 - parent: 12 - - uid: 7297 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-10.5 - parent: 12 - - uid: 7298 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-9.5 - parent: 12 - - uid: 8886 - components: - - type: Transform - pos: 84.5,-32.5 - parent: 12 - - uid: 9270 - components: - - type: Transform - pos: 75.5,-38.5 - parent: 12 - - uid: 9271 - components: - - type: Transform - pos: 76.5,-38.5 - parent: 12 - - uid: 9272 - components: - - type: Transform - pos: 77.5,-38.5 - parent: 12 - - uid: 9273 - components: - - type: Transform - pos: 78.5,-38.5 - parent: 12 - - uid: 9274 - components: - - type: Transform - pos: 79.5,-38.5 - parent: 12 - - uid: 9275 - components: - - type: Transform - pos: 80.5,-38.5 - parent: 12 - - uid: 9276 - components: - - type: Transform - pos: 81.5,-38.5 - parent: 12 - - uid: 9277 - components: - - type: Transform - pos: 81.5,-37.5 - parent: 12 - - uid: 9278 - components: - - type: Transform - pos: 81.5,-36.5 - parent: 12 - - uid: 9279 - components: - - type: Transform - pos: 80.5,-37.5 - parent: 12 - - uid: 9280 - components: - - type: Transform - pos: 80.5,-36.5 - parent: 12 - - uid: 9281 - components: - - type: Transform - pos: 79.5,-37.5 - parent: 12 - - uid: 9282 - components: - - type: Transform - pos: 79.5,-36.5 - parent: 12 - - uid: 9283 - components: - - type: Transform - pos: 78.5,-37.5 - parent: 12 - - uid: 9284 - components: - - type: Transform - pos: 78.5,-36.5 - parent: 12 - - uid: 9285 - components: - - type: Transform - pos: 77.5,-37.5 - parent: 12 - - uid: 9286 - components: - - type: Transform - pos: 77.5,-36.5 - parent: 12 - - uid: 9287 - components: - - type: Transform - pos: 76.5,-37.5 - parent: 12 - - uid: 9288 - components: - - type: Transform - pos: 76.5,-36.5 - parent: 12 - - uid: 9289 - components: - - type: Transform - pos: 75.5,-36.5 - parent: 12 - - uid: 9290 - components: - - type: Transform - pos: 85.5,-32.5 - parent: 12 - - uid: 9291 - components: - - type: Transform - pos: 86.5,-32.5 - parent: 12 - - uid: 9292 - components: - - type: Transform - pos: 85.5,-31.5 - parent: 12 - - uid: 9293 - components: - - type: Transform - pos: 85.5,-30.5 - parent: 12 - - uid: 17289 - components: - - type: Transform - pos: -50.5,-53.5 - parent: 12 - - uid: 26206 - components: - - type: Transform - pos: 54.5,19.5 - parent: 12 - - uid: 26207 - components: - - type: Transform - pos: 55.5,19.5 - parent: 12 - - uid: 26304 - components: - - type: Transform - pos: -48.5,-54.5 - parent: 12 - - uid: 26306 - components: - - type: Transform - pos: -52.5,-53.5 - parent: 12 - - uid: 26307 - components: - - type: Transform - pos: -53.5,-52.5 - parent: 12 - - uid: 26610 - components: - - type: Transform - pos: -44.5,-55.5 - parent: 12 - - uid: 26758 - components: - - type: Transform - pos: -40.5,-56.5 - parent: 12 - - uid: 26866 - components: - - type: Transform - pos: -58.5,-52.5 - parent: 12 - - uid: 27910 - components: - - type: Transform - pos: -60.5,-53.5 - parent: 12 - - uid: 28746 - components: - - type: Transform - pos: 9.5,6.5 - parent: 12 - - uid: 28747 - components: - - type: Transform - pos: 10.5,6.5 - parent: 12 - - uid: 28748 - components: - - type: Transform - pos: 11.5,6.5 - parent: 12 - - uid: 28749 - components: - - type: Transform - pos: 12.5,6.5 - parent: 12 - - uid: 29082 - components: - - type: Transform - pos: -62.5,-49.5 - parent: 12 - - uid: 30185 - components: - - type: Transform - pos: -56.5,-52.5 - parent: 12 - - uid: 30196 - components: - - type: Transform - pos: -60.5,-50.5 - parent: 12 - - uid: 30198 - components: - - type: Transform - pos: -57.5,-51.5 - parent: 12 - - uid: 30272 - components: - - type: Transform - pos: -61.5,-48.5 - parent: 12 - - uid: 30279 - components: - - type: Transform - pos: -59.5,-48.5 - parent: 12 - - uid: 30298 - components: - - type: Transform - pos: -62.5,-51.5 - parent: 12 - - uid: 30343 - components: - - type: Transform - pos: -40.5,-58.5 - parent: 12 - - uid: 30454 - components: - - type: Transform - pos: -47.5,-56.5 - parent: 12 - - uid: 30489 - components: - - type: Transform - pos: -58.5,-49.5 - parent: 12 - - uid: 30490 - components: - - type: Transform - pos: -41.5,-57.5 - parent: 12 -- proto: AtmosFixFreezerMarker - entities: - - uid: 15421 - components: - - type: Transform - pos: 39.5,51.5 - parent: 12 - - uid: 15422 - components: - - type: Transform - pos: 39.5,52.5 - parent: 12 - - uid: 15423 - components: - - type: Transform - pos: 39.5,53.5 - parent: 12 - - uid: 15424 - components: - - type: Transform - pos: 40.5,51.5 - parent: 12 - - uid: 15425 - components: - - type: Transform - pos: 40.5,52.5 - parent: 12 - - uid: 15426 - components: - - type: Transform - pos: 40.5,53.5 - parent: 12 - - uid: 15427 - components: - - type: Transform - pos: 41.5,51.5 - parent: 12 - - uid: 15428 - components: - - type: Transform - pos: 41.5,52.5 - parent: 12 - - uid: 15429 - components: - - type: Transform - pos: 41.5,53.5 - parent: 12 - - uid: 15430 - components: - - type: Transform - pos: 42.5,51.5 - parent: 12 - - uid: 15431 - components: - - type: Transform - pos: 42.5,52.5 - parent: 12 - - uid: 15432 - components: - - type: Transform - pos: 42.5,53.5 - parent: 12 -- proto: AtmosFixNitrogenMarker - entities: - - uid: 4881 - components: - - type: Transform - pos: 25.5,-8.5 - parent: 12 - - uid: 4883 - components: - - type: Transform - pos: 24.5,-8.5 - parent: 12 -- proto: AtmosFixOxygenMarker - entities: - - uid: 4885 - components: - - type: Transform - pos: 25.5,-10.5 - parent: 12 - - uid: 4888 - components: - - type: Transform - pos: 24.5,-10.5 - parent: 12 -- proto: AtmosFixPlasmaMarker - entities: - - uid: 4877 - components: - - type: Transform - pos: 24.5,-6.5 - parent: 12 - - uid: 4886 - components: - - type: Transform - pos: 25.5,-6.5 - parent: 12 -- proto: Autolathe - entities: - - uid: 1942 - components: - - type: Transform - pos: -26.5,-18.5 - parent: 12 - - uid: 1944 - components: - - type: Transform - pos: -44.5,-30.5 - parent: 12 - - uid: 2832 - components: - - type: Transform - pos: 58.5,-18.5 - parent: 12 - - uid: 25377 - components: - - type: Transform - pos: 18.5,-23.5 - parent: 12 -- proto: BananaPhoneInstrument - entities: - - uid: 22811 - components: - - type: Transform - pos: 4.7162275,59.451504 - parent: 12 -- proto: BannerBlue - entities: - - uid: 25749 - components: - - type: Transform - pos: -3.5,65.5 - parent: 12 -- proto: BannerCargo - entities: - - uid: 25746 - components: - - type: Transform - pos: 50.5,-23.5 - parent: 12 -- proto: BannerEngineering - entities: - - uid: 4043 - components: - - type: Transform - pos: 25.5,-25.5 - parent: 12 - - uid: 4063 - components: - - type: Transform - pos: 18.5,-25.5 - parent: 12 - - uid: 5620 - components: - - type: Transform - pos: 50.5,1.5 - parent: 12 -- proto: BannerGreen - entities: - - uid: 4944 - components: - - type: Transform - pos: -15.5,65.5 - parent: 12 -- proto: BannerMedical - entities: - - uid: 3806 - components: - - type: Transform - pos: -17.5,-30.5 - parent: 12 - - uid: 4096 - components: - - type: Transform - pos: -14.5,-39.5 - parent: 12 -- proto: BannerScience - entities: - - uid: 2839 - components: - - type: Transform - pos: -17.5,-23.5 - parent: 12 - - uid: 4094 - components: - - type: Transform - pos: -23.5,-23.5 - parent: 12 - - uid: 4095 - components: - - type: Transform - pos: -33.5,-32.5 - parent: 12 -- proto: BannerSecurity - entities: - - uid: 25747 - components: - - type: Transform - pos: -18.5,41.5 - parent: 12 - - uid: 29318 - components: - - type: Transform - pos: -32.5,35.5 - parent: 12 -- proto: BannerSyndicate - entities: - - uid: 28258 - components: - - type: Transform - pos: -48.5,-13.5 - parent: 12 -- proto: BarberScissors - entities: - - uid: 22372 - components: - - type: Transform - pos: -14.42802,47.661392 - parent: 12 - - uid: 22373 - components: - - type: Transform - pos: -13.457085,56.50327 - parent: 12 - - uid: 22381 - components: - - type: Transform - parent: 22380 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Barricade - entities: - - uid: 8473 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-2.5 - parent: 12 - - uid: 27404 - components: - - type: Transform - pos: -52.5,-17.5 - parent: 12 - - uid: 30898 - components: - - type: Transform - pos: -27.5,-57.5 - parent: 12 - - uid: 30899 - components: - - type: Transform - pos: -31.5,-55.5 - parent: 12 -- proto: BarricadeBlock - entities: - - 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 - pos: -28.5,-55.5 - parent: 12 - - uid: 32034 - components: - - type: Transform - pos: 41.5,-19.5 - parent: 12 -- proto: BarSignOfficerBeersky - entities: - - uid: 14512 - components: - - type: Transform - pos: 21.5,55.5 - parent: 12 -- proto: BarSignRobustaCafe - entities: - - uid: 27403 - components: - - type: Transform - pos: -55.5,-17.5 - parent: 12 -- proto: BaseBallBat - entities: - - uid: 19613 - components: - - type: Transform - pos: 45.5,-4.5 - parent: 12 - - uid: 25001 - components: - - type: Transform - pos: 9.537294,67.49891 - parent: 12 - - uid: 31257 - components: - - type: Transform - rot: -31.415926535897945 rad - pos: 1.474453,-68.41351 - parent: 12 -- proto: BaseChemistryEmptyVial - entities: - - uid: 7000 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 45.553024,64.45146 - parent: 12 - - uid: 14949 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 45.846558,64.679924 - parent: 12 -- proto: BaseComputer - entities: - - uid: 8950 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,47.5 - parent: 12 - - uid: 16516 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,5.5 - parent: 12 - - uid: 23564 - components: - - type: Transform - pos: 40.5,57.5 - parent: 12 -- proto: BaseGasCondenser - entities: - - uid: 2316 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-50.5 - parent: 12 - - uid: 9418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,7.5 - parent: 12 -- proto: BeachBall - entities: - - uid: 22540 - components: - - type: Transform - pos: 2.5242314,41.61528 - parent: 12 -- proto: Beaker - entities: - - uid: 12973 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 46.588547,64.7044 - parent: 12 - - uid: 23452 - components: - - type: Transform - pos: 29.745153,49.756775 - parent: 12 -- proto: Bed - entities: - - uid: 91 - components: - - type: Transform - pos: 46.5,-8.5 - parent: 12 - - uid: 1826 - components: - - type: Transform - pos: -27.5,56.5 - parent: 12 - - uid: 1992 - components: - - type: Transform - pos: -37.5,-19.5 - parent: 12 - - uid: 2584 - components: - - type: Transform - pos: -9.5,-38.5 - parent: 12 - - uid: 5473 - components: - - type: Transform - pos: 27.5,-22.5 - parent: 12 - - uid: 8726 - components: - - type: Transform - pos: 52.5,-37.5 - parent: 12 - - uid: 12284 - components: - - type: Transform - pos: 47.5,16.5 - parent: 12 - - uid: 17634 - components: - - type: Transform - pos: -53.5,19.5 - parent: 12 - - uid: 17635 - components: - - type: Transform - pos: -41.5,24.5 - parent: 12 - - uid: 17636 - components: - - type: Transform - pos: -44.5,33.5 - parent: 12 - - uid: 19373 - components: - - type: Transform - pos: -47.5,63.5 - parent: 12 - - uid: 19374 - components: - - type: Transform - pos: -44.5,63.5 - parent: 12 - - uid: 19375 - components: - - type: Transform - pos: -41.5,63.5 - parent: 12 - - uid: 20785 - components: - - type: Transform - pos: -27.5,54.5 - parent: 12 - - uid: 20786 - components: - - type: Transform - pos: -27.5,54.5 - parent: 12 - - uid: 20787 - components: - - type: Transform - pos: -27.5,55.5 - parent: 12 - - uid: 21733 - components: - - type: Transform - pos: -4.5,58.5 - parent: 12 - - uid: 21734 - components: - - type: Transform - pos: -2.5,58.5 - parent: 12 - - uid: 21735 - components: - - type: Transform - pos: -2.5,62.5 - parent: 12 - - uid: 21737 - components: - - type: Transform - pos: -4.5,64.5 - parent: 12 - - uid: 21738 - components: - - type: Transform - pos: -2.5,64.5 - parent: 12 - - uid: 21739 - components: - - type: Transform - pos: -4.5,62.5 - parent: 12 - - uid: 21740 - components: - - type: Transform - pos: -14.5,58.5 - parent: 12 - - uid: 21741 - components: - - type: Transform - pos: -16.5,58.5 - parent: 12 - - uid: 21742 - components: - - type: Transform - pos: -16.5,60.5 - parent: 12 - - uid: 21743 - components: - - type: Transform - pos: -14.5,60.5 - parent: 12 - - uid: 21744 - components: - - type: Transform - pos: -14.5,64.5 - parent: 12 - - uid: 21745 - components: - - type: Transform - pos: -16.5,64.5 - parent: 12 - - uid: 22893 - components: - - type: Transform - pos: 3.5,55.5 - parent: 12 - - uid: 22894 - components: - - type: Transform - pos: 5.5,55.5 - parent: 12 - - uid: 25042 - components: - - 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 - pos: -49.5,-14.5 - parent: 12 -- proto: BedsheetBlue - entities: - - uid: 21723 - components: - - type: Transform - pos: -2.5,64.5 - parent: 12 - - uid: 21724 - components: - - type: Transform - pos: -4.5,64.5 - parent: 12 - - uid: 21725 - components: - - type: Transform - pos: -4.5,62.5 - parent: 12 - - uid: 21726 - components: - - type: Transform - pos: -2.5,62.5 - parent: 12 - - uid: 21727 - components: - - type: Transform - pos: -2.5,58.5 - parent: 12 - - uid: 21728 - components: - - type: Transform - pos: -4.5,58.5 - parent: 12 -- proto: BedsheetCaptain - entities: - - uid: 17413 - components: - - type: Transform - pos: -53.5,19.5 - parent: 12 -- proto: BedsheetCE - entities: - - uid: 5472 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-22.5 - parent: 12 -- proto: BedsheetClown - entities: - - uid: 22723 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,55.5 - parent: 12 -- proto: BedsheetCMO - entities: - - uid: 2583 - components: - - type: Transform - pos: -9.5,-38.5 - parent: 12 -- proto: BedsheetGreen - entities: - - uid: 2384 - components: - - type: Transform - pos: -44.5,63.5 - parent: 12 - - uid: 21711 - components: - - type: Transform - pos: -14.5,58.5 - parent: 12 - - uid: 21712 - components: - - type: Transform - pos: -16.5,58.5 - parent: 12 - - uid: 21717 - components: - - type: Transform - pos: -16.5,60.5 - parent: 12 - - uid: 21718 - components: - - type: Transform - pos: -14.5,60.5 - parent: 12 - - uid: 21719 - components: - - type: Transform - pos: -14.5,64.5 - parent: 12 - - uid: 21720 - components: - - type: Transform - pos: -16.5,64.5 - parent: 12 -- proto: BedsheetHOP - entities: - - uid: 17638 - components: - - type: Transform - pos: -41.5,24.5 - parent: 12 -- proto: BedsheetHOS - entities: - - uid: 17637 - components: - - type: Transform - pos: -44.5,33.5 - parent: 12 -- proto: BedsheetMedical - entities: - - uid: 89 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,55.5 - parent: 12 - - uid: 10540 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-49.5 - parent: 12 - - uid: 10664 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-48.5 - parent: 12 - - uid: 13873 - components: - - type: Transform - pos: 26.5,37.5 - parent: 12 - - uid: 16776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-47.5 - parent: 12 - - uid: 21668 - components: - - type: Transform - pos: -8.5,-50.5 - parent: 12 -- proto: BedsheetMime - entities: - - uid: 22693 - components: - - type: Transform - pos: 3.5,55.5 - parent: 12 -- proto: BedsheetOrange - entities: - - uid: 19376 - components: - - type: Transform - pos: -47.5,63.5 - parent: 12 -- proto: BedsheetPurple - entities: - - uid: 2467 - components: - - type: Transform - pos: -41.5,63.5 - parent: 12 - - uid: 12283 - components: - - type: Transform - pos: 47.5,16.5 - parent: 12 -- proto: BedsheetQM - entities: - - uid: 7517 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-8.5 - parent: 12 -- proto: BedsheetRD - entities: - - uid: 1993 - components: - - type: Transform - pos: -37.5,-19.5 - parent: 12 -- proto: BedsheetSyndie - entities: - - uid: 28261 - components: - - 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 - components: - - type: Transform - pos: 48.5,41.5 - parent: 12 - - uid: 12707 - components: - - type: Transform - pos: 49.5,41.5 - parent: 12 - - uid: 13719 - components: - - type: Transform - pos: 22.5,31.5 - parent: 12 - - uid: 13720 - components: - - type: Transform - pos: 23.5,31.5 - parent: 12 - - uid: 17632 - components: - - type: Transform - pos: -48.5,34.5 - parent: 12 - - uid: 17633 - components: - - type: Transform - pos: -47.5,34.5 - parent: 12 - - uid: 24147 - components: - - type: Transform - pos: 55.5,50.5 - parent: 12 - - uid: 24148 - components: - - type: Transform - pos: 54.5,50.5 - parent: 12 -- proto: BenchRedComfy - entities: - - uid: 1072 - components: - - type: Transform - pos: -36.5,-26.5 - parent: 12 - - uid: 1073 - components: - - type: Transform - pos: -35.5,-26.5 - parent: 12 - - uid: 12704 - components: - - type: Transform - pos: 46.5,41.5 - parent: 12 - - uid: 12705 - components: - - type: Transform - pos: 47.5,41.5 - parent: 12 - - uid: 13721 - components: - - type: Transform - pos: 19.5,31.5 - parent: 12 - - uid: 13722 - components: - - type: Transform - pos: 20.5,31.5 - parent: 12 - - uid: 21277 - components: - - type: Transform - pos: -21.5,47.5 - parent: 12 - - uid: 21278 - components: - - type: Transform - pos: -20.5,47.5 - parent: 12 -- proto: Biogenerator - entities: - - uid: 107 - components: - - type: Transform - pos: 59.5,50.5 - parent: 12 - - uid: 2784 - components: - - type: Transform - pos: -25.5,47.5 - parent: 12 - - uid: 31741 - components: - - type: Transform - pos: 77.5,50.5 - parent: 12 -- proto: BirdToyInstrument - entities: - - uid: 13000 - components: - - type: Transform - pos: 27.479553,-35.368896 - parent: 12 -- proto: BlastDoor - entities: - - uid: 528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-14.5 - parent: 12 - - uid: 529 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-14.5 - parent: 12 - - uid: 730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-27.5 - parent: 12 - - uid: 731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-26.5 - parent: 12 - - uid: 732 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-25.5 - parent: 12 - - uid: 733 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-23.5 - parent: 12 - - uid: 734 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-22.5 - parent: 12 - - uid: 735 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-21.5 - parent: 12 - - uid: 1850 - components: - - type: Transform - pos: 14.5,23.5 - parent: 12 - - uid: 4384 - components: - - type: Transform - pos: 15.5,23.5 - parent: 12 - - uid: 5199 - components: - - type: Transform - pos: 7.5,1.5 - parent: 12 - - uid: 7554 - components: - - type: Transform - pos: 7.5,2.5 - parent: 12 - - uid: 7778 - components: - - type: Transform - pos: 64.5,-16.5 - parent: 12 - - uid: 7779 - components: - - type: Transform - pos: 64.5,-12.5 - parent: 12 - - uid: 8974 - components: - - type: Transform - pos: 58.5,8.5 - parent: 12 - - uid: 8976 - components: - - type: Transform - pos: 60.5,8.5 - parent: 12 - - uid: 8992 - components: - - type: Transform - pos: 61.5,8.5 - parent: 12 - - uid: 9003 - components: - - type: Transform - pos: 59.5,8.5 - parent: 12 - - uid: 9123 - components: - - type: Transform - pos: 61.5,-37.5 - parent: 12 - - uid: 9407 - components: - - type: Transform - pos: 9.5,23.5 - parent: 12 - - uid: 10993 - components: - - type: Transform - pos: 7.5,23.5 - parent: 12 - - uid: 11326 - components: - - type: Transform - pos: 6.5,23.5 - parent: 12 - - uid: 12614 - components: - - type: Transform - pos: 59.5,40.5 - parent: 12 - - uid: 12674 - components: - - type: Transform - pos: 13.5,23.5 - parent: 12 - - uid: 12675 - components: - - type: Transform - pos: 16.5,23.5 - parent: 12 - - uid: 15681 - components: - - type: Transform - pos: 8.5,23.5 - parent: 12 - - uid: 20780 - components: - - type: Transform - pos: 59.5,-15.5 - parent: 12 - - uid: 20781 - components: - - type: Transform - pos: 59.5,-13.5 - parent: 12 - - uid: 26580 - components: - - type: Transform - pos: 7.5,3.5 - parent: 12 -- proto: BlastDoorOpen - entities: - - uid: 748 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,21.5 - parent: 12 - - uid: 16503 - components: - - type: Transform - pos: -19.5,12.5 - parent: 12 - - uid: 17553 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,19.5 - parent: 12 - - uid: 17554 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,16.5 - parent: 12 - - uid: 17555 - components: - - type: Transform - pos: -53.5,15.5 - parent: 12 - - uid: 17556 - components: - - type: Transform - pos: -52.5,15.5 - parent: 12 - - uid: 17557 - components: - - type: Transform - pos: -51.5,15.5 - parent: 12 - - uid: 17558 - components: - - type: Transform - pos: -50.5,15.5 - parent: 12 - - uid: 17559 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,16.5 - parent: 12 - - uid: 17560 - components: - - type: Transform - pos: -49.5,15.5 - parent: 12 - - uid: 17561 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,19.5 - parent: 12 - - uid: 17562 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,20.5 - parent: 12 - - uid: 17563 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,21.5 - parent: 12 - - uid: 17564 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,22.5 - parent: 12 - - uid: 17565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,21.5 - parent: 12 - - uid: 17566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,22.5 - parent: 12 - - uid: 17567 - components: - - type: Transform - pos: -45.5,20.5 - parent: 12 - - uid: 17568 - components: - - type: Transform - pos: -44.5,20.5 - parent: 12 - - uid: 17569 - components: - - type: Transform - pos: -43.5,20.5 - parent: 12 - - uid: 17570 - components: - - type: Transform - pos: -42.5,20.5 - parent: 12 - - uid: 17571 - components: - - type: Transform - pos: -41.5,20.5 - parent: 12 - - uid: 20057 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,43.5 - parent: 12 - - uid: 20058 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,49.5 - parent: 12 - - uid: 20059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,49.5 - parent: 12 -- proto: BlockGameArcade - entities: - - uid: 14993 - components: - - type: Transform - pos: 18.5,40.5 - parent: 12 - - uid: 14994 - components: - - type: Transform - pos: 23.5,40.5 - parent: 12 - - uid: 16937 - components: - - type: Transform - pos: 0.5,50.5 - parent: 12 - - uid: 16938 - components: - - type: Transform - pos: 5.5,49.5 - parent: 12 - - uid: 16939 - components: - - type: Transform - pos: 5.5,51.5 - parent: 12 - - uid: 21228 - components: - - type: Transform - pos: -31.5,56.5 - parent: 12 - - uid: 25003 - components: - - type: Transform - pos: 6.5,66.5 - parent: 12 -- proto: BlockGameArcadeComputerCircuitboard - entities: - - uid: 22318 - components: - - type: Transform - pos: 34.78795,45.317623 - parent: 12 -- proto: Bloodpack - entities: - - uid: 13830 - components: - - type: Transform - pos: 31.653522,37.901875 - parent: 12 -- proto: Blunt - entities: - - uid: 3786 - components: - - type: Transform - parent: 3794 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3787 - components: - - type: Transform - parent: 3794 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3788 - components: - - type: Transform - parent: 3794 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BodyBagFolded - entities: - - uid: 13826 - components: - - type: Transform - pos: 29.389439,35.806076 - parent: 12 - - uid: 19282 - components: - - type: Transform - pos: -46.21142,54.60185 - parent: 12 - - uid: 19283 - components: - - type: Transform - pos: -46.517414,54.638542 - parent: 12 - - uid: 21421 - components: - - type: Transform - pos: -36.428226,37.282276 - parent: 12 - - uid: 28500 - components: - - type: Transform - pos: -12.517883,-51.53051 - parent: 12 -- proto: BookAtmosAirAlarms - entities: - - uid: 29962 - components: - - type: Transform - rot: -2.6867397195928788E-14 rad - pos: 31.427582,-0.63683224 - parent: 12 - - uid: 31837 - components: - - type: Transform - parent: 31819 - - type: Physics - canCollide: False -- proto: BookAtmosDistro - entities: - - uid: 20542 - components: - - type: Transform - pos: 29.610678,-2.4266233 - parent: 12 - - uid: 31834 - components: - - type: Transform - parent: 31819 - - type: Physics - canCollide: False -- proto: BookAtmosVentsMore - entities: - - uid: 29961 - components: - - type: Transform - pos: 31.687996,-0.33453882 - parent: 12 - - uid: 31835 - components: - - type: Transform - parent: 31819 - - type: Physics - canCollide: False -- proto: BookAtmosWaste - entities: - - uid: 29960 - components: - - type: Transform - pos: 29.346788,-2.2505753 - parent: 12 - - uid: 31836 - components: - - type: Transform - parent: 31819 - - type: Physics - canCollide: False -- proto: BookBartendersManual - entities: - - uid: 22368 - components: - - type: Transform - pos: 32.433628,51.733627 - parent: 12 - - uid: 31825 - components: - - type: Transform - parent: 31819 - - type: Physics - canCollide: False -- proto: BookBase - entities: - - uid: 13338 - components: - - type: Transform - pos: 55.531384,30.579618 - parent: 12 -- proto: BookChemicalCompendium - entities: - - uid: 2299 - components: - - type: Transform - pos: -24.476768,-43.460342 - parent: 12 - - uid: 13013 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 44.520985,64.55696 - parent: 12 - - uid: 31832 - components: - - type: Transform - parent: 31819 - - type: Physics - canCollide: False -- proto: BookEngineersHandbook - entities: - - uid: 31833 - components: - - type: Transform - parent: 31819 - - type: Physics - canCollide: False -- proto: BookHowToCookForFortySpaceman - entities: - - uid: 30193 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 37.62233,57.432808 - parent: 12 - - uid: 31826 - components: - - type: Transform - parent: 31819 - - type: Physics - canCollide: False -- proto: BookHowToKeepStationClean - entities: - - uid: 31823 - components: - - type: Transform - parent: 31819 - - type: Physics - canCollide: False -- proto: BookHowToRockAndStone - entities: - - uid: 31830 - components: - - type: Transform - parent: 31819 - - type: Physics - canCollide: False -- proto: BookHowToSurvive - entities: - - uid: 31822 - components: - - type: Transform - parent: 31819 - - type: Physics - canCollide: False -- proto: BookLeafLoversSecret - entities: - - uid: 24101 - components: - - type: Transform - pos: 76.35812,54.568344 - parent: 12 - - uid: 31824 - components: - - type: Transform - parent: 31819 - - type: Physics - canCollide: False -- proto: BookMedicalOfficer - entities: - - uid: 3956 - components: - - type: Transform - pos: -22.417387,-51.41978 - parent: 12 -- proto: BookMedicalReferenceBook - entities: - - uid: 31831 - components: - - type: Transform - parent: 31819 - - type: Physics - canCollide: False -- proto: BookNarsieLegend - entities: - - uid: 13339 - components: - - type: Transform - pos: 54.5418,30.579618 - parent: 12 -- proto: BookScientistsGuidebook - entities: - - uid: 2067 - components: - - type: Transform - pos: -41.59995,-39.339886 - parent: 12 - - uid: 2068 - components: - - type: Transform - pos: -41.216785,-39.49439 - parent: 12 - - uid: 31827 - components: - - type: Transform - parent: 31819 - - type: Physics - canCollide: False -- proto: BookSecurity - entities: - - uid: 31829 - components: - - type: Transform - parent: 31819 - - type: Physics - 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 - pos: -11.5,74.5 - parent: 12 - - type: Storage - storedItems: - 31820: - position: 0,0 - _rotation: South - 31821: - position: 2,0 - _rotation: South - 31822: - position: 1,0 - _rotation: South - 31823: - position: 3,0 - _rotation: South - 31824: - position: 4,0 - _rotation: South - 31825: - position: 5,0 - _rotation: South - 31826: - position: 6,0 - _rotation: South - 31827: - position: 7,0 - _rotation: South - 31828: - position: 9,0 - _rotation: South - 31829: - position: 8,0 - _rotation: South - 31830: - position: 10,0 - _rotation: South - 31831: - position: 0,2 - _rotation: South - 31832: - position: 1,2 - _rotation: South - 31833: - position: 11,0 - _rotation: South - 31834: - position: 13,0 - _rotation: South - 31835: - position: 12,0 - _rotation: South - 31836: - position: 14,0 - _rotation: South - 31837: - position: 15,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 31820 - - 31822 - - 31821 - - 31823 - - 31824 - - 31825 - - 31826 - - 31827 - - 31828 - - 31829 - - 31830 - - 31833 - - 31834 - - 31835 - - 31836 - - 31837 - - 31831 - - 31832 -- proto: BookshelfFilled - entities: - - uid: 2405 - components: - - type: Transform - pos: -40.5,-15.5 - parent: 12 - - uid: 3026 - components: - - type: Transform - pos: 45.5,40.5 - parent: 12 - - uid: 3027 - components: - - 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 - pos: -4.5,72.5 - parent: 12 - - uid: 19644 - components: - - type: Transform - pos: -4.5,71.5 - parent: 12 - - uid: 19652 - components: - - type: Transform - pos: -7.5,75.5 - parent: 12 - - uid: 19661 - components: - - type: Transform - pos: -5.5,74.5 - parent: 12 - - uid: 19670 - components: - - type: Transform - pos: -4.5,75.5 - parent: 12 - - uid: 19671 - components: - - type: Transform - pos: -4.5,74.5 - parent: 12 - - uid: 19784 - components: - - type: Transform - pos: -7.5,71.5 - parent: 12 - - uid: 19792 - components: - - type: Transform - pos: -8.5,71.5 - parent: 12 - - uid: 22390 - components: - - type: Transform - pos: -11.5,75.5 - parent: 12 - - uid: 25956 - components: - - type: Transform - pos: 9.5,59.5 - parent: 12 - - uid: 30277 - components: - - type: Transform - pos: -10.5,74.5 - parent: 12 - - uid: 30278 - components: - - type: Transform - pos: -10.5,75.5 - parent: 12 - - uid: 30281 - components: - - type: Transform - pos: -8.5,74.5 - parent: 12 - - uid: 30283 - components: - - type: Transform - pos: -7.5,72.5 - parent: 12 - - uid: 30284 - components: - - type: Transform - pos: -8.5,75.5 - parent: 12 - - uid: 30286 - components: - - type: Transform - pos: -5.5,72.5 - parent: 12 - - uid: 30287 - components: - - type: Transform - pos: -8.5,72.5 - parent: 12 - - uid: 30293 - components: - - type: Transform - pos: -5.5,71.5 - parent: 12 - - uid: 30295 - components: - - type: Transform - pos: -7.5,74.5 - parent: 12 - - uid: 30297 - components: - - type: Transform - pos: -5.5,75.5 - parent: 12 -- proto: BookSpaceEncyclopedia - entities: - - uid: 31821 - components: - - type: Transform - parent: 31819 - - type: Physics - canCollide: False -- proto: BookSpaceLaw - entities: - - uid: 30264 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -21.620737,-0.42439783 - parent: 12 - - uid: 31828 - components: - - type: Transform - parent: 31819 - - type: Physics - canCollide: False -- proto: BookTheBookOfControl - entities: - - uid: 31820 - components: - - type: Transform - parent: 31819 - - type: Physics - canCollide: False -- proto: BookWatched - entities: - - uid: 9440 - components: - - type: Transform - pos: -13.680368,72.89127 - 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 - pos: 23.5,47.5 - parent: 12 - - uid: 15096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,48.5 - parent: 12 -- proto: BorgCharger - entities: - - uid: 1777 - components: - - type: Transform - pos: -24.5,-31.5 - parent: 12 - - uid: 1778 - components: - - type: Transform - pos: -23.5,-31.5 - parent: 12 - - uid: 1784 - components: - - type: Transform - pos: -34.5,-37.5 - parent: 12 - - uid: 4044 - components: - - type: Transform - pos: -8.5,-35.5 - parent: 12 - - uid: 7509 - components: - - type: Transform - pos: 6.5,-23.5 - parent: 12 - - uid: 8345 - components: - - type: Transform - pos: 54.5,-39.5 - parent: 12 - - uid: 8929 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-30.5 - parent: 12 - - uid: 9040 - components: - - type: Transform - pos: 46.5,53.5 - parent: 12 - - uid: 12334 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,7.5 - parent: 12 - - uid: 17938 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,48.5 - parent: 12 - - uid: 21960 - components: - - type: Transform - pos: -4.5,-10.5 - parent: 12 - - uid: 22189 - components: - - type: Transform - pos: 3.5,-10.5 - parent: 12 - - uid: 23619 - components: - - type: Transform - pos: 22.5,65.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 - - uid: 26715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-14.5 - parent: 12 - - uid: 27093 - components: - - type: Transform - pos: 11.5,63.5 - parent: 12 - - uid: 28846 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 12 - - uid: 29122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,25.5 - parent: 12 -- proto: BorgModuleAnomaly - entities: - - uid: 31075 - components: - - type: Transform - pos: -40.50334,-38.27384 - parent: 12 -- proto: BorgModuleCable - entities: - - uid: 1780 - components: - - type: Transform - pos: -34.459003,-34.4371 - parent: 12 - - uid: 31065 - components: - - type: Transform - pos: 57.6163,-3.434434 - parent: 12 -- proto: BorgModuleDiagnosis - entities: - - uid: 31067 - components: - - type: Transform - pos: -1.522131,-49.55343 - parent: 12 -- proto: BorgModuleFireExtinguisher - entities: - - uid: 2071 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: -4.4606214,-12.385475 - parent: 12 -- proto: BorgModuleGPS - entities: - - uid: 8798 - components: - - type: Transform - pos: 79.554245,-27.423792 - parent: 12 -- proto: BorgModuleMining - entities: - - uid: 8797 - components: - - type: Transform - pos: 55.495014,-33.790596 - parent: 12 -- proto: BorgModuleRadiationDetection - entities: - - uid: 28441 - components: - - type: Transform - parent: 28440 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BorgModuleService - entities: - - uid: 23621 - components: - - type: Transform - pos: 22.528473,66.519966 - parent: 12 - - uid: 31076 - components: - - type: Transform - pos: 40.50182,45.594707 - parent: 12 -- proto: BorgModuleTool - entities: - - uid: 1781 - components: - - type: Transform - rot: 6.283185307179586 rad - pos: 3.4919462,-11.432423 - parent: 12 - - uid: 1782 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -4.4899044,50.539303 - parent: 12 -- proto: BoxBeaker - entities: - - uid: 1951 - components: - - type: Transform - pos: -42.412727,-26.430216 - parent: 12 - - uid: 2320 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: -27.62685,-48.527725 - parent: 12 - - uid: 24030 - components: - - type: Transform - pos: 76.4996,43.47757 - parent: 12 -- proto: BoxBodyBag - entities: - - uid: 3118 - components: - - type: Transform - pos: 6.641307,-38.30299 - parent: 12 - - uid: 13268 - components: - - type: Transform - pos: 37.360588,27.757914 - parent: 12 -- proto: BoxBottle - entities: - - uid: 13871 - components: - - type: Transform - rot: -69.11503837897548 rad - pos: 28.611654,38.752567 - parent: 12 -- proto: BoxCardboard - entities: - - uid: 17616 - components: - - type: Transform - pos: -53.811638,28.695076 - parent: 12 -- proto: BoxCleanerGrenades - entities: - - uid: 4158 - components: - - type: Transform - pos: 8.637355,-50.534607 - parent: 12 - - uid: 12277 - components: - - type: Transform - pos: 46.24556,18.80027 - parent: 12 -- proto: BoxEvidenceMarkers - entities: - - uid: 21422 - components: - - type: Transform - pos: -35.77185,38.559013 - parent: 12 -- proto: BoxFlare - entities: - - uid: 10407 - components: - - type: Transform - pos: -26.492268,-4.446753 - parent: 12 - - uid: 16417 - components: - - type: Transform - pos: 80.57248,-28.409077 - parent: 12 -- proto: BoxFolderBlack - entities: - - uid: 7133 - components: - - type: Transform - pos: -2.734612,22.745487 - parent: 12 - - uid: 7135 - components: - - type: Transform - pos: -2.5170195,22.499947 - parent: 12 - - uid: 10611 - components: - - type: Transform - pos: -21.431894,0.48532444 - parent: 12 -- proto: BoxFolderBlue - entities: - - uid: 21729 - components: - - type: Transform - pos: -6.687608,64.76698 - parent: 12 - - uid: 21730 - components: - - type: Transform - pos: -6.368649,64.267746 - parent: 12 -- proto: BoxFolderClipboard - entities: - - uid: 1839 - components: - - type: Transform - pos: -46.56669,-48.565594 - parent: 12 - - uid: 6879 - components: - - type: Transform - pos: 22.87914,-38.4192 - parent: 12 - - uid: 8892 - components: - - type: Transform - rot: -87.96459430051418 rad - pos: 53.92276,-23.364092 - parent: 12 - - uid: 13317 - components: - - type: Transform - pos: 54.79497,27.665699 - parent: 12 - - uid: 13318 - components: - - type: Transform - pos: 54.61789,27.665699 - parent: 12 - - uid: 13319 - components: - - type: Transform - pos: 54.409557,27.655281 - parent: 12 - - uid: 16705 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -21.640228,0.068657756 - parent: 12 - - uid: 18873 - components: - - type: Transform - pos: -43.973763,21.753422 - parent: 12 - - uid: 21443 - components: - - type: Transform - pos: -29.549849,30.647198 - parent: 12 - - uid: 21444 - components: - - type: Transform - pos: -34.15786,29.603043 - parent: 12 - - uid: 21445 - components: - - type: Transform - pos: -37.77032,32.714127 - parent: 12 - - uid: 21446 - components: - - type: Transform - pos: -37.52229,32.50153 - parent: 12 - - uid: 24175 - components: - - type: Transform - pos: 52.518078,47.484 - parent: 12 - - uid: 28896 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -24.613401,34.621143 - parent: 12 - - uid: 31997 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -24.461199,34.523228 - parent: 12 -- proto: BoxFolderGreen - entities: - - uid: 21721 - components: - - type: Transform - pos: -12.65248,61.707447 - parent: 12 - - uid: 21722 - components: - - type: Transform - pos: -12.125505,61.309902 - parent: 12 -- proto: BoxFolderRed - entities: - - uid: 16700 - components: - - type: Transform - pos: -21.251339,0.6867133 - parent: 12 -- proto: BoxHandcuff - entities: - - uid: 21418 - components: - - type: Transform - pos: -34.30436,36.737682 - parent: 12 - - uid: 23879 - components: - - type: Transform - pos: -30.055593,58.619553 - parent: 12 - - uid: 25985 - components: - - type: Transform - pos: -38.500076,51.736237 - parent: 12 -- proto: BoxHeadset - entities: - - uid: 23880 - components: - - 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 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,53.5 - parent: 12 - - uid: 22635 - components: - - type: Transform - pos: 13.5,52.5 - parent: 12 -- proto: BoxLatexGloves - entities: - - uid: 2792 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -11.358311,-60.675922 - parent: 12 - - uid: 3119 - components: - - type: Transform - pos: 6.266307,-38.261322 - parent: 12 - - uid: 27989 - components: - - type: Transform - pos: -1.4871819,-32.554222 - parent: 12 -- proto: BoxLethalshot - entities: - - uid: 20863 - components: - - type: Transform - pos: -32.540394,65.31164 - parent: 12 - - uid: 20864 - components: - - type: Transform - pos: -32.602894,65.63478 - parent: 12 - - uid: 20865 - components: - - type: Transform - pos: -32.259144,65.467995 - parent: 12 -- proto: BoxLightbulb - entities: - - uid: 4160 - components: - - type: Transform - pos: 8.616522,-51.326275 - parent: 12 -- proto: BoxLightMixed - entities: - - uid: 12280 - components: - - type: Transform - pos: 46.53094,18.8655 - parent: 12 - - uid: 16462 - components: - - type: Transform - pos: -12.5,13.5 - parent: 12 -- proto: BoxLighttube - entities: - - uid: 4159 - components: - - type: Transform - pos: 8.366522,-51.607525 - parent: 12 -- proto: BoxMouthSwab - entities: - - uid: 2793 - components: - - type: Transform - pos: -11.4115,-60.234375 - parent: 12 - - uid: 24034 - components: - - type: Transform - pos: 77.53651,48.323017 - parent: 12 -- proto: BoxMRE - entities: - - uid: 10379 - components: - - type: Transform - pos: -23.471653,6.497353 - parent: 12 - - uid: 23878 - components: - - type: Transform - pos: -30.661467,58.57354 - parent: 12 -- proto: BoxPillCanister - entities: - - uid: 2314 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: -27.3456,-48.433975 - parent: 12 - - uid: 13869 - components: - - type: Transform - rot: -69.11503837897548 rad - pos: 28.417212,38.467644 - parent: 12 -- proto: BoxShellTranquilizer - entities: - - uid: 27968 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 12.796418,-35.638966 - parent: 12 -- proto: BoxSterileMask - entities: - - uid: 2790 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -11.788866,-60.21296 - parent: 12 -- proto: BoxSyringe - entities: - - uid: 1843 - components: - - type: Transform - pos: -44.50419,-50.46403 - parent: 12 - - uid: 1952 - components: - - type: Transform - pos: -42.67054,-25.938028 - parent: 12 - - uid: 2313 - components: - - type: Transform - pos: -27.581957,-48.211227 - parent: 12 - - uid: 2819 - components: - - type: Transform - pos: -13.552221,-56.412125 - parent: 12 - - uid: 13870 - components: - - type: Transform - rot: -69.11503837897548 rad - pos: 28.500544,38.634426 - parent: 12 -- proto: BoxTrashbag - entities: - - uid: 12278 - components: - - type: Transform - pos: 46.54725,18.7595 - parent: 12 -- proto: BoxZiptie - entities: - - uid: 21419 - components: - - type: Transform - pos: -34.71891,36.51274 - parent: 12 - - uid: 23881 - components: - - type: Transform - pos: -33.39211,51.50707 - parent: 12 -- proto: BrbSign - entities: - - uid: 4054 - components: - - type: Transform - pos: -20.387884,-38.40377 - parent: 12 - - uid: 9569 - components: - - type: Transform - pos: -18.58279,-20.539314 - parent: 12 -- proto: BriefcaseBrownFilled - entities: - - uid: 16759 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -21.390228,-0.06328678 - parent: 12 -- proto: BrigTimer - entities: - - uid: 19293 - components: - - type: Transform - pos: -43.5,60.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 19303: - - Start: Close - - Timer: Open - - uid: 19296 - components: - - type: Transform - pos: -46.5,60.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 19304: - - Start: Close - - Timer: Open - - uid: 19300 - components: - - type: Transform - pos: -40.5,60.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 19302: - - Start: Close - - Timer: Open -- proto: Bucket - entities: - - uid: 4212 - components: - - type: Transform - pos: 4.33757,-60.111046 - parent: 12 - - uid: 13623 - components: - - type: Transform - pos: 43.25331,16.874538 - parent: 12 - - uid: 13624 - components: - - type: Transform - pos: 43.50331,16.86412 - parent: 12 - - uid: 21370 - components: - - type: Transform - pos: -25.38848,50.327435 - parent: 12 - - uid: 24162 - components: - - type: Transform - pos: 66.26953,50.546974 - parent: 12 - - uid: 24163 - components: - - type: Transform - pos: 65.501015,50.681324 - parent: 12 - - uid: 25857 - components: - - 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 - components: - - type: Transform - pos: 41.534676,52.435265 - parent: 12 -- proto: ButtonFrameCaution - entities: - - uid: 17549 - components: - - type: Transform - pos: -52.5,23.5 - parent: 12 - - uid: 17572 - components: - - type: Transform - pos: -44.5,25.5 - parent: 12 - - uid: 19012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,29.5 - parent: 12 - - uid: 23784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,49.5 - parent: 12 - - uid: 25363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,21.5 - parent: 12 - - uid: 27246 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-28.5 - parent: 12 - - uid: 29835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,69.5 - parent: 12 -- proto: ButtonFrameExit - entities: - - uid: 4086 - components: - - type: Transform - pos: -19.5,-37.5 - parent: 12 - - uid: 23785 - components: - - type: Transform - pos: -40.5,49.5 - parent: 12 - - uid: 28349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-48.5 - parent: 12 - - uid: 28351 - components: - - type: Transform - pos: -14.5,-40.5 - parent: 12 -- proto: ButtonFrameGrey - entities: - - uid: 199 - components: - - type: Transform - 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 - rot: 1.5707963267948966 rad - pos: 56.5,7.5 - parent: 12 - - uid: 4771 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-14.5 - parent: 12 - - uid: 8882 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,53.5 - parent: 12 - - uid: 10080 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-13.5 - parent: 12 - - uid: 11842 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-24.5 - parent: 12 - - uid: 11866 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,9.5 - parent: 12 - - uid: 13644 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: 26.5,-24.5 - parent: 12 - - uid: 16487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,8.5 - parent: 12 - - uid: 16846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-38.5 - parent: 12 - - uid: 23448 - components: - - type: Transform - pos: 31.5,52.5 - parent: 12 - - uid: 23449 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,54.5 - parent: 12 - - uid: 26380 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,57.5 - parent: 12 - - uid: 26789 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,0.5 - parent: 12 - - uid: 28554 - components: - - type: Transform - pos: -10.5,-36.5 - parent: 12 - - uid: 28555 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-19.5 - parent: 12 - - uid: 28740 - components: - - 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 - rot: -1.5707963267948966 rad - pos: 50.5,-7.5 - parent: 12 - - uid: 31379 - components: - - type: Transform - pos: -20.5,15.5 - parent: 12 - - uid: 31380 - components: - - type: Transform - pos: 12.5,19.5 - parent: 12 - - uid: 31381 - components: - - type: Transform - pos: 10.5,19.5 - parent: 12 - - uid: 31513 - components: - - type: Transform - pos: -49.5,-20.5 - parent: 12 - - uid: 31518 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-28.5 - parent: 12 -- proto: CableApcExtension - entities: - - uid: 14 - components: - - type: Transform - pos: -25.5,6.5 - parent: 12 - - uid: 20 - components: - - type: Transform - pos: 11.5,24.5 - parent: 12 - - uid: 51 - components: - - type: Transform - pos: -21.5,55.5 - parent: 12 - - uid: 57 - components: - - type: Transform - pos: -9.5,-2.5 - parent: 12 - - uid: 65 - components: - - type: Transform - pos: 64.5,-23.5 - parent: 12 - - uid: 66 - components: - - type: Transform - pos: 51.5,-12.5 - parent: 12 - - uid: 72 - components: - - type: Transform - pos: -38.5,-24.5 - parent: 12 - - uid: 74 - components: - - type: Transform - pos: -23.5,-7.5 - parent: 12 - - uid: 75 - components: - - type: Transform - pos: -10.5,4.5 - parent: 12 - - uid: 97 - components: - - type: Transform - pos: 14.5,12.5 - parent: 12 - - uid: 98 - components: - - type: Transform - pos: -10.5,-22.5 - parent: 12 - - uid: 99 - components: - - type: Transform - pos: -10.5,-21.5 - parent: 12 - - uid: 101 - components: - - type: Transform - pos: -9.5,-19.5 - parent: 12 - - uid: 114 - components: - - type: Transform - pos: -8.5,-7.5 - parent: 12 - - uid: 129 - components: - - type: Transform - pos: 52.5,-11.5 - parent: 12 - - uid: 185 - components: - - type: Transform - pos: 4.5,20.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 - pos: 15.5,6.5 - parent: 12 - - uid: 272 - components: - - type: Transform - pos: 40.5,-13.5 - parent: 12 - - uid: 317 - components: - - type: Transform - pos: 36.5,-14.5 - parent: 12 - - uid: 318 - components: - - type: Transform - pos: 30.5,-13.5 - parent: 12 - - uid: 327 - components: - - type: Transform - pos: 53.5,-7.5 - parent: 12 - - uid: 335 - components: - - type: Transform - pos: -21.5,-14.5 - parent: 12 - - uid: 336 - components: - - type: Transform - pos: -22.5,-14.5 - parent: 12 - - uid: 339 - components: - - type: Transform - pos: -22.5,-15.5 - parent: 12 - - uid: 342 - components: - - type: Transform - pos: 9.5,-34.5 - parent: 12 - - uid: 356 - components: - - type: Transform - pos: 13.5,2.5 - parent: 12 - - uid: 408 - components: - - type: Transform - pos: 13.5,3.5 - parent: 12 - - uid: 447 - components: - - type: Transform - pos: 13.5,4.5 - parent: 12 - - uid: 456 - components: - - type: Transform - pos: -46.5,1.5 - parent: 12 - - uid: 459 - components: - - type: Transform - pos: -45.5,1.5 - parent: 12 - - uid: 505 - components: - - type: Transform - pos: 4.5,26.5 - parent: 12 - - uid: 524 - components: - - type: Transform - pos: 1.5,17.5 - parent: 12 - - uid: 540 - components: - - type: Transform - pos: 11.5,22.5 - parent: 12 - - uid: 567 - components: - - type: Transform - pos: 1.5,19.5 - parent: 12 - - uid: 628 - components: - - type: Transform - pos: -32.5,-12.5 - parent: 12 - - uid: 629 - components: - - type: Transform - pos: -33.5,-12.5 - parent: 12 - - uid: 639 - components: - - type: Transform - pos: -53.5,-37.5 - parent: 12 - - uid: 679 - components: - - type: Transform - pos: 49.5,55.5 - parent: 12 - - uid: 682 - components: - - type: Transform - pos: 30.5,-11.5 - parent: 12 - - uid: 702 - components: - - type: Transform - pos: -43.5,1.5 - parent: 12 - - uid: 707 - components: - - type: Transform - pos: 30.5,-57.5 - parent: 12 - - uid: 745 - components: - - type: Transform - pos: 43.5,12.5 - parent: 12 - - uid: 746 - components: - - type: Transform - pos: -60.5,-27.5 - parent: 12 - - uid: 764 - components: - - type: Transform - pos: -42.5,1.5 - parent: 12 - - uid: 823 - components: - - type: Transform - pos: -44.5,1.5 - parent: 12 - - uid: 888 - components: - - type: Transform - pos: 44.5,-0.5 - parent: 12 - - uid: 924 - components: - - type: Transform - pos: 21.5,-2.5 - parent: 12 - - uid: 961 - components: - - type: Transform - pos: -44.5,-14.5 - parent: 12 - - uid: 981 - components: - - type: Transform - pos: -30.5,-25.5 - parent: 12 - - uid: 1049 - components: - - type: Transform - pos: 46.5,13.5 - parent: 12 - - uid: 1054 - components: - - type: Transform - pos: -20.5,-67.5 - parent: 12 - - uid: 1074 - components: - - type: Transform - pos: 24.5,11.5 - parent: 12 - - uid: 1077 - components: - - type: Transform - pos: -43.5,-13.5 - parent: 12 - - uid: 1087 - components: - - type: Transform - pos: 37.5,6.5 - parent: 12 - - uid: 1091 - components: - - 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 - pos: -46.5,-37.5 - parent: 12 - - uid: 1369 - components: - - type: Transform - pos: -46.5,-38.5 - parent: 12 - - uid: 1370 - components: - - type: Transform - pos: -46.5,-39.5 - parent: 12 - - uid: 1371 - components: - - type: Transform - pos: -47.5,-39.5 - parent: 12 - - uid: 1372 - components: - - type: Transform - pos: -48.5,-39.5 - parent: 12 - - uid: 1373 - components: - - type: Transform - pos: -49.5,-39.5 - parent: 12 - - uid: 1374 - components: - - type: Transform - pos: -50.5,-39.5 - parent: 12 - - uid: 1376 - components: - - type: Transform - pos: -48.5,-40.5 - parent: 12 - - uid: 1377 - components: - - type: Transform - pos: -46.5,-36.5 - parent: 12 - - uid: 1378 - components: - - type: Transform - pos: -46.5,-35.5 - parent: 12 - - uid: 1379 - components: - - type: Transform - pos: -45.5,-35.5 - parent: 12 - - uid: 1380 - components: - - type: Transform - pos: -44.5,-35.5 - parent: 12 - - uid: 1381 - components: - - type: Transform - pos: -43.5,-35.5 - parent: 12 - - uid: 1382 - components: - - type: Transform - pos: -42.5,-35.5 - parent: 12 - - uid: 1383 - components: - - type: Transform - pos: -41.5,-35.5 - parent: 12 - - uid: 1384 - components: - - type: Transform - pos: -40.5,-35.5 - parent: 12 - - uid: 1385 - components: - - type: Transform - pos: -42.5,-36.5 - parent: 12 - - uid: 1386 - components: - - type: Transform - pos: -42.5,-37.5 - parent: 12 - - uid: 1387 - components: - - type: Transform - pos: -42.5,-38.5 - parent: 12 - - uid: 1388 - components: - - type: Transform - pos: -43.5,-34.5 - parent: 12 - - uid: 1389 - components: - - type: Transform - pos: -43.5,-33.5 - parent: 12 - - uid: 1390 - components: - - type: Transform - pos: -48.5,-28.5 - parent: 12 - - uid: 1391 - components: - - type: Transform - pos: -48.5,-29.5 - parent: 12 - - uid: 1392 - components: - - type: Transform - pos: -48.5,-30.5 - parent: 12 - - uid: 1393 - components: - - type: Transform - pos: -48.5,-31.5 - parent: 12 - - uid: 1394 - components: - - type: Transform - pos: -49.5,-31.5 - parent: 12 - - uid: 1395 - components: - - type: Transform - pos: -50.5,-31.5 - parent: 12 - - uid: 1396 - components: - - type: Transform - pos: -51.5,-31.5 - parent: 12 - - uid: 1397 - components: - - type: Transform - pos: -52.5,-31.5 - parent: 12 - - uid: 1398 - components: - - type: Transform - pos: -53.5,-31.5 - parent: 12 - - uid: 1399 - components: - - type: Transform - pos: -49.5,-32.5 - parent: 12 - - uid: 1400 - components: - - type: Transform - pos: -49.5,-33.5 - parent: 12 - - uid: 1401 - components: - - type: Transform - pos: -49.5,-34.5 - parent: 12 - - uid: 1402 - components: - - type: Transform - pos: -48.5,-27.5 - parent: 12 - - uid: 1403 - components: - - type: Transform - pos: -48.5,-26.5 - parent: 12 - - uid: 1404 - components: - - type: Transform - pos: -49.5,-26.5 - parent: 12 - - uid: 1405 - components: - - type: Transform - pos: -50.5,-26.5 - parent: 12 - - uid: 1406 - components: - - type: Transform - pos: -51.5,-26.5 - parent: 12 - - uid: 1407 - components: - - type: Transform - pos: -52.5,-26.5 - parent: 12 - - uid: 1408 - components: - - type: Transform - pos: -53.5,-26.5 - parent: 12 - - uid: 1409 - components: - - type: Transform - pos: -47.5,-26.5 - parent: 12 - - uid: 1410 - components: - - type: Transform - pos: -46.5,-26.5 - parent: 12 - - uid: 1411 - components: - - type: Transform - pos: -45.5,-26.5 - parent: 12 - - uid: 1412 - components: - - type: Transform - pos: -44.5,-26.5 - parent: 12 - - uid: 1413 - components: - - type: Transform - pos: -44.5,-27.5 - parent: 12 - - uid: 1414 - components: - - type: Transform - pos: -44.5,-28.5 - parent: 12 - - uid: 1415 - components: - - type: Transform - pos: -44.5,-29.5 - parent: 12 - - uid: 1416 - components: - - type: Transform - pos: -45.5,-29.5 - parent: 12 - - uid: 1417 - components: - - type: Transform - pos: -43.5,-29.5 - parent: 12 - - uid: 1418 - components: - - type: Transform - pos: -43.5,-26.5 - parent: 12 - - uid: 1419 - components: - - type: Transform - pos: -47.5,-20.5 - parent: 12 - - uid: 1420 - components: - - type: Transform - pos: -47.5,-21.5 - parent: 12 - - uid: 1421 - components: - - type: Transform - pos: -47.5,-22.5 - parent: 12 - - uid: 1422 - components: - - type: Transform - pos: -48.5,-22.5 - parent: 12 - - uid: 1423 - components: - - type: Transform - pos: -49.5,-22.5 - parent: 12 - - uid: 1424 - components: - - type: Transform - pos: -50.5,-22.5 - parent: 12 - - uid: 1425 - components: - - type: Transform - pos: -51.5,-22.5 - parent: 12 - - uid: 1426 - components: - - type: Transform - pos: -52.5,-22.5 - parent: 12 - - uid: 1427 - components: - - type: Transform - pos: -53.5,-22.5 - parent: 12 - - uid: 1428 - components: - - type: Transform - pos: -47.5,-23.5 - parent: 12 - - uid: 1429 - components: - - type: Transform - pos: -46.5,-22.5 - parent: 12 - - uid: 1430 - components: - - type: Transform - pos: -45.5,-22.5 - parent: 12 - - uid: 1431 - components: - - type: Transform - pos: -44.5,-22.5 - parent: 12 - - uid: 1432 - components: - - type: Transform - pos: -43.5,-22.5 - parent: 12 - - uid: 1433 - components: - - type: Transform - pos: -43.5,-23.5 - parent: 12 - - uid: 1434 - components: - - type: Transform - pos: -42.5,-23.5 - parent: 12 - - uid: 1435 - components: - - type: Transform - pos: -41.5,-23.5 - parent: 12 - - uid: 1438 - components: - - type: Transform - pos: -39.5,-21.5 - parent: 12 - - uid: 1439 - components: - - type: Transform - pos: -39.5,-20.5 - parent: 12 - - uid: 1440 - components: - - type: Transform - pos: -39.5,-19.5 - parent: 12 - - uid: 1441 - components: - - type: Transform - pos: -40.5,-19.5 - parent: 12 - - uid: 1442 - components: - - type: Transform - pos: -41.5,-19.5 - parent: 12 - - uid: 1443 - components: - - type: Transform - pos: -42.5,-19.5 - parent: 12 - - uid: 1444 - components: - - type: Transform - pos: -39.5,-22.5 - parent: 12 - - uid: 1445 - components: - - type: Transform - pos: -39.5,-23.5 - parent: 12 - - uid: 1446 - components: - - type: Transform - pos: -38.5,-23.5 - parent: 12 - - uid: 1447 - components: - - type: Transform - pos: -37.5,-23.5 - parent: 12 - - uid: 1448 - components: - - type: Transform - pos: -36.5,-23.5 - parent: 12 - - uid: 1449 - components: - - type: Transform - pos: -36.5,-22.5 - parent: 12 - - uid: 1450 - components: - - type: Transform - pos: -36.5,-21.5 - parent: 12 - - uid: 1451 - components: - - type: Transform - pos: -36.5,-20.5 - parent: 12 - - uid: 1452 - components: - - type: Transform - pos: -36.5,-19.5 - parent: 12 - - uid: 1454 - components: - - type: Transform - pos: -37.5,-19.5 - parent: 12 - - uid: 1500 - components: - - type: Transform - pos: 54.5,-5.5 - parent: 12 - - uid: 1522 - components: - - type: Transform - pos: -24.5,59.5 - parent: 12 - - uid: 1558 - components: - - type: Transform - pos: -39.5,-35.5 - parent: 12 - - uid: 1559 - components: - - type: Transform - pos: -38.5,-35.5 - parent: 12 - - uid: 1560 - components: - - type: Transform - pos: -38.5,-36.5 - parent: 12 - - uid: 1561 - components: - - type: Transform - pos: -38.5,-37.5 - parent: 12 - - uid: 1562 - components: - - type: Transform - pos: -38.5,-38.5 - parent: 12 - - uid: 1563 - components: - - type: Transform - pos: -38.5,-39.5 - parent: 12 - - uid: 1564 - components: - - type: Transform - pos: -38.5,-40.5 - parent: 12 - - uid: 1565 - components: - - type: Transform - pos: -38.5,-41.5 - parent: 12 - - uid: 1566 - components: - - type: Transform - pos: -38.5,-42.5 - parent: 12 - - uid: 1567 - components: - - type: Transform - pos: -38.5,-43.5 - parent: 12 - - uid: 1568 - components: - - type: Transform - pos: -38.5,-44.5 - parent: 12 - - uid: 1569 - components: - - type: Transform - pos: -38.5,-45.5 - parent: 12 - - uid: 1570 - components: - - type: Transform - pos: -38.5,-46.5 - parent: 12 - - uid: 1571 - components: - - type: Transform - pos: -38.5,-47.5 - parent: 12 - - uid: 1572 - components: - - type: Transform - pos: -39.5,-47.5 - parent: 12 - - uid: 1573 - components: - - type: Transform - pos: -40.5,-47.5 - parent: 12 - - uid: 1574 - components: - - type: Transform - pos: -41.5,-47.5 - parent: 12 - - uid: 1575 - components: - - type: Transform - pos: -42.5,-47.5 - parent: 12 - - uid: 1576 - components: - - type: Transform - pos: -43.5,-47.5 - parent: 12 - - uid: 1577 - components: - - type: Transform - pos: -43.5,-46.5 - parent: 12 - - uid: 1578 - components: - - type: Transform - pos: -43.5,-45.5 - parent: 12 - - uid: 1579 - components: - - type: Transform - pos: -43.5,-44.5 - parent: 12 - - uid: 1580 - components: - - type: Transform - pos: -43.5,-43.5 - parent: 12 - - uid: 1581 - components: - - type: Transform - pos: -43.5,-42.5 - parent: 12 - - uid: 1582 - components: - - type: Transform - pos: -42.5,-42.5 - parent: 12 - - uid: 1583 - components: - - type: Transform - pos: -42.5,-41.5 - parent: 12 - - uid: 1584 - components: - - type: Transform - pos: -42.5,-40.5 - parent: 12 - - uid: 1585 - components: - - type: Transform - pos: -42.5,-39.5 - parent: 12 - - uid: 1586 - components: - - type: Transform - pos: -43.5,-48.5 - parent: 12 - - uid: 1587 - components: - - type: Transform - pos: -43.5,-49.5 - parent: 12 - - uid: 1588 - components: - - type: Transform - pos: -44.5,-48.5 - parent: 12 - - uid: 1589 - components: - - type: Transform - pos: -28.5,-40.5 - parent: 12 - - uid: 1590 - components: - - type: Transform - pos: -28.5,-41.5 - parent: 12 - - uid: 1591 - components: - - type: Transform - pos: -28.5,-42.5 - parent: 12 - - uid: 1592 - components: - - type: Transform - pos: -28.5,-43.5 - parent: 12 - - uid: 1593 - components: - - type: Transform - pos: -29.5,-43.5 - parent: 12 - - uid: 1594 - components: - - type: Transform - pos: -30.5,-43.5 - parent: 12 - - uid: 1595 - components: - - type: Transform - pos: -31.5,-43.5 - parent: 12 - - uid: 1596 - components: - - type: Transform - pos: -32.5,-43.5 - parent: 12 - - uid: 1597 - components: - - type: Transform - pos: -33.5,-43.5 - parent: 12 - - uid: 1598 - components: - - type: Transform - pos: -34.5,-43.5 - parent: 12 - - uid: 1599 - components: - - type: Transform - pos: -27.5,-43.5 - parent: 12 - - uid: 1600 - components: - - type: Transform - pos: -26.5,-43.5 - parent: 12 - - uid: 1601 - components: - - type: Transform - pos: -25.5,-43.5 - parent: 12 - - uid: 1602 - components: - - type: Transform - pos: -32.5,-44.5 - parent: 12 - - uid: 1603 - components: - - type: Transform - pos: -32.5,-45.5 - parent: 12 - - uid: 1604 - components: - - type: Transform - pos: -32.5,-46.5 - parent: 12 - - uid: 1605 - components: - - type: Transform - pos: -26.5,-44.5 - parent: 12 - - uid: 1606 - components: - - type: Transform - pos: -26.5,-45.5 - parent: 12 - - uid: 1607 - components: - - type: Transform - pos: -26.5,-46.5 - parent: 12 - - uid: 1608 - components: - - type: Transform - pos: -26.5,-47.5 - parent: 12 - - uid: 1609 - components: - - type: Transform - pos: -26.5,-48.5 - parent: 12 - - uid: 1610 - components: - - type: Transform - pos: -30.5,-42.5 - parent: 12 - - uid: 1611 - components: - - type: Transform - pos: 6.5,18.5 - parent: 12 - - uid: 1614 - components: - - type: Transform - pos: -30.5,-38.5 - parent: 12 - - uid: 1615 - components: - - type: Transform - pos: -31.5,-38.5 - parent: 12 - - uid: 1616 - components: - - type: Transform - pos: -32.5,-38.5 - parent: 12 - - uid: 1617 - components: - - type: Transform - pos: -33.5,-38.5 - parent: 12 - - uid: 1618 - components: - - type: Transform - pos: -34.5,-38.5 - parent: 12 - - uid: 1619 - components: - - type: Transform - pos: -35.5,-38.5 - parent: 12 - - uid: 1629 - components: - - type: Transform - pos: -27.5,-17.5 - parent: 12 - - uid: 1630 - components: - - type: Transform - pos: -27.5,-18.5 - parent: 12 - - uid: 1631 - components: - - type: Transform - pos: -27.5,-19.5 - parent: 12 - - uid: 1632 - components: - - type: Transform - pos: -27.5,-20.5 - parent: 12 - - uid: 1633 - components: - - type: Transform - pos: -28.5,-20.5 - parent: 12 - - uid: 1634 - components: - - type: Transform - pos: -29.5,-20.5 - parent: 12 - - uid: 1635 - components: - - type: Transform - pos: -30.5,-20.5 - parent: 12 - - uid: 1636 - components: - - type: Transform - pos: -31.5,-20.5 - parent: 12 - - uid: 1637 - components: - - type: Transform - pos: -32.5,-20.5 - parent: 12 - - uid: 1638 - components: - - type: Transform - pos: -26.5,-20.5 - parent: 12 - - uid: 1639 - components: - - type: Transform - pos: -25.5,-20.5 - parent: 12 - - uid: 1640 - components: - - type: Transform - pos: -24.5,-20.5 - parent: 12 - - uid: 1641 - components: - - type: Transform - pos: -23.5,-20.5 - parent: 12 - - uid: 1642 - components: - - type: Transform - pos: -22.5,-20.5 - parent: 12 - - uid: 1643 - components: - - type: Transform - pos: -21.5,-20.5 - parent: 12 - - uid: 1644 - components: - - type: Transform - pos: -20.5,-20.5 - parent: 12 - - uid: 1645 - components: - - type: Transform - pos: -19.5,-20.5 - parent: 12 - - uid: 1646 - components: - - type: Transform - pos: -18.5,-20.5 - parent: 12 - - uid: 1647 - components: - - type: Transform - pos: -27.5,-21.5 - parent: 12 - - uid: 1648 - components: - - type: Transform - pos: -27.5,-22.5 - parent: 12 - - uid: 1649 - components: - - type: Transform - pos: -27.5,-23.5 - parent: 12 - - uid: 1650 - components: - - type: Transform - pos: -27.5,-24.5 - parent: 12 - - uid: 1651 - components: - - type: Transform - pos: -27.5,-24.5 - parent: 12 - - uid: 1652 - components: - - type: Transform - pos: -26.5,-24.5 - parent: 12 - - uid: 1653 - components: - - type: Transform - pos: -25.5,-24.5 - parent: 12 - - uid: 1654 - components: - - type: Transform - pos: -24.5,-24.5 - parent: 12 - - uid: 1655 - components: - - type: Transform - pos: -23.5,-24.5 - parent: 12 - - uid: 1656 - components: - - type: Transform - pos: -22.5,-24.5 - parent: 12 - - uid: 1657 - components: - - type: Transform - pos: -21.5,-24.5 - parent: 12 - - uid: 1658 - components: - - type: Transform - pos: -20.5,-24.5 - parent: 12 - - uid: 1659 - components: - - type: Transform - pos: -28.5,-24.5 - parent: 12 - - uid: 1660 - components: - - type: Transform - pos: -29.5,-24.5 - parent: 12 - - uid: 1661 - components: - - type: Transform - pos: -30.5,-24.5 - parent: 12 - - uid: 1662 - components: - - type: Transform - pos: -30.5,-26.5 - parent: 12 - - uid: 1663 - components: - - type: Transform - pos: -30.5,-27.5 - parent: 12 - - uid: 1664 - components: - - type: Transform - pos: -30.5,-28.5 - parent: 12 - - uid: 1665 - components: - - type: Transform - pos: -30.5,-29.5 - parent: 12 - - uid: 1666 - components: - - type: Transform - pos: -30.5,-30.5 - parent: 12 - - uid: 1667 - components: - - type: Transform - pos: -30.5,-31.5 - parent: 12 - - uid: 1668 - components: - - type: Transform - pos: -30.5,-32.5 - parent: 12 - - uid: 1669 - components: - - type: Transform - pos: -30.5,-33.5 - parent: 12 - - uid: 1670 - components: - - type: Transform - pos: -30.5,-34.5 - parent: 12 - - uid: 1671 - components: - - type: Transform - pos: -31.5,-34.5 - parent: 12 - - uid: 1672 - components: - - type: Transform - pos: -32.5,-34.5 - parent: 12 - - uid: 1673 - components: - - type: Transform - pos: -33.5,-34.5 - parent: 12 - - uid: 1674 - components: - - type: Transform - pos: -34.5,-34.5 - parent: 12 - - uid: 1675 - components: - - type: Transform - pos: -35.5,-34.5 - parent: 12 - - uid: 1676 - components: - - type: Transform - pos: -36.5,-34.5 - parent: 12 - - uid: 1677 - components: - - type: Transform - pos: -36.5,-33.5 - parent: 12 - - uid: 1678 - components: - - type: Transform - pos: -36.5,-32.5 - parent: 12 - - uid: 1679 - components: - - type: Transform - pos: -36.5,-31.5 - parent: 12 - - uid: 1680 - components: - - type: Transform - pos: -36.5,-30.5 - parent: 12 - - uid: 1681 - components: - - type: Transform - pos: -36.5,-29.5 - parent: 12 - - uid: 1682 - components: - - type: Transform - pos: -36.5,-28.5 - parent: 12 - - uid: 1683 - components: - - type: Transform - pos: -36.5,-27.5 - parent: 12 - - uid: 1684 - components: - - type: Transform - pos: -35.5,-27.5 - parent: 12 - - uid: 1685 - components: - - type: Transform - pos: -34.5,-27.5 - parent: 12 - - uid: 1686 - components: - - type: Transform - pos: -33.5,-27.5 - parent: 12 - - uid: 1687 - components: - - type: Transform - pos: -32.5,-27.5 - parent: 12 - - uid: 1688 - components: - - type: Transform - pos: -31.5,-27.5 - parent: 12 - - uid: 1690 - components: - - type: Transform - pos: -42.5,-29.5 - parent: 12 - - uid: 1691 - components: - - type: Transform - pos: -41.5,-29.5 - parent: 12 - - uid: 1692 - components: - - type: Transform - pos: -37.5,-29.5 - parent: 12 - - uid: 1693 - components: - - type: Transform - pos: -50.5,-38.5 - parent: 12 - - uid: 1694 - components: - - type: Transform - pos: -45.5,-48.5 - parent: 12 - - uid: 1695 - components: - - type: Transform - pos: -44.5,-47.5 - parent: 12 - - uid: 1736 - components: - - type: Transform - pos: -27.5,-27.5 - parent: 12 - - uid: 1737 - components: - - type: Transform - pos: -24.5,-26.5 - parent: 12 - - uid: 1738 - components: - - type: Transform - pos: -24.5,-27.5 - parent: 12 - - uid: 1739 - components: - - type: Transform - pos: -24.5,-28.5 - parent: 12 - - uid: 1740 - components: - - type: Transform - pos: -24.5,-29.5 - parent: 12 - - uid: 1741 - components: - - type: Transform - pos: -25.5,-29.5 - parent: 12 - - uid: 1742 - components: - - type: Transform - pos: -23.5,-29.5 - parent: 12 - - uid: 1743 - components: - - 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 - pos: 13.5,21.5 - parent: 12 - - uid: 1793 - components: - - type: Transform - pos: 47.5,-20.5 - parent: 12 - - uid: 1828 - components: - - type: Transform - pos: 51.5,62.5 - parent: 12 - - uid: 1829 - components: - - type: Transform - pos: 48.5,62.5 - parent: 12 - - uid: 1830 - components: - - type: Transform - pos: -38.5,28.5 - parent: 12 - - uid: 1856 - components: - - type: Transform - pos: -3.5,20.5 - parent: 12 - - uid: 1916 - components: - - type: Transform - pos: 13.5,19.5 - parent: 12 - - uid: 1918 - components: - - type: Transform - pos: 5.5,18.5 - parent: 12 - - uid: 1943 - components: - - type: Transform - pos: -43.5,-14.5 - parent: 12 - - uid: 2024 - components: - - type: Transform - pos: 15.5,19.5 - parent: 12 - - uid: 2027 - components: - - type: Transform - pos: 17.5,14.5 - parent: 12 - - uid: 2065 - components: - - type: Transform - pos: 17.5,16.5 - parent: 12 - - uid: 2103 - components: - - 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 - pos: 24.5,3.5 - parent: 12 - - uid: 2142 - components: - - type: Transform - pos: -27.5,7.5 - parent: 12 - - uid: 2143 - components: - - type: Transform - pos: -25.5,7.5 - parent: 12 - - uid: 2144 - components: - - type: Transform - pos: -25.5,8.5 - parent: 12 - - uid: 2145 - components: - - type: Transform - pos: -25.5,10.5 - parent: 12 - - uid: 2153 - components: - - type: Transform - pos: 25.5,9.5 - parent: 12 - - uid: 2155 - components: - - type: Transform - pos: 24.5,9.5 - parent: 12 - - uid: 2156 - components: - - type: Transform - pos: 24.5,10.5 - parent: 12 - - uid: 2170 - components: - - type: Transform - pos: 27.5,-0.5 - parent: 12 - - uid: 2183 - components: - - type: Transform - pos: 25.5,-12.5 - parent: 12 - - uid: 2202 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 12 - - uid: 2203 - components: - - type: Transform - pos: -2.5,-10.5 - parent: 12 - - uid: 2204 - components: - - type: Transform - pos: -2.5,-11.5 - parent: 12 - - uid: 2205 - components: - - type: Transform - pos: -2.5,-12.5 - parent: 12 - - uid: 2206 - components: - - type: Transform - pos: -2.5,-13.5 - parent: 12 - - uid: 2207 - components: - - type: Transform - pos: -2.5,-14.5 - parent: 12 - - uid: 2208 - components: - - type: Transform - pos: -2.5,-15.5 - parent: 12 - - uid: 2209 - components: - - type: Transform - pos: -1.5,-11.5 - parent: 12 - - uid: 2210 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 12 - - uid: 2211 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 12 - - uid: 2212 - components: - - type: Transform - pos: 1.5,-11.5 - parent: 12 - - uid: 2213 - components: - - type: Transform - pos: 1.5,-12.5 - parent: 12 - - uid: 2214 - components: - - type: Transform - pos: 1.5,-13.5 - parent: 12 - - uid: 2215 - components: - - type: Transform - pos: 1.5,-14.5 - parent: 12 - - uid: 2216 - components: - - type: Transform - pos: 1.5,-15.5 - parent: 12 - - uid: 2217 - components: - - type: Transform - pos: -0.5,0.5 - parent: 12 - - uid: 2218 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 12 - - uid: 2220 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 12 - - uid: 2221 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 12 - - uid: 2222 - components: - - type: Transform - pos: -1.5,-1.5 - parent: 12 - - uid: 2223 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 12 - - uid: 2224 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 12 - - uid: 2225 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 12 - - uid: 2226 - components: - - type: Transform - pos: 1.5,-6.5 - parent: 12 - - uid: 2227 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 12 - - uid: 2228 - components: - - type: Transform - pos: 3.5,-6.5 - parent: 12 - - uid: 2229 - components: - - type: Transform - pos: -1.5,-6.5 - parent: 12 - - uid: 2230 - components: - - type: Transform - pos: -2.5,-6.5 - parent: 12 - - uid: 2231 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 12 - - uid: 2232 - components: - - type: Transform - pos: 0.5,-1.5 - parent: 12 - - uid: 2233 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 12 - - uid: 2262 - components: - - type: Transform - pos: 30.5,16.5 - parent: 12 - - uid: 2268 - components: - - type: Transform - pos: -27.5,9.5 - parent: 12 - - uid: 2270 - components: - - type: Transform - pos: 67.5,44.5 - parent: 12 - - uid: 2338 - components: - - type: Transform - pos: 17.5,-12.5 - parent: 12 - - uid: 2342 - components: - - type: Transform - pos: 19.5,-12.5 - parent: 12 - - uid: 2346 - components: - - type: Transform - pos: 38.5,-1.5 - parent: 12 - - uid: 2347 - components: - - type: Transform - pos: 39.5,-1.5 - parent: 12 - - uid: 2370 - components: - - 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: 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 - pos: 16.5,-12.5 - parent: 12 - - uid: 2531 - components: - - type: Transform - pos: 40.5,-9.5 - parent: 12 - - uid: 2537 - components: - - type: Transform - pos: 40.5,-14.5 - parent: 12 - - uid: 2544 - components: - - type: Transform - pos: -6.5,-30.5 - parent: 12 - - uid: 2546 - components: - - type: Transform - pos: 0.5,-46.5 - parent: 12 - - uid: 2574 - components: - - type: Transform - pos: 0.5,22.5 - parent: 12 - - uid: 2610 - components: - - type: Transform - pos: -2.5,21.5 - parent: 12 - - uid: 2630 - components: - - type: Transform - pos: -21.5,-17.5 - parent: 12 - - uid: 2644 - components: - - type: Transform - pos: 42.5,-22.5 - parent: 12 - - uid: 2646 - components: - - type: Transform - pos: 40.5,-22.5 - parent: 12 - - uid: 2655 - components: - - type: Transform - pos: 1.5,20.5 - parent: 12 - - uid: 2671 - components: - - type: Transform - pos: -54.5,-16.5 - parent: 12 - - uid: 2681 - components: - - type: Transform - pos: 38.5,1.5 - parent: 12 - - uid: 2705 - components: - - type: Transform - pos: 51.5,-6.5 - parent: 12 - - uid: 2725 - components: - - type: Transform - pos: -4.5,-35.5 - parent: 12 - - uid: 2729 - components: - - type: Transform - pos: -2.5,-33.5 - parent: 12 - - uid: 2730 - components: - - type: Transform - pos: -4.5,-32.5 - parent: 12 - - uid: 2741 - components: - - type: Transform - pos: 1.5,-32.5 - parent: 12 - - uid: 2742 - components: - - type: Transform - pos: -23.5,-2.5 - parent: 12 - - uid: 2757 - components: - - type: Transform - pos: -4.5,-40.5 - parent: 12 - - uid: 2779 - components: - - type: Transform - pos: 23.5,5.5 - parent: 12 - - uid: 2782 - components: - - type: Transform - pos: 58.5,64.5 - parent: 12 - - uid: 2796 - components: - - type: Transform - pos: 57.5,53.5 - parent: 12 - - uid: 2881 - components: - - type: Transform - pos: 60.5,6.5 - parent: 12 - - uid: 2890 - components: - - type: Transform - pos: 61.5,6.5 - parent: 12 - - uid: 2908 - components: - - type: Transform - pos: -2.5,-35.5 - parent: 12 - - uid: 2913 - components: - - type: Transform - pos: 1.5,-33.5 - parent: 12 - - uid: 2917 - components: - - type: Transform - pos: -2.5,-34.5 - parent: 12 - - uid: 2939 - components: - - type: Transform - pos: -3.5,-35.5 - parent: 12 - - uid: 2942 - components: - - type: Transform - pos: -5.5,-40.5 - parent: 12 - - uid: 2953 - components: - - type: Transform - pos: -1.5,-36.5 - parent: 12 - - uid: 2954 - components: - - type: Transform - pos: 0.5,-36.5 - parent: 12 - - uid: 2975 - components: - - type: Transform - pos: 4.5,18.5 - parent: 12 - - uid: 3003 - components: - - type: Transform - pos: 12.5,12.5 - parent: 12 - - uid: 3012 - components: - - type: Transform - pos: 16.5,14.5 - parent: 12 - - uid: 3017 - components: - - type: Transform - pos: 10.5,-38.5 - parent: 12 - - uid: 3034 - components: - - type: Transform - pos: 10.5,-40.5 - parent: 12 - - uid: 3089 - components: - - type: Transform - pos: -0.5,22.5 - parent: 12 - - uid: 3102 - components: - - type: Transform - pos: 10.5,-47.5 - parent: 12 - - uid: 3103 - components: - - type: Transform - pos: 10.5,-41.5 - parent: 12 - - uid: 3107 - components: - - type: Transform - pos: 59.5,-19.5 - parent: 12 - - uid: 3108 - components: - - type: Transform - pos: 54.5,-21.5 - parent: 12 - - uid: 3127 - components: - - type: Transform - pos: 10.5,12.5 - parent: 12 - - uid: 3129 - components: - - type: Transform - pos: 15.5,-12.5 - parent: 12 - - uid: 3130 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 12 - - uid: 3134 - components: - - type: Transform - pos: 4.5,12.5 - parent: 12 - - uid: 3157 - components: - - type: Transform - pos: 37.5,18.5 - parent: 12 - - uid: 3159 - components: - - type: Transform - pos: 9.5,-47.5 - parent: 12 - - uid: 3196 - components: - - 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 - pos: -53.5,-39.5 - parent: 12 - - uid: 3272 - components: - - type: Transform - pos: -21.5,-48.5 - parent: 12 - - uid: 3273 - components: - - type: Transform - pos: -21.5,-49.5 - parent: 12 - - uid: 3274 - components: - - type: Transform - pos: -21.5,-50.5 - parent: 12 - - uid: 3275 - components: - - type: Transform - pos: -21.5,-51.5 - parent: 12 - - uid: 3276 - components: - - type: Transform - pos: -20.5,-51.5 - parent: 12 - - uid: 3277 - components: - - type: Transform - pos: -20.5,-52.5 - parent: 12 - - uid: 3278 - components: - - type: Transform - pos: -20.5,-53.5 - parent: 12 - - uid: 3279 - components: - - type: Transform - pos: -20.5,-54.5 - parent: 12 - - uid: 3280 - components: - - type: Transform - pos: -20.5,-55.5 - parent: 12 - - uid: 3281 - components: - - type: Transform - pos: -21.5,-55.5 - parent: 12 - - uid: 3282 - components: - - type: Transform - pos: -21.5,-56.5 - parent: 12 - - uid: 3283 - components: - - type: Transform - pos: -21.5,-57.5 - parent: 12 - - uid: 3284 - components: - - type: Transform - pos: -21.5,-58.5 - parent: 12 - - uid: 3285 - components: - - type: Transform - pos: -21.5,-59.5 - parent: 12 - - uid: 3286 - components: - - type: Transform - pos: -20.5,-50.5 - parent: 12 - - uid: 3287 - components: - - type: Transform - pos: -19.5,-50.5 - parent: 12 - - uid: 3288 - components: - - type: Transform - pos: -18.5,-50.5 - parent: 12 - - uid: 3289 - components: - - type: Transform - pos: -17.5,-50.5 - parent: 12 - - uid: 3290 - components: - - type: Transform - pos: -16.5,-50.5 - parent: 12 - - uid: 3291 - components: - - type: Transform - pos: -16.5,-51.5 - parent: 12 - - uid: 3292 - components: - - type: Transform - pos: -16.5,-52.5 - parent: 12 - - uid: 3293 - components: - - type: Transform - pos: -16.5,-53.5 - parent: 12 - - uid: 3294 - components: - - type: Transform - pos: -16.5,-54.5 - parent: 12 - - uid: 3295 - components: - - type: Transform - pos: -16.5,-55.5 - parent: 12 - - uid: 3296 - components: - - type: Transform - pos: -16.5,-56.5 - parent: 12 - - uid: 3298 - components: - - type: Transform - pos: -16.5,-58.5 - parent: 12 - - uid: 3299 - components: - - type: Transform - pos: -16.5,-59.5 - parent: 12 - - uid: 3300 - components: - - type: Transform - pos: -16.5,-60.5 - parent: 12 - - uid: 3301 - components: - - type: Transform - pos: -16.5,-61.5 - parent: 12 - - uid: 3302 - components: - - type: Transform - pos: -15.5,-58.5 - parent: 12 - - uid: 3303 - components: - - type: Transform - pos: -14.5,-58.5 - parent: 12 - - uid: 3304 - components: - - type: Transform - pos: -13.5,-58.5 - parent: 12 - - uid: 3305 - components: - - type: Transform - pos: -12.5,-58.5 - parent: 12 - - uid: 3306 - components: - - type: Transform - pos: -11.5,-58.5 - parent: 12 - - uid: 3307 - components: - - type: Transform - pos: -11.5,-59.5 - parent: 12 - - uid: 3308 - components: - - type: Transform - pos: -11.5,-60.5 - parent: 12 - - uid: 3309 - components: - - type: Transform - pos: -12.5,-60.5 - parent: 12 - - uid: 3310 - components: - - type: Transform - pos: -10.5,-59.5 - parent: 12 - - uid: 3311 - components: - - type: Transform - pos: -9.5,-59.5 - parent: 12 - - uid: 3312 - components: - - type: Transform - pos: -8.5,-59.5 - parent: 12 - - uid: 3313 - components: - - type: Transform - pos: -7.5,-59.5 - parent: 12 - - uid: 3314 - components: - - type: Transform - pos: -6.5,-59.5 - parent: 12 - - uid: 3315 - components: - - type: Transform - pos: -6.5,-58.5 - parent: 12 - - uid: 3316 - components: - - type: Transform - pos: -6.5,-57.5 - parent: 12 - - uid: 3317 - components: - - type: Transform - pos: -6.5,-56.5 - parent: 12 - - uid: 3318 - components: - - type: Transform - pos: -6.5,-55.5 - parent: 12 - - uid: 3319 - components: - - type: Transform - pos: -15.5,-55.5 - parent: 12 - - uid: 3320 - components: - - type: Transform - pos: -14.5,-55.5 - parent: 12 - - uid: 3321 - components: - - type: Transform - pos: -13.5,-55.5 - parent: 12 - - uid: 3322 - components: - - type: Transform - pos: -12.5,-55.5 - parent: 12 - - uid: 3323 - components: - - type: Transform - pos: -11.5,-55.5 - parent: 12 - - uid: 3324 - components: - - type: Transform - pos: -21.5,-47.5 - parent: 12 - - uid: 3325 - components: - - type: Transform - pos: -21.5,-46.5 - parent: 12 - - uid: 3326 - components: - - type: Transform - pos: -21.5,-45.5 - parent: 12 - - uid: 3327 - components: - - type: Transform - pos: -21.5,-44.5 - parent: 12 - - uid: 3328 - components: - - type: Transform - pos: -21.5,-43.5 - parent: 12 - - uid: 3329 - components: - - type: Transform - pos: -21.5,-42.5 - parent: 12 - - uid: 3330 - components: - - type: Transform - pos: -21.5,-41.5 - parent: 12 - - uid: 3331 - components: - - type: Transform - pos: -20.5,-41.5 - parent: 12 - - uid: 3332 - components: - - type: Transform - pos: -20.5,-40.5 - parent: 12 - - uid: 3333 - components: - - type: Transform - pos: -20.5,-39.5 - parent: 12 - - uid: 3334 - components: - - type: Transform - pos: -21.5,-39.5 - parent: 12 - - uid: 3335 - components: - - type: Transform - pos: -22.5,-39.5 - parent: 12 - - uid: 3336 - components: - - type: Transform - pos: -22.5,-40.5 - parent: 12 - - uid: 3337 - components: - - type: Transform - pos: -22.5,-41.5 - parent: 12 - - uid: 3338 - components: - - type: Transform - pos: -20.5,-44.5 - parent: 12 - - uid: 3339 - components: - - type: Transform - pos: -19.5,-44.5 - parent: 12 - - uid: 3340 - components: - - type: Transform - pos: -22.5,-44.5 - parent: 12 - - uid: 3341 - components: - - type: Transform - pos: -23.5,-44.5 - parent: 12 - - uid: 3342 - components: - - type: Transform - pos: -21.5,-38.5 - parent: 12 - - uid: 3343 - components: - - type: Transform - pos: -21.5,-37.5 - parent: 12 - - uid: 3344 - components: - - type: Transform - pos: -21.5,-36.5 - parent: 12 - - uid: 3345 - components: - - type: Transform - pos: -21.5,-35.5 - parent: 12 - - uid: 3346 - components: - - type: Transform - pos: -21.5,-34.5 - parent: 12 - - uid: 3347 - components: - - type: Transform - pos: -19.5,-41.5 - parent: 12 - - uid: 3348 - components: - - type: Transform - pos: -18.5,-41.5 - parent: 12 - - uid: 3349 - components: - - type: Transform - pos: -17.5,-41.5 - parent: 12 - - uid: 3350 - components: - - type: Transform - pos: -16.5,-41.5 - parent: 12 - - uid: 3351 - components: - - type: Transform - pos: -15.5,-41.5 - parent: 12 - - uid: 3352 - components: - - type: Transform - pos: -16.5,-40.5 - parent: 12 - - uid: 3353 - components: - - type: Transform - pos: -16.5,-39.5 - parent: 12 - - uid: 3354 - components: - - type: Transform - pos: -16.5,-38.5 - parent: 12 - - uid: 3355 - components: - - type: Transform - pos: -16.5,-37.5 - parent: 12 - - uid: 3356 - components: - - type: Transform - pos: -16.5,-36.5 - parent: 12 - - uid: 3357 - components: - - type: Transform - pos: -16.5,-35.5 - parent: 12 - - uid: 3358 - components: - - type: Transform - pos: -16.5,-34.5 - parent: 12 - - uid: 3359 - components: - - type: Transform - pos: -16.5,-33.5 - parent: 12 - - uid: 3360 - components: - - type: Transform - pos: -15.5,-34.5 - parent: 12 - - uid: 3361 - components: - - type: Transform - pos: -14.5,-34.5 - parent: 12 - - uid: 3362 - components: - - type: Transform - pos: -13.5,-34.5 - parent: 12 - - uid: 3363 - components: - - type: Transform - pos: -12.5,-34.5 - parent: 12 - - uid: 3364 - components: - - type: Transform - pos: -11.5,-34.5 - parent: 12 - - uid: 3365 - components: - - type: Transform - pos: -7.5,-29.5 - parent: 12 - - uid: 3366 - components: - - type: Transform - pos: -7.5,-30.5 - parent: 12 - - uid: 3367 - components: - - type: Transform - pos: -7.5,-31.5 - parent: 12 - - uid: 3368 - components: - - type: Transform - pos: -7.5,-32.5 - parent: 12 - - uid: 3369 - components: - - type: Transform - pos: -7.5,-33.5 - parent: 12 - - uid: 3370 - components: - - type: Transform - pos: -7.5,-34.5 - parent: 12 - - uid: 3371 - components: - - type: Transform - pos: -7.5,-35.5 - parent: 12 - - uid: 3372 - components: - - type: Transform - pos: -7.5,-36.5 - parent: 12 - - uid: 3373 - components: - - type: Transform - pos: -7.5,-37.5 - parent: 12 - - uid: 3374 - components: - - type: Transform - pos: -7.5,-38.5 - parent: 12 - - uid: 3376 - components: - - type: Transform - pos: -7.5,-40.5 - parent: 12 - - uid: 3377 - components: - - type: Transform - pos: -7.5,-41.5 - parent: 12 - - uid: 3378 - components: - - type: Transform - pos: -8.5,-41.5 - parent: 12 - - uid: 3379 - components: - - type: Transform - pos: -9.5,-41.5 - parent: 12 - - uid: 3380 - components: - - type: Transform - pos: -10.5,-41.5 - parent: 12 - - uid: 3381 - components: - - type: Transform - pos: -11.5,-41.5 - parent: 12 - - uid: 3382 - components: - - type: Transform - pos: -11.5,-40.5 - parent: 12 - - uid: 3383 - components: - - type: Transform - pos: -11.5,-39.5 - parent: 12 - - uid: 3384 - components: - - type: Transform - pos: -11.5,-38.5 - parent: 12 - - uid: 3385 - components: - - type: Transform - pos: -6.5,-41.5 - parent: 12 - - uid: 3386 - components: - - type: Transform - pos: -5.5,-41.5 - parent: 12 - - uid: 3388 - components: - - type: Transform - pos: -3.5,-41.5 - parent: 12 - - uid: 3389 - components: - - type: Transform - pos: -3.5,-41.5 - parent: 12 - - uid: 3390 - components: - - type: Transform - pos: -3.5,-42.5 - parent: 12 - - uid: 3391 - components: - - type: Transform - pos: -3.5,-43.5 - parent: 12 - - uid: 3392 - components: - - type: Transform - pos: -3.5,-44.5 - parent: 12 - - uid: 3393 - components: - - type: Transform - pos: -3.5,-45.5 - parent: 12 - - uid: 3395 - components: - - type: Transform - pos: -5.5,-45.5 - parent: 12 - - uid: 3396 - components: - - type: Transform - pos: -6.5,-45.5 - parent: 12 - - uid: 3397 - components: - - type: Transform - pos: -7.5,-45.5 - parent: 12 - - uid: 3398 - components: - - type: Transform - pos: -8.5,-45.5 - parent: 12 - - uid: 3399 - components: - - type: Transform - pos: -8.5,-45.5 - parent: 12 - - uid: 3400 - components: - - type: Transform - pos: -8.5,-46.5 - parent: 12 - - uid: 3401 - components: - - type: Transform - pos: -8.5,-47.5 - parent: 12 - - uid: 3402 - components: - - type: Transform - pos: -8.5,-48.5 - parent: 12 - - uid: 3403 - components: - - type: Transform - pos: -8.5,-49.5 - parent: 12 - - uid: 3404 - components: - - type: Transform - pos: -8.5,-50.5 - parent: 12 - - uid: 3405 - components: - - type: Transform - pos: -8.5,-49.5 - parent: 12 - - uid: 3406 - components: - - type: Transform - pos: -9.5,-49.5 - parent: 12 - - uid: 3407 - components: - - type: Transform - pos: -10.5,-49.5 - parent: 12 - - uid: 3408 - components: - - type: Transform - pos: -11.5,-49.5 - parent: 12 - - uid: 3409 - components: - - type: Transform - pos: -12.5,-49.5 - parent: 12 - - uid: 3410 - components: - - type: Transform - pos: -11.5,-48.5 - parent: 12 - - uid: 3411 - components: - - type: Transform - pos: -11.5,-47.5 - parent: 12 - - uid: 3412 - components: - - type: Transform - pos: -11.5,-46.5 - parent: 12 - - uid: 3413 - components: - - type: Transform - pos: -11.5,-45.5 - parent: 12 - - uid: 3414 - components: - - type: Transform - pos: -10.5,-49.5 - parent: 12 - - uid: 3415 - components: - - type: Transform - pos: -10.5,-50.5 - parent: 12 - - uid: 3416 - components: - - type: Transform - pos: -10.5,-51.5 - parent: 12 - - uid: 3417 - components: - - type: Transform - pos: -10.5,-52.5 - parent: 12 - - uid: 3418 - components: - - type: Transform - pos: -7.5,-49.5 - parent: 12 - - uid: 3419 - components: - - type: Transform - pos: -6.5,-49.5 - parent: 12 - - uid: 3420 - components: - - type: Transform - pos: -5.5,-49.5 - parent: 12 - - uid: 3421 - components: - - type: Transform - pos: -4.5,-49.5 - parent: 12 - - uid: 3422 - components: - - type: Transform - pos: -3.5,-49.5 - parent: 12 - - uid: 3423 - components: - - type: Transform - pos: -2.5,-49.5 - parent: 12 - - uid: 3424 - components: - - type: Transform - pos: -1.5,-49.5 - parent: 12 - - uid: 3425 - components: - - type: Transform - pos: -0.5,-49.5 - parent: 12 - - uid: 3426 - components: - - type: Transform - pos: -0.5,-50.5 - parent: 12 - - uid: 3427 - components: - - type: Transform - pos: -0.5,-51.5 - parent: 12 - - uid: 3428 - components: - - type: Transform - pos: -0.5,-52.5 - parent: 12 - - uid: 3429 - components: - - type: Transform - pos: -1.5,-52.5 - parent: 12 - - uid: 3430 - components: - - type: Transform - pos: -2.5,-52.5 - parent: 12 - - uid: 3431 - components: - - type: Transform - pos: 0.5,-52.5 - parent: 12 - - uid: 3432 - components: - - type: Transform - pos: 5.5,-46.5 - parent: 12 - - uid: 3433 - components: - - type: Transform - pos: 5.5,-45.5 - parent: 12 - - uid: 3434 - components: - - type: Transform - pos: 5.5,-44.5 - parent: 12 - - uid: 3435 - components: - - type: Transform - pos: 5.5,-43.5 - parent: 12 - - uid: 3436 - components: - - type: Transform - pos: 5.5,-42.5 - parent: 12 - - uid: 3437 - components: - - type: Transform - pos: 5.5,-41.5 - parent: 12 - - uid: 3438 - components: - - type: Transform - pos: 5.5,-40.5 - parent: 12 - - uid: 3439 - components: - - type: Transform - pos: 5.5,-39.5 - parent: 12 - - uid: 3440 - components: - - type: Transform - pos: 5.5,-38.5 - parent: 12 - - uid: 3441 - components: - - type: Transform - pos: 6.5,-43.5 - parent: 12 - - uid: 3442 - components: - - type: Transform - pos: 4.5,-45.5 - parent: 12 - - uid: 3443 - components: - - type: Transform - pos: 3.5,-45.5 - parent: 12 - - uid: 3444 - components: - - type: Transform - pos: 2.5,-45.5 - parent: 12 - - uid: 3445 - components: - - type: Transform - pos: 1.5,-45.5 - parent: 12 - - uid: 3446 - components: - - type: Transform - pos: 0.5,-45.5 - parent: 12 - - uid: 3447 - components: - - type: Transform - pos: -0.5,-45.5 - parent: 12 - - uid: 3448 - components: - - type: Transform - pos: -1.5,-45.5 - parent: 12 - - uid: 3449 - components: - - type: Transform - pos: -1.5,-46.5 - parent: 12 - - uid: 3450 - components: - - type: Transform - pos: -1.5,-47.5 - parent: 12 - - uid: 3451 - components: - - type: Transform - pos: -2.5,-47.5 - parent: 12 - - uid: 3452 - components: - - type: Transform - pos: 0.5,-44.5 - parent: 12 - - uid: 3453 - components: - - type: Transform - pos: 0.5,-43.5 - parent: 12 - - uid: 3454 - components: - - type: Transform - pos: 0.5,-42.5 - parent: 12 - - uid: 3456 - components: - - type: Transform - pos: 0.5,-40.5 - parent: 12 - - uid: 3457 - components: - - type: Transform - pos: 0.5,-39.5 - parent: 12 - - uid: 3458 - components: - - type: Transform - pos: 0.5,-38.5 - parent: 12 - - uid: 3459 - components: - - type: Transform - pos: 0.5,-37.5 - parent: 12 - - uid: 3461 - components: - - type: Transform - pos: -1.5,-37.5 - parent: 12 - - uid: 3475 - components: - - type: Transform - pos: 1.5,-34.5 - parent: 12 - - uid: 3476 - components: - - type: Transform - pos: 2.5,-34.5 - parent: 12 - - uid: 3477 - components: - - type: Transform - pos: 0.5,-34.5 - parent: 12 - - uid: 3488 - components: - - type: Transform - pos: 9.5,-37.5 - parent: 12 - - uid: 3511 - components: - - type: Transform - pos: -23.5,-1.5 - parent: 12 - - uid: 3524 - components: - - type: Transform - pos: 12.5,-11.5 - parent: 12 - - uid: 3553 - components: - - type: Transform - pos: 9.5,-11.5 - parent: 12 - - uid: 3556 - components: - - type: Transform - pos: 10.5,-11.5 - parent: 12 - - uid: 3626 - components: - - type: Transform - pos: 27.5,0.5 - parent: 12 - - uid: 3627 - components: - - type: Transform - pos: 27.5,-6.5 - parent: 12 - - uid: 3709 - components: - - type: Transform - pos: 15.5,5.5 - parent: 12 - - uid: 3710 - components: - - type: Transform - pos: -2.5,20.5 - parent: 12 - - uid: 3713 - components: - - type: Transform - pos: 26.5,6.5 - parent: 12 - - uid: 3777 - components: - - type: Transform - pos: 14.5,5.5 - parent: 12 - - uid: 3892 - components: - - type: Transform - pos: 51.5,12.5 - parent: 12 - - uid: 3895 - components: - - type: Transform - pos: 13.5,-2.5 - parent: 12 - - uid: 3901 - components: - - type: Transform - pos: 10.5,-39.5 - parent: 12 - - uid: 3942 - components: - - type: Transform - pos: 8.5,19.5 - parent: 12 - - uid: 3962 - components: - - type: Transform - 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: - - type: Transform - pos: 9.5,-3.5 - parent: 12 - - uid: 3980 - components: - - type: Transform - pos: 8.5,-3.5 - parent: 12 - - uid: 4000 - components: - - type: Transform - pos: 10.5,-43.5 - parent: 12 - - uid: 4019 - components: - - type: Transform - pos: 10.5,-46.5 - parent: 12 - - uid: 4064 - components: - - 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 - pos: 5.5,-46.5 - parent: 12 - - uid: 4120 - components: - - type: Transform - pos: 5.5,-47.5 - parent: 12 - - uid: 4121 - components: - - type: Transform - pos: 5.5,-48.5 - parent: 12 - - uid: 4122 - components: - - type: Transform - pos: 6.5,-48.5 - parent: 12 - - uid: 4123 - components: - - type: Transform - pos: 7.5,-48.5 - parent: 12 - - uid: 4124 - components: - - type: Transform - pos: 7.5,-49.5 - parent: 12 - - uid: 4125 - components: - - type: Transform - pos: 7.5,-50.5 - parent: 12 - - uid: 4126 - components: - - 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 - pos: 10.5,-34.5 - parent: 12 - - uid: 4192 - components: - - type: Transform - pos: 8.5,-35.5 - parent: 12 - - uid: 4193 - components: - - type: Transform - pos: 8.5,-36.5 - parent: 12 - - uid: 4194 - components: - - type: Transform - pos: 8.5,-37.5 - parent: 12 - - uid: 4204 - components: - - type: Transform - pos: 8.5,-47.5 - parent: 12 - - uid: 4205 - components: - - type: Transform - pos: 7.5,-47.5 - parent: 12 - - uid: 4208 - components: - - type: Transform - pos: 12.5,-34.5 - parent: 12 - - uid: 4227 - components: - - type: Transform - pos: 8.5,-34.5 - parent: 12 - - uid: 4228 - components: - - type: Transform - pos: 8.5,-33.5 - parent: 12 - - uid: 4229 - components: - - type: Transform - pos: 8.5,-32.5 - parent: 12 - - uid: 4257 - components: - - type: Transform - pos: 10.5,-44.5 - parent: 12 - - uid: 4319 - components: - - type: Transform - pos: 59.5,52.5 - parent: 12 - - uid: 4321 - components: - - type: Transform - pos: 66.5,44.5 - parent: 12 - - uid: 4322 - components: - - type: Transform - pos: -9.5,-21.5 - parent: 12 - - uid: 4325 - components: - - type: Transform - pos: -10.5,-23.5 - parent: 12 - - uid: 4326 - components: - - type: Transform - pos: -11.5,-23.5 - parent: 12 - - uid: 4327 - components: - - type: Transform - pos: -12.5,-23.5 - parent: 12 - - uid: 4328 - components: - - type: Transform - pos: -13.5,-23.5 - parent: 12 - - uid: 4329 - components: - - type: Transform - pos: -14.5,-23.5 - parent: 12 - - uid: 4330 - components: - - type: Transform - pos: -15.5,-23.5 - parent: 12 - - uid: 4331 - components: - - type: Transform - pos: -16.5,-23.5 - parent: 12 - - uid: 4332 - components: - - type: Transform - pos: -16.5,-22.5 - parent: 12 - - uid: 4333 - components: - - type: Transform - pos: -16.5,-21.5 - parent: 12 - - uid: 4334 - components: - - type: Transform - pos: -16.5,-20.5 - parent: 12 - - uid: 4335 - components: - - type: Transform - pos: -16.5,-19.5 - parent: 12 - - uid: 4336 - components: - - type: Transform - pos: -15.5,-19.5 - parent: 12 - - uid: 4337 - components: - - type: Transform - pos: -15.5,-18.5 - parent: 12 - - uid: 4338 - components: - - type: Transform - pos: -15.5,-17.5 - parent: 12 - - uid: 4339 - components: - - type: Transform - pos: -15.5,-16.5 - parent: 12 - - uid: 4340 - components: - - type: Transform - pos: -15.5,-15.5 - parent: 12 - - uid: 4345 - components: - - type: Transform - pos: -15.5,-10.5 - parent: 12 - - uid: 4346 - components: - - type: Transform - pos: -15.5,-9.5 - parent: 12 - - uid: 4347 - components: - - type: Transform - pos: -15.5,-24.5 - parent: 12 - - uid: 4348 - components: - - type: Transform - pos: -15.5,-25.5 - parent: 12 - - uid: 4349 - components: - - type: Transform - pos: -15.5,-26.5 - parent: 12 - - uid: 4350 - components: - - type: Transform - pos: -15.5,-27.5 - parent: 12 - - uid: 4351 - components: - - type: Transform - pos: -15.5,-28.5 - parent: 12 - - uid: 4352 - components: - - type: Transform - pos: -15.5,-29.5 - parent: 12 - - uid: 4353 - components: - - type: Transform - pos: -15.5,-30.5 - parent: 12 - - uid: 4354 - components: - - type: Transform - pos: -14.5,-27.5 - parent: 12 - - uid: 4355 - components: - - type: Transform - pos: -13.5,-27.5 - parent: 12 - - uid: 4356 - components: - - type: Transform - pos: -12.5,-27.5 - parent: 12 - - uid: 4357 - components: - - type: Transform - pos: -11.5,-27.5 - parent: 12 - - uid: 4358 - components: - - type: Transform - pos: -10.5,-27.5 - parent: 12 - - uid: 4359 - components: - - type: Transform - pos: -9.5,-27.5 - parent: 12 - - uid: 4360 - components: - - type: Transform - pos: -8.5,-27.5 - parent: 12 - - uid: 4361 - components: - - type: Transform - pos: -7.5,-27.5 - parent: 12 - - uid: 4362 - components: - - type: Transform - pos: -6.5,-27.5 - parent: 12 - - uid: 4363 - components: - - type: Transform - pos: -5.5,-27.5 - parent: 12 - - uid: 4364 - components: - - type: Transform - pos: -4.5,-27.5 - parent: 12 - - uid: 4365 - components: - - type: Transform - pos: -3.5,-27.5 - parent: 12 - - uid: 4366 - components: - - type: Transform - pos: -2.5,-27.5 - parent: 12 - - uid: 4367 - components: - - type: Transform - pos: -1.5,-27.5 - parent: 12 - - uid: 4368 - components: - - type: Transform - pos: -0.5,-27.5 - parent: 12 - - uid: 4369 - components: - - type: Transform - pos: 0.5,-27.5 - parent: 12 - - uid: 4370 - components: - - type: Transform - pos: 1.5,-27.5 - parent: 12 - - uid: 4388 - components: - - type: Transform - pos: 15.5,8.5 - parent: 12 - - uid: 4410 - components: - - type: Transform - pos: 16.5,-3.5 - parent: 12 - - uid: 4411 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 12 - - uid: 4414 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 12 - - uid: 4528 - components: - - type: Transform - pos: 3.5,70.5 - parent: 12 - - uid: 4561 - components: - - type: Transform - pos: 4.5,70.5 - parent: 12 - - uid: 4567 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 12 - - uid: 4569 - components: - - type: Transform - pos: 27.5,-4.5 - parent: 12 - - uid: 4572 - components: - - type: Transform - pos: 27.5,-3.5 - parent: 12 - - uid: 4578 - components: - - type: Transform - pos: 18.5,-12.5 - parent: 12 - - uid: 4583 - components: - - type: Transform - pos: 27.5,3.5 - parent: 12 - - uid: 4586 - components: - - type: Transform - pos: 14.5,-12.5 - parent: 12 - - uid: 4587 - components: - - type: Transform - pos: 43.5,-12.5 - parent: 12 - - uid: 4588 - components: - - type: Transform - pos: 31.5,12.5 - parent: 12 - - uid: 4590 - components: - - type: Transform - pos: 26.5,-12.5 - parent: 12 - - uid: 4597 - components: - - type: Transform - pos: 21.5,-10.5 - parent: 12 - - uid: 4599 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 12 - - uid: 4603 - components: - - type: Transform - pos: 23.5,3.5 - parent: 12 - - uid: 4612 - components: - - type: Transform - pos: 22.5,3.5 - parent: 12 - - uid: 4619 - components: - - type: Transform - pos: 9.5,-1.5 - parent: 12 - - uid: 4692 - components: - - type: Transform - pos: 9.5,19.5 - parent: 12 - - uid: 4721 - components: - - type: Transform - pos: 10.5,-37.5 - parent: 12 - - uid: 4739 - components: - - type: Transform - pos: -23.5,-8.5 - parent: 12 - - uid: 4753 - components: - - type: Transform - pos: 6.5,-20.5 - parent: 12 - - uid: 4786 - components: - - type: Transform - pos: 25.5,3.5 - parent: 12 - - uid: 4788 - components: - - 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 - pos: 57.5,58.5 - parent: 12 - - uid: 4903 - components: - - type: Transform - pos: -1.5,2.5 - parent: 12 - - uid: 4908 - components: - - type: Transform - pos: -23.5,-11.5 - parent: 12 - - uid: 4952 - components: - - type: Transform - pos: 5.5,70.5 - parent: 12 - - uid: 4954 - components: - - 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 - pos: 1.5,22.5 - parent: 12 - - uid: 4987 - components: - - type: Transform - pos: -2.5,22.5 - parent: 12 - - uid: 5013 - components: - - type: Transform - pos: 11.5,3.5 - parent: 12 - - uid: 5014 - components: - - type: Transform - pos: 12.5,1.5 - parent: 12 - - uid: 5022 - components: - - 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 - pos: 13.5,0.5 - parent: 12 - - uid: 5032 - components: - - type: Transform - pos: 21.5,-9.5 - parent: 12 - - uid: 5038 - components: - - type: Transform - pos: 52.5,11.5 - parent: 12 - - uid: 5052 - components: - - 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 - pos: 13.5,-1.5 - parent: 12 - - uid: 5081 - components: - - type: Transform - pos: 27.5,-7.5 - parent: 12 - - uid: 5082 - components: - - type: Transform - pos: 27.5,-12.5 - parent: 12 - - uid: 5083 - components: - - type: Transform - pos: 11.5,2.5 - parent: 12 - - uid: 5091 - components: - - 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 - pos: -7.5,-7.5 - parent: 12 - - uid: 5153 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 12 - - uid: 5154 - components: - - type: Transform - pos: -3.5,-7.5 - parent: 12 - - uid: 5155 - components: - - type: Transform - pos: -3.5,-5.5 - parent: 12 - - uid: 5156 - components: - - type: Transform - pos: -7.5,-5.5 - parent: 12 - - uid: 5157 - components: - - type: Transform - pos: -8.5,-5.5 - parent: 12 - - uid: 5184 - components: - - type: Transform - pos: 29.5,5.5 - parent: 12 - - uid: 5188 - components: - - type: Transform - pos: 21.5,-3.5 - parent: 12 - - uid: 5218 - components: - - type: Transform - pos: 40.5,-8.5 - parent: 12 - - uid: 5222 - components: - - type: Transform - pos: 14.5,4.5 - parent: 12 - - uid: 5226 - components: - - type: Transform - pos: 21.5,2.5 - parent: 12 - - uid: 5250 - components: - - type: Transform - 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: - - type: Transform - pos: 57.5,59.5 - parent: 12 - - uid: 5363 - components: - - type: Transform - pos: 29.5,3.5 - parent: 12 - - uid: 5377 - components: - - type: Transform - pos: 27.5,-11.5 - parent: 12 - - uid: 5429 - components: - - type: Transform - pos: 27.5,1.5 - parent: 12 - - uid: 5481 - components: - - type: Transform - pos: 43.5,-38.5 - parent: 12 - - uid: 5482 - components: - - type: Transform - pos: 2.5,22.5 - parent: 12 - - uid: 5497 - components: - - type: Transform - pos: 1.5,14.5 - parent: 12 - - uid: 5512 - components: - - type: Transform - pos: 1.5,15.5 - parent: 12 - - uid: 5544 - components: - - type: Transform - pos: 26.5,3.5 - parent: 12 - - uid: 5554 - components: - - type: Transform - pos: 52.5,10.5 - parent: 12 - - uid: 5555 - components: - - type: Transform - pos: 51.5,10.5 - parent: 12 - - uid: 5598 - components: - - type: Transform - pos: 27.5,2.5 - parent: 12 - - uid: 5601 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 12 - - uid: 5627 - components: - - type: Transform - pos: 12.5,3.5 - parent: 12 - - uid: 5631 - components: - - type: Transform - pos: 21.5,-8.5 - parent: 12 - - uid: 5632 - components: - - type: Transform - pos: 25.5,5.5 - parent: 12 - - uid: 5633 - components: - - type: Transform - pos: 21.5,3.5 - parent: 12 - - uid: 5643 - components: - - type: Transform - pos: 32.5,-9.5 - parent: 12 - - uid: 5644 - components: - - type: Transform - pos: 31.5,-9.5 - parent: 12 - - uid: 5645 - components: - - type: Transform - pos: 30.5,-9.5 - parent: 12 - - uid: 5646 - components: - - type: Transform - pos: 30.5,-8.5 - parent: 12 - - uid: 5647 - components: - - type: Transform - pos: 30.5,-7.5 - parent: 12 - - uid: 5648 - components: - - type: Transform - pos: 30.5,-6.5 - parent: 12 - - uid: 5649 - components: - - type: Transform - pos: 30.5,-5.5 - parent: 12 - - uid: 5650 - components: - - type: Transform - pos: 30.5,-4.5 - parent: 12 - - uid: 5651 - components: - - type: Transform - pos: 30.5,-3.5 - parent: 12 - - uid: 5652 - components: - - type: Transform - pos: 30.5,-2.5 - parent: 12 - - uid: 5653 - components: - - type: Transform - pos: 30.5,-1.5 - parent: 12 - - uid: 5654 - components: - - type: Transform - pos: 30.5,-0.5 - parent: 12 - - uid: 5655 - components: - - type: Transform - pos: 30.5,0.5 - parent: 12 - - uid: 5656 - components: - - type: Transform - pos: 31.5,-1.5 - parent: 12 - - uid: 5657 - components: - - type: Transform - pos: 32.5,-1.5 - parent: 12 - - uid: 5658 - components: - - type: Transform - pos: 33.5,-1.5 - parent: 12 - - uid: 5659 - components: - - type: Transform - pos: 34.5,-1.5 - parent: 12 - - uid: 5660 - components: - - type: Transform - pos: 35.5,-1.5 - parent: 12 - - uid: 5661 - components: - - type: Transform - pos: 36.5,-1.5 - parent: 12 - - uid: 5669 - components: - - type: Transform - pos: 5.5,-19.5 - parent: 12 - - uid: 5672 - components: - - type: Transform - pos: 10.5,-1.5 - parent: 12 - - uid: 5673 - components: - - type: Transform - pos: 12.5,-1.5 - parent: 12 - - uid: 5676 - components: - - type: Transform - pos: 21.5,-7.5 - parent: 12 - - uid: 5677 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 12 - - uid: 5681 - components: - - type: Transform - pos: 13.5,1.5 - parent: 12 - - uid: 5683 - components: - - type: Transform - pos: 30.5,-10.5 - parent: 12 - - uid: 5685 - components: - - type: Transform - pos: 19.5,-15.5 - parent: 12 - - uid: 5686 - components: - - type: Transform - pos: 19.5,-16.5 - parent: 12 - - uid: 5687 - components: - - type: Transform - pos: 18.5,-16.5 - parent: 12 - - uid: 5688 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 12 - - uid: 5689 - components: - - type: Transform - pos: 17.5,-15.5 - parent: 12 - - uid: 5690 - components: - - type: Transform - pos: 20.5,-16.5 - parent: 12 - - uid: 5691 - components: - - type: Transform - pos: 21.5,-16.5 - parent: 12 - - uid: 5692 - components: - - type: Transform - pos: 22.5,-16.5 - parent: 12 - - uid: 5693 - components: - - type: Transform - pos: 23.5,-16.5 - parent: 12 - - uid: 5694 - components: - - type: Transform - pos: 24.5,-16.5 - parent: 12 - - uid: 5695 - components: - - type: Transform - pos: 25.5,-16.5 - parent: 12 - - uid: 5696 - components: - - type: Transform - pos: 26.5,-16.5 - parent: 12 - - uid: 5697 - components: - - type: Transform - pos: 25.5,-15.5 - parent: 12 - - uid: 5698 - components: - - type: Transform - pos: 26.5,-17.5 - parent: 12 - - uid: 5699 - components: - - type: Transform - pos: 26.5,-18.5 - parent: 12 - - uid: 5700 - components: - - type: Transform - pos: 26.5,-19.5 - parent: 12 - - uid: 5701 - components: - - type: Transform - pos: 26.5,-20.5 - parent: 12 - - uid: 5702 - components: - - type: Transform - pos: 26.5,-21.5 - parent: 12 - - uid: 5703 - components: - - type: Transform - pos: 26.5,-22.5 - parent: 12 - - uid: 5704 - components: - - type: Transform - pos: 27.5,-16.5 - parent: 12 - - uid: 5705 - components: - - type: Transform - pos: 28.5,-16.5 - parent: 12 - - uid: 5706 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 12 - - uid: 5707 - components: - - type: Transform - pos: 30.5,-16.5 - parent: 12 - - uid: 5708 - components: - - type: Transform - pos: 23.5,-12.5 - parent: 12 - - uid: 5716 - components: - - type: Transform - pos: 21.5,-6.5 - parent: 12 - - uid: 5721 - components: - - type: Transform - pos: 13.5,-36.5 - parent: 12 - - uid: 5722 - components: - - type: Transform - pos: 16.5,-16.5 - parent: 12 - - uid: 5723 - components: - - type: Transform - pos: 15.5,-16.5 - parent: 12 - - uid: 5724 - components: - - type: Transform - pos: 14.5,-16.5 - parent: 12 - - uid: 5727 - components: - - type: Transform - pos: 11.5,-16.5 - parent: 12 - - uid: 5728 - components: - - type: Transform - pos: 10.5,-16.5 - parent: 12 - - uid: 5729 - components: - - type: Transform - pos: 9.5,-16.5 - parent: 12 - - uid: 5730 - components: - - type: Transform - pos: 9.5,-15.5 - parent: 12 - - uid: 5731 - components: - - type: Transform - pos: 9.5,-14.5 - parent: 12 - - uid: 5732 - components: - - type: Transform - pos: 11.5,-15.5 - parent: 12 - - uid: 5733 - components: - - type: Transform - pos: 11.5,-14.5 - parent: 12 - - uid: 5734 - components: - - type: Transform - pos: 9.5,-17.5 - parent: 12 - - uid: 5735 - components: - - type: Transform - pos: 9.5,-18.5 - parent: 12 - - uid: 5736 - components: - - type: Transform - pos: 9.5,-19.5 - parent: 12 - - uid: 5737 - components: - - type: Transform - pos: 9.5,-20.5 - parent: 12 - - uid: 5738 - components: - - type: Transform - pos: 9.5,-21.5 - parent: 12 - - uid: 5739 - components: - - type: Transform - pos: 9.5,-22.5 - parent: 12 - - uid: 5740 - components: - - type: Transform - pos: 9.5,-23.5 - parent: 12 - - uid: 5741 - components: - - type: Transform - pos: 10.5,-23.5 - parent: 12 - - uid: 5742 - components: - - type: Transform - pos: 11.5,-23.5 - parent: 12 - - uid: 5743 - components: - - type: Transform - pos: 12.5,-23.5 - parent: 12 - - uid: 5744 - components: - - type: Transform - pos: 13.5,-23.5 - parent: 12 - - uid: 5745 - components: - - type: Transform - pos: 14.5,-23.5 - parent: 12 - - uid: 5746 - components: - - type: Transform - pos: 15.5,-23.5 - parent: 12 - - uid: 5747 - components: - - type: Transform - pos: 16.5,-23.5 - parent: 12 - - uid: 5748 - components: - - type: Transform - pos: 16.5,-22.5 - parent: 12 - - uid: 5749 - components: - - type: Transform - pos: 16.5,-21.5 - parent: 12 - - uid: 5750 - components: - - type: Transform - pos: 16.5,-20.5 - parent: 12 - - uid: 5751 - components: - - type: Transform - pos: 15.5,-20.5 - parent: 12 - - uid: 5752 - components: - - type: Transform - pos: 14.5,-20.5 - parent: 12 - - uid: 5753 - components: - - type: Transform - pos: 13.5,-20.5 - parent: 12 - - uid: 5754 - components: - - type: Transform - pos: 12.5,-20.5 - parent: 12 - - uid: 5755 - components: - - type: Transform - pos: 11.5,-20.5 - parent: 12 - - uid: 5756 - components: - - type: Transform - pos: 10.5,-20.5 - parent: 12 - - uid: 5758 - components: - - type: Transform - pos: 6.5,-21.5 - parent: 12 - - uid: 5760 - components: - - type: Transform - pos: 5.5,-22.5 - parent: 12 - - uid: 5761 - components: - - type: Transform - pos: 7.5,-21.5 - parent: 12 - - uid: 5762 - components: - - type: Transform - pos: 5.5,-23.5 - parent: 12 - - uid: 5763 - components: - - type: Transform - pos: 16.5,-24.5 - parent: 12 - - uid: 5764 - components: - - type: Transform - pos: 16.5,-25.5 - parent: 12 - - uid: 5765 - components: - - type: Transform - pos: 16.5,-26.5 - parent: 12 - - uid: 5766 - components: - - type: Transform - pos: 16.5,-27.5 - parent: 12 - - uid: 5767 - components: - - type: Transform - pos: 17.5,-27.5 - parent: 12 - - uid: 5768 - components: - - type: Transform - pos: 18.5,-27.5 - parent: 12 - - uid: 5769 - components: - - type: Transform - pos: 19.5,-27.5 - parent: 12 - - uid: 5770 - components: - - type: Transform - pos: 20.5,-27.5 - parent: 12 - - uid: 5771 - components: - - type: Transform - pos: 20.5,-26.5 - parent: 12 - - uid: 5772 - components: - - type: Transform - pos: 20.5,-25.5 - parent: 12 - - uid: 5773 - components: - - type: Transform - pos: 20.5,-24.5 - parent: 12 - - uid: 5774 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 12 - - uid: 5775 - components: - - type: Transform - pos: 20.5,-22.5 - parent: 12 - - uid: 5776 - components: - - type: Transform - pos: 20.5,-21.5 - parent: 12 - - uid: 5777 - components: - - type: Transform - pos: 20.5,-20.5 - parent: 12 - - uid: 5778 - components: - - type: Transform - pos: 20.5,-19.5 - parent: 12 - - uid: 5779 - components: - - type: Transform - pos: 20.5,-18.5 - parent: 12 - - uid: 5780 - components: - - type: Transform - pos: 20.5,-17.5 - parent: 12 - - uid: 5781 - components: - - type: Transform - pos: 23.5,-17.5 - parent: 12 - - uid: 5782 - components: - - type: Transform - pos: 23.5,-18.5 - parent: 12 - - uid: 5783 - components: - - type: Transform - pos: 23.5,-19.5 - parent: 12 - - uid: 5784 - components: - - type: Transform - pos: 23.5,-20.5 - parent: 12 - - uid: 5785 - components: - - type: Transform - pos: 23.5,-21.5 - parent: 12 - - uid: 5786 - components: - - type: Transform - pos: 23.5,-22.5 - parent: 12 - - uid: 5787 - components: - - type: Transform - pos: 23.5,-23.5 - parent: 12 - - uid: 5788 - components: - - type: Transform - pos: 23.5,-24.5 - parent: 12 - - uid: 5789 - components: - - type: Transform - pos: 23.5,-25.5 - parent: 12 - - uid: 5790 - components: - - type: Transform - pos: 23.5,-26.5 - parent: 12 - - uid: 5791 - components: - - type: Transform - pos: 23.5,-27.5 - parent: 12 - - uid: 5792 - components: - - type: Transform - pos: 22.5,-27.5 - parent: 12 - - uid: 5793 - components: - - type: Transform - pos: 21.5,-27.5 - parent: 12 - - uid: 5813 - components: - - type: Transform - pos: 28.5,5.5 - parent: 12 - - uid: 5816 - components: - - type: Transform - pos: 27.5,5.5 - parent: 12 - - uid: 5821 - components: - - type: Transform - pos: 16.5,5.5 - parent: 12 - - uid: 5822 - components: - - type: Transform - pos: 17.5,5.5 - parent: 12 - - uid: 5823 - components: - - type: Transform - pos: 18.5,5.5 - parent: 12 - - uid: 5824 - components: - - type: Transform - pos: 19.5,5.5 - parent: 12 - - uid: 5825 - components: - - type: Transform - pos: 20.5,5.5 - parent: 12 - - uid: 5826 - components: - - 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 - pos: 21.5,-1.5 - parent: 12 - - uid: 5840 - components: - - type: Transform - pos: 26.5,5.5 - parent: 12 - - uid: 5846 - components: - - type: Transform - pos: 21.5,-4.5 - parent: 12 - - uid: 5849 - components: - - type: Transform - pos: 21.5,1.5 - parent: 12 - - uid: 5855 - components: - - type: Transform - pos: 24.5,-12.5 - parent: 12 - - uid: 5859 - components: - - type: Transform - pos: 21.5,-5.5 - parent: 12 - - uid: 5860 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 12 - - uid: 5914 - components: - - type: Transform - pos: 14.5,13.5 - parent: 12 - - uid: 6033 - components: - - type: Transform - pos: 22.5,-12.5 - parent: 12 - - uid: 6034 - components: - - type: Transform - pos: 8.5,-31.5 - parent: 12 - - uid: 6035 - components: - - type: Transform - pos: 8.5,-30.5 - parent: 12 - - uid: 6036 - components: - - type: Transform - pos: 8.5,-29.5 - parent: 12 - - uid: 6037 - components: - - type: Transform - pos: 8.5,-28.5 - parent: 12 - - uid: 6038 - components: - - type: Transform - pos: 8.5,-27.5 - parent: 12 - - uid: 6039 - components: - - type: Transform - pos: 8.5,-26.5 - parent: 12 - - uid: 6040 - components: - - type: Transform - pos: 7.5,-26.5 - parent: 12 - - uid: 6041 - components: - - type: Transform - pos: 6.5,-26.5 - parent: 12 - - uid: 6043 - components: - - type: Transform - pos: 4.5,-26.5 - parent: 12 - - uid: 6044 - components: - - type: Transform - pos: 3.5,-26.5 - parent: 12 - - uid: 6045 - components: - - type: Transform - pos: 9.5,-26.5 - parent: 12 - - uid: 6046 - components: - - type: Transform - pos: 10.5,-26.5 - parent: 12 - - uid: 6047 - components: - - type: Transform - pos: 11.5,-26.5 - parent: 12 - - uid: 6048 - components: - - type: Transform - pos: 12.5,-26.5 - parent: 12 - - uid: 6049 - components: - - type: Transform - pos: 13.5,-26.5 - parent: 12 - - uid: 6050 - components: - - type: Transform - pos: 13.5,-27.5 - parent: 12 - - uid: 6093 - components: - - type: Transform - pos: 30.5,-35.5 - parent: 12 - - uid: 6095 - components: - - 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: 6249 - components: - - type: Transform - pos: -62.5,-28.5 - parent: 12 - - uid: 6261 - components: - - type: Transform - pos: -1.5,22.5 - parent: 12 - - uid: 6305 - components: - - type: Transform - pos: 40.5,-0.5 - parent: 12 - - uid: 6703 - components: - - type: Transform - pos: 14.5,-37.5 - parent: 12 - - uid: 6778 - components: - - type: Transform - pos: 51.5,-7.5 - parent: 12 - - uid: 6838 - components: - - type: Transform - pos: 7.5,-44.5 - parent: 12 - - uid: 6839 - components: - - type: Transform - pos: 10.5,-42.5 - parent: 12 - - uid: 6895 - components: - - type: Transform - pos: 7.5,-45.5 - parent: 12 - - uid: 6899 - components: - - type: Transform - pos: 21.5,-0.5 - parent: 12 - - uid: 6906 - components: - - type: Transform - pos: 13.5,-39.5 - parent: 12 - - uid: 6907 - components: - - type: Transform - pos: 13.5,-40.5 - parent: 12 - - uid: 6908 - components: - - type: Transform - pos: 13.5,-41.5 - parent: 12 - - uid: 6909 - components: - - type: Transform - pos: 13.5,-42.5 - parent: 12 - - uid: 6910 - components: - - type: Transform - pos: 13.5,-43.5 - parent: 12 - - uid: 6911 - components: - - type: Transform - pos: 13.5,-44.5 - parent: 12 - - uid: 6912 - components: - - type: Transform - pos: 13.5,-45.5 - parent: 12 - - uid: 6913 - components: - - type: Transform - pos: 13.5,-46.5 - parent: 12 - - uid: 6914 - components: - - type: Transform - pos: 13.5,-47.5 - parent: 12 - - uid: 6915 - components: - - type: Transform - pos: 13.5,-48.5 - parent: 12 - - uid: 6916 - components: - - type: Transform - pos: 13.5,-49.5 - parent: 12 - - uid: 6917 - components: - - type: Transform - pos: 13.5,-50.5 - parent: 12 - - uid: 6918 - components: - - type: Transform - pos: 13.5,-51.5 - parent: 12 - - uid: 6919 - components: - - type: Transform - pos: 13.5,-52.5 - parent: 12 - - uid: 6920 - components: - - type: Transform - pos: 13.5,-53.5 - parent: 12 - - uid: 6921 - components: - - type: Transform - pos: 13.5,-38.5 - parent: 12 - - uid: 6922 - components: - - type: Transform - pos: 13.5,-37.5 - parent: 12 - - uid: 6923 - components: - - type: Transform - pos: 13.5,-34.5 - parent: 12 - - uid: 6924 - components: - - type: Transform - pos: 15.5,-37.5 - parent: 12 - - uid: 6925 - components: - - type: Transform - pos: 16.5,-37.5 - parent: 12 - - uid: 6926 - components: - - type: Transform - pos: 17.5,-37.5 - parent: 12 - - uid: 6927 - components: - - type: Transform - pos: 18.5,-37.5 - parent: 12 - - uid: 6928 - components: - - type: Transform - pos: 19.5,-37.5 - parent: 12 - - uid: 6929 - components: - - type: Transform - pos: 20.5,-37.5 - parent: 12 - - uid: 6930 - components: - - type: Transform - pos: 21.5,-37.5 - parent: 12 - - uid: 6931 - components: - - type: Transform - pos: 22.5,-37.5 - parent: 12 - - uid: 6932 - components: - - type: Transform - pos: 23.5,-37.5 - parent: 12 - - uid: 6933 - components: - - type: Transform - pos: 24.5,-37.5 - parent: 12 - - uid: 6934 - components: - - type: Transform - pos: 25.5,-37.5 - parent: 12 - - uid: 6935 - components: - - type: Transform - pos: 26.5,-37.5 - parent: 12 - - uid: 6936 - components: - - type: Transform - pos: 27.5,-37.5 - parent: 12 - - uid: 6937 - components: - - type: Transform - pos: 28.5,-37.5 - parent: 12 - - uid: 6938 - components: - - type: Transform - pos: 29.5,-37.5 - parent: 12 - - uid: 6939 - components: - - type: Transform - pos: 30.5,-37.5 - parent: 12 - - uid: 6940 - components: - - type: Transform - pos: 27.5,-36.5 - parent: 12 - - uid: 6943 - components: - - type: Transform - pos: 16.5,-36.5 - parent: 12 - - uid: 6944 - components: - - type: Transform - pos: 20.5,-36.5 - parent: 12 - - uid: 6945 - components: - - type: Transform - pos: 20.5,-35.5 - parent: 12 - - uid: 6946 - components: - - type: Transform - pos: 23.5,-35.5 - parent: 12 - - uid: 6947 - components: - - type: Transform - pos: 23.5,-36.5 - parent: 12 - - uid: 6948 - components: - - type: Transform - pos: 20.5,-34.5 - parent: 12 - - uid: 6949 - components: - - type: Transform - pos: 21.5,-34.5 - parent: 12 - - uid: 6950 - components: - - type: Transform - pos: 22.5,-34.5 - parent: 12 - - uid: 6951 - components: - - type: Transform - pos: 23.5,-34.5 - parent: 12 - - uid: 6952 - components: - - type: Transform - pos: 30.5,-38.5 - parent: 12 - - uid: 6953 - components: - - type: Transform - pos: 30.5,-39.5 - parent: 12 - - uid: 6954 - components: - - type: Transform - pos: 30.5,-40.5 - parent: 12 - - uid: 6955 - components: - - type: Transform - pos: 30.5,-41.5 - parent: 12 - - uid: 6956 - components: - - type: Transform - pos: 30.5,-42.5 - parent: 12 - - uid: 6957 - components: - - type: Transform - pos: 30.5,-43.5 - parent: 12 - - uid: 6958 - components: - - type: Transform - pos: 30.5,-44.5 - parent: 12 - - uid: 6959 - components: - - type: Transform - pos: 30.5,-45.5 - parent: 12 - - uid: 6960 - components: - - type: Transform - pos: 30.5,-46.5 - parent: 12 - - uid: 6961 - components: - - type: Transform - pos: 30.5,-47.5 - parent: 12 - - uid: 6962 - components: - - type: Transform - pos: 30.5,-48.5 - parent: 12 - - uid: 6963 - components: - - type: Transform - pos: 30.5,-49.5 - parent: 12 - - uid: 6964 - components: - - type: Transform - pos: 30.5,-50.5 - parent: 12 - - uid: 6965 - components: - - type: Transform - pos: 30.5,-51.5 - parent: 12 - - uid: 6966 - components: - - type: Transform - pos: 30.5,-52.5 - parent: 12 - - uid: 6967 - components: - - type: Transform - pos: 30.5,-53.5 - parent: 12 - - uid: 6968 - components: - - type: Transform - pos: 31.5,-41.5 - parent: 12 - - uid: 6969 - components: - - type: Transform - pos: 32.5,-41.5 - parent: 12 - - uid: 6971 - components: - - type: Transform - pos: 34.5,-41.5 - parent: 12 - - uid: 6972 - components: - - type: Transform - pos: 34.5,-42.5 - parent: 12 - - uid: 6974 - components: - - type: Transform - pos: 31.5,-38.5 - parent: 12 - - uid: 6975 - components: - - 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 - pos: 57.5,7.5 - parent: 12 - - uid: 7159 - components: - - type: Transform - pos: 1.5,12.5 - parent: 12 - - uid: 7202 - components: - - type: Transform - pos: 29.5,4.5 - parent: 12 - - uid: 7213 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 12 - - uid: 7217 - components: - - type: Transform - pos: 21.5,0.5 - parent: 12 - - uid: 7233 - components: - - type: Transform - pos: 13.5,20.5 - parent: 12 - - uid: 7258 - components: - - type: Transform - pos: -46.5,52.5 - parent: 12 - - uid: 7261 - components: - - type: Transform - pos: 12.5,21.5 - parent: 12 - - uid: 7320 - components: - - type: Transform - pos: 49.5,-0.5 - parent: 12 - - uid: 7344 - components: - - type: Transform - pos: 30.5,12.5 - parent: 12 - - uid: 7354 - components: - - type: Transform - pos: 56.5,-0.5 - parent: 12 - - uid: 7355 - components: - - type: Transform - pos: -9.5,-12.5 - parent: 12 - - uid: 7361 - components: - - type: Transform - pos: -9.5,-11.5 - parent: 12 - - uid: 7362 - components: - - type: Transform - pos: -9.5,-10.5 - parent: 12 - - uid: 7366 - components: - - type: Transform - pos: 3.5,12.5 - parent: 12 - - uid: 7442 - components: - - 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 - pos: -42.5,51.5 - parent: 12 - - uid: 7528 - components: - - type: Transform - pos: 56.5,-5.5 - parent: 12 - - uid: 7534 - components: - - type: Transform - pos: 55.5,-5.5 - parent: 12 - - uid: 7538 - components: - - type: Transform - pos: 51.5,-11.5 - parent: 12 - - uid: 7540 - components: - - type: Transform - pos: -42.5,52.5 - parent: 12 - - uid: 7556 - components: - - type: Transform - pos: 1.5,13.5 - parent: 12 - - uid: 7557 - components: - - type: Transform - pos: 5.5,12.5 - parent: 12 - - uid: 7563 - components: - - type: Transform - pos: 2.5,12.5 - parent: 12 - - uid: 7564 - components: - - type: Transform - pos: -9.5,-6.5 - parent: 12 - - uid: 7568 - components: - - type: Transform - pos: 40.5,-12.5 - parent: 12 - - uid: 7586 - components: - - type: Transform - pos: 0.5,69.5 - parent: 12 - - uid: 7720 - components: - - type: Transform - pos: 5.5,-26.5 - parent: 12 - - uid: 7777 - components: - - type: Transform - pos: 40.5,2.5 - parent: 12 - - uid: 7781 - components: - - type: Transform - pos: 54.5,12.5 - parent: 12 - - uid: 7821 - components: - - type: Transform - pos: 33.5,-14.5 - parent: 12 - - uid: 7822 - components: - - type: Transform - pos: 59.5,-1.5 - parent: 12 - - uid: 7824 - components: - - type: Transform - pos: 34.5,-14.5 - parent: 12 - - uid: 7827 - components: - - type: Transform - pos: 13.5,-3.5 - parent: 12 - - uid: 7830 - components: - - type: Transform - pos: 12.5,-3.5 - parent: 12 - - uid: 7835 - components: - - type: Transform - pos: 35.5,-14.5 - parent: 12 - - uid: 7902 - components: - - type: Transform - pos: 41.5,-16.5 - parent: 12 - - uid: 8071 - components: - - type: Transform - pos: 59.5,-27.5 - parent: 12 - - uid: 8072 - components: - - type: Transform - pos: 59.5,-28.5 - parent: 12 - - uid: 8073 - components: - - type: Transform - pos: 60.5,-28.5 - parent: 12 - - uid: 8074 - components: - - type: Transform - pos: 60.5,-29.5 - parent: 12 - - uid: 8075 - components: - - type: Transform - pos: 60.5,-30.5 - parent: 12 - - uid: 8076 - components: - - type: Transform - pos: 60.5,-31.5 - parent: 12 - - uid: 8077 - components: - - type: Transform - pos: 60.5,-32.5 - parent: 12 - - uid: 8078 - components: - - type: Transform - pos: 58.5,-28.5 - parent: 12 - - uid: 8079 - components: - - type: Transform - pos: 57.5,-28.5 - parent: 12 - - uid: 8080 - components: - - type: Transform - pos: 56.5,-28.5 - parent: 12 - - uid: 8081 - components: - - type: Transform - pos: 56.5,-29.5 - parent: 12 - - uid: 8082 - components: - - type: Transform - pos: 56.5,-30.5 - parent: 12 - - uid: 8083 - components: - - type: Transform - pos: 56.5,-31.5 - parent: 12 - - uid: 8084 - components: - - type: Transform - pos: 56.5,-32.5 - parent: 12 - - uid: 8085 - components: - - type: Transform - pos: 56.5,-33.5 - parent: 12 - - uid: 8086 - components: - - type: Transform - pos: 56.5,-34.5 - parent: 12 - - uid: 8087 - components: - - type: Transform - pos: 56.5,-35.5 - parent: 12 - - uid: 8088 - components: - - type: Transform - pos: 56.5,-36.5 - parent: 12 - - uid: 8089 - components: - - type: Transform - pos: 56.5,-37.5 - parent: 12 - - uid: 8090 - components: - - type: Transform - pos: 55.5,-36.5 - parent: 12 - - uid: 8091 - components: - - type: Transform - pos: 57.5,-34.5 - parent: 12 - - uid: 8092 - components: - - type: Transform - pos: 58.5,-34.5 - parent: 12 - - uid: 8093 - components: - - type: Transform - pos: 59.5,-34.5 - parent: 12 - - uid: 8094 - components: - - type: Transform - pos: 60.5,-34.5 - parent: 12 - - uid: 8095 - components: - - type: Transform - pos: 56.5,-38.5 - parent: 12 - - uid: 8096 - components: - - type: Transform - pos: 56.5,-39.5 - parent: 12 - - uid: 8097 - components: - - type: Transform - pos: 56.5,-40.5 - parent: 12 - - uid: 8098 - components: - - type: Transform - pos: 56.5,-41.5 - parent: 12 - - uid: 8099 - components: - - type: Transform - pos: 56.5,-42.5 - parent: 12 - - uid: 8100 - components: - - type: Transform - pos: 56.5,-43.5 - parent: 12 - - uid: 8101 - components: - - type: Transform - pos: 56.5,-44.5 - parent: 12 - - uid: 8102 - components: - - type: Transform - pos: 56.5,-45.5 - parent: 12 - - uid: 8103 - components: - - type: Transform - pos: 56.5,-46.5 - parent: 12 - - uid: 8104 - components: - - type: Transform - pos: 56.5,-47.5 - parent: 12 - - uid: 8105 - components: - - type: Transform - pos: 55.5,-40.5 - parent: 12 - - uid: 8106 - components: - - type: Transform - pos: 54.5,-40.5 - parent: 12 - - uid: 8107 - components: - - type: Transform - pos: 53.5,-40.5 - parent: 12 - - uid: 8108 - components: - - type: Transform - pos: 52.5,-40.5 - parent: 12 - - uid: 8109 - components: - - type: Transform - pos: 51.5,-40.5 - parent: 12 - - uid: 8110 - components: - - type: Transform - pos: 50.5,-40.5 - parent: 12 - - uid: 8111 - components: - - type: Transform - pos: 50.5,-41.5 - parent: 12 - - uid: 8112 - components: - - type: Transform - pos: 50.5,-42.5 - parent: 12 - - uid: 8113 - components: - - type: Transform - pos: 50.5,-43.5 - parent: 12 - - uid: 8114 - components: - - type: Transform - pos: 49.5,-42.5 - parent: 12 - - uid: 8115 - components: - - type: Transform - pos: 48.5,-42.5 - parent: 12 - - uid: 8116 - components: - - type: Transform - pos: 47.5,-42.5 - parent: 12 - - uid: 8117 - components: - - type: Transform - pos: 46.5,-42.5 - parent: 12 - - uid: 8118 - components: - - type: Transform - pos: 55.5,-42.5 - parent: 12 - - uid: 8119 - components: - - type: Transform - pos: 54.5,-42.5 - parent: 12 - - uid: 8120 - components: - - type: Transform - pos: 53.5,-42.5 - parent: 12 - - uid: 8121 - components: - - type: Transform - pos: 53.5,-43.5 - parent: 12 - - uid: 8122 - components: - - type: Transform - pos: 53.5,-44.5 - parent: 12 - - uid: 8123 - components: - - type: Transform - pos: 50.5,-31.5 - parent: 12 - - uid: 8124 - components: - - type: Transform - pos: 51.5,-31.5 - parent: 12 - - uid: 8125 - components: - - type: Transform - pos: 51.5,-32.5 - parent: 12 - - uid: 8126 - components: - - type: Transform - pos: 51.5,-33.5 - parent: 12 - - uid: 8127 - components: - - type: Transform - pos: 51.5,-34.5 - parent: 12 - - uid: 8128 - components: - - type: Transform - pos: 51.5,-35.5 - parent: 12 - - uid: 8129 - components: - - type: Transform - pos: 51.5,-36.5 - parent: 12 - - uid: 8130 - components: - - type: Transform - pos: 51.5,-37.5 - parent: 12 - - uid: 8132 - components: - - type: Transform - pos: 52.5,-32.5 - parent: 12 - - uid: 8133 - components: - - type: Transform - pos: 53.5,-32.5 - parent: 12 - - uid: 8134 - components: - - type: Transform - pos: 51.5,-30.5 - parent: 12 - - uid: 8135 - components: - - type: Transform - pos: 51.5,-29.5 - parent: 12 - - uid: 8136 - components: - - type: Transform - pos: 51.5,-28.5 - parent: 12 - - uid: 8137 - components: - - type: Transform - pos: 51.5,-27.5 - parent: 12 - - uid: 8138 - components: - - type: Transform - pos: 51.5,-26.5 - parent: 12 - - uid: 8139 - components: - - type: Transform - pos: 51.5,-25.5 - parent: 12 - - uid: 8140 - components: - - type: Transform - pos: 51.5,-24.5 - parent: 12 - - uid: 8141 - components: - - type: Transform - pos: 50.5,-24.5 - parent: 12 - - uid: 8142 - components: - - type: Transform - pos: 49.5,-24.5 - parent: 12 - - uid: 8143 - components: - - type: Transform - pos: 49.5,-23.5 - parent: 12 - - uid: 8144 - components: - - type: Transform - pos: 50.5,-27.5 - parent: 12 - - uid: 8145 - components: - - type: Transform - pos: 48.5,-27.5 - parent: 12 - - uid: 8146 - components: - - type: Transform - pos: 49.5,-27.5 - parent: 12 - - uid: 8147 - components: - - type: Transform - pos: 52.5,-27.5 - parent: 12 - - uid: 8148 - components: - - type: Transform - pos: 53.5,-27.5 - parent: 12 - - uid: 8149 - components: - - type: Transform - pos: 53.5,-26.5 - parent: 12 - - uid: 8150 - components: - - type: Transform - pos: 53.5,-25.5 - parent: 12 - - uid: 8151 - components: - - type: Transform - pos: 53.5,-24.5 - parent: 12 - - uid: 8152 - components: - - type: Transform - pos: 52.5,-24.5 - parent: 12 - - uid: 8153 - components: - - type: Transform - pos: 48.5,-23.5 - parent: 12 - - uid: 8154 - components: - - type: Transform - pos: 47.5,-23.5 - parent: 12 - - uid: 8155 - components: - - type: Transform - pos: 46.5,-23.5 - parent: 12 - - uid: 8156 - components: - - type: Transform - pos: 46.5,-22.5 - parent: 12 - - uid: 8157 - components: - - type: Transform - pos: 47.5,-22.5 - parent: 12 - - uid: 8158 - components: - - type: Transform - pos: 58.5,-37.5 - parent: 12 - - uid: 8159 - components: - - type: Transform - pos: 59.5,-37.5 - parent: 12 - - uid: 8160 - components: - - type: Transform - pos: 60.5,-37.5 - parent: 12 - - uid: 8161 - components: - - type: Transform - pos: 61.5,-37.5 - parent: 12 - - uid: 8162 - components: - - type: Transform - pos: 62.5,-37.5 - parent: 12 - - uid: 8163 - components: - - type: Transform - pos: 63.5,-37.5 - parent: 12 - - uid: 8164 - components: - - type: Transform - pos: 64.5,-37.5 - parent: 12 - - uid: 8165 - components: - - type: Transform - pos: 65.5,-37.5 - parent: 12 - - uid: 8166 - components: - - type: Transform - pos: 66.5,-37.5 - parent: 12 - - uid: 8167 - components: - - type: Transform - pos: 67.5,-37.5 - parent: 12 - - uid: 8168 - components: - - type: Transform - pos: 68.5,-37.5 - parent: 12 - - uid: 8169 - components: - - type: Transform - pos: 69.5,-37.5 - parent: 12 - - uid: 8170 - components: - - type: Transform - pos: 70.5,-37.5 - parent: 12 - - uid: 8171 - components: - - type: Transform - pos: 71.5,-37.5 - parent: 12 - - uid: 8172 - components: - - type: Transform - pos: 72.5,-37.5 - parent: 12 - - uid: 8173 - components: - - type: Transform - pos: 73.5,-37.5 - parent: 12 - - uid: 8174 - components: - - type: Transform - pos: 74.5,-37.5 - parent: 12 - - uid: 8175 - components: - - type: Transform - pos: 75.5,-37.5 - parent: 12 - - uid: 8176 - components: - - type: Transform - pos: 76.5,-37.5 - parent: 12 - - uid: 8177 - components: - - type: Transform - pos: 77.5,-37.5 - parent: 12 - - uid: 8178 - components: - - type: Transform - pos: 78.5,-37.5 - parent: 12 - - uid: 8179 - components: - - type: Transform - pos: 79.5,-37.5 - parent: 12 - - uid: 8180 - components: - - type: Transform - pos: 79.5,-36.5 - parent: 12 - - uid: 8181 - components: - - type: Transform - pos: 79.5,-35.5 - parent: 12 - - uid: 8182 - components: - - type: Transform - pos: 79.5,-34.5 - parent: 12 - - uid: 8183 - components: - - type: Transform - pos: 79.5,-33.5 - parent: 12 - - uid: 8184 - components: - - type: Transform - pos: 80.5,-34.5 - parent: 12 - - uid: 8185 - components: - - type: Transform - pos: 81.5,-34.5 - parent: 12 - - uid: 8186 - components: - - type: Transform - pos: 82.5,-34.5 - parent: 12 - - uid: 8187 - components: - - type: Transform - pos: 79.5,-32.5 - parent: 12 - - uid: 8188 - components: - - type: Transform - pos: 79.5,-31.5 - parent: 12 - - uid: 8189 - components: - - type: Transform - pos: 79.5,-30.5 - parent: 12 - - uid: 8190 - components: - - type: Transform - pos: 79.5,-29.5 - parent: 12 - - uid: 8191 - components: - - type: Transform - pos: 52.5,-10.5 - parent: 12 - - uid: 8192 - components: - - type: Transform - pos: 53.5,-10.5 - parent: 12 - - uid: 8193 - components: - - type: Transform - pos: 54.5,-10.5 - parent: 12 - - uid: 8194 - components: - - type: Transform - pos: 55.5,-10.5 - parent: 12 - - uid: 8195 - components: - - type: Transform - pos: 56.5,-10.5 - parent: 12 - - uid: 8196 - components: - - type: Transform - pos: 57.5,-10.5 - parent: 12 - - uid: 8197 - components: - - type: Transform - pos: 58.5,-10.5 - parent: 12 - - uid: 8200 - components: - - type: Transform - pos: 55.5,-13.5 - parent: 12 - - uid: 8201 - components: - - type: Transform - pos: 55.5,-14.5 - parent: 12 - - uid: 8202 - components: - - type: Transform - pos: 55.5,-15.5 - parent: 12 - - uid: 8203 - components: - - type: Transform - pos: 54.5,-15.5 - parent: 12 - - uid: 8204 - components: - - type: Transform - pos: 53.5,-15.5 - parent: 12 - - uid: 8205 - components: - - type: Transform - pos: 52.5,-15.5 - parent: 12 - - uid: 8206 - components: - - type: Transform - pos: 51.5,-15.5 - parent: 12 - - uid: 8207 - components: - - type: Transform - pos: 50.5,-15.5 - parent: 12 - - uid: 8208 - components: - - type: Transform - pos: 49.5,-15.5 - parent: 12 - - uid: 8209 - components: - - type: Transform - pos: 48.5,-15.5 - parent: 12 - - uid: 8210 - components: - - type: Transform - pos: 47.5,-15.5 - parent: 12 - - uid: 8211 - components: - - type: Transform - pos: 54.5,-13.5 - parent: 12 - - uid: 8212 - components: - - type: Transform - pos: 53.5,-13.5 - parent: 12 - - uid: 8213 - components: - - type: Transform - pos: 52.5,-13.5 - parent: 12 - - uid: 8214 - components: - - type: Transform - pos: 51.5,-13.5 - parent: 12 - - uid: 8215 - components: - - type: Transform - pos: 50.5,-13.5 - parent: 12 - - uid: 8216 - components: - - type: Transform - pos: 49.5,-13.5 - parent: 12 - - uid: 8217 - components: - - type: Transform - pos: 48.5,-13.5 - parent: 12 - - uid: 8218 - components: - - type: Transform - pos: 47.5,-13.5 - parent: 12 - - uid: 8219 - components: - - type: Transform - pos: 47.5,-14.5 - parent: 12 - - uid: 8220 - components: - - type: Transform - pos: 48.5,-12.5 - parent: 12 - - uid: 8221 - components: - - type: Transform - pos: 48.5,-11.5 - parent: 12 - - uid: 8222 - components: - - type: Transform - pos: 48.5,-10.5 - parent: 12 - - uid: 8223 - components: - - type: Transform - pos: 48.5,-9.5 - parent: 12 - - uid: 8226 - components: - - type: Transform - pos: 48.5,-18.5 - parent: 12 - - uid: 8227 - components: - - type: Transform - pos: 48.5,-19.5 - parent: 12 - - uid: 8228 - components: - - type: Transform - pos: 48.5,-20.5 - parent: 12 - - uid: 8229 - components: - - type: Transform - pos: 47.5,-18.5 - parent: 12 - - uid: 8230 - components: - - type: Transform - pos: 49.5,-18.5 - parent: 12 - - uid: 8231 - components: - - type: Transform - pos: 50.5,-18.5 - parent: 12 - - uid: 8232 - components: - - type: Transform - pos: 51.5,-18.5 - parent: 12 - - uid: 8233 - components: - - type: Transform - pos: 52.5,-18.5 - parent: 12 - - uid: 8234 - components: - - type: Transform - pos: 53.5,-18.5 - parent: 12 - - uid: 8235 - components: - - type: Transform - pos: 53.5,-19.5 - parent: 12 - - uid: 8236 - components: - - type: Transform - pos: 53.5,-20.5 - parent: 12 - - uid: 8237 - components: - - type: Transform - pos: 53.5,-21.5 - parent: 12 - - uid: 8238 - components: - - type: Transform - pos: 53.5,-22.5 - parent: 12 - - uid: 8242 - components: - - type: Transform - pos: 55.5,-21.5 - parent: 12 - - uid: 8243 - components: - - type: Transform - pos: 56.5,-21.5 - parent: 12 - - uid: 8244 - components: - - type: Transform - pos: 57.5,-21.5 - parent: 12 - - uid: 8245 - components: - - type: Transform - pos: 57.5,-20.5 - parent: 12 - - uid: 8246 - components: - - type: Transform - pos: 57.5,-19.5 - parent: 12 - - uid: 8247 - components: - - type: Transform - pos: 58.5,-19.5 - parent: 12 - - uid: 8249 - components: - - type: Transform - pos: 60.5,-19.5 - parent: 12 - - uid: 8250 - components: - - type: Transform - pos: 61.5,-19.5 - parent: 12 - - uid: 8251 - components: - - type: Transform - pos: 62.5,-19.5 - parent: 12 - - uid: 8252 - components: - - type: Transform - pos: 62.5,-20.5 - parent: 12 - - uid: 8253 - components: - - type: Transform - pos: 62.5,-21.5 - parent: 12 - - uid: 8255 - components: - - type: Transform - pos: 62.5,-23.5 - parent: 12 - - uid: 8256 - components: - - type: Transform - pos: 61.5,-23.5 - parent: 12 - - uid: 8257 - components: - - type: Transform - pos: 60.5,-23.5 - parent: 12 - - uid: 8258 - components: - - type: Transform - pos: 59.5,-23.5 - parent: 12 - - uid: 8260 - components: - - type: Transform - pos: 57.5,-23.5 - parent: 12 - - uid: 8261 - components: - - type: Transform - pos: 57.5,-22.5 - parent: 12 - - uid: 8262 - components: - - type: Transform - pos: 56.5,-15.5 - parent: 12 - - uid: 8263 - components: - - type: Transform - pos: 57.5,-15.5 - parent: 12 - - uid: 8264 - components: - - type: Transform - pos: 58.5,-15.5 - parent: 12 - - uid: 8265 - components: - - type: Transform - pos: 59.5,-15.5 - parent: 12 - - uid: 8266 - components: - - type: Transform - pos: 60.5,-15.5 - parent: 12 - - uid: 8267 - components: - - type: Transform - pos: 61.5,-15.5 - parent: 12 - - uid: 8268 - components: - - type: Transform - pos: 62.5,-15.5 - parent: 12 - - uid: 8269 - components: - - type: Transform - pos: 63.5,-15.5 - parent: 12 - - uid: 8270 - components: - - type: Transform - pos: 63.5,-14.5 - parent: 12 - - uid: 8271 - components: - - type: Transform - pos: 63.5,-13.5 - parent: 12 - - uid: 8272 - components: - - type: Transform - pos: 61.5,-13.5 - parent: 12 - - uid: 8273 - components: - - type: Transform - pos: 61.5,-14.5 - parent: 12 - - uid: 8274 - components: - - type: Transform - pos: 62.5,-13.5 - parent: 12 - - uid: 8275 - components: - - type: Transform - pos: 60.5,-13.5 - parent: 12 - - uid: 8276 - components: - - type: Transform - pos: 59.5,-13.5 - parent: 12 - - uid: 8277 - components: - - type: Transform - pos: 58.5,-13.5 - parent: 12 - - uid: 8278 - components: - - type: Transform - pos: 57.5,-13.5 - parent: 12 - - uid: 8279 - components: - - type: Transform - pos: 56.5,-13.5 - parent: 12 - - uid: 8280 - components: - - type: Transform - pos: 64.5,-14.5 - parent: 12 - - uid: 8281 - components: - - type: Transform - pos: 42.5,-16.5 - parent: 12 - - uid: 8282 - components: - - type: Transform - pos: 43.5,-16.5 - parent: 12 - - uid: 8283 - components: - - type: Transform - pos: 43.5,-15.5 - parent: 12 - - uid: 8284 - components: - - type: Transform - pos: 42.5,-15.5 - parent: 12 - - uid: 8298 - components: - - type: Transform - pos: 36.5,-13.5 - parent: 12 - - uid: 8301 - components: - - type: Transform - pos: 36.5,-12.5 - parent: 12 - - uid: 8302 - components: - - type: Transform - pos: 36.5,-11.5 - parent: 12 - - uid: 8307 - components: - - type: Transform - pos: 43.5,-13.5 - parent: 12 - - uid: 8308 - components: - - type: Transform - pos: 43.5,-14.5 - parent: 12 - - uid: 8309 - components: - - type: Transform - pos: 43.5,-17.5 - parent: 12 - - uid: 8310 - components: - - type: Transform - pos: 43.5,-11.5 - parent: 12 - - uid: 8315 - components: - - type: Transform - pos: 43.5,-18.5 - parent: 12 - - uid: 8316 - components: - - type: Transform - pos: 43.5,-19.5 - parent: 12 - - uid: 8317 - components: - - type: Transform - pos: 43.5,-20.5 - parent: 12 - - uid: 8318 - components: - - type: Transform - pos: 43.5,-21.5 - parent: 12 - - uid: 8319 - components: - - type: Transform - pos: 43.5,-22.5 - parent: 12 - - uid: 8320 - components: - - type: Transform - pos: 43.5,-23.5 - parent: 12 - - uid: 8321 - components: - - type: Transform - pos: 43.5,-24.5 - parent: 12 - - uid: 8324 - components: - - type: Transform - pos: 40.5,-23.5 - parent: 12 - - uid: 8325 - components: - - type: Transform - pos: 39.5,-23.5 - parent: 12 - - uid: 8326 - components: - - type: Transform - pos: 38.5,-23.5 - parent: 12 - - uid: 8327 - components: - - type: Transform - pos: 38.5,-21.5 - parent: 12 - - uid: 8328 - components: - - type: Transform - pos: 38.5,-20.5 - parent: 12 - - uid: 8329 - components: - - type: Transform - pos: 38.5,-19.5 - parent: 12 - - uid: 8330 - components: - - type: Transform - pos: 38.5,-18.5 - parent: 12 - - uid: 8331 - components: - - type: Transform - pos: 38.5,-22.5 - parent: 12 - - uid: 8332 - components: - - type: Transform - pos: 41.5,-22.5 - parent: 12 - - uid: 8337 - components: - - type: Transform - pos: 39.5,-18.5 - parent: 12 - - uid: 8338 - components: - - type: Transform - pos: 40.5,-18.5 - parent: 12 - - uid: 8339 - components: - - type: Transform - pos: 43.5,-10.5 - parent: 12 - - uid: 8340 - components: - - 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 - pos: -10.5,-8.5 - parent: 12 - - uid: 8467 - components: - - 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 - pos: 37.5,11.5 - parent: 12 - - uid: 8672 - components: - - type: Transform - pos: -8.5,20.5 - parent: 12 - - uid: 8773 - components: - - type: Transform - pos: 83.5,-34.5 - parent: 12 - - uid: 8774 - components: - - type: Transform - pos: 84.5,-34.5 - parent: 12 - - uid: 8775 - components: - - type: Transform - pos: 85.5,-34.5 - parent: 12 - - uid: 8776 - components: - - type: Transform - pos: 85.5,-35.5 - parent: 12 - - uid: 8777 - components: - - type: Transform - pos: 85.5,-36.5 - parent: 12 - - uid: 8778 - components: - - type: Transform - pos: 86.5,-36.5 - parent: 12 - - uid: 8779 - components: - - type: Transform - pos: 87.5,-36.5 - parent: 12 - - uid: 8780 - components: - - type: Transform - pos: 88.5,-36.5 - parent: 12 - - uid: 8781 - components: - - type: Transform - pos: 88.5,-35.5 - parent: 12 - - uid: 8782 - components: - - type: Transform - pos: 88.5,-34.5 - parent: 12 - - uid: 8783 - components: - - type: Transform - pos: 88.5,-33.5 - parent: 12 - - uid: 8784 - components: - - type: Transform - pos: 87.5,-33.5 - parent: 12 - - uid: 8785 - components: - - type: Transform - pos: 86.5,-33.5 - parent: 12 - - uid: 8786 - components: - - 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 - pos: 38.5,11.5 - parent: 12 - - uid: 8917 - components: - - type: Transform - pos: 7.5,-42.5 - parent: 12 - - uid: 8932 - components: - - type: Transform - pos: 48.5,-28.5 - parent: 12 - - uid: 8933 - components: - - type: Transform - pos: 48.5,-29.5 - parent: 12 - - uid: 8967 - components: - - type: Transform - pos: 10.5,-45.5 - parent: 12 - - uid: 8995 - components: - - type: Transform - pos: -10.5,-10.5 - parent: 12 - - uid: 9000 - components: - - type: Transform - pos: 58.5,8.5 - parent: 12 - - uid: 9005 - components: - - type: Transform - pos: 58.5,9.5 - parent: 12 - - uid: 9006 - components: - - type: Transform - pos: 58.5,10.5 - parent: 12 - - uid: 9007 - components: - - type: Transform - pos: 59.5,10.5 - parent: 12 - - uid: 9008 - components: - - type: Transform - pos: 61.5,10.5 - parent: 12 - - uid: 9009 - components: - - type: Transform - pos: 61.5,9.5 - parent: 12 - - uid: 9010 - components: - - type: Transform - pos: 61.5,8.5 - parent: 12 - - uid: 9012 - components: - - type: Transform - pos: 62.5,2.5 - parent: 12 - - uid: 9038 - components: - - type: Transform - pos: 64.5,6.5 - parent: 12 - - uid: 9043 - components: - - type: Transform - pos: -10.5,-9.5 - parent: 12 - - uid: 9044 - components: - - type: Transform - pos: -10.5,-2.5 - parent: 12 - - uid: 9046 - components: - - type: Transform - pos: 64.5,2.5 - parent: 12 - - uid: 9047 - components: - - type: Transform - pos: 63.5,2.5 - parent: 12 - - uid: 9063 - components: - - type: Transform - pos: 37.5,-14.5 - parent: 12 - - uid: 9078 - components: - - type: Transform - pos: 30.5,15.5 - parent: 12 - - uid: 9126 - components: - - type: Transform - pos: 49.5,-40.5 - parent: 12 - - uid: 9129 - components: - - type: Transform - pos: 41.5,-31.5 - parent: 12 - - uid: 9131 - components: - - type: Transform - pos: 48.5,-39.5 - parent: 12 - - uid: 9132 - components: - - type: Transform - pos: 47.5,-39.5 - parent: 12 - - uid: 9137 - components: - - type: Transform - pos: 46.5,-39.5 - parent: 12 - - uid: 9138 - components: - - type: Transform - pos: 31.5,-55.5 - parent: 12 - - uid: 9140 - components: - - type: Transform - pos: 2.5,70.5 - parent: 12 - - uid: 9147 - components: - - type: Transform - pos: 42.5,-31.5 - parent: 12 - - uid: 9148 - components: - - type: Transform - pos: 42.5,-33.5 - parent: 12 - - uid: 9149 - components: - - type: Transform - pos: 42.5,-32.5 - parent: 12 - - uid: 9150 - components: - - type: Transform - pos: 45.5,-39.5 - parent: 12 - - uid: 9151 - components: - - type: Transform - pos: 41.5,-30.5 - parent: 12 - - uid: 9152 - components: - - type: Transform - pos: 41.5,-29.5 - parent: 12 - - uid: 9153 - components: - - type: Transform - pos: 41.5,-28.5 - parent: 12 - - uid: 9154 - components: - - type: Transform - pos: 41.5,-27.5 - parent: 12 - - uid: 9155 - components: - - type: Transform - pos: 42.5,-27.5 - parent: 12 - - uid: 9156 - components: - - type: Transform - pos: 43.5,-27.5 - parent: 12 - - uid: 9157 - components: - - type: Transform - pos: 44.5,-27.5 - parent: 12 - - uid: 9158 - components: - - type: Transform - pos: 45.5,-27.5 - parent: 12 - - uid: 9159 - components: - - type: Transform - pos: 45.5,-28.5 - parent: 12 - - uid: 9160 - components: - - type: Transform - pos: 45.5,-29.5 - parent: 12 - - uid: 9161 - components: - - type: Transform - pos: 45.5,-30.5 - parent: 12 - - uid: 9162 - components: - - type: Transform - pos: 45.5,-31.5 - parent: 12 - - uid: 9163 - components: - - type: Transform - pos: 44.5,-31.5 - parent: 12 - - uid: 9164 - components: - - type: Transform - pos: 43.5,-31.5 - parent: 12 - - uid: 9165 - components: - - type: Transform - pos: 42.5,-33.5 - parent: 12 - - uid: 9166 - components: - - type: Transform - pos: 42.5,-34.5 - parent: 12 - - uid: 9170 - components: - - type: Transform - pos: 39.5,-35.5 - parent: 12 - - uid: 9177 - components: - - type: Transform - pos: 34.5,-34.5 - parent: 12 - - uid: 9179 - components: - - type: Transform - pos: 51.5,-5.5 - parent: 12 - - uid: 9185 - components: - - type: Transform - pos: 32.5,-35.5 - parent: 12 - - uid: 9186 - components: - - type: Transform - pos: 32.5,-34.5 - parent: 12 - - uid: 9187 - components: - - type: Transform - pos: 32.5,-33.5 - parent: 12 - - uid: 9188 - components: - - type: Transform - pos: 32.5,-32.5 - parent: 12 - - uid: 9189 - components: - - type: Transform - pos: 32.5,-31.5 - parent: 12 - - uid: 9190 - components: - - type: Transform - pos: 32.5,-30.5 - parent: 12 - - uid: 9191 - components: - - type: Transform - pos: 32.5,-29.5 - parent: 12 - - uid: 9192 - components: - - type: Transform - pos: 39.5,-36.5 - parent: 12 - - uid: 9193 - components: - - type: Transform - pos: 39.5,-37.5 - parent: 12 - - uid: 9194 - components: - - type: Transform - pos: 39.5,-38.5 - parent: 12 - - uid: 9195 - components: - - type: Transform - pos: 36.5,-38.5 - parent: 12 - - uid: 9196 - components: - - type: Transform - pos: 37.5,-38.5 - parent: 12 - - uid: 9197 - components: - - type: Transform - pos: 38.5,-38.5 - parent: 12 - - uid: 9198 - components: - - type: Transform - pos: 40.5,-38.5 - parent: 12 - - uid: 9199 - components: - - type: Transform - pos: 41.5,-38.5 - parent: 12 - - uid: 9201 - components: - - type: Transform - pos: 49.5,-37.5 - parent: 12 - - uid: 9202 - components: - - type: Transform - pos: 49.5,-36.5 - parent: 12 - - uid: 9203 - components: - - type: Transform - pos: 49.5,-35.5 - parent: 12 - - uid: 9204 - components: - - type: Transform - pos: 49.5,-34.5 - parent: 12 - - uid: 9205 - components: - - type: Transform - pos: 48.5,-34.5 - parent: 12 - - uid: 9206 - components: - - type: Transform - pos: 47.5,-34.5 - parent: 12 - - uid: 9207 - components: - - type: Transform - pos: 46.5,-34.5 - parent: 12 - - uid: 9208 - components: - - type: Transform - pos: 45.5,-34.5 - parent: 12 - - uid: 9209 - components: - - type: Transform - pos: 44.5,-34.5 - parent: 12 - - uid: 9210 - components: - - type: Transform - pos: 43.5,-34.5 - parent: 12 - - uid: 9226 - components: - - 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 - pos: 11.5,-3.5 - parent: 12 - - uid: 9300 - components: - - type: Transform - pos: 21.5,-11.5 - parent: 12 - - uid: 9376 - components: - - type: Transform - pos: 38.5,-34.5 - parent: 12 - - uid: 9384 - components: - - type: Transform - pos: 36.5,-34.5 - parent: 12 - - uid: 9385 - components: - - type: Transform - pos: 41.5,-34.5 - parent: 12 - - uid: 9386 - components: - - type: Transform - pos: 37.5,-34.5 - parent: 12 - - uid: 9387 - components: - - type: Transform - pos: 39.5,-34.5 - parent: 12 - - uid: 9388 - components: - - type: Transform - pos: 40.5,-34.5 - parent: 12 - - uid: 9389 - components: - - type: Transform - pos: 35.5,-34.5 - parent: 12 - - uid: 9390 - components: - - type: Transform - pos: 33.5,-34.5 - parent: 12 - - uid: 9438 - components: - - 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 - pos: 61.5,7.5 - parent: 12 - - uid: 9538 - components: - - type: Transform - pos: 63.5,-1.5 - parent: 12 - - uid: 9547 - components: - - type: Transform - pos: -1.5,-15.5 - parent: 12 - - uid: 9577 - components: - - type: Transform - pos: 4.5,23.5 - parent: 12 - - uid: 9595 - components: - - type: Transform - pos: 53.5,-8.5 - parent: 12 - - uid: 9603 - components: - - type: Transform - pos: 11.5,19.5 - parent: 12 - - uid: 9617 - components: - - 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 - pos: 39.5,-14.5 - parent: 12 - - uid: 9653 - components: - - type: Transform - pos: 4.5,22.5 - parent: 12 - - uid: 9668 - components: - - type: Transform - pos: 4.5,25.5 - parent: 12 - - uid: 9676 - components: - - type: Transform - pos: 16.5,18.5 - parent: 12 - - uid: 9677 - components: - - type: Transform - pos: 0.5,-35.5 - parent: 12 - - uid: 9683 - components: - - type: Transform - pos: 30.5,1.5 - parent: 12 - - uid: 9721 - components: - - type: Transform - pos: 14.5,19.5 - parent: 12 - - uid: 9832 - components: - - type: Transform - pos: 54.5,-8.5 - parent: 12 - - uid: 9844 - components: - - type: Transform - pos: -5.5,-42.5 - parent: 12 - - uid: 9852 - components: - - type: Transform - pos: 2.5,20.5 - parent: 12 - - uid: 9854 - components: - - type: Transform - pos: -23.5,-9.5 - parent: 12 - - uid: 9869 - components: - - type: Transform - pos: -26.5,63.5 - parent: 12 - - uid: 9872 - components: - - type: Transform - pos: 18.5,66.5 - parent: 12 - - uid: 9873 - components: - - type: Transform - pos: 18.5,65.5 - parent: 12 - - uid: 9898 - components: - - type: Transform - pos: -13.5,-57.5 - parent: 12 - - uid: 9900 - components: - - type: Transform - pos: -9.5,-53.5 - parent: 12 - - uid: 9901 - components: - - type: Transform - pos: -9.5,-52.5 - parent: 12 - - uid: 9905 - components: - - type: Transform - pos: -4.5,-42.5 - parent: 12 - - uid: 9916 - components: - - type: Transform - pos: -5.5,-30.5 - parent: 12 - - uid: 9917 - components: - - type: Transform - pos: -4.5,-30.5 - parent: 12 - - uid: 9918 - components: - - type: Transform - pos: -3.5,-30.5 - parent: 12 - - uid: 9919 - components: - - type: Transform - pos: -2.5,-30.5 - parent: 12 - - uid: 9920 - components: - - type: Transform - pos: -1.5,-30.5 - parent: 12 - - uid: 9921 - components: - - type: Transform - pos: -0.5,-30.5 - parent: 12 - - uid: 9922 - components: - - type: Transform - pos: 0.5,-30.5 - parent: 12 - - uid: 9923 - components: - - type: Transform - pos: 1.5,-30.5 - parent: 12 - - uid: 9924 - components: - - type: Transform - pos: 2.5,-30.5 - parent: 12 - - uid: 9925 - components: - - type: Transform - pos: 3.5,-30.5 - parent: 12 - - uid: 9926 - components: - - type: Transform - pos: 4.5,-30.5 - parent: 12 - - uid: 9927 - components: - - type: Transform - pos: 5.5,-30.5 - parent: 12 - - uid: 9928 - components: - - type: Transform - pos: 5.5,-31.5 - parent: 12 - - uid: 9929 - components: - - type: Transform - pos: 5.5,-32.5 - parent: 12 - - uid: 9930 - components: - - type: Transform - pos: 5.5,-33.5 - parent: 12 - - uid: 9931 - components: - - type: Transform - pos: 5.5,-34.5 - parent: 12 - - uid: 9932 - components: - - type: Transform - pos: 6.5,-34.5 - parent: 12 - - uid: 9933 - components: - - type: Transform - pos: 6.5,-35.5 - parent: 12 - - uid: 9934 - components: - - type: Transform - pos: 6.5,-36.5 - parent: 12 - - uid: 9935 - components: - - type: Transform - pos: 5.5,-36.5 - parent: 12 - - uid: 9936 - components: - - type: Transform - pos: 4.5,-36.5 - parent: 12 - - uid: 9937 - components: - - type: Transform - pos: 3.5,-36.5 - parent: 12 - - uid: 9957 - components: - - type: Transform - pos: 51.5,-8.5 - parent: 12 - - uid: 9973 - components: - - type: Transform - pos: -8.5,-40.5 - parent: 12 - - uid: 10021 - components: - - 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 - pos: -34.5,-12.5 - parent: 12 - - uid: 10329 - components: - - type: Transform - pos: -34.5,-11.5 - parent: 12 - - uid: 10348 - components: - - type: Transform - pos: 7.5,-41.5 - parent: 12 - - uid: 10349 - components: - - type: Transform - pos: -27.5,-2.5 - parent: 12 - - uid: 10350 - components: - - type: Transform - pos: -27.5,-3.5 - parent: 12 - - uid: 10351 - components: - - type: Transform - pos: -27.5,-4.5 - parent: 12 - - uid: 10352 - components: - - type: Transform - pos: -27.5,-5.5 - parent: 12 - - uid: 10353 - components: - - type: Transform - pos: -27.5,-6.5 - parent: 12 - - uid: 10354 - components: - - type: Transform - pos: -27.5,-7.5 - parent: 12 - - uid: 10355 - components: - - type: Transform - pos: -27.5,-8.5 - parent: 12 - - uid: 10356 - components: - - type: Transform - pos: -27.5,-9.5 - parent: 12 - - uid: 10357 - components: - - type: Transform - pos: -27.5,-10.5 - parent: 12 - - uid: 10358 - components: - - type: Transform - pos: -28.5,-10.5 - parent: 12 - - uid: 10359 - components: - - type: Transform - pos: -29.5,-10.5 - parent: 12 - - uid: 10360 - components: - - type: Transform - pos: -30.5,-10.5 - parent: 12 - - uid: 10361 - components: - - type: Transform - pos: -31.5,-10.5 - parent: 12 - - uid: 10362 - components: - - type: Transform - pos: -32.5,-10.5 - parent: 12 - - uid: 10363 - components: - - type: Transform - pos: -33.5,-10.5 - parent: 12 - - uid: 10364 - components: - - type: Transform - pos: -34.5,-10.5 - parent: 12 - - uid: 10448 - components: - - type: Transform - pos: -26.5,-6.5 - parent: 12 - - uid: 10449 - components: - - type: Transform - pos: -25.5,-6.5 - parent: 12 - - uid: 10451 - components: - - type: Transform - pos: -23.5,-6.5 - parent: 12 - - uid: 10452 - components: - - type: Transform - pos: -22.5,-6.5 - parent: 12 - - uid: 10453 - components: - - type: Transform - pos: -21.5,-6.5 - parent: 12 - - uid: 10454 - components: - - type: Transform - pos: -20.5,-6.5 - parent: 12 - - uid: 10455 - components: - - type: Transform - pos: -26.5,-3.5 - parent: 12 - - uid: 10456 - components: - - type: Transform - pos: -25.5,-3.5 - parent: 12 - - uid: 10458 - components: - - type: Transform - pos: -23.5,-3.5 - parent: 12 - - uid: 10459 - components: - - type: Transform - pos: -22.5,-3.5 - parent: 12 - - uid: 10460 - components: - - type: Transform - pos: -21.5,-3.5 - parent: 12 - - uid: 10461 - components: - - type: Transform - pos: -20.5,-3.5 - parent: 12 - - uid: 10603 - components: - - type: Transform - pos: 55.5,-8.5 - parent: 12 - - uid: 10604 - components: - - type: Transform - pos: 53.5,-6.5 - parent: 12 - - uid: 10623 - components: - - type: Transform - pos: 17.5,15.5 - parent: 12 - - uid: 10625 - components: - - type: Transform - pos: -27.5,-1.5 - parent: 12 - - uid: 10627 - components: - - type: Transform - pos: -27.5,-0.5 - parent: 12 - - uid: 10796 - components: - - type: Transform - pos: 12.5,-8.5 - parent: 12 - - uid: 10797 - components: - - type: Transform - pos: 12.5,-7.5 - parent: 12 - - uid: 10798 - components: - - type: Transform - pos: 12.5,-6.5 - parent: 12 - - uid: 10799 - components: - - type: Transform - pos: 12.5,-5.5 - parent: 12 - - uid: 10800 - components: - - type: Transform - pos: 12.5,-4.5 - parent: 12 - - uid: 10801 - components: - - type: Transform - pos: 8.5,-11.5 - parent: 12 - - uid: 10804 - components: - - type: Transform - pos: 8.5,-10.5 - parent: 12 - - uid: 10805 - components: - - type: Transform - pos: 8.5,-9.5 - parent: 12 - - uid: 10806 - components: - - type: Transform - pos: 8.5,-8.5 - parent: 12 - - uid: 10809 - components: - - type: Transform - pos: 8.5,-7.5 - parent: 12 - - uid: 10824 - components: - - type: Transform - pos: 8.5,-6.5 - parent: 12 - - uid: 10833 - components: - - type: Transform - pos: 10.5,21.5 - parent: 12 - - uid: 10869 - components: - - type: Transform - pos: 1.5,16.5 - parent: 12 - - uid: 10968 - components: - - type: Transform - pos: 7.5,19.5 - parent: 12 - - uid: 11044 - components: - - type: Transform - pos: 11.5,20.5 - parent: 12 - - uid: 11046 - components: - - type: Transform - pos: 11.5,12.5 - parent: 12 - - uid: 11129 - components: - - type: Transform - pos: 31.5,-35.5 - parent: 12 - - uid: 11130 - components: - - type: Transform - pos: 32.5,-35.5 - parent: 12 - - uid: 11140 - components: - - type: Transform - pos: 30.5,-34.5 - parent: 12 - - uid: 11200 - components: - - type: Transform - pos: 7.5,12.5 - parent: 12 - - uid: 11201 - components: - - type: Transform - pos: 1.5,70.5 - parent: 12 - - uid: 11204 - components: - - type: Transform - pos: 6.5,12.5 - parent: 12 - - uid: 11214 - components: - - type: Transform - pos: 3.5,22.5 - parent: 12 - - uid: 11215 - components: - - type: Transform - pos: 6.5,19.5 - parent: 12 - - uid: 11230 - components: - - type: Transform - pos: 60.5,10.5 - parent: 12 - - uid: 11255 - components: - - type: Transform - pos: 4.5,19.5 - parent: 12 - - uid: 11274 - components: - - type: Transform - pos: 0.5,70.5 - parent: 12 - - uid: 11276 - components: - - type: Transform - pos: 8.5,12.5 - parent: 12 - - uid: 11289 - components: - - type: Transform - pos: 64.5,-1.5 - parent: 12 - - uid: 11293 - components: - - type: Transform - pos: 48.5,-0.5 - parent: 12 - - uid: 11294 - components: - - type: Transform - pos: 46.5,-0.5 - parent: 12 - - uid: 11295 - components: - - type: Transform - pos: 47.5,-0.5 - parent: 12 - - uid: 11305 - components: - - type: Transform - pos: 60.5,-1.5 - parent: 12 - - uid: 11315 - components: - - type: Transform - pos: 16.5,19.5 - parent: 12 - - uid: 11328 - components: - - type: Transform - pos: 9.5,20.5 - parent: 12 - - uid: 11367 - components: - - type: Transform - pos: -27.5,60.5 - parent: 12 - - uid: 11369 - components: - - type: Transform - pos: 30.5,13.5 - parent: 12 - - uid: 11374 - components: - - type: Transform - pos: 43.5,26.5 - parent: 12 - - uid: 11380 - components: - - type: Transform - pos: 62.5,-1.5 - parent: 12 - - uid: 11388 - components: - - type: Transform - pos: 26.5,8.5 - parent: 12 - - uid: 11399 - components: - - type: Transform - pos: -35.5,-58.5 - parent: 12 - - uid: 11411 - components: - - type: Transform - pos: 41.5,9.5 - parent: 12 - - uid: 11453 - components: - - type: Transform - pos: 61.5,-1.5 - parent: 12 - - uid: 11484 - components: - - type: Transform - pos: 54.5,13.5 - parent: 12 - - uid: 11502 - components: - - 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 - pos: 36.5,11.5 - parent: 12 - - uid: 11981 - components: - - type: Transform - pos: 35.5,11.5 - parent: 12 - - uid: 11985 - components: - - type: Transform - pos: 32.5,13.5 - parent: 12 - - uid: 11998 - components: - - type: Transform - pos: 38.5,15.5 - parent: 12 - - uid: 11999 - components: - - type: Transform - pos: 38.5,18.5 - parent: 12 - - uid: 12010 - components: - - type: Transform - pos: 30.5,17.5 - parent: 12 - - uid: 12012 - components: - - type: Transform - pos: 29.5,17.5 - parent: 12 - - uid: 12013 - components: - - type: Transform - pos: 28.5,17.5 - parent: 12 - - uid: 12029 - components: - - type: Transform - pos: 34.5,11.5 - parent: 12 - - uid: 12072 - components: - - type: Transform - pos: -42.5,53.5 - parent: 12 - - uid: 12077 - components: - - type: Transform - pos: 38.5,16.5 - parent: 12 - - uid: 12087 - components: - - type: Transform - pos: 43.5,5.5 - parent: 12 - - uid: 12088 - components: - - type: Transform - pos: 43.5,6.5 - parent: 12 - - uid: 12089 - components: - - type: Transform - pos: 43.5,7.5 - parent: 12 - - uid: 12090 - components: - - type: Transform - pos: 43.5,8.5 - parent: 12 - - uid: 12091 - components: - - type: Transform - pos: 44.5,8.5 - parent: 12 - - uid: 12092 - components: - - type: Transform - pos: 43.5,8.5 - parent: 12 - - uid: 12093 - components: - - type: Transform - pos: 42.5,8.5 - parent: 12 - - uid: 12094 - components: - - type: Transform - pos: 41.5,8.5 - parent: 12 - - uid: 12095 - components: - - type: Transform - pos: 40.5,8.5 - parent: 12 - - uid: 12097 - components: - - type: Transform - pos: 38.5,8.5 - parent: 12 - - uid: 12098 - components: - - type: Transform - pos: 37.5,8.5 - parent: 12 - - uid: 12101 - components: - - type: Transform - pos: 34.5,8.5 - parent: 12 - - uid: 12102 - components: - - type: Transform - pos: 34.5,7.5 - parent: 12 - - uid: 12103 - components: - - type: Transform - pos: 37.5,7.5 - parent: 12 - - uid: 12104 - components: - - type: Transform - pos: 37.5,9.5 - parent: 12 - - uid: 12105 - components: - - type: Transform - pos: 37.5,10.5 - parent: 12 - - uid: 12106 - components: - - type: Transform - pos: 33.5,8.5 - parent: 12 - - uid: 12107 - components: - - type: Transform - pos: 33.5,9.5 - parent: 12 - - uid: 12111 - components: - - type: Transform - pos: 33.5,10.5 - parent: 12 - - uid: 12112 - components: - - type: Transform - pos: 34.5,10.5 - parent: 12 - - uid: 12115 - components: - - type: Transform - pos: 37.5,10.5 - parent: 12 - - uid: 12119 - components: - - type: Transform - pos: 41.5,10.5 - parent: 12 - - uid: 12124 - components: - - type: Transform - pos: 50.5,12.5 - parent: 12 - - uid: 12129 - components: - - type: Transform - pos: 49.5,12.5 - parent: 12 - - uid: 12130 - components: - - type: Transform - pos: 48.5,12.5 - parent: 12 - - uid: 12131 - components: - - type: Transform - pos: 47.5,12.5 - parent: 12 - - uid: 12132 - components: - - type: Transform - pos: 46.5,12.5 - parent: 12 - - uid: 12133 - components: - - type: Transform - pos: 45.5,12.5 - parent: 12 - - uid: 12134 - components: - - type: Transform - pos: 44.5,12.5 - parent: 12 - - uid: 12136 - components: - - type: Transform - pos: 42.5,12.5 - parent: 12 - - uid: 12137 - components: - - type: Transform - pos: 41.5,12.5 - parent: 12 - - uid: 12144 - components: - - type: Transform - pos: 34.5,12.5 - parent: 12 - - uid: 12145 - components: - - type: Transform - pos: 33.5,12.5 - parent: 12 - - uid: 12146 - components: - - type: Transform - pos: 32.5,12.5 - parent: 12 - - uid: 12153 - components: - - type: Transform - pos: 32.5,14.5 - parent: 12 - - uid: 12155 - components: - - type: Transform - pos: 34.5,14.5 - parent: 12 - - uid: 12156 - components: - - type: Transform - pos: 35.5,14.5 - parent: 12 - - uid: 12157 - components: - - type: Transform - pos: 36.5,14.5 - parent: 12 - - uid: 12158 - components: - - type: Transform - pos: 37.5,14.5 - parent: 12 - - uid: 12159 - components: - - type: Transform - pos: 38.5,14.5 - parent: 12 - - uid: 12160 - components: - - type: Transform - pos: 39.5,14.5 - parent: 12 - - uid: 12162 - components: - - type: Transform - pos: 41.5,14.5 - parent: 12 - - uid: 12164 - components: - - type: Transform - pos: 43.5,14.5 - parent: 12 - - uid: 12165 - components: - - type: Transform - pos: 44.5,14.5 - parent: 12 - - uid: 12166 - components: - - type: Transform - pos: 45.5,14.5 - parent: 12 - - uid: 12167 - components: - - type: Transform - pos: 46.5,14.5 - parent: 12 - - uid: 12168 - components: - - type: Transform - pos: 47.5,14.5 - parent: 12 - - uid: 12169 - components: - - type: Transform - pos: 48.5,14.5 - parent: 12 - - uid: 12170 - components: - - type: Transform - pos: 49.5,14.5 - parent: 12 - - uid: 12171 - components: - - type: Transform - pos: 50.5,14.5 - parent: 12 - - uid: 12172 - components: - - type: Transform - pos: 51.5,14.5 - parent: 12 - - uid: 12173 - components: - - type: Transform - pos: 52.5,14.5 - parent: 12 - - uid: 12174 - components: - - type: Transform - pos: 52.5,15.5 - parent: 12 - - uid: 12175 - components: - - type: Transform - pos: 52.5,16.5 - parent: 12 - - uid: 12176 - components: - - type: Transform - pos: 52.5,17.5 - parent: 12 - - uid: 12177 - components: - - type: Transform - pos: 53.5,17.5 - parent: 12 - - uid: 12178 - components: - - type: Transform - pos: 54.5,17.5 - parent: 12 - - uid: 12179 - components: - - type: Transform - pos: 55.5,17.5 - parent: 12 - - uid: 12180 - components: - - type: Transform - pos: 41.5,13.5 - parent: 12 - - uid: 12181 - components: - - type: Transform - pos: 41.5,11.5 - parent: 12 - - uid: 12182 - components: - - type: Transform - pos: 41.5,15.5 - parent: 12 - - uid: 12183 - components: - - type: Transform - pos: 41.5,16.5 - parent: 12 - - uid: 12184 - components: - - type: Transform - pos: 41.5,17.5 - parent: 12 - - uid: 12185 - components: - - type: Transform - pos: 41.5,18.5 - parent: 12 - - uid: 12186 - components: - - type: Transform - pos: 41.5,19.5 - parent: 12 - - uid: 12187 - components: - - type: Transform - pos: 40.5,19.5 - parent: 12 - - uid: 12188 - components: - - type: Transform - pos: 39.5,19.5 - parent: 12 - - uid: 12189 - components: - - type: Transform - pos: 38.5,19.5 - parent: 12 - - uid: 12192 - components: - - type: Transform - pos: 35.5,19.5 - parent: 12 - - uid: 12193 - components: - - type: Transform - pos: 35.5,18.5 - parent: 12 - - uid: 12194 - components: - - type: Transform - pos: 35.5,17.5 - parent: 12 - - uid: 12195 - components: - - type: Transform - pos: 35.5,16.5 - parent: 12 - - uid: 12196 - components: - - type: Transform - pos: 35.5,15.5 - parent: 12 - - uid: 12197 - components: - - type: Transform - pos: 39.5,20.5 - parent: 12 - - uid: 12198 - components: - - type: Transform - pos: 39.5,21.5 - parent: 12 - - uid: 12200 - components: - - type: Transform - pos: 41.5,21.5 - parent: 12 - - uid: 12201 - components: - - type: Transform - pos: 42.5,21.5 - parent: 12 - - uid: 12202 - components: - - type: Transform - pos: 43.5,21.5 - parent: 12 - - uid: 12203 - components: - - type: Transform - pos: 44.5,21.5 - parent: 12 - - uid: 12204 - components: - - type: Transform - pos: 45.5,21.5 - parent: 12 - - uid: 12205 - components: - - type: Transform - pos: 45.5,20.5 - parent: 12 - - uid: 12206 - components: - - type: Transform - pos: 45.5,19.5 - parent: 12 - - uid: 12207 - components: - - type: Transform - pos: 45.5,18.5 - parent: 12 - - uid: 12208 - components: - - type: Transform - pos: 44.5,18.5 - parent: 12 - - uid: 12209 - components: - - type: Transform - pos: 44.5,17.5 - parent: 12 - - uid: 12210 - components: - - type: Transform - pos: 44.5,16.5 - parent: 12 - - uid: 12211 - components: - - type: Transform - pos: 45.5,16.5 - parent: 12 - - uid: 12212 - components: - - type: Transform - pos: 46.5,16.5 - parent: 12 - - uid: 12213 - components: - - type: Transform - pos: 46.5,17.5 - parent: 12 - - uid: 12215 - components: - - type: Transform - pos: 46.5,19.5 - parent: 12 - - uid: 12216 - components: - - type: Transform - pos: 47.5,19.5 - parent: 12 - - uid: 12218 - components: - - type: Transform - pos: 49.5,19.5 - parent: 12 - - uid: 12219 - components: - - type: Transform - pos: 50.5,19.5 - parent: 12 - - uid: 12220 - components: - - type: Transform - pos: 51.5,19.5 - parent: 12 - - uid: 12221 - components: - - type: Transform - pos: 51.5,17.5 - parent: 12 - - uid: 12222 - components: - - type: Transform - pos: 51.5,18.5 - parent: 12 - - uid: 12233 - components: - - type: Transform - pos: -46.5,51.5 - parent: 12 - - uid: 12240 - components: - - type: Transform - pos: -43.5,54.5 - parent: 12 - - uid: 12242 - components: - - type: Transform - pos: 49.5,16.5 - parent: 12 - - uid: 12244 - components: - - type: Transform - pos: 49.5,17.5 - parent: 12 - - uid: 12266 - components: - - type: Transform - pos: 9.5,12.5 - parent: 12 - - uid: 12288 - components: - - type: Transform - pos: 17.5,-7.5 - parent: 12 - - uid: 12310 - components: - - type: Transform - pos: 17.5,-6.5 - parent: 12 - - uid: 12315 - components: - - type: Transform - pos: 17.5,-9.5 - parent: 12 - - uid: 12322 - components: - - type: Transform - pos: 17.5,-8.5 - parent: 12 - - uid: 12573 - components: - - type: Transform - pos: 1.5,18.5 - parent: 12 - - uid: 12636 - components: - - type: Transform - pos: 52.5,12.5 - parent: 12 - - uid: 12646 - components: - - type: Transform - pos: 17.5,-1.5 - parent: 12 - - uid: 12698 - components: - - type: Transform - pos: 17.5,-2.5 - parent: 12 - - uid: 12722 - components: - - type: Transform - pos: 17.5,-0.5 - parent: 12 - - uid: 12724 - components: - - type: Transform - pos: 17.5,-5.5 - parent: 12 - - uid: 12910 - components: - - type: Transform - pos: 30.5,19.5 - parent: 12 - - uid: 12912 - components: - - type: Transform - pos: 17.5,-4.5 - parent: 12 - - uid: 12913 - components: - - type: Transform - pos: 17.5,-3.5 - parent: 12 - - uid: 12926 - components: - - 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 - pos: 32.5,27.5 - parent: 12 - - uid: 12936 - components: - - type: Transform - pos: 29.5,33.5 - parent: 12 - - uid: 12937 - components: - - type: Transform - pos: 28.5,31.5 - parent: 12 - - uid: 12939 - components: - - type: Transform - pos: 32.5,26.5 - parent: 12 - - uid: 12941 - components: - - type: Transform - pos: 28.5,33.5 - parent: 12 - - uid: 12942 - components: - - type: Transform - pos: 28.5,32.5 - parent: 12 - - uid: 12943 - components: - - type: Transform - pos: 30.5,33.5 - parent: 12 - - uid: 12945 - components: - - type: Transform - pos: 32.5,29.5 - parent: 12 - - uid: 12946 - components: - - type: Transform - pos: 32.5,28.5 - parent: 12 - - uid: 12947 - components: - - type: Transform - pos: 28.5,30.5 - parent: 12 - - uid: 12948 - components: - - type: Transform - pos: 28.5,29.5 - parent: 12 - - uid: 12949 - components: - - type: Transform - pos: 28.5,28.5 - parent: 12 - - uid: 12950 - components: - - type: Transform - pos: 32.5,30.5 - parent: 12 - - uid: 12951 - components: - - type: Transform - pos: 32.5,33.5 - parent: 12 - - uid: 12952 - components: - - type: Transform - pos: 32.5,32.5 - parent: 12 - - uid: 12954 - components: - - type: Transform - pos: 28.5,27.5 - parent: 12 - - uid: 12955 - components: - - type: Transform - pos: 32.5,25.5 - parent: 12 - - uid: 12956 - components: - - type: Transform - pos: 29.5,28.5 - parent: 12 - - uid: 12957 - components: - - type: Transform - pos: 30.5,28.5 - parent: 12 - - uid: 12958 - components: - - type: Transform - pos: 31.5,28.5 - parent: 12 - - uid: 12959 - components: - - type: Transform - pos: 32.5,24.5 - parent: 12 - - uid: 12960 - components: - - type: Transform - pos: 32.5,23.5 - parent: 12 - - uid: 12961 - components: - - type: Transform - pos: 31.5,23.5 - parent: 12 - - uid: 12962 - components: - - type: Transform - pos: 30.5,23.5 - parent: 12 - - uid: 12963 - components: - - type: Transform - pos: 29.5,23.5 - parent: 12 - - uid: 12964 - components: - - type: Transform - pos: 29.5,24.5 - parent: 12 - - uid: 12965 - components: - - type: Transform - pos: 28.5,25.5 - parent: 12 - - uid: 12966 - components: - - type: Transform - pos: 29.5,25.5 - parent: 12 - - uid: 12967 - components: - - type: Transform - pos: 30.5,25.5 - parent: 12 - - uid: 12968 - components: - - type: Transform - pos: 29.5,22.5 - parent: 12 - - uid: 12969 - components: - - type: Transform - pos: 28.5,21.5 - parent: 12 - - uid: 12970 - components: - - type: Transform - pos: 29.5,21.5 - parent: 12 - - uid: 12971 - components: - - type: Transform - pos: 30.5,21.5 - parent: 12 - - uid: 13001 - components: - - type: Transform - pos: -14.5,-1.5 - parent: 12 - - uid: 13224 - components: - - type: Transform - pos: -47.5,49.5 - parent: 12 - - uid: 13392 - components: - - type: Transform - pos: 52.5,28.5 - parent: 12 - - uid: 13393 - components: - - type: Transform - pos: 53.5,28.5 - parent: 12 - - uid: 13394 - components: - - type: Transform - pos: 54.5,28.5 - parent: 12 - - uid: 13395 - components: - - type: Transform - pos: 55.5,28.5 - parent: 12 - - uid: 13396 - components: - - type: Transform - pos: 56.5,28.5 - parent: 12 - - uid: 13397 - components: - - type: Transform - pos: 55.5,27.5 - parent: 12 - - uid: 13398 - components: - - type: Transform - pos: 55.5,29.5 - parent: 12 - - uid: 13399 - components: - - type: Transform - pos: 55.5,30.5 - parent: 12 - - uid: 13400 - components: - - type: Transform - pos: 55.5,31.5 - parent: 12 - - uid: 13401 - components: - - type: Transform - pos: 55.5,32.5 - parent: 12 - - uid: 13402 - components: - - type: Transform - pos: 55.5,33.5 - parent: 12 - - uid: 13403 - components: - - type: Transform - pos: 55.5,34.5 - parent: 12 - - uid: 13404 - components: - - type: Transform - pos: 55.5,35.5 - parent: 12 - - uid: 13405 - components: - - type: Transform - pos: 55.5,36.5 - parent: 12 - - uid: 13406 - components: - - type: Transform - pos: 55.5,37.5 - parent: 12 - - uid: 13407 - components: - - type: Transform - pos: 55.5,38.5 - parent: 12 - - uid: 13408 - components: - - type: Transform - pos: 55.5,39.5 - parent: 12 - - uid: 13409 - components: - - type: Transform - pos: 55.5,40.5 - parent: 12 - - uid: 13410 - components: - - type: Transform - pos: 55.5,41.5 - parent: 12 - - uid: 13411 - components: - - type: Transform - pos: 55.5,42.5 - parent: 12 - - uid: 13412 - components: - - type: Transform - pos: 56.5,37.5 - parent: 12 - - uid: 13413 - components: - - type: Transform - pos: 57.5,37.5 - parent: 12 - - uid: 13414 - components: - - type: Transform - pos: 54.5,37.5 - parent: 12 - - uid: 13415 - components: - - type: Transform - pos: 53.5,37.5 - parent: 12 - - uid: 13416 - components: - - type: Transform - pos: 52.5,37.5 - parent: 12 - - uid: 13417 - components: - - type: Transform - pos: 51.5,37.5 - parent: 12 - - uid: 13418 - components: - - type: Transform - pos: 50.5,37.5 - parent: 12 - - uid: 13419 - components: - - type: Transform - pos: 49.5,37.5 - parent: 12 - - uid: 13420 - components: - - type: Transform - pos: 48.5,37.5 - parent: 12 - - uid: 13421 - components: - - type: Transform - pos: 47.5,37.5 - parent: 12 - - uid: 13422 - components: - - type: Transform - pos: 46.5,37.5 - parent: 12 - - uid: 13423 - components: - - type: Transform - pos: 42.5,37.5 - parent: 12 - - uid: 13424 - components: - - type: Transform - pos: 48.5,38.5 - parent: 12 - - uid: 13425 - components: - - type: Transform - pos: 48.5,39.5 - parent: 12 - - uid: 13426 - components: - - type: Transform - pos: 48.5,40.5 - parent: 12 - - uid: 13427 - components: - - type: Transform - pos: 48.5,41.5 - parent: 12 - - uid: 13428 - components: - - type: Transform - pos: 47.5,40.5 - parent: 12 - - uid: 13429 - components: - - type: Transform - pos: 49.5,40.5 - parent: 12 - - uid: 13430 - components: - - type: Transform - pos: 48.5,36.5 - parent: 12 - - uid: 13431 - components: - - type: Transform - pos: 48.5,35.5 - parent: 12 - - uid: 13432 - components: - - type: Transform - pos: 48.5,34.5 - parent: 12 - - uid: 13433 - components: - - type: Transform - pos: 48.5,33.5 - parent: 12 - - uid: 13434 - components: - - type: Transform - pos: 49.5,33.5 - parent: 12 - - uid: 13435 - components: - - type: Transform - pos: 50.5,33.5 - parent: 12 - - uid: 13436 - components: - - type: Transform - pos: 51.5,33.5 - parent: 12 - - uid: 13437 - components: - - type: Transform - pos: 51.5,34.5 - parent: 12 - - uid: 13438 - components: - - type: Transform - pos: 51.5,35.5 - parent: 12 - - uid: 13439 - components: - - type: Transform - pos: 51.5,36.5 - parent: 12 - - uid: 13440 - components: - - type: Transform - pos: 51.5,32.5 - parent: 12 - - uid: 13441 - components: - - type: Transform - pos: 51.5,31.5 - parent: 12 - - uid: 13442 - components: - - type: Transform - pos: 51.5,30.5 - parent: 12 - - uid: 13443 - components: - - type: Transform - pos: 50.5,30.5 - parent: 12 - - uid: 13444 - components: - - type: Transform - pos: 49.5,30.5 - parent: 12 - - uid: 13445 - components: - - type: Transform - pos: 48.5,30.5 - parent: 12 - - uid: 13446 - components: - - type: Transform - pos: 47.5,30.5 - parent: 12 - - uid: 13447 - components: - - type: Transform - pos: 46.5,30.5 - parent: 12 - - uid: 13448 - components: - - type: Transform - pos: 45.5,30.5 - parent: 12 - - uid: 13449 - components: - - type: Transform - pos: 44.5,30.5 - parent: 12 - - uid: 13450 - components: - - type: Transform - pos: 43.5,30.5 - parent: 12 - - uid: 13451 - components: - - type: Transform - pos: 42.5,30.5 - parent: 12 - - uid: 13452 - components: - - type: Transform - pos: 43.5,31.5 - parent: 12 - - uid: 13453 - components: - - type: Transform - pos: 45.5,31.5 - parent: 12 - - uid: 13454 - components: - - type: Transform - pos: 43.5,29.5 - parent: 12 - - uid: 13455 - components: - - type: Transform - pos: 45.5,29.5 - parent: 12 - - uid: 13456 - components: - - type: Transform - pos: 45.5,28.5 - parent: 12 - - uid: 13457 - components: - - type: Transform - pos: 43.5,28.5 - parent: 12 - - uid: 13458 - components: - - type: Transform - pos: 41.5,29.5 - parent: 12 - - uid: 13459 - components: - - type: Transform - pos: 41.5,28.5 - parent: 12 - - uid: 13460 - components: - - type: Transform - pos: 42.5,29.5 - parent: 12 - - uid: 13461 - components: - - type: Transform - pos: 42.5,29.5 - parent: 12 - - uid: 13462 - components: - - type: Transform - pos: 40.5,29.5 - parent: 12 - - uid: 13463 - components: - - type: Transform - pos: 39.5,29.5 - parent: 12 - - uid: 13464 - components: - - type: Transform - pos: 39.5,30.5 - parent: 12 - - uid: 13465 - components: - - type: Transform - pos: 38.5,29.5 - parent: 12 - - uid: 13466 - components: - - type: Transform - pos: 39.5,28.5 - parent: 12 - - uid: 13467 - components: - - type: Transform - pos: 39.5,27.5 - parent: 12 - - uid: 13468 - components: - - type: Transform - pos: 37.5,29.5 - parent: 12 - - uid: 13469 - components: - - type: Transform - pos: 43.5,32.5 - parent: 12 - - uid: 13470 - components: - - type: Transform - pos: 43.5,33.5 - parent: 12 - - uid: 13471 - components: - - type: Transform - pos: 43.5,34.5 - parent: 12 - - uid: 13472 - components: - - type: Transform - pos: 43.5,35.5 - parent: 12 - - uid: 13473 - components: - - type: Transform - pos: 43.5,36.5 - parent: 12 - - uid: 13474 - components: - - type: Transform - pos: 43.5,37.5 - parent: 12 - - uid: 13475 - components: - - type: Transform - pos: 44.5,37.5 - parent: 12 - - uid: 13476 - components: - - type: Transform - pos: 45.5,37.5 - parent: 12 - - uid: 13477 - components: - - type: Transform - pos: 41.5,37.5 - parent: 12 - - uid: 13478 - components: - - type: Transform - pos: 40.5,37.5 - parent: 12 - - uid: 13479 - components: - - type: Transform - pos: 39.5,37.5 - parent: 12 - - uid: 13480 - components: - - type: Transform - pos: 38.5,37.5 - parent: 12 - - uid: 13488 - components: - - type: Transform - pos: 49.5,21.5 - parent: 12 - - uid: 13489 - components: - - type: Transform - pos: 49.5,22.5 - parent: 12 - - uid: 13490 - components: - - type: Transform - pos: 49.5,23.5 - parent: 12 - - uid: 13491 - components: - - type: Transform - pos: 49.5,24.5 - parent: 12 - - uid: 13492 - components: - - type: Transform - pos: 49.5,25.5 - parent: 12 - - uid: 13493 - components: - - type: Transform - pos: 50.5,25.5 - parent: 12 - - uid: 13494 - components: - - type: Transform - pos: 51.5,25.5 - parent: 12 - - uid: 13495 - components: - - type: Transform - pos: 52.5,25.5 - parent: 12 - - uid: 13496 - components: - - type: Transform - pos: 53.5,25.5 - parent: 12 - - uid: 13497 - components: - - type: Transform - pos: 53.5,24.5 - parent: 12 - - uid: 13498 - components: - - type: Transform - pos: 53.5,23.5 - parent: 12 - - uid: 13499 - components: - - type: Transform - pos: 51.5,24.5 - parent: 12 - - uid: 13500 - components: - - type: Transform - pos: 51.5,23.5 - parent: 12 - - uid: 13538 - components: - - type: Transform - pos: 40.5,22.5 - parent: 12 - - uid: 13539 - components: - - type: Transform - pos: 40.5,23.5 - parent: 12 - - uid: 13540 - components: - - type: Transform - pos: 40.5,24.5 - parent: 12 - - uid: 13541 - components: - - type: Transform - pos: 40.5,25.5 - parent: 12 - - uid: 13542 - components: - - type: Transform - pos: 48.5,25.5 - parent: 12 - - uid: 13543 - components: - - type: Transform - pos: 47.5,25.5 - parent: 12 - - uid: 13544 - components: - - type: Transform - pos: 46.5,25.5 - parent: 12 - - uid: 13545 - components: - - type: Transform - pos: 45.5,25.5 - parent: 12 - - uid: 13546 - components: - - type: Transform - pos: 44.5,25.5 - parent: 12 - - uid: 13547 - components: - - type: Transform - pos: 43.5,25.5 - parent: 12 - - uid: 13548 - components: - - type: Transform - pos: 42.5,25.5 - parent: 12 - - uid: 13549 - components: - - type: Transform - pos: 41.5,25.5 - parent: 12 - - uid: 13550 - components: - - type: Transform - pos: 38.5,21.5 - parent: 12 - - uid: 13551 - components: - - type: Transform - pos: 38.5,22.5 - parent: 12 - - uid: 13552 - components: - - type: Transform - pos: 38.5,23.5 - parent: 12 - - uid: 13553 - components: - - type: Transform - pos: 38.5,24.5 - parent: 12 - - uid: 13554 - components: - - type: Transform - pos: 38.5,25.5 - parent: 12 - - uid: 13559 - components: - - type: Transform - pos: 33.5,23.5 - parent: 12 - - uid: 13560 - components: - - type: Transform - pos: 34.5,23.5 - parent: 12 - - uid: 13561 - components: - - type: Transform - pos: 35.5,23.5 - parent: 12 - - uid: 13562 - components: - - type: Transform - pos: 35.5,24.5 - parent: 12 - - uid: 13563 - components: - - type: Transform - pos: 35.5,25.5 - parent: 12 - - uid: 13564 - components: - - type: Transform - pos: 35.5,26.5 - parent: 12 - - uid: 13565 - components: - - type: Transform - pos: 35.5,27.5 - parent: 12 - - uid: 13566 - components: - - type: Transform - pos: 35.5,28.5 - parent: 12 - - uid: 13567 - components: - - type: Transform - pos: 35.5,29.5 - parent: 12 - - uid: 13568 - components: - - type: Transform - pos: 35.5,30.5 - parent: 12 - - uid: 13569 - components: - - type: Transform - pos: 35.5,31.5 - parent: 12 - - uid: 13570 - components: - - type: Transform - pos: 35.5,32.5 - parent: 12 - - uid: 13571 - components: - - type: Transform - pos: 34.5,32.5 - parent: 12 - - uid: 13572 - components: - - type: Transform - pos: 33.5,31.5 - parent: 12 - - uid: 13573 - components: - - type: Transform - pos: 33.5,32.5 - parent: 12 - - uid: 13574 - components: - - type: Transform - pos: 30.5,31.5 - parent: 12 - - uid: 13575 - components: - - type: Transform - pos: 30.5,30.5 - parent: 12 - - uid: 13576 - components: - - type: Transform - pos: 30.5,32.5 - parent: 12 - - uid: 13577 - components: - - type: Transform - pos: 27.5,31.5 - parent: 12 - - uid: 13578 - components: - - type: Transform - pos: 27.5,32.5 - parent: 12 - - uid: 13579 - components: - - type: Transform - pos: 28.5,34.5 - parent: 12 - - uid: 13580 - components: - - type: Transform - pos: 29.5,34.5 - parent: 12 - - uid: 13683 - components: - - type: Transform - pos: 22.5,25.5 - parent: 12 - - uid: 13684 - components: - - type: Transform - pos: 22.5,26.5 - parent: 12 - - uid: 13685 - components: - - type: Transform - pos: 22.5,27.5 - parent: 12 - - uid: 13686 - components: - - type: Transform - pos: 23.5,27.5 - parent: 12 - - uid: 13687 - components: - - type: Transform - pos: 23.5,28.5 - parent: 12 - - uid: 13688 - components: - - type: Transform - pos: 23.5,29.5 - parent: 12 - - uid: 13689 - components: - - type: Transform - pos: 23.5,30.5 - parent: 12 - - uid: 13690 - components: - - type: Transform - pos: 22.5,30.5 - parent: 12 - - uid: 13691 - components: - - type: Transform - pos: 21.5,30.5 - parent: 12 - - uid: 13692 - components: - - type: Transform - pos: 20.5,30.5 - parent: 12 - - uid: 13693 - components: - - type: Transform - pos: 19.5,30.5 - parent: 12 - - uid: 13694 - components: - - type: Transform - pos: 19.5,29.5 - parent: 12 - - uid: 13695 - components: - - type: Transform - pos: 19.5,28.5 - parent: 12 - - uid: 13696 - components: - - type: Transform - pos: 19.5,27.5 - parent: 12 - - uid: 13697 - components: - - type: Transform - pos: 20.5,27.5 - parent: 12 - - uid: 13698 - components: - - type: Transform - pos: 21.5,27.5 - parent: 12 - - uid: 13699 - components: - - type: Transform - pos: 21.5,31.5 - parent: 12 - - uid: 13700 - components: - - type: Transform - pos: 21.5,32.5 - parent: 12 - - uid: 13701 - components: - - type: Transform - pos: 21.5,33.5 - parent: 12 - - uid: 13702 - components: - - type: Transform - pos: 21.5,34.5 - parent: 12 - - uid: 13703 - components: - - type: Transform - pos: 21.5,35.5 - parent: 12 - - uid: 13704 - components: - - type: Transform - pos: 21.5,36.5 - parent: 12 - - uid: 13705 - components: - - type: Transform - pos: 21.5,37.5 - parent: 12 - - uid: 13706 - components: - - type: Transform - pos: 21.5,38.5 - parent: 12 - - uid: 13713 - components: - - type: Transform - pos: 63.5,-23.5 - parent: 12 - - uid: 13877 - components: - - type: Transform - pos: 27.5,38.5 - parent: 12 - - uid: 13878 - components: - - type: Transform - pos: 28.5,38.5 - parent: 12 - - uid: 13879 - components: - - type: Transform - pos: 29.5,38.5 - parent: 12 - - uid: 13880 - components: - - type: Transform - pos: 30.5,38.5 - parent: 12 - - uid: 13881 - components: - - type: Transform - pos: 30.5,37.5 - parent: 12 - - uid: 13882 - components: - - type: Transform - pos: 30.5,36.5 - parent: 12 - - uid: 13883 - components: - - type: Transform - pos: 29.5,36.5 - parent: 12 - - uid: 13884 - components: - - type: Transform - pos: 28.5,36.5 - parent: 12 - - uid: 13885 - components: - - type: Transform - pos: 27.5,36.5 - parent: 12 - - uid: 13886 - components: - - type: Transform - pos: 26.5,36.5 - parent: 12 - - uid: 13887 - components: - - type: Transform - pos: 30.5,39.5 - parent: 12 - - uid: 13888 - components: - - type: Transform - pos: 30.5,40.5 - parent: 12 - - uid: 13889 - components: - - type: Transform - pos: 29.5,40.5 - parent: 12 - - uid: 13890 - components: - - type: Transform - pos: 28.5,40.5 - parent: 12 - - uid: 13891 - components: - - type: Transform - pos: 31.5,40.5 - parent: 12 - - uid: 13892 - components: - - type: Transform - pos: 30.5,41.5 - parent: 12 - - uid: 13893 - components: - - type: Transform - pos: 30.5,42.5 - parent: 12 - - uid: 13894 - components: - - type: Transform - pos: 31.5,42.5 - parent: 12 - - uid: 13895 - components: - - type: Transform - pos: 32.5,42.5 - parent: 12 - - uid: 13896 - components: - - type: Transform - pos: 33.5,42.5 - parent: 12 - - uid: 13897 - components: - - type: Transform - pos: 34.5,42.5 - parent: 12 - - uid: 13898 - components: - - type: Transform - pos: 35.5,42.5 - parent: 12 - - uid: 13899 - components: - - type: Transform - pos: 36.5,42.5 - parent: 12 - - uid: 13900 - components: - - type: Transform - pos: 37.5,42.5 - parent: 12 - - uid: 13901 - components: - - type: Transform - pos: 38.5,42.5 - parent: 12 - - uid: 13902 - components: - - type: Transform - pos: 39.5,42.5 - parent: 12 - - uid: 13903 - components: - - type: Transform - pos: 40.5,42.5 - parent: 12 - - uid: 13904 - components: - - type: Transform - pos: 41.5,42.5 - parent: 12 - - uid: 13905 - components: - - type: Transform - pos: 42.5,42.5 - parent: 12 - - uid: 13906 - components: - - type: Transform - pos: 43.5,42.5 - parent: 12 - - uid: 13907 - components: - - type: Transform - pos: 34.5,34.5 - parent: 12 - - uid: 13908 - components: - - type: Transform - pos: 34.5,35.5 - parent: 12 - - uid: 13909 - components: - - type: Transform - pos: 34.5,36.5 - parent: 12 - - uid: 13910 - components: - - type: Transform - pos: 34.5,37.5 - parent: 12 - - uid: 13911 - components: - - type: Transform - pos: 34.5,38.5 - parent: 12 - - uid: 13912 - components: - - type: Transform - pos: 34.5,39.5 - parent: 12 - - uid: 13913 - components: - - type: Transform - pos: 34.5,40.5 - parent: 12 - - uid: 13914 - components: - - type: Transform - pos: 34.5,41.5 - parent: 12 - - uid: 13915 - components: - - type: Transform - pos: 30.5,43.5 - parent: 12 - - uid: 14188 - components: - - type: Transform - pos: -28.5,11.5 - parent: 12 - - uid: 14189 - components: - - type: Transform - pos: 18.5,67.5 - parent: 12 - - uid: 14190 - components: - - type: Transform - pos: -29.5,11.5 - parent: 12 - - uid: 14192 - components: - - type: Transform - pos: -30.5,11.5 - parent: 12 - - uid: 14529 - components: - - type: Transform - pos: -10.5,-19.5 - parent: 12 - - uid: 14654 - components: - - type: Transform - pos: 24.5,80.5 - parent: 12 - - uid: 14676 - components: - - type: Transform - pos: 24.5,71.5 - parent: 12 - - uid: 14679 - components: - - type: Transform - pos: 27.5,79.5 - parent: 12 - - uid: 14696 - components: - - type: Transform - pos: 24.5,81.5 - parent: 12 - - uid: 14720 - components: - - type: Transform - pos: 27.5,78.5 - parent: 12 - - uid: 14745 - components: - - type: Transform - pos: 24.5,72.5 - parent: 12 - - uid: 14746 - components: - - type: Transform - pos: 24.5,75.5 - parent: 12 - - uid: 14747 - components: - - type: Transform - pos: 25.5,70.5 - parent: 12 - - uid: 14748 - components: - - type: Transform - pos: 24.5,78.5 - parent: 12 - - uid: 14749 - components: - - type: Transform - pos: 24.5,73.5 - parent: 12 - - uid: 14764 - components: - - type: Transform - pos: 24.5,84.5 - parent: 12 - - uid: 14765 - components: - - type: Transform - pos: 27.5,82.5 - parent: 12 - - uid: 14766 - components: - - type: Transform - pos: 24.5,85.5 - parent: 12 - - uid: 14767 - components: - - type: Transform - pos: 25.5,85.5 - parent: 12 - - uid: 14768 - components: - - type: Transform - pos: 26.5,80.5 - parent: 12 - - uid: 14769 - components: - - type: Transform - pos: 24.5,70.5 - parent: 12 - - uid: 14770 - components: - - type: Transform - pos: 24.5,74.5 - parent: 12 - - uid: 14771 - components: - - type: Transform - pos: 24.5,76.5 - parent: 12 - - uid: 14772 - components: - - type: Transform - pos: 24.5,77.5 - parent: 12 - - uid: 14773 - components: - - type: Transform - pos: 24.5,79.5 - parent: 12 - - uid: 14788 - components: - - type: Transform - pos: 24.5,82.5 - parent: 12 - - uid: 14789 - components: - - type: Transform - pos: 24.5,83.5 - parent: 12 - - uid: 14790 - components: - - type: Transform - pos: 27.5,81.5 - parent: 12 - - uid: 14791 - components: - - type: Transform - pos: 25.5,80.5 - parent: 12 - - uid: 14792 - components: - - type: Transform - pos: 27.5,80.5 - parent: 12 - - uid: 14816 - components: - - type: Transform - pos: 26.5,70.5 - parent: 12 - - uid: 14825 - components: - - type: Transform - pos: 27.5,77.5 - parent: 12 - - uid: 14826 - components: - - type: Transform - pos: 24.5,73.5 - parent: 12 - - uid: 14827 - components: - - type: Transform - pos: 25.5,73.5 - parent: 12 - - uid: 14828 - components: - - type: Transform - pos: 26.5,73.5 - parent: 12 - - uid: 14829 - components: - - type: Transform - pos: 22.5,68.5 - parent: 12 - - uid: 14830 - components: - - type: Transform - pos: 26.5,72.5 - parent: 12 - - uid: 14831 - components: - - type: Transform - pos: 26.5,71.5 - parent: 12 - - uid: 14832 - components: - - type: Transform - pos: 26.5,74.5 - parent: 12 - - uid: 14833 - components: - - type: Transform - pos: 26.5,75.5 - parent: 12 - - uid: 14834 - components: - - type: Transform - pos: 23.5,70.5 - parent: 12 - - uid: 14835 - components: - - type: Transform - pos: 23.5,69.5 - parent: 12 - - uid: 14836 - components: - - type: Transform - pos: 23.5,68.5 - parent: 12 - - uid: 14837 - components: - - type: Transform - pos: 21.5,68.5 - parent: 12 - - uid: 14838 - components: - - type: Transform - pos: 20.5,68.5 - parent: 12 - - uid: 14839 - components: - - type: Transform - pos: 19.5,68.5 - parent: 12 - - uid: 14840 - components: - - type: Transform - pos: 18.5,68.5 - parent: 12 - - uid: 14841 - components: - - type: Transform - pos: 17.5,68.5 - parent: 12 - - uid: 14842 - components: - - type: Transform - pos: 16.5,68.5 - parent: 12 - - uid: 14843 - components: - - type: Transform - pos: 15.5,68.5 - parent: 12 - - uid: 14844 - components: - - type: Transform - pos: 14.5,68.5 - parent: 12 - - uid: 14845 - components: - - type: Transform - pos: 13.5,68.5 - parent: 12 - - uid: 14846 - components: - - type: Transform - pos: 12.5,68.5 - parent: 12 - - uid: 14847 - components: - - type: Transform - pos: 12.5,69.5 - parent: 12 - - uid: 14848 - components: - - type: Transform - pos: 12.5,70.5 - parent: 12 - - uid: 14849 - components: - - type: Transform - pos: 12.5,71.5 - parent: 12 - - uid: 14850 - components: - - type: Transform - pos: 12.5,72.5 - parent: 12 - - uid: 14851 - components: - - type: Transform - pos: 12.5,73.5 - parent: 12 - - uid: 14852 - components: - - type: Transform - pos: 12.5,74.5 - parent: 12 - - uid: 14853 - components: - - type: Transform - pos: 12.5,75.5 - parent: 12 - - uid: 14854 - components: - - type: Transform - pos: 12.5,76.5 - parent: 12 - - uid: 14855 - components: - - type: Transform - pos: 12.5,77.5 - parent: 12 - - uid: 14856 - components: - - type: Transform - pos: 12.5,78.5 - parent: 12 - - uid: 14857 - components: - - type: Transform - pos: 12.5,79.5 - parent: 12 - - uid: 14858 - components: - - type: Transform - pos: 12.5,80.5 - parent: 12 - - uid: 14859 - components: - - type: Transform - pos: 12.5,81.5 - parent: 12 - - uid: 14860 - components: - - type: Transform - pos: 12.5,82.5 - parent: 12 - - uid: 14861 - components: - - type: Transform - pos: 12.5,83.5 - parent: 12 - - uid: 14862 - components: - - type: Transform - pos: 12.5,84.5 - parent: 12 - - uid: 14863 - components: - - type: Transform - pos: 12.5,85.5 - parent: 12 - - uid: 14864 - components: - - type: Transform - pos: 11.5,85.5 - parent: 12 - - uid: 14865 - components: - - type: Transform - pos: 10.5,84.5 - parent: 12 - - uid: 14866 - components: - - type: Transform - pos: 9.5,84.5 - parent: 12 - - uid: 14867 - components: - - type: Transform - pos: 9.5,85.5 - parent: 12 - - uid: 14868 - components: - - type: Transform - pos: 10.5,86.5 - parent: 12 - - uid: 14869 - components: - - type: Transform - pos: 9.5,86.5 - parent: 12 - - uid: 14870 - components: - - type: Transform - pos: 11.5,86.5 - parent: 12 - - uid: 14871 - components: - - type: Transform - pos: 10.5,87.5 - parent: 12 - - uid: 14872 - components: - - type: Transform - pos: 10.5,88.5 - parent: 12 - - uid: 14873 - components: - - type: Transform - pos: 10.5,89.5 - parent: 12 - - uid: 14874 - components: - - type: Transform - pos: 10.5,90.5 - parent: 12 - - uid: 14875 - components: - - type: Transform - pos: 11.5,80.5 - parent: 12 - - uid: 14876 - components: - - type: Transform - pos: 26.5,84.5 - parent: 12 - - uid: 14877 - components: - - type: Transform - pos: 27.5,84.5 - parent: 12 - - uid: 14878 - components: - - type: Transform - pos: 27.5,85.5 - parent: 12 - - uid: 14879 - components: - - type: Transform - pos: 27.5,86.5 - parent: 12 - - uid: 14880 - components: - - type: Transform - pos: 26.5,86.5 - parent: 12 - - uid: 14881 - components: - - type: Transform - pos: 25.5,86.5 - parent: 12 - - uid: 14882 - components: - - type: Transform - pos: 26.5,87.5 - parent: 12 - - uid: 14883 - components: - - type: Transform - pos: 26.5,88.5 - parent: 12 - - uid: 14884 - components: - - type: Transform - pos: 26.5,89.5 - parent: 12 - - uid: 14885 - components: - - type: Transform - pos: 26.5,90.5 - parent: 12 - - uid: 14886 - components: - - type: Transform - pos: 10.5,80.5 - parent: 12 - - uid: 14887 - components: - - type: Transform - pos: 9.5,80.5 - parent: 12 - - uid: 14888 - components: - - type: Transform - pos: 9.5,82.5 - parent: 12 - - uid: 14889 - components: - - type: Transform - pos: 9.5,81.5 - parent: 12 - - uid: 14890 - components: - - type: Transform - pos: 9.5,79.5 - parent: 12 - - uid: 14891 - components: - - type: Transform - pos: 9.5,78.5 - parent: 12 - - uid: 14892 - components: - - type: Transform - pos: 9.5,77.5 - parent: 12 - - uid: 14893 - components: - - type: Transform - pos: 11.5,73.5 - parent: 12 - - uid: 14894 - components: - - type: Transform - pos: 10.5,71.5 - parent: 12 - - uid: 14895 - components: - - type: Transform - pos: 10.5,72.5 - parent: 12 - - uid: 14896 - components: - - type: Transform - pos: 10.5,73.5 - parent: 12 - - uid: 14897 - components: - - type: Transform - pos: 10.5,74.5 - parent: 12 - - uid: 14898 - components: - - type: Transform - pos: 10.5,75.5 - parent: 12 - - uid: 14922 - components: - - type: Transform - pos: 42.5,62.5 - parent: 12 - - uid: 14924 - components: - - type: Transform - pos: 42.5,63.5 - parent: 12 - - uid: 14926 - components: - - type: Transform - pos: 44.5,63.5 - parent: 12 - - uid: 14927 - components: - - type: Transform - pos: 45.5,63.5 - parent: 12 - - uid: 14928 - components: - - type: Transform - pos: 46.5,63.5 - parent: 12 - - uid: 14929 - components: - - type: Transform - pos: 44.5,62.5 - parent: 12 - - uid: 14930 - components: - - type: Transform - pos: 44.5,61.5 - parent: 12 - - uid: 14932 - components: - - type: Transform - pos: 41.5,62.5 - parent: 12 - - uid: 14933 - components: - - type: Transform - pos: 40.5,62.5 - parent: 12 - - uid: 14945 - components: - - type: Transform - pos: 42.5,64.5 - parent: 12 - - uid: 15131 - components: - - type: Transform - pos: 44.5,-5.5 - parent: 12 - - uid: 15299 - components: - - type: Transform - pos: 26.5,59.5 - parent: 12 - - uid: 15300 - components: - - type: Transform - pos: 26.5,58.5 - parent: 12 - - uid: 15301 - components: - - type: Transform - pos: 26.5,57.5 - parent: 12 - - uid: 15302 - components: - - type: Transform - pos: 26.5,56.5 - parent: 12 - - uid: 15303 - components: - - type: Transform - pos: 27.5,56.5 - parent: 12 - - uid: 15304 - components: - - type: Transform - pos: 28.5,56.5 - parent: 12 - - uid: 15305 - components: - - type: Transform - pos: 29.5,56.5 - parent: 12 - - uid: 15306 - components: - - type: Transform - pos: 29.5,55.5 - parent: 12 - - uid: 15307 - components: - - type: Transform - pos: 29.5,54.5 - parent: 12 - - uid: 15308 - components: - - type: Transform - pos: 30.5,54.5 - parent: 12 - - uid: 15309 - components: - - type: Transform - pos: 31.5,54.5 - parent: 12 - - uid: 15310 - components: - - type: Transform - pos: 31.5,55.5 - parent: 12 - - uid: 15311 - components: - - type: Transform - pos: 31.5,56.5 - parent: 12 - - uid: 15312 - components: - - type: Transform - pos: 31.5,57.5 - parent: 12 - - uid: 15313 - components: - - type: Transform - pos: 31.5,58.5 - parent: 12 - - uid: 15314 - components: - - type: Transform - pos: 30.5,58.5 - parent: 12 - - uid: 15315 - components: - - type: Transform - pos: 29.5,58.5 - parent: 12 - - uid: 15316 - components: - - type: Transform - pos: 29.5,59.5 - parent: 12 - - uid: 15317 - components: - - type: Transform - pos: 28.5,59.5 - parent: 12 - - uid: 15318 - components: - - type: Transform - pos: 27.5,59.5 - parent: 12 - - uid: 15319 - components: - - type: Transform - pos: 32.5,54.5 - parent: 12 - - uid: 15320 - components: - - type: Transform - pos: 33.5,54.5 - parent: 12 - - uid: 15321 - components: - - type: Transform - pos: 34.5,54.5 - parent: 12 - - uid: 15322 - components: - - type: Transform - pos: 35.5,54.5 - parent: 12 - - uid: 15323 - components: - - type: Transform - pos: 35.5,55.5 - parent: 12 - - uid: 15324 - components: - - type: Transform - pos: 35.5,56.5 - parent: 12 - - uid: 15325 - components: - - type: Transform - pos: 35.5,57.5 - parent: 12 - - uid: 15326 - components: - - type: Transform - pos: 35.5,58.5 - parent: 12 - - uid: 15327 - components: - - type: Transform - pos: 36.5,56.5 - parent: 12 - - uid: 15328 - components: - - type: Transform - pos: 37.5,56.5 - parent: 12 - - uid: 15329 - components: - - type: Transform - pos: 38.5,56.5 - parent: 12 - - uid: 15330 - components: - - type: Transform - pos: 39.5,56.5 - parent: 12 - - uid: 15331 - components: - - type: Transform - pos: 40.5,56.5 - parent: 12 - - uid: 15332 - components: - - type: Transform - pos: 32.5,48.5 - parent: 12 - - uid: 15333 - components: - - type: Transform - pos: 32.5,49.5 - parent: 12 - - uid: 15334 - components: - - type: Transform - pos: 32.5,50.5 - parent: 12 - - uid: 15335 - components: - - type: Transform - pos: 31.5,50.5 - parent: 12 - - uid: 15336 - components: - - type: Transform - pos: 30.5,50.5 - parent: 12 - - uid: 15337 - components: - - type: Transform - pos: 29.5,50.5 - parent: 12 - - uid: 15338 - components: - - type: Transform - pos: 33.5,50.5 - parent: 12 - - uid: 15339 - components: - - type: Transform - pos: 34.5,50.5 - parent: 12 - - uid: 15340 - components: - - type: Transform - pos: 35.5,50.5 - parent: 12 - - uid: 15341 - components: - - type: Transform - pos: 36.5,50.5 - parent: 12 - - uid: 15342 - components: - - type: Transform - pos: 37.5,50.5 - parent: 12 - - uid: 15343 - components: - - type: Transform - pos: 37.5,49.5 - parent: 12 - - uid: 15344 - components: - - type: Transform - pos: 38.5,49.5 - parent: 12 - - uid: 15345 - components: - - type: Transform - pos: 39.5,49.5 - parent: 12 - - uid: 15346 - components: - - type: Transform - pos: 40.5,49.5 - parent: 12 - - uid: 15347 - components: - - type: Transform - pos: 32.5,48.5 - parent: 12 - - uid: 15348 - components: - - type: Transform - pos: 32.5,47.5 - parent: 12 - - uid: 15349 - components: - - type: Transform - pos: 32.5,46.5 - parent: 12 - - uid: 15350 - components: - - type: Transform - pos: 31.5,46.5 - parent: 12 - - uid: 15351 - components: - - type: Transform - pos: 30.5,46.5 - parent: 12 - - uid: 15352 - components: - - type: Transform - pos: 33.5,46.5 - parent: 12 - - uid: 15353 - components: - - type: Transform - pos: 34.5,46.5 - parent: 12 - - uid: 15354 - components: - - type: Transform - pos: 35.5,46.5 - parent: 12 - - uid: 15436 - components: - - type: Transform - pos: 40.5,48.5 - parent: 12 - - uid: 15437 - components: - - type: Transform - pos: 40.5,46.5 - parent: 12 - - uid: 15438 - components: - - type: Transform - pos: 40.5,47.5 - parent: 12 - - uid: 15439 - components: - - type: Transform - pos: 38.5,46.5 - parent: 12 - - uid: 15440 - components: - - type: Transform - pos: 39.5,46.5 - parent: 12 - - uid: 15674 - components: - - type: Transform - pos: -5.5,20.5 - parent: 12 - - uid: 15675 - components: - - type: Transform - pos: -6.5,20.5 - parent: 12 - - uid: 15810 - components: - - type: Transform - pos: -27.5,16.5 - parent: 12 - - uid: 15956 - components: - - type: Transform - pos: -42.5,4.5 - parent: 12 - - uid: 15957 - components: - - type: Transform - pos: -42.5,3.5 - parent: 12 - - uid: 15958 - components: - - type: Transform - pos: -42.5,2.5 - parent: 12 - - uid: 15959 - components: - - type: Transform - pos: -41.5,2.5 - parent: 12 - - uid: 15960 - components: - - type: Transform - pos: -40.5,2.5 - parent: 12 - - uid: 15961 - components: - - type: Transform - pos: -39.5,2.5 - parent: 12 - - uid: 15962 - components: - - type: Transform - pos: -38.5,2.5 - parent: 12 - - uid: 15963 - components: - - type: Transform - pos: -37.5,2.5 - parent: 12 - - uid: 15964 - components: - - type: Transform - pos: -36.5,2.5 - parent: 12 - - uid: 15965 - components: - - type: Transform - pos: -35.5,2.5 - parent: 12 - - uid: 15966 - components: - - type: Transform - pos: -34.5,2.5 - parent: 12 - - uid: 15967 - components: - - type: Transform - pos: -33.5,2.5 - parent: 12 - - uid: 15968 - components: - - type: Transform - pos: -32.5,2.5 - parent: 12 - - uid: 15969 - components: - - type: Transform - pos: -31.5,2.5 - parent: 12 - - uid: 15970 - components: - - type: Transform - pos: -36.5,3.5 - parent: 12 - - uid: 15971 - components: - - type: Transform - pos: -36.5,4.5 - parent: 12 - - uid: 15972 - components: - - type: Transform - pos: -30.5,2.5 - parent: 12 - - uid: 15973 - components: - - type: Transform - pos: -29.5,2.5 - parent: 12 - - uid: 15974 - components: - - type: Transform - pos: -28.5,2.5 - parent: 12 - - uid: 15975 - components: - - type: Transform - pos: -27.5,2.5 - parent: 12 - - uid: 15976 - components: - - type: Transform - pos: -26.5,2.5 - parent: 12 - - uid: 15977 - components: - - type: Transform - pos: -26.5,1.5 - parent: 12 - - uid: 15978 - components: - - type: Transform - pos: -24.5,2.5 - parent: 12 - - uid: 15979 - components: - - type: Transform - pos: -23.5,2.5 - parent: 12 - - uid: 15980 - components: - - type: Transform - pos: -22.5,2.5 - parent: 12 - - uid: 15981 - components: - - type: Transform - pos: -21.5,2.5 - parent: 12 - - uid: 15982 - components: - - type: Transform - pos: -20.5,2.5 - parent: 12 - - uid: 15983 - components: - - type: Transform - pos: -20.5,1.5 - parent: 12 - - uid: 15984 - components: - - type: Transform - pos: -20.5,0.5 - parent: 12 - - uid: 15985 - components: - - type: Transform - pos: -21.5,0.5 - parent: 12 - - uid: 15986 - components: - - type: Transform - pos: -22.5,0.5 - parent: 12 - - uid: 15987 - components: - - type: Transform - pos: -23.5,0.5 - parent: 12 - - uid: 15988 - components: - - type: Transform - pos: -24.5,0.5 - parent: 12 - - uid: 15989 - components: - - type: Transform - pos: -20.5,3.5 - parent: 12 - - uid: 15990 - components: - - type: Transform - pos: -20.5,4.5 - parent: 12 - - uid: 15991 - components: - - type: Transform - pos: -20.5,5.5 - parent: 12 - - uid: 15992 - components: - - type: Transform - pos: -22.5,5.5 - parent: 12 - - uid: 15993 - components: - - type: Transform - pos: -21.5,5.5 - parent: 12 - - uid: 15994 - components: - - type: Transform - pos: -19.5,5.5 - parent: 12 - - uid: 15995 - components: - - type: Transform - pos: -26.5,3.5 - parent: 12 - - uid: 15996 - components: - - type: Transform - pos: -26.5,4.5 - parent: 12 - - uid: 15997 - components: - - type: Transform - pos: -26.5,5.5 - parent: 12 - - uid: 15998 - components: - - type: Transform - pos: -26.5,6.5 - parent: 12 - - uid: 16002 - components: - - type: Transform - pos: -26.5,10.5 - parent: 12 - - uid: 16003 - components: - - type: Transform - pos: -26.5,11.5 - parent: 12 - - uid: 16004 - components: - - type: Transform - pos: -26.5,12.5 - parent: 12 - - uid: 16005 - components: - - type: Transform - pos: -26.5,13.5 - parent: 12 - - uid: 16006 - components: - - type: Transform - pos: -26.5,14.5 - parent: 12 - - uid: 16007 - components: - - type: Transform - pos: -26.5,15.5 - parent: 12 - - uid: 16008 - components: - - type: Transform - pos: -26.5,16.5 - parent: 12 - - uid: 16009 - components: - - type: Transform - pos: -26.5,17.5 - parent: 12 - - uid: 16010 - components: - - type: Transform - pos: -28.5,16.5 - parent: 12 - - uid: 16011 - components: - - type: Transform - pos: -29.5,16.5 - parent: 12 - - uid: 16012 - components: - - type: Transform - pos: -30.5,16.5 - parent: 12 - - uid: 16013 - components: - - type: Transform - pos: -31.5,16.5 - parent: 12 - - uid: 16014 - components: - - type: Transform - pos: -32.5,16.5 - parent: 12 - - uid: 16015 - components: - - type: Transform - pos: -33.5,16.5 - parent: 12 - - uid: 16016 - components: - - type: Transform - pos: -34.5,16.5 - parent: 12 - - uid: 16017 - components: - - type: Transform - pos: -35.5,16.5 - parent: 12 - - uid: 16018 - components: - - type: Transform - pos: -36.5,16.5 - parent: 12 - - uid: 16019 - components: - - type: Transform - pos: -37.5,16.5 - parent: 12 - - uid: 16020 - components: - - type: Transform - pos: -38.5,16.5 - parent: 12 - - uid: 16021 - components: - - type: Transform - pos: -39.5,16.5 - parent: 12 - - uid: 16022 - components: - - type: Transform - pos: -40.5,16.5 - parent: 12 - - uid: 16023 - components: - - type: Transform - pos: -41.5,16.5 - parent: 12 - - uid: 16024 - components: - - type: Transform - pos: -42.5,16.5 - parent: 12 - - uid: 16025 - components: - - type: Transform - pos: -42.5,15.5 - parent: 12 - - uid: 16026 - components: - - type: Transform - pos: -42.5,14.5 - parent: 12 - - uid: 16027 - components: - - type: Transform - pos: -36.5,14.5 - parent: 12 - - uid: 16028 - components: - - type: Transform - pos: -36.5,15.5 - parent: 12 - - uid: 16029 - components: - - type: Transform - pos: -25.5,9.5 - parent: 12 - - uid: 16030 - components: - - type: Transform - pos: -24.5,9.5 - parent: 12 - - uid: 16032 - components: - - type: Transform - pos: -22.5,9.5 - parent: 12 - - uid: 16033 - components: - - type: Transform - pos: -21.5,9.5 - parent: 12 - - uid: 16034 - components: - - type: Transform - pos: -20.5,9.5 - parent: 12 - - uid: 16035 - components: - - type: Transform - pos: -19.5,9.5 - parent: 12 - - uid: 16036 - components: - - type: Transform - pos: -20.5,6.5 - parent: 12 - - uid: 16037 - components: - - type: Transform - pos: -20.5,7.5 - parent: 12 - - uid: 16038 - components: - - type: Transform - pos: -20.5,8.5 - parent: 12 - - uid: 16039 - components: - - type: Transform - pos: -20.5,10.5 - parent: 12 - - uid: 16040 - components: - - type: Transform - pos: -20.5,11.5 - parent: 12 - - uid: 16041 - components: - - type: Transform - pos: -20.5,12.5 - parent: 12 - - uid: 16042 - components: - - type: Transform - pos: -20.5,13.5 - parent: 12 - - uid: 16043 - components: - - type: Transform - pos: -19.5,13.5 - parent: 12 - - uid: 16044 - components: - - type: Transform - pos: -21.5,13.5 - parent: 12 - - uid: 16045 - components: - - type: Transform - pos: -22.5,13.5 - parent: 12 - - uid: 16046 - components: - - type: Transform - pos: -23.5,13.5 - parent: 12 - - uid: 16047 - components: - - type: Transform - pos: -23.5,5.5 - parent: 12 - - uid: 16048 - components: - - type: Transform - pos: -18.5,9.5 - parent: 12 - - uid: 16049 - components: - - type: Transform - pos: -17.5,9.5 - parent: 12 - - uid: 16050 - components: - - type: Transform - pos: -16.5,9.5 - parent: 12 - - uid: 16051 - components: - - type: Transform - pos: -16.5,10.5 - parent: 12 - - uid: 16052 - components: - - type: Transform - pos: -16.5,11.5 - parent: 12 - - uid: 16053 - components: - - type: Transform - pos: -16.5,12.5 - parent: 12 - - uid: 16054 - components: - - type: Transform - pos: -16.5,8.5 - parent: 12 - - uid: 16055 - components: - - type: Transform - pos: -16.5,7.5 - parent: 12 - - uid: 16056 - components: - - type: Transform - pos: -16.5,6.5 - parent: 12 - - uid: 16057 - components: - - type: Transform - pos: -16.5,5.5 - parent: 12 - - uid: 16058 - components: - - type: Transform - pos: -13.5,6.5 - parent: 12 - - uid: 16059 - components: - - type: Transform - pos: -12.5,6.5 - parent: 12 - - uid: 16060 - components: - - type: Transform - pos: -11.5,6.5 - parent: 12 - - uid: 16061 - components: - - type: Transform - pos: -10.5,6.5 - parent: 12 - - uid: 16062 - components: - - type: Transform - pos: -9.5,6.5 - parent: 12 - - uid: 16063 - components: - - type: Transform - pos: -8.5,6.5 - parent: 12 - - uid: 16064 - components: - - type: Transform - pos: -7.5,6.5 - parent: 12 - - uid: 16065 - components: - - type: Transform - pos: -10.5,5.5 - parent: 12 - - uid: 16067 - components: - - type: Transform - pos: -10.5,7.5 - parent: 12 - - uid: 16068 - components: - - type: Transform - pos: -10.5,8.5 - parent: 12 - - uid: 16069 - components: - - type: Transform - pos: -10.5,9.5 - parent: 12 - - uid: 16070 - components: - - type: Transform - pos: -10.5,10.5 - parent: 12 - - uid: 16071 - components: - - type: Transform - pos: -10.5,11.5 - parent: 12 - - uid: 16072 - components: - - type: Transform - pos: -10.5,12.5 - parent: 12 - - uid: 16073 - components: - - type: Transform - pos: -10.5,13.5 - parent: 12 - - uid: 16074 - components: - - type: Transform - pos: -10.5,14.5 - parent: 12 - - uid: 16075 - components: - - type: Transform - pos: -11.5,12.5 - parent: 12 - - uid: 16076 - components: - - type: Transform - pos: -12.5,12.5 - parent: 12 - - uid: 16077 - components: - - type: Transform - pos: -13.5,12.5 - parent: 12 - - uid: 16078 - components: - - type: Transform - pos: -9.5,12.5 - parent: 12 - - uid: 16079 - components: - - type: Transform - pos: -8.5,12.5 - parent: 12 - - uid: 16080 - components: - - type: Transform - pos: -13.5,8.5 - parent: 12 - - uid: 16081 - components: - - type: Transform - pos: -13.5,9.5 - parent: 12 - - uid: 16082 - components: - - type: Transform - pos: -13.5,10.5 - parent: 12 - - uid: 16083 - components: - - type: Transform - pos: -12.5,9.5 - parent: 12 - - uid: 16084 - components: - - type: Transform - pos: -11.5,9.5 - parent: 12 - - uid: 16085 - components: - - type: Transform - pos: -9.5,9.5 - parent: 12 - - uid: 16086 - components: - - type: Transform - pos: -8.5,9.5 - parent: 12 - - uid: 16087 - components: - - type: Transform - pos: -7.5,9.5 - parent: 12 - - uid: 16088 - components: - - type: Transform - pos: -6.5,9.5 - parent: 12 - - uid: 16090 - components: - - type: Transform - pos: -18.5,13.5 - parent: 12 - - uid: 16091 - components: - - type: Transform - pos: -17.5,13.5 - parent: 12 - - uid: 16092 - components: - - type: Transform - pos: -16.5,13.5 - parent: 12 - - uid: 16093 - components: - - type: Transform - pos: -25.5,16.5 - parent: 12 - - uid: 16094 - components: - - type: Transform - pos: -28.5,17.5 - parent: 12 - - uid: 16153 - components: - - type: Transform - pos: -6.5,19.5 - parent: 12 - - uid: 16154 - components: - - type: Transform - pos: -6.5,18.5 - parent: 12 - - uid: 16155 - components: - - type: Transform - pos: -6.5,17.5 - parent: 12 - - uid: 16156 - components: - - type: Transform - pos: -6.5,16.5 - parent: 12 - - uid: 16157 - components: - - type: Transform - pos: -5.5,17.5 - parent: 12 - - uid: 16158 - components: - - type: Transform - pos: -4.5,17.5 - parent: 12 - - uid: 16159 - components: - - type: Transform - pos: -4.5,16.5 - parent: 12 - - uid: 16160 - components: - - type: Transform - pos: -3.5,16.5 - parent: 12 - - uid: 16161 - components: - - type: Transform - pos: -2.5,16.5 - parent: 12 - - uid: 16162 - components: - - type: Transform - pos: -1.5,16.5 - parent: 12 - - uid: 16163 - components: - - type: Transform - pos: -6.5,15.5 - parent: 12 - - uid: 16164 - components: - - type: Transform - pos: -5.5,15.5 - parent: 12 - - uid: 16165 - components: - - type: Transform - pos: -4.5,15.5 - parent: 12 - - uid: 16166 - components: - - type: Transform - pos: -5.5,14.5 - parent: 12 - - uid: 16167 - components: - - type: Transform - pos: -5.5,13.5 - parent: 12 - - uid: 16168 - components: - - type: Transform - pos: -5.5,12.5 - parent: 12 - - uid: 16169 - components: - - type: Transform - pos: -5.5,11.5 - parent: 12 - - uid: 16170 - components: - - type: Transform - pos: -4.5,11.5 - parent: 12 - - uid: 16171 - components: - - type: Transform - pos: -4.5,10.5 - parent: 12 - - uid: 16172 - components: - - type: Transform - pos: -3.5,10.5 - parent: 12 - - uid: 16173 - components: - - type: Transform - pos: -3.5,9.5 - parent: 12 - - uid: 16174 - components: - - type: Transform - pos: -2.5,9.5 - parent: 12 - - uid: 16175 - components: - - type: Transform - pos: -1.5,9.5 - parent: 12 - - uid: 16176 - components: - - type: Transform - pos: -0.5,9.5 - parent: 12 - - uid: 16177 - components: - - type: Transform - pos: 0.5,9.5 - parent: 12 - - uid: 16178 - components: - - type: Transform - pos: -0.5,16.5 - parent: 12 - - uid: 16179 - components: - - type: Transform - pos: 0.5,16.5 - parent: 12 - - uid: 16181 - components: - - type: Transform - pos: -7.5,16.5 - parent: 12 - - uid: 16182 - components: - - type: Transform - pos: -8.5,16.5 - parent: 12 - - uid: 16183 - components: - - type: Transform - pos: -9.5,16.5 - parent: 12 - - uid: 16184 - components: - - type: Transform - pos: -10.5,16.5 - parent: 12 - - uid: 16185 - components: - - type: Transform - pos: -11.5,16.5 - parent: 12 - - uid: 16186 - components: - - type: Transform - pos: -12.5,16.5 - parent: 12 - - uid: 16187 - components: - - type: Transform - pos: -6.5,21.5 - parent: 12 - - uid: 16188 - components: - - type: Transform - pos: -6.5,22.5 - parent: 12 - - uid: 16189 - components: - - type: Transform - pos: -6.5,23.5 - parent: 12 - - uid: 16190 - components: - - type: Transform - pos: -7.5,23.5 - parent: 12 - - uid: 16191 - components: - - type: Transform - pos: -5.5,28.5 - parent: 12 - - uid: 16192 - components: - - type: Transform - pos: -6.5,29.5 - parent: 12 - - uid: 16193 - components: - - type: Transform - pos: -6.5,32.5 - parent: 12 - - uid: 16194 - components: - - type: Transform - pos: -6.5,28.5 - parent: 12 - - uid: 16195 - components: - - type: Transform - pos: -5.5,27.5 - parent: 12 - - uid: 16196 - components: - - type: Transform - pos: -4.5,27.5 - parent: 12 - - uid: 16197 - components: - - type: Transform - pos: -3.5,27.5 - parent: 12 - - uid: 16198 - components: - - type: Transform - pos: -6.5,30.5 - parent: 12 - - uid: 16199 - components: - - type: Transform - pos: -6.5,31.5 - parent: 12 - - uid: 16200 - components: - - type: Transform - pos: -2.5,25.5 - parent: 12 - - uid: 16201 - components: - - type: Transform - pos: -8.5,27.5 - parent: 12 - - uid: 16202 - components: - - type: Transform - pos: -9.5,27.5 - parent: 12 - - uid: 16203 - components: - - type: Transform - pos: -2.5,30.5 - parent: 12 - - uid: 16204 - components: - - type: Transform - pos: -1.5,25.5 - parent: 12 - - uid: 16205 - components: - - type: Transform - pos: -0.5,25.5 - parent: 12 - - uid: 16206 - components: - - type: Transform - pos: 0.5,25.5 - parent: 12 - - uid: 16207 - components: - - type: Transform - pos: 1.5,25.5 - parent: 12 - - uid: 16208 - components: - - type: Transform - pos: 1.5,26.5 - parent: 12 - - uid: 16211 - components: - - type: Transform - pos: 1.5,29.5 - parent: 12 - - uid: 16212 - components: - - type: Transform - pos: 1.5,30.5 - parent: 12 - - uid: 16213 - components: - - type: Transform - pos: 0.5,30.5 - parent: 12 - - uid: 16214 - components: - - type: Transform - pos: -0.5,30.5 - parent: 12 - - uid: 16215 - components: - - type: Transform - pos: -1.5,30.5 - parent: 12 - - uid: 16216 - components: - - type: Transform - pos: -3.5,30.5 - parent: 12 - - uid: 16217 - components: - - type: Transform - pos: -3.5,29.5 - parent: 12 - - uid: 16218 - components: - - type: Transform - pos: -3.5,28.5 - parent: 12 - - uid: 16219 - components: - - type: Transform - pos: -3.5,26.5 - parent: 12 - - uid: 16220 - components: - - type: Transform - pos: -3.5,25.5 - parent: 12 - - uid: 16222 - components: - - type: Transform - pos: -10.5,26.5 - parent: 12 - - uid: 16223 - components: - - type: Transform - pos: -10.5,25.5 - parent: 12 - - uid: 16224 - components: - - type: Transform - pos: -10.5,24.5 - parent: 12 - - uid: 16225 - components: - - type: Transform - pos: -7.5,24.5 - parent: 12 - - uid: 16226 - components: - - type: Transform - pos: -7.5,25.5 - parent: 12 - - uid: 16227 - components: - - type: Transform - pos: -7.5,26.5 - parent: 12 - - uid: 16228 - components: - - type: Transform - pos: -7.5,27.5 - parent: 12 - - uid: 16229 - components: - - type: Transform - pos: -6.5,33.5 - parent: 12 - - uid: 16230 - components: - - type: Transform - pos: -5.5,33.5 - parent: 12 - - uid: 16231 - components: - - type: Transform - pos: -4.5,33.5 - parent: 12 - - uid: 16232 - components: - - type: Transform - pos: -3.5,33.5 - parent: 12 - - uid: 16233 - components: - - type: Transform - pos: -2.5,33.5 - parent: 12 - - uid: 16235 - components: - - type: Transform - pos: -1.5,34.5 - parent: 12 - - uid: 16236 - components: - - type: Transform - pos: -1.5,35.5 - parent: 12 - - uid: 16237 - components: - - type: Transform - pos: -1.5,36.5 - parent: 12 - - uid: 16238 - components: - - type: Transform - pos: -1.5,37.5 - parent: 12 - - uid: 16239 - components: - - type: Transform - pos: -1.5,38.5 - parent: 12 - - uid: 16240 - components: - - type: Transform - pos: -1.5,39.5 - parent: 12 - - uid: 16241 - components: - - type: Transform - pos: -1.5,40.5 - parent: 12 - - uid: 16242 - components: - - type: Transform - pos: -1.5,41.5 - parent: 12 - - uid: 16243 - components: - - type: Transform - pos: -0.5,35.5 - parent: 12 - - uid: 16244 - components: - - type: Transform - pos: 0.5,35.5 - parent: 12 - - uid: 16245 - components: - - type: Transform - pos: 1.5,35.5 - parent: 12 - - uid: 16246 - components: - - type: Transform - pos: 2.5,35.5 - parent: 12 - - uid: 16247 - components: - - type: Transform - pos: 3.5,35.5 - parent: 12 - - uid: 16248 - components: - - type: Transform - pos: 4.5,35.5 - parent: 12 - - uid: 16249 - components: - - type: Transform - pos: 5.5,35.5 - parent: 12 - - uid: 16250 - components: - - type: Transform - pos: 6.5,35.5 - parent: 12 - - uid: 16251 - components: - - type: Transform - pos: 7.5,35.5 - parent: 12 - - uid: 16252 - components: - - type: Transform - pos: 8.5,35.5 - parent: 12 - - uid: 16253 - components: - - type: Transform - pos: 8.5,36.5 - parent: 12 - - uid: 16254 - components: - - type: Transform - pos: 8.5,37.5 - parent: 12 - - uid: 16255 - components: - - type: Transform - pos: 8.5,38.5 - parent: 12 - - uid: 16256 - components: - - type: Transform - pos: 8.5,39.5 - parent: 12 - - uid: 16257 - components: - - type: Transform - pos: 8.5,40.5 - parent: 12 - - uid: 16258 - components: - - type: Transform - pos: 7.5,40.5 - parent: 12 - - uid: 16259 - components: - - type: Transform - pos: 6.5,40.5 - parent: 12 - - uid: 16260 - components: - - type: Transform - pos: 5.5,40.5 - parent: 12 - - uid: 16261 - components: - - type: Transform - pos: 4.5,40.5 - parent: 12 - - uid: 16262 - components: - - type: Transform - pos: 3.5,40.5 - parent: 12 - - uid: 16263 - components: - - type: Transform - pos: 2.5,40.5 - parent: 12 - - uid: 16264 - components: - - type: Transform - pos: 1.5,40.5 - parent: 12 - - uid: 16265 - components: - - type: Transform - pos: 1.5,39.5 - parent: 12 - - uid: 16266 - components: - - type: Transform - pos: 1.5,38.5 - parent: 12 - - uid: 16267 - components: - - type: Transform - pos: 1.5,37.5 - parent: 12 - - uid: 16268 - components: - - type: Transform - pos: 1.5,36.5 - parent: 12 - - uid: 16269 - components: - - type: Transform - pos: 1.5,34.5 - parent: 12 - - uid: 16270 - components: - - type: Transform - pos: 4.5,39.5 - parent: 12 - - uid: 16271 - components: - - type: Transform - pos: 4.5,38.5 - parent: 12 - - uid: 16272 - components: - - type: Transform - pos: 4.5,37.5 - parent: 12 - - uid: 16273 - components: - - type: Transform - pos: 5.5,37.5 - parent: 12 - - uid: 16274 - components: - - type: Transform - pos: 5.5,36.5 - parent: 12 - - uid: 16275 - components: - - type: Transform - pos: 5.5,38.5 - parent: 12 - - uid: 16276 - components: - - type: Transform - pos: 8.5,34.5 - parent: 12 - - uid: 16277 - components: - - type: Transform - pos: 8.5,33.5 - parent: 12 - - uid: 16278 - components: - - type: Transform - pos: 8.5,32.5 - parent: 12 - - uid: 16279 - components: - - type: Transform - pos: -1.5,42.5 - parent: 12 - - uid: 16280 - components: - - type: Transform - pos: -1.5,43.5 - parent: 12 - - uid: 16281 - components: - - type: Transform - pos: -1.5,44.5 - parent: 12 - - uid: 16282 - components: - - type: Transform - pos: -1.5,45.5 - parent: 12 - - uid: 16283 - components: - - type: Transform - pos: -0.5,44.5 - parent: 12 - - uid: 16284 - components: - - type: Transform - pos: 0.5,44.5 - parent: 12 - - uid: 16285 - components: - - type: Transform - pos: 1.5,44.5 - parent: 12 - - uid: 16286 - components: - - type: Transform - pos: 2.5,44.5 - parent: 12 - - uid: 16287 - components: - - type: Transform - pos: 3.5,44.5 - parent: 12 - - uid: 16288 - components: - - type: Transform - pos: 4.5,44.5 - parent: 12 - - uid: 16289 - components: - - type: Transform - pos: 5.5,44.5 - parent: 12 - - uid: 16290 - components: - - type: Transform - pos: 6.5,44.5 - parent: 12 - - uid: 16291 - components: - - type: Transform - pos: 7.5,44.5 - parent: 12 - - uid: 16292 - components: - - type: Transform - pos: 8.5,44.5 - parent: 12 - - uid: 16293 - components: - - type: Transform - pos: 8.5,43.5 - parent: 12 - - uid: 16294 - components: - - type: Transform - pos: 8.5,42.5 - parent: 12 - - uid: 16295 - components: - - type: Transform - pos: 8.5,41.5 - parent: 12 - - uid: 16297 - components: - - type: Transform - pos: 5.5,33.5 - parent: 12 - - uid: 16298 - components: - - type: Transform - pos: 5.5,34.5 - parent: 12 - - uid: 16337 - components: - - type: Transform - pos: 16.5,13.5 - parent: 12 - - uid: 16338 - components: - - type: Transform - pos: 16.5,12.5 - parent: 12 - - uid: 16344 - components: - - type: Transform - pos: 57.5,-2.5 - parent: 12 - - uid: 16346 - components: - - 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 - pos: 4.5,24.5 - parent: 12 - - uid: 16352 - components: - - type: Transform - pos: 58.5,6.5 - parent: 12 - - uid: 16363 - components: - - type: Transform - pos: -22.5,66.5 - parent: 12 - - uid: 16371 - components: - - type: Transform - pos: 17.5,18.5 - parent: 12 - - uid: 16378 - components: - - type: Transform - pos: 5.5,32.5 - parent: 12 - - uid: 16381 - components: - - type: Transform - pos: 4.5,28.5 - parent: 12 - - uid: 16382 - components: - - type: Transform - pos: 5.5,30.5 - parent: 12 - - uid: 16384 - components: - - type: Transform - pos: 5.5,31.5 - parent: 12 - - uid: 16385 - components: - - type: Transform - pos: 4.5,29.5 - parent: 12 - - uid: 16386 - components: - - type: Transform - pos: 4.5,30.5 - parent: 12 - - uid: 16401 - components: - - type: Transform - pos: -10.5,22.5 - parent: 12 - - uid: 16402 - components: - - type: Transform - pos: -10.5,23.5 - parent: 12 - - uid: 16404 - components: - - type: Transform - pos: 4.5,27.5 - parent: 12 - - uid: 16425 - components: - - type: Transform - pos: -10.5,-3.5 - parent: 12 - - uid: 16426 - components: - - type: Transform - pos: -12.5,-4.5 - parent: 12 - - uid: 16427 - components: - - type: Transform - pos: -11.5,-4.5 - parent: 12 - - uid: 16428 - components: - - type: Transform - pos: -10.5,-4.5 - parent: 12 - - uid: 16429 - components: - - type: Transform - pos: -12.5,-8.5 - parent: 12 - - uid: 16430 - components: - - type: Transform - pos: -12.5,-7.5 - parent: 12 - - uid: 16431 - components: - - type: Transform - pos: -12.5,-6.5 - parent: 12 - - uid: 16432 - components: - - type: Transform - pos: -12.5,-5.5 - parent: 12 - - uid: 16436 - components: - - type: Transform - pos: 9.5,21.5 - parent: 12 - - uid: 16842 - components: - - type: Transform - pos: -30.5,7.5 - parent: 12 - - uid: 16973 - components: - - type: Transform - pos: 6.5,48.5 - parent: 12 - - uid: 16974 - components: - - type: Transform - pos: 5.5,48.5 - parent: 12 - - uid: 16975 - components: - - type: Transform - pos: 4.5,48.5 - parent: 12 - - uid: 16976 - components: - - type: Transform - pos: 3.5,48.5 - parent: 12 - - uid: 16977 - components: - - type: Transform - pos: 2.5,48.5 - parent: 12 - - uid: 16978 - components: - - type: Transform - pos: 1.5,48.5 - parent: 12 - - uid: 16979 - components: - - type: Transform - pos: 1.5,49.5 - parent: 12 - - uid: 16980 - components: - - type: Transform - pos: 1.5,50.5 - parent: 12 - - uid: 16981 - components: - - type: Transform - pos: 1.5,51.5 - parent: 12 - - uid: 16982 - components: - - type: Transform - pos: 4.5,49.5 - parent: 12 - - uid: 16983 - components: - - type: Transform - pos: 4.5,50.5 - parent: 12 - - uid: 16984 - components: - - type: Transform - pos: 4.5,51.5 - parent: 12 - - uid: 16985 - components: - - type: Transform - pos: 4.5,52.5 - parent: 12 - - uid: 16986 - components: - - type: Transform - pos: 4.5,47.5 - parent: 12 - - uid: 16987 - components: - - type: Transform - pos: 1.5,47.5 - parent: 12 - - uid: 16988 - components: - - type: Transform - pos: 6.5,56.5 - parent: 12 - - uid: 16989 - components: - - type: Transform - pos: 5.5,56.5 - parent: 12 - - uid: 16990 - components: - - type: Transform - pos: 4.5,56.5 - parent: 12 - - uid: 16991 - components: - - type: Transform - pos: 4.5,57.5 - parent: 12 - - uid: 16992 - components: - - type: Transform - pos: 4.5,58.5 - parent: 12 - - uid: 16993 - components: - - type: Transform - pos: 4.5,59.5 - parent: 12 - - uid: 16994 - components: - - type: Transform - pos: 3.5,58.5 - parent: 12 - - uid: 16995 - components: - - type: Transform - pos: 7.5,56.5 - parent: 12 - - uid: 16996 - components: - - type: Transform - pos: 8.5,56.5 - parent: 12 - - uid: 16997 - components: - - type: Transform - pos: 9.5,56.5 - parent: 12 - - uid: 16998 - components: - - type: Transform - pos: 10.5,56.5 - parent: 12 - - uid: 16999 - components: - - type: Transform - pos: 11.5,56.5 - parent: 12 - - uid: 17000 - components: - - type: Transform - pos: 12.5,56.5 - parent: 12 - - uid: 17001 - components: - - type: Transform - pos: 13.5,56.5 - parent: 12 - - uid: 17002 - components: - - type: Transform - pos: 13.5,39.5 - parent: 12 - - uid: 17003 - components: - - type: Transform - pos: 13.5,38.5 - parent: 12 - - uid: 17004 - components: - - type: Transform - pos: 14.5,58.5 - parent: 12 - - uid: 17005 - components: - - type: Transform - pos: 13.5,40.5 - parent: 12 - - uid: 17006 - components: - - type: Transform - pos: 10.5,58.5 - parent: 12 - - uid: 17007 - components: - - type: Transform - pos: 8.5,57.5 - parent: 12 - - uid: 17008 - components: - - type: Transform - pos: 8.5,58.5 - parent: 12 - - uid: 17009 - components: - - type: Transform - pos: 14.5,52.5 - parent: 12 - - uid: 17010 - components: - - type: Transform - pos: 12.5,58.5 - parent: 12 - - uid: 17011 - components: - - type: Transform - pos: 14.5,55.5 - parent: 12 - - uid: 17012 - components: - - type: Transform - pos: 13.5,37.5 - parent: 12 - - uid: 17013 - components: - - type: Transform - pos: 14.5,53.5 - parent: 12 - - uid: 17014 - components: - - type: Transform - pos: 14.5,56.5 - parent: 12 - - uid: 17015 - components: - - type: Transform - pos: 14.5,51.5 - parent: 12 - - uid: 17016 - components: - - type: Transform - pos: 13.5,36.5 - parent: 12 - - uid: 17017 - components: - - type: Transform - pos: 14.5,49.5 - parent: 12 - - uid: 17018 - components: - - type: Transform - pos: 14.5,48.5 - parent: 12 - - uid: 17019 - components: - - type: Transform - pos: 8.5,48.5 - parent: 12 - - uid: 17020 - components: - - type: Transform - pos: 8.5,49.5 - parent: 12 - - uid: 17021 - components: - - type: Transform - pos: 8.5,50.5 - parent: 12 - - uid: 17022 - components: - - type: Transform - pos: 8.5,51.5 - parent: 12 - - uid: 17023 - components: - - type: Transform - pos: 8.5,52.5 - parent: 12 - - uid: 17024 - components: - - type: Transform - pos: 8.5,53.5 - parent: 12 - - uid: 17025 - components: - - type: Transform - pos: 8.5,54.5 - parent: 12 - - uid: 17026 - components: - - type: Transform - pos: 8.5,55.5 - parent: 12 - - uid: 17027 - components: - - type: Transform - pos: 9.5,48.5 - parent: 12 - - uid: 17028 - components: - - type: Transform - pos: 10.5,48.5 - parent: 12 - - uid: 17029 - components: - - type: Transform - pos: 11.5,48.5 - parent: 12 - - uid: 17030 - components: - - type: Transform - pos: 12.5,48.5 - parent: 12 - - uid: 17031 - components: - - type: Transform - pos: 13.5,48.5 - parent: 12 - - uid: 17032 - components: - - type: Transform - pos: 9.5,58.5 - parent: 12 - - uid: 17033 - components: - - type: Transform - pos: 11.5,58.5 - parent: 12 - - uid: 17034 - components: - - type: Transform - pos: 13.5,58.5 - parent: 12 - - uid: 17035 - components: - - type: Transform - pos: 9.5,52.5 - parent: 12 - - uid: 17036 - components: - - type: Transform - pos: 10.5,52.5 - parent: 12 - - uid: 17037 - components: - - type: Transform - pos: 11.5,52.5 - parent: 12 - - uid: 17038 - components: - - type: Transform - pos: 12.5,52.5 - parent: 12 - - uid: 17039 - components: - - type: Transform - pos: 13.5,52.5 - parent: 12 - - uid: 17040 - components: - - type: Transform - pos: 13.5,41.5 - parent: 12 - - uid: 17041 - components: - - type: Transform - pos: 13.5,42.5 - parent: 12 - - uid: 17042 - components: - - type: Transform - pos: 13.5,43.5 - parent: 12 - - uid: 17043 - components: - - type: Transform - pos: 13.5,44.5 - parent: 12 - - uid: 17044 - components: - - type: Transform - pos: 12.5,43.5 - parent: 12 - - uid: 17045 - components: - - type: Transform - pos: 11.5,43.5 - parent: 12 - - uid: 17046 - components: - - type: Transform - pos: 10.5,43.5 - parent: 12 - - uid: 17047 - components: - - type: Transform - pos: 10.5,44.5 - parent: 12 - - uid: 17048 - components: - - type: Transform - pos: 14.5,42.5 - parent: 12 - - uid: 17049 - components: - - type: Transform - pos: 15.5,42.5 - parent: 12 - - uid: 17050 - components: - - type: Transform - pos: 16.5,42.5 - parent: 12 - - uid: 17051 - components: - - type: Transform - pos: 19.5,40.5 - parent: 12 - - uid: 17052 - components: - - type: Transform - pos: 19.5,39.5 - parent: 12 - - uid: 17053 - components: - - type: Transform - pos: 20.5,39.5 - parent: 12 - - uid: 17054 - components: - - type: Transform - pos: 20.5,40.5 - parent: 12 - - uid: 17055 - components: - - type: Transform - pos: 21.5,40.5 - parent: 12 - - uid: 17056 - components: - - type: Transform - pos: 22.5,40.5 - parent: 12 - - uid: 17057 - components: - - type: Transform - pos: 22.5,39.5 - parent: 12 - - uid: 17058 - components: - - type: Transform - pos: 23.5,39.5 - parent: 12 - - uid: 17059 - components: - - type: Transform - pos: 23.5,40.5 - parent: 12 - - uid: 17060 - components: - - type: Transform - pos: 21.5,41.5 - parent: 12 - - uid: 17061 - components: - - type: Transform - pos: 21.5,42.5 - parent: 12 - - uid: 17062 - components: - - type: Transform - pos: 20.5,42.5 - parent: 12 - - uid: 17063 - components: - - type: Transform - pos: 19.5,42.5 - parent: 12 - - uid: 17064 - components: - - type: Transform - pos: 19.5,43.5 - parent: 12 - - uid: 17065 - components: - - type: Transform - pos: 19.5,44.5 - parent: 12 - - uid: 17066 - components: - - type: Transform - pos: 19.5,45.5 - parent: 12 - - uid: 17067 - components: - - type: Transform - pos: 19.5,46.5 - parent: 12 - - uid: 17068 - components: - - type: Transform - pos: 19.5,47.5 - parent: 12 - - uid: 17069 - components: - - type: Transform - pos: 19.5,48.5 - parent: 12 - - uid: 17070 - components: - - type: Transform - pos: 19.5,49.5 - parent: 12 - - uid: 17071 - components: - - type: Transform - pos: 19.5,50.5 - parent: 12 - - uid: 17072 - components: - - type: Transform - pos: 19.5,51.5 - parent: 12 - - uid: 17073 - components: - - type: Transform - pos: 19.5,52.5 - parent: 12 - - uid: 17074 - components: - - type: Transform - pos: 19.5,53.5 - parent: 12 - - uid: 17075 - components: - - type: Transform - pos: 20.5,51.5 - parent: 12 - - uid: 17076 - components: - - type: Transform - pos: 21.5,51.5 - parent: 12 - - uid: 17077 - components: - - type: Transform - pos: 22.5,51.5 - parent: 12 - - uid: 17078 - components: - - type: Transform - pos: 23.5,51.5 - parent: 12 - - uid: 17079 - components: - - type: Transform - pos: 24.5,51.5 - parent: 12 - - uid: 17080 - components: - - type: Transform - pos: 23.5,52.5 - parent: 12 - - uid: 17081 - components: - - type: Transform - pos: 24.5,52.5 - parent: 12 - - uid: 17082 - components: - - type: Transform - pos: 25.5,52.5 - parent: 12 - - uid: 17083 - components: - - type: Transform - pos: 26.5,52.5 - parent: 12 - - uid: 17084 - components: - - type: Transform - pos: 26.5,51.5 - parent: 12 - - uid: 17085 - components: - - type: Transform - pos: 26.5,50.5 - parent: 12 - - uid: 17086 - components: - - type: Transform - pos: 26.5,49.5 - parent: 12 - - uid: 17087 - components: - - type: Transform - pos: 26.5,48.5 - parent: 12 - - uid: 17088 - components: - - type: Transform - pos: 26.5,47.5 - parent: 12 - - uid: 17089 - components: - - type: Transform - pos: 26.5,46.5 - parent: 12 - - uid: 17090 - components: - - type: Transform - pos: 25.5,46.5 - parent: 12 - - uid: 17091 - components: - - type: Transform - pos: 24.5,46.5 - parent: 12 - - uid: 17092 - components: - - type: Transform - pos: 23.5,46.5 - parent: 12 - - uid: 17093 - components: - - type: Transform - pos: 22.5,46.5 - parent: 12 - - uid: 17094 - components: - - type: Transform - pos: 21.5,46.5 - parent: 12 - - uid: 17095 - components: - - type: Transform - pos: 20.5,46.5 - parent: 12 - - uid: 17096 - components: - - type: Transform - pos: 25.5,45.5 - parent: 12 - - uid: 17097 - components: - - type: Transform - pos: 25.5,44.5 - parent: 12 - - uid: 17098 - components: - - type: Transform - pos: 25.5,43.5 - parent: 12 - - uid: 17099 - components: - - type: Transform - pos: 25.5,42.5 - parent: 12 - - uid: 17100 - components: - - type: Transform - pos: 24.5,42.5 - parent: 12 - - uid: 17101 - components: - - type: Transform - pos: 23.5,42.5 - parent: 12 - - uid: 17102 - components: - - type: Transform - pos: 22.5,42.5 - parent: 12 - - uid: 17103 - components: - - type: Transform - pos: 26.5,42.5 - parent: 12 - - uid: 17104 - components: - - type: Transform - pos: 18.5,46.5 - parent: 12 - - uid: 17105 - components: - - type: Transform - pos: 18.5,51.5 - parent: 12 - - uid: 17386 - components: - - type: Transform - pos: -3.5,-40.5 - parent: 12 - - uid: 17407 - components: - - type: Transform - pos: -29.5,7.5 - parent: 12 - - uid: 17425 - components: - - type: Transform - pos: -49.5,17.5 - parent: 12 - - uid: 17426 - components: - - type: Transform - pos: -50.5,17.5 - parent: 12 - - uid: 17427 - components: - - type: Transform - pos: -51.5,17.5 - parent: 12 - - uid: 17428 - components: - - type: Transform - pos: -51.5,18.5 - parent: 12 - - uid: 17429 - components: - - type: Transform - pos: -51.5,19.5 - parent: 12 - - uid: 17430 - components: - - type: Transform - pos: -51.5,20.5 - parent: 12 - - uid: 17431 - components: - - type: Transform - pos: -51.5,21.5 - parent: 12 - - uid: 17432 - components: - - type: Transform - pos: -51.5,22.5 - parent: 12 - - uid: 17433 - components: - - type: Transform - pos: -52.5,20.5 - parent: 12 - - uid: 17434 - components: - - type: Transform - pos: -52.5,22.5 - parent: 12 - - uid: 17435 - components: - - type: Transform - pos: -53.5,22.5 - parent: 12 - - uid: 17439 - components: - - type: Transform - pos: -50.5,20.5 - parent: 12 - - uid: 17529 - components: - - type: Transform - pos: -28.5,9.5 - parent: 12 - - uid: 17533 - components: - - type: Transform - pos: -28.5,7.5 - parent: 12 - - uid: 17843 - components: - - 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 - pos: -18.5,73.5 - parent: 12 - - uid: 18158 - components: - - type: Transform - pos: -47.5,37.5 - parent: 12 - - uid: 18162 - components: - - type: Transform - pos: -46.5,35.5 - parent: 12 - - uid: 18163 - components: - - type: Transform - pos: -46.5,36.5 - parent: 12 - - uid: 18164 - components: - - type: Transform - pos: -46.5,37.5 - parent: 12 - - uid: 18165 - components: - - type: Transform - pos: -48.5,37.5 - parent: 12 - - uid: 18166 - components: - - type: Transform - pos: -49.5,37.5 - parent: 12 - - uid: 18167 - components: - - type: Transform - pos: -50.5,37.5 - parent: 12 - - uid: 18168 - components: - - type: Transform - pos: -51.5,37.5 - parent: 12 - - uid: 18169 - components: - - type: Transform - pos: -52.5,37.5 - parent: 12 - - uid: 18170 - components: - - type: Transform - pos: -53.5,37.5 - parent: 12 - - uid: 18171 - components: - - type: Transform - pos: -48.5,42.5 - parent: 12 - - uid: 18172 - components: - - type: Transform - pos: -51.5,36.5 - parent: 12 - - uid: 18173 - components: - - type: Transform - pos: -45.5,32.5 - parent: 12 - - uid: 18174 - components: - - type: Transform - pos: -46.5,32.5 - parent: 12 - - uid: 18175 - components: - - type: Transform - pos: -47.5,32.5 - parent: 12 - - uid: 18176 - components: - - type: Transform - pos: -48.5,32.5 - parent: 12 - - uid: 18177 - components: - - type: Transform - pos: -49.5,32.5 - parent: 12 - - uid: 18178 - components: - - type: Transform - pos: -50.5,32.5 - parent: 12 - - uid: 18179 - components: - - type: Transform - pos: -51.5,32.5 - parent: 12 - - uid: 18180 - components: - - type: Transform - pos: -52.5,32.5 - parent: 12 - - uid: 18181 - components: - - type: Transform - pos: -53.5,32.5 - parent: 12 - - uid: 18182 - components: - - type: Transform - pos: -54.5,32.5 - parent: 12 - - uid: 18183 - components: - - type: Transform - pos: -55.5,32.5 - parent: 12 - - uid: 18184 - components: - - type: Transform - pos: -56.5,32.5 - parent: 12 - - uid: 18185 - components: - - type: Transform - pos: -53.5,33.5 - parent: 12 - - uid: 18186 - components: - - type: Transform - pos: -47.5,33.5 - parent: 12 - - uid: 18187 - components: - - type: Transform - pos: -47.5,31.5 - parent: 12 - - uid: 18188 - components: - - type: Transform - pos: -47.5,30.5 - parent: 12 - - uid: 18189 - components: - - type: Transform - pos: -47.5,29.5 - parent: 12 - - uid: 18190 - components: - - type: Transform - pos: -47.5,28.5 - parent: 12 - - uid: 18191 - components: - - type: Transform - pos: -47.5,27.5 - parent: 12 - - uid: 18192 - components: - - type: Transform - pos: -47.5,26.5 - parent: 12 - - uid: 18193 - components: - - type: Transform - pos: -47.5,25.5 - parent: 12 - - uid: 18194 - components: - - type: Transform - pos: -47.5,24.5 - parent: 12 - - uid: 18195 - components: - - type: Transform - pos: -46.5,25.5 - parent: 12 - - uid: 18196 - components: - - type: Transform - pos: -48.5,25.5 - parent: 12 - - uid: 18197 - components: - - type: Transform - pos: -49.5,25.5 - parent: 12 - - uid: 18198 - components: - - type: Transform - pos: -50.5,25.5 - parent: 12 - - uid: 18199 - components: - - type: Transform - pos: -51.5,25.5 - parent: 12 - - uid: 18200 - components: - - type: Transform - pos: -52.5,25.5 - parent: 12 - - uid: 18201 - components: - - type: Transform - pos: -53.5,25.5 - parent: 12 - - uid: 18202 - components: - - type: Transform - pos: -54.5,25.5 - parent: 12 - - uid: 18203 - components: - - type: Transform - pos: -55.5,25.5 - parent: 12 - - uid: 18204 - components: - - type: Transform - pos: -56.5,25.5 - parent: 12 - - uid: 18205 - components: - - type: Transform - pos: -56.5,26.5 - parent: 12 - - uid: 18206 - components: - - type: Transform - pos: -56.5,27.5 - parent: 12 - - uid: 18207 - components: - - type: Transform - pos: -56.5,28.5 - parent: 12 - - uid: 18208 - components: - - type: Transform - pos: -56.5,29.5 - parent: 12 - - uid: 18209 - components: - - type: Transform - pos: -56.5,30.5 - parent: 12 - - uid: 18210 - components: - - type: Transform - pos: -56.5,31.5 - parent: 12 - - uid: 18211 - components: - - type: Transform - pos: -53.5,31.5 - parent: 12 - - uid: 18212 - components: - - type: Transform - pos: -53.5,30.5 - parent: 12 - - uid: 18213 - components: - - type: Transform - pos: -53.5,29.5 - parent: 12 - - uid: 18214 - components: - - type: Transform - pos: -53.5,28.5 - parent: 12 - - uid: 18215 - components: - - type: Transform - pos: -53.5,27.5 - parent: 12 - - uid: 18216 - components: - - type: Transform - pos: -53.5,26.5 - parent: 12 - - uid: 18217 - components: - - type: Transform - pos: -53.5,24.5 - parent: 12 - - uid: 18218 - components: - - type: Transform - pos: -50.5,26.5 - parent: 12 - - uid: 18219 - components: - - type: Transform - pos: -50.5,27.5 - parent: 12 - - uid: 18220 - components: - - type: Transform - pos: -50.5,28.5 - parent: 12 - - uid: 18221 - components: - - type: Transform - pos: -50.5,29.5 - parent: 12 - - uid: 18222 - components: - - type: Transform - pos: -50.5,30.5 - parent: 12 - - uid: 18223 - components: - - type: Transform - pos: -50.5,31.5 - parent: 12 - - uid: 18224 - components: - - type: Transform - pos: -46.5,38.5 - parent: 12 - - uid: 18225 - components: - - type: Transform - pos: -46.5,39.5 - parent: 12 - - uid: 18226 - components: - - type: Transform - pos: -46.5,40.5 - parent: 12 - - uid: 18227 - components: - - type: Transform - pos: -46.5,41.5 - parent: 12 - - uid: 18228 - components: - - type: Transform - pos: -46.5,42.5 - parent: 12 - - uid: 18229 - components: - - type: Transform - pos: -46.5,43.5 - parent: 12 - - uid: 18230 - components: - - type: Transform - pos: -46.5,44.5 - parent: 12 - - uid: 18231 - components: - - type: Transform - pos: -46.5,45.5 - parent: 12 - - uid: 18232 - components: - - type: Transform - pos: -46.5,46.5 - parent: 12 - - uid: 18233 - components: - - type: Transform - pos: -46.5,47.5 - parent: 12 - - uid: 18234 - components: - - type: Transform - pos: -45.5,45.5 - parent: 12 - - uid: 18235 - components: - - type: Transform - pos: -44.5,45.5 - parent: 12 - - uid: 18236 - components: - - type: Transform - pos: -47.5,46.5 - parent: 12 - - uid: 18237 - components: - - type: Transform - pos: -48.5,46.5 - parent: 12 - - uid: 18238 - components: - - type: Transform - pos: -49.5,46.5 - parent: 12 - - uid: 18239 - components: - - type: Transform - pos: -50.5,46.5 - parent: 12 - - uid: 18240 - components: - - type: Transform - pos: -51.5,46.5 - parent: 12 - - uid: 18241 - components: - - type: Transform - pos: -52.5,46.5 - parent: 12 - - uid: 18242 - components: - - type: Transform - pos: -53.5,46.5 - parent: 12 - - uid: 18243 - components: - - type: Transform - pos: -54.5,46.5 - parent: 12 - - uid: 18244 - components: - - type: Transform - pos: -55.5,46.5 - parent: 12 - - uid: 18245 - components: - - type: Transform - pos: -47.5,42.5 - parent: 12 - - uid: 18271 - components: - - type: Transform - pos: -18.5,72.5 - parent: 12 - - uid: 18281 - components: - - type: Transform - pos: -20.5,-5.5 - parent: 12 - - uid: 18282 - components: - - type: Transform - pos: -20.5,-4.5 - parent: 12 - - uid: 18283 - components: - - type: Transform - pos: -19.5,-5.5 - parent: 12 - - uid: 18284 - components: - - type: Transform - pos: -18.5,-5.5 - parent: 12 - - uid: 18285 - components: - - type: Transform - pos: -17.5,-5.5 - parent: 12 - - uid: 18286 - components: - - type: Transform - pos: -16.5,-5.5 - parent: 12 - - uid: 18287 - components: - - type: Transform - pos: -15.5,-5.5 - parent: 12 - - uid: 18288 - components: - - type: Transform - pos: -15.5,-4.5 - parent: 12 - - uid: 18289 - components: - - type: Transform - pos: -15.5,-3.5 - parent: 12 - - uid: 18290 - components: - - type: Transform - pos: -15.5,-2.5 - parent: 12 - - uid: 18291 - components: - - type: Transform - pos: -15.5,-1.5 - parent: 12 - - uid: 18292 - components: - - type: Transform - pos: -15.5,-0.5 - parent: 12 - - uid: 18293 - components: - - type: Transform - pos: -15.5,0.5 - parent: 12 - - uid: 18294 - components: - - type: Transform - pos: -15.5,1.5 - parent: 12 - - uid: 18295 - components: - - type: Transform - pos: -15.5,2.5 - parent: 12 - - uid: 18296 - components: - - type: Transform - pos: -15.5,3.5 - parent: 12 - - uid: 18298 - components: - - type: Transform - pos: 24.5,-27.5 - parent: 12 - - uid: 18299 - components: - - type: Transform - pos: 25.5,-27.5 - parent: 12 - - uid: 18300 - components: - - type: Transform - pos: 26.5,-27.5 - parent: 12 - - uid: 18301 - components: - - type: Transform - pos: 27.5,-27.5 - parent: 12 - - uid: 18305 - components: - - type: Transform - pos: -6.5,-7.5 - parent: 12 - - uid: 18314 - components: - - type: Transform - pos: -6.5,-5.5 - parent: 12 - - uid: 18316 - components: - - type: Transform - pos: 28.5,-27.5 - parent: 12 - - uid: 18317 - components: - - type: Transform - pos: 29.5,-27.5 - parent: 12 - - uid: 18318 - components: - - type: Transform - pos: 30.5,-27.5 - parent: 12 - - uid: 18319 - components: - - type: Transform - pos: 30.5,-26.5 - parent: 12 - - uid: 18320 - components: - - type: Transform - pos: 30.5,-25.5 - parent: 12 - - uid: 18321 - components: - - type: Transform - pos: 30.5,-24.5 - parent: 12 - - uid: 18322 - components: - - type: Transform - pos: 30.5,-23.5 - parent: 12 - - uid: 18323 - components: - - type: Transform - pos: 30.5,-22.5 - parent: 12 - - uid: 18324 - components: - - type: Transform - pos: 30.5,-21.5 - parent: 12 - - uid: 18325 - components: - - type: Transform - pos: 30.5,-20.5 - parent: 12 - - uid: 18326 - components: - - type: Transform - pos: 30.5,-19.5 - parent: 12 - - uid: 18327 - components: - - type: Transform - pos: 30.5,-18.5 - parent: 12 - - uid: 18328 - components: - - type: Transform - pos: 31.5,-22.5 - parent: 12 - - uid: 18329 - components: - - type: Transform - pos: 32.5,-22.5 - parent: 12 - - uid: 18330 - components: - - type: Transform - pos: 33.5,-22.5 - parent: 12 - - uid: 18331 - components: - - type: Transform - pos: 34.5,-22.5 - parent: 12 - - uid: 18332 - components: - - type: Transform - pos: 34.5,-21.5 - parent: 12 - - uid: 18333 - components: - - type: Transform - pos: 34.5,-20.5 - parent: 12 - - uid: 18334 - components: - - type: Transform - pos: 34.5,-19.5 - parent: 12 - - uid: 18335 - components: - - type: Transform - pos: 34.5,-18.5 - parent: 12 - - uid: 18340 - components: - - type: Transform - pos: 33.5,64.5 - parent: 12 - - uid: 18341 - components: - - type: Transform - pos: 33.5,63.5 - parent: 12 - - uid: 18342 - components: - - type: Transform - pos: 32.5,63.5 - parent: 12 - - uid: 18343 - components: - - type: Transform - pos: 31.5,63.5 - parent: 12 - - uid: 18344 - components: - - type: Transform - pos: 30.5,63.5 - parent: 12 - - uid: 18345 - components: - - type: Transform - pos: 29.5,63.5 - parent: 12 - - uid: 18346 - components: - - type: Transform - pos: 28.5,63.5 - parent: 12 - - uid: 18347 - components: - - type: Transform - pos: 27.5,63.5 - parent: 12 - - uid: 18348 - components: - - type: Transform - pos: 26.5,63.5 - parent: 12 - - uid: 18349 - components: - - type: Transform - pos: 25.5,63.5 - parent: 12 - - uid: 18350 - components: - - type: Transform - pos: 24.5,63.5 - parent: 12 - - uid: 18351 - components: - - type: Transform - pos: 23.5,63.5 - parent: 12 - - uid: 18352 - components: - - type: Transform - pos: 34.5,63.5 - parent: 12 - - uid: 18353 - components: - - type: Transform - pos: 35.5,63.5 - parent: 12 - - uid: 18354 - components: - - type: Transform - pos: 35.5,62.5 - parent: 12 - - uid: 18355 - components: - - type: Transform - pos: 35.5,61.5 - parent: 12 - - uid: 18356 - components: - - type: Transform - pos: 35.5,60.5 - parent: 12 - - uid: 18357 - components: - - type: Transform - pos: 36.5,60.5 - parent: 12 - - uid: 18358 - components: - - type: Transform - pos: 37.5,60.5 - parent: 12 - - uid: 18359 - components: - - type: Transform - pos: 38.5,60.5 - parent: 12 - - uid: 18360 - components: - - type: Transform - pos: 39.5,60.5 - parent: 12 - - uid: 18361 - components: - - type: Transform - pos: 40.5,60.5 - parent: 12 - - uid: 18362 - components: - - type: Transform - pos: 41.5,60.5 - parent: 12 - - uid: 18363 - components: - - type: Transform - pos: 42.5,60.5 - parent: 12 - - uid: 18364 - components: - - type: Transform - pos: 43.5,60.5 - parent: 12 - - uid: 18365 - components: - - type: Transform - pos: 43.5,59.5 - parent: 12 - - uid: 18366 - components: - - type: Transform - pos: 43.5,58.5 - parent: 12 - - uid: 18367 - components: - - type: Transform - pos: 33.5,65.5 - parent: 12 - - uid: 18368 - components: - - type: Transform - pos: 33.5,66.5 - parent: 12 - - uid: 18369 - components: - - type: Transform - pos: 34.5,66.5 - parent: 12 - - uid: 18370 - components: - - type: Transform - pos: 35.5,66.5 - parent: 12 - - uid: 18371 - components: - - type: Transform - pos: 32.5,65.5 - parent: 12 - - uid: 18372 - components: - - type: Transform - pos: 31.5,65.5 - parent: 12 - - uid: 18373 - components: - - type: Transform - pos: 31.5,66.5 - parent: 12 - - uid: 18374 - components: - - type: Transform - pos: 31.5,67.5 - parent: 12 - - uid: 18375 - components: - - type: Transform - pos: 31.5,68.5 - parent: 12 - - uid: 18376 - components: - - type: Transform - pos: 26.5,64.5 - parent: 12 - - uid: 18377 - components: - - type: Transform - pos: 26.5,65.5 - parent: 12 - - uid: 18378 - components: - - type: Transform - pos: 26.5,66.5 - parent: 12 - - uid: 18379 - components: - - type: Transform - pos: 27.5,66.5 - parent: 12 - - uid: 18380 - components: - - type: Transform - pos: 28.5,66.5 - parent: 12 - - uid: 18381 - components: - - type: Transform - pos: 28.5,67.5 - parent: 12 - - uid: 18382 - components: - - type: Transform - pos: 27.5,67.5 - parent: 12 - - uid: 18565 - components: - - type: Transform - pos: 51.5,63.5 - parent: 12 - - uid: 18566 - components: - - type: Transform - pos: 50.5,63.5 - parent: 12 - - uid: 18589 - components: - - type: Transform - pos: 52.5,63.5 - parent: 12 - - uid: 18611 - components: - - type: Transform - pos: 58.5,65.5 - parent: 12 - - uid: 18617 - components: - - type: Transform - pos: 48.5,63.5 - parent: 12 - - uid: 18624 - components: - - type: Transform - pos: 49.5,63.5 - parent: 12 - - uid: 18741 - components: - - type: Transform - pos: 37.5,-1.5 - parent: 12 - - uid: 18898 - components: - - type: Transform - pos: -46.5,28.5 - parent: 12 - - uid: 18899 - components: - - type: Transform - pos: -45.5,28.5 - parent: 12 - - uid: 18900 - components: - - type: Transform - pos: -44.5,28.5 - parent: 12 - - uid: 18901 - components: - - type: Transform - pos: -43.5,28.5 - parent: 12 - - uid: 18902 - components: - - type: Transform - pos: -42.5,28.5 - parent: 12 - - uid: 18905 - components: - - type: Transform - pos: -40.5,36.5 - parent: 12 - - uid: 18906 - components: - - type: Transform - pos: -41.5,36.5 - parent: 12 - - uid: 18907 - components: - - type: Transform - pos: -42.5,36.5 - parent: 12 - - uid: 18908 - components: - - type: Transform - pos: -43.5,36.5 - parent: 12 - - uid: 18909 - components: - - type: Transform - pos: -42.5,35.5 - parent: 12 - - uid: 18910 - components: - - type: Transform - pos: -42.5,34.5 - parent: 12 - - uid: 18911 - components: - - type: Transform - pos: -42.5,33.5 - parent: 12 - - uid: 18912 - components: - - type: Transform - pos: -44.5,34.5 - parent: 12 - - uid: 18913 - components: - - type: Transform - pos: -43.5,34.5 - parent: 12 - - uid: 18914 - components: - - type: Transform - pos: -41.5,34.5 - parent: 12 - - uid: 18925 - components: - - type: Transform - pos: -43.5,24.5 - parent: 12 - - uid: 18926 - components: - - type: Transform - pos: -43.5,23.5 - parent: 12 - - uid: 18927 - components: - - type: Transform - pos: -43.5,22.5 - parent: 12 - - uid: 18928 - components: - - type: Transform - pos: -42.5,22.5 - parent: 12 - - uid: 18929 - components: - - type: Transform - pos: -41.5,22.5 - parent: 12 - - uid: 18930 - components: - - type: Transform - pos: -40.5,22.5 - parent: 12 - - uid: 18931 - components: - - type: Transform - pos: -39.5,22.5 - parent: 12 - - uid: 18932 - components: - - type: Transform - pos: -38.5,22.5 - parent: 12 - - uid: 18933 - components: - - type: Transform - pos: -37.5,22.5 - parent: 12 - - uid: 18934 - components: - - type: Transform - pos: -37.5,21.5 - parent: 12 - - uid: 18935 - components: - - type: Transform - pos: -36.5,22.5 - parent: 12 - - uid: 18936 - components: - - type: Transform - pos: -35.5,22.5 - parent: 12 - - uid: 18937 - components: - - type: Transform - pos: -34.5,22.5 - parent: 12 - - uid: 18938 - components: - - type: Transform - pos: -33.5,22.5 - parent: 12 - - uid: 18939 - components: - - type: Transform - pos: -32.5,22.5 - parent: 12 - - uid: 18940 - components: - - type: Transform - pos: -31.5,22.5 - parent: 12 - - uid: 18941 - components: - - type: Transform - pos: -33.5,21.5 - parent: 12 - - uid: 18942 - components: - - type: Transform - pos: -33.5,23.5 - parent: 12 - - uid: 18943 - components: - - type: Transform - pos: -41.5,21.5 - parent: 12 - - uid: 18944 - components: - - type: Transform - pos: -41.5,20.5 - parent: 12 - - uid: 18945 - components: - - type: Transform - pos: -42.5,20.5 - parent: 12 - - uid: 18946 - components: - - type: Transform - pos: -43.5,20.5 - parent: 12 - - uid: 18947 - components: - - type: Transform - pos: -44.5,20.5 - parent: 12 - - uid: 18948 - components: - - type: Transform - pos: -45.5,20.5 - parent: 12 - - uid: 18949 - components: - - type: Transform - pos: -45.5,21.5 - parent: 12 - - uid: 18950 - components: - - 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 - pos: 0.5,-15.5 - parent: 12 - - uid: 19663 - components: - - type: Transform - pos: 49.5,-5.5 - parent: 12 - - uid: 19826 - components: - - type: Transform - pos: -21.5,-60.5 - parent: 12 - - uid: 19827 - components: - - type: Transform - pos: -31.5,-58.5 - parent: 12 - - uid: 19842 - components: - - type: Transform - pos: -21.5,-62.5 - parent: 12 - - uid: 19851 - components: - - type: Transform - pos: -11.5,51.5 - parent: 12 - - uid: 19854 - components: - - type: Transform - pos: 52.5,66.5 - parent: 12 - - uid: 19855 - components: - - type: Transform - pos: 52.5,65.5 - parent: 12 - - uid: 19856 - components: - - type: Transform - pos: 52.5,64.5 - parent: 12 - - uid: 19885 - components: - - type: Transform - pos: -20.5,-62.5 - parent: 12 - - uid: 20074 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 12 - - uid: 20257 - components: - - type: Transform - pos: -19.5,-62.5 - parent: 12 - - uid: 20523 - components: - - type: Transform - pos: -51.5,75.5 - parent: 12 - - uid: 20527 - components: - - type: Transform - pos: -50.5,75.5 - parent: 12 - - uid: 20570 - components: - - type: Transform - pos: -47.5,62.5 - parent: 12 - - uid: 20571 - components: - - type: Transform - pos: -47.5,61.5 - parent: 12 - - uid: 20572 - components: - - type: Transform - pos: -47.5,60.5 - parent: 12 - - uid: 20573 - components: - - type: Transform - pos: -47.5,59.5 - parent: 12 - - uid: 20574 - components: - - type: Transform - pos: -47.5,58.5 - parent: 12 - - uid: 20575 - components: - - type: Transform - pos: -47.5,57.5 - parent: 12 - - uid: 20576 - components: - - type: Transform - pos: -47.5,56.5 - parent: 12 - - uid: 20577 - components: - - type: Transform - pos: -47.5,55.5 - parent: 12 - - uid: 20578 - components: - - type: Transform - pos: -46.5,58.5 - parent: 12 - - uid: 20579 - components: - - type: Transform - pos: -45.5,58.5 - parent: 12 - - uid: 20580 - components: - - type: Transform - pos: -44.5,58.5 - parent: 12 - - uid: 20581 - components: - - type: Transform - pos: -43.5,58.5 - parent: 12 - - uid: 20582 - components: - - type: Transform - pos: -42.5,58.5 - parent: 12 - - uid: 20583 - components: - - type: Transform - pos: -41.5,58.5 - parent: 12 - - uid: 20584 - components: - - type: Transform - pos: -40.5,58.5 - parent: 12 - - uid: 20585 - components: - - type: Transform - pos: -39.5,58.5 - parent: 12 - - uid: 20586 - components: - - type: Transform - pos: -38.5,58.5 - parent: 12 - - uid: 20587 - components: - - type: Transform - pos: -38.5,59.5 - parent: 12 - - uid: 20588 - components: - - type: Transform - pos: -38.5,60.5 - parent: 12 - - uid: 20589 - components: - - type: Transform - pos: -44.5,59.5 - parent: 12 - - uid: 20590 - components: - - type: Transform - pos: -44.5,60.5 - parent: 12 - - uid: 20591 - components: - - type: Transform - pos: -44.5,61.5 - parent: 12 - - uid: 20592 - components: - - type: Transform - pos: -44.5,62.5 - parent: 12 - - uid: 20593 - components: - - type: Transform - pos: -41.5,62.5 - parent: 12 - - uid: 20594 - components: - - type: Transform - pos: -41.5,61.5 - parent: 12 - - uid: 20595 - components: - - type: Transform - pos: -41.5,60.5 - parent: 12 - - uid: 20596 - components: - - type: Transform - pos: -41.5,59.5 - parent: 12 - - uid: 20597 - components: - - type: Transform - pos: -45.5,57.5 - parent: 12 - - uid: 20598 - components: - - type: Transform - pos: -39.5,49.5 - parent: 12 - - uid: 20599 - components: - - type: Transform - pos: -39.5,50.5 - parent: 12 - - uid: 20600 - components: - - type: Transform - pos: -39.5,51.5 - parent: 12 - - uid: 20601 - components: - - type: Transform - pos: -39.5,52.5 - parent: 12 - - uid: 20602 - components: - - type: Transform - pos: -39.5,53.5 - parent: 12 - - uid: 20603 - components: - - type: Transform - pos: -39.5,54.5 - parent: 12 - - uid: 20604 - components: - - type: Transform - pos: -39.5,55.5 - parent: 12 - - uid: 20607 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 12 - - uid: 20608 - components: - - type: Transform - pos: -43.5,53.5 - parent: 12 - - uid: 20609 - components: - - type: Transform - pos: -44.5,53.5 - parent: 12 - - uid: 20610 - components: - - type: Transform - pos: -44.5,52.5 - parent: 12 - - uid: 20611 - components: - - type: Transform - pos: -44.5,51.5 - parent: 12 - - uid: 20612 - components: - - type: Transform - pos: -45.5,51.5 - parent: 12 - - uid: 20613 - components: - - type: Transform - pos: -43.5,51.5 - parent: 12 - - uid: 20614 - components: - - type: Transform - pos: -38.5,53.5 - parent: 12 - - uid: 20615 - components: - - type: Transform - pos: -37.5,53.5 - parent: 12 - - uid: 20616 - components: - - type: Transform - pos: -33.5,47.5 - parent: 12 - - uid: 20617 - components: - - type: Transform - pos: -33.5,48.5 - parent: 12 - - uid: 20618 - components: - - type: Transform - pos: -32.5,48.5 - parent: 12 - - uid: 20619 - components: - - type: Transform - pos: -31.5,48.5 - parent: 12 - - uid: 20620 - components: - - type: Transform - pos: -30.5,48.5 - parent: 12 - - uid: 20621 - components: - - type: Transform - pos: -29.5,48.5 - parent: 12 - - uid: 20622 - components: - - type: Transform - pos: -29.5,49.5 - parent: 12 - - uid: 20623 - components: - - type: Transform - pos: -29.5,50.5 - parent: 12 - - uid: 20624 - components: - - type: Transform - pos: -29.5,51.5 - parent: 12 - - uid: 20625 - components: - - type: Transform - pos: -29.5,52.5 - parent: 12 - - uid: 20626 - components: - - type: Transform - pos: -29.5,53.5 - parent: 12 - - uid: 20627 - components: - - type: Transform - pos: -29.5,54.5 - parent: 12 - - uid: 20628 - components: - - type: Transform - pos: -29.5,55.5 - parent: 12 - - uid: 20629 - components: - - type: Transform - pos: -29.5,56.5 - parent: 12 - - uid: 20630 - components: - - type: Transform - pos: -30.5,53.5 - parent: 12 - - uid: 20631 - components: - - type: Transform - pos: -31.5,53.5 - parent: 12 - - uid: 20632 - components: - - type: Transform - pos: -32.5,53.5 - parent: 12 - - uid: 20633 - components: - - type: Transform - pos: -33.5,53.5 - parent: 12 - - uid: 20634 - components: - - type: Transform - pos: -28.5,53.5 - parent: 12 - - uid: 20635 - components: - - type: Transform - pos: -27.5,53.5 - parent: 12 - - uid: 20636 - components: - - type: Transform - pos: -28.5,51.5 - parent: 12 - - uid: 20637 - components: - - type: Transform - pos: -27.5,51.5 - parent: 12 - - uid: 20638 - components: - - type: Transform - pos: -26.5,51.5 - parent: 12 - - uid: 20639 - components: - - type: Transform - pos: -25.5,51.5 - parent: 12 - - uid: 20640 - components: - - type: Transform - pos: -29.5,47.5 - parent: 12 - - uid: 20641 - components: - - type: Transform - pos: -29.5,46.5 - parent: 12 - - uid: 20642 - components: - - type: Transform - pos: -29.5,45.5 - parent: 12 - - uid: 20643 - components: - - type: Transform - pos: -29.5,44.5 - parent: 12 - - uid: 20644 - components: - - type: Transform - pos: -28.5,44.5 - parent: 12 - - uid: 20645 - components: - - type: Transform - pos: -27.5,44.5 - parent: 12 - - uid: 20646 - components: - - type: Transform - pos: -26.5,44.5 - parent: 12 - - uid: 20647 - components: - - type: Transform - pos: -26.5,45.5 - parent: 12 - - uid: 20648 - components: - - type: Transform - pos: -26.5,46.5 - parent: 12 - - uid: 20649 - components: - - type: Transform - pos: -26.5,47.5 - parent: 12 - - uid: 20650 - components: - - type: Transform - pos: -27.5,47.5 - parent: 12 - - uid: 20651 - components: - - type: Transform - pos: -28.5,47.5 - parent: 12 - - uid: 20652 - components: - - type: Transform - pos: -34.5,53.5 - parent: 12 - - uid: 20653 - components: - - type: Transform - pos: -34.5,52.5 - parent: 12 - - uid: 20654 - components: - - type: Transform - pos: -34.5,51.5 - parent: 12 - - uid: 20655 - components: - - type: Transform - pos: -34.5,50.5 - parent: 12 - - uid: 20656 - components: - - type: Transform - pos: -34.5,49.5 - parent: 12 - - uid: 20657 - components: - - type: Transform - pos: -34.5,48.5 - parent: 12 - - uid: 20658 - components: - - type: Transform - pos: -35.5,69.5 - parent: 12 - - uid: 20659 - components: - - type: Transform - pos: -35.5,68.5 - parent: 12 - - uid: 20660 - components: - - type: Transform - pos: -35.5,67.5 - parent: 12 - - uid: 20661 - components: - - type: Transform - pos: -36.5,67.5 - parent: 12 - - uid: 20662 - components: - - type: Transform - pos: -36.5,66.5 - parent: 12 - - uid: 20663 - components: - - type: Transform - pos: -36.5,65.5 - parent: 12 - - uid: 20664 - components: - - type: Transform - pos: -35.5,65.5 - parent: 12 - - uid: 20665 - components: - - type: Transform - pos: -34.5,65.5 - parent: 12 - - uid: 20666 - components: - - type: Transform - pos: -33.5,65.5 - parent: 12 - - uid: 20667 - components: - - type: Transform - pos: -33.5,67.5 - parent: 12 - - uid: 20668 - components: - - type: Transform - pos: -34.5,67.5 - parent: 12 - - uid: 20669 - components: - - type: Transform - pos: -33.5,66.5 - parent: 12 - - uid: 20670 - components: - - type: Transform - pos: -22.5,-62.5 - parent: 12 - - uid: 20671 - components: - - type: Transform - pos: -26.5,59.5 - parent: 12 - - uid: 20672 - components: - - type: Transform - pos: -25.5,59.5 - parent: 12 - - uid: 20673 - components: - - type: Transform - pos: -27.5,59.5 - parent: 12 - - uid: 20674 - components: - - type: Transform - pos: -28.5,59.5 - parent: 12 - - uid: 20675 - components: - - type: Transform - pos: -29.5,59.5 - parent: 12 - - uid: 20676 - components: - - type: Transform - pos: -30.5,59.5 - parent: 12 - - uid: 20677 - components: - - type: Transform - pos: -31.5,59.5 - parent: 12 - - uid: 20678 - components: - - type: Transform - pos: -32.5,59.5 - parent: 12 - - uid: 20679 - components: - - type: Transform - pos: -33.5,59.5 - parent: 12 - - uid: 20680 - components: - - type: Transform - pos: -34.5,59.5 - parent: 12 - - uid: 20681 - components: - - type: Transform - pos: -35.5,59.5 - parent: 12 - - uid: 20682 - components: - - type: Transform - pos: -35.5,58.5 - parent: 12 - - uid: 20683 - components: - - type: Transform - pos: -35.5,57.5 - parent: 12 - - uid: 20684 - components: - - type: Transform - pos: -35.5,56.5 - parent: 12 - - uid: 20685 - components: - - type: Transform - pos: -35.5,55.5 - parent: 12 - - uid: 20686 - components: - - type: Transform - pos: -35.5,54.5 - parent: 12 - - uid: 20687 - components: - - type: Transform - pos: -39.5,48.5 - parent: 12 - - uid: 20688 - components: - - type: Transform - pos: -39.5,47.5 - parent: 12 - - uid: 20689 - components: - - type: Transform - pos: -39.5,46.5 - parent: 12 - - uid: 20690 - components: - - type: Transform - pos: -39.5,45.5 - parent: 12 - - uid: 20691 - components: - - type: Transform - pos: -40.5,46.5 - parent: 12 - - uid: 20692 - components: - - type: Transform - pos: -39.5,44.5 - parent: 12 - - uid: 20693 - components: - - type: Transform - pos: -39.5,36.5 - parent: 12 - - uid: 20694 - components: - - type: Transform - pos: -39.5,37.5 - parent: 12 - - uid: 20695 - components: - - type: Transform - pos: -39.5,38.5 - parent: 12 - - uid: 20696 - components: - - type: Transform - pos: -39.5,39.5 - parent: 12 - - uid: 20697 - components: - - type: Transform - pos: -40.5,39.5 - parent: 12 - - uid: 20698 - components: - - type: Transform - pos: -41.5,39.5 - parent: 12 - - uid: 20699 - components: - - type: Transform - pos: -42.5,39.5 - parent: 12 - - uid: 20700 - components: - - type: Transform - pos: -43.5,39.5 - parent: 12 - - uid: 20701 - components: - - type: Transform - pos: -43.5,40.5 - parent: 12 - - uid: 20702 - components: - - type: Transform - pos: -43.5,41.5 - parent: 12 - - uid: 20703 - components: - - type: Transform - pos: -42.5,41.5 - parent: 12 - - uid: 20704 - components: - - type: Transform - pos: -41.5,41.5 - parent: 12 - - uid: 20705 - components: - - type: Transform - pos: -40.5,41.5 - parent: 12 - - uid: 20706 - components: - - type: Transform - pos: -39.5,41.5 - parent: 12 - - uid: 20707 - components: - - type: Transform - pos: -39.5,40.5 - parent: 12 - - uid: 20708 - components: - - type: Transform - pos: -37.5,40.5 - parent: 12 - - uid: 20709 - components: - - type: Transform - pos: -37.5,39.5 - parent: 12 - - uid: 20710 - components: - - type: Transform - pos: -37.5,38.5 - parent: 12 - - uid: 20711 - components: - - type: Transform - pos: -37.5,37.5 - parent: 12 - - uid: 20712 - components: - - type: Transform - pos: -37.5,36.5 - parent: 12 - - uid: 20713 - components: - - type: Transform - pos: -37.5,35.5 - parent: 12 - - uid: 20714 - components: - - type: Transform - pos: -36.5,35.5 - parent: 12 - - uid: 20715 - components: - - type: Transform - pos: -35.5,35.5 - parent: 12 - - uid: 20716 - components: - - type: Transform - pos: -34.5,35.5 - parent: 12 - - uid: 20717 - components: - - type: Transform - pos: -33.5,35.5 - parent: 12 - - uid: 20718 - components: - - type: Transform - pos: -33.5,34.5 - parent: 12 - - uid: 20719 - components: - - type: Transform - pos: -33.5,33.5 - parent: 12 - - uid: 20720 - components: - - type: Transform - pos: -33.5,36.5 - parent: 12 - - uid: 20721 - components: - - type: Transform - pos: -33.5,37.5 - parent: 12 - - uid: 20722 - components: - - type: Transform - pos: -33.5,38.5 - parent: 12 - - uid: 20723 - components: - - type: Transform - pos: -33.5,39.5 - parent: 12 - - uid: 20724 - components: - - type: Transform - pos: -33.5,40.5 - parent: 12 - - uid: 20725 - components: - - type: Transform - pos: -33.5,41.5 - parent: 12 - - uid: 20726 - components: - - type: Transform - pos: -36.5,40.5 - parent: 12 - - uid: 20727 - components: - - type: Transform - pos: -35.5,40.5 - parent: 12 - - uid: 20728 - components: - - type: Transform - pos: -34.5,40.5 - parent: 12 - - uid: 20729 - components: - - type: Transform - pos: -32.5,41.5 - parent: 12 - - uid: 20730 - components: - - type: Transform - pos: -32.5,42.5 - parent: 12 - - uid: 20731 - components: - - type: Transform - pos: -32.5,40.5 - parent: 12 - - uid: 20732 - components: - - type: Transform - pos: -31.5,40.5 - parent: 12 - - uid: 20733 - components: - - type: Transform - pos: -30.5,40.5 - parent: 12 - - uid: 20734 - components: - - type: Transform - pos: -35.5,41.5 - parent: 12 - - uid: 20735 - components: - - type: Transform - pos: -35.5,42.5 - parent: 12 - - uid: 20736 - components: - - type: Transform - pos: -35.5,43.5 - parent: 12 - - uid: 20737 - components: - - type: Transform - pos: -35.5,44.5 - parent: 12 - - uid: 20738 - components: - - type: Transform - pos: -35.5,45.5 - parent: 12 - - uid: 20739 - components: - - type: Transform - pos: -35.5,46.5 - parent: 12 - - uid: 20740 - components: - - type: Transform - pos: -35.5,47.5 - parent: 12 - - uid: 20741 - components: - - type: Transform - pos: -26.5,38.5 - parent: 12 - - uid: 20742 - components: - - type: Transform - pos: -25.5,38.5 - parent: 12 - - uid: 20743 - components: - - type: Transform - pos: -24.5,38.5 - parent: 12 - - uid: 20744 - components: - - type: Transform - pos: -23.5,38.5 - parent: 12 - - uid: 20745 - components: - - type: Transform - pos: -22.5,38.5 - parent: 12 - - uid: 20746 - components: - - type: Transform - pos: -21.5,38.5 - parent: 12 - - uid: 20747 - components: - - type: Transform - pos: -21.5,39.5 - parent: 12 - - uid: 20748 - components: - - type: Transform - pos: -21.5,40.5 - parent: 12 - - uid: 20749 - components: - - type: Transform - pos: -21.5,41.5 - parent: 12 - - uid: 20750 - components: - - type: Transform - pos: -21.5,42.5 - parent: 12 - - uid: 20751 - components: - - type: Transform - pos: -21.5,43.5 - parent: 12 - - uid: 20752 - components: - - type: Transform - pos: -21.5,44.5 - parent: 12 - - uid: 20753 - components: - - type: Transform - pos: -21.5,45.5 - parent: 12 - - uid: 20754 - components: - - type: Transform - pos: -21.5,46.5 - parent: 12 - - uid: 20755 - components: - - type: Transform - pos: -21.5,47.5 - parent: 12 - - uid: 20756 - components: - - type: Transform - pos: -22.5,45.5 - parent: 12 - - uid: 20757 - components: - - type: Transform - pos: -20.5,45.5 - parent: 12 - - uid: 20758 - components: - - type: Transform - pos: -22.5,47.5 - parent: 12 - - uid: 20759 - components: - - type: Transform - pos: -22.5,48.5 - parent: 12 - - uid: 20760 - components: - - type: Transform - pos: -19.5,45.5 - parent: 12 - - uid: 20761 - components: - - type: Transform - pos: -20.5,40.5 - parent: 12 - - uid: 20762 - components: - - type: Transform - pos: -27.5,38.5 - parent: 12 - - uid: 20763 - components: - - type: Transform - pos: -28.5,38.5 - parent: 12 - - uid: 20764 - components: - - type: Transform - pos: -29.5,38.5 - parent: 12 - - uid: 20765 - components: - - type: Transform - pos: -28.5,39.5 - parent: 12 - - uid: 20766 - components: - - type: Transform - pos: -28.5,40.5 - parent: 12 - - uid: 20789 - components: - - type: Transform - pos: 52.5,-8.5 - parent: 12 - - uid: 20802 - components: - - type: Transform - pos: -36.5,63.5 - parent: 12 - - uid: 20803 - components: - - type: Transform - pos: -36.5,64.5 - parent: 12 - - uid: 20804 - components: - - type: Transform - pos: -33.5,63.5 - parent: 12 - - uid: 20805 - components: - - type: Transform - pos: -33.5,64.5 - parent: 12 - - uid: 20820 - components: - - type: Transform - pos: -22.5,55.5 - parent: 12 - - uid: 20835 - components: - - type: Transform - pos: -23.5,-62.5 - parent: 12 - - uid: 20870 - components: - - type: Transform - pos: 6.5,-22.5 - parent: 12 - - uid: 20882 - components: - - type: Transform - pos: -19.5,40.5 - parent: 12 - - uid: 21064 - components: - - type: Transform - pos: -39.5,-25.5 - parent: 12 - - uid: 21068 - components: - - type: Transform - pos: -39.5,-24.5 - parent: 12 - - uid: 21093 - components: - - type: Transform - pos: -18.5,31.5 - parent: 12 - - uid: 21094 - components: - - type: Transform - pos: -17.5,31.5 - parent: 12 - - uid: 21095 - components: - - type: Transform - pos: -16.5,31.5 - parent: 12 - - uid: 21096 - components: - - type: Transform - pos: -16.5,30.5 - parent: 12 - - uid: 21097 - components: - - type: Transform - pos: -16.5,29.5 - parent: 12 - - uid: 21098 - components: - - type: Transform - pos: -16.5,28.5 - parent: 12 - - uid: 21099 - components: - - type: Transform - pos: -16.5,27.5 - parent: 12 - - uid: 21100 - components: - - type: Transform - pos: -16.5,26.5 - parent: 12 - - uid: 21101 - components: - - type: Transform - pos: -16.5,25.5 - parent: 12 - - uid: 21102 - components: - - type: Transform - pos: -16.5,24.5 - parent: 12 - - uid: 21103 - components: - - type: Transform - pos: -16.5,23.5 - parent: 12 - - uid: 21104 - components: - - type: Transform - pos: -16.5,22.5 - parent: 12 - - uid: 21105 - components: - - type: Transform - pos: -16.5,21.5 - parent: 12 - - uid: 21106 - components: - - type: Transform - pos: -16.5,20.5 - parent: 12 - - uid: 21107 - components: - - type: Transform - pos: -16.5,19.5 - parent: 12 - - uid: 21108 - components: - - type: Transform - pos: -16.5,18.5 - parent: 12 - - uid: 21109 - components: - - type: Transform - pos: -16.5,17.5 - parent: 12 - - uid: 21110 - components: - - type: Transform - pos: -16.5,16.5 - parent: 12 - - uid: 21111 - components: - - type: Transform - pos: -15.5,23.5 - parent: 12 - - uid: 21112 - components: - - type: Transform - pos: -23.5,31.5 - parent: 12 - - uid: 21113 - components: - - type: Transform - pos: -24.5,31.5 - parent: 12 - - uid: 21114 - components: - - type: Transform - pos: -25.5,31.5 - parent: 12 - - uid: 21115 - components: - - type: Transform - pos: -26.5,31.5 - parent: 12 - - uid: 21116 - components: - - type: Transform - pos: -26.5,32.5 - parent: 12 - - uid: 21117 - components: - - type: Transform - pos: -26.5,33.5 - parent: 12 - - uid: 21118 - components: - - type: Transform - pos: -27.5,33.5 - parent: 12 - - uid: 21119 - components: - - type: Transform - pos: -28.5,33.5 - parent: 12 - - uid: 21120 - components: - - type: Transform - pos: -29.5,33.5 - parent: 12 - - uid: 21121 - components: - - type: Transform - pos: -30.5,33.5 - parent: 12 - - uid: 21122 - components: - - type: Transform - pos: -25.5,30.5 - parent: 12 - - uid: 21123 - components: - - type: Transform - pos: -25.5,29.5 - parent: 12 - - uid: 21124 - components: - - type: Transform - pos: -25.5,28.5 - parent: 12 - - uid: 21125 - components: - - type: Transform - pos: -25.5,27.5 - parent: 12 - - uid: 21126 - components: - - type: Transform - pos: -25.5,26.5 - parent: 12 - - uid: 21127 - components: - - type: Transform - pos: -24.5,27.5 - parent: 12 - - uid: 21128 - components: - - type: Transform - pos: -23.5,27.5 - parent: 12 - - uid: 21129 - components: - - type: Transform - pos: -22.5,27.5 - parent: 12 - - uid: 21130 - components: - - type: Transform - pos: -28.5,29.5 - parent: 12 - - uid: 21131 - components: - - type: Transform - pos: -27.5,29.5 - parent: 12 - - uid: 21132 - components: - - type: Transform - pos: -26.5,29.5 - parent: 12 - - uid: 21133 - components: - - type: Transform - pos: -29.5,27.5 - parent: 12 - - uid: 21134 - components: - - type: Transform - pos: -30.5,27.5 - parent: 12 - - uid: 21135 - components: - - type: Transform - pos: -31.5,27.5 - parent: 12 - - uid: 21136 - components: - - type: Transform - pos: -32.5,27.5 - parent: 12 - - uid: 21137 - components: - - type: Transform - pos: -33.5,27.5 - parent: 12 - - uid: 21138 - components: - - type: Transform - pos: -34.5,27.5 - parent: 12 - - uid: 21139 - components: - - type: Transform - pos: -35.5,27.5 - parent: 12 - - uid: 21140 - components: - - type: Transform - pos: -36.5,27.5 - parent: 12 - - uid: 21141 - components: - - type: Transform - pos: -21.5,27.5 - parent: 12 - - uid: 21142 - components: - - type: Transform - pos: -38.5,27.5 - parent: 12 - - uid: 21143 - components: - - type: Transform - pos: -41.5,28.5 - parent: 12 - - uid: 21144 - components: - - type: Transform - pos: -41.5,29.5 - parent: 12 - - uid: 21145 - components: - - type: Transform - pos: -38.5,29.5 - parent: 12 - - uid: 21146 - components: - - type: Transform - pos: -38.5,30.5 - parent: 12 - - uid: 21147 - components: - - type: Transform - pos: -38.5,31.5 - parent: 12 - - uid: 21148 - components: - - type: Transform - pos: -37.5,30.5 - parent: 12 - - uid: 21149 - components: - - type: Transform - pos: -36.5,30.5 - parent: 12 - - uid: 21150 - components: - - type: Transform - pos: -35.5,30.5 - parent: 12 - - uid: 21151 - components: - - type: Transform - pos: -34.5,30.5 - parent: 12 - - uid: 21152 - components: - - type: Transform - pos: -33.5,30.5 - parent: 12 - - uid: 21153 - components: - - type: Transform - pos: -32.5,30.5 - parent: 12 - - uid: 21154 - components: - - type: Transform - pos: -31.5,30.5 - parent: 12 - - uid: 21155 - components: - - type: Transform - pos: -30.5,30.5 - parent: 12 - - uid: 21156 - components: - - type: Transform - pos: -29.5,30.5 - parent: 12 - - uid: 21157 - components: - - type: Transform - pos: -29.5,29.5 - parent: 12 - - uid: 21158 - components: - - type: Transform - pos: -38.5,26.5 - parent: 12 - - uid: 21159 - components: - - type: Transform - pos: -29.5,26.5 - parent: 12 - - uid: 21160 - components: - - type: Transform - pos: -28.5,26.5 - parent: 12 - - uid: 21161 - components: - - type: Transform - pos: -27.5,26.5 - parent: 12 - - uid: 21162 - components: - - type: Transform - pos: -26.5,26.5 - parent: 12 - - uid: 21163 - components: - - type: Transform - pos: -20.5,27.5 - parent: 12 - - uid: 21164 - components: - - type: Transform - pos: -19.5,27.5 - parent: 12 - - uid: 21165 - components: - - type: Transform - pos: -18.5,27.5 - parent: 12 - - uid: 21166 - components: - - type: Transform - pos: -18.5,28.5 - parent: 12 - - uid: 21191 - components: - - type: Transform - pos: -16.5,33.5 - parent: 12 - - uid: 21192 - components: - - type: Transform - pos: -16.5,34.5 - parent: 12 - - uid: 21193 - components: - - type: Transform - pos: -16.5,35.5 - parent: 12 - - uid: 21194 - components: - - type: Transform - pos: -16.5,36.5 - parent: 12 - - uid: 21195 - components: - - type: Transform - pos: -16.5,37.5 - parent: 12 - - uid: 21196 - components: - - type: Transform - pos: -16.5,38.5 - parent: 12 - - uid: 21197 - components: - - type: Transform - pos: -16.5,39.5 - parent: 12 - - uid: 21198 - components: - - type: Transform - pos: -16.5,40.5 - parent: 12 - - uid: 21199 - components: - - type: Transform - pos: -16.5,41.5 - parent: 12 - - uid: 21200 - components: - - type: Transform - pos: -16.5,42.5 - parent: 12 - - uid: 21201 - components: - - type: Transform - pos: -16.5,43.5 - parent: 12 - - uid: 21202 - components: - - type: Transform - pos: -16.5,44.5 - parent: 12 - - uid: 21203 - components: - - type: Transform - pos: -15.5,44.5 - parent: 12 - - uid: 21204 - components: - - type: Transform - pos: -14.5,44.5 - parent: 12 - - uid: 21205 - components: - - type: Transform - pos: -13.5,44.5 - parent: 12 - - uid: 21206 - components: - - type: Transform - pos: -12.5,44.5 - parent: 12 - - uid: 21207 - components: - - type: Transform - pos: -11.5,44.5 - parent: 12 - - uid: 21208 - components: - - type: Transform - pos: -10.5,44.5 - parent: 12 - - uid: 21209 - components: - - type: Transform - pos: -9.5,44.5 - parent: 12 - - uid: 21210 - components: - - type: Transform - pos: -8.5,44.5 - parent: 12 - - uid: 21211 - components: - - type: Transform - pos: -7.5,44.5 - parent: 12 - - uid: 21212 - components: - - type: Transform - pos: -6.5,44.5 - parent: 12 - - uid: 21213 - components: - - type: Transform - pos: -5.5,44.5 - parent: 12 - - uid: 21214 - components: - - type: Transform - pos: -4.5,44.5 - parent: 12 - - uid: 21215 - components: - - type: Transform - pos: -3.5,44.5 - parent: 12 - - uid: 21216 - components: - - type: Transform - pos: -19.5,31.5 - parent: 12 - - uid: 21217 - components: - - type: Transform - pos: -15.5,42.5 - parent: 12 - - uid: 21218 - components: - - type: Transform - pos: -14.5,42.5 - parent: 12 - - uid: 21219 - components: - - type: Transform - pos: -14.5,43.5 - parent: 12 - - uid: 21220 - components: - - type: Transform - pos: -11.5,45.5 - parent: 12 - - uid: 21221 - components: - - type: Transform - pos: -11.5,46.5 - parent: 12 - - uid: 21222 - components: - - type: Transform - pos: -20.5,31.5 - parent: 12 - - uid: 21223 - components: - - type: Transform - pos: -21.5,31.5 - parent: 12 - - uid: 21224 - components: - - type: Transform - pos: -21.5,32.5 - parent: 12 - - uid: 21225 - components: - - type: Transform - pos: -20.5,32.5 - parent: 12 - - uid: 21273 - components: - - type: Transform - pos: 51.5,61.5 - parent: 12 - - uid: 21482 - components: - - type: Transform - pos: -17.5,17.5 - parent: 12 - - uid: 21483 - components: - - type: Transform - pos: -18.5,17.5 - parent: 12 - - uid: 21484 - components: - - type: Transform - pos: -19.5,17.5 - parent: 12 - - uid: 21485 - components: - - type: Transform - pos: -20.5,17.5 - parent: 12 - - uid: 21486 - components: - - type: Transform - pos: -21.5,17.5 - parent: 12 - - uid: 21487 - components: - - type: Transform - pos: -22.5,17.5 - parent: 12 - - uid: 21488 - components: - - type: Transform - pos: -23.5,17.5 - parent: 12 - - uid: 21489 - components: - - type: Transform - pos: -23.5,18.5 - parent: 12 - - uid: 21490 - components: - - type: Transform - pos: -23.5,19.5 - parent: 12 - - uid: 21491 - components: - - type: Transform - pos: -23.5,20.5 - parent: 12 - - uid: 21492 - components: - - type: Transform - pos: -23.5,21.5 - parent: 12 - - uid: 21493 - components: - - type: Transform - pos: -23.5,22.5 - parent: 12 - - uid: 21494 - components: - - type: Transform - pos: -23.5,23.5 - parent: 12 - - uid: 21495 - components: - - type: Transform - pos: -27.5,22.5 - parent: 12 - - uid: 21496 - components: - - type: Transform - pos: -26.5,22.5 - parent: 12 - - uid: 21497 - components: - - type: Transform - pos: -25.5,22.5 - parent: 12 - - uid: 21498 - components: - - 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 - pos: -4.5,-5.5 - parent: 12 - - uid: 21923 - components: - - type: Transform - pos: -5.5,-5.5 - parent: 12 - - uid: 21936 - components: - - type: Transform - pos: -23.5,55.5 - parent: 12 - - uid: 21966 - components: - - type: Transform - pos: -5.5,-7.5 - parent: 12 - - uid: 21998 - components: - - type: Transform - pos: -9.5,-0.5 - parent: 12 - - uid: 22000 - components: - - 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: 22060 - components: - - type: Transform - pos: -24.5,55.5 - parent: 12 - - uid: 22099 - components: - - 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 - pos: 33.5,-5.5 - parent: 12 - - uid: 22218 - components: - - type: Transform - pos: 34.5,-5.5 - parent: 12 - - uid: 22219 - components: - - type: Transform - pos: 35.5,-5.5 - parent: 12 - - uid: 22220 - components: - - type: Transform - pos: 36.5,-5.5 - parent: 12 - - uid: 22221 - components: - - type: Transform - pos: 37.5,-5.5 - parent: 12 - - uid: 22222 - components: - - type: Transform - pos: 38.5,-5.5 - parent: 12 - - uid: 22223 - components: - - type: Transform - pos: 39.5,-5.5 - parent: 12 - - uid: 22228 - components: - - type: Transform - pos: 40.5,-5.5 - parent: 12 - - uid: 22229 - components: - - type: Transform - pos: 32.5,-7.5 - parent: 12 - - uid: 22230 - components: - - type: Transform - pos: 33.5,-7.5 - parent: 12 - - uid: 22231 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 12 - - uid: 22298 - components: - - type: Transform - pos: 32.5,16.5 - parent: 12 - - uid: 22299 - components: - - type: Transform - pos: 32.5,15.5 - parent: 12 - - uid: 22300 - components: - - type: Transform - pos: 32.5,17.5 - parent: 12 - - uid: 22313 - components: - - type: Transform - pos: 38.5,17.5 - parent: 12 - - uid: 22519 - components: - - type: Transform - pos: -2.5,34.5 - parent: 12 - - uid: 23125 - components: - - type: Transform - pos: 50.5,-5.5 - parent: 12 - - uid: 23137 - components: - - type: Transform - pos: 21.5,4.5 - parent: 12 - - uid: 23154 - components: - - type: Transform - pos: -27.5,61.5 - parent: 12 - - uid: 23661 - components: - - type: Transform - pos: 7.5,-43.5 - parent: 12 - - uid: 23888 - components: - - type: Transform - pos: -43.5,56.5 - parent: 12 - - uid: 23892 - components: - - type: Transform - pos: 42.5,43.5 - parent: 12 - - uid: 24202 - components: - - type: Transform - pos: 47.5,-5.5 - parent: 12 - - uid: 24204 - components: - - type: Transform - pos: 46.5,-5.5 - parent: 12 - - uid: 24234 - components: - - type: Transform - pos: 31.5,-56.5 - parent: 12 - - uid: 24295 - components: - - type: Transform - pos: -24.5,-60.5 - parent: 12 - - uid: 24325 - components: - - type: Transform - pos: 13.5,-57.5 - parent: 12 - - uid: 24332 - components: - - type: Transform - pos: -43.5,57.5 - parent: 12 - - uid: 24337 - components: - - type: Transform - pos: -28.5,10.5 - parent: 12 - - uid: 24455 - components: - - type: Transform - pos: 45.5,-5.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: 24651 - components: - - type: Transform - pos: 40.5,11.5 - parent: 12 - - uid: 24660 - components: - - type: Transform - pos: -24.5,-61.5 - parent: 12 - - uid: 24665 - components: - - type: Transform - pos: -23.5,-61.5 - parent: 12 - - uid: 24803 - components: - - type: Transform - pos: -12.5,51.5 - parent: 12 - - uid: 24808 - components: - - type: Transform - pos: -13.5,51.5 - parent: 12 - - uid: 24809 - components: - - type: Transform - pos: -14.5,51.5 - parent: 12 - - uid: 24810 - components: - - type: Transform - pos: -14.5,50.5 - parent: 12 - - uid: 24811 - components: - - type: Transform - pos: -14.5,49.5 - parent: 12 - - uid: 24812 - components: - - type: Transform - pos: -14.5,48.5 - parent: 12 - - uid: 24813 - components: - - type: Transform - pos: -14.5,47.5 - parent: 12 - - uid: 24814 - components: - - type: Transform - pos: -14.5,52.5 - parent: 12 - - uid: 24815 - components: - - type: Transform - pos: -14.5,54.5 - parent: 12 - - uid: 24816 - components: - - type: Transform - pos: -14.5,55.5 - parent: 12 - - uid: 24817 - components: - - type: Transform - pos: -14.5,53.5 - parent: 12 - - uid: 24818 - components: - - type: Transform - pos: -15.5,55.5 - parent: 12 - - uid: 24819 - components: - - type: Transform - pos: -16.5,55.5 - parent: 12 - - uid: 24820 - components: - - type: Transform - pos: -10.5,51.5 - parent: 12 - - uid: 24821 - components: - - type: Transform - pos: -9.5,51.5 - parent: 12 - - uid: 24822 - components: - - type: Transform - pos: -9.5,52.5 - parent: 12 - - uid: 24823 - components: - - type: Transform - pos: -9.5,54.5 - parent: 12 - - uid: 24824 - components: - - type: Transform - pos: -9.5,55.5 - parent: 12 - - uid: 24825 - components: - - type: Transform - pos: -9.5,56.5 - parent: 12 - - uid: 24826 - components: - - type: Transform - pos: -9.5,53.5 - parent: 12 - - uid: 24827 - components: - - type: Transform - pos: -9.5,50.5 - parent: 12 - - uid: 24828 - components: - - type: Transform - pos: -9.5,49.5 - parent: 12 - - uid: 24829 - components: - - type: Transform - pos: -9.5,48.5 - parent: 12 - - uid: 24830 - components: - - type: Transform - pos: -9.5,47.5 - parent: 12 - - uid: 24831 - components: - - type: Transform - pos: -8.5,48.5 - parent: 12 - - uid: 24832 - components: - - type: Transform - pos: -6.5,48.5 - parent: 12 - - uid: 24833 - components: - - type: Transform - pos: -7.5,48.5 - parent: 12 - - uid: 24834 - components: - - type: Transform - pos: -5.5,48.5 - parent: 12 - - uid: 24835 - components: - - type: Transform - pos: -5.5,48.5 - parent: 12 - - uid: 24836 - components: - - type: Transform - pos: -5.5,49.5 - parent: 12 - - uid: 24837 - components: - - type: Transform - pos: -5.5,50.5 - parent: 12 - - uid: 24838 - components: - - type: Transform - pos: -5.5,51.5 - parent: 12 - - uid: 24839 - components: - - type: Transform - pos: -5.5,52.5 - parent: 12 - - uid: 24840 - components: - - type: Transform - pos: -5.5,53.5 - parent: 12 - - uid: 24841 - components: - - type: Transform - pos: -5.5,54.5 - parent: 12 - - uid: 24842 - components: - - type: Transform - pos: -5.5,55.5 - parent: 12 - - uid: 24843 - components: - - type: Transform - pos: -5.5,56.5 - parent: 12 - - uid: 24844 - components: - - type: Transform - pos: -5.5,56.5 - parent: 12 - - uid: 24845 - components: - - type: Transform - pos: -5.5,56.5 - parent: 12 - - uid: 24846 - components: - - type: Transform - pos: -8.5,57.5 - parent: 12 - - uid: 24847 - components: - - type: Transform - pos: -8.5,58.5 - parent: 12 - - uid: 24848 - components: - - type: Transform - pos: -8.5,59.5 - parent: 12 - - uid: 24849 - components: - - type: Transform - pos: -8.5,61.5 - parent: 12 - - uid: 24850 - components: - - type: Transform - pos: -8.5,60.5 - parent: 12 - - uid: 24851 - components: - - type: Transform - pos: -7.5,61.5 - parent: 12 - - uid: 24852 - components: - - type: Transform - pos: -6.5,61.5 - parent: 12 - - uid: 24853 - components: - - type: Transform - pos: -5.5,61.5 - parent: 12 - - uid: 24854 - components: - - type: Transform - pos: -4.5,61.5 - parent: 12 - - uid: 24855 - components: - - type: Transform - pos: -3.5,61.5 - parent: 12 - - uid: 24856 - components: - - type: Transform - pos: -3.5,60.5 - parent: 12 - - uid: 24857 - components: - - type: Transform - pos: -3.5,59.5 - parent: 12 - - uid: 24858 - components: - - type: Transform - pos: -3.5,58.5 - parent: 12 - - uid: 24859 - components: - - type: Transform - pos: -3.5,62.5 - parent: 12 - - uid: 24860 - components: - - type: Transform - pos: -3.5,63.5 - parent: 12 - - uid: 24861 - components: - - type: Transform - pos: -3.5,64.5 - parent: 12 - - uid: 24862 - components: - - type: Transform - pos: -3.5,65.5 - parent: 12 - - uid: 24863 - components: - - type: Transform - pos: -8.5,62.5 - parent: 12 - - uid: 24864 - components: - - type: Transform - pos: -8.5,63.5 - parent: 12 - - uid: 24865 - components: - - type: Transform - pos: -9.5,63.5 - parent: 12 - - uid: 24866 - components: - - type: Transform - pos: -10.5,63.5 - parent: 12 - - uid: 24867 - components: - - type: Transform - pos: -12.5,63.5 - parent: 12 - - uid: 24868 - components: - - type: Transform - pos: -13.5,63.5 - parent: 12 - - uid: 24869 - components: - - type: Transform - pos: -14.5,63.5 - parent: 12 - - uid: 24870 - components: - - type: Transform - pos: -15.5,63.5 - parent: 12 - - uid: 24871 - components: - - type: Transform - pos: -11.5,63.5 - parent: 12 - - uid: 24872 - components: - - type: Transform - pos: -15.5,64.5 - parent: 12 - - uid: 24873 - components: - - type: Transform - pos: -15.5,65.5 - parent: 12 - - uid: 24874 - components: - - type: Transform - pos: -15.5,62.5 - parent: 12 - - uid: 24875 - components: - - type: Transform - pos: -15.5,61.5 - parent: 12 - - uid: 24876 - components: - - type: Transform - pos: -15.5,60.5 - parent: 12 - - uid: 24877 - components: - - type: Transform - pos: -15.5,59.5 - parent: 12 - - uid: 24878 - components: - - type: Transform - pos: -15.5,58.5 - parent: 12 - - uid: 24879 - components: - - type: Transform - pos: -11.5,64.5 - parent: 12 - - uid: 24880 - components: - - type: Transform - pos: -11.5,65.5 - parent: 12 - - uid: 24881 - components: - - type: Transform - pos: -11.5,62.5 - parent: 12 - - uid: 24882 - components: - - type: Transform - pos: -11.5,60.5 - parent: 12 - - uid: 24883 - components: - - type: Transform - pos: -11.5,59.5 - parent: 12 - - uid: 24884 - components: - - type: Transform - pos: -11.5,58.5 - parent: 12 - - uid: 24885 - components: - - type: Transform - pos: -11.5,61.5 - parent: 12 - - uid: 24886 - components: - - type: Transform - pos: -7.5,63.5 - parent: 12 - - uid: 24887 - components: - - type: Transform - pos: -7.5,64.5 - parent: 12 - - uid: 24888 - components: - - type: Transform - pos: -7.5,65.5 - parent: 12 - - uid: 24889 - components: - - type: Transform - pos: -9.5,64.5 - parent: 12 - - uid: 24890 - components: - - type: Transform - pos: -9.5,66.5 - parent: 12 - - uid: 24891 - components: - - type: Transform - pos: -9.5,67.5 - parent: 12 - - uid: 24893 - components: - - type: Transform - pos: -9.5,69.5 - parent: 12 - - uid: 24894 - components: - - type: Transform - pos: -9.5,70.5 - parent: 12 - - uid: 24895 - components: - - type: Transform - pos: -9.5,71.5 - parent: 12 - - uid: 24896 - components: - - type: Transform - pos: -9.5,72.5 - parent: 12 - - uid: 24897 - components: - - type: Transform - pos: -9.5,65.5 - parent: 12 - - uid: 24898 - components: - - type: Transform - pos: -20.5,64.5 - parent: 12 - - uid: 24899 - components: - - type: Transform - pos: -19.5,64.5 - parent: 12 - - uid: 24900 - components: - - type: Transform - pos: -19.5,63.5 - parent: 12 - - uid: 24901 - components: - - type: Transform - pos: -19.5,62.5 - parent: 12 - - uid: 24902 - components: - - type: Transform - pos: -19.5,61.5 - parent: 12 - - uid: 24903 - components: - - type: Transform - pos: -19.5,60.5 - parent: 12 - - uid: 24904 - components: - - type: Transform - pos: -19.5,59.5 - parent: 12 - - uid: 24905 - components: - - type: Transform - pos: -19.5,58.5 - parent: 12 - - uid: 24906 - components: - - type: Transform - pos: -19.5,57.5 - parent: 12 - - uid: 24907 - components: - - type: Transform - pos: -19.5,55.5 - parent: 12 - - uid: 24908 - components: - - type: Transform - pos: -19.5,54.5 - parent: 12 - - uid: 24909 - components: - - type: Transform - pos: -19.5,53.5 - parent: 12 - - uid: 24910 - components: - - type: Transform - pos: -19.5,52.5 - parent: 12 - - uid: 24911 - components: - - type: Transform - pos: -19.5,51.5 - parent: 12 - - uid: 24912 - components: - - type: Transform - pos: -19.5,50.5 - parent: 12 - - uid: 24913 - components: - - type: Transform - pos: -19.5,56.5 - parent: 12 - - uid: 24914 - components: - - type: Transform - pos: -20.5,50.5 - parent: 12 - - uid: 24915 - components: - - type: Transform - pos: -21.5,50.5 - parent: 12 - - uid: 24916 - components: - - type: Transform - pos: -22.5,50.5 - parent: 12 - - uid: 24917 - components: - - type: Transform - pos: -19.5,65.5 - parent: 12 - - uid: 24918 - components: - - type: Transform - pos: -19.5,67.5 - parent: 12 - - uid: 24919 - components: - - type: Transform - pos: -19.5,68.5 - parent: 12 - - uid: 24920 - components: - - type: Transform - pos: -19.5,66.5 - parent: 12 - - uid: 24921 - components: - - type: Transform - pos: -18.5,68.5 - parent: 12 - - uid: 24922 - components: - - type: Transform - pos: -17.5,68.5 - parent: 12 - - uid: 24923 - components: - - type: Transform - pos: -16.5,68.5 - parent: 12 - - uid: 24924 - components: - - type: Transform - pos: -15.5,68.5 - parent: 12 - - uid: 24925 - components: - - type: Transform - pos: -14.5,68.5 - parent: 12 - - uid: 24926 - components: - - type: Transform - pos: -13.5,68.5 - parent: 12 - - uid: 24927 - components: - - type: Transform - pos: -13.5,69.5 - parent: 12 - - uid: 24928 - components: - - type: Transform - pos: -12.5,69.5 - parent: 12 - - uid: 24929 - components: - - type: Transform - pos: -11.5,69.5 - parent: 12 - - uid: 24930 - components: - - type: Transform - pos: -7.5,69.5 - parent: 12 - - uid: 24931 - components: - - type: Transform - pos: -5.5,69.5 - parent: 12 - - uid: 24932 - components: - - type: Transform - pos: -4.5,69.5 - parent: 12 - - uid: 24933 - components: - - type: Transform - pos: -6.5,69.5 - parent: 12 - - uid: 24934 - components: - - type: Transform - pos: -3.5,69.5 - parent: 12 - - uid: 24935 - components: - - type: Transform - pos: -1.5,69.5 - parent: 12 - - uid: 24936 - components: - - type: Transform - pos: -0.5,69.5 - parent: 12 - - uid: 24937 - components: - - type: Transform - pos: -2.5,69.5 - parent: 12 - - uid: 24938 - components: - - type: Transform - pos: -0.5,68.5 - parent: 12 - - uid: 24939 - components: - - type: Transform - pos: -0.5,66.5 - parent: 12 - - uid: 24940 - components: - - type: Transform - pos: -0.5,65.5 - parent: 12 - - uid: 24941 - components: - - type: Transform - pos: -0.5,64.5 - parent: 12 - - uid: 24942 - components: - - type: Transform - pos: -0.5,63.5 - parent: 12 - - uid: 24943 - components: - - type: Transform - pos: -0.5,62.5 - parent: 12 - - uid: 24944 - components: - - type: Transform - pos: -0.5,61.5 - parent: 12 - - uid: 24945 - components: - - type: Transform - pos: -0.5,60.5 - parent: 12 - - uid: 24946 - components: - - type: Transform - pos: -0.5,59.5 - parent: 12 - - uid: 24947 - components: - - type: Transform - pos: -0.5,58.5 - parent: 12 - - uid: 24948 - components: - - type: Transform - pos: -0.5,57.5 - parent: 12 - - uid: 24949 - components: - - type: Transform - pos: -0.5,56.5 - parent: 12 - - uid: 24950 - components: - - type: Transform - pos: -0.5,55.5 - parent: 12 - - uid: 24951 - components: - - type: Transform - pos: -0.5,67.5 - parent: 12 - - uid: 24952 - components: - - type: Transform - pos: -1.5,55.5 - parent: 12 - - uid: 24953 - components: - - type: Transform - pos: -1.5,54.5 - parent: 12 - - uid: 24954 - components: - - type: Transform - pos: -1.5,53.5 - parent: 12 - - uid: 24955 - components: - - type: Transform - pos: -1.5,52.5 - parent: 12 - - uid: 24956 - components: - - type: Transform - pos: -1.5,51.5 - parent: 12 - - uid: 24957 - components: - - type: Transform - pos: -1.5,50.5 - parent: 12 - - uid: 24958 - components: - - type: Transform - pos: -1.5,49.5 - parent: 12 - - uid: 24959 - components: - - type: Transform - pos: -1.5,47.5 - parent: 12 - - uid: 24960 - components: - - type: Transform - pos: -1.5,48.5 - parent: 12 - - uid: 24961 - components: - - type: Transform - pos: 0.5,62.5 - parent: 12 - - uid: 24962 - components: - - type: Transform - pos: 1.5,62.5 - parent: 12 - - uid: 24963 - components: - - type: Transform - pos: 2.5,62.5 - parent: 12 - - uid: 24964 - components: - - type: Transform - pos: 3.5,62.5 - parent: 12 - - uid: 24965 - components: - - type: Transform - pos: 4.5,62.5 - parent: 12 - - uid: 24966 - components: - - type: Transform - pos: 5.5,62.5 - parent: 12 - - uid: 24967 - components: - - type: Transform - pos: 6.5,62.5 - parent: 12 - - uid: 24968 - components: - - type: Transform - pos: 7.5,62.5 - parent: 12 - - uid: 24969 - components: - - type: Transform - pos: 8.5,62.5 - parent: 12 - - uid: 24970 - components: - - type: Transform - pos: 9.5,62.5 - parent: 12 - - uid: 24971 - components: - - type: Transform - pos: 10.5,62.5 - parent: 12 - - uid: 24972 - components: - - type: Transform - pos: 12.5,62.5 - parent: 12 - - uid: 24973 - components: - - type: Transform - pos: 13.5,62.5 - parent: 12 - - uid: 24974 - components: - - type: Transform - pos: 14.5,62.5 - parent: 12 - - uid: 24975 - components: - - type: Transform - pos: 11.5,62.5 - parent: 12 - - uid: 24976 - components: - - type: Transform - pos: 5.5,63.5 - parent: 12 - - uid: 24977 - components: - - type: Transform - pos: 3.5,63.5 - parent: 12 - - uid: 24978 - components: - - type: Transform - pos: 3.5,64.5 - parent: 12 - - uid: 24979 - components: - - type: Transform - pos: 3.5,65.5 - parent: 12 - - uid: 24987 - components: - - type: Transform - pos: 7.5,63.5 - parent: 12 - - uid: 24988 - components: - - type: Transform - pos: 7.5,64.5 - parent: 12 - - uid: 24989 - components: - - type: Transform - pos: 7.5,65.5 - parent: 12 - - uid: 24990 - components: - - type: Transform - pos: 8.5,65.5 - parent: 12 - - uid: 24991 - components: - - type: Transform - pos: 9.5,65.5 - parent: 12 - - uid: 24992 - components: - - type: Transform - pos: 10.5,65.5 - parent: 12 - - uid: 24993 - components: - - type: Transform - pos: 10.5,66.5 - parent: 12 - - uid: 25059 - components: - - type: Transform - pos: 9.5,44.5 - parent: 12 - - uid: 25109 - components: - - type: Transform - pos: 45.5,54.5 - parent: 12 - - uid: 25110 - components: - - type: Transform - pos: 45.5,53.5 - parent: 12 - - uid: 25111 - components: - - type: Transform - pos: 45.5,52.5 - parent: 12 - - uid: 25112 - components: - - type: Transform - pos: 45.5,51.5 - parent: 12 - - uid: 25113 - components: - - type: Transform - pos: 45.5,50.5 - parent: 12 - - uid: 25114 - components: - - type: Transform - pos: 45.5,49.5 - parent: 12 - - uid: 25115 - components: - - type: Transform - pos: 45.5,48.5 - parent: 12 - - uid: 25116 - components: - - type: Transform - pos: 45.5,47.5 - parent: 12 - - uid: 25117 - components: - - type: Transform - pos: 44.5,48.5 - parent: 12 - - uid: 25118 - components: - - type: Transform - pos: 46.5,48.5 - parent: 12 - - uid: 25119 - components: - - type: Transform - pos: 47.5,48.5 - parent: 12 - - uid: 25120 - components: - - type: Transform - pos: 48.5,48.5 - parent: 12 - - uid: 25121 - components: - - type: Transform - pos: 47.5,49.5 - parent: 12 - - uid: 25122 - components: - - type: Transform - pos: 47.5,50.5 - parent: 12 - - uid: 25123 - components: - - type: Transform - pos: 47.5,51.5 - parent: 12 - - uid: 25124 - components: - - type: Transform - pos: 47.5,52.5 - parent: 12 - - uid: 25125 - components: - - type: Transform - pos: 46.5,52.5 - parent: 12 - - uid: 25126 - components: - - type: Transform - pos: 60.5,46.5 - parent: 12 - - uid: 25127 - components: - - type: Transform - pos: 60.5,45.5 - parent: 12 - - uid: 25128 - components: - - type: Transform - pos: 60.5,44.5 - parent: 12 - - uid: 25129 - components: - - type: Transform - pos: 60.5,43.5 - parent: 12 - - uid: 25130 - components: - - type: Transform - pos: 61.5,44.5 - parent: 12 - - uid: 25131 - components: - - type: Transform - pos: 62.5,44.5 - parent: 12 - - uid: 25132 - components: - - type: Transform - pos: 63.5,44.5 - parent: 12 - - uid: 25133 - components: - - type: Transform - pos: 64.5,44.5 - parent: 12 - - uid: 25134 - components: - - 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 - pos: 69.5,44.5 - parent: 12 - - uid: 25138 - components: - - type: Transform - pos: 70.5,44.5 - parent: 12 - - uid: 25139 - components: - - type: Transform - pos: 71.5,44.5 - parent: 12 - - uid: 25140 - components: - - type: Transform - pos: 72.5,44.5 - parent: 12 - - uid: 25141 - components: - - type: Transform - pos: 73.5,44.5 - parent: 12 - - uid: 25143 - components: - - type: Transform - pos: 74.5,44.5 - parent: 12 - - uid: 25144 - components: - - type: Transform - pos: 75.5,44.5 - parent: 12 - - uid: 25145 - components: - - type: Transform - pos: 76.5,44.5 - parent: 12 - - uid: 25146 - components: - - type: Transform - pos: 75.5,45.5 - parent: 12 - - uid: 25147 - components: - - type: Transform - pos: 75.5,46.5 - parent: 12 - - uid: 25148 - components: - - type: Transform - pos: 75.5,47.5 - parent: 12 - - uid: 25149 - components: - - type: Transform - pos: 75.5,48.5 - parent: 12 - - uid: 25150 - components: - - type: Transform - pos: 75.5,49.5 - parent: 12 - - uid: 25151 - components: - - type: Transform - pos: 75.5,50.5 - parent: 12 - - uid: 25152 - components: - - type: Transform - pos: 75.5,51.5 - parent: 12 - - uid: 25153 - components: - - type: Transform - pos: 75.5,52.5 - parent: 12 - - uid: 25154 - components: - - type: Transform - pos: 75.5,53.5 - parent: 12 - - uid: 25155 - components: - - type: Transform - pos: 75.5,54.5 - parent: 12 - - uid: 25156 - components: - - type: Transform - pos: 74.5,53.5 - parent: 12 - - uid: 25157 - components: - - type: Transform - pos: 73.5,53.5 - parent: 12 - - uid: 25158 - components: - - type: Transform - pos: 72.5,53.5 - parent: 12 - - uid: 25159 - components: - - type: Transform - pos: 71.5,53.5 - parent: 12 - - uid: 25160 - components: - - type: Transform - pos: 70.5,53.5 - parent: 12 - - uid: 25161 - components: - - type: Transform - pos: 69.5,53.5 - parent: 12 - - uid: 25162 - components: - - type: Transform - pos: 68.5,53.5 - parent: 12 - - uid: 25163 - components: - - type: Transform - pos: 67.5,53.5 - parent: 12 - - uid: 25164 - components: - - type: Transform - pos: 66.5,53.5 - parent: 12 - - uid: 25165 - components: - - type: Transform - pos: 69.5,52.5 - parent: 12 - - uid: 25166 - components: - - type: Transform - pos: 69.5,50.5 - parent: 12 - - uid: 25167 - components: - - type: Transform - pos: 69.5,49.5 - parent: 12 - - uid: 25168 - components: - - type: Transform - pos: 69.5,48.5 - parent: 12 - - uid: 25169 - components: - - type: Transform - pos: 69.5,51.5 - parent: 12 - - uid: 25170 - components: - - type: Transform - pos: 69.5,46.5 - parent: 12 - - uid: 25171 - components: - - type: Transform - pos: 69.5,45.5 - parent: 12 - - uid: 25172 - components: - - type: Transform - pos: 69.5,47.5 - parent: 12 - - uid: 25173 - components: - - type: Transform - pos: 68.5,49.5 - parent: 12 - - uid: 25174 - components: - - type: Transform - pos: 67.5,49.5 - parent: 12 - - uid: 25175 - components: - - type: Transform - pos: 66.5,49.5 - parent: 12 - - uid: 25176 - components: - - type: Transform - pos: 65.5,49.5 - parent: 12 - - uid: 25177 - components: - - type: Transform - pos: 64.5,49.5 - parent: 12 - - uid: 25178 - components: - - type: Transform - pos: 63.5,49.5 - parent: 12 - - uid: 25179 - components: - - type: Transform - pos: 62.5,49.5 - parent: 12 - - uid: 25180 - components: - - type: Transform - pos: 61.5,49.5 - parent: 12 - - uid: 25181 - components: - - type: Transform - pos: 60.5,49.5 - parent: 12 - - uid: 25182 - components: - - type: Transform - pos: 59.5,49.5 - parent: 12 - - uid: 25183 - components: - - type: Transform - pos: 58.5,49.5 - parent: 12 - - uid: 25184 - components: - - type: Transform - pos: 57.5,49.5 - parent: 12 - - uid: 25185 - components: - - type: Transform - pos: 56.5,49.5 - parent: 12 - - uid: 25186 - components: - - type: Transform - pos: 55.5,49.5 - parent: 12 - - uid: 25187 - components: - - type: Transform - pos: 54.5,49.5 - parent: 12 - - uid: 25188 - components: - - type: Transform - pos: 54.5,48.5 - parent: 12 - - uid: 25189 - components: - - type: Transform - pos: 54.5,47.5 - parent: 12 - - uid: 25198 - components: - - type: Transform - pos: 58.5,54.5 - parent: 12 - - uid: 25202 - components: - - type: Transform - pos: 58.5,52.5 - parent: 12 - - uid: 25203 - components: - - type: Transform - pos: 58.5,53.5 - parent: 12 - - uid: 25204 - components: - - type: Transform - pos: 58.5,55.5 - parent: 12 - - uid: 25205 - components: - - type: Transform - pos: 58.5,56.5 - parent: 12 - - uid: 25206 - components: - - type: Transform - pos: 58.5,57.5 - parent: 12 - - uid: 25207 - components: - - type: Transform - pos: 58.5,58.5 - parent: 12 - - uid: 25208 - components: - - type: Transform - pos: 18.5,64.5 - parent: 12 - - uid: 25209 - components: - - type: Transform - pos: 18.5,63.5 - parent: 12 - - uid: 25210 - components: - - type: Transform - pos: 18.5,62.5 - parent: 12 - - uid: 25211 - components: - - type: Transform - pos: 18.5,61.5 - parent: 12 - - uid: 25212 - components: - - type: Transform - pos: 18.5,60.5 - parent: 12 - - uid: 25213 - components: - - type: Transform - pos: 18.5,59.5 - parent: 12 - - uid: 25214 - components: - - type: Transform - pos: 18.5,58.5 - parent: 12 - - uid: 25215 - components: - - type: Transform - pos: 18.5,57.5 - parent: 12 - - uid: 25216 - components: - - type: Transform - pos: 18.5,56.5 - parent: 12 - - uid: 25217 - components: - - type: Transform - pos: 19.5,58.5 - parent: 12 - - uid: 25218 - components: - - type: Transform - pos: 20.5,58.5 - parent: 12 - - uid: 25219 - components: - - type: Transform - pos: 21.5,58.5 - parent: 12 - - uid: 25220 - components: - - type: Transform - pos: 22.5,58.5 - parent: 12 - - uid: 25221 - components: - - type: Transform - pos: 22.5,57.5 - parent: 12 - - uid: 25222 - components: - - type: Transform - pos: 22.5,59.5 - parent: 12 - - uid: 25223 - components: - - type: Transform - pos: 37.5,51.5 - parent: 12 - - uid: 25224 - components: - - type: Transform - pos: 38.5,51.5 - parent: 12 - - uid: 25225 - components: - - type: Transform - pos: 39.5,51.5 - parent: 12 - - uid: 25226 - components: - - type: Transform - pos: 40.5,51.5 - parent: 12 - - uid: 25227 - components: - - type: Transform - pos: 41.5,51.5 - parent: 12 - - uid: 25228 - components: - - type: Transform - pos: 41.5,52.5 - parent: 12 - - uid: 25229 - components: - - type: Transform - pos: 51.5,60.5 - parent: 12 - - uid: 25230 - components: - - type: Transform - pos: 51.5,59.5 - parent: 12 - - uid: 25231 - components: - - type: Transform - pos: 51.5,58.5 - parent: 12 - - uid: 25232 - components: - - type: Transform - pos: 51.5,56.5 - parent: 12 - - uid: 25233 - components: - - type: Transform - pos: 32.5,-14.5 - parent: 12 - - uid: 25234 - components: - - type: Transform - pos: 51.5,57.5 - parent: 12 - - uid: 25235 - components: - - type: Transform - pos: 50.5,56.5 - parent: 12 - - uid: 25236 - components: - - type: Transform - pos: 49.5,56.5 - parent: 12 - - uid: 25237 - components: - - type: Transform - pos: 48.5,56.5 - parent: 12 - - uid: 25238 - components: - - type: Transform - pos: 47.5,56.5 - parent: 12 - - uid: 25239 - components: - - type: Transform - pos: 46.5,56.5 - parent: 12 - - uid: 25240 - components: - - type: Transform - pos: 45.5,56.5 - parent: 12 - - uid: 25241 - components: - - type: Transform - pos: 44.5,56.5 - parent: 12 - - uid: 25242 - components: - - type: Transform - pos: 43.5,56.5 - parent: 12 - - uid: 25244 - components: - - type: Transform - pos: 51.5,52.5 - parent: 12 - - uid: 25245 - components: - - type: Transform - pos: 51.5,51.5 - parent: 12 - - uid: 25246 - components: - - type: Transform - pos: 51.5,50.5 - parent: 12 - - uid: 25247 - components: - - type: Transform - pos: 51.5,49.5 - parent: 12 - - uid: 25248 - components: - - type: Transform - pos: 51.5,48.5 - parent: 12 - - uid: 25249 - components: - - type: Transform - pos: 51.5,47.5 - parent: 12 - - uid: 25250 - components: - - type: Transform - pos: 51.5,46.5 - parent: 12 - - uid: 25251 - components: - - type: Transform - pos: 51.5,45.5 - parent: 12 - - uid: 25252 - components: - - type: Transform - pos: 51.5,44.5 - parent: 12 - - uid: 25253 - components: - - type: Transform - pos: 51.5,53.5 - parent: 12 - - uid: 25254 - components: - - type: Transform - pos: 52.5,44.5 - parent: 12 - - uid: 25255 - components: - - type: Transform - pos: 53.5,44.5 - parent: 12 - - uid: 25256 - components: - - type: Transform - pos: 54.5,44.5 - parent: 12 - - uid: 25257 - components: - - type: Transform - pos: 55.5,44.5 - parent: 12 - - uid: 25258 - components: - - type: Transform - pos: 56.5,44.5 - parent: 12 - - uid: 25259 - components: - - type: Transform - pos: 50.5,44.5 - parent: 12 - - uid: 25260 - components: - - type: Transform - pos: 49.5,44.5 - parent: 12 - - uid: 25261 - components: - - type: Transform - pos: 48.5,44.5 - parent: 12 - - uid: 25262 - components: - - type: Transform - pos: 46.5,44.5 - parent: 12 - - uid: 25263 - components: - - type: Transform - pos: 45.5,44.5 - parent: 12 - - uid: 25264 - components: - - type: Transform - pos: 44.5,44.5 - parent: 12 - - uid: 25265 - components: - - type: Transform - pos: 43.5,44.5 - parent: 12 - - uid: 25266 - components: - - type: Transform - pos: 42.5,44.5 - parent: 12 - - uid: 25267 - components: - - type: Transform - pos: 47.5,44.5 - parent: 12 - - uid: 25277 - components: - - type: Transform - pos: 31.5,-27.5 - parent: 12 - - uid: 25279 - components: - - type: Transform - pos: 32.5,-27.5 - parent: 12 - - uid: 25280 - components: - - type: Transform - pos: 33.5,-27.5 - parent: 12 - - uid: 25281 - components: - - type: Transform - pos: 34.5,-27.5 - parent: 12 - - uid: 25282 - components: - - type: Transform - pos: 35.5,-27.5 - parent: 12 - - uid: 25283 - components: - - type: Transform - pos: 36.5,-27.5 - parent: 12 - - uid: 25284 - components: - - type: Transform - pos: 37.5,-27.5 - parent: 12 - - uid: 25285 - components: - - type: Transform - pos: 38.5,-27.5 - parent: 12 - - uid: 25376 - components: - - type: Transform - pos: -23.5,58.5 - parent: 12 - - uid: 25406 - components: - - type: Transform - pos: -33.5,62.5 - parent: 12 - - uid: 25407 - components: - - type: Transform - pos: -33.5,61.5 - parent: 12 - - uid: 25408 - components: - - type: Transform - pos: -36.5,61.5 - parent: 12 - - uid: 25409 - components: - - type: Transform - pos: -36.5,62.5 - parent: 12 - - uid: 25410 - components: - - type: Transform - pos: -28.5,61.5 - parent: 12 - - uid: 25414 - components: - - type: Transform - pos: -46.5,69.5 - parent: 12 - - uid: 25457 - components: - - type: Transform - pos: -26.5,61.5 - parent: 12 - - uid: 25463 - components: - - type: Transform - pos: 30.5,4.5 - parent: 12 - - uid: 25483 - components: - - type: Transform - pos: 26.5,9.5 - parent: 12 - - uid: 25514 - components: - - type: Transform - pos: -23.5,-12.5 - parent: 12 - - uid: 25532 - components: - - type: Transform - pos: 35.5,-32.5 - parent: 12 - - uid: 25610 - components: - - type: Transform - pos: 50.5,-0.5 - parent: 12 - - uid: 26097 - components: - - type: Transform - pos: -7.5,20.5 - parent: 12 - - uid: 26127 - components: - - type: Transform - pos: -1.5,-35.5 - parent: 12 - - uid: 26134 - components: - - type: Transform - pos: 36.5,18.5 - parent: 12 - - uid: 26146 - components: - - type: Transform - pos: 7.5,-40.5 - parent: 12 - - uid: 26147 - components: - - type: Transform - pos: 7.5,-39.5 - parent: 12 - - uid: 26212 - components: - - type: Transform - pos: -26.5,-27.5 - parent: 12 - - uid: 26213 - components: - - type: Transform - pos: -25.5,-27.5 - parent: 12 - - uid: 26237 - components: - - 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 - pos: -18.5,69.5 - parent: 12 - - uid: 26296 - components: - - type: Transform - pos: -18.5,70.5 - parent: 12 - - uid: 26297 - components: - - type: Transform - pos: -18.5,71.5 - parent: 12 - - uid: 26356 - components: - - type: Transform - pos: -1.5,1.5 - parent: 12 - - uid: 26357 - components: - - type: Transform - pos: -0.5,1.5 - parent: 12 - - uid: 26358 - components: - - type: Transform - pos: 0.5,1.5 - parent: 12 - - uid: 26359 - components: - - type: Transform - pos: 0.5,2.5 - parent: 12 - - uid: 26360 - components: - - type: Transform - pos: 0.5,3.5 - parent: 12 - - uid: 26361 - components: - - type: Transform - pos: -0.5,3.5 - parent: 12 - - uid: 26362 - components: - - type: Transform - pos: -1.5,3.5 - parent: 12 - - uid: 26401 - components: - - type: Transform - pos: 56.5,-48.5 - parent: 12 - - uid: 26402 - components: - - type: Transform - pos: 56.5,-49.5 - parent: 12 - - uid: 26403 - components: - - type: Transform - pos: 57.5,-49.5 - parent: 12 - - uid: 26404 - components: - - type: Transform - pos: 59.5,-49.5 - parent: 12 - - uid: 26405 - components: - - type: Transform - pos: 58.5,-49.5 - parent: 12 - - uid: 26406 - components: - - type: Transform - pos: 59.5,-48.5 - parent: 12 - - uid: 26415 - components: - - type: Transform - pos: -60.5,-25.5 - parent: 12 - - uid: 26444 - components: - - type: Transform - pos: 17.5,0.5 - parent: 12 - - uid: 26456 - components: - - type: Transform - pos: 17.5,3.5 - parent: 12 - - uid: 26457 - components: - - type: Transform - pos: 17.5,1.5 - parent: 12 - - uid: 26458 - components: - - type: Transform - pos: 17.5,2.5 - parent: 12 - - uid: 26459 - components: - - type: Transform - pos: 12.5,-10.5 - parent: 12 - - uid: 26460 - components: - - type: Transform - pos: 12.5,-9.5 - parent: 12 - - uid: 26467 - components: - - type: Transform - pos: 26.5,10.5 - parent: 12 - - uid: 26468 - components: - - type: Transform - pos: 55.5,2.5 - parent: 12 - - uid: 26488 - components: - - type: Transform - pos: 5.5,-15.5 - parent: 12 - - uid: 26489 - components: - - type: Transform - pos: 4.5,-15.5 - parent: 12 - - uid: 26490 - components: - - type: Transform - pos: 4.5,-16.5 - parent: 12 - - uid: 26500 - components: - - type: Transform - pos: 31.5,4.5 - parent: 12 - - uid: 26501 - components: - - type: Transform - pos: 26.5,11.5 - parent: 12 - - uid: 26505 - components: - - type: Transform - pos: 31.5,5.5 - parent: 12 - - uid: 26507 - components: - - type: Transform - pos: 31.5,6.5 - parent: 12 - - uid: 26508 - components: - - type: Transform - pos: 31.5,8.5 - parent: 12 - - uid: 26509 - components: - - type: Transform - pos: 31.5,7.5 - parent: 12 - - uid: 26536 - components: - - type: Transform - pos: 11.5,26.5 - parent: 12 - - uid: 26537 - components: - - type: Transform - pos: 11.5,25.5 - parent: 12 - - uid: 26574 - components: - - type: Transform - pos: 15.5,7.5 - parent: 12 - - uid: 26615 - components: - - type: Transform - pos: 17.5,-10.5 - parent: 12 - - uid: 26649 - components: - - type: Transform - pos: 17.5,6.5 - parent: 12 - - uid: 26674 - components: - - 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 - pos: 30.5,10.5 - parent: 12 - - uid: 26767 - components: - - type: Transform - pos: 30.5,8.5 - parent: 12 - - uid: 26768 - components: - - type: Transform - pos: 27.5,10.5 - parent: 12 - - uid: 26769 - components: - - type: Transform - pos: 30.5,9.5 - parent: 12 - - uid: 26770 - components: - - type: Transform - pos: 54.5,1.5 - parent: 12 - - uid: 26771 - components: - - type: Transform - pos: 54.5,2.5 - parent: 12 - - uid: 26772 - components: - - type: Transform - pos: 54.5,3.5 - parent: 12 - - uid: 26773 - components: - - type: Transform - pos: 54.5,4.5 - parent: 12 - - uid: 26774 - components: - - type: Transform - pos: 54.5,5.5 - parent: 12 - - uid: 26776 - components: - - type: Transform - pos: 29.5,10.5 - parent: 12 - - uid: 26777 - components: - - 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 - pos: 58.5,-1.5 - parent: 12 - - uid: 26813 - components: - - type: Transform - pos: 57.5,-1.5 - parent: 12 - - uid: 26814 - components: - - type: Transform - pos: 56.5,-1.5 - parent: 12 - - uid: 26817 - components: - - type: Transform - pos: 55.5,-0.5 - parent: 12 - - uid: 26818 - components: - - type: Transform - pos: 54.5,-0.5 - parent: 12 - - uid: 26819 - components: - - type: Transform - pos: 53.5,-0.5 - parent: 12 - - uid: 26820 - components: - - type: Transform - pos: 52.5,-0.5 - parent: 12 - - uid: 26821 - components: - - type: Transform - pos: 51.5,-0.5 - parent: 12 - - uid: 26838 - components: - - type: Transform - pos: -41.5,52.5 - parent: 12 - - uid: 26858 - components: - - type: Transform - pos: 57.5,-3.5 - parent: 12 - - uid: 26861 - components: - - type: Transform - pos: 58.5,-3.5 - parent: 12 - - uid: 26868 - components: - - type: Transform - pos: 65.5,10.5 - parent: 12 - - uid: 26869 - components: - - 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 - pos: 65.5,11.5 - parent: 12 - - uid: 26924 - components: - - type: Transform - pos: 65.5,9.5 - parent: 12 - - uid: 26928 - components: - - type: Transform - pos: 65.5,8.5 - parent: 12 - - uid: 26931 - components: - - type: Transform - pos: 65.5,7.5 - parent: 12 - - uid: 26932 - components: - - type: Transform - pos: 65.5,6.5 - parent: 12 - - uid: 26933 - components: - - type: Transform - pos: 65.5,5.5 - parent: 12 - - uid: 26934 - components: - - type: Transform - pos: 65.5,4.5 - parent: 12 - - uid: 26935 - components: - - type: Transform - pos: 65.5,3.5 - parent: 12 - - uid: 26936 - components: - - type: Transform - pos: 65.5,2.5 - parent: 12 - - uid: 26937 - components: - - type: Transform - pos: 65.5,1.5 - parent: 12 - - uid: 26938 - components: - - type: Transform - pos: 65.5,0.5 - parent: 12 - - uid: 26940 - components: - - type: Transform - pos: 65.5,-0.5 - parent: 12 - - uid: 26942 - components: - - 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 - pos: 62.5,6.5 - parent: 12 - - uid: 26961 - components: - - type: Transform - pos: 61.5,4.5 - parent: 12 - - uid: 26962 - components: - - type: Transform - pos: 59.5,4.5 - parent: 12 - - uid: 26963 - components: - - type: Transform - pos: 58.5,4.5 - parent: 12 - - uid: 26967 - components: - - type: Transform - pos: 60.5,4.5 - parent: 12 - - uid: 26968 - components: - - type: Transform - pos: 58.5,3.5 - parent: 12 - - uid: 26969 - components: - - type: Transform - pos: 58.5,2.5 - parent: 12 - - uid: 26970 - components: - - type: Transform - pos: 58.5,1.5 - parent: 12 - - uid: 26974 - components: - - 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 - pos: 41.5,22.5 - parent: 12 - - uid: 27131 - components: - - type: Transform - pos: 8.5,31.5 - parent: 12 - - uid: 27158 - components: - - type: Transform - pos: 48.5,-8.5 - parent: 12 - - uid: 27159 - components: - - 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 - pos: 54.5,0.5 - parent: 12 - - uid: 27269 - components: - - type: Transform - pos: -4.5,-34.5 - parent: 12 - - uid: 27270 - components: - - type: Transform - pos: -1.5,-38.5 - parent: 12 - - uid: 27278 - components: - - type: Transform - pos: -3.5,-38.5 - parent: 12 - - uid: 27284 - components: - - type: Transform - pos: -2.5,-38.5 - parent: 12 - - uid: 27287 - components: - - type: Transform - pos: -4.5,-38.5 - parent: 12 - - uid: 27350 - components: - - type: Transform - pos: 46.5,-20.5 - parent: 12 - - uid: 27351 - components: - - type: Transform - pos: 45.5,-20.5 - parent: 12 - - uid: 27356 - components: - - type: Transform - pos: 74.5,50.5 - parent: 12 - - uid: 27357 - components: - - 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 - pos: -31.5,-12.5 - parent: 12 - - uid: 27418 - components: - - type: Transform - pos: -30.5,-12.5 - parent: 12 - - uid: 27419 - components: - - type: Transform - pos: -29.5,-12.5 - parent: 12 - - uid: 27420 - components: - - type: Transform - pos: -28.5,-12.5 - parent: 12 - - uid: 27421 - components: - - type: Transform - pos: -27.5,-12.5 - parent: 12 - - uid: 27422 - components: - - type: Transform - pos: -27.5,-11.5 - parent: 12 - - uid: 27423 - components: - - type: Transform - pos: -35.5,-12.5 - parent: 12 - - uid: 27424 - components: - - type: Transform - pos: -36.5,-12.5 - parent: 12 - - uid: 27425 - components: - - type: Transform - pos: -37.5,-12.5 - parent: 12 - - uid: 27426 - components: - - type: Transform - pos: -38.5,-12.5 - parent: 12 - - uid: 27427 - components: - - type: Transform - pos: -39.5,-12.5 - parent: 12 - - uid: 27428 - components: - - type: Transform - pos: -40.5,-12.5 - parent: 12 - - uid: 27429 - components: - - type: Transform - pos: -41.5,-12.5 - parent: 12 - - uid: 27430 - components: - - type: Transform - pos: -42.5,-12.5 - parent: 12 - - uid: 27431 - components: - - type: Transform - pos: -43.5,-12.5 - parent: 12 - - uid: 27435 - components: - - type: Transform - pos: -45.5,-14.5 - parent: 12 - - uid: 27438 - components: - - type: Transform - pos: -46.5,-14.5 - parent: 12 - - uid: 27439 - components: - - type: Transform - pos: -46.5,-15.5 - parent: 12 - - uid: 27440 - components: - - type: Transform - pos: -47.5,-15.5 - parent: 12 - - uid: 27441 - components: - - type: Transform - pos: -47.5,-16.5 - parent: 12 - - uid: 27442 - components: - - type: Transform - pos: -48.5,-16.5 - parent: 12 - - uid: 27443 - components: - - type: Transform - pos: -49.5,-16.5 - parent: 12 - - uid: 27444 - components: - - type: Transform - pos: -50.5,-16.5 - parent: 12 - - uid: 27445 - components: - - 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 - pos: 38.5,-14.5 - parent: 12 - - uid: 27513 - components: - - type: Transform - pos: -28.5,-0.5 - parent: 12 - - uid: 27665 - components: - - type: Transform - pos: -50.5,-46.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 - pos: -48.5,-52.5 - parent: 12 - - uid: 27767 - components: - - type: Transform - pos: -48.5,-51.5 - parent: 12 - - uid: 27768 - components: - - type: Transform - pos: -47.5,-51.5 - parent: 12 - - uid: 27769 - components: - - type: Transform - pos: -46.5,-51.5 - parent: 12 - - uid: 27770 - components: - - type: Transform - pos: -46.5,-52.5 - parent: 12 - - uid: 27771 - components: - - type: Transform - pos: -45.5,-52.5 - parent: 12 - - uid: 27772 - components: - - type: Transform - pos: -44.5,-52.5 - parent: 12 - - uid: 27773 - components: - - type: Transform - pos: -43.5,-52.5 - parent: 12 - - uid: 27774 - components: - - type: Transform - pos: -42.5,-52.5 - parent: 12 - - uid: 27775 - components: - - type: Transform - pos: -41.5,-52.5 - parent: 12 - - uid: 27776 - components: - - type: Transform - pos: -40.5,-52.5 - parent: 12 - - uid: 27777 - components: - - type: Transform - pos: -39.5,-52.5 - parent: 12 - - uid: 27779 - components: - - type: Transform - pos: -38.5,-51.5 - parent: 12 - - uid: 27780 - components: - - type: Transform - pos: -38.5,-50.5 - parent: 12 - - uid: 27781 - components: - - type: Transform - pos: -48.5,-50.5 - parent: 12 - - uid: 27782 - components: - - type: Transform - pos: -49.5,-50.5 - parent: 12 - - uid: 27783 - components: - - type: Transform - pos: -49.5,-49.5 - parent: 12 - - uid: 27784 - components: - - type: Transform - pos: -49.5,-48.5 - parent: 12 - - uid: 27785 - components: - - type: Transform - pos: -49.5,-47.5 - parent: 12 - - uid: 27786 - components: - - type: Transform - pos: -49.5,-45.5 - parent: 12 - - uid: 27787 - components: - - type: Transform - pos: -49.5,-44.5 - parent: 12 - - uid: 27788 - components: - - type: Transform - pos: -49.5,-43.5 - parent: 12 - - uid: 27789 - components: - - type: Transform - pos: -49.5,-42.5 - parent: 12 - - uid: 27790 - components: - - type: Transform - pos: -49.5,-46.5 - parent: 12 - - uid: 27791 - components: - - type: Transform - pos: -50.5,-42.5 - parent: 12 - - uid: 27792 - components: - - type: Transform - pos: -51.5,-42.5 - parent: 12 - - uid: 27793 - components: - - type: Transform - pos: -52.5,-42.5 - parent: 12 - - uid: 27794 - components: - - type: Transform - pos: -53.5,-42.5 - parent: 12 - - uid: 27795 - components: - - type: Transform - pos: -53.5,-41.5 - parent: 12 - - uid: 27796 - components: - - type: Transform - pos: -53.5,-40.5 - parent: 12 - - uid: 27797 - components: - - type: Transform - pos: -53.5,-36.5 - parent: 12 - - uid: 27798 - components: - - type: Transform - pos: -53.5,-35.5 - parent: 12 - - uid: 27799 - components: - - type: Transform - pos: -53.5,-34.5 - parent: 12 - - uid: 27800 - components: - - type: Transform - pos: -54.5,-34.5 - parent: 12 - - uid: 27801 - components: - - type: Transform - pos: -55.5,-34.5 - parent: 12 - - uid: 27802 - components: - - type: Transform - pos: -56.5,-34.5 - parent: 12 - - uid: 27803 - components: - - type: Transform - pos: -57.5,-34.5 - parent: 12 - - uid: 27804 - components: - - type: Transform - pos: -58.5,-34.5 - parent: 12 - - uid: 27805 - components: - - type: Transform - pos: -58.5,-33.5 - parent: 12 - - uid: 27806 - components: - - type: Transform - pos: -58.5,-32.5 - parent: 12 - - uid: 27807 - components: - - type: Transform - pos: -58.5,-31.5 - parent: 12 - - uid: 27808 - components: - - type: Transform - pos: -58.5,-30.5 - parent: 12 - - uid: 27809 - components: - - type: Transform - pos: -58.5,-29.5 - parent: 12 - - uid: 27810 - components: - - type: Transform - pos: -58.5,-28.5 - parent: 12 - - uid: 27816 - components: - - type: Transform - pos: -58.5,-21.5 - parent: 12 - - uid: 27817 - components: - - type: Transform - pos: -58.5,-20.5 - parent: 12 - - uid: 27818 - components: - - type: Transform - pos: -58.5,-19.5 - parent: 12 - - uid: 27819 - components: - - type: Transform - pos: -58.5,-27.5 - parent: 12 - - uid: 27820 - components: - - type: Transform - pos: -58.5,-18.5 - parent: 12 - - uid: 27848 - components: - - type: Transform - pos: -21.5,59.5 - parent: 12 - - uid: 27849 - components: - - type: Transform - pos: -22.5,59.5 - parent: 12 - - uid: 27850 - components: - - type: Transform - pos: -23.5,59.5 - parent: 12 - - uid: 27911 - components: - - 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: 28182 - components: - - type: Transform - pos: 58.5,-4.5 - parent: 12 - - uid: 28186 - components: - - type: Transform - pos: -52.5,-14.5 - parent: 12 - - uid: 28187 - components: - - type: Transform - pos: -53.5,-12.5 - parent: 12 - - uid: 28189 - components: - - 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 - pos: -54.5,-12.5 - parent: 12 - - uid: 28207 - components: - - type: Transform - pos: -55.5,-12.5 - parent: 12 - - uid: 28208 - components: - - type: Transform - pos: -56.5,-12.5 - parent: 12 - - uid: 28209 - components: - - type: Transform - pos: -56.5,-13.5 - parent: 12 - - uid: 28276 - components: - - type: Transform - pos: -28.5,-13.5 - parent: 12 - - uid: 28281 - components: - - type: Transform - pos: -28.5,-14.5 - parent: 12 - - uid: 28282 - components: - - type: Transform - pos: -27.5,-14.5 - parent: 12 - - uid: 28291 - components: - - type: Transform - pos: -21.5,-67.5 - parent: 12 - - uid: 28297 - components: - - type: Transform - pos: -22.5,-67.5 - parent: 12 - - uid: 28304 - components: - - type: Transform - pos: -46.5,-20.5 - parent: 12 - - uid: 28305 - components: - - type: Transform - pos: -45.5,-20.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 - pos: -5.5,-38.5 - parent: 12 - - uid: 28355 - components: - - type: Transform - pos: -0.5,-36.5 - parent: 12 - - uid: 28405 - components: - - type: Transform - pos: -20.5,-18.5 - parent: 12 - - uid: 28406 - components: - - type: Transform - pos: -20.5,-17.5 - parent: 12 - - uid: 28409 - components: - - type: Transform - pos: -21.5,-16.5 - parent: 12 - - uid: 28410 - components: - - type: Transform - pos: -22.5,-16.5 - parent: 12 - - uid: 28411 - components: - - type: Transform - pos: -23.5,-16.5 - parent: 12 - - uid: 28412 - components: - - type: Transform - pos: -24.5,-16.5 - parent: 12 - - uid: 28413 - components: - - type: Transform - pos: -25.5,-16.5 - parent: 12 - - uid: 28414 - components: - - type: Transform - pos: -26.5,-16.5 - parent: 12 - - uid: 28415 - components: - - type: Transform - pos: -26.5,-15.5 - parent: 12 - - uid: 28416 - components: - - type: Transform - pos: -27.5,-15.5 - parent: 12 - - uid: 28417 - components: - - 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 - pos: -41.5,30.5 - parent: 12 - - uid: 28463 - components: - - 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 - pos: -9.5,-16.5 - parent: 12 - - uid: 28476 - components: - - type: Transform - pos: -8.5,-16.5 - parent: 12 - - uid: 28477 - components: - - type: Transform - pos: -8.5,-17.5 - parent: 12 - - uid: 28478 - components: - - type: Transform - pos: -8.5,-18.5 - parent: 12 - - uid: 28479 - components: - - type: Transform - pos: -8.5,-19.5 - parent: 12 - - uid: 28480 - components: - - type: Transform - pos: -8.5,-20.5 - parent: 12 - - uid: 28481 - components: - - type: Transform - pos: -7.5,-20.5 - parent: 12 - - uid: 28482 - components: - - type: Transform - pos: -6.5,-20.5 - parent: 12 - - uid: 28483 - components: - - type: Transform - pos: -5.5,-20.5 - parent: 12 - - uid: 28484 - components: - - type: Transform - pos: -4.5,-20.5 - parent: 12 - - uid: 28485 - components: - - type: Transform - pos: -4.5,-21.5 - parent: 12 - - uid: 28486 - components: - - type: Transform - pos: -4.5,-22.5 - parent: 12 - - uid: 28487 - components: - - type: Transform - pos: -3.5,-22.5 - parent: 12 - - uid: 28488 - components: - - type: Transform - pos: -2.5,-22.5 - parent: 12 - - uid: 28489 - components: - - type: Transform - pos: -1.5,-22.5 - parent: 12 - - uid: 28490 - components: - - type: Transform - pos: -0.5,-22.5 - parent: 12 - - uid: 28491 - components: - - type: Transform - pos: 0.5,-22.5 - parent: 12 - - uid: 28492 - components: - - 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 - pos: -8.5,-15.5 - parent: 12 - - uid: 28496 - components: - - type: Transform - pos: -8.5,-14.5 - parent: 12 - - uid: 28497 - components: - - type: Transform - pos: -8.5,-13.5 - parent: 12 - - uid: 28498 - components: - - type: Transform - pos: -8.5,-12.5 - parent: 12 - - uid: 28507 - components: - - type: Transform - pos: -8.5,-0.5 - parent: 12 - - uid: 28508 - components: - - type: Transform - pos: -8.5,0.5 - parent: 12 - - uid: 28509 - components: - - type: Transform - pos: -8.5,1.5 - parent: 12 - - uid: 28510 - components: - - type: Transform - pos: -8.5,2.5 - parent: 12 - - uid: 28511 - components: - - type: Transform - pos: -7.5,2.5 - parent: 12 - - uid: 28512 - components: - - type: Transform - pos: -6.5,2.5 - parent: 12 - - uid: 28513 - components: - - type: Transform - pos: -6.5,3.5 - parent: 12 - - uid: 28514 - components: - - type: Transform - pos: -6.5,4.5 - parent: 12 - - uid: 28515 - components: - - type: Transform - pos: -6.5,5.5 - parent: 12 - - uid: 28516 - components: - - type: Transform - pos: -5.5,8.5 - parent: 12 - - uid: 28517 - components: - - 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 - pos: 54.5,11.5 - parent: 12 - - uid: 28657 - components: - - type: Transform - pos: 54.5,10.5 - parent: 12 - - uid: 28658 - components: - - type: Transform - pos: 54.5,9.5 - parent: 12 - - uid: 28659 - components: - - type: Transform - pos: 54.5,8.5 - parent: 12 - - uid: 28660 - components: - - type: Transform - pos: 53.5,8.5 - parent: 12 - - uid: 28661 - components: - - type: Transform - pos: 52.5,8.5 - parent: 12 - - uid: 28662 - components: - - type: Transform - pos: 51.5,8.5 - parent: 12 - - uid: 28663 - components: - - type: Transform - pos: 50.5,8.5 - parent: 12 - - uid: 28664 - components: - - type: Transform - pos: 49.5,8.5 - parent: 12 - - uid: 28665 - components: - - type: Transform - pos: 48.5,8.5 - parent: 12 - - uid: 28666 - components: - - type: Transform - pos: 47.5,8.5 - parent: 12 - - uid: 28667 - components: - - type: Transform - pos: 46.5,8.5 - parent: 12 - - uid: 28679 - components: - - type: Transform - pos: 59.5,5.5 - parent: 12 - - uid: 28680 - components: - - type: Transform - pos: 59.5,6.5 - parent: 12 - - uid: 28742 - components: - - 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 - pos: 57.5,-4.5 - parent: 12 - - uid: 28867 - components: - - type: Transform - pos: 57.5,-5.5 - parent: 12 - - uid: 28873 - components: - - type: Transform - pos: 53.5,-5.5 - parent: 12 - - uid: 28874 - components: - - type: Transform - pos: 53.5,-4.5 - parent: 12 - - uid: 28875 - components: - - type: Transform - pos: 53.5,-3.5 - parent: 12 - - uid: 28876 - components: - - type: Transform - pos: 53.5,-2.5 - parent: 12 - - uid: 28877 - components: - - type: Transform - pos: 53.5,-1.5 - parent: 12 - - uid: 28878 - components: - - type: Transform - pos: 59.5,2.5 - parent: 12 - - uid: 28879 - components: - - type: Transform - pos: 60.5,2.5 - parent: 12 - - uid: 28880 - components: - - type: Transform - pos: 61.5,2.5 - parent: 12 - - uid: 28884 - components: - - type: Transform - pos: 54.5,6.5 - parent: 12 - - uid: 28885 - components: - - type: Transform - pos: 53.5,5.5 - parent: 12 - - uid: 28887 - components: - - type: Transform - pos: 55.5,5.5 - parent: 12 - - uid: 28908 - components: - - type: Transform - pos: 28.5,-0.5 - parent: 12 - - uid: 28909 - components: - - type: Transform - pos: 28.5,-1.5 - parent: 12 - - uid: 28910 - components: - - type: Transform - pos: 28.5,-2.5 - parent: 12 - - uid: 28911 - components: - - type: Transform - pos: 28.5,-3.5 - parent: 12 - - uid: 28912 - components: - - type: Transform - pos: 28.5,-8.5 - parent: 12 - - uid: 28913 - components: - - type: Transform - pos: 28.5,-9.5 - parent: 12 - - uid: 28914 - components: - - type: Transform - pos: 28.5,-10.5 - parent: 12 - - uid: 28915 - components: - - type: Transform - pos: 28.5,-7.5 - parent: 12 - - uid: 28916 - components: - - type: Transform - pos: 2.5,-19.5 - parent: 12 - - uid: 28917 - components: - - type: Transform - pos: 1.5,-19.5 - parent: 12 - - uid: 28918 - components: - - type: Transform - pos: 3.5,-19.5 - parent: 12 - - uid: 28938 - components: - - type: Transform - pos: -41.5,27.5 - parent: 12 - - uid: 28949 - components: - - type: Transform - pos: 6.5,-19.5 - parent: 12 - - uid: 28950 - components: - - type: Transform - pos: 6.5,-18.5 - parent: 12 - - uid: 28951 - components: - - type: Transform - pos: 6.5,-17.5 - parent: 12 - - uid: 28952 - components: - - type: Transform - pos: 6.5,-16.5 - parent: 12 - - uid: 28953 - components: - - type: Transform - pos: 6.5,-15.5 - parent: 12 - - uid: 28954 - components: - - type: Transform - pos: 6.5,-14.5 - parent: 12 - - uid: 28955 - components: - - type: Transform - pos: 6.5,-13.5 - parent: 12 - - uid: 28956 - components: - - type: Transform - pos: 6.5,-12.5 - parent: 12 - - uid: 28957 - components: - - type: Transform - pos: 6.5,-11.5 - parent: 12 - - uid: 28958 - components: - - type: Transform - pos: 6.5,-10.5 - parent: 12 - - uid: 28959 - components: - - type: Transform - pos: 6.5,-8.5 - parent: 12 - - uid: 28960 - components: - - type: Transform - pos: 6.5,-9.5 - parent: 12 - - uid: 28961 - components: - - type: Transform - pos: 5.5,-8.5 - parent: 12 - - uid: 28962 - components: - - type: Transform - pos: 5.5,-6.5 - parent: 12 - - uid: 28963 - components: - - type: Transform - pos: 5.5,-7.5 - parent: 12 - - uid: 28964 - components: - - type: Transform - pos: 6.5,-6.5 - parent: 12 - - uid: 28965 - components: - - type: Transform - pos: 5.5,-5.5 - parent: 12 - - uid: 28966 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 12 - - uid: 28967 - components: - - type: Transform - pos: 5.5,-3.5 - parent: 12 - - uid: 28968 - components: - - 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 - pos: 43.5,-0.5 - parent: 12 - - uid: 29125 - components: - - type: Transform - pos: 43.5,-7.5 - parent: 12 - - uid: 29126 - components: - - type: Transform - pos: 43.5,-6.5 - parent: 12 - - uid: 29127 - components: - - type: Transform - pos: 43.5,-5.5 - parent: 12 - - uid: 29128 - components: - - type: Transform - pos: 43.5,-4.5 - parent: 12 - - uid: 29129 - components: - - type: Transform - pos: 43.5,-3.5 - parent: 12 - - uid: 29130 - components: - - type: Transform - pos: 43.5,-1.5 - parent: 12 - - uid: 29131 - components: - - type: Transform - pos: 43.5,-2.5 - parent: 12 - - uid: 29132 - components: - - type: Transform - pos: 43.5,0.5 - parent: 12 - - uid: 29133 - components: - - type: Transform - pos: 43.5,1.5 - parent: 12 - - uid: 29134 - components: - - type: Transform - pos: 43.5,2.5 - parent: 12 - - uid: 29135 - components: - - type: Transform - pos: 43.5,3.5 - parent: 12 - - uid: 29232 - components: - - type: Transform - pos: -26.5,64.5 - parent: 12 - - uid: 29233 - components: - - type: Transform - pos: -27.5,64.5 - parent: 12 - - uid: 29234 - components: - - type: Transform - pos: -28.5,64.5 - parent: 12 - - uid: 29235 - components: - - type: Transform - pos: -29.5,64.5 - parent: 12 - - uid: 29236 - components: - - type: Transform - pos: -27.5,65.5 - parent: 12 - - uid: 29237 - components: - - type: Transform - pos: -27.5,66.5 - parent: 12 - - uid: 29238 - components: - - type: Transform - pos: -27.5,67.5 - parent: 12 - - uid: 29239 - components: - - type: Transform - pos: -27.5,68.5 - parent: 12 - - uid: 29240 - components: - - type: Transform - pos: -27.5,69.5 - parent: 12 - - uid: 29241 - components: - - type: Transform - pos: -25.5,61.5 - parent: 12 - - uid: 29242 - components: - - type: Transform - pos: -24.5,61.5 - parent: 12 - - uid: 29243 - components: - - type: Transform - pos: -23.5,61.5 - parent: 12 - - uid: 29244 - components: - - type: Transform - pos: -23.5,62.5 - parent: 12 - - uid: 29245 - components: - - type: Transform - pos: -23.5,63.5 - parent: 12 - - uid: 29248 - components: - - type: Transform - pos: -22.5,65.5 - parent: 12 - - uid: 29254 - components: - - type: Transform - pos: -22.5,63.5 - parent: 12 - - uid: 29257 - components: - - type: Transform - pos: -22.5,64.5 - parent: 12 - - uid: 29304 - components: - - type: Transform - pos: 42.5,-0.5 - parent: 12 - - uid: 29331 - components: - - type: Transform - pos: 50.5,3.5 - parent: 12 - - uid: 29332 - components: - - type: Transform - pos: 49.5,3.5 - parent: 12 - - uid: 29333 - components: - - type: Transform - pos: 48.5,3.5 - parent: 12 - - uid: 29334 - components: - - type: Transform - pos: 47.5,3.5 - parent: 12 - - uid: 29335 - components: - - type: Transform - pos: 46.5,3.5 - parent: 12 - - uid: 29336 - components: - - type: Transform - pos: 45.5,3.5 - parent: 12 - - uid: 29337 - components: - - type: Transform - pos: 45.5,2.5 - parent: 12 - - uid: 29338 - components: - - type: Transform - pos: 45.5,1.5 - parent: 12 - - uid: 29341 - components: - - type: Transform - pos: 48.5,4.5 - parent: 12 - - uid: 29342 - components: - - 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 - pos: -45.5,65.5 - parent: 12 - - uid: 29416 - components: - - type: Transform - pos: -42.5,65.5 - parent: 12 - - uid: 29565 - components: - - type: Transform - pos: -49.5,65.5 - parent: 12 - - uid: 29566 - components: - - type: Transform - pos: -47.5,65.5 - parent: 12 - - uid: 29568 - components: - - type: Transform - pos: -44.5,65.5 - parent: 12 - - uid: 29618 - components: - - type: Transform - pos: -46.5,73.5 - parent: 12 - - uid: 29635 - components: - - type: Transform - pos: -46.5,68.5 - parent: 12 - - uid: 29639 - components: - - type: Transform - pos: -46.5,70.5 - parent: 12 - - uid: 29641 - components: - - type: Transform - pos: -46.5,71.5 - parent: 12 - - uid: 29649 - components: - - type: Transform - pos: -46.5,72.5 - parent: 12 - - uid: 29658 - components: - - type: Transform - pos: -18.5,74.5 - parent: 12 - - uid: 29659 - components: - - type: Transform - pos: -19.5,72.5 - parent: 12 - - uid: 29660 - components: - - type: Transform - pos: -20.5,72.5 - parent: 12 - - uid: 29723 - components: - - type: Transform - pos: -48.5,48.5 - parent: 12 - - uid: 29724 - components: - - type: Transform - pos: -48.5,49.5 - parent: 12 - - uid: 29725 - components: - - type: Transform - pos: -49.5,49.5 - parent: 12 - - uid: 29726 - components: - - type: Transform - pos: -50.5,49.5 - parent: 12 - - uid: 29727 - components: - - type: Transform - pos: -50.5,50.5 - parent: 12 - - uid: 29728 - components: - - type: Transform - pos: -50.5,51.5 - parent: 12 - - uid: 29729 - components: - - type: Transform - pos: -50.5,52.5 - parent: 12 - - uid: 29730 - components: - - type: Transform - pos: -50.5,53.5 - parent: 12 - - uid: 29731 - components: - - type: Transform - pos: -50.5,54.5 - parent: 12 - - uid: 29732 - components: - - type: Transform - pos: -50.5,56.5 - parent: 12 - - uid: 29733 - components: - - type: Transform - pos: -50.5,57.5 - parent: 12 - - uid: 29734 - components: - - type: Transform - pos: -50.5,55.5 - parent: 12 - - uid: 29735 - components: - - type: Transform - pos: -50.5,59.5 - parent: 12 - - uid: 29736 - components: - - type: Transform - pos: -50.5,58.5 - parent: 12 - - uid: 29737 - components: - - type: Transform - pos: -50.5,63.5 - parent: 12 - - uid: 29738 - components: - - type: Transform - pos: -50.5,64.5 - parent: 12 - - uid: 29739 - components: - - type: Transform - pos: -50.5,60.5 - parent: 12 - - uid: 29740 - components: - - type: Transform - pos: -50.5,62.5 - parent: 12 - - uid: 29741 - components: - - type: Transform - pos: -50.5,61.5 - parent: 12 - - uid: 29742 - components: - - type: Transform - pos: -51.5,62.5 - parent: 12 - - uid: 29743 - components: - - type: Transform - pos: -52.5,62.5 - parent: 12 - - uid: 29745 - components: - - type: Transform - pos: -50.5,65.5 - parent: 12 - - uid: 29746 - components: - - type: Transform - pos: -46.5,65.5 - parent: 12 - - uid: 29747 - components: - - type: Transform - pos: -43.5,65.5 - parent: 12 - - uid: 29750 - components: - - type: Transform - pos: -48.5,65.5 - parent: 12 - - uid: 29754 - components: - - type: Transform - pos: -41.5,65.5 - parent: 12 - - uid: 29756 - components: - - type: Transform - pos: -25.5,72.5 - parent: 12 - - uid: 29757 - components: - - type: Transform - pos: -26.5,72.5 - parent: 12 - - uid: 29758 - components: - - type: Transform - pos: -28.5,72.5 - parent: 12 - - uid: 29759 - components: - - type: Transform - pos: -29.5,72.5 - parent: 12 - - uid: 29760 - components: - - type: Transform - pos: -30.5,72.5 - parent: 12 - - uid: 29761 - components: - - type: Transform - pos: -31.5,72.5 - parent: 12 - - uid: 29762 - components: - - type: Transform - pos: -32.5,72.5 - parent: 12 - - uid: 29763 - components: - - type: Transform - pos: -33.5,72.5 - parent: 12 - - uid: 29764 - components: - - type: Transform - pos: -34.5,72.5 - parent: 12 - - uid: 29765 - components: - - type: Transform - pos: -27.5,72.5 - parent: 12 - - uid: 29766 - components: - - type: Transform - pos: -35.5,72.5 - parent: 12 - - uid: 29767 - components: - - type: Transform - pos: -36.5,72.5 - parent: 12 - - uid: 29768 - components: - - type: Transform - pos: -37.5,72.5 - parent: 12 - - uid: 29769 - components: - - type: Transform - pos: -38.5,72.5 - parent: 12 - - uid: 29770 - components: - - type: Transform - pos: -39.5,72.5 - parent: 12 - - uid: 29771 - components: - - type: Transform - pos: -40.5,72.5 - parent: 12 - - uid: 29772 - components: - - type: Transform - pos: -41.5,72.5 - parent: 12 - - uid: 29773 - components: - - type: Transform - pos: -41.5,71.5 - parent: 12 - - uid: 29774 - components: - - type: Transform - pos: -41.5,69.5 - parent: 12 - - uid: 29775 - components: - - type: Transform - pos: -41.5,70.5 - parent: 12 - - uid: 29776 - components: - - type: Transform - pos: -41.5,68.5 - parent: 12 - - uid: 29856 - components: - - type: Transform - pos: -34.5,-42.5 - parent: 12 - - uid: 29857 - components: - - type: Transform - pos: -34.5,-41.5 - parent: 12 - - uid: 29858 - components: - - type: Transform - pos: -34.5,-40.5 - parent: 12 - - uid: 29859 - components: - - type: Transform - pos: -34.5,-39.5 - parent: 12 - - uid: 29940 - components: - - type: Transform - pos: 21.5,-24.5 - parent: 12 - - uid: 29941 - components: - - type: Transform - pos: 22.5,-24.5 - parent: 12 - - uid: 29942 - components: - - type: Transform - pos: 31.5,-24.5 - parent: 12 - - uid: 29943 - components: - - type: Transform - pos: 32.5,-24.5 - parent: 12 - - uid: 29944 - components: - - type: Transform - pos: 33.5,-24.5 - parent: 12 - - uid: 29945 - components: - - type: Transform - pos: 34.5,-24.5 - parent: 12 - - uid: 29979 - components: - - type: Transform - pos: 11.5,-24.5 - parent: 12 - - uid: 29983 - components: - - type: Transform - pos: 30.5,14.5 - parent: 12 - - uid: 29993 - components: - - type: Transform - pos: 47.5,-9.5 - parent: 12 - - uid: 29994 - components: - - 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 - pos: 52.5,-35.5 - parent: 12 - - uid: 30351 - components: - - type: Transform - pos: -12.5,73.5 - parent: 12 - - uid: 30352 - components: - - type: Transform - pos: -11.5,73.5 - parent: 12 - - uid: 30353 - components: - - type: Transform - pos: -10.5,73.5 - parent: 12 - - uid: 30354 - components: - - type: Transform - pos: -9.5,73.5 - parent: 12 - - uid: 30355 - components: - - type: Transform - pos: -8.5,73.5 - parent: 12 - - uid: 30356 - components: - - type: Transform - pos: -6.5,73.5 - parent: 12 - - uid: 30357 - components: - - type: Transform - pos: -5.5,73.5 - parent: 12 - - uid: 30358 - components: - - type: Transform - pos: -4.5,73.5 - parent: 12 - - uid: 30359 - components: - - type: Transform - pos: -3.5,73.5 - parent: 12 - - uid: 30360 - components: - - type: Transform - pos: -7.5,73.5 - parent: 12 - - uid: 30361 - components: - - type: Transform - pos: -3.5,74.5 - parent: 12 - - uid: 30362 - components: - - type: Transform - pos: -3.5,75.5 - parent: 12 - - uid: 30363 - components: - - type: Transform - pos: -3.5,76.5 - parent: 12 - - uid: 30364 - components: - - type: Transform - pos: -4.5,76.5 - parent: 12 - - uid: 30365 - components: - - type: Transform - pos: -5.5,76.5 - parent: 12 - - uid: 30366 - components: - - type: Transform - pos: -6.5,76.5 - parent: 12 - - uid: 30367 - components: - - type: Transform - pos: -7.5,76.5 - parent: 12 - - uid: 30368 - components: - - type: Transform - pos: -8.5,76.5 - parent: 12 - - uid: 30369 - components: - - type: Transform - pos: -9.5,76.5 - parent: 12 - - uid: 30370 - components: - - type: Transform - pos: -10.5,76.5 - parent: 12 - - uid: 30371 - components: - - type: Transform - pos: -11.5,76.5 - parent: 12 - - uid: 30372 - components: - - type: Transform - pos: -12.5,76.5 - parent: 12 - - uid: 30373 - components: - - type: Transform - pos: -12.5,75.5 - parent: 12 - - uid: 30374 - components: - - type: Transform - pos: -12.5,74.5 - parent: 12 - - uid: 30375 - components: - - type: Transform - pos: -12.5,72.5 - parent: 12 - - uid: 30376 - components: - - type: Transform - pos: -13.5,72.5 - parent: 12 - - uid: 30377 - components: - - type: Transform - pos: -14.5,72.5 - parent: 12 - - uid: 30378 - components: - - type: Transform - pos: -10.5,77.5 - parent: 12 - - uid: 30379 - components: - - type: Transform - pos: -5.5,77.5 - parent: 12 - - uid: 30380 - components: - - type: Transform - pos: -6.5,72.5 - parent: 12 - - uid: 30382 - components: - - type: Transform - pos: -4.5,-33.5 - parent: 12 - - uid: 30406 - components: - - type: Transform - pos: -15.5,72.5 - parent: 12 - - uid: 30407 - components: - - type: Transform - pos: -16.5,72.5 - parent: 12 - - uid: 30455 - components: - - type: Transform - pos: 66.5,-2.5 - parent: 12 - - uid: 30456 - components: - - type: Transform - pos: 68.5,-2.5 - parent: 12 - - uid: 30469 - components: - - type: Transform - pos: 67.5,-2.5 - parent: 12 - - uid: 30481 - components: - - type: Transform - pos: 70.5,-2.5 - parent: 12 - - uid: 30502 - components: - - type: Transform - pos: 71.5,-2.5 - parent: 12 - - uid: 30740 - components: - - type: Transform - pos: 2.5,-56.5 - parent: 12 - - uid: 30741 - components: - - type: Transform - pos: 3.5,-56.5 - parent: 12 - - uid: 30742 - components: - - type: Transform - pos: 3.5,-55.5 - parent: 12 - - uid: 30743 - components: - - type: Transform - pos: 3.5,-54.5 - parent: 12 - - uid: 30744 - components: - - type: Transform - pos: 3.5,-53.5 - parent: 12 - - uid: 30745 - components: - - type: Transform - pos: 3.5,-52.5 - parent: 12 - - uid: 30746 - components: - - type: Transform - pos: 3.5,-51.5 - parent: 12 - - uid: 30747 - components: - - type: Transform - pos: 3.5,-57.5 - parent: 12 - - uid: 30748 - components: - - type: Transform - pos: 1.5,-57.5 - parent: 12 - - uid: 30749 - components: - - type: Transform - pos: 2.5,-57.5 - parent: 12 - - uid: 30750 - components: - - type: Transform - pos: 1.5,-58.5 - parent: 12 - - uid: 30751 - components: - - type: Transform - pos: 1.5,-59.5 - parent: 12 - - uid: 30752 - components: - - type: Transform - pos: 1.5,-60.5 - parent: 12 - - uid: 30753 - components: - - type: Transform - pos: 1.5,-61.5 - parent: 12 - - uid: 30754 - components: - - type: Transform - pos: 0.5,-61.5 - parent: 12 - - uid: 30755 - components: - - type: Transform - pos: -0.5,-61.5 - parent: 12 - - uid: 30756 - components: - - type: Transform - pos: -1.5,-61.5 - parent: 12 - - uid: 30757 - components: - - type: Transform - pos: -1.5,-62.5 - parent: 12 - - uid: 30758 - components: - - type: Transform - pos: -1.5,-63.5 - parent: 12 - - uid: 30759 - components: - - type: Transform - pos: -2.5,-63.5 - parent: 12 - - uid: 30760 - components: - - type: Transform - pos: -3.5,-63.5 - parent: 12 - - uid: 30761 - components: - - type: Transform - pos: -4.5,-63.5 - parent: 12 - - uid: 30762 - components: - - type: Transform - pos: -5.5,-63.5 - parent: 12 - - uid: 30763 - components: - - type: Transform - pos: -6.5,-63.5 - parent: 12 - - uid: 30764 - components: - - type: Transform - pos: -7.5,-63.5 - parent: 12 - - uid: 30765 - components: - - type: Transform - pos: -8.5,-63.5 - parent: 12 - - uid: 30766 - components: - - type: Transform - pos: -8.5,-64.5 - parent: 12 - - uid: 30767 - components: - - type: Transform - pos: -9.5,-64.5 - parent: 12 - - uid: 30768 - components: - - type: Transform - pos: -10.5,-64.5 - parent: 12 - - uid: 30769 - components: - - type: Transform - pos: -11.5,-64.5 - parent: 12 - - uid: 30770 - components: - - type: Transform - pos: -12.5,-64.5 - parent: 12 - - uid: 30771 - components: - - type: Transform - pos: -13.5,-64.5 - parent: 12 - - uid: 30772 - components: - - type: Transform - pos: -14.5,-64.5 - parent: 12 - - uid: 30773 - components: - - type: Transform - pos: -15.5,-64.5 - parent: 12 - - uid: 30774 - components: - - type: Transform - pos: -16.5,-64.5 - parent: 12 - - uid: 30775 - components: - - type: Transform - pos: -16.5,-63.5 - parent: 12 - - uid: 30776 - components: - - type: Transform - pos: -17.5,-63.5 - parent: 12 - - uid: 30777 - components: - - type: Transform - pos: -18.5,-63.5 - parent: 12 - - uid: 30778 - components: - - type: Transform - pos: -19.5,-63.5 - parent: 12 - - uid: 30779 - components: - - type: Transform - pos: -33.5,-56.5 - parent: 12 - - uid: 30780 - components: - - type: Transform - pos: -33.5,-58.5 - parent: 12 - - uid: 30782 - components: - - type: Transform - pos: -36.5,-58.5 - parent: 12 - - uid: 30783 - components: - - type: Transform - pos: -37.5,-58.5 - parent: 12 - - uid: 30784 - components: - - type: Transform - pos: -34.5,-58.5 - parent: 12 - - uid: 30785 - components: - - type: Transform - pos: -37.5,-57.5 - parent: 12 - - uid: 30786 - components: - - type: Transform - pos: -32.5,-58.5 - parent: 12 - - uid: 30787 - components: - - type: Transform - pos: -33.5,-57.5 - parent: 12 - - uid: 30788 - components: - - type: Transform - pos: -25.5,-59.5 - parent: 12 - - uid: 30789 - components: - - type: Transform - pos: -25.5,-58.5 - parent: 12 - - uid: 30790 - components: - - type: Transform - pos: -25.5,-57.5 - parent: 12 - - uid: 30791 - components: - - type: Transform - pos: -25.5,-56.5 - parent: 12 - - uid: 30792 - components: - - type: Transform - pos: -25.5,-54.5 - parent: 12 - - uid: 30793 - components: - - type: Transform - pos: -25.5,-53.5 - parent: 12 - - uid: 30794 - components: - - type: Transform - pos: -25.5,-55.5 - parent: 12 - - uid: 30795 - components: - - type: Transform - pos: -30.5,-58.5 - parent: 12 - - uid: 30796 - components: - - type: Transform - pos: -29.5,-58.5 - parent: 12 - - uid: 30797 - components: - - type: Transform - pos: -29.5,-57.5 - parent: 12 - - uid: 30798 - components: - - type: Transform - pos: -32.5,-56.5 - parent: 12 - - uid: 30799 - components: - - type: Transform - pos: -31.5,-56.5 - parent: 12 - - uid: 30800 - components: - - type: Transform - pos: -30.5,-56.5 - parent: 12 - - uid: 30801 - components: - - type: Transform - pos: -29.5,-56.5 - parent: 12 - - uid: 30802 - components: - - type: Transform - pos: -30.5,-55.5 - parent: 12 - - uid: 30803 - components: - - type: Transform - pos: -30.5,-54.5 - parent: 12 - - uid: 30804 - components: - - type: Transform - pos: -30.5,-53.5 - parent: 12 - - uid: 30805 - components: - - type: Transform - pos: -29.5,-53.5 - parent: 12 - - uid: 30806 - components: - - type: Transform - pos: -27.5,-53.5 - parent: 12 - - uid: 30807 - components: - - type: Transform - pos: -26.5,-53.5 - parent: 12 - - uid: 30808 - components: - - type: Transform - pos: -28.5,-53.5 - parent: 12 - - uid: 30810 - components: - - type: Transform - pos: -26.5,-51.5 - parent: 12 - - uid: 30811 - components: - - type: Transform - pos: -31.5,-53.5 - parent: 12 - - uid: 30812 - components: - - type: Transform - pos: -32.5,-53.5 - parent: 12 - - uid: 30813 - components: - - type: Transform - pos: -33.5,-53.5 - parent: 12 - - uid: 30814 - components: - - type: Transform - pos: -34.5,-53.5 - parent: 12 - - uid: 30815 - components: - - type: Transform - pos: -35.5,-53.5 - parent: 12 - - uid: 30816 - components: - - type: Transform - pos: -36.5,-53.5 - parent: 12 - - uid: 30817 - components: - - type: Transform - pos: -37.5,-53.5 - parent: 12 - - uid: 30818 - components: - - type: Transform - pos: -38.5,-52.5 - parent: 12 - - uid: 31046 - components: - - type: Transform - pos: 41.5,2.5 - parent: 12 - - uid: 31048 - components: - - type: Transform - pos: 10.5,-25.5 - parent: 12 - - uid: 31051 - components: - - type: Transform - pos: 41.5,3.5 - parent: 12 - - uid: 31053 - components: - - type: Transform - pos: 10.5,-24.5 - parent: 12 - - uid: 31055 - components: - - type: Transform - pos: -0.5,4.5 - parent: 12 - - uid: 31056 - components: - - type: Transform - pos: -0.5,5.5 - parent: 12 - - uid: 31068 - components: - - type: Transform - pos: -51.5,-46.5 - parent: 12 - - uid: 31069 - components: - - type: Transform - pos: -52.5,-46.5 - parent: 12 - - uid: 31070 - components: - - type: Transform - pos: -52.5,-47.5 - parent: 12 - - uid: 31071 - components: - - type: Transform - pos: -52.5,-48.5 - parent: 12 - - uid: 31072 - components: - - type: Transform - pos: -52.5,-49.5 - parent: 12 - - uid: 31073 - components: - - type: Transform - pos: -52.5,-50.5 - parent: 12 - - uid: 31126 - components: - - type: Transform - pos: 72.5,-2.5 - parent: 12 - - uid: 31165 - components: - - type: Transform - pos: -15.5,-68.5 - parent: 12 - - uid: 31166 - components: - - type: Transform - pos: -14.5,-68.5 - parent: 12 - - uid: 31169 - components: - - type: Transform - pos: -13.5,-68.5 - parent: 12 - - uid: 31170 - components: - - type: Transform - pos: -12.5,-68.5 - parent: 12 - - uid: 31171 - components: - - type: Transform - pos: -11.5,-68.5 - parent: 12 - - uid: 31172 - components: - - type: Transform - pos: -10.5,-68.5 - parent: 12 - - uid: 31173 - components: - - type: Transform - pos: -10.5,-69.5 - parent: 12 - - uid: 31174 - components: - - type: Transform - pos: -10.5,-70.5 - parent: 12 - - uid: 31238 - components: - - type: Transform - pos: -10.5,-71.5 - parent: 12 - - uid: 31266 - components: - - type: Transform - pos: -14.5,-69.5 - parent: 12 - - uid: 31274 - components: - - type: Transform - pos: 73.5,-2.5 - parent: 12 - - uid: 31275 - components: - - type: Transform - pos: -3.5,-69.5 - parent: 12 - - uid: 31276 - components: - - type: Transform - pos: -2.5,-69.5 - parent: 12 - - uid: 31277 - components: - - type: Transform - pos: -1.5,-69.5 - parent: 12 - - uid: 31278 - components: - - type: Transform - pos: -0.5,-69.5 - parent: 12 - - uid: 31279 - components: - - type: Transform - pos: 0.5,-69.5 - parent: 12 - - uid: 31280 - components: - - type: Transform - pos: 1.5,-69.5 - parent: 12 - - uid: 31281 - components: - - type: Transform - pos: -3.5,-68.5 - parent: 12 - - uid: 31282 - components: - - type: Transform - pos: -4.5,-68.5 - parent: 12 - - uid: 31283 - components: - - type: Transform - pos: -5.5,-68.5 - parent: 12 - - uid: 31284 - components: - - type: Transform - pos: -6.5,-68.5 - parent: 12 - - uid: 31285 - components: - - type: Transform - pos: -7.5,-68.5 - parent: 12 - - uid: 31286 - components: - - type: Transform - pos: -7.5,-67.5 - parent: 12 - - uid: 31287 - components: - - type: Transform - pos: -7.5,-66.5 - parent: 12 - - uid: 31289 - components: - - type: Transform - pos: -5.5,-66.5 - parent: 12 - - uid: 31290 - components: - - type: Transform - pos: -4.5,-66.5 - parent: 12 - - uid: 31291 - components: - - type: Transform - pos: -5.5,-65.5 - parent: 12 - - uid: 31315 - components: - - type: Transform - pos: -3.5,-66.5 - parent: 12 - - uid: 31316 - components: - - type: Transform - pos: -1.5,-66.5 - parent: 12 - - uid: 31317 - components: - - type: Transform - pos: -2.5,-66.5 - parent: 12 - - uid: 31318 - components: - - type: Transform - pos: 0.5,-66.5 - parent: 12 - - uid: 31319 - components: - - type: Transform - pos: 1.5,-66.5 - parent: 12 - - uid: 31320 - components: - - type: Transform - pos: 2.5,-66.5 - parent: 12 - - uid: 31321 - components: - - type: Transform - pos: -0.5,-66.5 - parent: 12 - - uid: 31333 - components: - - type: Transform - pos: 1.5,-65.5 - parent: 12 - - uid: 31334 - components: - - type: Transform - pos: 1.5,-64.5 - parent: 12 - - uid: 31335 - components: - - type: Transform - pos: 1.5,-63.5 - parent: 12 - - uid: 31349 - components: - - type: Transform - pos: -14.5,-70.5 - parent: 12 - - uid: 31353 - components: - - type: Transform - pos: -14.5,-71.5 - parent: 12 - - uid: 31354 - components: - - type: Transform - pos: 74.5,-2.5 - parent: 12 - - uid: 31365 - components: - - type: Transform - pos: 4.5,-57.5 - parent: 12 - - uid: 31377 - components: - - type: Transform - pos: 4.5,-59.5 - parent: 12 - - uid: 31382 - components: - - type: Transform - pos: 4.5,-60.5 - parent: 12 - - uid: 31384 - components: - - type: Transform - pos: 4.5,-58.5 - parent: 12 - - uid: 31395 - components: - - type: Transform - pos: -16.5,-65.5 - parent: 12 - - uid: 31397 - components: - - type: Transform - pos: -16.5,-66.5 - parent: 12 - - uid: 31398 - components: - - type: Transform - pos: -16.5,-67.5 - parent: 12 - - uid: 31399 - components: - - type: Transform - pos: -16.5,-68.5 - parent: 12 - - uid: 31532 - components: - - type: Transform - pos: 16.5,-28.5 - parent: 12 - - uid: 31533 - components: - - type: Transform - pos: 15.5,-28.5 - parent: 12 - - uid: 31534 - components: - - type: Transform - pos: 21.5,-33.5 - parent: 12 - - uid: 31535 - components: - - type: Transform - pos: 21.5,-32.5 - parent: 12 - - uid: 31536 - components: - - type: Transform - pos: 21.5,-31.5 - parent: 12 - - uid: 31537 - components: - - type: Transform - pos: 20.5,-31.5 - parent: 12 - - uid: 31538 - components: - - type: Transform - pos: 22.5,-31.5 - parent: 12 - - uid: 31539 - components: - - type: Transform - pos: 23.5,-31.5 - parent: 12 - - uid: 31540 - components: - - type: Transform - pos: 12.5,-32.5 - parent: 12 - - uid: 31541 - components: - - type: Transform - pos: -16.5,-15.5 - parent: 12 - - uid: 31542 - components: - - type: Transform - pos: -16.5,-14.5 - parent: 12 - - uid: 31543 - components: - - type: Transform - pos: -16.5,-13.5 - parent: 12 - - uid: 31544 - components: - - type: Transform - pos: -16.5,-12.5 - parent: 12 - - uid: 31545 - components: - - type: Transform - pos: -16.5,-11.5 - parent: 12 - - uid: 31546 - components: - - type: Transform - pos: -16.5,-10.5 - parent: 12 - - uid: 31547 - components: - - type: Transform - pos: -14.5,-15.5 - parent: 12 - - uid: 31548 - components: - - type: Transform - pos: -14.5,-14.5 - parent: 12 - - uid: 31549 - components: - - type: Transform - pos: -14.5,-13.5 - parent: 12 - - uid: 31550 - components: - - type: Transform - pos: -14.5,-12.5 - parent: 12 - - uid: 31551 - components: - - type: Transform - pos: -14.5,-11.5 - parent: 12 - - uid: 31552 - components: - - type: Transform - pos: -14.5,-10.5 - parent: 12 - - uid: 31554 - components: - - type: Transform - pos: -10.5,-16.5 - parent: 12 - - uid: 31571 - components: - - type: Transform - pos: -13.5,-1.5 - parent: 12 - - uid: 31572 - components: - - type: Transform - pos: -12.5,-1.5 - parent: 12 - - uid: 31632 - components: - - type: Transform - pos: -61.5,-19.5 - parent: 12 - - uid: 31648 - components: - - type: Transform - pos: -61.5,-27.5 - parent: 12 - - uid: 31649 - components: - - type: Transform - pos: -62.5,-27.5 - parent: 12 - - uid: 31650 - components: - - type: Transform - pos: -63.5,-27.5 - parent: 12 - - uid: 31651 - components: - - type: Transform - pos: -64.5,-27.5 - parent: 12 - - uid: 31652 - components: - - type: Transform - pos: -65.5,-27.5 - parent: 12 - - uid: 31658 - components: - - type: Transform - pos: -61.5,-21.5 - parent: 12 - - uid: 31659 - components: - - type: Transform - pos: -61.5,-20.5 - parent: 12 - - uid: 31662 - components: - - type: Transform - pos: -62.5,-21.5 - parent: 12 - - uid: 31663 - components: - - type: Transform - pos: -63.5,-21.5 - parent: 12 - - uid: 31664 - components: - - type: Transform - pos: -64.5,-21.5 - parent: 12 - - uid: 31665 - components: - - type: Transform - pos: -65.5,-21.5 - parent: 12 - - uid: 31666 - components: - - type: Transform - pos: -63.5,-19.5 - parent: 12 - - uid: 31691 - components: - - type: Transform - pos: 75.5,-2.5 - parent: 12 - - uid: 31694 - components: - - type: Transform - pos: 69.5,-2.5 - parent: 12 - - uid: 31695 - components: - - type: Transform - pos: 76.5,-2.5 - parent: 12 - - uid: 31696 - components: - - type: Transform - pos: 76.5,11.5 - parent: 12 - - uid: 31698 - components: - - type: Transform - pos: -62.5,-19.5 - parent: 12 - - uid: 31706 - components: - - type: Transform - pos: 75.5,11.5 - parent: 12 - - uid: 31707 - components: - - type: Transform - pos: 74.5,11.5 - parent: 12 - - uid: 31708 - components: - - type: Transform - pos: -64.5,-19.5 - parent: 12 - - uid: 31709 - components: - - type: Transform - pos: -65.5,-19.5 - parent: 12 - - uid: 31710 - components: - - type: Transform - pos: 73.5,11.5 - parent: 12 - - uid: 31711 - components: - - type: Transform - pos: -62.5,-29.5 - parent: 12 - - uid: 31712 - components: - - type: Transform - pos: -63.5,-29.5 - parent: 12 - - uid: 31713 - components: - - type: Transform - pos: -64.5,-29.5 - parent: 12 - - uid: 31714 - components: - - type: Transform - pos: -65.5,-29.5 - parent: 12 - - uid: 31719 - components: - - type: Transform - pos: 72.5,11.5 - parent: 12 - - uid: 31724 - components: - - type: Transform - pos: 71.5,11.5 - parent: 12 - - uid: 31725 - components: - - type: Transform - pos: 70.5,11.5 - parent: 12 - - uid: 31730 - components: - - type: Transform - pos: 69.5,11.5 - parent: 12 - - uid: 31731 - components: - - type: Transform - pos: 68.5,11.5 - parent: 12 - - uid: 31742 - components: - - type: Transform - pos: 67.5,11.5 - parent: 12 - - uid: 31743 - components: - - type: Transform - pos: 66.5,11.5 - parent: 12 - - uid: 31766 - components: - - type: Transform - pos: -5.5,-55.5 - parent: 12 - - uid: 31767 - components: - - type: Transform - pos: -7.5,-55.5 - parent: 12 - - uid: 32016 - components: - - type: Transform - pos: -26.5,-50.5 - parent: 12 - - uid: 32017 - components: - - type: Transform - pos: -26.5,-49.5 - parent: 12 - - uid: 32039 - components: - - type: Transform - pos: 30.5,-14.5 - parent: 12 - - uid: 32059 - components: - - type: Transform - pos: 34.5,-12.5 - parent: 12 - - uid: 32060 - components: - - type: Transform - pos: 35.5,-12.5 - parent: 12 - - uid: 32063 - components: - - type: Transform - pos: 40.5,-10.5 - parent: 12 - - uid: 32064 - components: - - type: Transform - pos: 40.5,-11.5 - parent: 12 - - uid: 32080 - components: - - type: Transform - pos: 58.5,63.5 - parent: 12 - - uid: 32081 - components: - - type: Transform - pos: 57.5,63.5 - parent: 12 - - uid: 32082 - components: - - type: Transform - pos: 57.5,62.5 - parent: 12 - - uid: 32083 - components: - - type: Transform - pos: 57.5,61.5 - parent: 12 - - uid: 32084 - components: - - type: Transform - pos: 56.5,61.5 - parent: 12 - - uid: 32085 - components: - - type: Transform - pos: 55.5,61.5 - parent: 12 - - uid: 32086 - components: - - type: Transform - pos: 55.5,62.5 - parent: 12 - - uid: 32087 - components: - - type: Transform - pos: 55.5,63.5 - parent: 12 - - uid: 32088 - components: - - type: Transform - pos: 56.5,63.5 - parent: 12 - - uid: 32089 - components: - - type: Transform - pos: 49.5,54.5 - parent: 12 - - uid: 32192 - components: - - type: Transform - pos: 77.5,11.5 - parent: 12 - - uid: 32193 - components: - - type: Transform - pos: 77.5,10.5 - parent: 12 - - uid: 32194 - components: - - type: Transform - pos: 77.5,9.5 - parent: 12 - - uid: 32195 - components: - - type: Transform - pos: 77.5,8.5 - parent: 12 - - uid: 32196 - components: - - type: Transform - pos: 77.5,7.5 - parent: 12 - - uid: 32197 - components: - - type: Transform - pos: 77.5,6.5 - parent: 12 - - uid: 32198 - components: - - type: Transform - pos: 77.5,4.5 - parent: 12 - - uid: 32199 - components: - - type: Transform - pos: 77.5,5.5 - parent: 12 - - uid: 32230 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 12 -- proto: CableApcStack - entities: - - uid: 16561 - components: - - type: Transform - pos: -9.810378,23.725977 - parent: 12 - - uid: 22167 - components: - - type: Transform - pos: -50.00846,36.361725 - parent: 12 - - uid: 23677 - components: - - type: Transform - pos: 44.37826,52.77057 - parent: 12 - - uid: 28551 - components: - - type: Transform - pos: -22.691366,-9.292267 - parent: 12 - - uid: 28714 - components: - - type: Transform - rot: -50.265482457436725 rad - pos: 55.51719,-5.372972 - parent: 12 -- proto: CableApcStack1 - entities: - - uid: 340 - components: - - type: Transform - pos: 44.4912,60.56555 - parent: 12 - - uid: 9130 - components: - - type: Transform - pos: 49.488316,-39.429325 - parent: 12 - - uid: 12245 - components: - - type: Transform - pos: 50.444645,17.502897 - parent: 12 - - uid: 14925 - components: - - type: Transform - pos: 43.47266,63.509254 - parent: 12 - - uid: 31288 - components: - - type: Transform - pos: -6.530117,-66.43609 - parent: 12 -- proto: CableApcStack10 - entities: - - uid: 3011 - components: - - type: Transform - pos: -25.504803,56.737953 - parent: 12 - - uid: 17622 - components: - - type: Transform - pos: -54.282616,29.160913 - parent: 12 -- proto: Cablecuffs - entities: - - uid: 5820 - components: - - type: Transform - 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: - - type: Transform - rot: -31.415926535897945 rad - pos: -36.608337,-57.35913 - parent: 12 -- proto: CableHV - entities: - - uid: 16 - components: - - type: Transform - pos: 54.5,7.5 - parent: 12 - - uid: 71 - components: - - type: Transform - pos: -9.5,-0.5 - parent: 12 - - uid: 105 - components: - - type: Transform - pos: 53.5,8.5 - parent: 12 - - uid: 108 - components: - - type: Transform - pos: 5.5,3.5 - parent: 12 - - uid: 153 - components: - - type: Transform - pos: 54.5,6.5 - parent: 12 - - uid: 192 - components: - - type: Transform - pos: -47.5,-43.5 - parent: 12 - - uid: 195 - components: - - 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 - pos: 40.5,-8.5 - parent: 12 - - uid: 254 - components: - - type: Transform - pos: 15.5,6.5 - parent: 12 - - uid: 257 - components: - - type: Transform - pos: 40.5,-9.5 - parent: 12 - - uid: 355 - components: - - type: Transform - pos: 36.5,-1.5 - parent: 12 - - uid: 361 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 12 - - uid: 384 - components: - - type: Transform - pos: 58.5,-0.5 - parent: 12 - - uid: 405 - components: - - type: Transform - pos: 21.5,5.5 - parent: 12 - - uid: 407 - components: - - type: Transform - pos: 58.5,2.5 - parent: 12 - - uid: 493 - components: - - type: Transform - pos: 8.5,28.5 - parent: 12 - - uid: 510 - components: - - type: Transform - pos: 6.5,-54.5 - parent: 12 - - uid: 693 - components: - - type: Transform - pos: 40.5,-11.5 - parent: 12 - - uid: 724 - components: - - type: Transform - pos: 38.5,-15.5 - parent: 12 - - uid: 759 - components: - - type: Transform - pos: -53.5,22.5 - parent: 12 - - uid: 774 - components: - - type: Transform - pos: -37.5,-29.5 - parent: 12 - - uid: 782 - components: - - type: Transform - pos: -40.5,-29.5 - parent: 12 - - uid: 783 - components: - - type: Transform - pos: -37.5,-27.5 - parent: 12 - - uid: 841 - components: - - type: Transform - pos: -37.5,-28.5 - parent: 12 - - uid: 850 - components: - - type: Transform - pos: -39.5,-29.5 - parent: 12 - - uid: 879 - components: - - type: Transform - pos: -38.5,-29.5 - parent: 12 - - uid: 896 - components: - - type: Transform - pos: 19.5,-11.5 - parent: 12 - - uid: 904 - components: - - type: Transform - pos: 51.5,-5.5 - parent: 12 - - uid: 938 - components: - - type: Transform - pos: 30.5,13.5 - parent: 12 - - uid: 1041 - components: - - type: Transform - pos: -32.5,59.5 - parent: 12 - - uid: 1044 - components: - - 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 - pos: 58.5,4.5 - parent: 12 - - uid: 1283 - components: - - type: Transform - pos: -11.5,-23.5 - parent: 12 - - uid: 1317 - components: - - type: Transform - pos: -37.5,-26.5 - parent: 12 - - uid: 1318 - components: - - type: Transform - pos: -36.5,-26.5 - parent: 12 - - uid: 1319 - components: - - type: Transform - pos: -35.5,-26.5 - parent: 12 - - uid: 1320 - components: - - type: Transform - pos: -34.5,-26.5 - parent: 12 - - uid: 1321 - components: - - type: Transform - pos: -33.5,-26.5 - parent: 12 - - uid: 1322 - components: - - type: Transform - pos: -32.5,-26.5 - parent: 12 - - uid: 1323 - components: - - type: Transform - pos: -31.5,-26.5 - parent: 12 - - uid: 1324 - components: - - type: Transform - pos: -31.5,-25.5 - parent: 12 - - uid: 1325 - components: - - type: Transform - pos: -31.5,-24.5 - parent: 12 - - uid: 1326 - components: - - type: Transform - pos: -30.5,-24.5 - parent: 12 - - uid: 1327 - components: - - type: Transform - pos: -29.5,-24.5 - parent: 12 - - uid: 1328 - components: - - type: Transform - pos: -28.5,-24.5 - parent: 12 - - uid: 1329 - components: - - type: Transform - pos: -27.5,-24.5 - parent: 12 - - uid: 1330 - components: - - type: Transform - pos: -26.5,-24.5 - parent: 12 - - uid: 1331 - components: - - type: Transform - pos: -25.5,-24.5 - parent: 12 - - uid: 1332 - components: - - type: Transform - pos: -24.5,-24.5 - parent: 12 - - uid: 1333 - components: - - type: Transform - pos: -23.5,-24.5 - parent: 12 - - uid: 1334 - components: - - type: Transform - pos: -22.5,-24.5 - parent: 12 - - uid: 1335 - components: - - type: Transform - pos: -21.5,-24.5 - parent: 12 - - uid: 1336 - components: - - type: Transform - pos: -20.5,-24.5 - parent: 12 - - uid: 1337 - components: - - type: Transform - pos: -19.5,-24.5 - parent: 12 - - uid: 1338 - components: - - type: Transform - pos: -18.5,-24.5 - parent: 12 - - uid: 1339 - components: - - type: Transform - pos: -17.5,-24.5 - parent: 12 - - uid: 1340 - components: - - type: Transform - pos: -16.5,-24.5 - parent: 12 - - uid: 1341 - components: - - type: Transform - pos: -15.5,-24.5 - parent: 12 - - uid: 1342 - components: - - type: Transform - pos: -24.5,-25.5 - parent: 12 - - uid: 1343 - components: - - type: Transform - pos: -24.5,-26.5 - parent: 12 - - uid: 1344 - components: - - type: Transform - pos: 45.5,-5.5 - parent: 12 - - uid: 1345 - components: - - type: Transform - pos: 35.5,-1.5 - parent: 12 - - uid: 1349 - components: - - type: Transform - pos: 43.5,-3.5 - parent: 12 - - uid: 1353 - components: - - type: Transform - pos: 19.5,10.5 - parent: 12 - - uid: 1360 - components: - - type: Transform - pos: -15.5,-27.5 - parent: 12 - - uid: 1361 - components: - - type: Transform - pos: -15.5,-26.5 - parent: 12 - - uid: 1362 - components: - - type: Transform - pos: -15.5,-25.5 - parent: 12 - - uid: 1482 - components: - - type: Transform - pos: 59.5,4.5 - parent: 12 - - uid: 1703 - components: - - type: Transform - pos: -43.5,-14.5 - parent: 12 - - uid: 1706 - components: - - type: Transform - pos: -43.5,-13.5 - parent: 12 - - uid: 1764 - components: - - type: Transform - pos: -56.5,-53.5 - parent: 12 - - uid: 1835 - components: - - type: Transform - pos: 11.5,15.5 - parent: 12 - - uid: 1975 - components: - - type: Transform - pos: 43.5,-1.5 - parent: 12 - - uid: 1997 - components: - - type: Transform - pos: 24.5,5.5 - parent: 12 - - uid: 2018 - components: - - type: Transform - pos: 30.5,-11.5 - parent: 12 - - uid: 2053 - components: - - type: Transform - pos: 60.5,4.5 - parent: 12 - - uid: 2055 - components: - - type: Transform - pos: 58.5,3.5 - parent: 12 - - uid: 2087 - components: - - type: Transform - pos: 61.5,4.5 - parent: 12 - - uid: 2119 - components: - - type: Transform - pos: 43.5,-2.5 - parent: 12 - - uid: 2122 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 12 - - uid: 2123 - components: - - type: Transform - pos: -3.5,-2.5 - parent: 12 - - uid: 2132 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 12 - - uid: 2133 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 12 - - uid: 2134 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 12 - - uid: 2135 - components: - - type: Transform - pos: 5.5,-6.5 - parent: 12 - - uid: 2167 - components: - - type: Transform - pos: 48.5,8.5 - parent: 12 - - uid: 2176 - components: - - type: Transform - pos: 46.5,8.5 - parent: 12 - - uid: 2188 - components: - - type: Transform - pos: 2.5,-7.5 - parent: 12 - - uid: 2239 - components: - - type: Transform - pos: 47.5,8.5 - parent: 12 - - uid: 2246 - components: - - type: Transform - pos: 68.5,11.5 - parent: 12 - - uid: 2255 - components: - - type: Transform - pos: 18.5,-11.5 - parent: 12 - - uid: 2287 - components: - - type: Transform - pos: 70.5,11.5 - parent: 12 - - uid: 2301 - components: - - type: Transform - pos: 42.5,-11.5 - parent: 12 - - uid: 2302 - components: - - type: Transform - pos: 15.5,10.5 - parent: 12 - - uid: 2310 - components: - - 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: 2411 - components: - - type: Transform - pos: 39.5,2.5 - parent: 12 - - uid: 2413 - components: - - type: Transform - pos: 39.5,0.5 - parent: 12 - - uid: 2466 - components: - - type: Transform - pos: 9.5,-18.5 - parent: 12 - - uid: 2508 - components: - - 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 - pos: 39.5,-1.5 - parent: 12 - - uid: 2874 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 12 - - uid: 2887 - components: - - type: Transform - pos: -13.5,-23.5 - parent: 12 - - uid: 2889 - components: - - type: Transform - pos: -10.5,-23.5 - parent: 12 - - uid: 2926 - components: - - type: Transform - pos: 20.5,-15.5 - parent: 12 - - uid: 2927 - components: - - type: Transform - pos: 20.5,5.5 - parent: 12 - - uid: 2968 - components: - - type: Transform - pos: 19.5,5.5 - parent: 12 - - uid: 2989 - components: - - type: Transform - pos: -2.5,-2.5 - parent: 12 - - uid: 3131 - components: - - type: Transform - pos: 8.5,-14.5 - parent: 12 - - uid: 3149 - components: - - type: Transform - pos: 3.5,-49.5 - parent: 12 - - uid: 3150 - components: - - type: Transform - pos: 4.5,-49.5 - parent: 12 - - uid: 3151 - components: - - type: Transform - pos: 5.5,-49.5 - parent: 12 - - uid: 3153 - components: - - type: Transform - pos: 5.5,-48.5 - parent: 12 - - uid: 3155 - components: - - type: Transform - pos: 7.5,-47.5 - parent: 12 - - uid: 3156 - components: - - type: Transform - pos: 8.5,-47.5 - parent: 12 - - uid: 3166 - components: - - type: Transform - pos: 8.5,-37.5 - parent: 12 - - uid: 3167 - components: - - type: Transform - pos: 8.5,-36.5 - parent: 12 - - uid: 3168 - components: - - type: Transform - pos: 8.5,-35.5 - parent: 12 - - uid: 3169 - components: - - type: Transform - pos: 8.5,-34.5 - parent: 12 - - uid: 3170 - components: - - type: Transform - pos: 5.5,-33.5 - parent: 12 - - uid: 3171 - components: - - type: Transform - pos: 5.5,-32.5 - parent: 12 - - uid: 3172 - components: - - type: Transform - pos: 5.5,-31.5 - parent: 12 - - uid: 3173 - components: - - type: Transform - pos: 5.5,-30.5 - parent: 12 - - uid: 3174 - components: - - type: Transform - pos: 5.5,-34.5 - parent: 12 - - uid: 3175 - components: - - type: Transform - pos: 6.5,-34.5 - parent: 12 - - uid: 3176 - components: - - type: Transform - pos: 7.5,-34.5 - parent: 12 - - uid: 3177 - components: - - type: Transform - pos: 4.5,-30.5 - parent: 12 - - uid: 3178 - components: - - type: Transform - pos: 3.5,-30.5 - parent: 12 - - uid: 3179 - components: - - type: Transform - pos: 2.5,-30.5 - parent: 12 - - uid: 3180 - components: - - type: Transform - pos: 1.5,-30.5 - parent: 12 - - uid: 3181 - components: - - type: Transform - pos: 0.5,-30.5 - parent: 12 - - uid: 3182 - components: - - type: Transform - pos: -0.5,-30.5 - parent: 12 - - uid: 3183 - components: - - type: Transform - pos: -1.5,-30.5 - parent: 12 - - uid: 3184 - components: - - type: Transform - pos: -2.5,-30.5 - parent: 12 - - uid: 3185 - components: - - type: Transform - pos: -3.5,-30.5 - parent: 12 - - uid: 3186 - components: - - type: Transform - pos: -4.5,-30.5 - parent: 12 - - uid: 3187 - components: - - type: Transform - pos: -5.5,-30.5 - parent: 12 - - uid: 3188 - components: - - type: Transform - pos: -6.5,-30.5 - parent: 12 - - uid: 3189 - components: - - type: Transform - pos: -7.5,-30.5 - parent: 12 - - uid: 3190 - components: - - type: Transform - pos: -8.5,-30.5 - parent: 12 - - uid: 3191 - components: - - type: Transform - pos: -9.5,-30.5 - parent: 12 - - uid: 3192 - components: - - type: Transform - pos: -9.5,-29.5 - parent: 12 - - uid: 3193 - components: - - 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 - pos: 9.5,-19.5 - parent: 12 - - uid: 3632 - components: - - type: Transform - pos: 16.5,5.5 - parent: 12 - - uid: 3940 - components: - - type: Transform - pos: 21.5,-6.5 - parent: 12 - - uid: 3954 - components: - - type: Transform - pos: 9.5,-16.5 - parent: 12 - - uid: 3957 - components: - - type: Transform - pos: 4.5,23.5 - parent: 12 - - uid: 3985 - components: - - type: Transform - pos: 15.5,-27.5 - parent: 12 - - uid: 4046 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 12 - - uid: 4058 - components: - - type: Transform - pos: 6.5,28.5 - parent: 12 - - uid: 4079 - components: - - type: Transform - pos: 15.5,28.5 - parent: 12 - - uid: 4180 - components: - - type: Transform - pos: -14.5,-27.5 - parent: 12 - - uid: 4181 - components: - - type: Transform - pos: -13.5,-27.5 - parent: 12 - - uid: 4182 - components: - - type: Transform - pos: -12.5,-27.5 - parent: 12 - - uid: 4183 - components: - - type: Transform - pos: -11.5,-27.5 - parent: 12 - - uid: 4184 - components: - - type: Transform - pos: -10.5,-27.5 - parent: 12 - - uid: 4185 - components: - - type: Transform - pos: 1.5,17.5 - parent: 12 - - uid: 4199 - components: - - type: Transform - pos: 10.5,-47.5 - parent: 12 - - uid: 4226 - components: - - type: Transform - pos: 2.5,20.5 - parent: 12 - - uid: 4254 - components: - - type: Transform - pos: 9.5,-47.5 - parent: 12 - - uid: 4305 - components: - - type: Transform - pos: 13.5,28.5 - parent: 12 - - uid: 4323 - components: - - type: Transform - pos: 10.5,28.5 - parent: 12 - - uid: 4381 - components: - - type: Transform - pos: 9.5,28.5 - parent: 12 - - uid: 4387 - components: - - type: Transform - pos: 3.5,20.5 - parent: 12 - - uid: 4457 - components: - - type: Transform - pos: 14.5,-18.5 - parent: 12 - - uid: 4458 - components: - - 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 - pos: -48.5,46.5 - parent: 12 - - uid: 4482 - components: - - type: Transform - pos: 13.5,-18.5 - parent: 12 - - uid: 4483 - components: - - type: Transform - pos: 13.5,-19.5 - parent: 12 - - uid: 4484 - components: - - type: Transform - pos: 13.5,-20.5 - parent: 12 - - uid: 4485 - components: - - type: Transform - pos: 13.5,-21.5 - parent: 12 - - uid: 4486 - components: - - type: Transform - pos: 14.5,-21.5 - parent: 12 - - uid: 4487 - components: - - type: Transform - pos: 15.5,-21.5 - parent: 12 - - uid: 4488 - components: - - type: Transform - pos: 16.5,-21.5 - parent: 12 - - uid: 4489 - components: - - type: Transform - pos: 16.5,-22.5 - parent: 12 - - uid: 4490 - components: - - type: Transform - pos: 16.5,-23.5 - parent: 12 - - uid: 4491 - components: - - type: Transform - pos: 16.5,-24.5 - parent: 12 - - uid: 4492 - components: - - type: Transform - pos: 16.5,-25.5 - parent: 12 - - uid: 4493 - components: - - type: Transform - pos: 16.5,-26.5 - parent: 12 - - uid: 4494 - components: - - type: Transform - pos: 16.5,-27.5 - parent: 12 - - uid: 4495 - components: - - type: Transform - pos: 14.5,-27.5 - parent: 12 - - uid: 4496 - components: - - type: Transform - pos: 13.5,-27.5 - parent: 12 - - uid: 4497 - components: - - type: Transform - pos: 12.5,-27.5 - parent: 12 - - uid: 4498 - components: - - type: Transform - pos: 11.5,-27.5 - parent: 12 - - uid: 4499 - components: - - type: Transform - pos: 10.5,-27.5 - parent: 12 - - uid: 4500 - components: - - type: Transform - pos: 9.5,-27.5 - parent: 12 - - uid: 4501 - components: - - type: Transform - pos: 8.5,-27.5 - parent: 12 - - uid: 4502 - components: - - type: Transform - pos: 7.5,-27.5 - parent: 12 - - uid: 4503 - components: - - type: Transform - pos: 6.5,-27.5 - parent: 12 - - uid: 4504 - components: - - type: Transform - pos: 5.5,-27.5 - parent: 12 - - uid: 4505 - components: - - type: Transform - pos: 4.5,-27.5 - parent: 12 - - uid: 4506 - components: - - type: Transform - pos: 3.5,-27.5 - parent: 12 - - uid: 4507 - components: - - type: Transform - pos: 2.5,-27.5 - parent: 12 - - uid: 4508 - components: - - type: Transform - pos: 1.5,-27.5 - parent: 12 - - uid: 4509 - components: - - type: Transform - pos: 0.5,-27.5 - parent: 12 - - uid: 4510 - components: - - type: Transform - pos: -0.5,-27.5 - parent: 12 - - uid: 4511 - components: - - type: Transform - pos: -1.5,-27.5 - parent: 12 - - uid: 4512 - components: - - type: Transform - pos: -2.5,-27.5 - parent: 12 - - uid: 4513 - components: - - type: Transform - pos: -3.5,-27.5 - parent: 12 - - uid: 4514 - components: - - type: Transform - pos: -4.5,-27.5 - parent: 12 - - uid: 4515 - components: - - type: Transform - pos: -5.5,-27.5 - parent: 12 - - uid: 4516 - components: - - type: Transform - pos: -6.5,-27.5 - parent: 12 - - uid: 4517 - components: - - type: Transform - pos: -7.5,-27.5 - parent: 12 - - uid: 4518 - components: - - type: Transform - pos: -8.5,-27.5 - parent: 12 - - uid: 4519 - components: - - type: Transform - pos: -9.5,-27.5 - parent: 12 - - uid: 4544 - components: - - type: Transform - pos: 12.5,-17.5 - parent: 12 - - uid: 4545 - components: - - type: Transform - pos: 13.5,-17.5 - parent: 12 - - uid: 4546 - components: - - type: Transform - pos: 14.5,-17.5 - parent: 12 - - uid: 4547 - components: - - type: Transform - pos: 14.5,-16.5 - parent: 12 - - uid: 4549 - components: - - 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 - pos: 4.5,21.5 - parent: 12 - - uid: 4605 - components: - - type: Transform - pos: 4.5,20.5 - parent: 12 - - uid: 4607 - components: - - type: Transform - pos: 6.5,-6.5 - parent: 12 - - uid: 4609 - components: - - type: Transform - pos: 22.5,5.5 - parent: 12 - - uid: 4617 - components: - - type: Transform - pos: 20.5,-11.5 - parent: 12 - - uid: 4623 - components: - - type: Transform - pos: 16.5,-16.5 - parent: 12 - - uid: 4624 - components: - - type: Transform - pos: 15.5,-16.5 - parent: 12 - - uid: 4626 - components: - - type: Transform - pos: 7.5,-6.5 - parent: 12 - - uid: 4627 - components: - - type: Transform - pos: 8.5,-6.5 - parent: 12 - - uid: 4633 - components: - - type: Transform - pos: 8.5,-13.5 - parent: 12 - - uid: 4657 - components: - - type: Transform - pos: 18.5,10.5 - parent: 12 - - uid: 4665 - components: - - type: Transform - pos: 21.5,-16.5 - parent: 12 - - uid: 4679 - components: - - type: Transform - pos: 26.5,5.5 - parent: 12 - - uid: 4691 - components: - - 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 - pos: -10.5,-22.5 - parent: 12 - - uid: 4716 - components: - - type: Transform - pos: 18.5,24.5 - parent: 12 - - uid: 4745 - components: - - type: Transform - pos: 25.5,5.5 - parent: 12 - - uid: 4755 - components: - - type: Transform - pos: 0.5,16.5 - parent: 12 - - uid: 4799 - components: - - type: Transform - pos: 25.5,-16.5 - parent: 12 - - uid: 4803 - components: - - type: Transform - pos: 15.5,-15.5 - parent: 12 - - uid: 4858 - components: - - type: Transform - pos: 5.5,5.5 - parent: 12 - - uid: 4860 - components: - - type: Transform - pos: 5.5,-1.5 - parent: 12 - - uid: 4861 - components: - - type: Transform - pos: 5.5,-0.5 - parent: 12 - - uid: 4862 - components: - - type: Transform - pos: 5.5,0.5 - parent: 12 - - uid: 4863 - components: - - type: Transform - pos: 5.5,1.5 - parent: 12 - - uid: 4895 - components: - - type: Transform - pos: 20.5,-13.5 - parent: 12 - - uid: 4917 - components: - - type: Transform - pos: 1.5,20.5 - parent: 12 - - uid: 4919 - components: - - type: Transform - pos: 34.5,-1.5 - parent: 12 - - uid: 4970 - components: - - type: Transform - pos: 42.5,-0.5 - parent: 12 - - uid: 4994 - components: - - type: Transform - pos: 8.5,-8.5 - parent: 12 - - uid: 4995 - components: - - type: Transform - pos: 8.5,-9.5 - parent: 12 - - uid: 4996 - components: - - type: Transform - pos: 8.5,-10.5 - parent: 12 - - uid: 4998 - components: - - type: Transform - pos: 8.5,-11.5 - parent: 12 - - uid: 4999 - components: - - type: Transform - pos: 9.5,-11.5 - parent: 12 - - uid: 5000 - components: - - type: Transform - pos: 12.5,-11.5 - parent: 12 - - uid: 5001 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 12 - - uid: 5002 - components: - - type: Transform - pos: 10.5,-11.5 - parent: 12 - - uid: 5008 - components: - - type: Transform - pos: 28.5,5.5 - parent: 12 - - uid: 5046 - components: - - type: Transform - pos: 20.5,-14.5 - parent: 12 - - uid: 5059 - components: - - type: Transform - pos: -11.5,-30.5 - parent: 12 - - uid: 5071 - components: - - type: Transform - pos: -10.5,-30.5 - parent: 12 - - uid: 5113 - components: - - type: Transform - pos: 33.5,-1.5 - parent: 12 - - uid: 5114 - components: - - type: Transform - pos: 32.5,-1.5 - parent: 12 - - uid: 5115 - components: - - type: Transform - pos: 31.5,-1.5 - parent: 12 - - uid: 5116 - components: - - type: Transform - pos: 30.5,-1.5 - parent: 12 - - uid: 5174 - components: - - type: Transform - pos: -25.5,-55.5 - parent: 12 - - uid: 5179 - components: - - type: Transform - pos: 17.5,-27.5 - parent: 12 - - uid: 5180 - components: - - type: Transform - pos: 18.5,-27.5 - parent: 12 - - uid: 5181 - components: - - type: Transform - pos: 19.5,-27.5 - parent: 12 - - uid: 5182 - components: - - type: Transform - pos: 20.5,-27.5 - parent: 12 - - uid: 5193 - components: - - type: Transform - pos: 20.5,-16.5 - parent: 12 - - uid: 5195 - components: - - type: Transform - pos: 22.5,-16.5 - parent: 12 - - uid: 5196 - components: - - type: Transform - pos: 23.5,-16.5 - parent: 12 - - uid: 5200 - components: - - type: Transform - pos: 27.5,-16.5 - parent: 12 - - uid: 5201 - components: - - type: Transform - pos: 28.5,-16.5 - parent: 12 - - uid: 5202 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 12 - - uid: 5203 - components: - - type: Transform - pos: 30.5,-16.5 - parent: 12 - - uid: 5204 - components: - - type: Transform - pos: 30.5,-15.5 - parent: 12 - - uid: 5205 - components: - - type: Transform - pos: 30.5,-14.5 - parent: 12 - - uid: 5206 - components: - - type: Transform - pos: 30.5,-13.5 - parent: 12 - - uid: 5230 - components: - - type: Transform - pos: 23.5,5.5 - parent: 12 - - uid: 5231 - components: - - type: Transform - pos: 5.5,4.5 - parent: 12 - - uid: 5237 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 12 - - uid: 5270 - components: - - type: Transform - pos: 9.5,-17.5 - parent: 12 - - uid: 5320 - components: - - type: Transform - pos: -54.5,38.5 - parent: 12 - - uid: 5368 - components: - - type: Transform - pos: 29.5,4.5 - parent: 12 - - uid: 5421 - components: - - 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: 17.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 - pos: 27.5,5.5 - parent: 12 - - uid: 5640 - components: - - type: Transform - pos: 18.5,5.5 - parent: 12 - - uid: 5667 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 12 - - uid: 5671 - components: - - 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 - pos: 24.5,-16.5 - parent: 12 - - uid: 5842 - components: - - type: Transform - pos: 8.5,-7.5 - parent: 12 - - uid: 5868 - components: - - type: Transform - pos: 17.5,7.5 - parent: 12 - - uid: 5989 - components: - - type: Transform - pos: -0.5,-4.5 - parent: 12 - - uid: 6013 - components: - - type: Transform - pos: 17.5,5.5 - parent: 12 - - uid: 6207 - components: - - type: Transform - pos: 68.5,-2.5 - parent: 12 - - uid: 6259 - components: - - type: Transform - pos: 9.5,-20.5 - parent: 12 - - uid: 6264 - components: - - type: Transform - pos: 70.5,-2.5 - parent: 12 - - uid: 6414 - components: - - type: Transform - pos: 44.5,-59.5 - parent: 12 - - uid: 6458 - components: - - type: Transform - pos: 72.5,-59.5 - parent: 12 - - uid: 6459 - components: - - type: Transform - pos: 71.5,-59.5 - parent: 12 - - uid: 6460 - components: - - type: Transform - pos: 70.5,-59.5 - parent: 12 - - uid: 6462 - components: - - type: Transform - pos: 69.5,-59.5 - parent: 12 - - uid: 6463 - components: - - type: Transform - pos: 68.5,-59.5 - parent: 12 - - uid: 6464 - components: - - type: Transform - pos: 67.5,-59.5 - parent: 12 - - uid: 6465 - components: - - type: Transform - pos: 67.5,-57.5 - parent: 12 - - uid: 6466 - components: - - type: Transform - pos: 68.5,-57.5 - parent: 12 - - uid: 6467 - components: - - type: Transform - pos: 69.5,-57.5 - parent: 12 - - uid: 6468 - components: - - type: Transform - pos: 70.5,-57.5 - parent: 12 - - uid: 6469 - components: - - type: Transform - pos: 71.5,-57.5 - parent: 12 - - uid: 6470 - components: - - type: Transform - pos: 72.5,-57.5 - parent: 12 - - uid: 6471 - components: - - type: Transform - pos: 65.5,-59.5 - parent: 12 - - uid: 6472 - components: - - type: Transform - pos: 64.5,-59.5 - parent: 12 - - uid: 6473 - components: - - type: Transform - pos: 63.5,-59.5 - parent: 12 - - uid: 6474 - components: - - type: Transform - pos: 62.5,-59.5 - parent: 12 - - uid: 6475 - components: - - type: Transform - pos: 61.5,-59.5 - parent: 12 - - uid: 6476 - components: - - type: Transform - pos: 60.5,-59.5 - parent: 12 - - uid: 6477 - components: - - type: Transform - pos: 60.5,-57.5 - parent: 12 - - uid: 6478 - components: - - type: Transform - pos: 61.5,-57.5 - parent: 12 - - uid: 6479 - components: - - type: Transform - pos: 62.5,-57.5 - parent: 12 - - uid: 6480 - components: - - type: Transform - pos: 63.5,-57.5 - parent: 12 - - uid: 6481 - components: - - type: Transform - pos: 64.5,-57.5 - parent: 12 - - uid: 6482 - components: - - type: Transform - pos: 65.5,-57.5 - parent: 12 - - uid: 6483 - components: - - type: Transform - pos: 58.5,-59.5 - parent: 12 - - uid: 6484 - components: - - type: Transform - pos: 57.5,-59.5 - parent: 12 - - uid: 6485 - components: - - type: Transform - pos: 56.5,-59.5 - parent: 12 - - uid: 6486 - components: - - type: Transform - pos: 55.5,-59.5 - parent: 12 - - uid: 6487 - components: - - type: Transform - pos: 54.5,-59.5 - parent: 12 - - uid: 6488 - components: - - type: Transform - pos: 54.5,-57.5 - parent: 12 - - uid: 6489 - components: - - type: Transform - pos: 55.5,-57.5 - parent: 12 - - uid: 6490 - components: - - type: Transform - pos: 56.5,-57.5 - parent: 12 - - uid: 6491 - components: - - type: Transform - pos: 57.5,-57.5 - parent: 12 - - uid: 6492 - components: - - type: Transform - pos: 58.5,-57.5 - parent: 12 - - uid: 6493 - components: - - type: Transform - pos: 52.5,-59.5 - parent: 12 - - uid: 6494 - components: - - type: Transform - pos: 51.5,-59.5 - parent: 12 - - uid: 6495 - components: - - type: Transform - pos: 50.5,-59.5 - parent: 12 - - uid: 6496 - components: - - type: Transform - pos: 49.5,-59.5 - parent: 12 - - uid: 6497 - components: - - type: Transform - pos: 48.5,-59.5 - parent: 12 - - uid: 6499 - components: - - type: Transform - pos: 49.5,-57.5 - parent: 12 - - uid: 6500 - components: - - type: Transform - pos: 50.5,-57.5 - parent: 12 - - uid: 6501 - components: - - type: Transform - pos: 51.5,-57.5 - parent: 12 - - uid: 6502 - components: - - type: Transform - pos: 52.5,-57.5 - parent: 12 - - uid: 6503 - components: - - type: Transform - pos: 43.5,-59.5 - parent: 12 - - uid: 6504 - components: - - type: Transform - pos: 42.5,-59.5 - parent: 12 - - uid: 6505 - components: - - type: Transform - pos: 41.5,-59.5 - parent: 12 - - uid: 6506 - components: - - type: Transform - pos: 40.5,-59.5 - parent: 12 - - uid: 6507 - components: - - type: Transform - pos: 39.5,-59.5 - parent: 12 - - uid: 6508 - components: - - type: Transform - pos: 39.5,-57.5 - parent: 12 - - uid: 6509 - components: - - type: Transform - pos: 40.5,-57.5 - parent: 12 - - uid: 6510 - components: - - type: Transform - pos: 41.5,-57.5 - parent: 12 - - uid: 6511 - components: - - type: Transform - pos: 42.5,-57.5 - parent: 12 - - uid: 6512 - components: - - type: Transform - pos: 43.5,-57.5 - parent: 12 - - uid: 6513 - components: - - type: Transform - pos: 44.5,-57.5 - parent: 12 - - uid: 6514 - components: - - type: Transform - pos: 44.5,-55.5 - parent: 12 - - uid: 6515 - components: - - type: Transform - pos: 43.5,-55.5 - parent: 12 - - uid: 6516 - components: - - type: Transform - pos: 42.5,-55.5 - parent: 12 - - uid: 6517 - components: - - type: Transform - pos: 41.5,-55.5 - parent: 12 - - uid: 6518 - components: - - type: Transform - pos: 40.5,-55.5 - parent: 12 - - uid: 6519 - components: - - type: Transform - pos: 39.5,-55.5 - parent: 12 - - uid: 6520 - components: - - type: Transform - pos: 39.5,-53.5 - parent: 12 - - uid: 6521 - components: - - type: Transform - pos: 40.5,-53.5 - parent: 12 - - uid: 6522 - components: - - type: Transform - pos: 41.5,-53.5 - parent: 12 - - uid: 6523 - components: - - type: Transform - pos: 42.5,-53.5 - parent: 12 - - uid: 6524 - components: - - type: Transform - pos: 43.5,-53.5 - parent: 12 - - uid: 6525 - components: - - type: Transform - pos: 44.5,-53.5 - parent: 12 - - uid: 6526 - components: - - type: Transform - pos: 60.5,-58.5 - parent: 12 - - uid: 6527 - components: - - type: Transform - pos: 48.5,-55.5 - parent: 12 - - uid: 6528 - components: - - type: Transform - pos: 49.5,-55.5 - parent: 12 - - uid: 6529 - components: - - type: Transform - pos: 50.5,-55.5 - parent: 12 - - uid: 6530 - components: - - type: Transform - pos: 51.5,-55.5 - parent: 12 - - uid: 6531 - components: - - type: Transform - pos: 52.5,-55.5 - parent: 12 - - uid: 6532 - components: - - type: Transform - pos: 52.5,-53.5 - parent: 12 - - uid: 6533 - components: - - type: Transform - pos: 51.5,-53.5 - parent: 12 - - uid: 6534 - components: - - type: Transform - pos: 50.5,-53.5 - parent: 12 - - uid: 6535 - components: - - type: Transform - pos: 49.5,-53.5 - parent: 12 - - uid: 6536 - components: - - type: Transform - pos: 48.5,-53.5 - parent: 12 - - uid: 6537 - components: - - type: Transform - pos: 52.5,-54.5 - parent: 12 - - uid: 6538 - components: - - type: Transform - pos: 53.5,-54.5 - parent: 12 - - uid: 6539 - components: - - type: Transform - pos: 54.5,-54.5 - parent: 12 - - uid: 6540 - components: - - type: Transform - pos: 55.5,-54.5 - parent: 12 - - uid: 6541 - components: - - type: Transform - pos: 56.5,-54.5 - parent: 12 - - uid: 6542 - components: - - type: Transform - pos: 57.5,-54.5 - parent: 12 - - uid: 6543 - components: - - type: Transform - pos: 58.5,-54.5 - parent: 12 - - uid: 6544 - components: - - type: Transform - pos: 39.5,-51.5 - parent: 12 - - uid: 6545 - components: - - type: Transform - pos: 40.5,-51.5 - parent: 12 - - uid: 6546 - components: - - type: Transform - pos: 41.5,-51.5 - parent: 12 - - uid: 6547 - components: - - type: Transform - pos: 42.5,-51.5 - parent: 12 - - uid: 6548 - components: - - type: Transform - pos: 43.5,-51.5 - parent: 12 - - uid: 6549 - components: - - type: Transform - pos: 44.5,-51.5 - parent: 12 - - uid: 6550 - components: - - type: Transform - pos: 44.5,-49.5 - parent: 12 - - uid: 6551 - components: - - type: Transform - pos: 43.5,-49.5 - parent: 12 - - uid: 6552 - components: - - type: Transform - pos: 42.5,-49.5 - parent: 12 - - uid: 6553 - components: - - type: Transform - pos: 41.5,-49.5 - parent: 12 - - uid: 6554 - components: - - type: Transform - pos: 40.5,-49.5 - parent: 12 - - uid: 6555 - components: - - type: Transform - pos: 39.5,-49.5 - parent: 12 - - uid: 6556 - components: - - type: Transform - pos: 39.5,-47.5 - parent: 12 - - uid: 6557 - components: - - type: Transform - pos: 40.5,-47.5 - parent: 12 - - uid: 6558 - components: - - type: Transform - pos: 41.5,-47.5 - parent: 12 - - uid: 6559 - components: - - type: Transform - pos: 42.5,-47.5 - parent: 12 - - uid: 6560 - components: - - type: Transform - pos: 43.5,-47.5 - parent: 12 - - uid: 6561 - components: - - type: Transform - pos: 44.5,-47.5 - parent: 12 - - uid: 6562 - components: - - type: Transform - pos: 44.5,-45.5 - parent: 12 - - uid: 6563 - components: - - type: Transform - pos: 43.5,-45.5 - parent: 12 - - uid: 6564 - components: - - type: Transform - pos: 42.5,-45.5 - parent: 12 - - uid: 6565 - components: - - type: Transform - pos: 41.5,-45.5 - parent: 12 - - uid: 6566 - components: - - type: Transform - pos: 40.5,-45.5 - parent: 12 - - uid: 6567 - components: - - type: Transform - pos: 39.5,-45.5 - parent: 12 - - uid: 6568 - components: - - type: Transform - pos: 54.5,-58.5 - parent: 12 - - uid: 6570 - components: - - type: Transform - pos: 58.5,-58.5 - parent: 12 - - uid: 6571 - components: - - type: Transform - pos: 59.5,-58.5 - parent: 12 - - uid: 6572 - components: - - type: Transform - pos: 47.5,-58.5 - parent: 12 - - uid: 6573 - components: - - type: Transform - pos: 48.5,-58.5 - parent: 12 - - uid: 6574 - components: - - type: Transform - pos: 52.5,-58.5 - parent: 12 - - uid: 6575 - components: - - type: Transform - pos: 53.5,-58.5 - parent: 12 - - uid: 6576 - components: - - type: Transform - pos: 66.5,-58.5 - parent: 12 - - uid: 6577 - components: - - type: Transform - pos: 67.5,-58.5 - parent: 12 - - uid: 6578 - components: - - type: Transform - pos: 48.5,-57.5 - parent: 12 - - uid: 6579 - components: - - type: Transform - pos: 65.5,-58.5 - parent: 12 - - uid: 6580 - components: - - type: Transform - pos: 39.5,-58.5 - parent: 12 - - uid: 6662 - components: - - type: Transform - pos: 72.5,-58.5 - parent: 12 - - uid: 6663 - components: - - type: Transform - pos: 45.5,-58.5 - parent: 12 - - uid: 6664 - components: - - type: Transform - pos: 44.5,-58.5 - parent: 12 - - uid: 6665 - components: - - type: Transform - pos: 39.5,-54.5 - parent: 12 - - uid: 6666 - components: - - type: Transform - pos: 39.5,-50.5 - parent: 12 - - uid: 6667 - components: - - type: Transform - pos: 39.5,-46.5 - parent: 12 - - uid: 6669 - components: - - type: Transform - pos: 44.5,-46.5 - parent: 12 - - uid: 6670 - components: - - type: Transform - pos: 45.5,-46.5 - parent: 12 - - uid: 6671 - components: - - type: Transform - pos: 44.5,-50.5 - parent: 12 - - uid: 6672 - components: - - type: Transform - pos: 45.5,-50.5 - parent: 12 - - uid: 6673 - components: - - type: Transform - pos: 44.5,-54.5 - parent: 12 - - uid: 6674 - components: - - type: Transform - pos: 45.5,-54.5 - parent: 12 - - uid: 6675 - components: - - type: Transform - pos: 48.5,-54.5 - parent: 12 - - uid: 6676 - components: - - type: Transform - pos: 47.5,-54.5 - parent: 12 - - uid: 6688 - components: - - type: Transform - pos: 69.5,-2.5 - parent: 12 - - uid: 6717 - components: - - type: Transform - pos: -52.5,21.5 - parent: 12 - - uid: 6768 - components: - - type: Transform - pos: -48.5,25.5 - parent: 12 - - uid: 7110 - components: - - type: Transform - pos: 1.5,19.5 - parent: 12 - - uid: 7134 - components: - - type: Transform - pos: 64.5,2.5 - parent: 12 - - uid: 7150 - components: - - type: Transform - pos: 62.5,2.5 - parent: 12 - - uid: 7151 - components: - - type: Transform - pos: 63.5,2.5 - parent: 12 - - uid: 7160 - components: - - type: Transform - pos: 61.5,2.5 - parent: 12 - - uid: 7161 - components: - - type: Transform - pos: 4.5,28.5 - parent: 12 - - uid: 7171 - components: - - type: Transform - pos: 21.5,20.5 - parent: 12 - - uid: 7187 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 12 - - uid: 7231 - components: - - type: Transform - pos: 29.5,5.5 - parent: 12 - - uid: 7284 - components: - - type: Transform - pos: 37.5,-1.5 - parent: 12 - - uid: 7301 - components: - - type: Transform - pos: -54.5,22.5 - parent: 12 - - uid: 7307 - components: - - type: Transform - pos: 1.5,14.5 - parent: 12 - - uid: 7360 - components: - - type: Transform - pos: 1.5,18.5 - parent: 12 - - uid: 7386 - components: - - type: Transform - pos: 71.5,-2.5 - parent: 12 - - uid: 7485 - components: - - type: Transform - pos: -50.5,-18.5 - parent: 12 - - uid: 7546 - components: - - type: Transform - pos: 72.5,-2.5 - parent: 12 - - uid: 7549 - components: - - type: Transform - pos: 17.5,24.5 - parent: 12 - - uid: 7724 - components: - - type: Transform - pos: 46.5,-44.5 - parent: 12 - - uid: 7767 - components: - - type: Transform - pos: 59.5,6.5 - parent: 12 - - uid: 7782 - components: - - type: Transform - pos: 64.5,-2.5 - parent: 12 - - uid: 7786 - components: - - type: Transform - pos: 63.5,-2.5 - parent: 12 - - uid: 7790 - components: - - type: Transform - pos: -38.5,-52.5 - parent: 12 - - uid: 7811 - components: - - type: Transform - pos: 62.5,-2.5 - parent: 12 - - uid: 7834 - components: - - type: Transform - pos: 73.5,-2.5 - parent: 12 - - uid: 7840 - components: - - type: Transform - pos: 74.5,-2.5 - parent: 12 - - uid: 7841 - components: - - type: Transform - pos: 59.5,2.5 - parent: 12 - - uid: 7846 - components: - - type: Transform - pos: 61.5,-1.5 - parent: 12 - - uid: 7849 - components: - - type: Transform - pos: 30.5,15.5 - parent: 12 - - uid: 7948 - components: - - type: Transform - pos: 46.5,-45.5 - parent: 12 - - uid: 7949 - components: - - type: Transform - pos: 50.5,-44.5 - parent: 12 - - uid: 7950 - components: - - type: Transform - pos: 50.5,-43.5 - parent: 12 - - uid: 7951 - components: - - type: Transform - pos: 50.5,-42.5 - parent: 12 - - uid: 7952 - components: - - type: Transform - pos: 49.5,-44.5 - parent: 12 - - uid: 7953 - components: - - type: Transform - pos: 47.5,-44.5 - parent: 12 - - uid: 7954 - components: - - type: Transform - pos: 48.5,-44.5 - parent: 12 - - uid: 7956 - components: - - type: Transform - pos: 50.5,-41.5 - parent: 12 - - uid: 7957 - components: - - type: Transform - pos: 50.5,-40.5 - parent: 12 - - uid: 7958 - components: - - type: Transform - pos: 49.5,-40.5 - parent: 12 - - uid: 7959 - components: - - type: Transform - pos: 49.5,-39.5 - parent: 12 - - uid: 7960 - components: - - type: Transform - pos: 49.5,-38.5 - parent: 12 - - uid: 7961 - components: - - type: Transform - pos: 49.5,-37.5 - parent: 12 - - uid: 7962 - components: - - type: Transform - pos: 49.5,-36.5 - parent: 12 - - uid: 7963 - components: - - type: Transform - pos: 49.5,-35.5 - parent: 12 - - uid: 7964 - components: - - type: Transform - pos: 49.5,-34.5 - parent: 12 - - uid: 7965 - components: - - type: Transform - pos: 48.5,-34.5 - parent: 12 - - uid: 7966 - components: - - type: Transform - pos: 47.5,-34.5 - parent: 12 - - uid: 7967 - components: - - type: Transform - pos: 46.5,-34.5 - parent: 12 - - uid: 7968 - components: - - type: Transform - pos: 45.5,-34.5 - parent: 12 - - uid: 7969 - components: - - type: Transform - pos: 44.5,-34.5 - parent: 12 - - uid: 7970 - components: - - type: Transform - pos: 43.5,-34.5 - parent: 12 - - uid: 7971 - components: - - type: Transform - pos: 42.5,-34.5 - parent: 12 - - uid: 7972 - components: - - type: Transform - pos: 41.5,-34.5 - parent: 12 - - uid: 7973 - components: - - type: Transform - pos: 40.5,-34.5 - parent: 12 - - uid: 7974 - components: - - type: Transform - pos: 39.5,-34.5 - parent: 12 - - uid: 7975 - components: - - type: Transform - pos: 38.5,-34.5 - parent: 12 - - uid: 7976 - components: - - type: Transform - pos: 37.5,-34.5 - parent: 12 - - uid: 7977 - components: - - type: Transform - pos: 36.5,-34.5 - parent: 12 - - uid: 7978 - components: - - type: Transform - pos: 35.5,-34.5 - parent: 12 - - uid: 7979 - components: - - type: Transform - pos: 34.5,-34.5 - parent: 12 - - uid: 7980 - components: - - type: Transform - pos: 33.5,-34.5 - parent: 12 - - uid: 7981 - components: - - type: Transform - pos: 32.5,-34.5 - parent: 12 - - uid: 7982 - components: - - type: Transform - pos: 32.5,-33.5 - parent: 12 - - uid: 7983 - components: - - type: Transform - pos: 32.5,-32.5 - parent: 12 - - uid: 7984 - components: - - type: Transform - pos: 32.5,-31.5 - parent: 12 - - uid: 7985 - components: - - type: Transform - pos: 32.5,-30.5 - parent: 12 - - uid: 7986 - components: - - type: Transform - pos: 32.5,-29.5 - parent: 12 - - uid: 7987 - components: - - type: Transform - pos: 32.5,-28.5 - parent: 12 - - uid: 7988 - components: - - type: Transform - pos: 32.5,-27.5 - parent: 12 - - uid: 7990 - components: - - type: Transform - pos: 31.5,-27.5 - parent: 12 - - uid: 7991 - components: - - type: Transform - pos: 30.5,-27.5 - parent: 12 - - uid: 7992 - components: - - type: Transform - pos: 29.5,-27.5 - parent: 12 - - uid: 7993 - components: - - type: Transform - pos: 28.5,-27.5 - parent: 12 - - uid: 7994 - components: - - type: Transform - pos: 27.5,-27.5 - parent: 12 - - uid: 7995 - components: - - type: Transform - pos: 26.5,-27.5 - parent: 12 - - uid: 7996 - components: - - type: Transform - pos: 25.5,-27.5 - parent: 12 - - uid: 7997 - components: - - type: Transform - pos: 24.5,-27.5 - parent: 12 - - uid: 7998 - components: - - type: Transform - pos: 23.5,-27.5 - parent: 12 - - uid: 7999 - components: - - type: Transform - pos: 22.5,-27.5 - parent: 12 - - uid: 8000 - components: - - type: Transform - pos: 21.5,-27.5 - parent: 12 - - uid: 8042 - components: - - type: Transform - pos: 10.5,-37.5 - parent: 12 - - uid: 8198 - components: - - type: Transform - pos: 62.5,-1.5 - parent: 12 - - uid: 8199 - components: - - type: Transform - pos: 61.5,-3.5 - parent: 12 - - uid: 8259 - components: - - type: Transform - pos: 10.5,-42.5 - parent: 12 - - uid: 8285 - components: - - type: Transform - pos: 30.5,16.5 - parent: 12 - - uid: 8344 - components: - - type: Transform - pos: 62.5,-3.5 - parent: 12 - - uid: 8494 - components: - - type: Transform - pos: 10.5,-39.5 - parent: 12 - - uid: 8853 - components: - - type: Transform - pos: 10.5,-45.5 - parent: 12 - - uid: 8957 - components: - - type: Transform - pos: 10.5,-46.5 - parent: 12 - - uid: 9018 - components: - - type: Transform - pos: 42.5,-27.5 - parent: 12 - - uid: 9019 - components: - - type: Transform - pos: 41.5,-27.5 - parent: 12 - - uid: 9020 - components: - - type: Transform - pos: 40.5,-27.5 - parent: 12 - - uid: 9021 - components: - - type: Transform - pos: 39.5,-27.5 - parent: 12 - - uid: 9022 - components: - - type: Transform - pos: 38.5,-27.5 - parent: 12 - - uid: 9023 - components: - - type: Transform - pos: 37.5,-27.5 - parent: 12 - - uid: 9024 - components: - - type: Transform - pos: 36.5,-27.5 - parent: 12 - - uid: 9025 - components: - - type: Transform - pos: 35.5,-27.5 - parent: 12 - - uid: 9026 - components: - - type: Transform - pos: 34.5,-27.5 - parent: 12 - - uid: 9027 - components: - - type: Transform - pos: 33.5,-27.5 - parent: 12 - - uid: 9028 - components: - - type: Transform - pos: 45.5,-33.5 - parent: 12 - - uid: 9029 - components: - - type: Transform - pos: 45.5,-32.5 - parent: 12 - - uid: 9030 - components: - - type: Transform - pos: 45.5,-31.5 - parent: 12 - - uid: 9031 - components: - - type: Transform - pos: 45.5,-30.5 - parent: 12 - - uid: 9032 - components: - - type: Transform - pos: 45.5,-29.5 - parent: 12 - - uid: 9033 - components: - - type: Transform - pos: 45.5,-28.5 - parent: 12 - - uid: 9034 - components: - - type: Transform - pos: 45.5,-27.5 - parent: 12 - - uid: 9035 - components: - - type: Transform - pos: 44.5,-27.5 - parent: 12 - - uid: 9036 - components: - - type: Transform - pos: 43.5,-27.5 - parent: 12 - - uid: 9037 - components: - - type: Transform - pos: 51.5,-44.5 - parent: 12 - - uid: 9055 - components: - - type: Transform - pos: 12.5,12.5 - parent: 12 - - uid: 9064 - components: - - type: Transform - pos: 60.5,2.5 - parent: 12 - - uid: 9082 - components: - - type: Transform - pos: -11.5,-31.5 - parent: 12 - - uid: 9089 - components: - - type: Transform - pos: 30.5,12.5 - parent: 12 - - uid: 9169 - components: - - type: Transform - pos: 66.5,11.5 - parent: 12 - - uid: 9173 - components: - - type: Transform - pos: 67.5,11.5 - parent: 12 - - uid: 9328 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 12 - - uid: 9410 - components: - - type: Transform - pos: 5.5,28.5 - parent: 12 - - uid: 9422 - components: - - type: Transform - pos: 15.5,7.5 - parent: 12 - - uid: 9424 - components: - - type: Transform - pos: 15.5,8.5 - parent: 12 - - uid: 9426 - components: - - type: Transform - pos: 15.5,9.5 - parent: 12 - - uid: 9458 - components: - - type: Transform - pos: 11.5,28.5 - parent: 12 - - uid: 9459 - components: - - type: Transform - pos: 12.5,28.5 - parent: 12 - - uid: 9460 - components: - - type: Transform - pos: 14.5,28.5 - parent: 12 - - uid: 9483 - components: - - type: Transform - pos: 16.5,25.5 - parent: 12 - - uid: 9515 - components: - - type: Transform - pos: 49.5,-5.5 - parent: 12 - - uid: 9518 - components: - - type: Transform - pos: 16.5,24.5 - parent: 12 - - uid: 9519 - components: - - type: Transform - pos: 1.5,16.5 - parent: 12 - - uid: 9521 - components: - - type: Transform - pos: 16.5,26.5 - parent: 12 - - uid: 9542 - components: - - type: Transform - pos: 64.5,6.5 - parent: 12 - - uid: 9543 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 12 - - uid: 9550 - components: - - type: Transform - pos: 1.5,12.5 - parent: 12 - - uid: 9551 - components: - - type: Transform - pos: 74.5,11.5 - parent: 12 - - uid: 9558 - components: - - type: Transform - pos: 1.5,13.5 - parent: 12 - - uid: 9578 - components: - - type: Transform - pos: 7.5,28.5 - parent: 12 - - uid: 9588 - components: - - type: Transform - pos: 57.5,-0.5 - parent: 12 - - uid: 9614 - components: - - type: Transform - pos: 51.5,-6.5 - parent: 12 - - uid: 9631 - components: - - type: Transform - pos: -57.5,-54.5 - parent: 12 - - uid: 9636 - components: - - type: Transform - pos: -2.5,22.5 - parent: 12 - - uid: 9649 - components: - - type: Transform - pos: 9.5,-37.5 - parent: 12 - - uid: 9650 - components: - - type: Transform - pos: 4.5,27.5 - parent: 12 - - uid: 9657 - components: - - type: Transform - pos: 10.5,-38.5 - parent: 12 - - uid: 9724 - components: - - type: Transform - pos: 16.5,28.5 - parent: 12 - - uid: 9732 - components: - - type: Transform - pos: -4.5,20.5 - parent: 12 - - uid: 9741 - components: - - type: Transform - pos: 4.5,25.5 - parent: 12 - - uid: 9742 - components: - - type: Transform - pos: -3.5,20.5 - parent: 12 - - uid: 9751 - components: - - type: Transform - pos: 44.5,-5.5 - parent: 12 - - uid: 9785 - components: - - type: Transform - pos: 29.5,10.5 - parent: 12 - - uid: 9810 - components: - - type: Transform - pos: 19.5,-16.5 - parent: 12 - - uid: 9811 - components: - - type: Transform - pos: 18.5,-16.5 - parent: 12 - - uid: 9812 - components: - - type: Transform - pos: 18.5,-15.5 - parent: 12 - - uid: 9816 - components: - - type: Transform - pos: 10.5,-43.5 - parent: 12 - - uid: 9835 - components: - - type: Transform - pos: -1.5,22.5 - parent: 12 - - uid: 9847 - components: - - type: Transform - pos: -5.5,20.5 - parent: 12 - - uid: 9859 - components: - - type: Transform - pos: 10.5,-40.5 - parent: 12 - - uid: 9861 - components: - - type: Transform - pos: 10.5,-41.5 - parent: 12 - - uid: 9864 - components: - - type: Transform - pos: -2.5,21.5 - parent: 12 - - uid: 9865 - components: - - type: Transform - pos: -2.5,20.5 - parent: 12 - - uid: 9994 - components: - - type: Transform - pos: 16.5,27.5 - parent: 12 - - uid: 10027 - components: - - type: Transform - pos: 4.5,26.5 - parent: 12 - - uid: 10165 - components: - - type: Transform - pos: -0.5,16.5 - parent: 12 - - uid: 10284 - components: - - type: Transform - pos: -1.5,16.5 - parent: 12 - - uid: 10319 - components: - - type: Transform - pos: -41.5,-29.5 - parent: 12 - - uid: 10343 - components: - - 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 - pos: -15.5,-23.5 - parent: 12 - - uid: 10463 - components: - - type: Transform - pos: -15.5,-22.5 - parent: 12 - - uid: 10464 - components: - - type: Transform - pos: -15.5,-21.5 - parent: 12 - - uid: 10465 - components: - - type: Transform - pos: -15.5,-20.5 - parent: 12 - - uid: 10466 - components: - - type: Transform - pos: -15.5,-19.5 - parent: 12 - - uid: 10467 - components: - - type: Transform - pos: -15.5,-18.5 - parent: 12 - - uid: 10468 - components: - - type: Transform - pos: -15.5,-17.5 - parent: 12 - - uid: 10469 - components: - - type: Transform - pos: -15.5,-16.5 - parent: 12 - - uid: 10470 - components: - - type: Transform - pos: -15.5,-15.5 - parent: 12 - - uid: 10471 - components: - - type: Transform - pos: -15.5,-14.5 - parent: 12 - - uid: 10472 - components: - - type: Transform - pos: -15.5,-13.5 - parent: 12 - - uid: 10473 - components: - - type: Transform - pos: -15.5,-12.5 - parent: 12 - - uid: 10474 - components: - - type: Transform - pos: -15.5,-11.5 - parent: 12 - - uid: 10475 - components: - - type: Transform - pos: -15.5,-10.5 - parent: 12 - - uid: 10476 - components: - - type: Transform - pos: -15.5,-9.5 - parent: 12 - - uid: 10477 - components: - - type: Transform - pos: -15.5,-8.5 - parent: 12 - - uid: 10478 - components: - - type: Transform - pos: -15.5,-7.5 - parent: 12 - - uid: 10479 - components: - - type: Transform - pos: -15.5,-6.5 - parent: 12 - - uid: 10480 - components: - - type: Transform - pos: -15.5,-5.5 - parent: 12 - - uid: 10481 - components: - - type: Transform - pos: -15.5,-4.5 - parent: 12 - - uid: 10656 - components: - - type: Transform - pos: 53.5,-2.5 - parent: 12 - - uid: 10743 - components: - - type: Transform - pos: -15.5,-3.5 - parent: 12 - - uid: 10744 - components: - - type: Transform - pos: -15.5,-2.5 - parent: 12 - - uid: 10745 - components: - - type: Transform - pos: -15.5,-1.5 - parent: 12 - - uid: 10746 - components: - - type: Transform - pos: -15.5,-0.5 - parent: 12 - - uid: 10747 - components: - - type: Transform - pos: -15.5,0.5 - parent: 12 - - uid: 10748 - components: - - type: Transform - pos: -15.5,1.5 - parent: 12 - - uid: 10749 - components: - - type: Transform - pos: -15.5,2.5 - parent: 12 - - uid: 10750 - components: - - type: Transform - pos: -15.5,3.5 - parent: 12 - - uid: 10751 - components: - - type: Transform - pos: -15.5,4.5 - parent: 12 - - uid: 10752 - components: - - type: Transform - pos: -15.5,5.5 - parent: 12 - - uid: 10753 - components: - - type: Transform - pos: -15.5,6.5 - parent: 12 - - uid: 10754 - components: - - type: Transform - pos: -15.5,7.5 - parent: 12 - - uid: 10755 - components: - - type: Transform - pos: -15.5,8.5 - parent: 12 - - uid: 10756 - components: - - type: Transform - pos: -15.5,9.5 - parent: 12 - - uid: 10757 - components: - - type: Transform - pos: -15.5,10.5 - parent: 12 - - uid: 10758 - components: - - type: Transform - pos: -15.5,11.5 - parent: 12 - - uid: 10759 - components: - - type: Transform - pos: -15.5,12.5 - parent: 12 - - uid: 10760 - components: - - type: Transform - pos: -15.5,13.5 - parent: 12 - - uid: 10761 - components: - - type: Transform - pos: -15.5,14.5 - parent: 12 - - uid: 10762 - components: - - type: Transform - pos: -15.5,15.5 - parent: 12 - - uid: 10763 - components: - - type: Transform - pos: -15.5,16.5 - parent: 12 - - uid: 10764 - components: - - type: Transform - pos: -14.5,16.5 - parent: 12 - - uid: 10765 - components: - - type: Transform - pos: -13.5,16.5 - parent: 12 - - uid: 10766 - components: - - type: Transform - pos: -12.5,16.5 - parent: 12 - - uid: 10767 - components: - - type: Transform - pos: -11.5,16.5 - parent: 12 - - uid: 10768 - components: - - type: Transform - pos: -10.5,16.5 - parent: 12 - - uid: 10769 - components: - - type: Transform - pos: -9.5,16.5 - parent: 12 - - uid: 10770 - components: - - type: Transform - pos: -8.5,16.5 - parent: 12 - - uid: 10771 - components: - - type: Transform - pos: -7.5,16.5 - parent: 12 - - uid: 10772 - components: - - type: Transform - pos: -6.5,16.5 - parent: 12 - - uid: 10773 - components: - - type: Transform - pos: -5.5,16.5 - parent: 12 - - uid: 10774 - components: - - type: Transform - pos: -4.5,16.5 - parent: 12 - - uid: 10775 - components: - - type: Transform - pos: -3.5,16.5 - parent: 12 - - uid: 10776 - components: - - type: Transform - pos: -2.5,16.5 - parent: 12 - - uid: 10777 - components: - - type: Transform - pos: -2.5,15.5 - parent: 12 - - uid: 10778 - components: - - type: Transform - pos: -2.5,14.5 - parent: 12 - - uid: 10779 - components: - - type: Transform - pos: -2.5,13.5 - parent: 12 - - uid: 10780 - components: - - type: Transform - pos: -3.5,13.5 - parent: 12 - - uid: 10790 - components: - - type: Transform - pos: -0.5,22.5 - parent: 12 - - uid: 10802 - components: - - type: Transform - pos: 43.5,-0.5 - parent: 12 - - uid: 10803 - components: - - type: Transform - pos: 22.5,3.5 - parent: 12 - - uid: 10827 - components: - - type: Transform - pos: 22.5,9.5 - parent: 12 - - uid: 10828 - components: - - type: Transform - pos: 22.5,10.5 - parent: 12 - - uid: 10829 - components: - - type: Transform - pos: 22.5,11.5 - parent: 12 - - uid: 10830 - components: - - type: Transform - pos: 21.5,11.5 - parent: 12 - - uid: 10831 - components: - - type: Transform - pos: 20.5,11.5 - parent: 12 - - uid: 10832 - components: - - type: Transform - pos: 20.5,10.5 - parent: 12 - - uid: 10838 - components: - - type: Transform - pos: 5.5,-5.5 - parent: 12 - - uid: 10843 - components: - - type: Transform - pos: 12.5,10.5 - parent: 12 - - uid: 10844 - components: - - type: Transform - pos: 11.5,10.5 - parent: 12 - - uid: 10845 - components: - - type: Transform - pos: 13.5,10.5 - parent: 12 - - uid: 10846 - components: - - type: Transform - pos: 10.5,10.5 - parent: 12 - - uid: 10847 - components: - - type: Transform - pos: 9.5,10.5 - parent: 12 - - uid: 10848 - components: - - type: Transform - pos: 8.5,10.5 - parent: 12 - - uid: 10849 - components: - - type: Transform - pos: 8.5,9.5 - parent: 12 - - uid: 10850 - components: - - type: Transform - pos: 7.5,9.5 - parent: 12 - - uid: 10851 - components: - - type: Transform - pos: 6.5,9.5 - parent: 12 - - uid: 10852 - components: - - type: Transform - pos: 5.5,9.5 - parent: 12 - - uid: 10853 - components: - - type: Transform - pos: 1.5,9.5 - parent: 12 - - uid: 10854 - components: - - type: Transform - pos: 0.5,9.5 - parent: 12 - - uid: 10855 - components: - - type: Transform - pos: -0.5,9.5 - parent: 12 - - uid: 10856 - components: - - type: Transform - pos: -1.5,9.5 - parent: 12 - - uid: 10857 - components: - - type: Transform - pos: -2.5,9.5 - parent: 12 - - uid: 10858 - components: - - type: Transform - pos: -3.5,9.5 - parent: 12 - - uid: 10859 - components: - - type: Transform - pos: -4.5,9.5 - parent: 12 - - uid: 10860 - components: - - type: Transform - pos: -5.5,9.5 - parent: 12 - - uid: 10861 - components: - - type: Transform - pos: -5.5,10.5 - parent: 12 - - uid: 10862 - components: - - type: Transform - pos: -5.5,11.5 - parent: 12 - - uid: 10863 - components: - - type: Transform - pos: -5.5,12.5 - parent: 12 - - uid: 10864 - components: - - type: Transform - pos: -5.5,13.5 - parent: 12 - - uid: 10865 - components: - - type: Transform - pos: -5.5,14.5 - parent: 12 - - uid: 10866 - components: - - type: Transform - pos: -5.5,15.5 - parent: 12 - - uid: 10868 - components: - - 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 - pos: 21.5,13.5 - parent: 12 - - uid: 10879 - components: - - type: Transform - pos: 21.5,14.5 - parent: 12 - - uid: 10880 - components: - - type: Transform - pos: 21.5,15.5 - parent: 12 - - uid: 10881 - components: - - type: Transform - pos: 21.5,16.5 - parent: 12 - - uid: 10882 - components: - - type: Transform - pos: 21.5,17.5 - parent: 12 - - uid: 10883 - components: - - type: Transform - pos: 21.5,18.5 - parent: 12 - - uid: 10884 - components: - - type: Transform - pos: 21.5,19.5 - parent: 12 - - uid: 10899 - components: - - type: Transform - pos: 31.5,12.5 - parent: 12 - - uid: 10913 - components: - - type: Transform - pos: 24.5,10.5 - parent: 12 - - uid: 10928 - components: - - type: Transform - pos: 21.5,12.5 - parent: 12 - - uid: 10938 - components: - - type: Transform - pos: 11.5,12.5 - parent: 12 - - uid: 10944 - components: - - type: Transform - pos: 5.5,8.5 - parent: 12 - - uid: 10945 - components: - - type: Transform - pos: 5.5,7.5 - parent: 12 - - uid: 10946 - components: - - type: Transform - pos: 1.5,10.5 - parent: 12 - - uid: 10947 - components: - - type: Transform - pos: 1.5,11.5 - parent: 12 - - uid: 10958 - components: - - type: Transform - pos: 22.5,17.5 - parent: 12 - - uid: 10985 - components: - - type: Transform - pos: 11.5,14.5 - parent: 12 - - uid: 11020 - components: - - type: Transform - pos: 52.5,8.5 - parent: 12 - - uid: 11045 - components: - - type: Transform - pos: 8.5,-16.5 - parent: 12 - - uid: 11050 - components: - - type: Transform - pos: 12.5,11.5 - parent: 12 - - uid: 11055 - components: - - type: Transform - pos: 23.5,10.5 - parent: 12 - - uid: 11232 - components: - - type: Transform - pos: 48.5,-5.5 - parent: 12 - - uid: 11268 - components: - - type: Transform - pos: 50.5,-5.5 - parent: 12 - - uid: 11275 - components: - - type: Transform - pos: 76.5,-2.5 - parent: 12 - - uid: 11286 - components: - - type: Transform - pos: 76.5,11.5 - parent: 12 - - uid: 11287 - components: - - type: Transform - pos: 58.5,-1.5 - parent: 12 - - uid: 11288 - components: - - type: Transform - pos: 10.5,12.5 - parent: 12 - - uid: 11292 - components: - - type: Transform - pos: 40.5,11.5 - parent: 12 - - uid: 11316 - components: - - type: Transform - pos: 21.5,21.5 - parent: 12 - - uid: 11318 - components: - - type: Transform - pos: 20.5,20.5 - parent: 12 - - uid: 11320 - components: - - type: Transform - pos: 19.5,20.5 - parent: 12 - - uid: 11321 - components: - - 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 - pos: 11.5,13.5 - parent: 12 - - uid: 11340 - components: - - type: Transform - pos: 4.5,22.5 - parent: 12 - - uid: 11342 - components: - - type: Transform - pos: 4.5,24.5 - parent: 12 - - uid: 11350 - components: - - type: Transform - pos: 14.5,10.5 - parent: 12 - - uid: 11352 - components: - - type: Transform - pos: 21.5,22.5 - parent: 12 - - uid: 11353 - components: - - type: Transform - pos: 21.5,23.5 - parent: 12 - - uid: 11354 - components: - - type: Transform - pos: 21.5,24.5 - parent: 12 - - uid: 11395 - components: - - type: Transform - pos: 24.5,17.5 - parent: 12 - - uid: 11396 - components: - - type: Transform - pos: 23.5,17.5 - parent: 12 - - uid: 11412 - components: - - type: Transform - pos: 25.5,17.5 - parent: 12 - - uid: 11413 - components: - - type: Transform - pos: 26.5,17.5 - parent: 12 - - uid: 11414 - components: - - type: Transform - pos: 27.5,17.5 - parent: 12 - - uid: 11415 - components: - - type: Transform - pos: 28.5,17.5 - parent: 12 - - uid: 11416 - components: - - type: Transform - pos: 29.5,17.5 - parent: 12 - - uid: 11417 - components: - - type: Transform - pos: 30.5,17.5 - parent: 12 - - uid: 11419 - components: - - type: Transform - pos: 32.5,17.5 - parent: 12 - - uid: 11456 - components: - - type: Transform - pos: 10.5,11.5 - parent: 12 - - uid: 11469 - components: - - type: Transform - pos: 75.5,11.5 - parent: 12 - - uid: 11481 - components: - - type: Transform - pos: 1.5,22.5 - parent: 12 - - uid: 11553 - components: - - type: Transform - pos: 62.5,6.5 - parent: 12 - - uid: 11867 - components: - - type: Transform - pos: 63.5,6.5 - parent: 12 - - uid: 11868 - components: - - type: Transform - pos: 4.5,29.5 - parent: 12 - - uid: 11869 - components: - - type: Transform - pos: 4.5,30.5 - parent: 12 - - uid: 11870 - components: - - type: Transform - pos: 4.5,31.5 - parent: 12 - - uid: 11871 - components: - - type: Transform - pos: 4.5,32.5 - parent: 12 - - uid: 11872 - components: - - type: Transform - pos: 4.5,33.5 - parent: 12 - - uid: 11873 - components: - - type: Transform - pos: 4.5,34.5 - parent: 12 - - uid: 11874 - components: - - type: Transform - pos: 4.5,35.5 - parent: 12 - - uid: 11875 - components: - - type: Transform - pos: 3.5,35.5 - parent: 12 - - uid: 11876 - components: - - type: Transform - pos: 2.5,35.5 - parent: 12 - - uid: 11877 - components: - - type: Transform - pos: 1.5,35.5 - parent: 12 - - uid: 11878 - components: - - type: Transform - pos: 0.5,35.5 - parent: 12 - - uid: 11879 - components: - - type: Transform - pos: -0.5,35.5 - parent: 12 - - uid: 11880 - components: - - type: Transform - pos: -1.5,35.5 - parent: 12 - - uid: 11938 - components: - - 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: 11986 - components: - - type: Transform - pos: 39.5,11.5 - parent: 12 - - uid: 11987 - components: - - type: Transform - pos: 38.5,11.5 - parent: 12 - - uid: 11988 - components: - - type: Transform - pos: 37.5,11.5 - parent: 12 - - uid: 11989 - components: - - type: Transform - pos: 34.5,11.5 - parent: 12 - - uid: 11990 - components: - - type: Transform - pos: 34.5,12.5 - parent: 12 - - uid: 11991 - components: - - type: Transform - pos: 33.5,12.5 - parent: 12 - - uid: 11992 - components: - - type: Transform - pos: 32.5,12.5 - parent: 12 - - uid: 11993 - components: - - type: Transform - pos: 32.5,13.5 - parent: 12 - - uid: 11994 - components: - - type: Transform - pos: 32.5,14.5 - parent: 12 - - uid: 11995 - components: - - type: Transform - pos: 32.5,15.5 - parent: 12 - - uid: 11996 - components: - - type: Transform - pos: 32.5,16.5 - parent: 12 - - uid: 12040 - components: - - type: Transform - pos: -52.5,-49.5 - parent: 12 - - uid: 12125 - components: - - type: Transform - pos: 35.5,11.5 - parent: 12 - - uid: 12140 - components: - - type: Transform - pos: 36.5,11.5 - parent: 12 - - uid: 12684 - components: - - type: Transform - pos: 8.5,-15.5 - parent: 12 - - uid: 12692 - components: - - type: Transform - pos: 60.5,-1.5 - parent: 12 - - uid: 12693 - components: - - type: Transform - pos: 3.5,22.5 - parent: 12 - - uid: 12894 - components: - - type: Transform - pos: 41.5,-11.5 - parent: 12 - - uid: 12917 - components: - - type: Transform - pos: 2.5,22.5 - parent: 12 - - uid: 12929 - components: - - type: Transform - pos: 0.5,22.5 - parent: 12 - - uid: 13080 - components: - - type: Transform - pos: 32.5,19.5 - parent: 12 - - uid: 13113 - components: - - type: Transform - pos: 32.5,21.5 - parent: 12 - - uid: 13118 - components: - - type: Transform - pos: 32.5,20.5 - parent: 12 - - uid: 13288 - components: - - type: Transform - pos: 33.5,23.5 - parent: 12 - - uid: 13291 - components: - - type: Transform - pos: 32.5,18.5 - parent: 12 - - uid: 13293 - components: - - type: Transform - pos: 32.5,23.5 - parent: 12 - - uid: 13298 - components: - - type: Transform - pos: 32.5,22.5 - parent: 12 - - uid: 13341 - components: - - type: Transform - pos: 34.5,23.5 - parent: 12 - - uid: 13342 - components: - - type: Transform - pos: 35.5,23.5 - parent: 12 - - uid: 13343 - components: - - type: Transform - pos: 36.5,23.5 - parent: 12 - - uid: 13344 - components: - - type: Transform - pos: 37.5,23.5 - parent: 12 - - uid: 13345 - components: - - type: Transform - pos: 38.5,23.5 - parent: 12 - - uid: 13346 - components: - - type: Transform - pos: 39.5,23.5 - parent: 12 - - uid: 13347 - components: - - type: Transform - pos: 40.5,23.5 - parent: 12 - - uid: 13348 - components: - - type: Transform - pos: 41.5,23.5 - parent: 12 - - uid: 13349 - components: - - type: Transform - pos: 41.5,24.5 - parent: 12 - - uid: 13350 - components: - - type: Transform - pos: 41.5,25.5 - parent: 12 - - uid: 13351 - components: - - type: Transform - pos: 42.5,25.5 - parent: 12 - - uid: 13352 - components: - - type: Transform - pos: 43.5,25.5 - parent: 12 - - uid: 13353 - components: - - type: Transform - pos: 44.5,25.5 - parent: 12 - - uid: 13354 - components: - - type: Transform - pos: 45.5,25.5 - parent: 12 - - uid: 13355 - components: - - type: Transform - pos: 46.5,25.5 - parent: 12 - - uid: 13356 - components: - - type: Transform - pos: 47.5,25.5 - parent: 12 - - uid: 13357 - components: - - type: Transform - pos: 48.5,25.5 - parent: 12 - - uid: 13358 - components: - - type: Transform - pos: 49.5,25.5 - parent: 12 - - uid: 13359 - components: - - type: Transform - pos: 50.5,25.5 - parent: 12 - - uid: 13360 - components: - - type: Transform - pos: 51.5,25.5 - parent: 12 - - uid: 13361 - components: - - type: Transform - pos: 51.5,26.5 - parent: 12 - - uid: 13362 - components: - - type: Transform - pos: 51.5,27.5 - parent: 12 - - uid: 13977 - components: - - type: Transform - pos: 61.5,6.5 - parent: 12 - - uid: 14252 - components: - - type: Transform - pos: 31.5,68.5 - parent: 12 - - uid: 14263 - components: - - type: Transform - pos: 31.5,67.5 - parent: 12 - - uid: 14264 - components: - - type: Transform - pos: 31.5,66.5 - parent: 12 - - uid: 14265 - components: - - type: Transform - pos: 31.5,65.5 - parent: 12 - - uid: 14266 - components: - - type: Transform - pos: 32.5,65.5 - parent: 12 - - uid: 14267 - components: - - type: Transform - pos: 33.5,65.5 - parent: 12 - - uid: 14268 - components: - - type: Transform - pos: 33.5,66.5 - parent: 12 - - uid: 14269 - components: - - type: Transform - pos: 33.5,67.5 - parent: 12 - - uid: 14270 - components: - - type: Transform - pos: 34.5,67.5 - parent: 12 - - uid: 14272 - components: - - type: Transform - pos: 35.5,67.5 - parent: 12 - - uid: 14273 - components: - - type: Transform - pos: 36.5,67.5 - parent: 12 - - uid: 14274 - components: - - type: Transform - pos: 36.5,66.5 - parent: 12 - - uid: 14275 - components: - - type: Transform - pos: 36.5,65.5 - parent: 12 - - uid: 14276 - components: - - type: Transform - pos: 35.5,65.5 - parent: 12 - - uid: 14277 - components: - - type: Transform - pos: 35.5,64.5 - parent: 12 - - uid: 14278 - components: - - type: Transform - pos: 35.5,63.5 - parent: 12 - - uid: 14291 - components: - - type: Transform - pos: 59.5,72.5 - parent: 12 - - uid: 14322 - components: - - type: Transform - pos: 31.5,69.5 - parent: 12 - - uid: 14323 - components: - - type: Transform - pos: 31.5,70.5 - parent: 12 - - uid: 14324 - components: - - type: Transform - pos: 31.5,71.5 - parent: 12 - - uid: 14325 - components: - - type: Transform - pos: 31.5,72.5 - parent: 12 - - uid: 14326 - components: - - type: Transform - pos: 32.5,72.5 - parent: 12 - - uid: 14327 - components: - - type: Transform - pos: 37.5,73.5 - parent: 12 - - uid: 14328 - components: - - type: Transform - pos: 38.5,73.5 - parent: 12 - - uid: 14329 - components: - - type: Transform - pos: 39.5,73.5 - parent: 12 - - uid: 14330 - components: - - type: Transform - pos: 40.5,73.5 - parent: 12 - - uid: 14331 - components: - - type: Transform - pos: 41.5,73.5 - parent: 12 - - uid: 14332 - components: - - type: Transform - pos: 37.5,71.5 - parent: 12 - - uid: 14333 - components: - - type: Transform - pos: 38.5,71.5 - parent: 12 - - uid: 14334 - components: - - type: Transform - pos: 39.5,71.5 - parent: 12 - - uid: 14335 - components: - - type: Transform - pos: 40.5,71.5 - parent: 12 - - uid: 14336 - components: - - type: Transform - pos: 41.5,71.5 - parent: 12 - - uid: 14337 - components: - - type: Transform - pos: 43.5,71.5 - parent: 12 - - uid: 14338 - components: - - type: Transform - pos: 44.5,71.5 - parent: 12 - - uid: 14339 - components: - - type: Transform - pos: 45.5,71.5 - parent: 12 - - uid: 14340 - components: - - type: Transform - pos: 46.5,71.5 - parent: 12 - - uid: 14341 - components: - - type: Transform - pos: 47.5,71.5 - parent: 12 - - uid: 14342 - components: - - type: Transform - pos: 43.5,73.5 - parent: 12 - - uid: 14343 - components: - - type: Transform - pos: 44.5,73.5 - parent: 12 - - uid: 14344 - components: - - type: Transform - pos: 45.5,73.5 - parent: 12 - - uid: 14345 - components: - - type: Transform - pos: 46.5,73.5 - parent: 12 - - uid: 14346 - components: - - type: Transform - pos: 47.5,73.5 - parent: 12 - - uid: 14365 - components: - - type: Transform - pos: 53.5,71.5 - parent: 12 - - uid: 14366 - components: - - type: Transform - pos: 54.5,71.5 - parent: 12 - - uid: 14367 - components: - - type: Transform - pos: 55.5,71.5 - parent: 12 - - uid: 14368 - components: - - type: Transform - pos: 56.5,71.5 - parent: 12 - - uid: 14369 - components: - - type: Transform - pos: 57.5,71.5 - parent: 12 - - uid: 14370 - components: - - type: Transform - pos: 58.5,71.5 - parent: 12 - - uid: 14371 - components: - - type: Transform - pos: 58.5,73.5 - parent: 12 - - uid: 14372 - components: - - type: Transform - pos: 57.5,73.5 - parent: 12 - - uid: 14373 - components: - - type: Transform - pos: 56.5,73.5 - parent: 12 - - uid: 14374 - components: - - type: Transform - pos: 55.5,73.5 - parent: 12 - - uid: 14375 - components: - - type: Transform - pos: 54.5,73.5 - parent: 12 - - uid: 14376 - components: - - type: Transform - pos: 53.5,73.5 - parent: 12 - - uid: 14377 - components: - - type: Transform - pos: 53.5,72.5 - parent: 12 - - uid: 14378 - components: - - type: Transform - pos: 52.5,72.5 - parent: 12 - - uid: 14379 - components: - - type: Transform - pos: 58.5,72.5 - parent: 12 - - uid: 14380 - components: - - type: Transform - pos: 60.5,72.5 - parent: 12 - - uid: 14381 - components: - - type: Transform - pos: 61.5,72.5 - parent: 12 - - uid: 14382 - components: - - type: Transform - pos: 62.5,72.5 - parent: 12 - - uid: 14383 - components: - - type: Transform - pos: 63.5,72.5 - parent: 12 - - uid: 14437 - components: - - type: Transform - pos: 53.5,76.5 - parent: 12 - - uid: 14438 - components: - - type: Transform - pos: 54.5,76.5 - parent: 12 - - uid: 14439 - components: - - type: Transform - pos: 55.5,76.5 - parent: 12 - - uid: 14440 - components: - - type: Transform - pos: 56.5,76.5 - parent: 12 - - uid: 14441 - components: - - type: Transform - pos: 57.5,76.5 - parent: 12 - - uid: 14442 - components: - - type: Transform - pos: 58.5,76.5 - parent: 12 - - uid: 14443 - components: - - type: Transform - pos: 58.5,77.5 - parent: 12 - - uid: 14444 - components: - - type: Transform - pos: 58.5,78.5 - parent: 12 - - uid: 14445 - components: - - type: Transform - pos: 57.5,78.5 - parent: 12 - - uid: 14446 - components: - - type: Transform - pos: 56.5,78.5 - parent: 12 - - uid: 14447 - components: - - type: Transform - pos: 55.5,78.5 - parent: 12 - - uid: 14448 - components: - - type: Transform - pos: 54.5,78.5 - parent: 12 - - uid: 14449 - components: - - type: Transform - pos: 53.5,78.5 - parent: 12 - - uid: 14450 - components: - - type: Transform - pos: 53.5,77.5 - parent: 12 - - uid: 14451 - components: - - type: Transform - pos: 52.5,77.5 - parent: 12 - - uid: 14452 - components: - - type: Transform - pos: 49.5,76.5 - parent: 12 - - uid: 14453 - components: - - type: Transform - pos: 48.5,76.5 - parent: 12 - - uid: 14454 - components: - - type: Transform - pos: 47.5,76.5 - parent: 12 - - uid: 14455 - components: - - type: Transform - pos: 46.5,76.5 - parent: 12 - - uid: 14456 - components: - - type: Transform - pos: 45.5,76.5 - parent: 12 - - uid: 14457 - components: - - type: Transform - pos: 44.5,76.5 - parent: 12 - - uid: 14458 - components: - - type: Transform - pos: 44.5,77.5 - parent: 12 - - uid: 14459 - components: - - type: Transform - pos: 44.5,78.5 - parent: 12 - - uid: 14460 - components: - - type: Transform - pos: 45.5,78.5 - parent: 12 - - uid: 14461 - components: - - type: Transform - pos: 46.5,78.5 - parent: 12 - - uid: 14462 - components: - - type: Transform - pos: 47.5,78.5 - parent: 12 - - uid: 14463 - components: - - type: Transform - pos: 48.5,78.5 - parent: 12 - - uid: 14464 - components: - - type: Transform - pos: 49.5,78.5 - parent: 12 - - uid: 14465 - components: - - type: Transform - pos: 49.5,77.5 - parent: 12 - - uid: 14466 - components: - - type: Transform - pos: 50.5,77.5 - parent: 12 - - uid: 15630 - components: - - type: Transform - pos: -1.5,34.5 - parent: 12 - - uid: 15632 - components: - - type: Transform - pos: -2.5,33.5 - parent: 12 - - uid: 15633 - components: - - type: Transform - pos: -3.5,33.5 - parent: 12 - - uid: 15634 - components: - - type: Transform - pos: -4.5,33.5 - parent: 12 - - uid: 15635 - components: - - type: Transform - pos: -5.5,33.5 - parent: 12 - - uid: 15636 - components: - - type: Transform - pos: -6.5,33.5 - parent: 12 - - uid: 15637 - components: - - type: Transform - pos: -6.5,32.5 - parent: 12 - - uid: 15638 - components: - - type: Transform - pos: -6.5,31.5 - parent: 12 - - uid: 15639 - components: - - type: Transform - pos: -6.5,30.5 - parent: 12 - - uid: 15640 - components: - - type: Transform - pos: -6.5,29.5 - parent: 12 - - uid: 15641 - components: - - type: Transform - pos: -6.5,28.5 - parent: 12 - - uid: 15642 - components: - - type: Transform - pos: -6.5,27.5 - parent: 12 - - uid: 15643 - components: - - type: Transform - pos: -6.5,26.5 - parent: 12 - - uid: 15644 - components: - - type: Transform - pos: -6.5,25.5 - parent: 12 - - uid: 15645 - components: - - type: Transform - pos: -6.5,24.5 - parent: 12 - - uid: 15646 - components: - - type: Transform - pos: -6.5,23.5 - parent: 12 - - uid: 15647 - components: - - type: Transform - pos: -6.5,22.5 - parent: 12 - - uid: 15648 - components: - - type: Transform - pos: -6.5,21.5 - parent: 12 - - uid: 15649 - components: - - type: Transform - pos: -6.5,20.5 - parent: 12 - - uid: 15650 - components: - - type: Transform - pos: -6.5,19.5 - parent: 12 - - uid: 15651 - components: - - type: Transform - pos: -6.5,18.5 - parent: 12 - - uid: 15652 - components: - - type: Transform - pos: -6.5,17.5 - parent: 12 - - uid: 15670 - components: - - type: Transform - pos: 60.5,6.5 - parent: 12 - - uid: 15680 - components: - - type: Transform - pos: 72.5,11.5 - parent: 12 - - uid: 15735 - components: - - type: Transform - pos: -7.5,28.5 - parent: 12 - - uid: 15736 - components: - - type: Transform - pos: -8.5,28.5 - parent: 12 - - uid: 15737 - components: - - type: Transform - pos: -9.5,28.5 - parent: 12 - - uid: 15738 - components: - - type: Transform - pos: -10.5,28.5 - parent: 12 - - uid: 15739 - components: - - type: Transform - pos: -11.5,28.5 - parent: 12 - - uid: 15740 - components: - - type: Transform - pos: -12.5,28.5 - parent: 12 - - uid: 15741 - components: - - type: Transform - pos: -13.5,28.5 - parent: 12 - - uid: 15742 - components: - - type: Transform - pos: -14.5,28.5 - parent: 12 - - uid: 15743 - components: - - type: Transform - pos: -15.5,28.5 - parent: 12 - - uid: 15744 - components: - - type: Transform - pos: -16.5,28.5 - parent: 12 - - uid: 15745 - components: - - type: Transform - pos: -16.5,29.5 - parent: 12 - - uid: 15746 - components: - - type: Transform - pos: -16.5,30.5 - parent: 12 - - uid: 15747 - components: - - type: Transform - pos: -16.5,31.5 - parent: 12 - - uid: 15748 - components: - - type: Transform - pos: -16.5,32.5 - parent: 12 - - uid: 15749 - components: - - type: Transform - pos: -16.5,33.5 - parent: 12 - - uid: 15750 - components: - - type: Transform - pos: -17.5,33.5 - parent: 12 - - uid: 15751 - components: - - type: Transform - pos: -18.5,33.5 - parent: 12 - - uid: 15752 - components: - - type: Transform - pos: -19.5,33.5 - parent: 12 - - uid: 15753 - components: - - type: Transform - pos: -20.5,33.5 - parent: 12 - - uid: 15754 - components: - - type: Transform - pos: -20.5,34.5 - parent: 12 - - uid: 15755 - components: - - type: Transform - pos: -20.5,35.5 - parent: 12 - - uid: 15756 - components: - - type: Transform - pos: -20.5,36.5 - parent: 12 - - uid: 15757 - components: - - type: Transform - pos: -16.5,16.5 - parent: 12 - - uid: 15758 - components: - - type: Transform - pos: -16.5,17.5 - parent: 12 - - uid: 15759 - components: - - type: Transform - pos: -16.5,18.5 - parent: 12 - - uid: 15760 - components: - - type: Transform - pos: -16.5,19.5 - parent: 12 - - uid: 15761 - components: - - type: Transform - pos: -16.5,20.5 - parent: 12 - - uid: 15762 - components: - - type: Transform - pos: -16.5,21.5 - parent: 12 - - uid: 15763 - components: - - type: Transform - pos: -16.5,22.5 - parent: 12 - - uid: 15764 - components: - - type: Transform - pos: -16.5,23.5 - parent: 12 - - uid: 15765 - components: - - type: Transform - pos: -16.5,24.5 - parent: 12 - - uid: 15766 - components: - - type: Transform - pos: -16.5,25.5 - parent: 12 - - uid: 15767 - components: - - type: Transform - pos: -16.5,26.5 - parent: 12 - - uid: 15768 - components: - - type: Transform - pos: -16.5,27.5 - parent: 12 - - uid: 16300 - components: - - type: Transform - pos: -4.5,34.5 - parent: 12 - - uid: 16301 - components: - - type: Transform - pos: -4.5,35.5 - parent: 12 - - uid: 16302 - components: - - type: Transform - pos: -4.5,36.5 - parent: 12 - - uid: 16303 - components: - - type: Transform - pos: -5.5,35.5 - parent: 12 - - uid: 16304 - components: - - type: Transform - pos: -6.5,35.5 - parent: 12 - - uid: 16305 - components: - - type: Transform - pos: -6.5,36.5 - parent: 12 - - uid: 16357 - components: - - type: Transform - pos: 65.5,5.5 - parent: 12 - - uid: 16415 - components: - - type: Transform - pos: 65.5,7.5 - parent: 12 - - uid: 16420 - components: - - type: Transform - pos: 65.5,8.5 - parent: 12 - - uid: 16421 - components: - - type: Transform - pos: 65.5,9.5 - parent: 12 - - uid: 16435 - components: - - type: Transform - pos: 65.5,3.5 - parent: 12 - - uid: 16445 - components: - - type: Transform - pos: 65.5,4.5 - parent: 12 - - uid: 16446 - components: - - type: Transform - pos: 65.5,10.5 - parent: 12 - - uid: 16447 - components: - - type: Transform - pos: 65.5,11.5 - parent: 12 - - uid: 16448 - components: - - type: Transform - pos: 65.5,6.5 - parent: 12 - - uid: 16640 - components: - - type: Transform - pos: 5.5,6.5 - parent: 12 - - uid: 16756 - components: - - type: Transform - pos: -11.5,-19.5 - parent: 12 - - uid: 16838 - components: - - type: Transform - pos: -10.5,-19.5 - parent: 12 - - uid: 17324 - components: - - type: Transform - pos: 5.5,-2.5 - parent: 12 - - uid: 17325 - components: - - type: Transform - pos: 5.5,-3.5 - parent: 12 - - uid: 17846 - components: - - type: Transform - pos: -55.5,46.5 - parent: 12 - - uid: 17847 - components: - - type: Transform - pos: -54.5,46.5 - parent: 12 - - uid: 17848 - components: - - type: Transform - pos: -53.5,46.5 - parent: 12 - - uid: 17849 - components: - - type: Transform - pos: -52.5,46.5 - parent: 12 - - uid: 17851 - components: - - type: Transform - pos: -51.5,45.5 - parent: 12 - - uid: 17852 - components: - - type: Transform - pos: -52.5,47.5 - parent: 12 - - uid: 17853 - components: - - type: Transform - pos: -51.5,47.5 - parent: 12 - - uid: 17856 - components: - - type: Transform - pos: -48.5,45.5 - parent: 12 - - uid: 17860 - components: - - type: Transform - pos: -46.5,45.5 - parent: 12 - - uid: 17861 - components: - - type: Transform - pos: -46.5,44.5 - parent: 12 - - uid: 17862 - components: - - type: Transform - pos: -46.5,43.5 - parent: 12 - - uid: 17863 - components: - - type: Transform - pos: -46.5,42.5 - parent: 12 - - uid: 17864 - components: - - type: Transform - pos: -46.5,41.5 - parent: 12 - - uid: 17865 - components: - - type: Transform - pos: -46.5,40.5 - parent: 12 - - uid: 17866 - components: - - type: Transform - pos: -46.5,39.5 - parent: 12 - - uid: 17867 - components: - - type: Transform - pos: -46.5,38.5 - parent: 12 - - uid: 17868 - components: - - type: Transform - pos: -46.5,37.5 - parent: 12 - - uid: 17869 - components: - - type: Transform - pos: -47.5,37.5 - parent: 12 - - uid: 17870 - components: - - type: Transform - pos: -48.5,37.5 - parent: 12 - - uid: 17871 - components: - - type: Transform - pos: -49.5,37.5 - parent: 12 - - uid: 17872 - components: - - type: Transform - pos: -50.5,37.5 - parent: 12 - - uid: 17873 - components: - - type: Transform - pos: -51.5,37.5 - parent: 12 - - uid: 17874 - components: - - type: Transform - pos: -51.5,36.5 - parent: 12 - - uid: 17875 - components: - - type: Transform - pos: -51.5,35.5 - parent: 12 - - uid: 17876 - components: - - type: Transform - pos: -51.5,34.5 - parent: 12 - - uid: 17877 - components: - - type: Transform - pos: -51.5,33.5 - parent: 12 - - uid: 17878 - components: - - type: Transform - pos: -51.5,32.5 - parent: 12 - - uid: 17879 - components: - - type: Transform - pos: -50.5,32.5 - parent: 12 - - uid: 17880 - components: - - type: Transform - pos: -49.5,32.5 - parent: 12 - - uid: 17881 - components: - - type: Transform - pos: -48.5,32.5 - parent: 12 - - uid: 17882 - components: - - type: Transform - pos: -47.5,32.5 - parent: 12 - - uid: 17883 - components: - - type: Transform - pos: -47.5,31.5 - parent: 12 - - uid: 17884 - components: - - type: Transform - pos: -47.5,30.5 - parent: 12 - - uid: 17885 - components: - - type: Transform - pos: -47.5,29.5 - parent: 12 - - uid: 17886 - components: - - type: Transform - pos: -47.5,28.5 - parent: 12 - - uid: 17887 - components: - - type: Transform - pos: -46.5,28.5 - parent: 12 - - uid: 17888 - components: - - type: Transform - pos: -45.5,28.5 - parent: 12 - - uid: 17889 - components: - - type: Transform - pos: -44.5,28.5 - parent: 12 - - uid: 17890 - components: - - type: Transform - pos: -43.5,28.5 - parent: 12 - - uid: 17891 - components: - - type: Transform - pos: -42.5,28.5 - parent: 12 - - uid: 17892 - components: - - type: Transform - pos: -41.5,28.5 - parent: 12 - - uid: 17893 - components: - - type: Transform - pos: -40.5,28.5 - parent: 12 - - uid: 17894 - components: - - type: Transform - pos: -39.5,28.5 - parent: 12 - - uid: 17895 - components: - - type: Transform - pos: -38.5,28.5 - parent: 12 - - uid: 17896 - components: - - type: Transform - pos: -37.5,28.5 - parent: 12 - - uid: 17897 - components: - - type: Transform - pos: -36.5,28.5 - parent: 12 - - uid: 17898 - components: - - type: Transform - pos: -35.5,28.5 - parent: 12 - - uid: 17899 - components: - - type: Transform - pos: -34.5,28.5 - parent: 12 - - uid: 17900 - components: - - type: Transform - pos: -33.5,28.5 - parent: 12 - - uid: 17901 - components: - - type: Transform - pos: -32.5,28.5 - parent: 12 - - uid: 17902 - components: - - type: Transform - pos: -31.5,28.5 - parent: 12 - - uid: 17903 - components: - - type: Transform - pos: -30.5,28.5 - parent: 12 - - uid: 17904 - components: - - type: Transform - pos: -29.5,28.5 - parent: 12 - - uid: 17905 - components: - - type: Transform - pos: -28.5,28.5 - parent: 12 - - uid: 17906 - components: - - type: Transform - pos: -27.5,28.5 - parent: 12 - - uid: 17907 - components: - - type: Transform - pos: -26.5,28.5 - parent: 12 - - uid: 17908 - components: - - type: Transform - pos: -25.5,28.5 - parent: 12 - - uid: 17909 - components: - - type: Transform - pos: -24.5,28.5 - parent: 12 - - uid: 17910 - components: - - type: Transform - pos: -23.5,28.5 - parent: 12 - - uid: 17911 - components: - - type: Transform - pos: -22.5,28.5 - parent: 12 - - uid: 17912 - components: - - type: Transform - pos: -21.5,28.5 - parent: 12 - - uid: 17913 - components: - - type: Transform - pos: -20.5,28.5 - parent: 12 - - uid: 17914 - components: - - type: Transform - pos: -19.5,28.5 - parent: 12 - - uid: 17915 - components: - - type: Transform - pos: -18.5,28.5 - parent: 12 - - uid: 17916 - components: - - type: Transform - pos: -17.5,28.5 - parent: 12 - - uid: 17918 - components: - - type: Transform - pos: -52.5,45.5 - parent: 12 - - uid: 17954 - components: - - type: Transform - pos: 5.5,2.5 - parent: 12 - - uid: 17960 - components: - - type: Transform - pos: -52.5,37.5 - parent: 12 - - uid: 17961 - components: - - type: Transform - pos: -53.5,37.5 - parent: 12 - - uid: 17962 - components: - - type: Transform - pos: -54.5,37.5 - parent: 12 - - uid: 17965 - components: - - type: Transform - pos: -12.5,-8.5 - parent: 12 - - uid: 17966 - components: - - type: Transform - pos: -11.5,-8.5 - parent: 12 - - uid: 17967 - components: - - type: Transform - pos: -10.5,-8.5 - parent: 12 - - uid: 17968 - components: - - type: Transform - pos: -10.5,-9.5 - parent: 12 - - uid: 17969 - components: - - type: Transform - pos: -10.5,-10.5 - parent: 12 - - uid: 17978 - components: - - type: Transform - pos: -57.5,43.5 - parent: 12 - - uid: 17979 - components: - - type: Transform - pos: -58.5,43.5 - parent: 12 - - uid: 17980 - components: - - type: Transform - pos: -58.5,42.5 - parent: 12 - - uid: 17981 - components: - - type: Transform - pos: -59.5,42.5 - parent: 12 - - uid: 17982 - components: - - type: Transform - pos: -60.5,42.5 - parent: 12 - - uid: 17983 - components: - - type: Transform - pos: -61.5,42.5 - parent: 12 - - uid: 17984 - components: - - type: Transform - pos: -62.5,42.5 - parent: 12 - - uid: 17985 - components: - - type: Transform - pos: -63.5,42.5 - parent: 12 - - uid: 17986 - components: - - type: Transform - pos: -64.5,42.5 - parent: 12 - - uid: 17987 - components: - - type: Transform - pos: -65.5,42.5 - parent: 12 - - uid: 17988 - components: - - type: Transform - pos: -66.5,42.5 - parent: 12 - - uid: 17989 - components: - - type: Transform - pos: -67.5,42.5 - parent: 12 - - uid: 17990 - components: - - type: Transform - pos: -67.5,43.5 - parent: 12 - - uid: 17991 - components: - - type: Transform - pos: -67.5,44.5 - parent: 12 - - uid: 17992 - components: - - type: Transform - pos: -66.5,44.5 - parent: 12 - - uid: 17993 - components: - - type: Transform - pos: -65.5,44.5 - parent: 12 - - uid: 17994 - components: - - type: Transform - pos: -64.5,44.5 - parent: 12 - - uid: 17995 - components: - - type: Transform - pos: -63.5,44.5 - parent: 12 - - uid: 17996 - components: - - type: Transform - pos: -62.5,44.5 - parent: 12 - - uid: 17997 - components: - - type: Transform - pos: -61.5,44.5 - parent: 12 - - uid: 17998 - components: - - type: Transform - pos: -60.5,44.5 - parent: 12 - - uid: 17999 - components: - - type: Transform - pos: -59.5,44.5 - parent: 12 - - uid: 18000 - components: - - type: Transform - pos: -58.5,44.5 - parent: 12 - - uid: 18041 - components: - - type: Transform - pos: -57.5,48.5 - parent: 12 - - uid: 18042 - components: - - type: Transform - pos: -58.5,47.5 - parent: 12 - - uid: 18043 - components: - - type: Transform - pos: -58.5,48.5 - parent: 12 - - uid: 18044 - components: - - type: Transform - pos: -58.5,49.5 - parent: 12 - - uid: 18045 - components: - - type: Transform - pos: -59.5,49.5 - parent: 12 - - uid: 18046 - components: - - type: Transform - pos: -60.5,49.5 - parent: 12 - - uid: 18047 - components: - - type: Transform - pos: -61.5,49.5 - parent: 12 - - uid: 18048 - components: - - type: Transform - pos: -62.5,49.5 - parent: 12 - - uid: 18049 - components: - - type: Transform - pos: -63.5,49.5 - parent: 12 - - uid: 18050 - components: - - type: Transform - pos: -64.5,49.5 - parent: 12 - - uid: 18051 - components: - - type: Transform - pos: -65.5,49.5 - parent: 12 - - uid: 18052 - components: - - type: Transform - pos: -66.5,49.5 - parent: 12 - - uid: 18053 - components: - - type: Transform - pos: -67.5,49.5 - parent: 12 - - uid: 18054 - components: - - type: Transform - pos: -67.5,48.5 - parent: 12 - - uid: 18055 - components: - - type: Transform - pos: -67.5,47.5 - parent: 12 - - uid: 18056 - components: - - type: Transform - pos: -66.5,47.5 - parent: 12 - - uid: 18057 - components: - - type: Transform - pos: -65.5,47.5 - parent: 12 - - uid: 18058 - components: - - type: Transform - pos: -64.5,47.5 - parent: 12 - - uid: 18059 - components: - - type: Transform - pos: -63.5,47.5 - parent: 12 - - uid: 18060 - components: - - type: Transform - pos: -62.5,47.5 - parent: 12 - - uid: 18061 - components: - - type: Transform - pos: -61.5,47.5 - parent: 12 - - uid: 18062 - components: - - type: Transform - pos: -60.5,47.5 - parent: 12 - - uid: 18063 - components: - - type: Transform - pos: -59.5,47.5 - parent: 12 - - uid: 18064 - components: - - type: Transform - pos: -68.5,48.5 - parent: 12 - - uid: 18065 - components: - - type: Transform - pos: -69.5,48.5 - parent: 12 - - uid: 18066 - components: - - type: Transform - pos: -70.5,48.5 - parent: 12 - - uid: 18067 - components: - - type: Transform - pos: -71.5,48.5 - parent: 12 - - uid: 18101 - components: - - type: Transform - pos: -54.5,45.5 - parent: 12 - - uid: 18102 - components: - - type: Transform - pos: -54.5,47.5 - parent: 12 - - uid: 18106 - components: - - type: Transform - pos: -47.5,45.5 - parent: 12 - - uid: 18108 - components: - - type: Transform - pos: -57.5,53.5 - parent: 12 - - uid: 18109 - components: - - type: Transform - pos: -58.5,53.5 - parent: 12 - - uid: 18110 - components: - - type: Transform - pos: -58.5,52.5 - parent: 12 - - uid: 18111 - components: - - type: Transform - pos: -59.5,52.5 - parent: 12 - - uid: 18112 - components: - - type: Transform - pos: -60.5,52.5 - parent: 12 - - uid: 18113 - components: - - type: Transform - pos: -61.5,52.5 - parent: 12 - - uid: 18114 - components: - - type: Transform - pos: -62.5,52.5 - parent: 12 - - uid: 18115 - components: - - type: Transform - pos: -63.5,52.5 - parent: 12 - - uid: 18116 - components: - - type: Transform - pos: -64.5,52.5 - parent: 12 - - uid: 18117 - components: - - type: Transform - pos: -65.5,52.5 - parent: 12 - - uid: 18118 - components: - - type: Transform - pos: -66.5,52.5 - parent: 12 - - uid: 18119 - components: - - type: Transform - pos: -67.5,52.5 - parent: 12 - - uid: 18120 - components: - - type: Transform - pos: -67.5,53.5 - parent: 12 - - uid: 18121 - components: - - type: Transform - pos: -67.5,54.5 - parent: 12 - - uid: 18122 - components: - - type: Transform - pos: -66.5,54.5 - parent: 12 - - uid: 18123 - components: - - type: Transform - pos: -65.5,54.5 - parent: 12 - - uid: 18124 - components: - - type: Transform - pos: -64.5,54.5 - parent: 12 - - uid: 18125 - components: - - type: Transform - pos: -63.5,54.5 - parent: 12 - - uid: 18126 - components: - - type: Transform - pos: -62.5,54.5 - parent: 12 - - uid: 18127 - components: - - type: Transform - pos: -61.5,54.5 - parent: 12 - - uid: 18128 - components: - - type: Transform - pos: -60.5,54.5 - parent: 12 - - uid: 18129 - components: - - type: Transform - pos: -59.5,54.5 - parent: 12 - - uid: 18130 - components: - - type: Transform - pos: -58.5,54.5 - parent: 12 - - uid: 18273 - components: - - type: Transform - pos: -50.5,47.5 - parent: 12 - - uid: 18277 - components: - - type: Transform - pos: -9.5,-11.5 - parent: 12 - - uid: 18297 - components: - - type: Transform - pos: -9.5,-12.5 - parent: 12 - - uid: 18302 - components: - - type: Transform - pos: -9.5,-10.5 - parent: 12 - - uid: 18383 - components: - - type: Transform - pos: -16.5,34.5 - parent: 12 - - uid: 18384 - components: - - type: Transform - pos: -16.5,35.5 - parent: 12 - - uid: 18385 - components: - - type: Transform - pos: -16.5,36.5 - parent: 12 - - uid: 18386 - components: - - type: Transform - pos: -16.5,37.5 - parent: 12 - - uid: 18387 - components: - - type: Transform - pos: -16.5,38.5 - parent: 12 - - uid: 18388 - components: - - type: Transform - pos: -16.5,39.5 - parent: 12 - - uid: 18389 - components: - - type: Transform - pos: -16.5,40.5 - parent: 12 - - uid: 18390 - components: - - type: Transform - pos: -16.5,41.5 - parent: 12 - - uid: 18391 - components: - - type: Transform - pos: -16.5,42.5 - parent: 12 - - uid: 18392 - components: - - type: Transform - pos: -16.5,43.5 - parent: 12 - - uid: 18393 - components: - - type: Transform - pos: -16.5,44.5 - parent: 12 - - uid: 18394 - components: - - type: Transform - pos: -15.5,44.5 - parent: 12 - - uid: 18395 - components: - - type: Transform - pos: -14.5,44.5 - parent: 12 - - uid: 18396 - components: - - type: Transform - pos: -13.5,44.5 - parent: 12 - - uid: 18397 - components: - - type: Transform - pos: -12.5,44.5 - parent: 12 - - uid: 18398 - components: - - type: Transform - pos: -11.5,44.5 - parent: 12 - - uid: 18399 - components: - - type: Transform - pos: -10.5,44.5 - parent: 12 - - uid: 18400 - components: - - type: Transform - pos: -9.5,44.5 - parent: 12 - - uid: 18401 - components: - - type: Transform - pos: -8.5,44.5 - parent: 12 - - uid: 18402 - components: - - type: Transform - pos: -7.5,44.5 - parent: 12 - - uid: 18403 - components: - - type: Transform - pos: -6.5,44.5 - parent: 12 - - uid: 18404 - components: - - type: Transform - pos: -5.5,44.5 - parent: 12 - - uid: 18405 - components: - - type: Transform - pos: -4.5,44.5 - parent: 12 - - uid: 18406 - components: - - type: Transform - pos: -3.5,44.5 - parent: 12 - - uid: 18407 - components: - - type: Transform - pos: -2.5,44.5 - parent: 12 - - uid: 18408 - components: - - type: Transform - pos: -1.5,44.5 - parent: 12 - - uid: 18409 - components: - - type: Transform - pos: -1.5,36.5 - parent: 12 - - uid: 18410 - components: - - type: Transform - pos: -1.5,37.5 - parent: 12 - - uid: 18411 - components: - - type: Transform - pos: -1.5,38.5 - parent: 12 - - uid: 18412 - components: - - type: Transform - pos: -1.5,39.5 - parent: 12 - - uid: 18413 - components: - - type: Transform - pos: -1.5,40.5 - parent: 12 - - uid: 18414 - components: - - type: Transform - pos: -1.5,41.5 - parent: 12 - - uid: 18415 - components: - - type: Transform - pos: -1.5,42.5 - parent: 12 - - uid: 18416 - components: - - type: Transform - pos: -1.5,43.5 - parent: 12 - - uid: 18417 - components: - - type: Transform - pos: -0.5,44.5 - parent: 12 - - uid: 18418 - components: - - type: Transform - pos: 0.5,44.5 - parent: 12 - - uid: 18419 - components: - - type: Transform - pos: 1.5,44.5 - parent: 12 - - uid: 18420 - components: - - type: Transform - pos: 2.5,44.5 - parent: 12 - - uid: 18421 - components: - - type: Transform - pos: 3.5,44.5 - parent: 12 - - uid: 18422 - components: - - type: Transform - pos: 4.5,44.5 - parent: 12 - - uid: 18423 - components: - - type: Transform - pos: 5.5,44.5 - parent: 12 - - uid: 18424 - components: - - type: Transform - pos: 6.5,44.5 - parent: 12 - - uid: 18425 - components: - - type: Transform - pos: 7.5,44.5 - parent: 12 - - uid: 18426 - components: - - type: Transform - pos: 8.5,44.5 - parent: 12 - - uid: 18427 - components: - - type: Transform - pos: 9.5,44.5 - parent: 12 - - uid: 18428 - components: - - type: Transform - pos: 10.5,44.5 - parent: 12 - - uid: 18429 - components: - - type: Transform - pos: 11.5,44.5 - parent: 12 - - uid: 18430 - components: - - type: Transform - pos: 12.5,44.5 - parent: 12 - - uid: 18431 - components: - - type: Transform - pos: 13.5,44.5 - parent: 12 - - uid: 18432 - components: - - type: Transform - pos: 13.5,43.5 - parent: 12 - - uid: 18433 - components: - - type: Transform - pos: 13.5,42.5 - parent: 12 - - uid: 18434 - components: - - type: Transform - pos: 14.5,42.5 - parent: 12 - - uid: 18435 - components: - - type: Transform - pos: 15.5,42.5 - parent: 12 - - uid: 18436 - components: - - type: Transform - pos: 16.5,42.5 - parent: 12 - - uid: 18437 - components: - - type: Transform - pos: 17.5,42.5 - parent: 12 - - uid: 18438 - components: - - type: Transform - pos: 18.5,42.5 - parent: 12 - - uid: 18439 - components: - - type: Transform - pos: 19.5,42.5 - parent: 12 - - uid: 18440 - components: - - type: Transform - pos: 20.5,42.5 - parent: 12 - - uid: 18441 - components: - - type: Transform - pos: 21.5,42.5 - parent: 12 - - uid: 18442 - components: - - type: Transform - pos: 22.5,42.5 - parent: 12 - - uid: 18443 - components: - - type: Transform - pos: 23.5,42.5 - parent: 12 - - uid: 18444 - components: - - type: Transform - pos: 24.5,42.5 - parent: 12 - - uid: 18445 - components: - - type: Transform - pos: 25.5,42.5 - parent: 12 - - uid: 18446 - components: - - type: Transform - pos: 26.5,42.5 - parent: 12 - - uid: 18447 - components: - - type: Transform - pos: 27.5,42.5 - parent: 12 - - uid: 18448 - components: - - type: Transform - pos: 28.5,42.5 - parent: 12 - - uid: 18449 - components: - - type: Transform - pos: 29.5,42.5 - parent: 12 - - uid: 18450 - components: - - type: Transform - pos: 30.5,42.5 - parent: 12 - - uid: 18451 - components: - - type: Transform - pos: 31.5,42.5 - parent: 12 - - uid: 18452 - components: - - type: Transform - pos: 32.5,42.5 - parent: 12 - - uid: 18453 - components: - - type: Transform - pos: 33.5,42.5 - parent: 12 - - uid: 18454 - components: - - type: Transform - pos: 34.5,42.5 - parent: 12 - - uid: 18455 - components: - - type: Transform - pos: 35.5,42.5 - parent: 12 - - uid: 18456 - components: - - type: Transform - pos: 36.5,42.5 - parent: 12 - - uid: 18457 - components: - - type: Transform - pos: 37.5,42.5 - parent: 12 - - uid: 18458 - components: - - type: Transform - pos: 38.5,42.5 - parent: 12 - - uid: 18459 - components: - - type: Transform - pos: 39.5,42.5 - parent: 12 - - uid: 18460 - components: - - type: Transform - pos: 40.5,42.5 - parent: 12 - - uid: 18461 - components: - - type: Transform - pos: 41.5,42.5 - parent: 12 - - uid: 18462 - components: - - type: Transform - pos: 42.5,42.5 - parent: 12 - - uid: 18463 - components: - - type: Transform - pos: 42.5,43.5 - parent: 12 - - uid: 18464 - components: - - type: Transform - pos: 42.5,44.5 - parent: 12 - - uid: 18465 - components: - - type: Transform - pos: 35.5,24.5 - parent: 12 - - uid: 18466 - components: - - type: Transform - pos: 35.5,25.5 - parent: 12 - - uid: 18467 - components: - - type: Transform - pos: 35.5,26.5 - parent: 12 - - uid: 18468 - components: - - type: Transform - pos: 35.5,27.5 - parent: 12 - - uid: 18469 - components: - - type: Transform - pos: 35.5,28.5 - parent: 12 - - uid: 18470 - components: - - type: Transform - pos: 35.5,29.5 - parent: 12 - - uid: 18471 - components: - - type: Transform - pos: 35.5,30.5 - parent: 12 - - uid: 18472 - components: - - type: Transform - pos: 35.5,31.5 - parent: 12 - - uid: 18473 - components: - - type: Transform - pos: 35.5,32.5 - parent: 12 - - uid: 18474 - components: - - type: Transform - pos: 35.5,33.5 - parent: 12 - - uid: 18475 - components: - - type: Transform - pos: 35.5,34.5 - parent: 12 - - uid: 18476 - components: - - type: Transform - pos: 35.5,35.5 - parent: 12 - - uid: 18477 - components: - - type: Transform - pos: 35.5,36.5 - parent: 12 - - uid: 18478 - components: - - type: Transform - pos: 35.5,37.5 - parent: 12 - - uid: 18479 - components: - - type: Transform - pos: 35.5,38.5 - parent: 12 - - uid: 18480 - components: - - type: Transform - pos: 35.5,39.5 - parent: 12 - - uid: 18481 - components: - - type: Transform - pos: 35.5,40.5 - parent: 12 - - uid: 18482 - components: - - type: Transform - pos: 35.5,41.5 - parent: 12 - - uid: 18483 - components: - - type: Transform - pos: 43.5,44.5 - parent: 12 - - uid: 18484 - components: - - type: Transform - pos: 44.5,44.5 - parent: 12 - - uid: 18485 - components: - - type: Transform - pos: 45.5,44.5 - parent: 12 - - uid: 18486 - components: - - type: Transform - pos: 46.5,44.5 - parent: 12 - - uid: 18487 - components: - - type: Transform - pos: 47.5,44.5 - parent: 12 - - uid: 18488 - components: - - type: Transform - pos: 48.5,44.5 - parent: 12 - - uid: 18489 - components: - - type: Transform - pos: 49.5,44.5 - parent: 12 - - uid: 18490 - components: - - type: Transform - pos: 50.5,44.5 - parent: 12 - - uid: 18491 - components: - - type: Transform - pos: 50.5,45.5 - parent: 12 - - uid: 18492 - components: - - type: Transform - pos: 50.5,46.5 - parent: 12 - - uid: 18493 - components: - - type: Transform - pos: 50.5,47.5 - parent: 12 - - uid: 18494 - components: - - type: Transform - pos: 50.5,48.5 - parent: 12 - - uid: 18495 - components: - - type: Transform - pos: 50.5,49.5 - parent: 12 - - uid: 18496 - components: - - type: Transform - pos: 50.5,50.5 - parent: 12 - - uid: 18497 - components: - - type: Transform - pos: 50.5,51.5 - parent: 12 - - uid: 18498 - components: - - type: Transform - pos: 50.5,52.5 - parent: 12 - - uid: 18499 - components: - - type: Transform - pos: 50.5,53.5 - parent: 12 - - uid: 18500 - components: - - type: Transform - pos: 50.5,54.5 - parent: 12 - - uid: 18501 - components: - - type: Transform - pos: 50.5,55.5 - parent: 12 - - uid: 18502 - components: - - type: Transform - pos: 50.5,56.5 - parent: 12 - - uid: 18503 - components: - - type: Transform - pos: 49.5,56.5 - parent: 12 - - uid: 18504 - components: - - type: Transform - pos: 48.5,56.5 - parent: 12 - - uid: 18505 - components: - - type: Transform - pos: 47.5,56.5 - parent: 12 - - uid: 18506 - components: - - type: Transform - pos: 46.5,56.5 - parent: 12 - - uid: 18507 - components: - - type: Transform - pos: 45.5,56.5 - parent: 12 - - uid: 18508 - components: - - type: Transform - pos: 44.5,56.5 - parent: 12 - - uid: 18509 - components: - - type: Transform - pos: 43.5,56.5 - parent: 12 - - uid: 18510 - components: - - type: Transform - pos: 43.5,57.5 - parent: 12 - - uid: 18511 - components: - - type: Transform - pos: 43.5,58.5 - parent: 12 - - uid: 18512 - components: - - type: Transform - pos: 43.5,59.5 - parent: 12 - - uid: 18513 - components: - - type: Transform - pos: 43.5,60.5 - parent: 12 - - uid: 18514 - components: - - type: Transform - pos: 42.5,60.5 - parent: 12 - - uid: 18515 - components: - - type: Transform - pos: 41.5,60.5 - parent: 12 - - uid: 18516 - components: - - type: Transform - pos: 40.5,60.5 - parent: 12 - - uid: 18517 - components: - - type: Transform - pos: 39.5,60.5 - parent: 12 - - uid: 18518 - components: - - type: Transform - pos: 38.5,60.5 - parent: 12 - - uid: 18519 - components: - - type: Transform - pos: 37.5,60.5 - parent: 12 - - uid: 18520 - components: - - type: Transform - pos: 36.5,60.5 - parent: 12 - - uid: 18521 - components: - - type: Transform - pos: 35.5,60.5 - parent: 12 - - uid: 18522 - components: - - type: Transform - pos: 35.5,61.5 - parent: 12 - - uid: 18523 - components: - - type: Transform - pos: 35.5,62.5 - parent: 12 - - uid: 18524 - components: - - type: Transform - pos: 34.5,62.5 - parent: 12 - - uid: 18525 - components: - - type: Transform - pos: 33.5,62.5 - parent: 12 - - uid: 18526 - components: - - type: Transform - pos: 32.5,62.5 - parent: 12 - - uid: 18527 - components: - - type: Transform - pos: 31.5,62.5 - parent: 12 - - uid: 18528 - components: - - type: Transform - pos: 30.5,62.5 - parent: 12 - - uid: 18529 - components: - - type: Transform - pos: 29.5,62.5 - parent: 12 - - uid: 18530 - components: - - type: Transform - pos: 28.5,62.5 - parent: 12 - - uid: 18531 - components: - - type: Transform - pos: 27.5,62.5 - parent: 12 - - uid: 18532 - components: - - type: Transform - pos: 26.5,62.5 - parent: 12 - - uid: 18533 - components: - - type: Transform - pos: 25.5,62.5 - parent: 12 - - uid: 18534 - components: - - type: Transform - pos: 24.5,62.5 - parent: 12 - - uid: 18535 - components: - - type: Transform - pos: 23.5,62.5 - parent: 12 - - uid: 18536 - components: - - type: Transform - pos: 22.5,62.5 - parent: 12 - - uid: 18537 - components: - - type: Transform - pos: 21.5,62.5 - parent: 12 - - uid: 18538 - components: - - type: Transform - pos: 20.5,62.5 - parent: 12 - - uid: 18539 - components: - - type: Transform - pos: 19.5,62.5 - parent: 12 - - uid: 18540 - components: - - type: Transform - pos: 18.5,62.5 - parent: 12 - - uid: 18541 - components: - - type: Transform - pos: 17.5,62.5 - parent: 12 - - uid: 18542 - components: - - type: Transform - pos: 16.5,62.5 - parent: 12 - - uid: 18543 - components: - - type: Transform - pos: 15.5,62.5 - parent: 12 - - uid: 18544 - components: - - type: Transform - pos: 14.5,62.5 - parent: 12 - - uid: 18545 - components: - - type: Transform - pos: 13.5,62.5 - parent: 12 - - uid: 18546 - components: - - type: Transform - pos: 12.5,62.5 - parent: 12 - - uid: 18547 - components: - - type: Transform - pos: 11.5,62.5 - parent: 12 - - uid: 18548 - components: - - type: Transform - pos: 10.5,62.5 - parent: 12 - - uid: 18549 - components: - - type: Transform - pos: 9.5,62.5 - parent: 12 - - uid: 18550 - components: - - type: Transform - pos: 8.5,62.5 - parent: 12 - - uid: 18551 - components: - - type: Transform - pos: 7.5,62.5 - parent: 12 - - uid: 18552 - components: - - type: Transform - pos: 6.5,62.5 - parent: 12 - - uid: 18553 - components: - - type: Transform - pos: 5.5,62.5 - parent: 12 - - uid: 18554 - components: - - type: Transform - pos: 4.5,62.5 - parent: 12 - - uid: 18555 - components: - - type: Transform - pos: 3.5,62.5 - parent: 12 - - uid: 18556 - components: - - type: Transform - pos: 2.5,62.5 - parent: 12 - - uid: 18557 - components: - - type: Transform - pos: 1.5,62.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 - pos: 26.5,10.5 - parent: 12 - - uid: 19463 - components: - - type: Transform - pos: -36.5,59.5 - parent: 12 - - uid: 19464 - components: - - type: Transform - pos: -37.5,59.5 - parent: 12 - - uid: 19465 - components: - - type: Transform - pos: -21.5,33.5 - parent: 12 - - uid: 19466 - components: - - type: Transform - pos: -22.5,33.5 - parent: 12 - - uid: 19467 - components: - - type: Transform - pos: -22.5,34.5 - parent: 12 - - uid: 19468 - components: - - type: Transform - pos: -22.5,35.5 - parent: 12 - - uid: 19469 - components: - - type: Transform - pos: -22.5,36.5 - parent: 12 - - uid: 19470 - components: - - type: Transform - pos: -23.5,36.5 - parent: 12 - - uid: 19471 - components: - - type: Transform - pos: -24.5,36.5 - parent: 12 - - uid: 19472 - components: - - type: Transform - pos: -25.5,36.5 - parent: 12 - - uid: 19473 - components: - - type: Transform - pos: -26.5,36.5 - parent: 12 - - uid: 19474 - components: - - type: Transform - pos: -27.5,36.5 - parent: 12 - - uid: 19475 - components: - - type: Transform - pos: -28.5,36.5 - parent: 12 - - uid: 19476 - components: - - type: Transform - pos: -29.5,36.5 - parent: 12 - - uid: 19477 - components: - - type: Transform - pos: -30.5,36.5 - parent: 12 - - uid: 19478 - components: - - type: Transform - pos: -31.5,36.5 - parent: 12 - - uid: 19479 - components: - - type: Transform - pos: -32.5,36.5 - parent: 12 - - uid: 19480 - components: - - type: Transform - pos: -33.5,36.5 - parent: 12 - - uid: 19481 - components: - - type: Transform - pos: -34.5,36.5 - parent: 12 - - uid: 19482 - components: - - type: Transform - pos: -34.5,37.5 - parent: 12 - - uid: 19483 - components: - - type: Transform - pos: -34.5,38.5 - parent: 12 - - uid: 19484 - components: - - type: Transform - pos: -34.5,39.5 - parent: 12 - - uid: 19485 - components: - - type: Transform - pos: -34.5,40.5 - parent: 12 - - uid: 19486 - components: - - type: Transform - pos: -34.5,41.5 - parent: 12 - - uid: 19487 - components: - - type: Transform - pos: -34.5,42.5 - parent: 12 - - uid: 19488 - components: - - type: Transform - pos: -34.5,43.5 - parent: 12 - - uid: 19489 - components: - - type: Transform - pos: -34.5,44.5 - parent: 12 - - uid: 19490 - components: - - type: Transform - pos: -34.5,45.5 - parent: 12 - - uid: 19491 - components: - - type: Transform - pos: -34.5,46.5 - parent: 12 - - uid: 19492 - components: - - type: Transform - pos: -34.5,47.5 - parent: 12 - - uid: 19493 - components: - - type: Transform - pos: -34.5,48.5 - parent: 12 - - uid: 19494 - components: - - type: Transform - pos: -34.5,49.5 - parent: 12 - - uid: 19495 - components: - - type: Transform - pos: -34.5,50.5 - parent: 12 - - uid: 19496 - components: - - type: Transform - pos: -35.5,50.5 - parent: 12 - - uid: 19497 - components: - - type: Transform - pos: -35.5,51.5 - parent: 12 - - uid: 19498 - components: - - type: Transform - pos: -35.5,52.5 - parent: 12 - - uid: 19499 - components: - - type: Transform - pos: -35.5,53.5 - parent: 12 - - uid: 19500 - components: - - type: Transform - pos: -35.5,54.5 - parent: 12 - - uid: 19501 - components: - - type: Transform - pos: -35.5,55.5 - parent: 12 - - uid: 19502 - components: - - type: Transform - pos: -35.5,56.5 - parent: 12 - - uid: 19503 - components: - - type: Transform - pos: -35.5,57.5 - parent: 12 - - uid: 19504 - components: - - type: Transform - pos: -35.5,58.5 - parent: 12 - - uid: 19505 - components: - - type: Transform - pos: -35.5,59.5 - parent: 12 - - uid: 19510 - components: - - type: Transform - pos: -38.5,59.5 - parent: 12 - - uid: 19542 - components: - - type: Transform - pos: 53.5,-4.5 - parent: 12 - - uid: 19546 - components: - - type: Transform - pos: 53.5,-6.5 - parent: 12 - - uid: 19548 - components: - - type: Transform - pos: 25.5,10.5 - parent: 12 - - uid: 19549 - components: - - type: Transform - pos: 53.5,-8.5 - parent: 12 - - uid: 19563 - components: - - type: Transform - pos: 30.5,-10.5 - parent: 12 - - uid: 19612 - components: - - type: Transform - pos: 53.5,-1.5 - parent: 12 - - uid: 19617 - components: - - type: Transform - pos: -22.5,57.5 - parent: 12 - - uid: 19791 - components: - - type: Transform - pos: 71.5,11.5 - parent: 12 - - uid: 19808 - components: - - type: Transform - pos: 75.5,-2.5 - parent: 12 - - uid: 19824 - components: - - type: Transform - pos: 46.5,-5.5 - parent: 12 - - uid: 19825 - components: - - type: Transform - pos: 31.5,-14.5 - parent: 12 - - uid: 19836 - components: - - type: Transform - pos: 21.5,9.5 - parent: 12 - - uid: 19840 - components: - - type: Transform - pos: -23.5,58.5 - parent: 12 - - uid: 19886 - components: - - type: Transform - pos: 67.5,-2.5 - parent: 12 - - uid: 19888 - components: - - type: Transform - pos: -28.5,59.5 - parent: 12 - - uid: 20144 - components: - - type: Transform - pos: -25.5,59.5 - parent: 12 - - uid: 20312 - components: - - type: Transform - pos: -12.5,-7.5 - parent: 12 - - uid: 20342 - components: - - type: Transform - pos: -23.5,59.5 - parent: 12 - - uid: 20436 - components: - - type: Transform - pos: -24.5,59.5 - parent: 12 - - uid: 20438 - components: - - type: Transform - pos: -26.5,59.5 - parent: 12 - - uid: 20516 - components: - - type: Transform - pos: -20.5,59.5 - parent: 12 - - uid: 20517 - components: - - type: Transform - pos: -27.5,59.5 - parent: 12 - - uid: 20518 - components: - - type: Transform - pos: -23.5,57.5 - parent: 12 - - uid: 20520 - components: - - type: Transform - pos: -21.5,59.5 - parent: 12 - - uid: 20522 - components: - - type: Transform - pos: -29.5,59.5 - parent: 12 - - uid: 20525 - components: - - type: Transform - pos: -30.5,59.5 - parent: 12 - - uid: 20538 - components: - - type: Transform - pos: -50.5,46.5 - parent: 12 - - uid: 20553 - components: - - 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 - pos: 10.5,-44.5 - parent: 12 - - uid: 21078 - components: - - type: Transform - pos: 54.5,1.5 - parent: 12 - - uid: 21518 - components: - - type: Transform - pos: 59.5,-1.5 - parent: 12 - - uid: 21648 - components: - - type: Transform - pos: 54.5,8.5 - parent: 12 - - uid: 21859 - components: - - type: Transform - pos: 36.5,-5.5 - parent: 12 - - uid: 21860 - components: - - type: Transform - pos: 38.5,-6.5 - parent: 12 - - uid: 21865 - components: - - type: Transform - pos: 34.5,-5.5 - parent: 12 - - uid: 21866 - components: - - type: Transform - pos: 38.5,-5.5 - parent: 12 - - uid: 21867 - components: - - type: Transform - pos: 35.5,-5.5 - parent: 12 - - uid: 21870 - components: - - type: Transform - pos: 33.5,-7.5 - parent: 12 - - uid: 21886 - components: - - type: Transform - pos: 37.5,-15.5 - parent: 12 - - uid: 21895 - components: - - type: Transform - pos: -12.5,-6.5 - parent: 12 - - uid: 21896 - components: - - type: Transform - pos: -10.5,-4.5 - parent: 12 - - uid: 21899 - components: - - type: Transform - pos: -12.5,-4.5 - parent: 12 - - uid: 21902 - components: - - 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 - pos: 33.5,-6.5 - parent: 12 - - uid: 21913 - components: - - type: Transform - pos: 39.5,-6.5 - parent: 12 - - uid: 21914 - components: - - type: Transform - pos: 37.5,-5.5 - parent: 12 - - uid: 21915 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 12 - - uid: 21925 - components: - - 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 - pos: 32.5,-7.5 - parent: 12 - - uid: 21940 - components: - - type: Transform - pos: -0.5,-3.5 - parent: 12 - - uid: 21950 - components: - - type: Transform - pos: -11.5,-4.5 - parent: 12 - - uid: 21951 - components: - - type: Transform - pos: -9.5,-1.5 - parent: 12 - - uid: 21953 - components: - - type: Transform - pos: -9.5,-2.5 - parent: 12 - - uid: 21954 - components: - - type: Transform - pos: -10.5,-3.5 - parent: 12 - - uid: 21955 - components: - - type: Transform - pos: -12.5,-5.5 - parent: 12 - - uid: 21992 - components: - - 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 - pos: 26.5,-16.5 - parent: 12 - - uid: 22136 - components: - - type: Transform - pos: 54.5,5.5 - parent: 12 - - uid: 22148 - components: - - type: Transform - pos: 17.5,10.5 - parent: 12 - - uid: 22289 - components: - - type: Transform - pos: 43.5,-5.5 - parent: 12 - - uid: 22296 - components: - - type: Transform - pos: 73.5,11.5 - parent: 12 - - uid: 22522 - components: - - type: Transform - pos: 53.5,-7.5 - parent: 12 - - uid: 22527 - components: - - type: Transform - pos: 53.5,-5.5 - parent: 12 - - uid: 22528 - components: - - type: Transform - pos: 17.5,8.5 - parent: 12 - - uid: 22531 - components: - - type: Transform - pos: 53.5,-3.5 - parent: 12 - - uid: 22712 - components: - - type: Transform - pos: -49.5,25.5 - parent: 12 - - uid: 23104 - components: - - type: Transform - pos: 41.5,-0.5 - parent: 12 - - uid: 23116 - components: - - type: Transform - pos: 47.5,-5.5 - parent: 12 - - uid: 23127 - components: - - type: Transform - pos: 56.5,-0.5 - parent: 12 - - uid: 23148 - components: - - type: Transform - pos: 51.5,-7.5 - parent: 12 - - uid: 23152 - components: - - type: Transform - pos: 52.5,-8.5 - parent: 12 - - uid: 23157 - components: - - type: Transform - pos: 51.5,-8.5 - parent: 12 - - uid: 23159 - components: - - type: Transform - pos: 43.5,-4.5 - parent: 12 - - uid: 23163 - components: - - type: Transform - pos: 17.5,9.5 - parent: 12 - - uid: 23265 - components: - - type: Transform - pos: -17.5,40.5 - parent: 12 - - uid: 23266 - components: - - type: Transform - pos: -18.5,40.5 - parent: 12 - - uid: 23267 - components: - - type: Transform - pos: -19.5,40.5 - parent: 12 - - uid: 23268 - components: - - type: Transform - pos: -21.5,40.5 - parent: 12 - - uid: 23269 - components: - - type: Transform - pos: -22.5,40.5 - parent: 12 - - uid: 23270 - components: - - type: Transform - pos: -23.5,40.5 - parent: 12 - - uid: 23271 - components: - - type: Transform - pos: -24.5,40.5 - parent: 12 - - uid: 23272 - components: - - type: Transform - pos: -25.5,40.5 - parent: 12 - - uid: 23273 - components: - - type: Transform - pos: -26.5,40.5 - parent: 12 - - uid: 23274 - components: - - type: Transform - pos: -27.5,40.5 - parent: 12 - - uid: 23275 - components: - - type: Transform - pos: -28.5,40.5 - parent: 12 - - uid: 23276 - components: - - type: Transform - pos: -29.5,40.5 - parent: 12 - - uid: 23277 - components: - - type: Transform - pos: -30.5,40.5 - parent: 12 - - uid: 23278 - components: - - type: Transform - pos: -31.5,40.5 - parent: 12 - - uid: 23279 - components: - - type: Transform - pos: -32.5,40.5 - parent: 12 - - uid: 23280 - components: - - type: Transform - pos: -33.5,40.5 - parent: 12 - - uid: 23281 - components: - - type: Transform - pos: -20.5,40.5 - parent: 12 - - uid: 23282 - components: - - type: Transform - pos: 0.5,62.5 - parent: 12 - - uid: 23283 - components: - - type: Transform - pos: -0.5,62.5 - parent: 12 - - uid: 23284 - components: - - type: Transform - pos: -0.5,63.5 - parent: 12 - - uid: 23285 - components: - - type: Transform - pos: -0.5,64.5 - parent: 12 - - uid: 23286 - components: - - type: Transform - pos: -0.5,65.5 - parent: 12 - - uid: 23287 - components: - - type: Transform - pos: -0.5,66.5 - parent: 12 - - uid: 23288 - components: - - type: Transform - pos: -0.5,67.5 - parent: 12 - - uid: 23289 - components: - - type: Transform - pos: -0.5,68.5 - parent: 12 - - uid: 23290 - components: - - type: Transform - pos: -0.5,69.5 - parent: 12 - - uid: 23291 - components: - - type: Transform - pos: -1.5,69.5 - parent: 12 - - uid: 23292 - components: - - type: Transform - pos: -3.5,69.5 - parent: 12 - - uid: 23293 - components: - - type: Transform - pos: -4.5,69.5 - parent: 12 - - uid: 23294 - components: - - type: Transform - pos: -5.5,69.5 - parent: 12 - - uid: 23295 - components: - - type: Transform - pos: -6.5,69.5 - parent: 12 - - uid: 23296 - components: - - type: Transform - pos: -7.5,69.5 - parent: 12 - - uid: 23297 - components: - - type: Transform - pos: -8.5,69.5 - parent: 12 - - uid: 23298 - components: - - type: Transform - pos: -9.5,69.5 - parent: 12 - - uid: 23299 - components: - - type: Transform - pos: -10.5,69.5 - parent: 12 - - uid: 23300 - components: - - type: Transform - pos: -11.5,69.5 - parent: 12 - - uid: 23301 - components: - - type: Transform - pos: -12.5,69.5 - parent: 12 - - uid: 23302 - components: - - type: Transform - pos: -13.5,69.5 - parent: 12 - - uid: 23303 - components: - - type: Transform - pos: -2.5,69.5 - parent: 12 - - uid: 23304 - components: - - type: Transform - pos: -13.5,68.5 - parent: 12 - - uid: 23305 - components: - - type: Transform - pos: -14.5,68.5 - parent: 12 - - uid: 23306 - components: - - type: Transform - pos: -15.5,68.5 - parent: 12 - - uid: 23307 - components: - - type: Transform - pos: -16.5,68.5 - parent: 12 - - uid: 23308 - components: - - type: Transform - pos: -17.5,68.5 - parent: 12 - - uid: 23309 - components: - - type: Transform - pos: -18.5,68.5 - parent: 12 - - uid: 23310 - components: - - type: Transform - pos: -19.5,68.5 - parent: 12 - - uid: 23311 - components: - - type: Transform - pos: -19.5,67.5 - parent: 12 - - uid: 23312 - components: - - type: Transform - pos: -19.5,66.5 - parent: 12 - - uid: 23313 - components: - - type: Transform - pos: -19.5,65.5 - parent: 12 - - uid: 23314 - components: - - type: Transform - pos: -19.5,64.5 - parent: 12 - - uid: 23315 - components: - - type: Transform - pos: -19.5,63.5 - parent: 12 - - uid: 23316 - components: - - type: Transform - pos: -19.5,62.5 - parent: 12 - - uid: 23317 - components: - - type: Transform - pos: -19.5,61.5 - parent: 12 - - uid: 23318 - components: - - type: Transform - pos: -19.5,60.5 - parent: 12 - - uid: 23319 - components: - - type: Transform - pos: -19.5,59.5 - parent: 12 - - uid: 23320 - components: - - type: Transform - pos: -19.5,58.5 - parent: 12 - - uid: 23321 - components: - - type: Transform - pos: -19.5,57.5 - parent: 12 - - uid: 23322 - components: - - type: Transform - pos: -19.5,56.5 - parent: 12 - - uid: 23323 - components: - - type: Transform - pos: -19.5,55.5 - parent: 12 - - uid: 23324 - components: - - type: Transform - pos: -19.5,54.5 - parent: 12 - - uid: 23325 - components: - - type: Transform - pos: -19.5,53.5 - parent: 12 - - uid: 23326 - components: - - type: Transform - pos: -19.5,51.5 - parent: 12 - - uid: 23327 - components: - - type: Transform - pos: -19.5,52.5 - parent: 12 - - uid: 23328 - components: - - type: Transform - pos: -19.5,50.5 - parent: 12 - - uid: 23329 - components: - - type: Transform - pos: -20.5,50.5 - parent: 12 - - uid: 23330 - components: - - type: Transform - pos: -21.5,50.5 - parent: 12 - - uid: 23331 - components: - - type: Transform - pos: -22.5,50.5 - parent: 12 - - uid: 23332 - components: - - type: Transform - pos: -22.5,49.5 - parent: 12 - - uid: 23333 - components: - - type: Transform - pos: -22.5,47.5 - parent: 12 - - uid: 23334 - components: - - type: Transform - pos: -22.5,46.5 - parent: 12 - - uid: 23335 - components: - - type: Transform - pos: -22.5,45.5 - parent: 12 - - uid: 23336 - components: - - type: Transform - pos: -22.5,44.5 - parent: 12 - - uid: 23337 - components: - - type: Transform - pos: -22.5,48.5 - parent: 12 - - uid: 23338 - components: - - type: Transform - pos: -21.5,44.5 - parent: 12 - - uid: 23339 - components: - - type: Transform - pos: -20.5,44.5 - parent: 12 - - uid: 23340 - components: - - type: Transform - pos: -19.5,44.5 - parent: 12 - - uid: 23341 - components: - - type: Transform - pos: -18.5,44.5 - parent: 12 - - uid: 23342 - components: - - type: Transform - pos: -17.5,44.5 - parent: 12 - - uid: 23343 - components: - - type: Transform - pos: -1.5,45.5 - parent: 12 - - uid: 23344 - components: - - type: Transform - pos: -1.5,46.5 - parent: 12 - - uid: 23345 - components: - - type: Transform - pos: -1.5,47.5 - parent: 12 - - uid: 23346 - components: - - type: Transform - pos: -1.5,48.5 - parent: 12 - - uid: 23347 - components: - - type: Transform - pos: -1.5,49.5 - parent: 12 - - uid: 23348 - components: - - type: Transform - pos: -1.5,50.5 - parent: 12 - - uid: 23349 - components: - - type: Transform - pos: -1.5,51.5 - parent: 12 - - uid: 23350 - components: - - type: Transform - pos: -1.5,52.5 - parent: 12 - - uid: 23351 - components: - - type: Transform - pos: -1.5,53.5 - parent: 12 - - uid: 23352 - components: - - type: Transform - pos: -1.5,54.5 - parent: 12 - - uid: 23353 - components: - - type: Transform - pos: -1.5,55.5 - parent: 12 - - uid: 23354 - components: - - type: Transform - pos: -0.5,55.5 - parent: 12 - - uid: 23355 - components: - - type: Transform - pos: -0.5,56.5 - parent: 12 - - uid: 23356 - components: - - type: Transform - pos: -0.5,57.5 - parent: 12 - - uid: 23357 - components: - - type: Transform - pos: -0.5,58.5 - parent: 12 - - uid: 23358 - components: - - type: Transform - pos: -0.5,59.5 - parent: 12 - - uid: 23359 - components: - - type: Transform - pos: -0.5,60.5 - parent: 12 - - uid: 23360 - components: - - type: Transform - pos: -0.5,61.5 - parent: 12 - - uid: 23773 - components: - - type: Transform - pos: -37.5,-51.5 - parent: 12 - - uid: 24478 - components: - - 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 - pos: -26.5,-48.5 - parent: 12 - - uid: 24706 - components: - - type: Transform - pos: 7.5,63.5 - parent: 12 - - uid: 24707 - components: - - type: Transform - pos: 7.5,65.5 - parent: 12 - - uid: 24708 - components: - - type: Transform - pos: 7.5,64.5 - parent: 12 - - uid: 24709 - components: - - type: Transform - pos: 8.5,65.5 - parent: 12 - - uid: 24710 - components: - - type: Transform - pos: 10.5,65.5 - parent: 12 - - uid: 24711 - components: - - type: Transform - pos: 11.5,65.5 - parent: 12 - - uid: 24712 - components: - - type: Transform - pos: 12.5,65.5 - parent: 12 - - uid: 24713 - components: - - type: Transform - pos: 9.5,65.5 - parent: 12 - - uid: 25305 - components: - - type: Transform - pos: -14.5,-42.5 - parent: 12 - - uid: 25404 - components: - - type: Transform - pos: -31.5,59.5 - parent: 12 - - uid: 25416 - components: - - type: Transform - pos: 43.5,0.5 - parent: 12 - - uid: 25451 - components: - - type: Transform - pos: -22.5,59.5 - parent: 12 - - uid: 25460 - components: - - type: Transform - pos: 43.5,6.5 - parent: 12 - - uid: 25461 - components: - - type: Transform - pos: 58.5,6.5 - parent: 12 - - uid: 25462 - components: - - 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 - pos: 3.5,-50.5 - parent: 12 - - uid: 25541 - components: - - type: Transform - pos: -12.5,-23.5 - parent: 12 - - uid: 25570 - components: - - type: Transform - pos: 30.5,14.5 - parent: 12 - - uid: 25598 - components: - - type: Transform - pos: -56.5,-54.5 - parent: 12 - - uid: 25613 - components: - - type: Transform - pos: 9.5,-14.5 - parent: 12 - - uid: 25763 - components: - - type: Transform - pos: -24.5,22.5 - parent: 12 - - uid: 25776 - components: - - type: Transform - pos: -17.5,17.5 - parent: 12 - - uid: 25777 - components: - - type: Transform - pos: -18.5,17.5 - parent: 12 - - uid: 25778 - components: - - type: Transform - pos: -19.5,17.5 - parent: 12 - - uid: 25779 - components: - - type: Transform - pos: -20.5,17.5 - parent: 12 - - uid: 25780 - components: - - type: Transform - pos: -21.5,17.5 - parent: 12 - - uid: 25781 - components: - - type: Transform - pos: -22.5,17.5 - parent: 12 - - uid: 25782 - components: - - type: Transform - pos: -23.5,17.5 - parent: 12 - - uid: 25783 - components: - - type: Transform - pos: -23.5,18.5 - parent: 12 - - uid: 25784 - components: - - type: Transform - pos: -23.5,19.5 - parent: 12 - - uid: 25785 - components: - - type: Transform - pos: -23.5,21.5 - parent: 12 - - uid: 25786 - components: - - type: Transform - pos: -23.5,20.5 - parent: 12 - - uid: 25787 - components: - - type: Transform - pos: -23.5,22.5 - parent: 12 - - uid: 25788 - components: - - type: Transform - pos: -25.5,22.5 - parent: 12 - - uid: 25789 - components: - - type: Transform - pos: -26.5,22.5 - parent: 12 - - uid: 25790 - components: - - type: Transform - pos: -27.5,22.5 - parent: 12 - - uid: 25791 - components: - - type: Transform - pos: -28.5,22.5 - parent: 12 - - uid: 25792 - components: - - type: Transform - pos: -29.5,22.5 - parent: 12 - - uid: 25793 - components: - - type: Transform - pos: -30.5,22.5 - parent: 12 - - uid: 25794 - components: - - type: Transform - pos: -31.5,22.5 - parent: 12 - - uid: 25795 - components: - - type: Transform - pos: -32.5,22.5 - parent: 12 - - uid: 25796 - components: - - type: Transform - pos: -34.5,22.5 - parent: 12 - - uid: 25797 - components: - - type: Transform - pos: -35.5,22.5 - parent: 12 - - uid: 25798 - components: - - type: Transform - pos: -37.5,22.5 - parent: 12 - - uid: 25799 - components: - - type: Transform - pos: -38.5,22.5 - parent: 12 - - uid: 25800 - components: - - type: Transform - pos: -33.5,22.5 - parent: 12 - - uid: 25801 - components: - - type: Transform - pos: -39.5,22.5 - parent: 12 - - uid: 25802 - components: - - type: Transform - pos: -40.5,22.5 - parent: 12 - - uid: 25803 - components: - - type: Transform - pos: -41.5,22.5 - parent: 12 - - uid: 25804 - components: - - type: Transform - pos: -42.5,22.5 - parent: 12 - - uid: 25805 - components: - - type: Transform - pos: -36.5,22.5 - parent: 12 - - uid: 25806 - components: - - type: Transform - pos: -43.5,22.5 - parent: 12 - - uid: 25807 - components: - - type: Transform - pos: -43.5,23.5 - parent: 12 - - uid: 25808 - components: - - type: Transform - pos: -43.5,24.5 - parent: 12 - - uid: 25810 - components: - - type: Transform - pos: -44.5,24.5 - parent: 12 - - uid: 25811 - components: - - type: Transform - pos: -46.5,24.5 - parent: 12 - - uid: 25812 - components: - - type: Transform - pos: -47.5,24.5 - parent: 12 - - uid: 25813 - components: - - type: Transform - pos: -45.5,24.5 - parent: 12 - - uid: 25814 - components: - - type: Transform - pos: -47.5,25.5 - parent: 12 - - uid: 25815 - components: - - type: Transform - pos: -47.5,26.5 - parent: 12 - - uid: 25816 - components: - - type: Transform - pos: -47.5,27.5 - parent: 12 - - uid: 25817 - components: - - type: Transform - pos: -26.5,23.5 - parent: 12 - - uid: 25818 - components: - - type: Transform - pos: -26.5,24.5 - parent: 12 - - uid: 25819 - components: - - type: Transform - pos: -26.5,25.5 - parent: 12 - - uid: 25820 - components: - - type: Transform - pos: -26.5,26.5 - parent: 12 - - uid: 25821 - components: - - type: Transform - pos: -26.5,27.5 - parent: 12 - - uid: 25832 - components: - - type: Transform - pos: 5.5,-15.5 - parent: 12 - - uid: 25839 - components: - - type: Transform - pos: -25.5,-54.5 - parent: 12 - - uid: 26072 - components: - - type: Transform - pos: 7.5,-14.5 - parent: 12 - - uid: 26079 - components: - - type: Transform - pos: -51.5,25.5 - parent: 12 - - uid: 26080 - components: - - type: Transform - pos: -50.5,25.5 - parent: 12 - - uid: 26081 - components: - - type: Transform - pos: -51.5,24.5 - parent: 12 - - uid: 26082 - components: - - type: Transform - pos: -51.5,23.5 - parent: 12 - - uid: 26083 - components: - - type: Transform - pos: -51.5,22.5 - parent: 12 - - uid: 26084 - components: - - type: Transform - pos: -51.5,21.5 - parent: 12 - - uid: 26085 - components: - - type: Transform - pos: -53.5,21.5 - parent: 12 - - uid: 26087 - components: - - type: Transform - pos: -55.5,21.5 - parent: 12 - - uid: 26088 - components: - - type: Transform - pos: -56.5,21.5 - parent: 12 - - uid: 26154 - components: - - type: Transform - pos: 6.5,-15.5 - parent: 12 - - uid: 26202 - components: - - type: Transform - pos: 6.5,-16.5 - parent: 12 - - uid: 26261 - components: - - type: Transform - pos: 4.5,-15.5 - parent: 12 - - uid: 26262 - components: - - type: Transform - pos: 4.5,-16.5 - parent: 12 - - uid: 26417 - components: - - type: Transform - pos: 30.5,10.5 - parent: 12 - - uid: 26441 - components: - - type: Transform - pos: 54.5,0.5 - parent: 12 - - uid: 26464 - components: - - type: Transform - pos: 28.5,10.5 - parent: 12 - - uid: 26493 - components: - - type: Transform - pos: 43.5,4.5 - parent: 12 - - uid: 26494 - components: - - type: Transform - pos: 43.5,7.5 - parent: 12 - - uid: 26495 - components: - - type: Transform - pos: 43.5,8.5 - parent: 12 - - uid: 26496 - components: - - type: Transform - pos: 43.5,3.5 - parent: 12 - - uid: 26497 - components: - - type: Transform - pos: 43.5,1.5 - parent: 12 - - uid: 26498 - components: - - type: Transform - pos: 43.5,2.5 - parent: 12 - - uid: 26499 - components: - - type: Transform - pos: 43.5,5.5 - parent: 12 - - uid: 26521 - components: - - type: Transform - pos: 58.5,1.5 - parent: 12 - - uid: 26525 - components: - - type: Transform - pos: 6.5,-20.5 - parent: 12 - - uid: 26526 - components: - - type: Transform - pos: 6.5,-19.5 - parent: 12 - - uid: 26527 - components: - - type: Transform - pos: 6.5,-18.5 - parent: 12 - - uid: 26528 - components: - - type: Transform - pos: 6.5,-17.5 - parent: 12 - - uid: 26529 - components: - - type: Transform - pos: 6.5,-14.5 - parent: 12 - - uid: 26543 - components: - - type: Transform - pos: -9.5,-19.5 - parent: 12 - - uid: 26551 - components: - - type: Transform - pos: 69.5,11.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 - pos: 51.5,8.5 - parent: 12 - - uid: 26636 - components: - - type: Transform - pos: 65.5,1.5 - parent: 12 - - uid: 26643 - components: - - type: Transform - pos: 20.5,9.5 - parent: 12 - - uid: 26657 - components: - - type: Transform - pos: 55.5,-0.5 - parent: 12 - - uid: 26658 - components: - - type: Transform - pos: 54.5,-0.5 - parent: 12 - - uid: 26659 - components: - - type: Transform - pos: 53.5,-0.5 - parent: 12 - - uid: 26660 - components: - - type: Transform - pos: 52.5,-0.5 - parent: 12 - - uid: 26661 - components: - - type: Transform - pos: 51.5,-0.5 - parent: 12 - - uid: 26662 - components: - - type: Transform - pos: 50.5,-0.5 - parent: 12 - - uid: 26663 - components: - - type: Transform - pos: 48.5,-0.5 - parent: 12 - - uid: 26664 - components: - - type: Transform - pos: 47.5,-0.5 - parent: 12 - - uid: 26665 - components: - - type: Transform - pos: 49.5,-0.5 - parent: 12 - - uid: 26666 - components: - - type: Transform - pos: 46.5,-0.5 - parent: 12 - - uid: 26667 - components: - - type: Transform - pos: 45.5,-0.5 - parent: 12 - - uid: 26668 - components: - - type: Transform - pos: 44.5,-0.5 - parent: 12 - - uid: 26680 - components: - - type: Transform - pos: 40.5,-14.5 - parent: 12 - - uid: 26701 - components: - - type: Transform - pos: 65.5,-1.5 - parent: 12 - - uid: 26702 - components: - - type: Transform - pos: 65.5,2.5 - parent: 12 - - uid: 26704 - components: - - 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 - pos: 65.5,-0.5 - parent: 12 - - uid: 26721 - components: - - type: Transform - pos: 65.5,-2.5 - parent: 12 - - uid: 26731 - components: - - type: Transform - pos: 58.5,0.5 - parent: 12 - - uid: 26735 - components: - - type: Transform - pos: 54.5,4.5 - parent: 12 - - uid: 26736 - components: - - type: Transform - pos: 54.5,3.5 - parent: 12 - - uid: 26737 - components: - - type: Transform - pos: 54.5,2.5 - parent: 12 - - uid: 26742 - components: - - type: Transform - pos: 49.5,8.5 - parent: 12 - - uid: 26743 - components: - - type: Transform - pos: 50.5,8.5 - parent: 12 - - uid: 26744 - components: - - type: Transform - pos: 44.5,8.5 - parent: 12 - - uid: 26745 - components: - - 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: 26853 - components: - - type: Transform - 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: - - type: Transform - pos: 30.5,-3.5 - parent: 12 - - uid: 26894 - components: - - 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 - pos: 43.5,-24.5 - parent: 12 - - uid: 27029 - components: - - type: Transform - pos: 43.5,-25.5 - parent: 12 - - uid: 27051 - components: - - type: Transform - pos: 43.5,-26.5 - parent: 12 - - uid: 27052 - components: - - type: Transform - pos: 43.5,-23.5 - parent: 12 - - uid: 27055 - components: - - type: Transform - pos: 43.5,-22.5 - parent: 12 - - uid: 27057 - components: - - type: Transform - pos: 43.5,-21.5 - parent: 12 - - uid: 27079 - components: - - type: Transform - pos: 43.5,-20.5 - parent: 12 - - uid: 27080 - components: - - type: Transform - pos: 43.5,-19.5 - parent: 12 - - uid: 27081 - components: - - type: Transform - pos: 43.5,-18.5 - parent: 12 - - uid: 27082 - components: - - type: Transform - pos: 43.5,-16.5 - parent: 12 - - uid: 27087 - components: - - type: Transform - pos: 43.5,-17.5 - parent: 12 - - uid: 27088 - components: - - type: Transform - pos: 43.5,-15.5 - parent: 12 - - uid: 27090 - components: - - type: Transform - pos: 43.5,-14.5 - parent: 12 - - uid: 27092 - components: - - type: Transform - pos: 43.5,-13.5 - parent: 12 - - uid: 27105 - components: - - type: Transform - pos: 43.5,-12.5 - parent: 12 - - uid: 27107 - components: - - 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 - pos: 51.5,-40.5 - parent: 12 - - uid: 27133 - components: - - type: Transform - pos: 52.5,-40.5 - parent: 12 - - uid: 27134 - components: - - type: Transform - pos: 53.5,-40.5 - parent: 12 - - uid: 27135 - components: - - type: Transform - pos: 54.5,-40.5 - parent: 12 - - uid: 27136 - components: - - type: Transform - pos: 55.5,-40.5 - parent: 12 - - uid: 27137 - components: - - type: Transform - pos: 56.5,-40.5 - parent: 12 - - uid: 27138 - components: - - type: Transform - pos: 56.5,-39.5 - parent: 12 - - uid: 27139 - components: - - type: Transform - pos: 56.5,-38.5 - parent: 12 - - uid: 27140 - components: - - type: Transform - pos: 56.5,-37.5 - parent: 12 - - uid: 27141 - components: - - type: Transform - pos: 56.5,-36.5 - parent: 12 - - uid: 27142 - components: - - type: Transform - pos: 56.5,-35.5 - parent: 12 - - uid: 27143 - components: - - type: Transform - pos: 56.5,-34.5 - parent: 12 - - uid: 27144 - components: - - type: Transform - pos: 56.5,-33.5 - parent: 12 - - uid: 27145 - components: - - type: Transform - pos: 56.5,-32.5 - parent: 12 - - uid: 27146 - components: - - type: Transform - pos: 56.5,-31.5 - parent: 12 - - uid: 27149 - components: - - type: Transform - pos: 56.5,-30.5 - parent: 12 - - uid: 27151 - components: - - type: Transform - pos: 56.5,-29.5 - parent: 12 - - uid: 27153 - components: - - type: Transform - pos: 56.5,-28.5 - parent: 12 - - uid: 27160 - components: - - type: Transform - pos: 55.5,-28.5 - parent: 12 - - uid: 27162 - components: - - type: Transform - pos: 54.5,-28.5 - parent: 12 - - uid: 27163 - components: - - type: Transform - pos: 53.5,-28.5 - parent: 12 - - uid: 27164 - components: - - type: Transform - pos: 52.5,-28.5 - parent: 12 - - uid: 27165 - components: - - type: Transform - pos: 51.5,-28.5 - parent: 12 - - uid: 27166 - components: - - type: Transform - pos: 50.5,-28.5 - parent: 12 - - uid: 27167 - components: - - type: Transform - pos: 49.5,-28.5 - parent: 12 - - uid: 27168 - components: - - type: Transform - pos: 48.5,-28.5 - parent: 12 - - uid: 27171 - components: - - type: Transform - pos: 47.5,-28.5 - parent: 12 - - uid: 27177 - components: - - type: Transform - pos: 46.5,-28.5 - parent: 12 - - uid: 27178 - components: - - type: Transform - pos: 57.5,-28.5 - parent: 12 - - uid: 27179 - components: - - type: Transform - pos: 58.5,-28.5 - parent: 12 - - uid: 27180 - components: - - type: Transform - pos: 58.5,-27.5 - parent: 12 - - uid: 27181 - components: - - type: Transform - pos: 58.5,-26.5 - parent: 12 - - uid: 27182 - components: - - type: Transform - pos: 58.5,-25.5 - parent: 12 - - uid: 27183 - components: - - type: Transform - pos: 58.5,-24.5 - parent: 12 - - uid: 27185 - components: - - type: Transform - pos: 58.5,-23.5 - parent: 12 - - uid: 27186 - components: - - type: Transform - pos: 58.5,-22.5 - parent: 12 - - uid: 27190 - components: - - type: Transform - pos: 58.5,-21.5 - parent: 12 - - uid: 27191 - components: - - type: Transform - pos: 58.5,-20.5 - parent: 12 - - uid: 27192 - components: - - type: Transform - pos: 49.5,-20.5 - parent: 12 - - uid: 27193 - components: - - type: Transform - pos: 50.5,-20.5 - parent: 12 - - uid: 27194 - components: - - type: Transform - pos: 51.5,-20.5 - parent: 12 - - uid: 27195 - components: - - type: Transform - pos: 52.5,-20.5 - parent: 12 - - uid: 27196 - components: - - type: Transform - pos: 53.5,-20.5 - parent: 12 - - uid: 27197 - components: - - type: Transform - pos: 55.5,-20.5 - parent: 12 - - uid: 27198 - components: - - type: Transform - pos: 56.5,-20.5 - parent: 12 - - uid: 27199 - components: - - type: Transform - pos: 54.5,-20.5 - parent: 12 - - uid: 27200 - components: - - type: Transform - pos: 57.5,-20.5 - parent: 12 - - uid: 27201 - components: - - type: Transform - pos: 49.5,-19.5 - parent: 12 - - uid: 27202 - components: - - type: Transform - pos: 49.5,-18.5 - parent: 12 - - uid: 27204 - components: - - type: Transform - pos: 49.5,-17.5 - parent: 12 - - uid: 27205 - components: - - type: Transform - pos: 49.5,-16.5 - parent: 12 - - uid: 27206 - components: - - type: Transform - pos: 49.5,-15.5 - parent: 12 - - uid: 27207 - components: - - type: Transform - pos: 49.5,-14.5 - parent: 12 - - uid: 27208 - components: - - type: Transform - pos: 49.5,-13.5 - parent: 12 - - uid: 27211 - components: - - type: Transform - pos: 48.5,-13.5 - parent: 12 - - uid: 27212 - components: - - type: Transform - pos: 47.5,-13.5 - parent: 12 - - uid: 27213 - components: - - type: Transform - pos: 46.5,-13.5 - parent: 12 - - uid: 27214 - components: - - type: Transform - pos: 45.5,-13.5 - parent: 12 - - uid: 27215 - components: - - 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 - pos: -29.5,-34.5 - parent: 12 - - uid: 27340 - components: - - type: Transform - pos: -29.5,-33.5 - parent: 12 - - uid: 27342 - components: - - type: Transform - pos: -29.5,-31.5 - parent: 12 - - uid: 27343 - components: - - type: Transform - pos: -29.5,-32.5 - parent: 12 - - uid: 27344 - components: - - type: Transform - pos: -29.5,-30.5 - parent: 12 - - uid: 27345 - components: - - type: Transform - pos: -29.5,-29.5 - parent: 12 - - uid: 27346 - components: - - type: Transform - pos: -29.5,-26.5 - parent: 12 - - uid: 27347 - components: - - type: Transform - pos: -29.5,-27.5 - parent: 12 - - uid: 27348 - components: - - type: Transform - pos: -29.5,-28.5 - parent: 12 - - uid: 27349 - components: - - type: Transform - pos: -30.5,-26.5 - parent: 12 - - uid: 27376 - components: - - type: Transform - pos: 13.5,-16.5 - parent: 12 - - uid: 27459 - components: - - type: Transform - pos: -47.5,-42.5 - parent: 12 - - uid: 27460 - components: - - type: Transform - pos: -48.5,-42.5 - parent: 12 - - uid: 27461 - components: - - type: Transform - pos: -49.5,-42.5 - parent: 12 - - uid: 27462 - components: - - type: Transform - pos: -50.5,-42.5 - parent: 12 - - uid: 27463 - components: - - type: Transform - pos: -51.5,-42.5 - parent: 12 - - uid: 27464 - components: - - type: Transform - pos: -52.5,-42.5 - parent: 12 - - uid: 27465 - components: - - type: Transform - pos: -53.5,-42.5 - parent: 12 - - uid: 27466 - components: - - type: Transform - pos: -53.5,-41.5 - parent: 12 - - uid: 27467 - components: - - type: Transform - pos: -53.5,-40.5 - parent: 12 - - uid: 27468 - components: - - type: Transform - pos: -53.5,-39.5 - parent: 12 - - uid: 27469 - components: - - type: Transform - pos: -53.5,-38.5 - parent: 12 - - uid: 27470 - components: - - type: Transform - pos: -53.5,-37.5 - parent: 12 - - uid: 27471 - components: - - type: Transform - pos: -53.5,-36.5 - parent: 12 - - uid: 27472 - components: - - type: Transform - pos: -53.5,-35.5 - parent: 12 - - uid: 27473 - components: - - type: Transform - pos: -53.5,-34.5 - parent: 12 - - uid: 27474 - components: - - type: Transform - pos: -54.5,-34.5 - parent: 12 - - uid: 27475 - components: - - type: Transform - pos: -55.5,-34.5 - parent: 12 - - uid: 27476 - components: - - type: Transform - pos: -56.5,-34.5 - parent: 12 - - uid: 27477 - components: - - type: Transform - pos: -57.5,-34.5 - parent: 12 - - uid: 27478 - components: - - type: Transform - pos: -58.5,-34.5 - parent: 12 - - uid: 27479 - components: - - type: Transform - pos: -58.5,-33.5 - parent: 12 - - uid: 27480 - components: - - type: Transform - pos: -58.5,-32.5 - parent: 12 - - uid: 27481 - components: - - type: Transform - pos: -58.5,-31.5 - parent: 12 - - uid: 27482 - components: - - type: Transform - pos: -58.5,-30.5 - parent: 12 - - uid: 27483 - components: - - type: Transform - pos: -58.5,-29.5 - parent: 12 - - uid: 27484 - components: - - type: Transform - pos: -58.5,-28.5 - parent: 12 - - uid: 27485 - components: - - type: Transform - pos: -58.5,-27.5 - parent: 12 - - uid: 27486 - components: - - type: Transform - pos: -58.5,-26.5 - parent: 12 - - uid: 27487 - components: - - type: Transform - pos: -58.5,-25.5 - parent: 12 - - uid: 27488 - components: - - type: Transform - pos: -58.5,-23.5 - parent: 12 - - uid: 27489 - components: - - type: Transform - pos: -58.5,-24.5 - parent: 12 - - uid: 27490 - components: - - type: Transform - pos: -58.5,-22.5 - parent: 12 - - uid: 27491 - components: - - type: Transform - pos: -58.5,-21.5 - parent: 12 - - uid: 27492 - components: - - type: Transform - pos: -58.5,-20.5 - parent: 12 - - uid: 27493 - components: - - type: Transform - pos: -58.5,-19.5 - parent: 12 - - uid: 27494 - components: - - type: Transform - pos: -58.5,-18.5 - parent: 12 - - uid: 27499 - components: - - type: Transform - pos: -32.5,-66.5 - parent: 12 - - uid: 27501 - components: - - type: Transform - pos: -28.5,-68.5 - parent: 12 - - uid: 27504 - components: - - type: Transform - pos: -49.5,-16.5 - parent: 12 - - uid: 27505 - components: - - type: Transform - pos: -48.5,-16.5 - parent: 12 - - uid: 27506 - components: - - type: Transform - pos: -47.5,-16.5 - parent: 12 - - uid: 27507 - components: - - type: Transform - pos: -50.5,-16.5 - parent: 12 - - uid: 27508 - components: - - type: Transform - pos: -47.5,-15.5 - parent: 12 - - uid: 27509 - components: - - type: Transform - pos: -46.5,-15.5 - parent: 12 - - uid: 27510 - components: - - type: Transform - pos: -46.5,-14.5 - parent: 12 - - uid: 27511 - components: - - 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 - pos: -43.5,-12.5 - parent: 12 - - uid: 27516 - components: - - type: Transform - pos: -42.5,-12.5 - parent: 12 - - uid: 27517 - components: - - type: Transform - pos: -41.5,-12.5 - parent: 12 - - uid: 27518 - components: - - type: Transform - pos: -40.5,-12.5 - parent: 12 - - uid: 27519 - components: - - type: Transform - pos: -39.5,-12.5 - parent: 12 - - uid: 27520 - components: - - type: Transform - pos: -38.5,-12.5 - parent: 12 - - uid: 27521 - components: - - type: Transform - pos: -37.5,-12.5 - parent: 12 - - uid: 27522 - components: - - type: Transform - pos: -36.5,-12.5 - parent: 12 - - uid: 27523 - components: - - type: Transform - pos: -35.5,-12.5 - parent: 12 - - uid: 27524 - components: - - type: Transform - pos: -33.5,-12.5 - parent: 12 - - uid: 27525 - components: - - type: Transform - pos: -32.5,-12.5 - parent: 12 - - uid: 27526 - components: - - type: Transform - pos: -31.5,-12.5 - parent: 12 - - uid: 27527 - components: - - type: Transform - pos: -30.5,-12.5 - parent: 12 - - uid: 27528 - components: - - type: Transform - pos: -29.5,-12.5 - parent: 12 - - uid: 27529 - components: - - type: Transform - pos: -34.5,-12.5 - parent: 12 - - uid: 27530 - components: - - type: Transform - pos: -27.5,-12.5 - parent: 12 - - uid: 27531 - components: - - type: Transform - pos: -28.5,-12.5 - parent: 12 - - uid: 27532 - components: - - type: Transform - pos: -27.5,-11.5 - parent: 12 - - uid: 27533 - components: - - type: Transform - pos: -27.5,-10.5 - parent: 12 - - uid: 27534 - components: - - type: Transform - pos: -27.5,-9.5 - parent: 12 - - uid: 27535 - components: - - type: Transform - pos: -27.5,-8.5 - parent: 12 - - uid: 27536 - components: - - type: Transform - pos: -27.5,-7.5 - parent: 12 - - uid: 27537 - components: - - type: Transform - pos: -27.5,-6.5 - parent: 12 - - uid: 27538 - components: - - type: Transform - pos: -26.5,-6.5 - parent: 12 - - uid: 27539 - components: - - type: Transform - pos: -25.5,-6.5 - parent: 12 - - uid: 27540 - components: - - type: Transform - pos: -24.5,-6.5 - parent: 12 - - uid: 27541 - components: - - type: Transform - pos: -23.5,-6.5 - parent: 12 - - uid: 27542 - components: - - type: Transform - pos: -22.5,-6.5 - parent: 12 - - uid: 27543 - components: - - type: Transform - pos: -21.5,-6.5 - parent: 12 - - uid: 27544 - components: - - type: Transform - pos: -20.5,-6.5 - parent: 12 - - uid: 27545 - components: - - type: Transform - pos: -20.5,-5.5 - parent: 12 - - uid: 27546 - components: - - type: Transform - pos: -19.5,-5.5 - parent: 12 - - uid: 27547 - components: - - type: Transform - pos: -18.5,-5.5 - parent: 12 - - uid: 27548 - components: - - type: Transform - pos: -17.5,-5.5 - parent: 12 - - uid: 27549 - components: - - type: Transform - pos: -16.5,-5.5 - parent: 12 - - uid: 27550 - components: - - type: Transform - pos: -42.5,-29.5 - parent: 12 - - uid: 27551 - components: - - type: Transform - pos: -43.5,-29.5 - parent: 12 - - uid: 27552 - components: - - type: Transform - pos: -44.5,-29.5 - parent: 12 - - uid: 27553 - components: - - type: Transform - pos: -46.5,-29.5 - parent: 12 - - uid: 27554 - components: - - type: Transform - pos: -47.5,-29.5 - parent: 12 - - uid: 27555 - components: - - type: Transform - pos: -48.5,-29.5 - parent: 12 - - uid: 27556 - components: - - type: Transform - pos: -45.5,-29.5 - parent: 12 - - uid: 27557 - components: - - type: Transform - pos: -48.5,-30.5 - parent: 12 - - uid: 27558 - components: - - type: Transform - pos: -49.5,-30.5 - parent: 12 - - uid: 27559 - components: - - type: Transform - pos: -50.5,-30.5 - parent: 12 - - uid: 27560 - components: - - type: Transform - pos: -51.5,-30.5 - parent: 12 - - uid: 27561 - components: - - type: Transform - pos: -52.5,-30.5 - parent: 12 - - uid: 27562 - components: - - type: Transform - pos: -53.5,-30.5 - parent: 12 - - uid: 27563 - components: - - type: Transform - pos: -53.5,-31.5 - parent: 12 - - uid: 27564 - components: - - type: Transform - pos: -53.5,-32.5 - parent: 12 - - uid: 27565 - components: - - 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 - pos: -49.5,-43.5 - parent: 12 - - uid: 27610 - components: - - type: Transform - pos: -49.5,-45.5 - parent: 12 - - uid: 27611 - components: - - type: Transform - pos: -49.5,-46.5 - parent: 12 - - uid: 27612 - components: - - type: Transform - pos: -49.5,-47.5 - parent: 12 - - uid: 27613 - components: - - type: Transform - pos: -49.5,-44.5 - parent: 12 - - uid: 27614 - components: - - type: Transform - pos: -49.5,-49.5 - parent: 12 - - uid: 27615 - components: - - type: Transform - pos: -49.5,-48.5 - parent: 12 - - uid: 27616 - components: - - type: Transform - pos: -49.5,-50.5 - parent: 12 - - uid: 27617 - components: - - type: Transform - pos: -48.5,-50.5 - parent: 12 - - uid: 27618 - components: - - type: Transform - pos: -48.5,-51.5 - parent: 12 - - uid: 27619 - components: - - type: Transform - pos: -47.5,-51.5 - parent: 12 - - uid: 27620 - components: - - type: Transform - pos: -46.5,-51.5 - parent: 12 - - uid: 27621 - components: - - type: Transform - pos: -46.5,-52.5 - parent: 12 - - uid: 27622 - components: - - type: Transform - pos: -45.5,-52.5 - parent: 12 - - uid: 27623 - components: - - type: Transform - pos: -44.5,-52.5 - parent: 12 - - uid: 27624 - components: - - type: Transform - pos: -43.5,-52.5 - parent: 12 - - uid: 27625 - components: - - type: Transform - pos: -42.5,-52.5 - parent: 12 - - uid: 27626 - components: - - type: Transform - pos: -41.5,-52.5 - parent: 12 - - uid: 27627 - components: - - type: Transform - pos: -40.5,-52.5 - parent: 12 - - uid: 27628 - components: - - type: Transform - pos: -39.5,-52.5 - parent: 12 - - uid: 27630 - components: - - type: Transform - pos: -38.5,-51.5 - parent: 12 - - uid: 27631 - components: - - type: Transform - pos: -38.5,-50.5 - parent: 12 - - uid: 27632 - components: - - type: Transform - pos: -38.5,-49.5 - parent: 12 - - uid: 27633 - components: - - type: Transform - pos: -38.5,-48.5 - parent: 12 - - uid: 27634 - components: - - type: Transform - pos: -38.5,-47.5 - parent: 12 - - uid: 27635 - components: - - type: Transform - pos: -38.5,-46.5 - parent: 12 - - uid: 27636 - components: - - type: Transform - pos: -38.5,-45.5 - parent: 12 - - uid: 27637 - components: - - type: Transform - pos: -38.5,-44.5 - parent: 12 - - uid: 27638 - components: - - type: Transform - pos: -38.5,-43.5 - parent: 12 - - uid: 27639 - components: - - type: Transform - pos: -38.5,-42.5 - parent: 12 - - uid: 27640 - components: - - type: Transform - pos: -38.5,-40.5 - parent: 12 - - uid: 27641 - components: - - type: Transform - pos: -38.5,-39.5 - parent: 12 - - uid: 27642 - components: - - type: Transform - pos: -38.5,-38.5 - parent: 12 - - uid: 27643 - components: - - type: Transform - pos: -38.5,-37.5 - parent: 12 - - uid: 27644 - components: - - type: Transform - pos: -38.5,-36.5 - parent: 12 - - uid: 27645 - components: - - type: Transform - pos: -38.5,-41.5 - parent: 12 - - uid: 27646 - components: - - type: Transform - pos: -38.5,-35.5 - parent: 12 - - uid: 27647 - components: - - type: Transform - pos: -38.5,-34.5 - parent: 12 - - uid: 27648 - components: - - type: Transform - pos: -37.5,-34.5 - parent: 12 - - uid: 27649 - components: - - type: Transform - pos: -36.5,-34.5 - parent: 12 - - uid: 27650 - components: - - type: Transform - pos: -35.5,-34.5 - parent: 12 - - uid: 27651 - components: - - type: Transform - pos: -34.5,-34.5 - parent: 12 - - uid: 27652 - components: - - type: Transform - pos: -33.5,-34.5 - parent: 12 - - uid: 27653 - components: - - type: Transform - pos: -32.5,-34.5 - parent: 12 - - uid: 27654 - components: - - type: Transform - pos: -31.5,-34.5 - parent: 12 - - uid: 27655 - components: - - type: Transform - pos: -30.5,-34.5 - parent: 12 - - uid: 27656 - components: - - type: Transform - pos: -37.5,-33.5 - parent: 12 - - uid: 27657 - components: - - type: Transform - pos: -37.5,-32.5 - parent: 12 - - uid: 27658 - components: - - type: Transform - pos: -37.5,-31.5 - parent: 12 - - uid: 27659 - components: - - 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 - pos: 6.5,-48.5 - parent: 12 - - uid: 28431 - components: - - type: Transform - pos: 7.5,-48.5 - parent: 12 - - uid: 28536 - components: - - type: Transform - pos: -5.5,8.5 - parent: 12 - - uid: 28537 - components: - - type: Transform - pos: -5.5,7.5 - parent: 12 - - uid: 28538 - components: - - type: Transform - pos: -6.5,7.5 - parent: 12 - - uid: 28539 - components: - - type: Transform - pos: -6.5,6.5 - parent: 12 - - uid: 28540 - components: - - type: Transform - pos: -6.5,5.5 - parent: 12 - - uid: 28541 - components: - - type: Transform - pos: -6.5,4.5 - parent: 12 - - uid: 28542 - components: - - type: Transform - pos: -6.5,3.5 - parent: 12 - - uid: 28543 - components: - - type: Transform - pos: -6.5,2.5 - parent: 12 - - uid: 28544 - components: - - type: Transform - pos: -7.5,2.5 - parent: 12 - - uid: 28545 - components: - - type: Transform - pos: -8.5,2.5 - parent: 12 - - uid: 28546 - components: - - type: Transform - pos: -8.5,1.5 - parent: 12 - - uid: 28547 - components: - - type: Transform - pos: -8.5,0.5 - parent: 12 - - uid: 28548 - components: - - type: Transform - pos: -8.5,-0.5 - parent: 12 - - uid: 28560 - components: - - type: Transform - pos: -8.5,-12.5 - parent: 12 - - uid: 28561 - components: - - type: Transform - pos: -8.5,-14.5 - parent: 12 - - uid: 28562 - components: - - type: Transform - pos: -8.5,-13.5 - parent: 12 - - uid: 28563 - components: - - type: Transform - pos: -8.5,-15.5 - parent: 12 - - uid: 28564 - components: - - type: Transform - pos: -8.5,-16.5 - parent: 12 - - uid: 28565 - components: - - type: Transform - pos: -8.5,-17.5 - parent: 12 - - uid: 28566 - components: - - type: Transform - pos: -8.5,-18.5 - parent: 12 - - uid: 28567 - components: - - type: Transform - pos: -8.5,-20.5 - parent: 12 - - uid: 28568 - components: - - type: Transform - pos: -8.5,-19.5 - parent: 12 - - uid: 28569 - components: - - type: Transform - pos: -9.5,-22.5 - parent: 12 - - uid: 28570 - components: - - type: Transform - pos: -8.5,-22.5 - parent: 12 - - uid: 28571 - components: - - type: Transform - pos: -7.5,-22.5 - parent: 12 - - uid: 28572 - components: - - type: Transform - pos: -7.5,-21.5 - parent: 12 - - uid: 28573 - components: - - type: Transform - pos: -7.5,-20.5 - parent: 12 - - uid: 28574 - components: - - type: Transform - pos: -6.5,-20.5 - parent: 12 - - uid: 28575 - components: - - type: Transform - pos: -5.5,-20.5 - parent: 12 - - uid: 28576 - components: - - type: Transform - pos: -4.5,-20.5 - parent: 12 - - uid: 28577 - components: - - type: Transform - pos: -4.5,-21.5 - parent: 12 - - uid: 28578 - components: - - type: Transform - pos: -4.5,-22.5 - parent: 12 - - uid: 28579 - components: - - type: Transform - pos: -3.5,-22.5 - parent: 12 - - uid: 28580 - components: - - type: Transform - pos: -2.5,-22.5 - parent: 12 - - uid: 28581 - components: - - type: Transform - pos: -1.5,-22.5 - parent: 12 - - uid: 28582 - components: - - type: Transform - pos: -0.5,-22.5 - parent: 12 - - uid: 28583 - components: - - type: Transform - pos: 0.5,-22.5 - parent: 12 - - uid: 28584 - components: - - type: Transform - pos: 1.5,-22.5 - parent: 12 - - uid: 28585 - components: - - type: Transform - pos: 3.5,-22.5 - parent: 12 - - uid: 28586 - components: - - type: Transform - pos: 4.5,-22.5 - parent: 12 - - uid: 28587 - components: - - type: Transform - pos: 5.5,-22.5 - parent: 12 - - uid: 28588 - components: - - type: Transform - pos: 2.5,-22.5 - parent: 12 - - uid: 28589 - components: - - type: Transform - pos: 6.5,-22.5 - parent: 12 - - uid: 28590 - components: - - type: Transform - pos: 6.5,-21.5 - parent: 12 - - uid: 28591 - components: - - type: Transform - pos: 7.5,-21.5 - parent: 12 - - uid: 28592 - components: - - type: Transform - pos: 9.5,-21.5 - parent: 12 - - uid: 28593 - components: - - type: Transform - pos: 10.5,-21.5 - parent: 12 - - uid: 28594 - components: - - type: Transform - pos: 11.5,-21.5 - parent: 12 - - uid: 28595 - components: - - type: Transform - pos: 12.5,-21.5 - parent: 12 - - uid: 28596 - components: - - type: Transform - pos: 8.5,-21.5 - parent: 12 - - uid: 28597 - components: - - type: Transform - pos: 5.5,-26.5 - parent: 12 - - uid: 28598 - components: - - type: Transform - pos: 5.5,-25.5 - parent: 12 - - uid: 28599 - components: - - type: Transform - pos: 5.5,-24.5 - parent: 12 - - uid: 28600 - components: - - type: Transform - pos: 5.5,-23.5 - parent: 12 - - uid: 28723 - components: - - type: Transform - pos: 39.5,22.5 - parent: 12 - - uid: 28724 - components: - - type: Transform - pos: 39.5,21.5 - parent: 12 - - uid: 28725 - components: - - type: Transform - pos: 39.5,20.5 - parent: 12 - - uid: 28726 - components: - - type: Transform - pos: 39.5,19.5 - parent: 12 - - uid: 28727 - components: - - type: Transform - pos: 39.5,18.5 - parent: 12 - - uid: 28728 - components: - - type: Transform - pos: 39.5,17.5 - parent: 12 - - uid: 28729 - components: - - type: Transform - pos: 40.5,17.5 - parent: 12 - - uid: 28730 - components: - - type: Transform - pos: 41.5,17.5 - parent: 12 - - uid: 28731 - components: - - type: Transform - pos: 41.5,16.5 - parent: 12 - - uid: 28732 - components: - - type: Transform - pos: 41.5,15.5 - parent: 12 - - uid: 28733 - components: - - type: Transform - pos: 41.5,14.5 - parent: 12 - - uid: 28734 - components: - - type: Transform - pos: 41.5,13.5 - parent: 12 - - uid: 28735 - components: - - type: Transform - pos: 41.5,12.5 - parent: 12 - - uid: 28736 - components: - - type: Transform - pos: 41.5,11.5 - parent: 12 - - uid: 28889 - components: - - type: Transform - pos: 29.5,3.5 - parent: 12 - - uid: 28891 - components: - - type: Transform - pos: 29.5,2.5 - parent: 12 - - uid: 28892 - components: - - type: Transform - pos: 30.5,2.5 - parent: 12 - - uid: 28893 - components: - - type: Transform - pos: 30.5,1.5 - parent: 12 - - uid: 28894 - components: - - type: Transform - pos: 30.5,0.5 - parent: 12 - - uid: 28895 - components: - - type: Transform - pos: 30.5,-0.5 - parent: 12 - - uid: 28898 - components: - - type: Transform - pos: 30.5,-9.5 - parent: 12 - - uid: 28899 - components: - - type: Transform - pos: 30.5,-8.5 - parent: 12 - - uid: 28900 - components: - - type: Transform - pos: 30.5,-7.5 - parent: 12 - - uid: 28901 - components: - - type: Transform - pos: 30.5,-6.5 - parent: 12 - - uid: 28902 - components: - - type: Transform - pos: 30.5,-5.5 - parent: 12 - - uid: 29002 - components: - - type: Transform - pos: -28.5,-63.5 - parent: 12 - - uid: 29047 - components: - - type: Transform - pos: 18.5,23.5 - parent: 12 - - uid: 29048 - components: - - type: Transform - pos: 18.5,22.5 - parent: 12 - - uid: 29049 - components: - - type: Transform - pos: 18.5,21.5 - parent: 12 - - uid: 29091 - components: - - type: Transform - pos: 4.5,-54.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 - pos: -48.5,47.5 - parent: 12 - - uid: 29874 - components: - - type: Transform - pos: -48.5,48.5 - parent: 12 - - uid: 29875 - components: - - type: Transform - pos: -48.5,49.5 - parent: 12 - - uid: 29876 - components: - - type: Transform - pos: -49.5,49.5 - parent: 12 - - uid: 29877 - components: - - type: Transform - pos: -50.5,49.5 - parent: 12 - - uid: 29878 - components: - - type: Transform - pos: -50.5,50.5 - parent: 12 - - uid: 29879 - components: - - type: Transform - pos: -50.5,51.5 - parent: 12 - - uid: 29880 - components: - - type: Transform - pos: -50.5,52.5 - parent: 12 - - uid: 29881 - components: - - type: Transform - pos: -50.5,53.5 - parent: 12 - - uid: 29882 - components: - - type: Transform - pos: -50.5,54.5 - parent: 12 - - uid: 29883 - components: - - type: Transform - pos: -50.5,55.5 - parent: 12 - - uid: 29884 - components: - - type: Transform - pos: -50.5,56.5 - parent: 12 - - uid: 29885 - components: - - type: Transform - pos: -50.5,57.5 - parent: 12 - - uid: 29886 - components: - - type: Transform - pos: -50.5,58.5 - parent: 12 - - uid: 29887 - components: - - type: Transform - pos: -50.5,60.5 - parent: 12 - - uid: 29888 - components: - - type: Transform - pos: -50.5,61.5 - parent: 12 - - uid: 29889 - components: - - type: Transform - pos: -50.5,62.5 - parent: 12 - - uid: 29890 - components: - - type: Transform - pos: -50.5,63.5 - parent: 12 - - uid: 29891 - components: - - type: Transform - pos: -50.5,64.5 - parent: 12 - - uid: 29892 - components: - - type: Transform - pos: -50.5,65.5 - parent: 12 - - uid: 29893 - components: - - type: Transform - pos: -50.5,59.5 - parent: 12 - - uid: 29894 - components: - - type: Transform - pos: -49.5,65.5 - parent: 12 - - uid: 29895 - components: - - type: Transform - pos: -47.5,65.5 - parent: 12 - - uid: 29896 - components: - - type: Transform - pos: -46.5,65.5 - parent: 12 - - uid: 29897 - components: - - type: Transform - pos: -45.5,65.5 - parent: 12 - - uid: 29898 - components: - - type: Transform - pos: -44.5,65.5 - parent: 12 - - uid: 29899 - components: - - type: Transform - pos: -43.5,65.5 - parent: 12 - - uid: 29900 - components: - - type: Transform - pos: -42.5,65.5 - parent: 12 - - uid: 29901 - components: - - type: Transform - pos: -41.5,65.5 - parent: 12 - - uid: 29902 - components: - - type: Transform - pos: -48.5,65.5 - parent: 12 - - uid: 29903 - components: - - type: Transform - pos: -41.5,66.5 - parent: 12 - - uid: 29904 - components: - - type: Transform - pos: -41.5,67.5 - parent: 12 - - uid: 29905 - components: - - type: Transform - pos: -41.5,68.5 - parent: 12 - - uid: 29906 - components: - - type: Transform - pos: -41.5,69.5 - parent: 12 - - uid: 29907 - components: - - type: Transform - pos: -41.5,70.5 - parent: 12 - - uid: 29908 - components: - - type: Transform - pos: -41.5,71.5 - parent: 12 - - uid: 29909 - components: - - type: Transform - pos: -41.5,72.5 - parent: 12 - - uid: 29910 - components: - - type: Transform - pos: -40.5,72.5 - parent: 12 - - uid: 29911 - components: - - type: Transform - pos: -39.5,72.5 - parent: 12 - - uid: 29912 - components: - - type: Transform - pos: -38.5,72.5 - parent: 12 - - uid: 29913 - components: - - type: Transform - pos: -37.5,72.5 - parent: 12 - - uid: 29914 - components: - - type: Transform - pos: -36.5,72.5 - parent: 12 - - uid: 29915 - components: - - type: Transform - pos: -35.5,72.5 - parent: 12 - - uid: 29916 - components: - - type: Transform - pos: -34.5,72.5 - parent: 12 - - uid: 29917 - components: - - type: Transform - pos: -33.5,72.5 - parent: 12 - - uid: 29918 - components: - - type: Transform - pos: -32.5,72.5 - parent: 12 - - uid: 29919 - components: - - type: Transform - pos: -31.5,72.5 - parent: 12 - - uid: 29920 - components: - - type: Transform - pos: -30.5,72.5 - parent: 12 - - uid: 29921 - components: - - type: Transform - pos: -29.5,72.5 - parent: 12 - - uid: 29922 - components: - - type: Transform - pos: -28.5,72.5 - parent: 12 - - uid: 29923 - components: - - type: Transform - pos: -27.5,72.5 - parent: 12 - - uid: 29924 - components: - - type: Transform - pos: -26.5,72.5 - parent: 12 - - uid: 29925 - components: - - type: Transform - pos: -25.5,72.5 - parent: 12 - - uid: 29926 - components: - - type: Transform - pos: -23.5,72.5 - parent: 12 - - uid: 29927 - components: - - type: Transform - pos: -22.5,72.5 - parent: 12 - - uid: 29928 - components: - - type: Transform - pos: -21.5,72.5 - parent: 12 - - uid: 29929 - components: - - type: Transform - pos: -20.5,72.5 - parent: 12 - - uid: 29930 - components: - - type: Transform - pos: -19.5,72.5 - parent: 12 - - uid: 29931 - components: - - type: Transform - pos: -24.5,72.5 - parent: 12 - - uid: 29932 - components: - - type: Transform - pos: -18.5,72.5 - parent: 12 - - uid: 29933 - components: - - type: Transform - pos: -18.5,71.5 - parent: 12 - - uid: 29934 - components: - - type: Transform - pos: -18.5,70.5 - parent: 12 - - uid: 29935 - components: - - type: Transform - pos: -18.5,69.5 - parent: 12 - - uid: 30022 - components: - - type: Transform - pos: 39.5,-36.5 - parent: 12 - - uid: 30023 - components: - - type: Transform - pos: 39.5,-38.5 - parent: 12 - - uid: 30024 - components: - - type: Transform - pos: 39.5,-37.5 - parent: 12 - - uid: 30025 - components: - - type: Transform - pos: 38.5,-38.5 - parent: 12 - - uid: 30026 - components: - - type: Transform - pos: 37.5,-38.5 - parent: 12 - - uid: 30027 - components: - - type: Transform - pos: 36.5,-38.5 - parent: 12 - - uid: 30028 - components: - - type: Transform - pos: 35.5,-37.5 - parent: 12 - - uid: 30030 - components: - - type: Transform - pos: 39.5,-35.5 - parent: 12 - - uid: 30031 - components: - - type: Transform - pos: 35.5,-38.5 - parent: 12 - - uid: 30244 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 12 - - uid: 30245 - components: - - type: Transform - pos: 1.5,-6.5 - parent: 12 - - uid: 30248 - components: - - type: Transform - pos: 0.5,-2.5 - parent: 12 - - uid: 30249 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 12 - - uid: 30250 - components: - - type: Transform - pos: 2.5,-2.5 - parent: 12 - - uid: 30251 - components: - - type: Transform - pos: 2.5,-1.5 - parent: 12 - - uid: 30252 - components: - - type: Transform - pos: 2.5,-0.5 - parent: 12 - - uid: 30253 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 12 - - uid: 30254 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 12 - - uid: 30255 - components: - - type: Transform - pos: -1.5,-0.5 - parent: 12 - - uid: 30256 - components: - - type: Transform - pos: -2.5,-0.5 - parent: 12 - - uid: 30257 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 12 - - uid: 30258 - components: - - type: Transform - pos: -3.5,-1.5 - parent: 12 - - uid: 30259 - components: - - type: Transform - pos: -3.5,-0.5 - parent: 12 - - uid: 30326 - components: - - type: Transform - pos: 66.5,-2.5 - parent: 12 - - uid: 30496 - components: - - type: Transform - pos: -36.5,-51.5 - parent: 12 - - uid: 30497 - components: - - type: Transform - pos: -36.5,-50.5 - parent: 12 - - uid: 30535 - components: - - type: Transform - pos: -36.5,-53.5 - parent: 12 - - uid: 30579 - components: - - type: Transform - pos: -37.5,-53.5 - parent: 12 - - uid: 30581 - components: - - type: Transform - pos: -38.5,-53.5 - parent: 12 - - uid: 30585 - components: - - type: Transform - pos: -35.5,-53.5 - parent: 12 - - uid: 30586 - components: - - type: Transform - pos: -34.5,-53.5 - parent: 12 - - uid: 30587 - components: - - type: Transform - pos: -31.5,-53.5 - parent: 12 - - uid: 30588 - components: - - type: Transform - pos: -32.5,-53.5 - parent: 12 - - uid: 30589 - components: - - type: Transform - pos: -30.5,-53.5 - parent: 12 - - uid: 30590 - components: - - type: Transform - pos: -29.5,-53.5 - parent: 12 - - uid: 30591 - components: - - type: Transform - pos: -28.5,-53.5 - parent: 12 - - uid: 30592 - components: - - type: Transform - pos: -26.5,-53.5 - parent: 12 - - uid: 30593 - components: - - type: Transform - pos: -25.5,-53.5 - parent: 12 - - uid: 30594 - components: - - type: Transform - pos: -27.5,-53.5 - parent: 12 - - uid: 30595 - components: - - type: Transform - pos: -25.5,-62.5 - parent: 12 - - uid: 30596 - components: - - type: Transform - pos: -37.5,-46.5 - parent: 12 - - uid: 30597 - components: - - type: Transform - pos: -25.5,-60.5 - parent: 12 - - uid: 30598 - components: - - type: Transform - pos: -25.5,-61.5 - parent: 12 - - uid: 30599 - components: - - type: Transform - pos: -25.5,-57.5 - parent: 12 - - uid: 30600 - components: - - type: Transform - pos: -25.5,-58.5 - parent: 12 - - uid: 30601 - components: - - type: Transform - pos: -25.5,-59.5 - parent: 12 - - uid: 30602 - components: - - type: Transform - pos: -33.5,-53.5 - parent: 12 - - uid: 30603 - components: - - type: Transform - pos: -25.5,-56.5 - parent: 12 - - uid: 30604 - components: - - type: Transform - pos: -36.5,-46.5 - parent: 12 - - uid: 30605 - components: - - type: Transform - pos: -35.5,-46.5 - parent: 12 - - uid: 30606 - components: - - type: Transform - pos: -33.5,-46.5 - parent: 12 - - uid: 30607 - components: - - type: Transform - pos: -32.5,-46.5 - parent: 12 - - uid: 30608 - components: - - type: Transform - pos: -31.5,-46.5 - parent: 12 - - uid: 30609 - components: - - type: Transform - pos: -30.5,-46.5 - parent: 12 - - uid: 30610 - components: - - type: Transform - pos: -28.5,-46.5 - parent: 12 - - uid: 30611 - components: - - type: Transform - pos: -27.5,-46.5 - parent: 12 - - uid: 30612 - components: - - type: Transform - pos: -26.5,-46.5 - parent: 12 - - uid: 30613 - components: - - type: Transform - pos: -25.5,-46.5 - parent: 12 - - uid: 30614 - components: - - type: Transform - pos: -29.5,-46.5 - parent: 12 - - uid: 30615 - components: - - type: Transform - pos: -34.5,-46.5 - parent: 12 - - uid: 30616 - components: - - type: Transform - pos: -26.5,-50.5 - parent: 12 - - uid: 30617 - components: - - type: Transform - pos: -26.5,-49.5 - parent: 12 - - uid: 30618 - components: - - type: Transform - pos: -22.5,-46.5 - parent: 12 - - uid: 30619 - components: - - type: Transform - pos: -21.5,-46.5 - parent: 12 - - uid: 30620 - components: - - type: Transform - pos: -23.5,-46.5 - parent: 12 - - uid: 30621 - components: - - type: Transform - pos: -26.5,-52.5 - parent: 12 - - uid: 30622 - components: - - type: Transform - pos: -26.5,-51.5 - parent: 12 - - uid: 30623 - components: - - type: Transform - pos: -18.5,-42.5 - parent: 12 - - uid: 30624 - components: - - type: Transform - pos: -17.5,-42.5 - parent: 12 - - uid: 30625 - components: - - type: Transform - pos: -15.5,-42.5 - parent: 12 - - uid: 30627 - components: - - type: Transform - pos: -21.5,-43.5 - parent: 12 - - uid: 30628 - components: - - type: Transform - pos: -20.5,-42.5 - parent: 12 - - uid: 30629 - components: - - type: Transform - pos: -19.5,-42.5 - parent: 12 - - uid: 30630 - components: - - type: Transform - pos: -12.5,-42.5 - parent: 12 - - uid: 30631 - components: - - type: Transform - pos: -16.5,-42.5 - parent: 12 - - uid: 30632 - components: - - type: Transform - pos: -11.5,-42.5 - parent: 12 - - uid: 30633 - components: - - type: Transform - pos: -21.5,-42.5 - parent: 12 - - uid: 30634 - components: - - type: Transform - pos: -26.5,-47.5 - parent: 12 - - uid: 30635 - components: - - type: Transform - pos: -21.5,-44.5 - parent: 12 - - uid: 30636 - components: - - type: Transform - pos: -21.5,-45.5 - parent: 12 - - uid: 30637 - components: - - type: Transform - pos: -10.5,-42.5 - parent: 12 - - uid: 30638 - components: - - type: Transform - pos: -9.5,-42.5 - parent: 12 - - uid: 30639 - components: - - type: Transform - pos: -8.5,-42.5 - parent: 12 - - uid: 30640 - components: - - type: Transform - pos: -7.5,-42.5 - parent: 12 - - uid: 30641 - components: - - type: Transform - pos: -13.5,-42.5 - parent: 12 - - uid: 30642 - components: - - type: Transform - pos: -7.5,-41.5 - parent: 12 - - uid: 30643 - components: - - type: Transform - pos: -7.5,-40.5 - parent: 12 - - uid: 30644 - components: - - type: Transform - pos: -7.5,-39.5 - parent: 12 - - uid: 30645 - components: - - type: Transform - pos: -7.5,-38.5 - parent: 12 - - uid: 30646 - components: - - type: Transform - pos: -7.5,-37.5 - parent: 12 - - uid: 30647 - components: - - type: Transform - pos: -7.5,-36.5 - parent: 12 - - uid: 30648 - components: - - type: Transform - pos: -7.5,-35.5 - parent: 12 - - uid: 30649 - components: - - type: Transform - pos: -7.5,-34.5 - parent: 12 - - uid: 30650 - components: - - type: Transform - pos: -7.5,-33.5 - parent: 12 - - uid: 30651 - components: - - type: Transform - pos: -7.5,-32.5 - parent: 12 - - uid: 30652 - components: - - type: Transform - pos: -7.5,-31.5 - parent: 12 - - uid: 30653 - components: - - type: Transform - pos: -24.5,-62.5 - parent: 12 - - uid: 30654 - components: - - type: Transform - pos: -24.5,-63.5 - parent: 12 - - uid: 30655 - components: - - type: Transform - pos: -23.5,-63.5 - parent: 12 - - uid: 30656 - components: - - type: Transform - pos: -22.5,-63.5 - parent: 12 - - uid: 30657 - components: - - type: Transform - pos: -21.5,-63.5 - parent: 12 - - uid: 30658 - components: - - type: Transform - pos: -20.5,-63.5 - parent: 12 - - uid: 30659 - components: - - type: Transform - pos: -19.5,-63.5 - parent: 12 - - uid: 30660 - components: - - type: Transform - pos: -18.5,-63.5 - parent: 12 - - uid: 30661 - components: - - type: Transform - pos: -17.5,-63.5 - parent: 12 - - uid: 30662 - components: - - type: Transform - pos: -16.5,-63.5 - parent: 12 - - uid: 30663 - components: - - type: Transform - pos: -16.5,-64.5 - parent: 12 - - uid: 30664 - components: - - type: Transform - pos: -15.5,-64.5 - parent: 12 - - uid: 30665 - components: - - type: Transform - pos: -14.5,-64.5 - parent: 12 - - uid: 30666 - components: - - type: Transform - pos: -13.5,-64.5 - parent: 12 - - uid: 30667 - components: - - type: Transform - pos: -12.5,-64.5 - parent: 12 - - uid: 30668 - components: - - type: Transform - pos: -11.5,-64.5 - parent: 12 - - uid: 30669 - components: - - type: Transform - pos: -10.5,-64.5 - parent: 12 - - uid: 30670 - components: - - type: Transform - pos: -9.5,-64.5 - parent: 12 - - uid: 30671 - components: - - type: Transform - pos: -8.5,-64.5 - parent: 12 - - uid: 30672 - components: - - type: Transform - pos: -8.5,-63.5 - parent: 12 - - uid: 30673 - components: - - type: Transform - pos: -7.5,-63.5 - parent: 12 - - uid: 30674 - components: - - type: Transform - pos: -6.5,-63.5 - parent: 12 - - uid: 30675 - components: - - type: Transform - pos: -5.5,-63.5 - parent: 12 - - uid: 30676 - components: - - type: Transform - pos: -4.5,-63.5 - parent: 12 - - uid: 30677 - components: - - type: Transform - pos: -3.5,-63.5 - parent: 12 - - uid: 30678 - components: - - type: Transform - pos: -2.5,-63.5 - parent: 12 - - uid: 30679 - components: - - type: Transform - pos: -1.5,-63.5 - parent: 12 - - uid: 30680 - components: - - type: Transform - pos: -1.5,-62.5 - parent: 12 - - uid: 30681 - components: - - type: Transform - pos: -1.5,-61.5 - parent: 12 - - uid: 30682 - components: - - type: Transform - pos: -0.5,-61.5 - parent: 12 - - uid: 30683 - components: - - type: Transform - pos: 0.5,-61.5 - parent: 12 - - uid: 30684 - components: - - type: Transform - pos: 1.5,-61.5 - parent: 12 - - uid: 30685 - components: - - type: Transform - pos: 1.5,-60.5 - parent: 12 - - uid: 30686 - components: - - type: Transform - pos: 1.5,-59.5 - parent: 12 - - uid: 30687 - components: - - type: Transform - pos: 1.5,-58.5 - parent: 12 - - uid: 30688 - components: - - type: Transform - pos: 1.5,-57.5 - parent: 12 - - uid: 30689 - components: - - type: Transform - pos: 2.5,-57.5 - parent: 12 - - uid: 30690 - components: - - type: Transform - pos: 3.5,-57.5 - parent: 12 - - uid: 30691 - components: - - type: Transform - pos: 3.5,-56.5 - parent: 12 - - uid: 30692 - components: - - type: Transform - pos: 3.5,-54.5 - parent: 12 - - uid: 30693 - components: - - type: Transform - pos: 3.5,-53.5 - parent: 12 - - uid: 30694 - components: - - type: Transform - pos: 3.5,-52.5 - parent: 12 - - uid: 30695 - components: - - type: Transform - pos: 3.5,-51.5 - parent: 12 - - uid: 30696 - components: - - type: Transform - pos: 3.5,-55.5 - parent: 12 - - uid: 30983 - components: - - type: Transform - pos: -53.5,-50.5 - parent: 12 - - uid: 30984 - components: - - type: Transform - pos: -52.5,-50.5 - parent: 12 - - uid: 30985 - components: - - type: Transform - pos: -53.5,-48.5 - parent: 12 - - uid: 30986 - components: - - type: Transform - pos: -53.5,-47.5 - parent: 12 - - uid: 30987 - components: - - type: Transform - pos: -53.5,-46.5 - parent: 12 - - uid: 30992 - components: - - type: Transform - pos: -52.5,-48.5 - parent: 12 - - uid: 30994 - components: - - type: Transform - pos: -52.5,-46.5 - parent: 12 - - uid: 30995 - components: - - type: Transform - pos: -51.5,-46.5 - parent: 12 - - uid: 30996 - components: - - type: Transform - pos: -50.5,-46.5 - parent: 12 - - uid: 30997 - components: - - type: Transform - pos: -55.5,-50.5 - parent: 12 - - uid: 30998 - components: - - type: Transform - pos: -54.5,-50.5 - parent: 12 - - uid: 31054 - components: - - type: Transform - pos: 30.5,11.5 - parent: 12 - - uid: 31058 - components: - - type: Transform - pos: -58.5,-48.5 - parent: 12 - - uid: 31059 - components: - - type: Transform - pos: -58.5,-47.5 - parent: 12 - - uid: 31060 - components: - - type: Transform - pos: -57.5,-47.5 - parent: 12 - - uid: 31061 - components: - - type: Transform - pos: -57.5,-45.5 - parent: 12 - - uid: 31062 - components: - - type: Transform - pos: -56.5,-45.5 - parent: 12 - - uid: 31063 - components: - - type: Transform - pos: -58.5,-44.5 - parent: 12 - - uid: 31064 - components: - - type: Transform - pos: -58.5,-43.5 - parent: 12 - - uid: 31751 - components: - - type: Transform - pos: 77.5,-2.5 - parent: 12 - - uid: 31775 - components: - - type: Transform - pos: -52.5,25.5 - parent: 12 - - uid: 31776 - components: - - type: Transform - pos: -53.5,25.5 - parent: 12 - - uid: 31777 - components: - - type: Transform - pos: -54.5,25.5 - parent: 12 - - uid: 31778 - components: - - type: Transform - pos: -55.5,25.5 - parent: 12 - - uid: 31779 - components: - - type: Transform - pos: -56.5,25.5 - parent: 12 - - uid: 31780 - components: - - type: Transform - pos: -56.5,26.5 - parent: 12 - - uid: 31781 - components: - - type: Transform - pos: -56.5,27.5 - parent: 12 - - uid: 31782 - components: - - type: Transform - pos: -56.5,28.5 - parent: 12 - - uid: 31783 - components: - - type: Transform - pos: -56.5,29.5 - parent: 12 - - uid: 31784 - components: - - type: Transform - pos: -56.5,30.5 - parent: 12 - - uid: 31785 - components: - - type: Transform - pos: -56.5,31.5 - parent: 12 - - uid: 31786 - components: - - type: Transform - pos: -56.5,32.5 - parent: 12 - - uid: 31787 - components: - - type: Transform - pos: -55.5,32.5 - parent: 12 - - uid: 31788 - components: - - type: Transform - pos: -54.5,32.5 - parent: 12 - - uid: 31789 - components: - - type: Transform - pos: -53.5,32.5 - parent: 12 - - uid: 31790 - components: - - type: Transform - pos: -52.5,32.5 - parent: 12 - - uid: 31791 - components: - - type: Transform - pos: -48.5,27.5 - parent: 12 - - uid: 31792 - components: - - type: Transform - pos: -49.5,27.5 - parent: 12 - - uid: 31871 - components: - - type: Transform - pos: 15.5,-18.5 - parent: 12 - - uid: 31874 - components: - - type: Transform - pos: 15.5,-13.5 - parent: 12 - - uid: 31875 - components: - - type: Transform - pos: 15.5,-14.5 - parent: 12 - - uid: 31876 - components: - - type: Transform - pos: 15.5,-17.5 - parent: 12 - - uid: 31877 - components: - - type: Transform - pos: 38.5,2.5 - parent: 12 - - uid: 31878 - components: - - type: Transform - pos: 37.5,2.5 - parent: 12 - - uid: 32051 - components: - - type: Transform - pos: 36.5,-15.5 - parent: 12 - - uid: 32052 - components: - - type: Transform - pos: 35.5,-15.5 - parent: 12 - - uid: 32053 - components: - - type: Transform - pos: 35.5,-14.5 - parent: 12 - - uid: 32054 - components: - - type: Transform - pos: 34.5,-14.5 - parent: 12 - - uid: 32055 - components: - - type: Transform - pos: 33.5,-14.5 - parent: 12 - - uid: 32056 - components: - - type: Transform - pos: 32.5,-14.5 - parent: 12 - - uid: 32062 - components: - - type: Transform - pos: 40.5,-10.5 - parent: 12 - - uid: 32130 - components: - - type: Transform - pos: 77.5,-1.5 - parent: 12 - - uid: 32131 - components: - - type: Transform - pos: 77.5,1.5 - parent: 12 - - uid: 32144 - components: - - type: Transform - pos: 77.5,2.5 - parent: 12 - - uid: 32145 - components: - - type: Transform - pos: 77.5,-0.5 - parent: 12 - - uid: 32146 - components: - - type: Transform - pos: 77.5,3.5 - parent: 12 - - uid: 32147 - components: - - type: Transform - pos: 77.5,4.5 - parent: 12 - - uid: 32148 - components: - - type: Transform - pos: 77.5,5.5 - parent: 12 - - uid: 32149 - components: - - type: Transform - pos: 77.5,6.5 - parent: 12 - - uid: 32150 - components: - - type: Transform - pos: 77.5,0.5 - parent: 12 - - uid: 32151 - components: - - type: Transform - pos: 77.5,9.5 - parent: 12 - - uid: 32152 - components: - - type: Transform - pos: 77.5,7.5 - parent: 12 - - uid: 32153 - components: - - type: Transform - pos: 77.5,10.5 - parent: 12 - - uid: 32154 - components: - - type: Transform - pos: 77.5,11.5 - parent: 12 - - uid: 32155 - components: - - type: Transform - pos: 77.5,8.5 - parent: 12 - - uid: 32200 - components: - - type: Transform - pos: 71.5,-1.5 - parent: 12 - - uid: 32201 - components: - - type: Transform - pos: 71.5,0.5 - parent: 12 - - uid: 32202 - components: - - type: Transform - pos: 71.5,1.5 - parent: 12 - - uid: 32203 - components: - - type: Transform - pos: 71.5,2.5 - parent: 12 - - uid: 32204 - components: - - type: Transform - pos: 71.5,-0.5 - parent: 12 - - uid: 32205 - components: - - type: Transform - pos: 66.5,4.5 - parent: 12 - - uid: 32206 - components: - - type: Transform - pos: 67.5,4.5 - parent: 12 - - uid: 32207 - components: - - type: Transform - pos: 68.5,4.5 - parent: 12 - - uid: 32208 - components: - - type: Transform - pos: 69.5,4.5 - parent: 12 - - uid: 32209 - components: - - type: Transform - pos: 73.5,4.5 - parent: 12 - - uid: 32210 - components: - - type: Transform - pos: 74.5,4.5 - parent: 12 - - uid: 32211 - components: - - type: Transform - pos: 75.5,4.5 - parent: 12 - - uid: 32212 - components: - - type: Transform - pos: 76.5,4.5 - parent: 12 - - uid: 32237 - components: - - type: Transform - pos: 71.5,6.5 - parent: 12 - - uid: 32238 - components: - - type: Transform - pos: 71.5,7.5 - parent: 12 - - uid: 32239 - components: - - type: Transform - pos: 71.5,8.5 - parent: 12 - - uid: 32240 - components: - - type: Transform - pos: 71.5,9.5 - parent: 12 - - uid: 32241 - components: - - type: Transform - pos: 71.5,10.5 - parent: 12 -- proto: CableHVStack - entities: - - uid: 353 - components: - - type: Transform - pos: -22.397833,-9.598032 - parent: 12 - - uid: 16563 - components: - - type: Transform - pos: -9.44346,23.420212 - parent: 12 - - uid: 23678 - components: - - type: Transform - pos: 44.585773,52.36379 - parent: 12 - - uid: 28713 - components: - - type: Transform - rot: -50.265482457436725 rad - pos: 55.498672,-5.6926384 - parent: 12 -- proto: CableMV - entities: - - uid: 87 - components: - - type: Transform - pos: 0.5,2.5 - parent: 12 - - uid: 211 - components: - - type: Transform - pos: 15.5,13.5 - parent: 12 - - uid: 262 - components: - - type: Transform - pos: 76.5,-2.5 - parent: 12 - - uid: 278 - components: - - type: Transform - pos: 39.5,60.5 - parent: 12 - - uid: 279 - components: - - type: Transform - pos: 40.5,60.5 - parent: 12 - - uid: 286 - components: - - type: Transform - pos: 65.5,10.5 - parent: 12 - - uid: 319 - components: - - type: Transform - pos: 37.5,-13.5 - parent: 12 - - uid: 324 - components: - - type: Transform - pos: 40.5,-9.5 - parent: 12 - - uid: 329 - components: - - type: Transform - pos: 35.5,60.5 - parent: 12 - - uid: 330 - components: - - type: Transform - pos: 36.5,60.5 - parent: 12 - - uid: 331 - components: - - type: Transform - pos: 41.5,60.5 - parent: 12 - - uid: 332 - components: - - type: Transform - pos: 37.5,60.5 - parent: 12 - - uid: 364 - components: - - type: Transform - pos: 38.5,60.5 - parent: 12 - - uid: 367 - components: - - type: Transform - pos: 43.5,60.5 - parent: 12 - - uid: 392 - components: - - type: Transform - pos: -37.5,-51.5 - parent: 12 - - uid: 434 - components: - - type: Transform - pos: 45.5,56.5 - parent: 12 - - uid: 507 - components: - - type: Transform - pos: -25.5,59.5 - parent: 12 - - uid: 543 - components: - - type: Transform - pos: 43.5,56.5 - parent: 12 - - uid: 554 - components: - - type: Transform - pos: 43.5,58.5 - parent: 12 - - uid: 571 - components: - - type: Transform - pos: -0.5,4.5 - parent: 12 - - uid: 601 - components: - - type: Transform - pos: -56.5,44.5 - parent: 12 - - uid: 611 - components: - - type: Transform - pos: -56.5,43.5 - parent: 12 - - uid: 632 - components: - - type: Transform - pos: -56.5,45.5 - parent: 12 - - uid: 644 - components: - - type: Transform - pos: 43.5,57.5 - parent: 12 - - uid: 647 - components: - - type: Transform - pos: 61.5,-3.5 - parent: 12 - - uid: 680 - components: - - type: Transform - pos: 61.5,-2.5 - parent: 12 - - uid: 711 - components: - - type: Transform - pos: 38.5,-13.5 - parent: 12 - - uid: 725 - components: - - type: Transform - pos: 50.5,56.5 - parent: 12 - - uid: 763 - components: - - type: Transform - pos: 56.5,4.5 - parent: 12 - - uid: 955 - components: - - type: Transform - pos: 50.5,57.5 - parent: 12 - - uid: 974 - components: - - type: Transform - pos: 50.5,59.5 - parent: 12 - - uid: 999 - components: - - type: Transform - pos: 50.5,60.5 - parent: 12 - - uid: 1053 - components: - - type: Transform - pos: 50.5,61.5 - parent: 12 - - uid: 1070 - components: - - type: Transform - pos: -31.5,-42.5 - parent: 12 - - uid: 1191 - components: - - type: Transform - pos: 62.5,4.5 - parent: 12 - - uid: 1455 - components: - - type: Transform - pos: -47.5,-20.5 - parent: 12 - - uid: 1456 - components: - - type: Transform - pos: -47.5,-21.5 - parent: 12 - - uid: 1457 - components: - - type: Transform - pos: -47.5,-22.5 - parent: 12 - - uid: 1458 - components: - - type: Transform - pos: -47.5,-23.5 - parent: 12 - - uid: 1459 - components: - - type: Transform - pos: -47.5,-24.5 - parent: 12 - - uid: 1460 - components: - - type: Transform - pos: -47.5,-25.5 - parent: 12 - - uid: 1461 - components: - - type: Transform - pos: -48.5,-28.5 - parent: 12 - - uid: 1462 - components: - - type: Transform - pos: -48.5,-27.5 - parent: 12 - - uid: 1463 - components: - - type: Transform - pos: -48.5,-26.5 - parent: 12 - - uid: 1464 - components: - - type: Transform - pos: -48.5,-25.5 - parent: 12 - - uid: 1465 - components: - - type: Transform - pos: -46.5,-25.5 - parent: 12 - - uid: 1466 - components: - - type: Transform - pos: -45.5,-25.5 - parent: 12 - - uid: 1467 - components: - - type: Transform - pos: -44.5,-25.5 - parent: 12 - - uid: 1468 - components: - - type: Transform - pos: -43.5,-25.5 - parent: 12 - - uid: 1469 - components: - - type: Transform - pos: -43.5,-26.5 - parent: 12 - - uid: 1470 - components: - - type: Transform - pos: -43.5,-27.5 - parent: 12 - - uid: 1471 - components: - - type: Transform - pos: -43.5,-28.5 - parent: 12 - - uid: 1472 - components: - - type: Transform - pos: -43.5,-29.5 - parent: 12 - - uid: 1473 - components: - - type: Transform - pos: -42.5,-29.5 - parent: 12 - - uid: 1474 - components: - - type: Transform - pos: -41.5,-29.5 - parent: 12 - - uid: 1475 - components: - - type: Transform - pos: -40.5,-29.5 - parent: 12 - - uid: 1476 - components: - - type: Transform - pos: -39.5,-29.5 - parent: 12 - - uid: 1477 - components: - - type: Transform - pos: -38.5,-29.5 - parent: 12 - - uid: 1478 - components: - - type: Transform - pos: -37.5,-29.5 - parent: 12 - - uid: 1479 - components: - - type: Transform - pos: -37.5,-28.5 - parent: 12 - - uid: 1480 - components: - - type: Transform - pos: -37.5,-27.5 - parent: 12 - - uid: 1481 - components: - - type: Transform - pos: -37.5,-26.5 - parent: 12 - - uid: 1483 - components: - - type: Transform - pos: 42.5,60.5 - parent: 12 - - uid: 1485 - components: - - type: Transform - pos: -36.5,-26.5 - parent: 12 - - uid: 1486 - components: - - type: Transform - pos: -35.5,-26.5 - parent: 12 - - uid: 1487 - components: - - type: Transform - pos: -34.5,-26.5 - parent: 12 - - uid: 1488 - components: - - type: Transform - pos: -33.5,-26.5 - parent: 12 - - uid: 1489 - components: - - type: Transform - pos: -33.5,-25.5 - parent: 12 - - uid: 1490 - components: - - type: Transform - pos: -33.5,-24.5 - parent: 12 - - uid: 1491 - components: - - type: Transform - pos: -34.5,-24.5 - parent: 12 - - uid: 1492 - components: - - type: Transform - pos: -35.5,-24.5 - parent: 12 - - uid: 1493 - components: - - type: Transform - pos: -36.5,-24.5 - parent: 12 - - uid: 1494 - components: - - type: Transform - pos: -37.5,-24.5 - parent: 12 - - uid: 1495 - components: - - type: Transform - pos: -38.5,-24.5 - parent: 12 - - uid: 1496 - components: - - type: Transform - pos: -39.5,-24.5 - parent: 12 - - uid: 1497 - components: - - type: Transform - pos: -40.5,-24.5 - parent: 12 - - uid: 1498 - components: - - type: Transform - pos: -40.5,-23.5 - parent: 12 - - uid: 1499 - components: - - type: Transform - pos: -40.5,-22.5 - parent: 12 - - uid: 1503 - components: - - type: Transform - pos: 48.5,-19.5 - parent: 12 - - uid: 1504 - components: - - type: Transform - pos: 47.5,-19.5 - parent: 12 - - uid: 1506 - components: - - type: Transform - pos: -38.5,-34.5 - parent: 12 - - uid: 1507 - components: - - type: Transform - pos: -39.5,-34.5 - parent: 12 - - uid: 1508 - components: - - type: Transform - pos: -40.5,-34.5 - parent: 12 - - uid: 1509 - components: - - type: Transform - pos: -41.5,-34.5 - parent: 12 - - uid: 1510 - components: - - type: Transform - pos: -42.5,-34.5 - parent: 12 - - uid: 1511 - components: - - type: Transform - pos: -43.5,-34.5 - parent: 12 - - uid: 1512 - components: - - type: Transform - pos: -44.5,-34.5 - parent: 12 - - uid: 1513 - components: - - type: Transform - pos: -45.5,-34.5 - parent: 12 - - uid: 1514 - components: - - type: Transform - pos: -46.5,-34.5 - parent: 12 - - uid: 1515 - components: - - type: Transform - pos: -46.5,-35.5 - parent: 12 - - uid: 1516 - components: - - type: Transform - pos: -46.5,-36.5 - parent: 12 - - uid: 1517 - components: - - type: Transform - pos: -46.5,-37.5 - parent: 12 - - uid: 1519 - components: - - type: Transform - pos: -28.5,-40.5 - parent: 12 - - uid: 1520 - components: - - type: Transform - pos: -28.5,-41.5 - parent: 12 - - uid: 1521 - components: - - type: Transform - pos: -29.5,-41.5 - parent: 12 - - uid: 1524 - components: - - type: Transform - pos: -51.5,45.5 - parent: 12 - - uid: 1525 - components: - - type: Transform - pos: -30.5,-38.5 - parent: 12 - - uid: 1526 - components: - - type: Transform - pos: -30.5,-37.5 - parent: 12 - - uid: 1527 - components: - - type: Transform - pos: -30.5,-36.5 - parent: 12 - - uid: 1528 - components: - - type: Transform - pos: -30.5,-35.5 - parent: 12 - - uid: 1529 - components: - - type: Transform - pos: -30.5,-34.5 - parent: 12 - - uid: 1530 - components: - - type: Transform - pos: -30.5,-33.5 - parent: 12 - - uid: 1531 - components: - - type: Transform - pos: -30.5,-32.5 - parent: 12 - - uid: 1532 - components: - - type: Transform - pos: -30.5,-31.5 - parent: 12 - - uid: 1533 - components: - - type: Transform - pos: -30.5,-30.5 - parent: 12 - - uid: 1534 - components: - - type: Transform - pos: -30.5,-29.5 - parent: 12 - - uid: 1535 - components: - - type: Transform - pos: -30.5,-28.5 - parent: 12 - - uid: 1536 - components: - - type: Transform - pos: -30.5,-27.5 - parent: 12 - - uid: 1539 - components: - - type: Transform - pos: 46.5,-20.5 - parent: 12 - - uid: 1540 - components: - - type: Transform - pos: 46.5,-19.5 - parent: 12 - - uid: 1542 - components: - - type: Transform - pos: -27.5,-24.5 - parent: 12 - - uid: 1543 - components: - - type: Transform - pos: -26.5,-24.5 - parent: 12 - - uid: 1544 - components: - - type: Transform - pos: -25.5,-24.5 - parent: 12 - - uid: 1545 - components: - - type: Transform - pos: -24.5,-24.5 - parent: 12 - - uid: 1546 - components: - - type: Transform - pos: -29.5,-27.5 - parent: 12 - - uid: 1547 - components: - - type: Transform - pos: -28.5,-27.5 - parent: 12 - - uid: 1548 - components: - - type: Transform - pos: -24.5,-27.5 - parent: 12 - - uid: 1622 - components: - - type: Transform - pos: -27.5,-23.5 - parent: 12 - - uid: 1623 - components: - - type: Transform - pos: -27.5,-22.5 - parent: 12 - - uid: 1624 - components: - - type: Transform - pos: -27.5,-21.5 - parent: 12 - - uid: 1625 - components: - - type: Transform - pos: -27.5,-20.5 - parent: 12 - - uid: 1626 - components: - - type: Transform - pos: -27.5,-19.5 - parent: 12 - - uid: 1627 - components: - - type: Transform - pos: -27.5,-18.5 - parent: 12 - - uid: 1628 - components: - - type: Transform - pos: -27.5,-17.5 - parent: 12 - - uid: 2039 - components: - - type: Transform - pos: 62.5,6.5 - parent: 12 - - uid: 2105 - components: - - type: Transform - pos: 26.5,5.5 - parent: 12 - - uid: 2113 - components: - - type: Transform - pos: 26.5,6.5 - parent: 12 - - uid: 2115 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 12 - - uid: 2125 - components: - - type: Transform - pos: -3.5,-2.5 - parent: 12 - - uid: 2129 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 12 - - uid: 2130 - components: - - type: Transform - pos: 26.5,7.5 - parent: 12 - - uid: 2139 - components: - - type: Transform - pos: 26.5,8.5 - parent: 12 - - uid: 2140 - components: - - type: Transform - pos: 23.5,5.5 - parent: 12 - - uid: 2141 - components: - - type: Transform - pos: 25.5,5.5 - parent: 12 - - uid: 2152 - components: - - type: Transform - pos: 24.5,5.5 - parent: 12 - - uid: 2157 - components: - - type: Transform - pos: 26.5,9.5 - parent: 12 - - uid: 2158 - components: - - type: Transform - pos: 25.5,9.5 - parent: 12 - - uid: 2159 - components: - - type: Transform - pos: 24.5,9.5 - parent: 12 - - uid: 2177 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 12 - - uid: 2189 - components: - - type: Transform - pos: 2.5,-7.5 - parent: 12 - - uid: 2190 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 12 - - uid: 2191 - components: - - type: Transform - pos: 1.5,-6.5 - parent: 12 - - uid: 2192 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 12 - - uid: 2193 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 12 - - uid: 2194 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 12 - - uid: 2195 - components: - - type: Transform - pos: -0.5,-8.5 - parent: 12 - - uid: 2196 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 12 - - uid: 2197 - components: - - type: Transform - pos: -0.5,-10.5 - parent: 12 - - uid: 2198 - components: - - type: Transform - pos: -1.5,-10.5 - parent: 12 - - uid: 2199 - components: - - type: Transform - pos: -2.5,-10.5 - parent: 12 - - uid: 2200 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 12 - - uid: 2234 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 12 - - uid: 2249 - components: - - type: Transform - pos: -56.5,40.5 - parent: 12 - - uid: 2251 - components: - - type: Transform - pos: 56.5,6.5 - parent: 12 - - uid: 2263 - components: - - type: Transform - pos: -23.5,57.5 - parent: 12 - - uid: 2269 - components: - - type: Transform - pos: 46.5,56.5 - parent: 12 - - uid: 2360 - components: - - type: Transform - pos: 50.5,58.5 - parent: 12 - - uid: 2371 - components: - - type: Transform - pos: 40.5,-8.5 - parent: 12 - - uid: 2513 - components: - - type: Transform - pos: 35.5,-13.5 - parent: 12 - - uid: 2529 - components: - - type: Transform - pos: 45.5,-20.5 - parent: 12 - - uid: 2581 - components: - - type: Transform - pos: -56.5,39.5 - parent: 12 - - uid: 2649 - components: - - type: Transform - pos: 43.5,59.5 - parent: 12 - - uid: 2650 - components: - - type: Transform - pos: 47.5,56.5 - parent: 12 - - uid: 2651 - components: - - type: Transform - pos: 44.5,56.5 - parent: 12 - - uid: 2652 - components: - - type: Transform - pos: 48.5,56.5 - parent: 12 - - uid: 2653 - components: - - type: Transform - pos: 49.5,56.5 - parent: 12 - - uid: 2736 - components: - - type: Transform - pos: -56.5,41.5 - parent: 12 - - uid: 2740 - components: - - type: Transform - pos: -0.5,-35.5 - parent: 12 - - uid: 2789 - components: - - type: Transform - pos: -23.5,-1.5 - parent: 12 - - uid: 2795 - components: - - type: Transform - pos: -57.5,37.5 - parent: 12 - - uid: 2821 - components: - - type: Transform - pos: 0.5,-41.5 - parent: 12 - - uid: 2829 - components: - - type: Transform - pos: 9.5,-47.5 - parent: 12 - - uid: 2837 - components: - - type: Transform - pos: -57.5,36.5 - parent: 12 - - uid: 2844 - components: - - type: Transform - pos: -56.5,42.5 - parent: 12 - - uid: 2860 - components: - - type: Transform - pos: 42.5,-11.5 - parent: 12 - - uid: 2861 - components: - - type: Transform - pos: 40.5,-11.5 - parent: 12 - - uid: 2866 - components: - - type: Transform - pos: -57.5,39.5 - parent: 12 - - uid: 2882 - components: - - type: Transform - pos: 0.5,-40.5 - parent: 12 - - uid: 2946 - components: - - type: Transform - pos: -57.5,38.5 - parent: 12 - - uid: 2984 - components: - - type: Transform - pos: -24.5,-29.5 - parent: 12 - - uid: 2999 - components: - - type: Transform - pos: -24.5,-28.5 - parent: 12 - - uid: 3035 - components: - - type: Transform - pos: 0.5,-39.5 - parent: 12 - - uid: 3036 - components: - - type: Transform - pos: 0.5,-38.5 - parent: 12 - - uid: 3078 - components: - - type: Transform - pos: 14.5,5.5 - parent: 12 - - uid: 3080 - components: - - 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 - pos: 13.5,-36.5 - parent: 12 - - uid: 3161 - components: - - type: Transform - pos: 11.5,-37.5 - parent: 12 - - uid: 3162 - components: - - type: Transform - pos: 10.5,-37.5 - parent: 12 - - uid: 3163 - components: - - type: Transform - pos: 10.5,-38.5 - parent: 12 - - uid: 3164 - components: - - type: Transform - pos: 10.5,-41.5 - parent: 12 - - uid: 3165 - components: - - type: Transform - pos: 10.5,-43.5 - parent: 12 - - uid: 3201 - components: - - type: Transform - pos: 3.5,-49.5 - parent: 12 - - uid: 3202 - components: - - type: Transform - pos: 4.5,-49.5 - parent: 12 - - uid: 3203 - components: - - type: Transform - pos: 5.5,-49.5 - parent: 12 - - uid: 3204 - components: - - type: Transform - pos: 5.5,-48.5 - parent: 12 - - uid: 3206 - components: - - type: Transform - pos: 5.5,-46.5 - parent: 12 - - uid: 3207 - components: - - type: Transform - pos: 3.5,-50.5 - parent: 12 - - uid: 3208 - components: - - type: Transform - pos: 2.5,-50.5 - parent: 12 - - uid: 3209 - components: - - type: Transform - pos: 1.5,-50.5 - parent: 12 - - uid: 3210 - components: - - type: Transform - pos: 0.5,-50.5 - parent: 12 - - uid: 3211 - components: - - type: Transform - pos: 0.5,-49.5 - parent: 12 - - uid: 3212 - components: - - type: Transform - pos: 0.5,-48.5 - parent: 12 - - uid: 3213 - components: - - type: Transform - pos: 0.5,-47.5 - parent: 12 - - uid: 3214 - components: - - type: Transform - pos: 0.5,-46.5 - parent: 12 - - uid: 3215 - components: - - type: Transform - pos: 0.5,-45.5 - parent: 12 - - uid: 3216 - components: - - type: Transform - pos: 0.5,-44.5 - parent: 12 - - uid: 3217 - components: - - type: Transform - pos: 0.5,-43.5 - parent: 12 - - uid: 3218 - components: - - type: Transform - pos: 0.5,-42.5 - parent: 12 - - uid: 3219 - components: - - type: Transform - pos: 0.5,-36.5 - parent: 12 - - uid: 3220 - components: - - type: Transform - pos: -0.5,-36.5 - parent: 12 - - uid: 3221 - components: - - type: Transform - pos: -8.5,-41.5 - parent: 12 - - uid: 3227 - components: - - type: Transform - pos: -8.5,-42.5 - parent: 12 - - uid: 3228 - components: - - type: Transform - pos: -9.5,-42.5 - parent: 12 - - uid: 3229 - components: - - type: Transform - pos: -10.5,-42.5 - parent: 12 - - uid: 3230 - components: - - type: Transform - pos: -11.5,-42.5 - parent: 12 - - uid: 3231 - components: - - type: Transform - pos: -12.5,-42.5 - parent: 12 - - uid: 3232 - components: - - type: Transform - pos: -13.5,-42.5 - parent: 12 - - uid: 3233 - components: - - type: Transform - pos: -14.5,-42.5 - parent: 12 - - uid: 3234 - components: - - type: Transform - pos: -15.5,-42.5 - parent: 12 - - uid: 3235 - components: - - type: Transform - pos: -16.5,-42.5 - parent: 12 - - uid: 3243 - components: - - type: Transform - pos: -15.5,-34.5 - parent: 12 - - uid: 3244 - components: - - type: Transform - pos: -14.5,-34.5 - parent: 12 - - uid: 3245 - components: - - type: Transform - pos: -13.5,-34.5 - parent: 12 - - uid: 3246 - components: - - type: Transform - pos: -12.5,-34.5 - parent: 12 - - uid: 3247 - components: - - type: Transform - pos: -11.5,-34.5 - parent: 12 - - uid: 3248 - components: - - type: Transform - pos: -10.5,-34.5 - parent: 12 - - uid: 3249 - components: - - type: Transform - pos: -9.5,-34.5 - parent: 12 - - uid: 3250 - components: - - type: Transform - pos: -8.5,-34.5 - parent: 12 - - uid: 3251 - components: - - type: Transform - pos: -7.5,-34.5 - parent: 12 - - uid: 3252 - components: - - type: Transform - pos: -7.5,-33.5 - parent: 12 - - uid: 3253 - components: - - type: Transform - pos: -7.5,-32.5 - parent: 12 - - uid: 3254 - components: - - type: Transform - pos: -7.5,-31.5 - parent: 12 - - uid: 3255 - components: - - type: Transform - pos: -7.5,-30.5 - parent: 12 - - uid: 3256 - components: - - type: Transform - pos: -7.5,-29.5 - parent: 12 - - uid: 3257 - components: - - type: Transform - pos: -16.5,-43.5 - parent: 12 - - uid: 3258 - components: - - type: Transform - pos: -16.5,-44.5 - parent: 12 - - uid: 3259 - components: - - type: Transform - pos: -16.5,-45.5 - parent: 12 - - uid: 3260 - components: - - type: Transform - pos: -16.5,-46.5 - parent: 12 - - uid: 3261 - components: - - type: Transform - pos: -16.5,-47.5 - parent: 12 - - uid: 3262 - components: - - type: Transform - pos: -16.5,-48.5 - parent: 12 - - uid: 3263 - components: - - type: Transform - pos: -16.5,-49.5 - parent: 12 - - uid: 3264 - components: - - type: Transform - pos: -16.5,-50.5 - parent: 12 - - uid: 3265 - components: - - type: Transform - pos: -17.5,-50.5 - parent: 12 - - uid: 3266 - components: - - type: Transform - pos: -18.5,-50.5 - parent: 12 - - uid: 3267 - components: - - type: Transform - pos: -19.5,-50.5 - parent: 12 - - uid: 3268 - components: - - type: Transform - pos: -20.5,-50.5 - parent: 12 - - uid: 3269 - components: - - type: Transform - pos: -21.5,-50.5 - parent: 12 - - uid: 3270 - components: - - type: Transform - pos: -21.5,-49.5 - parent: 12 - - uid: 3271 - components: - - type: Transform - pos: -21.5,-48.5 - parent: 12 - - uid: 3470 - components: - - type: Transform - pos: 15.5,8.5 - parent: 12 - - uid: 3485 - components: - - type: Transform - pos: 10.5,-45.5 - parent: 12 - - uid: 3510 - components: - - type: Transform - pos: -23.5,-2.5 - parent: 12 - - uid: 3613 - components: - - type: Transform - pos: 15.5,6.5 - parent: 12 - - uid: 3625 - components: - - type: Transform - pos: 15.5,7.5 - parent: 12 - - uid: 3916 - components: - - type: Transform - pos: 15.5,10.5 - parent: 12 - - uid: 3984 - components: - - 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 - pos: 60.5,-24.5 - parent: 12 - - uid: 4371 - components: - - type: Transform - pos: -9.5,-21.5 - parent: 12 - - uid: 4374 - components: - - type: Transform - pos: -10.5,-23.5 - parent: 12 - - uid: 4375 - components: - - type: Transform - pos: -11.5,-23.5 - parent: 12 - - uid: 4376 - components: - - type: Transform - pos: -12.5,-23.5 - parent: 12 - - uid: 4377 - components: - - type: Transform - pos: -13.5,-23.5 - parent: 12 - - uid: 4378 - components: - - type: Transform - pos: -14.5,-23.5 - parent: 12 - - uid: 4379 - components: - - type: Transform - pos: -15.5,-23.5 - parent: 12 - - uid: 4380 - components: - - type: Transform - pos: -15.5,-24.5 - parent: 12 - - uid: 4404 - components: - - 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 - pos: 56.5,47.5 - parent: 12 - - uid: 4614 - components: - - type: Transform - pos: 56.5,48.5 - parent: 12 - - uid: 4615 - components: - - type: Transform - pos: 56.5,49.5 - parent: 12 - - uid: 4616 - components: - - type: Transform - pos: 57.5,49.5 - parent: 12 - - uid: 4632 - components: - - type: Transform - pos: 56.5,46.5 - parent: 12 - - uid: 4686 - components: - - type: Transform - pos: 57.5,50.5 - parent: 12 - - uid: 4687 - components: - - type: Transform - pos: 57.5,51.5 - parent: 12 - - uid: 4688 - components: - - type: Transform - pos: 57.5,52.5 - parent: 12 - - uid: 4689 - components: - - type: Transform - pos: 57.5,53.5 - parent: 12 - - uid: 4690 - components: - - type: Transform - pos: 57.5,54.5 - parent: 12 - - uid: 4700 - components: - - type: Transform - pos: -35.5,-35.5 - parent: 12 - - uid: 4703 - components: - - type: Transform - pos: -16.5,-24.5 - parent: 12 - - uid: 4704 - components: - - type: Transform - pos: -17.5,-24.5 - parent: 12 - - uid: 4715 - components: - - type: Transform - pos: 4.5,-16.5 - parent: 12 - - uid: 4859 - components: - - type: Transform - pos: 57.5,56.5 - parent: 12 - - uid: 4921 - components: - - type: Transform - pos: 30.5,-0.5 - parent: 12 - - uid: 4933 - components: - - type: Transform - pos: -11.5,-30.5 - parent: 12 - - uid: 4958 - components: - - type: Transform - pos: 60.5,6.5 - parent: 12 - - uid: 4963 - components: - - type: Transform - pos: -11.5,-31.5 - parent: 12 - - uid: 4977 - components: - - type: Transform - pos: -27.5,65.5 - parent: 12 - - uid: 4988 - components: - - type: Transform - pos: 7.5,-14.5 - parent: 12 - - uid: 5036 - components: - - type: Transform - pos: 57.5,59.5 - parent: 12 - - uid: 5039 - components: - - type: Transform - pos: 30.5,-6.5 - parent: 12 - - uid: 5057 - components: - - type: Transform - pos: -23.5,58.5 - parent: 12 - - uid: 5060 - components: - - type: Transform - pos: 57.5,58.5 - parent: 12 - - uid: 5077 - components: - - type: Transform - pos: 30.5,-9.5 - parent: 12 - - uid: 5102 - components: - - type: Transform - pos: 57.5,57.5 - parent: 12 - - uid: 5108 - components: - - type: Transform - pos: 57.5,55.5 - parent: 12 - - uid: 5119 - components: - - type: Transform - pos: 50.5,62.5 - parent: 12 - - uid: 5132 - components: - - type: Transform - pos: -1.5,1.5 - parent: 12 - - uid: 5170 - components: - - type: Transform - pos: 9.5,-14.5 - parent: 12 - - uid: 5175 - components: - - type: Transform - pos: 10.5,-15.5 - parent: 12 - - uid: 5176 - components: - - type: Transform - pos: 12.5,-15.5 - parent: 12 - - uid: 5177 - components: - - type: Transform - pos: 15.5,-16.5 - parent: 12 - - uid: 5272 - components: - - type: Transform - pos: 33.5,-1.5 - parent: 12 - - uid: 5290 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 12 - - uid: 5301 - components: - - type: Transform - pos: 14.5,4.5 - parent: 12 - - uid: 5303 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 12 - - uid: 5311 - components: - - type: Transform - pos: -27.5,66.5 - parent: 12 - - uid: 5378 - components: - - type: Transform - pos: 7.5,-21.5 - parent: 12 - - uid: 5405 - components: - - type: Transform - pos: 35.5,-3.5 - parent: 12 - - uid: 5415 - components: - - type: Transform - pos: -55.5,46.5 - parent: 12 - - uid: 5420 - components: - - type: Transform - pos: 61.5,-1.5 - parent: 12 - - uid: 5425 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 12 - - uid: 5431 - components: - - type: Transform - pos: -59.5,35.5 - parent: 12 - - uid: 5432 - components: - - type: Transform - pos: -59.5,34.5 - parent: 12 - - uid: 5468 - components: - - type: Transform - pos: -58.5,36.5 - parent: 12 - - uid: 5469 - components: - - type: Transform - pos: -59.5,36.5 - parent: 12 - - uid: 5488 - components: - - type: Transform - pos: 30.5,-7.5 - parent: 12 - - uid: 5491 - components: - - type: Transform - pos: -60.5,29.5 - parent: 12 - - uid: 5496 - components: - - type: Transform - pos: -56.5,46.5 - parent: 12 - - uid: 5502 - components: - - type: Transform - pos: -27.5,7.5 - parent: 12 - - uid: 5537 - components: - - type: Transform - pos: 30.5,-8.5 - parent: 12 - - uid: 5545 - components: - - type: Transform - pos: 26.5,-18.5 - parent: 12 - - uid: 5605 - components: - - type: Transform - pos: 31.5,-11.5 - parent: 12 - - uid: 5606 - components: - - type: Transform - pos: 31.5,-10.5 - parent: 12 - - uid: 5607 - components: - - type: Transform - pos: 31.5,-9.5 - parent: 12 - - uid: 5608 - components: - - type: Transform - pos: 32.5,-9.5 - parent: 12 - - uid: 5609 - components: - - type: Transform - pos: 31.5,-12.5 - parent: 12 - - uid: 5610 - components: - - type: Transform - pos: 31.5,-13.5 - parent: 12 - - uid: 5611 - components: - - type: Transform - pos: 31.5,-14.5 - parent: 12 - - uid: 5612 - components: - - type: Transform - pos: 31.5,-15.5 - parent: 12 - - uid: 5613 - components: - - type: Transform - pos: 31.5,-16.5 - parent: 12 - - uid: 5614 - components: - - type: Transform - pos: 30.5,-16.5 - parent: 12 - - uid: 5615 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 12 - - uid: 5616 - components: - - type: Transform - pos: 28.5,-16.5 - parent: 12 - - uid: 5617 - components: - - type: Transform - pos: 27.5,-16.5 - parent: 12 - - uid: 5619 - components: - - type: Transform - pos: 25.5,-16.5 - parent: 12 - - uid: 5621 - components: - - type: Transform - pos: 23.5,-16.5 - parent: 12 - - uid: 5622 - components: - - type: Transform - pos: 22.5,-16.5 - parent: 12 - - uid: 5623 - components: - - type: Transform - pos: 21.5,-16.5 - parent: 12 - - uid: 5624 - components: - - type: Transform - pos: 20.5,-16.5 - parent: 12 - - uid: 5625 - components: - - type: Transform - pos: 19.5,-16.5 - parent: 12 - - uid: 5626 - components: - - type: Transform - pos: 19.5,-15.5 - parent: 12 - - uid: 5663 - components: - - type: Transform - pos: -54.5,46.5 - parent: 12 - - uid: 5720 - components: - - type: Transform - pos: 28.5,-10.5 - parent: 12 - - uid: 5836 - components: - - type: Transform - pos: 13.5,-37.5 - parent: 12 - - uid: 5848 - components: - - type: Transform - pos: 12.5,-37.5 - parent: 12 - - uid: 5850 - components: - - type: Transform - pos: 13.5,-0.5 - parent: 12 - - uid: 5871 - components: - - type: Transform - pos: 75.5,11.5 - parent: 12 - - uid: 5934 - components: - - type: Transform - pos: -60.5,28.5 - parent: 12 - - uid: 5935 - components: - - type: Transform - pos: -60.5,34.5 - parent: 12 - - uid: 5936 - components: - - type: Transform - pos: -60.5,33.5 - parent: 12 - - uid: 5948 - components: - - type: Transform - pos: -60.5,32.5 - parent: 12 - - uid: 5981 - components: - - type: Transform - pos: 10.5,-40.5 - parent: 12 - - uid: 6007 - components: - - type: Transform - pos: 29.5,-7.5 - parent: 12 - - uid: 6012 - components: - - type: Transform - pos: -48.5,56.5 - parent: 12 - - uid: 6022 - components: - - type: Transform - pos: 58.5,-3.5 - parent: 12 - - uid: 6024 - components: - - type: Transform - pos: 16.5,5.5 - parent: 12 - - uid: 6025 - components: - - type: Transform - pos: 17.5,5.5 - parent: 12 - - uid: 6026 - components: - - type: Transform - pos: 18.5,5.5 - parent: 12 - - uid: 6027 - components: - - type: Transform - pos: 19.5,5.5 - parent: 12 - - uid: 6157 - components: - - type: Transform - pos: -60.5,31.5 - parent: 12 - - uid: 6158 - components: - - type: Transform - pos: 10.5,-44.5 - parent: 12 - - uid: 6159 - components: - - type: Transform - pos: 10.5,-46.5 - parent: 12 - - uid: 6160 - components: - - type: Transform - pos: 10.5,-47.5 - parent: 12 - - uid: 6184 - components: - - type: Transform - pos: -60.5,30.5 - parent: 12 - - uid: 6197 - components: - - type: Transform - pos: 38.5,1.5 - parent: 12 - - uid: 6222 - components: - - type: Transform - pos: -60.5,26.5 - parent: 12 - - uid: 6272 - components: - - type: Transform - pos: -60.5,25.5 - parent: 12 - - uid: 6280 - components: - - type: Transform - pos: -60.5,27.5 - parent: 12 - - uid: 6281 - components: - - 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 - pos: 28.5,-7.5 - parent: 12 - - uid: 6681 - components: - - type: Transform - pos: 38.5,-15.5 - parent: 12 - - uid: 6704 - components: - - type: Transform - pos: 28.5,-9.5 - parent: 12 - - uid: 6711 - components: - - type: Transform - pos: 33.5,-3.5 - parent: 12 - - uid: 6728 - components: - - 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 - pos: 63.5,-23.5 - parent: 12 - - uid: 6774 - components: - - 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 - pos: 7.5,-47.5 - parent: 12 - - uid: 6892 - components: - - type: Transform - pos: 8.5,-47.5 - parent: 12 - - uid: 6896 - components: - - type: Transform - pos: 10.5,-42.5 - parent: 12 - - uid: 6902 - components: - - 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 - pos: 34.5,-3.5 - parent: 12 - - uid: 7130 - components: - - type: Transform - pos: 62.5,-1.5 - parent: 12 - - uid: 7132 - components: - - type: Transform - pos: 63.5,-1.5 - parent: 12 - - uid: 7208 - components: - - type: Transform - pos: 13.5,3.5 - parent: 12 - - uid: 7209 - components: - - type: Transform - pos: 13.5,0.5 - parent: 12 - - uid: 7218 - components: - - type: Transform - pos: 13.5,4.5 - parent: 12 - - uid: 7220 - components: - - type: Transform - pos: 13.5,2.5 - parent: 12 - - uid: 7237 - components: - - type: Transform - pos: 15.5,5.5 - parent: 12 - - uid: 7328 - components: - - type: Transform - pos: 41.5,-16.5 - parent: 12 - - uid: 7339 - components: - - type: Transform - pos: 43.5,-11.5 - parent: 12 - - uid: 7343 - components: - - type: Transform - pos: 31.5,12.5 - parent: 12 - - uid: 7364 - components: - - type: Transform - pos: 30.5,15.5 - parent: 12 - - uid: 7381 - components: - - type: Transform - pos: 30.5,12.5 - parent: 12 - - uid: 7387 - components: - - type: Transform - pos: 30.5,13.5 - parent: 12 - - uid: 7468 - components: - - type: Transform - pos: 30.5,14.5 - parent: 12 - - uid: 7470 - components: - - type: Transform - pos: 43.5,-12.5 - parent: 12 - - uid: 7524 - components: - - type: Transform - pos: 11.5,-21.5 - parent: 12 - - uid: 7580 - components: - - type: Transform - pos: 13.5,1.5 - parent: 12 - - uid: 7783 - components: - - type: Transform - pos: 59.5,-1.5 - parent: 12 - - uid: 7787 - components: - - type: Transform - pos: 13.5,-1.5 - parent: 12 - - uid: 7791 - components: - - type: Transform - pos: -38.5,-52.5 - parent: 12 - - uid: 7807 - components: - - type: Transform - pos: 60.5,-1.5 - parent: 12 - - uid: 7850 - components: - - type: Transform - pos: 43.5,-13.5 - parent: 12 - - uid: 7851 - components: - - type: Transform - pos: 44.5,-13.5 - parent: 12 - - uid: 7852 - components: - - type: Transform - pos: 45.5,-13.5 - parent: 12 - - uid: 7853 - components: - - type: Transform - pos: 46.5,-13.5 - parent: 12 - - uid: 7854 - components: - - type: Transform - pos: 47.5,-13.5 - parent: 12 - - uid: 7855 - components: - - type: Transform - pos: 48.5,-13.5 - parent: 12 - - uid: 7856 - components: - - type: Transform - pos: 49.5,-13.5 - parent: 12 - - uid: 7857 - components: - - type: Transform - pos: 49.5,-14.5 - parent: 12 - - uid: 7858 - components: - - type: Transform - pos: 49.5,-15.5 - parent: 12 - - uid: 7859 - components: - - type: Transform - pos: 49.5,-16.5 - parent: 12 - - uid: 7860 - components: - - type: Transform - pos: 49.5,-17.5 - parent: 12 - - uid: 7861 - components: - - type: Transform - pos: 49.5,-18.5 - parent: 12 - - uid: 7862 - components: - - type: Transform - pos: 49.5,-19.5 - parent: 12 - - uid: 7863 - components: - - type: Transform - pos: 50.5,-19.5 - parent: 12 - - uid: 7864 - components: - - type: Transform - pos: 51.5,-19.5 - parent: 12 - - uid: 7865 - components: - - type: Transform - pos: 52.5,-19.5 - parent: 12 - - uid: 7866 - components: - - type: Transform - pos: 53.5,-19.5 - parent: 12 - - uid: 7867 - components: - - type: Transform - pos: 53.5,-20.5 - parent: 12 - - uid: 7868 - components: - - type: Transform - pos: 53.5,-21.5 - parent: 12 - - uid: 7869 - components: - - type: Transform - pos: 53.5,-22.5 - parent: 12 - - uid: 7870 - components: - - type: Transform - pos: 53.5,-23.5 - parent: 12 - - uid: 7871 - components: - - type: Transform - pos: 53.5,-24.5 - parent: 12 - - uid: 7872 - components: - - type: Transform - pos: 53.5,-25.5 - parent: 12 - - uid: 7873 - components: - - type: Transform - pos: 53.5,-26.5 - parent: 12 - - uid: 7874 - components: - - type: Transform - pos: 51.5,-44.5 - parent: 12 - - uid: 7875 - components: - - type: Transform - pos: 53.5,-28.5 - parent: 12 - - uid: 7876 - components: - - type: Transform - pos: 52.5,-28.5 - parent: 12 - - uid: 7877 - components: - - type: Transform - pos: 51.5,-28.5 - parent: 12 - - uid: 7878 - components: - - type: Transform - pos: 51.5,-29.5 - parent: 12 - - uid: 7879 - components: - - type: Transform - pos: 51.5,-30.5 - parent: 12 - - uid: 7880 - components: - - type: Transform - pos: 51.5,-31.5 - parent: 12 - - uid: 7881 - components: - - type: Transform - pos: 50.5,-31.5 - parent: 12 - - uid: 7882 - components: - - type: Transform - pos: 54.5,-28.5 - parent: 12 - - uid: 7883 - components: - - type: Transform - pos: 55.5,-28.5 - parent: 12 - - uid: 7884 - components: - - type: Transform - pos: 56.5,-28.5 - parent: 12 - - uid: 7885 - components: - - type: Transform - pos: 57.5,-28.5 - parent: 12 - - uid: 7886 - components: - - type: Transform - pos: 58.5,-28.5 - parent: 12 - - uid: 7887 - components: - - type: Transform - pos: 59.5,-28.5 - parent: 12 - - uid: 7888 - components: - - type: Transform - pos: 59.5,-27.5 - parent: 12 - - uid: 7890 - components: - - type: Transform - pos: 50.5,-13.5 - parent: 12 - - uid: 7891 - components: - - type: Transform - pos: 50.5,-12.5 - parent: 12 - - uid: 7892 - components: - - type: Transform - pos: 50.5,-11.5 - parent: 12 - - uid: 7893 - components: - - type: Transform - pos: 51.5,-11.5 - parent: 12 - - uid: 7894 - components: - - type: Transform - pos: 52.5,-11.5 - parent: 12 - - uid: 7895 - components: - - type: Transform - pos: 52.5,-10.5 - parent: 12 - - uid: 7896 - components: - - type: Transform - pos: 43.5,-14.5 - parent: 12 - - uid: 7897 - components: - - type: Transform - pos: 43.5,-15.5 - parent: 12 - - uid: 7898 - components: - - type: Transform - pos: 43.5,-16.5 - parent: 12 - - uid: 7903 - components: - - type: Transform - pos: 42.5,-16.5 - parent: 12 - - uid: 7905 - components: - - type: Transform - pos: 50.5,-44.5 - parent: 12 - - uid: 7906 - components: - - type: Transform - pos: 50.5,-43.5 - parent: 12 - - uid: 7907 - components: - - type: Transform - pos: 50.5,-42.5 - parent: 12 - - uid: 7908 - components: - - type: Transform - pos: 50.5,-41.5 - parent: 12 - - uid: 7909 - components: - - type: Transform - pos: 50.5,-40.5 - parent: 12 - - uid: 7910 - components: - - type: Transform - pos: 51.5,-40.5 - parent: 12 - - uid: 7911 - components: - - type: Transform - pos: 52.5,-40.5 - parent: 12 - - uid: 7912 - components: - - type: Transform - pos: 53.5,-40.5 - parent: 12 - - uid: 7913 - components: - - type: Transform - pos: 54.5,-40.5 - parent: 12 - - uid: 7914 - components: - - type: Transform - pos: 55.5,-40.5 - parent: 12 - - uid: 7915 - components: - - type: Transform - pos: 56.5,-40.5 - parent: 12 - - uid: 7916 - components: - - type: Transform - pos: 56.5,-39.5 - parent: 12 - - uid: 7917 - components: - - type: Transform - pos: 56.5,-38.5 - parent: 12 - - uid: 7918 - components: - - type: Transform - pos: 56.5,-37.5 - parent: 12 - - uid: 7919 - components: - - type: Transform - pos: 56.5,-36.5 - parent: 12 - - uid: 7920 - components: - - type: Transform - pos: 56.5,-35.5 - parent: 12 - - uid: 7921 - components: - - type: Transform - pos: 56.5,-34.5 - parent: 12 - - uid: 7922 - components: - - type: Transform - pos: 56.5,-33.5 - parent: 12 - - uid: 7923 - components: - - type: Transform - pos: 56.5,-32.5 - parent: 12 - - uid: 7924 - components: - - type: Transform - pos: 56.5,-31.5 - parent: 12 - - uid: 7925 - components: - - type: Transform - pos: 56.5,-30.5 - parent: 12 - - uid: 7926 - components: - - type: Transform - pos: 56.5,-29.5 - parent: 12 - - uid: 7927 - components: - - type: Transform - pos: 52.5,-26.5 - parent: 12 - - uid: 7928 - components: - - type: Transform - pos: 51.5,-26.5 - parent: 12 - - uid: 7929 - components: - - type: Transform - pos: 50.5,-26.5 - parent: 12 - - uid: 7930 - components: - - type: Transform - pos: 49.5,-26.5 - parent: 12 - - uid: 7931 - components: - - type: Transform - pos: 49.5,-27.5 - parent: 12 - - uid: 7932 - components: - - type: Transform - pos: 49.5,-28.5 - parent: 12 - - uid: 7933 - components: - - type: Transform - pos: 48.5,-28.5 - parent: 12 - - uid: 7934 - components: - - type: Transform - pos: 47.5,-28.5 - parent: 12 - - uid: 7935 - components: - - type: Transform - pos: 46.5,-28.5 - parent: 12 - - uid: 7936 - components: - - type: Transform - pos: 45.5,-28.5 - parent: 12 - - uid: 7937 - components: - - type: Transform - pos: 44.5,-28.5 - parent: 12 - - uid: 7938 - components: - - type: Transform - pos: 43.5,-28.5 - parent: 12 - - uid: 7939 - components: - - type: Transform - pos: 42.5,-28.5 - parent: 12 - - uid: 7940 - components: - - type: Transform - pos: 42.5,-29.5 - parent: 12 - - uid: 7941 - components: - - type: Transform - pos: 42.5,-30.5 - parent: 12 - - uid: 7942 - components: - - type: Transform - pos: 42.5,-31.5 - parent: 12 - - uid: 7943 - components: - - type: Transform - pos: 42.5,-32.5 - parent: 12 - - uid: 7944 - components: - - type: Transform - pos: 42.5,-33.5 - parent: 12 - - uid: 8046 - components: - - type: Transform - pos: 57.5,-34.5 - parent: 12 - - uid: 8047 - components: - - type: Transform - pos: 58.5,-34.5 - parent: 12 - - uid: 8048 - components: - - type: Transform - pos: 59.5,-34.5 - parent: 12 - - uid: 8049 - components: - - type: Transform - pos: 60.5,-34.5 - parent: 12 - - uid: 8050 - components: - - type: Transform - pos: 61.5,-34.5 - parent: 12 - - uid: 8051 - components: - - type: Transform - pos: 62.5,-34.5 - parent: 12 - - uid: 8052 - components: - - type: Transform - pos: 63.5,-34.5 - parent: 12 - - uid: 8053 - components: - - type: Transform - pos: 64.5,-34.5 - parent: 12 - - uid: 8054 - components: - - type: Transform - pos: 65.5,-34.5 - parent: 12 - - uid: 8055 - components: - - type: Transform - pos: 66.5,-34.5 - parent: 12 - - uid: 8056 - components: - - type: Transform - pos: 67.5,-34.5 - parent: 12 - - uid: 8057 - components: - - type: Transform - pos: 68.5,-34.5 - parent: 12 - - uid: 8058 - components: - - type: Transform - pos: 69.5,-34.5 - parent: 12 - - uid: 8059 - components: - - type: Transform - pos: 70.5,-34.5 - parent: 12 - - uid: 8060 - components: - - type: Transform - pos: 71.5,-34.5 - parent: 12 - - uid: 8061 - components: - - type: Transform - pos: 72.5,-34.5 - parent: 12 - - uid: 8062 - components: - - type: Transform - pos: 73.5,-34.5 - parent: 12 - - uid: 8063 - components: - - type: Transform - pos: 74.5,-34.5 - parent: 12 - - uid: 8064 - components: - - type: Transform - pos: 75.5,-34.5 - parent: 12 - - uid: 8065 - components: - - type: Transform - pos: 76.5,-34.5 - parent: 12 - - uid: 8066 - components: - - type: Transform - pos: 77.5,-34.5 - parent: 12 - - uid: 8067 - components: - - type: Transform - pos: 78.5,-34.5 - parent: 12 - - uid: 8068 - components: - - type: Transform - pos: 79.5,-34.5 - parent: 12 - - uid: 8069 - components: - - type: Transform - pos: 79.5,-33.5 - parent: 12 - - uid: 8225 - components: - - type: Transform - pos: -36.5,-35.5 - parent: 12 - - uid: 8805 - components: - - type: Transform - pos: 13.5,-21.5 - parent: 12 - - uid: 9002 - components: - - type: Transform - pos: 30.5,16.5 - parent: 12 - - uid: 9004 - components: - - type: Transform - pos: 54.5,9.5 - parent: 12 - - uid: 9016 - components: - - type: Transform - pos: 64.5,2.5 - parent: 12 - - uid: 9017 - components: - - type: Transform - pos: 64.5,6.5 - parent: 12 - - uid: 9070 - components: - - type: Transform - pos: 1.5,-15.5 - parent: 12 - - uid: 9076 - components: - - type: Transform - pos: 1.5,-13.5 - parent: 12 - - uid: 9127 - components: - - type: Transform - pos: 30.5,0.5 - parent: 12 - - uid: 9184 - components: - - type: Transform - pos: -23.5,-29.5 - parent: 12 - - uid: 9253 - components: - - type: Transform - pos: -39.5,70.5 - parent: 12 - - uid: 9333 - components: - - type: Transform - pos: -2.5,-15.5 - parent: 12 - - uid: 9334 - components: - - type: Transform - pos: -39.5,63.5 - parent: 12 - - uid: 9336 - components: - - type: Transform - pos: -39.5,64.5 - parent: 12 - - uid: 9337 - components: - - type: Transform - pos: -39.5,65.5 - parent: 12 - - uid: 9338 - components: - - type: Transform - pos: 24.5,-16.5 - parent: 12 - - uid: 9400 - components: - - type: Transform - pos: 20.5,5.5 - parent: 12 - - uid: 9425 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 12 - - uid: 9444 - components: - - type: Transform - pos: 61.5,-23.5 - parent: 12 - - uid: 9455 - components: - - type: Transform - pos: -39.5,66.5 - parent: 12 - - uid: 9474 - components: - - type: Transform - pos: 75.5,-2.5 - parent: 12 - - uid: 9480 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 12 - - uid: 9484 - components: - - type: Transform - pos: 54.5,8.5 - parent: 12 - - uid: 9489 - components: - - type: Transform - pos: -27.5,67.5 - parent: 12 - - uid: 9490 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 12 - - uid: 9492 - components: - - type: Transform - pos: 30.5,1.5 - parent: 12 - - uid: 9495 - components: - - type: Transform - pos: 30.5,2.5 - parent: 12 - - uid: 9497 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 12 - - uid: 9499 - components: - - type: Transform - pos: 54.5,11.5 - parent: 12 - - uid: 9505 - components: - - type: Transform - pos: -39.5,67.5 - parent: 12 - - uid: 9507 - components: - - type: Transform - pos: 16.5,12.5 - parent: 12 - - uid: 9510 - components: - - type: Transform - pos: -39.5,69.5 - parent: 12 - - uid: 9516 - components: - - type: Transform - pos: 16.5,13.5 - parent: 12 - - uid: 9523 - components: - - type: Transform - pos: -2.5,-13.5 - parent: 12 - - uid: 9584 - components: - - type: Transform - pos: 72.5,-2.5 - parent: 12 - - uid: 9615 - components: - - type: Transform - pos: 15.5,-21.5 - parent: 12 - - uid: 9628 - components: - - type: Transform - pos: 21.5,20.5 - parent: 12 - - uid: 9629 - components: - - type: Transform - pos: 30.5,3.5 - parent: 12 - - uid: 9641 - components: - - 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: 9855 - components: - - type: Transform - pos: 74.5,-2.5 - parent: 12 - - uid: 9866 - components: - - type: Transform - pos: 64.5,-1.5 - parent: 12 - - uid: 9867 - components: - - type: Transform - pos: 59.5,6.5 - parent: 12 - - uid: 9876 - components: - - type: Transform - pos: -10.5,-30.5 - parent: 12 - - uid: 9877 - components: - - type: Transform - pos: -9.5,-30.5 - parent: 12 - - uid: 9878 - components: - - type: Transform - pos: -8.5,-30.5 - parent: 12 - - uid: 9879 - components: - - type: Transform - pos: -15.5,-35.5 - parent: 12 - - uid: 9880 - components: - - type: Transform - pos: -15.5,-36.5 - parent: 12 - - uid: 9881 - components: - - type: Transform - pos: -15.5,-37.5 - parent: 12 - - uid: 9882 - components: - - type: Transform - pos: -15.5,-38.5 - parent: 12 - - uid: 9883 - components: - - type: Transform - pos: -15.5,-39.5 - parent: 12 - - uid: 9884 - components: - - type: Transform - pos: -15.5,-40.5 - parent: 12 - - uid: 9885 - components: - - type: Transform - pos: -15.5,-41.5 - parent: 12 - - uid: 9886 - components: - - type: Transform - pos: -16.5,-51.5 - parent: 12 - - uid: 9887 - components: - - type: Transform - pos: -16.5,-52.5 - parent: 12 - - uid: 9888 - components: - - type: Transform - pos: -16.5,-53.5 - parent: 12 - - uid: 9889 - components: - - type: Transform - pos: -16.5,-54.5 - parent: 12 - - uid: 9890 - components: - - type: Transform - pos: -16.5,-55.5 - parent: 12 - - uid: 9891 - components: - - type: Transform - pos: -16.5,-56.5 - parent: 12 - - uid: 9892 - components: - - type: Transform - pos: -16.5,-57.5 - parent: 12 - - uid: 9893 - components: - - type: Transform - pos: -16.5,-58.5 - parent: 12 - - uid: 9894 - components: - - type: Transform - pos: -15.5,-58.5 - parent: 12 - - uid: 9895 - components: - - type: Transform - pos: -14.5,-58.5 - parent: 12 - - uid: 9896 - components: - - type: Transform - pos: -13.5,-58.5 - parent: 12 - - uid: 9897 - components: - - type: Transform - pos: -13.5,-57.5 - parent: 12 - - uid: 9902 - components: - - type: Transform - pos: -15.5,-47.5 - parent: 12 - - uid: 9903 - components: - - type: Transform - pos: -14.5,-47.5 - parent: 12 - - uid: 9904 - components: - - type: Transform - pos: -13.5,-47.5 - parent: 12 - - uid: 9909 - components: - - type: Transform - pos: -10.5,-49.5 - parent: 12 - - uid: 9910 - components: - - type: Transform - pos: -10.5,-50.5 - parent: 12 - - uid: 9911 - components: - - type: Transform - pos: -10.5,-51.5 - parent: 12 - - uid: 9912 - components: - - type: Transform - pos: -10.5,-52.5 - parent: 12 - - uid: 9913 - components: - - type: Transform - pos: -9.5,-52.5 - parent: 12 - - uid: 9914 - components: - - type: Transform - pos: -9.5,-53.5 - parent: 12 - - uid: 9938 - components: - - type: Transform - pos: -8.5,-40.5 - parent: 12 - - uid: 9939 - components: - - type: Transform - pos: -7.5,-35.5 - parent: 12 - - uid: 9940 - components: - - type: Transform - pos: -7.5,-36.5 - parent: 12 - - uid: 9941 - components: - - type: Transform - pos: -7.5,-37.5 - parent: 12 - - uid: 9942 - components: - - type: Transform - pos: -7.5,-38.5 - parent: 12 - - uid: 9943 - components: - - type: Transform - pos: -7.5,-39.5 - parent: 12 - - uid: 9944 - components: - - type: Transform - pos: -7.5,-40.5 - parent: 12 - - uid: 9945 - components: - - type: Transform - pos: -9.5,-49.5 - parent: 12 - - uid: 9946 - components: - - type: Transform - pos: -8.5,-49.5 - parent: 12 - - uid: 9947 - components: - - type: Transform - pos: -7.5,-49.5 - parent: 12 - - uid: 9948 - components: - - type: Transform - pos: -6.5,-49.5 - parent: 12 - - uid: 9949 - components: - - type: Transform - pos: -5.5,-49.5 - parent: 12 - - uid: 9950 - components: - - type: Transform - pos: -4.5,-49.5 - parent: 12 - - uid: 9951 - components: - - type: Transform - pos: -3.5,-49.5 - parent: 12 - - uid: 9952 - components: - - type: Transform - pos: -2.5,-49.5 - parent: 12 - - uid: 9953 - components: - - type: Transform - pos: -1.5,-49.5 - parent: 12 - - uid: 9954 - components: - - type: Transform - pos: -0.5,-49.5 - parent: 12 - - uid: 9965 - components: - - type: Transform - pos: -1.5,-35.5 - parent: 12 - - uid: 9966 - components: - - type: Transform - pos: -1.5,-34.5 - parent: 12 - - uid: 9967 - components: - - type: Transform - pos: -1.5,-33.5 - parent: 12 - - uid: 10020 - components: - - type: Transform - pos: -0.5,-16.5 - parent: 12 - - uid: 10022 - components: - - type: Transform - pos: 56.5,5.5 - parent: 12 - - uid: 10023 - components: - - type: Transform - pos: 57.5,1.5 - parent: 12 - - uid: 10024 - components: - - type: Transform - pos: 58.5,5.5 - parent: 12 - - uid: 10025 - components: - - type: Transform - pos: 58.5,6.5 - parent: 12 - - uid: 10074 - components: - - type: Transform - pos: -0.5,-17.5 - parent: 12 - - uid: 10075 - components: - - type: Transform - pos: -0.5,-18.5 - parent: 12 - - uid: 10196 - components: - - type: Transform - pos: -55.5,15.5 - parent: 12 - - uid: 10197 - components: - - type: Transform - pos: -55.5,14.5 - parent: 12 - - uid: 10198 - components: - - type: Transform - pos: -55.5,13.5 - parent: 12 - - uid: 10259 - components: - - type: Transform - pos: -54.5,13.5 - parent: 12 - - uid: 10307 - components: - - type: Transform - pos: -1.5,-14.5 - parent: 12 - - uid: 10310 - components: - - type: Transform - pos: -46.5,51.5 - parent: 12 - - uid: 10323 - components: - - type: Transform - pos: 73.5,-2.5 - parent: 12 - - uid: 10377 - components: - - type: Transform - pos: 26.5,-19.5 - parent: 12 - - uid: 10482 - components: - - type: Transform - pos: -34.5,-11.5 - parent: 12 - - uid: 10483 - components: - - type: Transform - pos: -34.5,-10.5 - parent: 12 - - uid: 10484 - components: - - type: Transform - pos: -33.5,-10.5 - parent: 12 - - uid: 10485 - components: - - type: Transform - pos: -32.5,-10.5 - parent: 12 - - uid: 10486 - components: - - type: Transform - pos: -31.5,-10.5 - parent: 12 - - uid: 10487 - components: - - type: Transform - pos: -30.5,-10.5 - parent: 12 - - uid: 10488 - components: - - type: Transform - pos: -29.5,-10.5 - parent: 12 - - uid: 10489 - components: - - type: Transform - pos: -28.5,-10.5 - parent: 12 - - uid: 10490 - components: - - type: Transform - pos: -27.5,-10.5 - parent: 12 - - uid: 10491 - components: - - type: Transform - pos: -27.5,-9.5 - parent: 12 - - uid: 10492 - components: - - type: Transform - pos: -27.5,-8.5 - parent: 12 - - uid: 10493 - components: - - type: Transform - pos: -27.5,-7.5 - parent: 12 - - uid: 10494 - components: - - type: Transform - pos: -27.5,-6.5 - parent: 12 - - uid: 10495 - components: - - type: Transform - pos: -26.5,-6.5 - parent: 12 - - uid: 10496 - components: - - type: Transform - pos: -25.5,-6.5 - parent: 12 - - uid: 10497 - components: - - type: Transform - pos: -24.5,-6.5 - parent: 12 - - uid: 10498 - components: - - type: Transform - pos: -23.5,-6.5 - parent: 12 - - uid: 10499 - components: - - type: Transform - pos: -22.5,-6.5 - parent: 12 - - uid: 10500 - components: - - type: Transform - pos: -21.5,-6.5 - parent: 12 - - uid: 10501 - components: - - type: Transform - pos: -20.5,-6.5 - parent: 12 - - uid: 10502 - components: - - type: Transform - pos: -19.5,-6.5 - parent: 12 - - uid: 10503 - components: - - type: Transform - pos: -19.5,-5.5 - parent: 12 - - uid: 10504 - components: - - type: Transform - pos: -18.5,-5.5 - parent: 12 - - uid: 10505 - components: - - type: Transform - pos: -17.5,-5.5 - parent: 12 - - uid: 10506 - components: - - type: Transform - pos: -16.5,-5.5 - parent: 12 - - uid: 10507 - components: - - type: Transform - pos: -15.5,-5.5 - parent: 12 - - uid: 10508 - components: - - type: Transform - pos: -15.5,-4.5 - parent: 12 - - uid: 10514 - components: - - type: Transform - pos: -2.5,-14.5 - parent: 12 - - uid: 10550 - components: - - type: Transform - pos: 64.5,-23.5 - parent: 12 - - uid: 10606 - components: - - type: Transform - pos: -6.5,27.5 - parent: 12 - - uid: 10624 - components: - - type: Transform - pos: 61.5,6.5 - parent: 12 - - uid: 10638 - components: - - type: Transform - pos: -6.5,28.5 - parent: 12 - - uid: 10655 - components: - - type: Transform - pos: 19.5,-21.5 - parent: 12 - - uid: 10668 - components: - - type: Transform - pos: -6.5,29.5 - parent: 12 - - uid: 10715 - components: - - type: Transform - pos: -6.5,30.5 - parent: 12 - - uid: 10919 - components: - - type: Transform - pos: -0.5,0.5 - parent: 12 - - uid: 10927 - components: - - type: Transform - pos: 57.5,8.5 - parent: 12 - - uid: 10940 - components: - - type: Transform - pos: 28.5,5.5 - parent: 12 - - uid: 10952 - components: - - type: Transform - pos: 27.5,5.5 - parent: 12 - - uid: 10956 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 12 - - uid: 10983 - components: - - type: Transform - pos: 29.5,5.5 - parent: 12 - - uid: 10986 - components: - - type: Transform - pos: 30.5,5.5 - parent: 12 - - uid: 11034 - components: - - type: Transform - pos: -47.5,15.5 - parent: 12 - - uid: 11226 - components: - - type: Transform - pos: 58.5,-0.5 - parent: 12 - - uid: 11331 - components: - - type: Transform - pos: 54.5,10.5 - parent: 12 - - uid: 11359 - components: - - type: Transform - pos: 32.5,15.5 - parent: 12 - - uid: 11371 - components: - - type: Transform - pos: 18.5,-21.5 - parent: 12 - - uid: 11383 - components: - - type: Transform - pos: 36.5,-4.5 - parent: 12 - - uid: 11387 - components: - - type: Transform - pos: 21.5,4.5 - parent: 12 - - uid: 11454 - components: - - type: Transform - pos: -9.5,-22.5 - parent: 12 - - uid: 11468 - components: - - type: Transform - pos: 26.5,-20.5 - parent: 12 - - uid: 11483 - components: - - type: Transform - pos: -46.5,53.5 - parent: 12 - - uid: 11487 - components: - - type: Transform - pos: -47.5,68.5 - parent: 12 - - uid: 11517 - components: - - type: Transform - pos: 36.5,18.5 - parent: 12 - - uid: 11525 - components: - - type: Transform - pos: -9.5,-19.5 - parent: 12 - - uid: 11574 - components: - - type: Transform - pos: 4.5,-15.5 - parent: 12 - - uid: 11932 - components: - - type: Transform - pos: -23.5,-24.5 - parent: 12 - - uid: 12014 - components: - - type: Transform - pos: 31.5,15.5 - parent: 12 - - uid: 12056 - components: - - type: Transform - pos: -0.5,5.5 - parent: 12 - - uid: 12142 - components: - - type: Transform - pos: 37.5,18.5 - parent: 12 - - uid: 12237 - components: - - type: Transform - pos: 53.5,-0.5 - parent: 12 - - uid: 12238 - components: - - type: Transform - pos: 52.5,-0.5 - parent: 12 - - uid: 12292 - components: - - type: Transform - pos: 39.5,17.5 - parent: 12 - - uid: 12346 - components: - - type: Transform - pos: 21.5,24.5 - parent: 12 - - uid: 12347 - components: - - type: Transform - pos: 22.5,24.5 - parent: 12 - - uid: 12348 - components: - - type: Transform - pos: 22.5,25.5 - parent: 12 - - uid: 12349 - components: - - type: Transform - pos: 21.5,23.5 - parent: 12 - - uid: 12350 - components: - - type: Transform - pos: 21.5,22.5 - parent: 12 - - uid: 12351 - components: - - type: Transform - pos: 21.5,21.5 - parent: 12 - - uid: 12355 - components: - - type: Transform - pos: 21.5,19.5 - parent: 12 - - uid: 12359 - components: - - type: Transform - pos: 21.5,18.5 - parent: 12 - - uid: 12360 - components: - - type: Transform - pos: 21.5,17.5 - parent: 12 - - uid: 12361 - components: - - type: Transform - pos: 22.5,17.5 - parent: 12 - - uid: 12362 - components: - - type: Transform - pos: 23.5,17.5 - parent: 12 - - uid: 12363 - components: - - type: Transform - pos: 24.5,17.5 - parent: 12 - - uid: 12364 - components: - - type: Transform - pos: 25.5,17.5 - parent: 12 - - uid: 12365 - components: - - type: Transform - pos: 26.5,17.5 - parent: 12 - - uid: 12366 - components: - - type: Transform - pos: 27.5,17.5 - parent: 12 - - uid: 12367 - components: - - type: Transform - pos: 28.5,17.5 - parent: 12 - - uid: 12368 - components: - - type: Transform - pos: 29.5,17.5 - parent: 12 - - uid: 12369 - components: - - type: Transform - pos: 30.5,17.5 - parent: 12 - - uid: 12371 - components: - - type: Transform - pos: 32.5,17.5 - parent: 12 - - uid: 12372 - components: - - type: Transform - pos: 32.5,18.5 - parent: 12 - - uid: 12373 - components: - - type: Transform - pos: 32.5,19.5 - parent: 12 - - uid: 12374 - components: - - type: Transform - pos: 32.5,20.5 - parent: 12 - - uid: 12375 - components: - - type: Transform - pos: 32.5,21.5 - parent: 12 - - uid: 12376 - components: - - type: Transform - pos: 32.5,22.5 - parent: 12 - - uid: 12377 - components: - - type: Transform - pos: 32.5,23.5 - parent: 12 - - uid: 12378 - components: - - type: Transform - pos: 33.5,23.5 - parent: 12 - - uid: 12379 - components: - - type: Transform - pos: 34.5,23.5 - parent: 12 - - uid: 12380 - components: - - type: Transform - pos: 35.5,23.5 - parent: 12 - - uid: 12381 - components: - - type: Transform - pos: 36.5,23.5 - parent: 12 - - uid: 12382 - components: - - type: Transform - pos: 37.5,23.5 - parent: 12 - - uid: 12383 - components: - - type: Transform - pos: 38.5,23.5 - parent: 12 - - uid: 12384 - components: - - type: Transform - pos: 39.5,23.5 - parent: 12 - - uid: 12385 - components: - - type: Transform - pos: 39.5,22.5 - parent: 12 - - uid: 12386 - components: - - type: Transform - pos: 39.5,21.5 - parent: 12 - - uid: 12387 - components: - - type: Transform - pos: 39.5,20.5 - parent: 12 - - uid: 12388 - components: - - type: Transform - pos: 39.5,19.5 - parent: 12 - - uid: 12389 - components: - - type: Transform - pos: 38.5,19.5 - parent: 12 - - uid: 12390 - components: - - type: Transform - pos: 37.5,19.5 - parent: 12 - - uid: 12412 - components: - - type: Transform - pos: 34.5,24.5 - parent: 12 - - uid: 12413 - components: - - type: Transform - pos: 34.5,25.5 - parent: 12 - - uid: 12414 - components: - - type: Transform - pos: 34.5,26.5 - parent: 12 - - uid: 12415 - components: - - type: Transform - pos: 34.5,27.5 - parent: 12 - - uid: 12416 - components: - - type: Transform - pos: 34.5,28.5 - parent: 12 - - uid: 12417 - components: - - type: Transform - pos: 34.5,29.5 - parent: 12 - - uid: 12418 - components: - - type: Transform - pos: 33.5,29.5 - parent: 12 - - uid: 12419 - components: - - type: Transform - pos: 32.5,29.5 - parent: 12 - - uid: 12420 - components: - - type: Transform - pos: 32.5,28.5 - parent: 12 - - uid: 12421 - components: - - type: Transform - pos: 32.5,27.5 - parent: 12 - - uid: 12422 - components: - - type: Transform - pos: 32.5,26.5 - parent: 12 - - uid: 12424 - components: - - type: Transform - pos: 43.5,25.5 - parent: 12 - - uid: 12535 - components: - - type: Transform - pos: 41.5,-11.5 - parent: 12 - - uid: 12623 - components: - - type: Transform - pos: 50.5,25.5 - parent: 12 - - uid: 12856 - components: - - type: Transform - pos: -21.5,-24.5 - parent: 12 - - uid: 12911 - components: - - type: Transform - pos: -22.5,-24.5 - parent: 12 - - uid: 12916 - components: - - type: Transform - pos: 57.5,7.5 - parent: 12 - - uid: 12920 - components: - - type: Transform - pos: 65.5,8.5 - parent: 12 - - uid: 13043 - components: - - type: Transform - pos: -34.5,61.5 - parent: 12 - - uid: 13077 - components: - - type: Transform - pos: 51.5,25.5 - parent: 12 - - uid: 13078 - components: - - type: Transform - pos: 42.5,25.5 - parent: 12 - - uid: 13079 - components: - - type: Transform - pos: 38.5,26.5 - parent: 12 - - uid: 13114 - components: - - type: Transform - pos: 49.5,25.5 - parent: 12 - - uid: 13167 - components: - - type: Transform - pos: 44.5,25.5 - parent: 12 - - uid: 13174 - components: - - type: Transform - pos: 51.5,27.5 - parent: 12 - - uid: 13221 - components: - - type: Transform - pos: 46.5,25.5 - parent: 12 - - uid: 13248 - components: - - type: Transform - pos: 51.5,26.5 - parent: 12 - - uid: 13249 - components: - - type: Transform - pos: 41.5,25.5 - parent: 12 - - uid: 13267 - components: - - type: Transform - pos: 38.5,25.5 - parent: 12 - - uid: 13277 - components: - - type: Transform - pos: 40.5,25.5 - parent: 12 - - uid: 13289 - components: - - type: Transform - pos: 38.5,27.5 - parent: 12 - - uid: 13294 - components: - - type: Transform - pos: 48.5,25.5 - parent: 12 - - uid: 13296 - components: - - type: Transform - pos: 45.5,25.5 - parent: 12 - - uid: 13299 - components: - - type: Transform - pos: 47.5,25.5 - parent: 12 - - uid: 13301 - components: - - type: Transform - pos: 39.5,25.5 - parent: 12 - - uid: 13363 - components: - - type: Transform - pos: 38.5,28.5 - parent: 12 - - uid: 13364 - components: - - type: Transform - pos: 38.5,29.5 - parent: 12 - - uid: 13365 - components: - - type: Transform - pos: 39.5,29.5 - parent: 12 - - uid: 13366 - components: - - type: Transform - pos: 40.5,29.5 - parent: 12 - - uid: 13367 - components: - - type: Transform - pos: 41.5,29.5 - parent: 12 - - uid: 13368 - components: - - type: Transform - pos: 42.5,29.5 - parent: 12 - - uid: 13369 - components: - - type: Transform - pos: 43.5,29.5 - parent: 12 - - uid: 13370 - components: - - type: Transform - pos: 43.5,30.5 - parent: 12 - - uid: 13371 - components: - - type: Transform - pos: 43.5,31.5 - parent: 12 - - uid: 13372 - components: - - type: Transform - pos: 43.5,32.5 - parent: 12 - - uid: 13373 - components: - - type: Transform - pos: 43.5,33.5 - parent: 12 - - uid: 13374 - components: - - type: Transform - pos: 44.5,33.5 - parent: 12 - - uid: 13375 - components: - - type: Transform - pos: 45.5,33.5 - parent: 12 - - uid: 13376 - components: - - type: Transform - pos: 46.5,33.5 - parent: 12 - - uid: 13377 - components: - - type: Transform - pos: 47.5,33.5 - parent: 12 - - uid: 13378 - components: - - type: Transform - pos: 48.5,33.5 - parent: 12 - - uid: 13379 - components: - - type: Transform - pos: 49.5,33.5 - parent: 12 - - uid: 13380 - components: - - type: Transform - pos: 50.5,33.5 - parent: 12 - - uid: 13381 - components: - - type: Transform - pos: 51.5,33.5 - parent: 12 - - uid: 13382 - components: - - type: Transform - pos: 52.5,33.5 - parent: 12 - - uid: 13383 - components: - - type: Transform - pos: 53.5,33.5 - parent: 12 - - uid: 13384 - components: - - type: Transform - pos: 54.5,33.5 - parent: 12 - - uid: 13385 - components: - - type: Transform - pos: 54.5,32.5 - parent: 12 - - uid: 13386 - components: - - type: Transform - pos: 54.5,31.5 - parent: 12 - - uid: 13387 - components: - - type: Transform - pos: 54.5,30.5 - parent: 12 - - uid: 13388 - components: - - type: Transform - pos: 54.5,29.5 - parent: 12 - - uid: 13389 - components: - - type: Transform - pos: 54.5,28.5 - parent: 12 - - uid: 13390 - components: - - type: Transform - pos: 53.5,28.5 - parent: 12 - - uid: 13391 - components: - - type: Transform - pos: 52.5,28.5 - parent: 12 - - uid: 13555 - components: - - type: Transform - pos: 43.5,26.5 - parent: 12 - - uid: 13627 - components: - - type: Transform - pos: 32.5,24.5 - parent: 12 - - uid: 13628 - components: - - type: Transform - pos: 32.5,25.5 - parent: 12 - - uid: 13760 - components: - - type: Transform - pos: 43.5,34.5 - parent: 12 - - uid: 13761 - components: - - type: Transform - pos: 43.5,35.5 - parent: 12 - - uid: 13762 - components: - - type: Transform - pos: 43.5,36.5 - parent: 12 - - uid: 13763 - components: - - type: Transform - pos: 43.5,37.5 - parent: 12 - - uid: 13764 - components: - - type: Transform - pos: 43.5,38.5 - parent: 12 - - uid: 13765 - components: - - type: Transform - pos: 43.5,39.5 - parent: 12 - - uid: 13766 - components: - - type: Transform - pos: 42.5,39.5 - parent: 12 - - uid: 13767 - components: - - type: Transform - pos: 42.5,40.5 - parent: 12 - - uid: 13768 - components: - - type: Transform - pos: 42.5,41.5 - parent: 12 - - uid: 13769 - components: - - type: Transform - pos: 41.5,41.5 - parent: 12 - - uid: 13770 - components: - - type: Transform - pos: 40.5,41.5 - parent: 12 - - uid: 13771 - components: - - type: Transform - pos: 39.5,41.5 - parent: 12 - - uid: 13772 - components: - - type: Transform - pos: 38.5,41.5 - parent: 12 - - uid: 13773 - components: - - type: Transform - pos: 37.5,41.5 - parent: 12 - - uid: 13774 - components: - - type: Transform - pos: 36.5,41.5 - parent: 12 - - uid: 13775 - components: - - type: Transform - pos: 35.5,41.5 - parent: 12 - - uid: 13776 - components: - - type: Transform - pos: 34.5,41.5 - parent: 12 - - uid: 13777 - components: - - type: Transform - pos: 33.5,41.5 - parent: 12 - - uid: 13778 - components: - - type: Transform - pos: 32.5,41.5 - parent: 12 - - uid: 13779 - components: - - type: Transform - pos: 31.5,41.5 - parent: 12 - - uid: 13780 - components: - - type: Transform - pos: 30.5,41.5 - parent: 12 - - uid: 13781 - components: - - type: Transform - pos: 29.5,41.5 - parent: 12 - - uid: 13782 - components: - - type: Transform - pos: 29.5,40.5 - parent: 12 - - uid: 13783 - components: - - type: Transform - pos: 29.5,39.5 - parent: 12 - - uid: 13784 - components: - - type: Transform - pos: 29.5,38.5 - parent: 12 - - uid: 13785 - components: - - type: Transform - pos: 28.5,38.5 - parent: 12 - - uid: 13786 - components: - - type: Transform - pos: 27.5,38.5 - parent: 12 - - uid: 13874 - components: - - type: Transform - pos: 56.5,63.5 - parent: 12 - - uid: 14007 - components: - - type: Transform - pos: -15.5,5.5 - parent: 12 - - uid: 14014 - components: - - type: Transform - pos: -15.5,4.5 - parent: 12 - - uid: 14015 - components: - - type: Transform - pos: -15.5,3.5 - parent: 12 - - uid: 14016 - components: - - type: Transform - pos: -15.5,2.5 - parent: 12 - - uid: 14017 - components: - - type: Transform - pos: -15.5,1.5 - parent: 12 - - uid: 14018 - components: - - type: Transform - pos: -15.5,0.5 - parent: 12 - - uid: 14173 - components: - - type: Transform - pos: -15.5,-0.5 - parent: 12 - - uid: 14174 - components: - - type: Transform - pos: -15.5,-1.5 - parent: 12 - - uid: 14177 - components: - - type: Transform - pos: -15.5,-2.5 - parent: 12 - - uid: 14178 - components: - - type: Transform - pos: -15.5,-3.5 - parent: 12 - - uid: 14251 - components: - - type: Transform - pos: -18.5,-24.5 - parent: 12 - - uid: 14253 - components: - - type: Transform - pos: -19.5,-24.5 - parent: 12 - - uid: 14255 - components: - - type: Transform - pos: -20.5,-24.5 - parent: 12 - - uid: 14583 - components: - - type: Transform - pos: 55.5,63.5 - parent: 12 - - uid: 14979 - components: - - type: Transform - pos: -10.5,-19.5 - parent: 12 - - uid: 15187 - components: - - type: Transform - pos: 42.5,42.5 - parent: 12 - - uid: 15188 - components: - - type: Transform - pos: 42.5,43.5 - parent: 12 - - uid: 15189 - components: - - type: Transform - pos: 42.5,44.5 - parent: 12 - - uid: 15190 - components: - - type: Transform - pos: 43.5,44.5 - parent: 12 - - uid: 15191 - components: - - type: Transform - pos: 44.5,44.5 - parent: 12 - - uid: 15192 - components: - - type: Transform - pos: 45.5,44.5 - parent: 12 - - uid: 15193 - components: - - type: Transform - pos: 46.5,44.5 - parent: 12 - - uid: 15194 - components: - - type: Transform - pos: 47.5,44.5 - parent: 12 - - uid: 15195 - components: - - type: Transform - pos: 48.5,44.5 - parent: 12 - - uid: 15196 - components: - - type: Transform - pos: 49.5,44.5 - parent: 12 - - uid: 15197 - components: - - type: Transform - pos: 50.5,44.5 - parent: 12 - - uid: 15198 - components: - - type: Transform - pos: 24.5,51.5 - parent: 12 - - uid: 15199 - components: - - type: Transform - pos: 23.5,51.5 - parent: 12 - - uid: 15200 - components: - - type: Transform - pos: 23.5,50.5 - parent: 12 - - uid: 15201 - components: - - type: Transform - pos: 23.5,49.5 - parent: 12 - - uid: 15202 - components: - - type: Transform - pos: 22.5,49.5 - parent: 12 - - uid: 15203 - components: - - type: Transform - pos: 21.5,49.5 - parent: 12 - - uid: 15204 - components: - - type: Transform - pos: 20.5,49.5 - parent: 12 - - uid: 15205 - components: - - type: Transform - pos: 19.5,49.5 - parent: 12 - - uid: 15206 - components: - - type: Transform - pos: 18.5,49.5 - parent: 12 - - uid: 15207 - components: - - type: Transform - pos: 18.5,50.5 - parent: 12 - - uid: 15208 - components: - - type: Transform - pos: 18.5,51.5 - parent: 12 - - uid: 15209 - components: - - type: Transform - pos: 18.5,52.5 - parent: 12 - - uid: 15210 - components: - - type: Transform - pos: 18.5,53.5 - parent: 12 - - uid: 15211 - components: - - type: Transform - pos: 18.5,54.5 - parent: 12 - - uid: 15212 - components: - - type: Transform - pos: 19.5,54.5 - parent: 12 - - uid: 15213 - components: - - type: Transform - pos: 19.5,55.5 - parent: 12 - - uid: 15214 - components: - - type: Transform - pos: 19.5,56.5 - parent: 12 - - uid: 15215 - components: - - type: Transform - pos: 19.5,57.5 - parent: 12 - - uid: 15216 - components: - - type: Transform - pos: 19.5,58.5 - parent: 12 - - uid: 15217 - components: - - type: Transform - pos: 19.5,59.5 - parent: 12 - - uid: 15218 - components: - - type: Transform - pos: 19.5,60.5 - parent: 12 - - uid: 15219 - components: - - type: Transform - pos: 19.5,61.5 - parent: 12 - - uid: 15220 - components: - - type: Transform - pos: 19.5,62.5 - parent: 12 - - uid: 15221 - components: - - type: Transform - pos: 20.5,62.5 - parent: 12 - - uid: 15222 - components: - - type: Transform - pos: 21.5,62.5 - parent: 12 - - uid: 15223 - components: - - type: Transform - pos: 22.5,62.5 - parent: 12 - - uid: 15224 - components: - - type: Transform - pos: 23.5,62.5 - parent: 12 - - uid: 15225 - components: - - type: Transform - pos: 24.5,62.5 - parent: 12 - - uid: 15226 - components: - - type: Transform - pos: 25.5,62.5 - parent: 12 - - uid: 15227 - components: - - type: Transform - pos: 26.5,62.5 - parent: 12 - - uid: 15228 - components: - - type: Transform - pos: 27.5,62.5 - parent: 12 - - uid: 15229 - components: - - type: Transform - pos: 28.5,62.5 - parent: 12 - - uid: 15230 - components: - - type: Transform - pos: 29.5,62.5 - parent: 12 - - uid: 15231 - components: - - type: Transform - pos: 30.5,62.5 - parent: 12 - - uid: 15232 - components: - - type: Transform - pos: 31.5,62.5 - parent: 12 - - uid: 15233 - components: - - type: Transform - pos: 32.5,62.5 - parent: 12 - - uid: 15234 - components: - - type: Transform - pos: 33.5,62.5 - parent: 12 - - uid: 15235 - components: - - type: Transform - pos: 34.5,62.5 - parent: 12 - - uid: 15236 - components: - - type: Transform - pos: 35.5,62.5 - parent: 12 - - uid: 15237 - components: - - type: Transform - pos: 35.5,63.5 - parent: 12 - - uid: 15238 - components: - - type: Transform - pos: 35.5,64.5 - parent: 12 - - uid: 15239 - components: - - type: Transform - pos: 35.5,65.5 - parent: 12 - - uid: 15240 - components: - - type: Transform - pos: 35.5,66.5 - parent: 12 - - uid: 15241 - components: - - type: Transform - pos: 36.5,66.5 - parent: 12 - - uid: 15244 - components: - - type: Transform - pos: 19.5,48.5 - parent: 12 - - uid: 15245 - components: - - type: Transform - pos: 19.5,47.5 - parent: 12 - - uid: 15246 - components: - - type: Transform - pos: 19.5,46.5 - parent: 12 - - uid: 15247 - components: - - type: Transform - pos: 19.5,45.5 - parent: 12 - - uid: 15248 - components: - - type: Transform - pos: 19.5,44.5 - parent: 12 - - uid: 15249 - components: - - type: Transform - pos: 19.5,43.5 - parent: 12 - - uid: 15250 - components: - - type: Transform - pos: 19.5,42.5 - parent: 12 - - uid: 15251 - components: - - type: Transform - pos: 20.5,42.5 - parent: 12 - - uid: 15253 - components: - - type: Transform - pos: 22.5,42.5 - parent: 12 - - uid: 15254 - components: - - type: Transform - pos: 23.5,42.5 - parent: 12 - - uid: 15255 - components: - - type: Transform - pos: 24.5,42.5 - parent: 12 - - uid: 15256 - components: - - type: Transform - pos: 25.5,42.5 - parent: 12 - - uid: 15257 - components: - - type: Transform - pos: 26.5,42.5 - parent: 12 - - uid: 15258 - components: - - type: Transform - pos: 27.5,42.5 - parent: 12 - - uid: 15259 - components: - - type: Transform - pos: 28.5,42.5 - parent: 12 - - uid: 15260 - components: - - type: Transform - pos: 28.5,43.5 - parent: 12 - - uid: 15261 - components: - - type: Transform - pos: 29.5,43.5 - parent: 12 - - uid: 15262 - components: - - type: Transform - pos: 30.5,43.5 - parent: 12 - - uid: 15263 - components: - - type: Transform - pos: 31.5,43.5 - parent: 12 - - uid: 15264 - components: - - type: Transform - pos: 32.5,43.5 - parent: 12 - - uid: 15265 - components: - - type: Transform - pos: 32.5,44.5 - parent: 12 - - uid: 15266 - components: - - type: Transform - pos: 32.5,45.5 - parent: 12 - - uid: 15267 - components: - - type: Transform - pos: 32.5,46.5 - parent: 12 - - uid: 15268 - components: - - type: Transform - pos: 32.5,47.5 - parent: 12 - - uid: 15269 - components: - - type: Transform - pos: 32.5,48.5 - parent: 12 - - uid: 15270 - components: - - type: Transform - pos: 33.5,47.5 - parent: 12 - - uid: 15271 - components: - - type: Transform - pos: 34.5,47.5 - parent: 12 - - uid: 15272 - components: - - type: Transform - pos: 34.5,48.5 - parent: 12 - - uid: 15273 - components: - - type: Transform - pos: 34.5,49.5 - parent: 12 - - uid: 15274 - components: - - type: Transform - pos: 34.5,50.5 - parent: 12 - - uid: 15275 - components: - - type: Transform - pos: 34.5,51.5 - parent: 12 - - uid: 15276 - components: - - type: Transform - pos: 34.5,52.5 - parent: 12 - - uid: 15277 - components: - - type: Transform - pos: 34.5,53.5 - parent: 12 - - uid: 15278 - components: - - type: Transform - pos: 34.5,54.5 - parent: 12 - - uid: 15279 - components: - - type: Transform - pos: 34.5,55.5 - parent: 12 - - uid: 15280 - components: - - type: Transform - pos: 34.5,56.5 - parent: 12 - - uid: 15281 - components: - - type: Transform - pos: 34.5,57.5 - parent: 12 - - uid: 15282 - components: - - type: Transform - pos: 25.5,51.5 - parent: 12 - - uid: 15283 - components: - - type: Transform - pos: 35.5,58.5 - parent: 12 - - uid: 15284 - components: - - type: Transform - pos: 19.5,63.5 - parent: 12 - - uid: 15285 - components: - - type: Transform - pos: 19.5,64.5 - parent: 12 - - uid: 15286 - components: - - type: Transform - pos: 19.5,65.5 - parent: 12 - - uid: 15287 - components: - - type: Transform - pos: 19.5,66.5 - parent: 12 - - uid: 15288 - components: - - type: Transform - pos: 19.5,67.5 - parent: 12 - - uid: 15289 - components: - - type: Transform - pos: 19.5,68.5 - parent: 12 - - uid: 15290 - components: - - type: Transform - pos: 20.5,68.5 - parent: 12 - - uid: 15291 - components: - - type: Transform - pos: 21.5,68.5 - parent: 12 - - uid: 15292 - components: - - type: Transform - pos: 22.5,68.5 - parent: 12 - - uid: 15293 - components: - - type: Transform - pos: 23.5,68.5 - parent: 12 - - uid: 15294 - components: - - type: Transform - pos: 24.5,68.5 - parent: 12 - - uid: 15295 - components: - - type: Transform - pos: 24.5,69.5 - parent: 12 - - uid: 15296 - components: - - type: Transform - pos: 24.5,70.5 - parent: 12 - - uid: 15297 - components: - - type: Transform - pos: 25.5,70.5 - parent: 12 - - uid: 15298 - components: - - type: Transform - pos: 26.5,70.5 - parent: 12 - - uid: 15355 - components: - - type: Transform - pos: -10.5,-22.5 - parent: 12 - - uid: 15358 - components: - - type: Transform - pos: 34.5,61.5 - parent: 12 - - uid: 15359 - components: - - type: Transform - pos: 34.5,60.5 - parent: 12 - - uid: 15360 - components: - - type: Transform - pos: 34.5,59.5 - parent: 12 - - uid: 15361 - components: - - type: Transform - pos: 34.5,58.5 - parent: 12 - - uid: 15362 - components: - - type: Transform - pos: 26.5,51.5 - parent: 12 - - uid: 15363 - components: - - type: Transform - pos: 26.5,50.5 - parent: 12 - - uid: 15364 - components: - - type: Transform - pos: 27.5,50.5 - parent: 12 - - uid: 15365 - components: - - type: Transform - pos: 28.5,50.5 - parent: 12 - - uid: 15366 - components: - - type: Transform - pos: 29.5,50.5 - parent: 12 - - uid: 15367 - components: - - type: Transform - pos: 30.5,50.5 - parent: 12 - - uid: 15368 - components: - - type: Transform - pos: 31.5,50.5 - parent: 12 - - uid: 15369 - components: - - type: Transform - pos: 32.5,50.5 - parent: 12 - - uid: 15370 - components: - - type: Transform - pos: 33.5,50.5 - parent: 12 - - uid: 15372 - components: - - type: Transform - pos: 20.5,59.5 - parent: 12 - - uid: 15373 - components: - - type: Transform - pos: 20.5,56.5 - parent: 12 - - uid: 15374 - components: - - type: Transform - pos: 21.5,59.5 - parent: 12 - - uid: 15375 - components: - - type: Transform - pos: 21.5,58.5 - parent: 12 - - uid: 15376 - components: - - type: Transform - pos: 21.5,57.5 - parent: 12 - - uid: 15377 - components: - - type: Transform - pos: 21.5,56.5 - parent: 12 - - uid: 15378 - components: - - type: Transform - pos: 22.5,58.5 - parent: 12 - - uid: 15379 - components: - - type: Transform - pos: 23.5,58.5 - parent: 12 - - uid: 15380 - components: - - type: Transform - pos: 24.5,58.5 - parent: 12 - - uid: 15381 - components: - - type: Transform - pos: 23.5,57.5 - parent: 12 - - uid: 15382 - components: - - type: Transform - pos: 23.5,56.5 - parent: 12 - - uid: 15383 - components: - - type: Transform - pos: 23.5,55.5 - parent: 12 - - uid: 15853 - components: - - type: Transform - pos: 1.5,-14.5 - parent: 12 - - uid: 16000 - components: - - type: Transform - pos: -22.5,-29.5 - parent: 12 - - uid: 16095 - components: - - type: Transform - pos: -26.5,1.5 - parent: 12 - - uid: 16096 - components: - - type: Transform - pos: -26.5,2.5 - parent: 12 - - uid: 16097 - components: - - type: Transform - pos: -26.5,3.5 - parent: 12 - - uid: 16098 - components: - - type: Transform - pos: -26.5,4.5 - parent: 12 - - uid: 16099 - components: - - type: Transform - pos: -26.5,5.5 - parent: 12 - - uid: 16100 - components: - - type: Transform - pos: -26.5,6.5 - parent: 12 - - uid: 16101 - components: - - type: Transform - pos: -26.5,7.5 - parent: 12 - - uid: 16102 - components: - - type: Transform - pos: -26.5,8.5 - parent: 12 - - uid: 16103 - components: - - type: Transform - pos: -26.5,9.5 - parent: 12 - - uid: 16104 - components: - - type: Transform - pos: -25.5,9.5 - parent: 12 - - uid: 16105 - components: - - type: Transform - pos: -24.5,9.5 - parent: 12 - - uid: 16106 - components: - - type: Transform - pos: -23.5,9.5 - parent: 12 - - uid: 16107 - components: - - type: Transform - pos: -22.5,9.5 - parent: 12 - - uid: 16108 - components: - - type: Transform - pos: -21.5,9.5 - parent: 12 - - uid: 16109 - components: - - type: Transform - pos: -20.5,9.5 - parent: 12 - - uid: 16110 - components: - - type: Transform - pos: -19.5,9.5 - parent: 12 - - uid: 16111 - components: - - type: Transform - pos: -18.5,9.5 - parent: 12 - - uid: 16112 - components: - - type: Transform - pos: -17.5,9.5 - parent: 12 - - uid: 16113 - components: - - type: Transform - pos: -16.5,9.5 - parent: 12 - - uid: 16114 - components: - - type: Transform - pos: -15.5,9.5 - parent: 12 - - uid: 16115 - components: - - type: Transform - pos: -14.5,9.5 - parent: 12 - - uid: 16116 - components: - - type: Transform - pos: -13.5,9.5 - parent: 12 - - uid: 16117 - components: - - type: Transform - pos: -12.5,9.5 - parent: 12 - - uid: 16118 - components: - - type: Transform - pos: -11.5,9.5 - parent: 12 - - uid: 16119 - components: - - type: Transform - pos: -10.5,9.5 - parent: 12 - - uid: 16120 - components: - - type: Transform - pos: -9.5,9.5 - parent: 12 - - uid: 16121 - components: - - type: Transform - pos: -8.5,9.5 - parent: 12 - - uid: 16122 - components: - - type: Transform - pos: -7.5,9.5 - parent: 12 - - uid: 16123 - components: - - type: Transform - pos: -6.5,9.5 - parent: 12 - - uid: 16124 - components: - - type: Transform - pos: -5.5,9.5 - parent: 12 - - uid: 16125 - components: - - type: Transform - pos: -5.5,10.5 - parent: 12 - - uid: 16126 - components: - - type: Transform - pos: -5.5,11.5 - parent: 12 - - uid: 16127 - components: - - type: Transform - pos: -5.5,12.5 - parent: 12 - - uid: 16128 - components: - - type: Transform - pos: -5.5,13.5 - parent: 12 - - uid: 16129 - components: - - type: Transform - pos: -5.5,14.5 - parent: 12 - - uid: 16130 - components: - - type: Transform - pos: -5.5,15.5 - parent: 12 - - uid: 16131 - components: - - type: Transform - pos: -5.5,16.5 - parent: 12 - - uid: 16132 - components: - - type: Transform - pos: -4.5,16.5 - parent: 12 - - uid: 16133 - components: - - type: Transform - pos: -3.5,16.5 - parent: 12 - - uid: 16134 - components: - - type: Transform - pos: -2.5,16.5 - parent: 12 - - uid: 16135 - components: - - type: Transform - pos: -2.5,15.5 - parent: 12 - - uid: 16136 - components: - - type: Transform - pos: -2.5,14.5 - parent: 12 - - uid: 16137 - components: - - type: Transform - pos: -2.5,13.5 - parent: 12 - - uid: 16138 - components: - - type: Transform - pos: -3.5,13.5 - parent: 12 - - uid: 16139 - components: - - type: Transform - pos: -13.5,8.5 - parent: 12 - - uid: 16140 - components: - - type: Transform - pos: -13.5,10.5 - parent: 12 - - uid: 16141 - components: - - type: Transform - pos: -9.5,8.5 - parent: 12 - - uid: 16142 - components: - - type: Transform - pos: -9.5,7.5 - parent: 12 - - uid: 16143 - components: - - type: Transform - pos: -9.5,6.5 - parent: 12 - - uid: 16144 - components: - - type: Transform - pos: -8.5,6.5 - parent: 12 - - uid: 16145 - components: - - type: Transform - pos: -7.5,6.5 - parent: 12 - - uid: 16146 - components: - - type: Transform - pos: -17.5,10.5 - parent: 12 - - uid: 16147 - components: - - type: Transform - pos: -17.5,11.5 - parent: 12 - - uid: 16148 - components: - - type: Transform - pos: -17.5,12.5 - parent: 12 - - uid: 16149 - components: - - type: Transform - pos: -17.5,13.5 - parent: 12 - - uid: 16150 - components: - - type: Transform - pos: -18.5,13.5 - parent: 12 - - uid: 16152 - components: - - type: Transform - pos: -4.5,17.5 - parent: 12 - - uid: 16221 - components: - - type: Transform - pos: -10.5,24.5 - parent: 12 - - uid: 16299 - components: - - type: Transform - pos: -4.5,36.5 - parent: 12 - - uid: 16310 - components: - - type: Transform - pos: -4.5,35.5 - parent: 12 - - uid: 16311 - components: - - type: Transform - pos: -4.5,34.5 - parent: 12 - - uid: 16312 - components: - - type: Transform - pos: -4.5,33.5 - parent: 12 - - uid: 16313 - components: - - type: Transform - pos: -3.5,33.5 - parent: 12 - - uid: 16314 - components: - - type: Transform - pos: -2.5,33.5 - parent: 12 - - uid: 16316 - components: - - type: Transform - pos: -1.5,34.5 - parent: 12 - - uid: 16317 - components: - - type: Transform - pos: -1.5,35.5 - parent: 12 - - uid: 16318 - components: - - type: Transform - pos: -0.5,35.5 - parent: 12 - - uid: 16319 - components: - - type: Transform - pos: 0.5,35.5 - parent: 12 - - uid: 16320 - components: - - type: Transform - pos: 1.5,35.5 - parent: 12 - - uid: 16321 - components: - - type: Transform - pos: 2.5,35.5 - parent: 12 - - uid: 16322 - components: - - type: Transform - pos: 3.5,35.5 - parent: 12 - - uid: 16323 - components: - - type: Transform - pos: 4.5,35.5 - parent: 12 - - uid: 16324 - components: - - type: Transform - pos: 5.5,35.5 - parent: 12 - - uid: 16325 - components: - - type: Transform - pos: 5.5,34.5 - parent: 12 - - uid: 16326 - components: - - type: Transform - pos: 5.5,33.5 - parent: 12 - - uid: 16327 - components: - - type: Transform - pos: -1.5,36.5 - parent: 12 - - uid: 16328 - components: - - type: Transform - pos: -1.5,37.5 - parent: 12 - - uid: 16329 - components: - - type: Transform - pos: -1.5,38.5 - parent: 12 - - uid: 16330 - components: - - type: Transform - pos: -1.5,39.5 - parent: 12 - - uid: 16331 - components: - - type: Transform - pos: -1.5,40.5 - parent: 12 - - uid: 16332 - components: - - type: Transform - pos: -1.5,41.5 - parent: 12 - - uid: 16333 - components: - - type: Transform - pos: -1.5,42.5 - parent: 12 - - uid: 16334 - components: - - type: Transform - pos: -1.5,43.5 - parent: 12 - - uid: 16335 - components: - - type: Transform - pos: -1.5,44.5 - parent: 12 - - uid: 16336 - components: - - type: Transform - pos: -1.5,45.5 - parent: 12 - - uid: 16361 - components: - - type: Transform - pos: 65.5,0.5 - parent: 12 - - uid: 16368 - components: - - type: Transform - pos: -22.5,-28.5 - parent: 12 - - uid: 16377 - components: - - type: Transform - pos: -6.5,31.5 - parent: 12 - - uid: 16383 - components: - - type: Transform - pos: -6.5,33.5 - parent: 12 - - uid: 16387 - components: - - type: Transform - pos: -5.5,33.5 - parent: 12 - - uid: 16393 - components: - - type: Transform - pos: -7.5,27.5 - parent: 12 - - uid: 16394 - components: - - type: Transform - pos: -8.5,27.5 - parent: 12 - - uid: 16395 - components: - - type: Transform - pos: -9.5,27.5 - parent: 12 - - uid: 16396 - components: - - type: Transform - pos: -10.5,27.5 - parent: 12 - - uid: 16397 - components: - - type: Transform - pos: -10.5,26.5 - parent: 12 - - uid: 16398 - components: - - type: Transform - pos: -10.5,25.5 - parent: 12 - - uid: 16399 - components: - - type: Transform - pos: -10.5,22.5 - parent: 12 - - uid: 16400 - components: - - type: Transform - pos: -10.5,23.5 - parent: 12 - - uid: 16518 - components: - - type: Transform - pos: 54.5,63.5 - parent: 12 - - uid: 16534 - components: - - type: Transform - pos: 0.5,1.5 - parent: 12 - - uid: 16536 - components: - - type: Transform - pos: -0.5,3.5 - parent: 12 - - uid: 16586 - components: - - type: Transform - pos: 16.5,11.5 - parent: 12 - - uid: 16644 - components: - - type: Transform - pos: -41.5,53.5 - parent: 12 - - uid: 16647 - components: - - type: Transform - pos: -1.5,3.5 - parent: 12 - - uid: 16648 - components: - - type: Transform - pos: -41.5,-23.5 - parent: 12 - - uid: 16657 - components: - - type: Transform - pos: 0.5,3.5 - parent: 12 - - uid: 16660 - components: - - type: Transform - pos: 65.5,-2.5 - parent: 12 - - uid: 16798 - components: - - type: Transform - pos: -1.5,2.5 - parent: 12 - - uid: 16942 - components: - - type: Transform - pos: -0.5,45.5 - parent: 12 - - uid: 16943 - components: - - type: Transform - pos: 0.5,45.5 - parent: 12 - - uid: 16944 - components: - - type: Transform - pos: 1.5,45.5 - parent: 12 - - uid: 16945 - components: - - type: Transform - pos: 2.5,45.5 - parent: 12 - - uid: 16946 - components: - - type: Transform - pos: 3.5,45.5 - parent: 12 - - uid: 16947 - components: - - type: Transform - pos: 4.5,45.5 - parent: 12 - - uid: 16948 - components: - - type: Transform - pos: 3.5,46.5 - parent: 12 - - uid: 16949 - components: - - type: Transform - pos: 3.5,47.5 - parent: 12 - - uid: 16950 - components: - - type: Transform - pos: 3.5,48.5 - parent: 12 - - uid: 16951 - components: - - type: Transform - pos: 4.5,48.5 - parent: 12 - - uid: 16952 - components: - - type: Transform - pos: 5.5,48.5 - parent: 12 - - uid: 16953 - components: - - type: Transform - pos: 6.5,48.5 - parent: 12 - - uid: 16954 - components: - - type: Transform - pos: 5.5,45.5 - parent: 12 - - uid: 16955 - components: - - type: Transform - pos: 6.5,45.5 - parent: 12 - - uid: 16956 - components: - - type: Transform - pos: 7.5,45.5 - parent: 12 - - uid: 16957 - components: - - type: Transform - pos: 8.5,45.5 - parent: 12 - - uid: 16958 - components: - - type: Transform - pos: 9.5,45.5 - parent: 12 - - uid: 16959 - components: - - type: Transform - pos: 9.5,46.5 - parent: 12 - - uid: 16960 - components: - - type: Transform - pos: 9.5,47.5 - parent: 12 - - uid: 16961 - components: - - type: Transform - pos: 9.5,48.5 - parent: 12 - - uid: 16962 - components: - - type: Transform - pos: 9.5,49.5 - parent: 12 - - uid: 16963 - components: - - type: Transform - pos: 9.5,50.5 - parent: 12 - - uid: 16964 - components: - - type: Transform - pos: 9.5,51.5 - parent: 12 - - uid: 16965 - components: - - type: Transform - pos: 9.5,52.5 - parent: 12 - - uid: 16966 - components: - - type: Transform - pos: 9.5,53.5 - parent: 12 - - uid: 16967 - components: - - type: Transform - pos: 9.5,54.5 - parent: 12 - - uid: 16968 - components: - - type: Transform - pos: 9.5,55.5 - parent: 12 - - uid: 16969 - components: - - type: Transform - pos: 9.5,56.5 - parent: 12 - - uid: 16970 - components: - - type: Transform - pos: 8.5,56.5 - parent: 12 - - uid: 16971 - components: - - type: Transform - pos: 7.5,56.5 - parent: 12 - - uid: 16972 - components: - - type: Transform - pos: 6.5,56.5 - parent: 12 - - uid: 17266 - components: - - type: Transform - pos: 21.5,42.5 - parent: 12 - - uid: 17423 - components: - - type: Transform - pos: -11.5,-19.5 - parent: 12 - - uid: 17440 - components: - - type: Transform - pos: -53.5,16.5 - parent: 12 - - uid: 17441 - components: - - type: Transform - pos: -53.5,15.5 - parent: 12 - - uid: 17442 - components: - - type: Transform - pos: -52.5,15.5 - parent: 12 - - uid: 17443 - components: - - type: Transform - pos: -51.5,15.5 - parent: 12 - - uid: 17444 - components: - - type: Transform - pos: -50.5,15.5 - parent: 12 - - uid: 17445 - components: - - type: Transform - pos: -49.5,15.5 - parent: 12 - - uid: 17446 - components: - - type: Transform - pos: -49.5,16.5 - parent: 12 - - uid: 17447 - components: - - type: Transform - pos: -49.5,17.5 - parent: 12 - - uid: 17448 - components: - - type: Transform - pos: -50.5,17.5 - parent: 12 - - uid: 17449 - components: - - type: Transform - pos: -51.5,17.5 - parent: 12 - - uid: 17450 - components: - - type: Transform - pos: -51.5,18.5 - parent: 12 - - uid: 17451 - components: - - type: Transform - pos: -51.5,19.5 - parent: 12 - - uid: 17452 - components: - - type: Transform - pos: -51.5,20.5 - parent: 12 - - uid: 17453 - components: - - type: Transform - pos: -52.5,20.5 - parent: 12 - - uid: 17454 - components: - - type: Transform - pos: -53.5,20.5 - parent: 12 - - uid: 17455 - components: - - type: Transform - pos: -53.5,21.5 - parent: 12 - - uid: 17457 - components: - - type: Transform - pos: -54.5,19.5 - parent: 12 - - uid: 17458 - components: - - type: Transform - pos: -53.5,19.5 - parent: 12 - - uid: 17461 - components: - - type: Transform - pos: -55.5,25.5 - parent: 12 - - uid: 17462 - components: - - type: Transform - pos: -50.5,20.5 - parent: 12 - - uid: 17463 - components: - - type: Transform - pos: -49.5,20.5 - parent: 12 - - uid: 17464 - components: - - type: Transform - pos: -48.5,20.5 - parent: 12 - - uid: 17465 - components: - - type: Transform - pos: -48.5,19.5 - parent: 12 - - uid: 17466 - components: - - type: Transform - pos: -48.5,21.5 - parent: 12 - - uid: 17467 - components: - - type: Transform - pos: -48.5,22.5 - parent: 12 - - uid: 17468 - components: - - type: Transform - pos: -51.5,21.5 - parent: 12 - - uid: 17469 - components: - - type: Transform - pos: -51.5,22.5 - parent: 12 - - uid: 17470 - components: - - type: Transform - pos: -51.5,23.5 - parent: 12 - - uid: 17471 - components: - - type: Transform - pos: -51.5,24.5 - parent: 12 - - uid: 17472 - components: - - type: Transform - pos: -51.5,25.5 - parent: 12 - - uid: 17473 - components: - - type: Transform - pos: -51.5,26.5 - parent: 12 - - uid: 17474 - components: - - type: Transform - pos: -52.5,26.5 - parent: 12 - - uid: 17475 - components: - - type: Transform - pos: -53.5,26.5 - parent: 12 - - uid: 17476 - components: - - type: Transform - pos: -54.5,26.5 - parent: 12 - - uid: 17477 - components: - - type: Transform - pos: -55.5,26.5 - parent: 12 - - uid: 17478 - components: - - type: Transform - pos: -55.5,27.5 - parent: 12 - - uid: 17479 - components: - - type: Transform - pos: -56.5,27.5 - parent: 12 - - uid: 17480 - components: - - type: Transform - pos: -56.5,28.5 - parent: 12 - - uid: 17481 - components: - - type: Transform - pos: -56.5,29.5 - parent: 12 - - uid: 17482 - components: - - type: Transform - pos: -56.5,30.5 - parent: 12 - - uid: 17483 - components: - - type: Transform - pos: -55.5,30.5 - parent: 12 - - uid: 17484 - components: - - type: Transform - pos: -55.5,31.5 - parent: 12 - - uid: 17485 - components: - - type: Transform - pos: -54.5,31.5 - parent: 12 - - uid: 17486 - components: - - type: Transform - pos: -53.5,31.5 - parent: 12 - - uid: 17487 - components: - - type: Transform - pos: -52.5,31.5 - parent: 12 - - uid: 17488 - components: - - type: Transform - pos: -51.5,31.5 - parent: 12 - - uid: 17489 - components: - - type: Transform - pos: -51.5,32.5 - parent: 12 - - uid: 17490 - components: - - type: Transform - pos: -50.5,32.5 - parent: 12 - - uid: 17491 - components: - - type: Transform - pos: -49.5,32.5 - parent: 12 - - uid: 17492 - components: - - type: Transform - pos: -48.5,32.5 - parent: 12 - - uid: 17493 - components: - - type: Transform - pos: -47.5,32.5 - parent: 12 - - uid: 17494 - components: - - type: Transform - pos: -47.5,31.5 - parent: 12 - - uid: 17495 - components: - - type: Transform - pos: -47.5,30.5 - parent: 12 - - uid: 17496 - components: - - type: Transform - pos: -47.5,29.5 - parent: 12 - - uid: 17497 - components: - - type: Transform - pos: -47.5,28.5 - parent: 12 - - uid: 17498 - components: - - type: Transform - pos: -47.5,27.5 - parent: 12 - - uid: 17499 - components: - - type: Transform - pos: -47.5,26.5 - parent: 12 - - uid: 17500 - components: - - type: Transform - pos: -47.5,25.5 - parent: 12 - - uid: 17501 - components: - - type: Transform - pos: -48.5,25.5 - parent: 12 - - uid: 17502 - components: - - type: Transform - pos: -49.5,25.5 - parent: 12 - - uid: 17503 - components: - - type: Transform - pos: -50.5,25.5 - parent: 12 - - uid: 17504 - components: - - type: Transform - pos: -55.5,24.5 - parent: 12 - - uid: 17505 - components: - - type: Transform - pos: -56.5,24.5 - parent: 12 - - uid: 17506 - components: - - type: Transform - pos: -57.5,24.5 - parent: 12 - - uid: 17507 - components: - - type: Transform - pos: -57.5,23.5 - parent: 12 - - uid: 17508 - components: - - type: Transform - pos: -57.5,25.5 - parent: 12 - - uid: 17509 - components: - - type: Transform - pos: -58.5,25.5 - parent: 12 - - uid: 17510 - components: - - type: Transform - pos: -58.5,26.5 - parent: 12 - - uid: 17511 - components: - - type: Transform - pos: -58.5,27.5 - parent: 12 - - uid: 17512 - components: - - type: Transform - pos: -58.5,28.5 - parent: 12 - - uid: 17513 - components: - - type: Transform - pos: -58.5,29.5 - parent: 12 - - uid: 17514 - components: - - type: Transform - pos: -58.5,30.5 - parent: 12 - - uid: 17515 - components: - - type: Transform - pos: -58.5,31.5 - parent: 12 - - uid: 17516 - components: - - type: Transform - pos: -58.5,32.5 - parent: 12 - - uid: 17517 - components: - - type: Transform - pos: -57.5,32.5 - parent: 12 - - uid: 17518 - components: - - type: Transform - pos: -57.5,33.5 - parent: 12 - - uid: 17519 - components: - - type: Transform - pos: -57.5,34.5 - parent: 12 - - uid: 17520 - components: - - type: Transform - pos: -56.5,34.5 - parent: 12 - - uid: 17521 - components: - - type: Transform - pos: -55.5,34.5 - parent: 12 - - uid: 17522 - components: - - type: Transform - pos: -55.5,35.5 - parent: 12 - - uid: 17523 - components: - - type: Transform - pos: -55.5,32.5 - parent: 12 - - uid: 17524 - components: - - type: Transform - pos: -55.5,33.5 - parent: 12 - - uid: 17550 - components: - - type: Transform - pos: -60.5,24.5 - parent: 12 - - uid: 17584 - components: - - type: Transform - pos: 5.5,-15.5 - parent: 12 - - uid: 17735 - components: - - type: Transform - pos: -47.5,24.5 - parent: 12 - - uid: 17736 - components: - - type: Transform - pos: -46.5,24.5 - parent: 12 - - uid: 17737 - components: - - type: Transform - pos: -45.5,24.5 - parent: 12 - - uid: 17738 - components: - - type: Transform - pos: -44.5,24.5 - parent: 12 - - uid: 17739 - components: - - type: Transform - pos: -43.5,24.5 - parent: 12 - - uid: 17740 - components: - - type: Transform - pos: -42.5,24.5 - parent: 12 - - uid: 17741 - components: - - type: Transform - pos: -42.5,23.5 - parent: 12 - - uid: 17742 - components: - - type: Transform - pos: -42.5,22.5 - parent: 12 - - uid: 17743 - components: - - type: Transform - pos: -41.5,22.5 - parent: 12 - - uid: 17744 - components: - - type: Transform - pos: -40.5,22.5 - parent: 12 - - uid: 17745 - components: - - type: Transform - pos: -39.5,22.5 - parent: 12 - - uid: 17746 - components: - - type: Transform - pos: -38.5,22.5 - parent: 12 - - uid: 17747 - components: - - type: Transform - pos: -37.5,22.5 - parent: 12 - - uid: 17748 - components: - - type: Transform - pos: -37.5,21.5 - parent: 12 - - uid: 17749 - components: - - type: Transform - pos: -46.5,32.5 - parent: 12 - - uid: 17750 - components: - - type: Transform - pos: -45.5,32.5 - parent: 12 - - uid: 17757 - components: - - type: Transform - pos: -60.5,23.5 - parent: 12 - - uid: 17776 - components: - - type: Transform - pos: -59.5,23.5 - parent: 12 - - uid: 17777 - components: - - type: Transform - pos: -59.5,22.5 - parent: 12 - - uid: 17778 - components: - - type: Transform - pos: -59.5,21.5 - parent: 12 - - uid: 17780 - components: - - type: Transform - pos: -51.5,33.5 - parent: 12 - - uid: 17781 - components: - - type: Transform - pos: -51.5,34.5 - parent: 12 - - uid: 17782 - components: - - type: Transform - pos: -51.5,35.5 - parent: 12 - - uid: 17783 - components: - - type: Transform - pos: -51.5,36.5 - parent: 12 - - uid: 17784 - components: - - type: Transform - pos: -51.5,37.5 - parent: 12 - - uid: 17785 - components: - - type: Transform - pos: -50.5,37.5 - parent: 12 - - uid: 17786 - components: - - type: Transform - pos: -49.5,37.5 - parent: 12 - - uid: 17787 - components: - - type: Transform - pos: -48.5,37.5 - parent: 12 - - uid: 17788 - components: - - type: Transform - pos: -47.5,37.5 - parent: 12 - - uid: 17789 - components: - - type: Transform - pos: -46.5,37.5 - parent: 12 - - uid: 17790 - components: - - type: Transform - pos: -46.5,36.5 - parent: 12 - - uid: 17791 - components: - - type: Transform - pos: -46.5,35.5 - parent: 12 - - uid: 17801 - components: - - type: Transform - pos: -46.5,38.5 - parent: 12 - - uid: 17919 - components: - - type: Transform - pos: -48.5,46.5 - parent: 12 - - uid: 17924 - components: - - type: Transform - pos: -46.5,39.5 - parent: 12 - - uid: 17925 - components: - - type: Transform - pos: -46.5,40.5 - parent: 12 - - uid: 17926 - components: - - type: Transform - pos: -46.5,41.5 - parent: 12 - - uid: 17927 - components: - - type: Transform - pos: -46.5,42.5 - parent: 12 - - uid: 17928 - components: - - type: Transform - pos: -46.5,43.5 - parent: 12 - - uid: 17929 - components: - - type: Transform - pos: -46.5,44.5 - parent: 12 - - uid: 17930 - components: - - type: Transform - pos: -46.5,45.5 - parent: 12 - - uid: 17931 - components: - - type: Transform - pos: -47.5,45.5 - parent: 12 - - uid: 17932 - components: - - type: Transform - pos: -48.5,45.5 - parent: 12 - - uid: 17933 - components: - - type: Transform - pos: -50.5,46.5 - parent: 12 - - uid: 17946 - components: - - type: Transform - pos: -59.5,20.5 - parent: 12 - - uid: 17949 - components: - - type: Transform - pos: -59.5,19.5 - parent: 12 - - uid: 17950 - components: - - type: Transform - pos: -58.5,19.5 - parent: 12 - - uid: 17951 - components: - - type: Transform - pos: -58.5,18.5 - parent: 12 - - uid: 17955 - components: - - type: Transform - pos: -57.5,18.5 - parent: 12 - - uid: 17956 - components: - - type: Transform - pos: -56.5,18.5 - parent: 12 - - uid: 17957 - components: - - type: Transform - pos: -55.5,16.5 - parent: 12 - - uid: 17958 - components: - - type: Transform - pos: -56.5,16.5 - parent: 12 - - uid: 17959 - components: - - type: Transform - pos: -56.5,17.5 - parent: 12 - - uid: 18278 - components: - - type: Transform - pos: -15.5,6.5 - parent: 12 - - uid: 18279 - components: - - type: Transform - pos: -15.5,7.5 - parent: 12 - - uid: 18280 - components: - - type: Transform - pos: -15.5,8.5 - parent: 12 - - uid: 18337 - components: - - type: Transform - pos: 33.5,64.5 - parent: 12 - - uid: 18338 - components: - - type: Transform - pos: 33.5,65.5 - parent: 12 - - uid: 18339 - components: - - type: Transform - pos: 34.5,65.5 - parent: 12 - - uid: 18631 - components: - - type: Transform - pos: 8.5,-14.5 - parent: 12 - - uid: 18759 - components: - - type: Transform - pos: -1.5,-36.5 - parent: 12 - - uid: 18915 - components: - - type: Transform - pos: -46.5,33.5 - parent: 12 - - uid: 18916 - components: - - type: Transform - pos: -46.5,34.5 - parent: 12 - - uid: 18917 - components: - - type: Transform - pos: -45.5,34.5 - parent: 12 - - uid: 18918 - components: - - type: Transform - pos: -44.5,34.5 - parent: 12 - - uid: 18919 - components: - - type: Transform - pos: -43.5,34.5 - parent: 12 - - uid: 18920 - components: - - type: Transform - pos: -42.5,34.5 - parent: 12 - - uid: 18921 - components: - - type: Transform - pos: -41.5,34.5 - parent: 12 - - uid: 18922 - components: - - type: Transform - pos: -41.5,35.5 - parent: 12 - - uid: 18923 - components: - - type: Transform - pos: -41.5,36.5 - parent: 12 - - uid: 18924 - components: - - type: Transform - pos: -40.5,36.5 - parent: 12 - - uid: 19161 - components: - - type: Transform - pos: -28.5,-42.5 - parent: 12 - - uid: 19235 - components: - - type: Transform - pos: -26.5,59.5 - parent: 12 - - uid: 19259 - components: - - type: Transform - pos: -39.5,62.5 - parent: 12 - - uid: 19266 - components: - - type: Transform - pos: -51.5,13.5 - parent: 12 - - uid: 19506 - components: - - type: Transform - pos: -38.5,62.5 - parent: 12 - - uid: 19508 - components: - - type: Transform - pos: -39.5,68.5 - parent: 12 - - uid: 19509 - components: - - type: Transform - pos: -35.5,70.5 - parent: 12 - - uid: 19511 - components: - - type: Transform - pos: -23.5,59.5 - parent: 12 - - uid: 19515 - components: - - type: Transform - pos: -38.5,60.5 - parent: 12 - - uid: 19516 - components: - - type: Transform - pos: -38.5,59.5 - parent: 12 - - uid: 19517 - components: - - type: Transform - pos: -37.5,59.5 - parent: 12 - - uid: 19518 - components: - - type: Transform - pos: -36.5,59.5 - parent: 12 - - uid: 19519 - components: - - type: Transform - pos: -35.5,59.5 - parent: 12 - - uid: 19520 - components: - - type: Transform - pos: -35.5,60.5 - parent: 12 - - uid: 19538 - components: - - type: Transform - pos: 26.5,-16.5 - parent: 12 - - uid: 19554 - components: - - type: Transform - pos: -49.5,13.5 - parent: 12 - - uid: 19557 - components: - - type: Transform - pos: -38.5,70.5 - parent: 12 - - uid: 19558 - components: - - type: Transform - pos: -53.5,13.5 - parent: 12 - - uid: 19568 - components: - - type: Transform - pos: -37.5,70.5 - parent: 12 - - uid: 19614 - components: - - type: Transform - pos: -50.5,13.5 - parent: 12 - - uid: 19615 - components: - - type: Transform - pos: -52.5,13.5 - parent: 12 - - uid: 19621 - components: - - type: Transform - pos: -47.5,13.5 - parent: 12 - - uid: 19816 - components: - - type: Transform - pos: 37.5,1.5 - parent: 12 - - uid: 19817 - components: - - type: Transform - pos: -48.5,13.5 - parent: 12 - - uid: 19828 - components: - - type: Transform - pos: -47.5,14.5 - parent: 12 - - uid: 19834 - components: - - type: Transform - pos: -28.5,61.5 - parent: 12 - - uid: 19850 - components: - - type: Transform - pos: -47.5,16.5 - parent: 12 - - uid: 19883 - components: - - type: Transform - pos: -48.5,17.5 - parent: 12 - - uid: 19887 - components: - - type: Transform - pos: -24.5,59.5 - parent: 12 - - uid: 20073 - components: - - 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 - pos: -33.5,70.5 - parent: 12 - - uid: 20348 - components: - - type: Transform - pos: -35.5,58.5 - parent: 12 - - uid: 20349 - components: - - type: Transform - pos: -35.5,57.5 - parent: 12 - - uid: 20350 - components: - - type: Transform - pos: -35.5,56.5 - parent: 12 - - uid: 20351 - components: - - type: Transform - pos: -35.5,55.5 - parent: 12 - - uid: 20352 - components: - - type: Transform - pos: -35.5,54.5 - parent: 12 - - uid: 20353 - components: - - type: Transform - pos: -35.5,53.5 - parent: 12 - - uid: 20354 - components: - - type: Transform - pos: -35.5,52.5 - parent: 12 - - uid: 20355 - components: - - type: Transform - pos: -35.5,51.5 - parent: 12 - - uid: 20356 - components: - - type: Transform - pos: -35.5,50.5 - parent: 12 - - uid: 20357 - components: - - type: Transform - pos: -35.5,49.5 - parent: 12 - - uid: 20358 - components: - - type: Transform - pos: -35.5,48.5 - parent: 12 - - uid: 20359 - components: - - type: Transform - pos: -35.5,47.5 - parent: 12 - - uid: 20360 - components: - - type: Transform - pos: -34.5,47.5 - parent: 12 - - uid: 20361 - components: - - type: Transform - pos: -33.5,47.5 - parent: 12 - - uid: 20362 - components: - - type: Transform - pos: -35.5,46.5 - parent: 12 - - uid: 20363 - components: - - type: Transform - pos: -35.5,45.5 - parent: 12 - - uid: 20364 - components: - - type: Transform - pos: -35.5,44.5 - parent: 12 - - uid: 20365 - components: - - type: Transform - pos: -35.5,43.5 - parent: 12 - - uid: 20366 - components: - - type: Transform - pos: -36.5,43.5 - parent: 12 - - uid: 20367 - components: - - type: Transform - pos: -35.5,41.5 - parent: 12 - - uid: 20368 - components: - - type: Transform - pos: -35.5,40.5 - parent: 12 - - uid: 20369 - components: - - type: Transform - pos: -34.5,40.5 - parent: 12 - - uid: 20370 - components: - - type: Transform - pos: -33.5,40.5 - parent: 12 - - uid: 20371 - components: - - type: Transform - pos: -32.5,40.5 - parent: 12 - - uid: 20372 - components: - - type: Transform - pos: -29.5,41.5 - parent: 12 - - uid: 20373 - components: - - type: Transform - pos: -30.5,40.5 - parent: 12 - - uid: 20374 - components: - - type: Transform - pos: -29.5,40.5 - parent: 12 - - uid: 20375 - components: - - type: Transform - pos: -28.5,40.5 - parent: 12 - - uid: 20376 - components: - - type: Transform - pos: -27.5,40.5 - parent: 12 - - uid: 20377 - components: - - type: Transform - pos: -26.5,40.5 - parent: 12 - - uid: 20378 - components: - - type: Transform - pos: -25.5,40.5 - parent: 12 - - uid: 20379 - components: - - type: Transform - pos: -24.5,40.5 - parent: 12 - - uid: 20380 - components: - - type: Transform - pos: -23.5,40.5 - parent: 12 - - uid: 20381 - components: - - type: Transform - pos: -22.5,40.5 - parent: 12 - - uid: 20382 - components: - - type: Transform - pos: -26.5,39.5 - parent: 12 - - uid: 20383 - components: - - type: Transform - pos: -26.5,41.5 - parent: 12 - - uid: 20384 - components: - - type: Transform - pos: -26.5,38.5 - parent: 12 - - uid: 20385 - components: - - type: Transform - pos: -21.5,40.5 - parent: 12 - - uid: 20386 - components: - - type: Transform - pos: -20.5,40.5 - parent: 12 - - uid: 20387 - components: - - type: Transform - pos: -32.5,41.5 - parent: 12 - - uid: 20388 - components: - - type: Transform - pos: -20.5,42.5 - parent: 12 - - uid: 20389 - components: - - type: Transform - pos: -19.5,42.5 - parent: 12 - - uid: 20390 - components: - - type: Transform - pos: -19.5,41.5 - parent: 12 - - uid: 20391 - components: - - type: Transform - pos: -19.5,40.5 - parent: 12 - - uid: 20392 - components: - - type: Transform - pos: -32.5,42.5 - parent: 12 - - uid: 20393 - components: - - type: Transform - pos: -30.5,42.5 - parent: 12 - - uid: 20394 - components: - - type: Transform - pos: -29.5,42.5 - parent: 12 - - uid: 20395 - components: - - type: Transform - pos: -28.5,42.5 - parent: 12 - - uid: 20396 - components: - - type: Transform - pos: -23.5,39.5 - parent: 12 - - uid: 20397 - components: - - type: Transform - pos: -23.5,38.5 - parent: 12 - - uid: 20398 - components: - - type: Transform - pos: -23.5,37.5 - parent: 12 - - uid: 20399 - components: - - type: Transform - pos: -23.5,36.5 - parent: 12 - - uid: 20400 - components: - - type: Transform - pos: -22.5,36.5 - parent: 12 - - uid: 20401 - components: - - type: Transform - pos: -22.5,35.5 - parent: 12 - - uid: 20402 - components: - - type: Transform - pos: -22.5,34.5 - parent: 12 - - uid: 20403 - components: - - type: Transform - pos: -22.5,33.5 - parent: 12 - - uid: 20404 - components: - - type: Transform - pos: -21.5,33.5 - parent: 12 - - uid: 20405 - components: - - type: Transform - pos: -20.5,33.5 - parent: 12 - - uid: 20406 - components: - - type: Transform - pos: -20.5,34.5 - parent: 12 - - uid: 20407 - components: - - type: Transform - pos: -20.5,35.5 - parent: 12 - - uid: 20408 - components: - - type: Transform - pos: -20.5,36.5 - parent: 12 - - uid: 20409 - components: - - type: Transform - pos: -36.5,52.5 - parent: 12 - - uid: 20410 - components: - - type: Transform - pos: -37.5,52.5 - parent: 12 - - uid: 20411 - components: - - type: Transform - pos: -38.5,52.5 - parent: 12 - - uid: 20412 - components: - - type: Transform - pos: -39.5,52.5 - parent: 12 - - uid: 20413 - components: - - type: Transform - pos: -39.5,51.5 - parent: 12 - - uid: 20414 - components: - - type: Transform - pos: -39.5,50.5 - parent: 12 - - uid: 20415 - components: - - type: Transform - pos: -39.5,49.5 - parent: 12 - - uid: 20416 - components: - - type: Transform - pos: -35.5,62.5 - parent: 12 - - uid: 20417 - components: - - type: Transform - pos: -35.5,61.5 - parent: 12 - - uid: 20418 - components: - - type: Transform - pos: -36.5,62.5 - parent: 12 - - uid: 20419 - components: - - type: Transform - pos: -36.5,63.5 - parent: 12 - - uid: 20420 - components: - - type: Transform - pos: -36.5,64.5 - parent: 12 - - uid: 20421 - components: - - type: Transform - pos: -36.5,65.5 - parent: 12 - - uid: 20422 - components: - - type: Transform - pos: -36.5,66.5 - parent: 12 - - uid: 20423 - components: - - type: Transform - pos: -36.5,67.5 - parent: 12 - - uid: 20424 - components: - - type: Transform - pos: -36.5,68.5 - parent: 12 - - uid: 20425 - components: - - type: Transform - pos: -35.5,68.5 - parent: 12 - - uid: 20426 - components: - - type: Transform - pos: -35.5,69.5 - parent: 12 - - uid: 20427 - components: - - type: Transform - pos: -34.5,59.5 - parent: 12 - - uid: 20428 - components: - - type: Transform - pos: -33.5,59.5 - parent: 12 - - uid: 20429 - components: - - type: Transform - pos: -32.5,59.5 - parent: 12 - - uid: 20430 - components: - - type: Transform - pos: -31.5,59.5 - parent: 12 - - uid: 20431 - components: - - type: Transform - pos: -30.5,59.5 - parent: 12 - - uid: 20432 - components: - - type: Transform - pos: -29.5,59.5 - parent: 12 - - uid: 20433 - components: - - type: Transform - pos: -28.5,59.5 - parent: 12 - - uid: 20434 - components: - - type: Transform - pos: -27.5,59.5 - parent: 12 - - uid: 20437 - components: - - type: Transform - pos: -28.5,58.5 - parent: 12 - - uid: 20439 - components: - - type: Transform - pos: -27.5,58.5 - parent: 12 - - uid: 20440 - components: - - type: Transform - pos: -27.5,57.5 - parent: 12 - - uid: 20441 - components: - - type: Transform - pos: -34.5,55.5 - parent: 12 - - uid: 20442 - components: - - type: Transform - pos: -33.5,55.5 - parent: 12 - - uid: 20443 - components: - - type: Transform - pos: -32.5,55.5 - parent: 12 - - uid: 20444 - components: - - type: Transform - pos: -32.5,54.5 - parent: 12 - - uid: 20445 - components: - - type: Transform - pos: -32.5,56.5 - parent: 12 - - uid: 20446 - components: - - type: Transform - pos: -32.5,53.5 - parent: 12 - - uid: 20447 - components: - - type: Transform - pos: -32.5,52.5 - parent: 12 - - uid: 20448 - components: - - type: Transform - pos: -32.5,51.5 - parent: 12 - - uid: 20449 - components: - - type: Transform - pos: -32.5,50.5 - parent: 12 - - uid: 20450 - components: - - type: Transform - pos: -33.5,51.5 - parent: 12 - - uid: 20451 - components: - - type: Transform - pos: -34.5,51.5 - parent: 12 - - uid: 20452 - components: - - type: Transform - pos: -36.5,40.5 - parent: 12 - - uid: 20453 - components: - - type: Transform - pos: -37.5,40.5 - parent: 12 - - uid: 20454 - components: - - type: Transform - pos: -38.5,40.5 - parent: 12 - - uid: 20455 - components: - - type: Transform - pos: -39.5,40.5 - parent: 12 - - uid: 20456 - components: - - type: Transform - pos: -40.5,40.5 - parent: 12 - - uid: 20457 - components: - - type: Transform - pos: -40.5,39.5 - parent: 12 - - uid: 20458 - components: - - type: Transform - pos: -40.5,38.5 - parent: 12 - - uid: 20459 - components: - - type: Transform - pos: -40.5,42.5 - parent: 12 - - uid: 20460 - components: - - type: Transform - pos: -40.5,41.5 - parent: 12 - - uid: 20461 - components: - - type: Transform - pos: -40.5,35.5 - parent: 12 - - uid: 20462 - components: - - type: Transform - pos: -38.5,33.5 - parent: 12 - - uid: 20463 - components: - - type: Transform - pos: -37.5,33.5 - parent: 12 - - uid: 20464 - components: - - type: Transform - pos: -35.5,32.5 - parent: 12 - - uid: 20465 - components: - - type: Transform - pos: -35.5,31.5 - parent: 12 - - uid: 20466 - components: - - type: Transform - pos: -34.5,31.5 - parent: 12 - - uid: 20467 - components: - - type: Transform - pos: -33.5,31.5 - parent: 12 - - uid: 20468 - components: - - type: Transform - pos: -32.5,31.5 - parent: 12 - - uid: 20469 - components: - - type: Transform - pos: -31.5,31.5 - parent: 12 - - uid: 20470 - components: - - type: Transform - pos: -31.5,32.5 - parent: 12 - - uid: 20471 - components: - - type: Transform - pos: -31.5,33.5 - parent: 12 - - uid: 20472 - components: - - type: Transform - pos: -37.5,34.5 - parent: 12 - - uid: 20473 - components: - - type: Transform - pos: -37.5,35.5 - parent: 12 - - uid: 20474 - components: - - type: Transform - pos: -37.5,36.5 - parent: 12 - - uid: 20475 - components: - - type: Transform - pos: -33.5,32.5 - parent: 12 - - uid: 20476 - components: - - type: Transform - pos: -33.5,33.5 - parent: 12 - - uid: 20477 - components: - - type: Transform - pos: -33.5,34.5 - parent: 12 - - uid: 20478 - components: - - type: Transform - pos: -33.5,35.5 - parent: 12 - - uid: 20479 - components: - - type: Transform - pos: -33.5,36.5 - parent: 12 - - uid: 20480 - components: - - type: Transform - pos: -36.5,36.5 - parent: 12 - - uid: 20481 - components: - - type: Transform - pos: -35.5,36.5 - parent: 12 - - uid: 20482 - components: - - type: Transform - pos: -34.5,36.5 - parent: 12 - - uid: 20483 - components: - - type: Transform - pos: -32.5,36.5 - parent: 12 - - uid: 20484 - components: - - type: Transform - pos: -31.5,36.5 - parent: 12 - - uid: 20485 - components: - - type: Transform - pos: -30.5,36.5 - parent: 12 - - uid: 20486 - components: - - type: Transform - pos: -29.5,36.5 - parent: 12 - - uid: 20487 - components: - - type: Transform - pos: -28.5,36.5 - parent: 12 - - uid: 20488 - components: - - type: Transform - pos: -27.5,36.5 - parent: 12 - - uid: 20489 - components: - - type: Transform - pos: -26.5,36.5 - parent: 12 - - uid: 20490 - components: - - type: Transform - pos: -25.5,36.5 - parent: 12 - - uid: 20491 - components: - - type: Transform - pos: -24.5,36.5 - parent: 12 - - uid: 20492 - components: - - type: Transform - pos: -31.5,40.5 - parent: 12 - - uid: 20493 - components: - - type: Transform - pos: -33.5,37.5 - parent: 12 - - uid: 20494 - components: - - type: Transform - pos: -33.5,38.5 - parent: 12 - - uid: 20495 - components: - - type: Transform - pos: -33.5,39.5 - parent: 12 - - uid: 20496 - components: - - type: Transform - pos: -34.5,43.5 - parent: 12 - - uid: 20497 - components: - - type: Transform - pos: -33.5,43.5 - parent: 12 - - uid: 20498 - components: - - type: Transform - pos: -40.5,51.5 - parent: 12 - - uid: 20499 - components: - - type: Transform - pos: -41.5,51.5 - parent: 12 - - uid: 20500 - components: - - type: Transform - pos: -39.5,59.5 - parent: 12 - - uid: 20501 - components: - - type: Transform - pos: -39.5,58.5 - parent: 12 - - uid: 20502 - components: - - type: Transform - pos: -39.5,57.5 - parent: 12 - - uid: 20503 - components: - - type: Transform - pos: -38.5,57.5 - parent: 12 - - uid: 20504 - components: - - type: Transform - pos: -40.5,59.5 - parent: 12 - - uid: 20505 - components: - - type: Transform - pos: -41.5,59.5 - parent: 12 - - uid: 20506 - components: - - type: Transform - pos: -34.5,62.5 - parent: 12 - - uid: 20507 - components: - - type: Transform - pos: -43.5,59.5 - parent: 12 - - uid: 20508 - components: - - type: Transform - pos: -44.5,59.5 - parent: 12 - - uid: 20509 - components: - - type: Transform - pos: -33.5,62.5 - parent: 12 - - uid: 20510 - components: - - type: Transform - pos: -46.5,59.5 - parent: 12 - - uid: 20511 - components: - - type: Transform - pos: -47.5,59.5 - parent: 12 - - uid: 20512 - components: - - type: Transform - pos: -33.5,63.5 - parent: 12 - - uid: 20513 - components: - - type: Transform - pos: -48.5,60.5 - parent: 12 - - uid: 20514 - components: - - type: Transform - pos: -47.5,60.5 - parent: 12 - - uid: 20515 - components: - - type: Transform - pos: -34.5,70.5 - parent: 12 - - uid: 20519 - components: - - 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 - pos: -41.5,60.5 - parent: 12 - - uid: 20526 - components: - - type: Transform - pos: -36.5,70.5 - parent: 12 - - uid: 20529 - components: - - type: Transform - pos: -42.5,60.5 - parent: 12 - - uid: 20530 - components: - - type: Transform - pos: -45.5,60.5 - parent: 12 - - uid: 20531 - components: - - type: Transform - pos: -45.5,59.5 - parent: 12 - - uid: 20532 - components: - - type: Transform - pos: -46.5,58.5 - parent: 12 - - uid: 20533 - components: - - type: Transform - pos: -46.5,57.5 - parent: 12 - - uid: 20534 - components: - - type: Transform - pos: -46.5,56.5 - parent: 12 - - uid: 20535 - components: - - type: Transform - pos: -46.5,55.5 - parent: 12 - - uid: 20536 - components: - - type: Transform - pos: -47.5,55.5 - parent: 12 - - uid: 20537 - components: - - type: Transform - pos: -48.5,55.5 - parent: 12 - - uid: 20544 - components: - - type: Transform - pos: -43.5,53.5 - parent: 12 - - uid: 20545 - components: - - type: Transform - pos: -42.5,55.5 - parent: 12 - - uid: 20546 - components: - - type: Transform - pos: -41.5,55.5 - parent: 12 - - uid: 20547 - components: - - type: Transform - pos: -40.5,55.5 - parent: 12 - - uid: 20548 - components: - - type: Transform - pos: -39.5,55.5 - parent: 12 - - uid: 20549 - components: - - type: Transform - pos: -38.5,55.5 - parent: 12 - - uid: 20550 - components: - - type: Transform - pos: -37.5,55.5 - parent: 12 - - uid: 20551 - components: - - type: Transform - pos: -37.5,56.5 - parent: 12 - - uid: 20555 - components: - - type: Transform - pos: -44.5,54.5 - parent: 12 - - uid: 20556 - components: - - type: Transform - pos: -43.5,54.5 - parent: 12 - - uid: 20557 - components: - - type: Transform - pos: -42.5,54.5 - parent: 12 - - uid: 20558 - components: - - type: Transform - pos: -43.5,52.5 - parent: 12 - - uid: 20559 - components: - - type: Transform - pos: -43.5,51.5 - parent: 12 - - uid: 20560 - components: - - type: Transform - pos: -42.5,51.5 - parent: 12 - - uid: 20561 - components: - - type: Transform - pos: -44.5,51.5 - parent: 12 - - uid: 20563 - components: - - type: Transform - pos: -45.5,51.5 - parent: 12 - - uid: 20567 - components: - - type: Transform - pos: -46.5,52.5 - parent: 12 - - uid: 20568 - components: - - type: Transform - pos: -37.5,50.5 - parent: 12 - - uid: 20569 - components: - - type: Transform - pos: -37.5,51.5 - parent: 12 - - uid: 20767 - components: - - type: Transform - pos: -25.5,38.5 - parent: 12 - - uid: 20768 - components: - - type: Transform - pos: -24.5,38.5 - parent: 12 - - uid: 20783 - components: - - type: Transform - pos: -48.5,54.5 - parent: 12 - - uid: 20795 - components: - - type: Transform - pos: -42.5,59.5 - parent: 12 - - uid: 20796 - components: - - type: Transform - pos: -33.5,64.5 - parent: 12 - - uid: 20797 - components: - - type: Transform - pos: -33.5,65.5 - parent: 12 - - uid: 20798 - components: - - type: Transform - pos: -33.5,66.5 - parent: 12 - - uid: 20799 - components: - - type: Transform - pos: -33.5,67.5 - parent: 12 - - uid: 20800 - components: - - type: Transform - pos: -33.5,68.5 - parent: 12 - - uid: 20801 - components: - - type: Transform - pos: -34.5,68.5 - parent: 12 - - uid: 20838 - components: - - type: Transform - pos: -8.5,-22.5 - parent: 12 - - uid: 21085 - components: - - type: Transform - pos: -23.5,31.5 - parent: 12 - - uid: 21087 - components: - - type: Transform - pos: -22.5,31.5 - parent: 12 - - uid: 21088 - components: - - type: Transform - pos: -21.5,31.5 - parent: 12 - - uid: 21089 - components: - - type: Transform - pos: -20.5,31.5 - parent: 12 - - uid: 21090 - components: - - type: Transform - pos: -19.5,31.5 - parent: 12 - - uid: 21091 - components: - - type: Transform - pos: -18.5,31.5 - parent: 12 - - uid: 21092 - components: - - type: Transform - pos: -20.5,32.5 - parent: 12 - - uid: 21168 - components: - - type: Transform - pos: -19.5,33.5 - parent: 12 - - uid: 21169 - components: - - type: Transform - pos: -18.5,33.5 - parent: 12 - - uid: 21170 - components: - - type: Transform - pos: -17.5,33.5 - parent: 12 - - uid: 21171 - components: - - type: Transform - pos: -16.5,33.5 - parent: 12 - - uid: 21172 - components: - - type: Transform - pos: -15.5,33.5 - parent: 12 - - uid: 21173 - components: - - type: Transform - pos: -15.5,34.5 - parent: 12 - - uid: 21174 - components: - - type: Transform - pos: -15.5,35.5 - parent: 12 - - uid: 21175 - components: - - type: Transform - pos: -15.5,36.5 - parent: 12 - - uid: 21176 - components: - - type: Transform - pos: -15.5,37.5 - parent: 12 - - uid: 21177 - components: - - type: Transform - pos: -15.5,38.5 - parent: 12 - - uid: 21178 - components: - - type: Transform - pos: -15.5,39.5 - parent: 12 - - uid: 21179 - components: - - type: Transform - pos: -15.5,40.5 - parent: 12 - - uid: 21180 - components: - - type: Transform - pos: -15.5,41.5 - parent: 12 - - uid: 21181 - components: - - type: Transform - pos: -15.5,42.5 - parent: 12 - - uid: 21182 - components: - - type: Transform - pos: -15.5,43.5 - parent: 12 - - uid: 21183 - components: - - type: Transform - pos: -15.5,44.5 - parent: 12 - - uid: 21184 - components: - - type: Transform - pos: -15.5,45.5 - parent: 12 - - uid: 21185 - components: - - type: Transform - pos: -14.5,45.5 - parent: 12 - - uid: 21186 - components: - - type: Transform - pos: -13.5,45.5 - parent: 12 - - uid: 21187 - components: - - type: Transform - pos: -12.5,45.5 - parent: 12 - - uid: 21188 - components: - - type: Transform - pos: -11.5,45.5 - parent: 12 - - uid: 21190 - components: - - type: Transform - pos: -11.5,46.5 - parent: 12 - - uid: 21552 - components: - - type: Transform - pos: -6.5,32.5 - parent: 12 - - uid: 21604 - components: - - type: Transform - pos: 11.5,-15.5 - parent: 12 - - uid: 21705 - components: - - type: Transform - pos: 60.5,-27.5 - parent: 12 - - uid: 21851 - components: - - type: Transform - pos: 60.5,-26.5 - parent: 12 - - uid: 21852 - components: - - type: Transform - pos: 60.5,-25.5 - parent: 12 - - uid: 21853 - components: - - type: Transform - pos: 60.5,-23.5 - parent: 12 - - uid: 21884 - components: - - type: Transform - pos: 13.5,-15.5 - parent: 12 - - uid: 21885 - components: - - type: Transform - pos: 14.5,-16.5 - parent: 12 - - uid: 21901 - components: - - type: Transform - pos: 39.5,-6.5 - parent: 12 - - uid: 22001 - components: - - type: Transform - pos: -39.5,-25.5 - parent: 12 - - uid: 22007 - components: - - type: Transform - pos: 0.5,-14.5 - parent: 12 - - uid: 22008 - components: - - type: Transform - pos: 32.5,-6.5 - parent: 12 - - uid: 22030 - components: - - type: Transform - pos: -32.5,70.5 - parent: 12 - - uid: 22054 - components: - - type: Transform - pos: -0.5,1.5 - parent: 12 - - uid: 22073 - components: - - type: Transform - pos: 36.5,-3.5 - parent: 12 - - uid: 22083 - components: - - type: Transform - pos: 54.5,12.5 - parent: 12 - - uid: 22103 - components: - - type: Transform - pos: -41.5,52.5 - parent: 12 - - uid: 22188 - components: - - type: Transform - pos: 39.5,-5.5 - parent: 12 - - uid: 22208 - components: - - type: Transform - pos: 38.5,-5.5 - parent: 12 - - uid: 22209 - components: - - type: Transform - pos: 37.5,-5.5 - parent: 12 - - uid: 22210 - components: - - type: Transform - pos: 36.5,-5.5 - parent: 12 - - uid: 22211 - components: - - type: Transform - pos: 35.5,-5.5 - parent: 12 - - uid: 22212 - components: - - type: Transform - pos: 34.5,-5.5 - parent: 12 - - uid: 22213 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 12 - - uid: 22214 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 12 - - uid: 22215 - components: - - type: Transform - pos: 37.5,-6.5 - parent: 12 - - uid: 22227 - components: - - type: Transform - pos: 40.5,-5.5 - parent: 12 - - uid: 22311 - components: - - type: Transform - pos: 39.5,18.5 - parent: 12 - - uid: 22524 - components: - - type: Transform - pos: -2.5,34.5 - parent: 12 - - uid: 22709 - components: - - type: Transform - pos: 76.5,11.5 - parent: 12 - - uid: 23123 - components: - - type: Transform - pos: -31.5,70.5 - parent: 12 - - uid: 23130 - components: - - type: Transform - pos: 16.5,-16.5 - parent: 12 - - uid: 23884 - components: - - type: Transform - pos: -50.5,55.5 - parent: 12 - - uid: 24661 - components: - - type: Transform - pos: -20.5,64.5 - parent: 12 - - uid: 24669 - components: - - type: Transform - pos: -51.5,46.5 - parent: 12 - - uid: 24714 - components: - - type: Transform - pos: 12.5,65.5 - parent: 12 - - uid: 24715 - components: - - type: Transform - pos: 11.5,65.5 - parent: 12 - - uid: 24716 - components: - - type: Transform - pos: 10.5,65.5 - parent: 12 - - uid: 24717 - components: - - type: Transform - pos: 9.5,65.5 - parent: 12 - - uid: 24718 - components: - - type: Transform - pos: 8.5,65.5 - parent: 12 - - uid: 24719 - components: - - type: Transform - pos: 7.5,65.5 - parent: 12 - - uid: 24720 - components: - - type: Transform - pos: 7.5,64.5 - parent: 12 - - uid: 24721 - components: - - type: Transform - pos: 7.5,63.5 - parent: 12 - - uid: 24722 - components: - - type: Transform - pos: 7.5,62.5 - parent: 12 - - uid: 24723 - components: - - type: Transform - pos: 6.5,62.5 - parent: 12 - - uid: 24724 - components: - - type: Transform - pos: 5.5,62.5 - parent: 12 - - uid: 24725 - components: - - type: Transform - pos: 5.5,63.5 - parent: 12 - - uid: 24726 - components: - - type: Transform - pos: 4.5,62.5 - parent: 12 - - uid: 24727 - components: - - type: Transform - pos: 3.5,62.5 - parent: 12 - - uid: 24728 - components: - - type: Transform - pos: 2.5,62.5 - parent: 12 - - uid: 24729 - components: - - type: Transform - pos: 1.5,62.5 - parent: 12 - - uid: 24730 - components: - - type: Transform - pos: 0.5,62.5 - parent: 12 - - uid: 24731 - components: - - type: Transform - pos: -0.5,62.5 - parent: 12 - - uid: 24732 - components: - - type: Transform - pos: -0.5,63.5 - parent: 12 - - uid: 24733 - components: - - type: Transform - pos: -0.5,65.5 - parent: 12 - - uid: 24734 - components: - - type: Transform - pos: -0.5,66.5 - parent: 12 - - uid: 24735 - components: - - type: Transform - pos: -0.5,64.5 - parent: 12 - - uid: 24736 - components: - - type: Transform - pos: -0.5,68.5 - parent: 12 - - uid: 24737 - components: - - type: Transform - pos: -0.5,69.5 - parent: 12 - - uid: 24738 - components: - - type: Transform - pos: -0.5,67.5 - parent: 12 - - uid: 24739 - components: - - type: Transform - pos: -1.5,69.5 - parent: 12 - - uid: 24740 - components: - - type: Transform - pos: -2.5,69.5 - parent: 12 - - uid: 24741 - components: - - type: Transform - pos: -3.5,69.5 - parent: 12 - - uid: 24742 - components: - - type: Transform - pos: -4.5,69.5 - parent: 12 - - uid: 24743 - components: - - type: Transform - pos: -5.5,69.5 - parent: 12 - - uid: 24744 - components: - - type: Transform - pos: -6.5,69.5 - parent: 12 - - uid: 24745 - components: - - type: Transform - pos: -7.5,69.5 - parent: 12 - - uid: 24746 - components: - - type: Transform - pos: -8.5,69.5 - parent: 12 - - uid: 24747 - components: - - type: Transform - pos: -9.5,69.5 - parent: 12 - - uid: 24748 - components: - - type: Transform - pos: -10.5,69.5 - parent: 12 - - uid: 24749 - components: - - type: Transform - pos: -11.5,69.5 - parent: 12 - - uid: 24750 - components: - - type: Transform - pos: -12.5,69.5 - parent: 12 - - uid: 24751 - components: - - type: Transform - pos: -13.5,69.5 - parent: 12 - - uid: 24752 - components: - - type: Transform - pos: -13.5,68.5 - parent: 12 - - uid: 24753 - components: - - type: Transform - pos: -14.5,68.5 - parent: 12 - - uid: 24754 - components: - - type: Transform - pos: -15.5,68.5 - parent: 12 - - uid: 24755 - components: - - type: Transform - pos: -16.5,68.5 - parent: 12 - - uid: 24756 - components: - - type: Transform - pos: -17.5,68.5 - parent: 12 - - uid: 24757 - components: - - type: Transform - pos: -18.5,68.5 - parent: 12 - - uid: 24758 - components: - - type: Transform - pos: -19.5,68.5 - parent: 12 - - uid: 24759 - components: - - type: Transform - pos: -19.5,67.5 - parent: 12 - - uid: 24760 - components: - - type: Transform - pos: -19.5,65.5 - parent: 12 - - uid: 24761 - components: - - type: Transform - pos: -19.5,64.5 - parent: 12 - - uid: 24762 - components: - - type: Transform - pos: -19.5,63.5 - parent: 12 - - uid: 24763 - components: - - type: Transform - pos: -19.5,62.5 - parent: 12 - - uid: 24764 - components: - - type: Transform - pos: -19.5,61.5 - parent: 12 - - uid: 24765 - components: - - type: Transform - pos: -19.5,60.5 - parent: 12 - - uid: 24766 - components: - - type: Transform - pos: -19.5,59.5 - parent: 12 - - uid: 24767 - components: - - type: Transform - pos: -19.5,58.5 - parent: 12 - - uid: 24768 - components: - - type: Transform - pos: -19.5,57.5 - parent: 12 - - uid: 24769 - components: - - type: Transform - pos: -19.5,56.5 - parent: 12 - - uid: 24770 - components: - - type: Transform - pos: -19.5,55.5 - parent: 12 - - uid: 24771 - components: - - type: Transform - pos: -19.5,54.5 - parent: 12 - - uid: 24772 - components: - - type: Transform - pos: -19.5,66.5 - parent: 12 - - uid: 24773 - components: - - type: Transform - pos: -19.5,52.5 - parent: 12 - - uid: 24774 - components: - - type: Transform - pos: -19.5,51.5 - parent: 12 - - uid: 24775 - components: - - type: Transform - pos: -19.5,53.5 - parent: 12 - - uid: 24776 - components: - - type: Transform - pos: -19.5,50.5 - parent: 12 - - uid: 24777 - components: - - type: Transform - pos: -20.5,50.5 - parent: 12 - - uid: 24778 - components: - - type: Transform - pos: -21.5,50.5 - parent: 12 - - uid: 24779 - components: - - type: Transform - pos: -22.5,50.5 - parent: 12 - - uid: 24782 - components: - - type: Transform - pos: -9.5,68.5 - parent: 12 - - uid: 24783 - components: - - type: Transform - pos: -9.5,67.5 - parent: 12 - - uid: 24784 - components: - - type: Transform - pos: -9.5,66.5 - parent: 12 - - uid: 24785 - components: - - type: Transform - pos: -9.5,65.5 - parent: 12 - - uid: 24786 - components: - - type: Transform - pos: -9.5,64.5 - parent: 12 - - uid: 24787 - components: - - type: Transform - pos: -9.5,63.5 - parent: 12 - - uid: 24788 - components: - - type: Transform - pos: -9.5,62.5 - parent: 12 - - uid: 24789 - components: - - type: Transform - pos: -9.5,61.5 - parent: 12 - - uid: 24790 - components: - - type: Transform - pos: -9.5,60.5 - parent: 12 - - uid: 24791 - components: - - type: Transform - pos: -9.5,59.5 - parent: 12 - - uid: 24792 - components: - - type: Transform - pos: -9.5,58.5 - parent: 12 - - uid: 24793 - components: - - type: Transform - pos: -8.5,58.5 - parent: 12 - - uid: 24794 - components: - - type: Transform - pos: -8.5,57.5 - parent: 12 - - uid: 24796 - components: - - type: Transform - pos: -9.5,57.5 - parent: 12 - - uid: 24797 - components: - - type: Transform - pos: -9.5,56.5 - parent: 12 - - uid: 24798 - components: - - type: Transform - pos: -9.5,55.5 - parent: 12 - - uid: 24799 - components: - - type: Transform - pos: -9.5,54.5 - parent: 12 - - uid: 24800 - components: - - type: Transform - pos: -9.5,53.5 - parent: 12 - - uid: 24801 - components: - - type: Transform - pos: -9.5,52.5 - parent: 12 - - uid: 24802 - components: - - type: Transform - pos: -9.5,51.5 - parent: 12 - - uid: 24806 - components: - - type: Transform - pos: -11.5,51.5 - parent: 12 - - uid: 24807 - components: - - type: Transform - pos: -10.5,51.5 - parent: 12 - - uid: 24986 - components: - - type: Transform - pos: 72.5,11.5 - parent: 12 - - uid: 25062 - components: - - type: Transform - pos: 45.5,45.5 - parent: 12 - - uid: 25063 - components: - - type: Transform - pos: 45.5,46.5 - parent: 12 - - uid: 25064 - components: - - type: Transform - pos: 45.5,48.5 - parent: 12 - - uid: 25065 - components: - - type: Transform - pos: 45.5,49.5 - parent: 12 - - uid: 25066 - components: - - type: Transform - pos: 45.5,50.5 - parent: 12 - - uid: 25067 - components: - - type: Transform - pos: 45.5,47.5 - parent: 12 - - uid: 25068 - components: - - type: Transform - pos: 45.5,51.5 - parent: 12 - - uid: 25069 - components: - - type: Transform - pos: 45.5,52.5 - parent: 12 - - uid: 25070 - components: - - type: Transform - pos: 45.5,53.5 - parent: 12 - - uid: 25071 - components: - - type: Transform - pos: 45.5,54.5 - parent: 12 - - uid: 25072 - components: - - type: Transform - pos: 51.5,44.5 - parent: 12 - - uid: 25073 - components: - - type: Transform - pos: 52.5,44.5 - parent: 12 - - uid: 25074 - components: - - type: Transform - pos: 53.5,44.5 - parent: 12 - - uid: 25075 - components: - - type: Transform - pos: 54.5,44.5 - parent: 12 - - uid: 25076 - components: - - type: Transform - pos: 55.5,44.5 - parent: 12 - - uid: 25077 - components: - - type: Transform - pos: 55.5,45.5 - parent: 12 - - uid: 25078 - components: - - type: Transform - pos: 56.5,45.5 - parent: 12 - - uid: 25079 - components: - - type: Transform - pos: 57.5,45.5 - parent: 12 - - uid: 25080 - components: - - type: Transform - pos: 58.5,45.5 - parent: 12 - - uid: 25081 - components: - - type: Transform - pos: 59.5,45.5 - parent: 12 - - uid: 25082 - components: - - type: Transform - pos: 60.5,45.5 - parent: 12 - - uid: 25083 - components: - - type: Transform - pos: 60.5,44.5 - parent: 12 - - uid: 25084 - components: - - type: Transform - pos: 61.5,44.5 - parent: 12 - - uid: 25085 - components: - - type: Transform - pos: 62.5,44.5 - parent: 12 - - uid: 25086 - components: - - type: Transform - pos: 63.5,44.5 - parent: 12 - - uid: 25087 - components: - - type: Transform - pos: 64.5,44.5 - parent: 12 - - uid: 25088 - components: - - type: Transform - pos: 65.5,44.5 - parent: 12 - - uid: 25099 - components: - - type: Transform - pos: 62.5,-23.5 - parent: 12 - - uid: 25107 - components: - - type: Transform - pos: 60.5,46.5 - parent: 12 - - uid: 25369 - components: - - type: Transform - pos: -29.5,-42.5 - parent: 12 - - uid: 25390 - components: - - type: Transform - pos: -53.5,46.5 - parent: 12 - - uid: 25405 - components: - - type: Transform - pos: -22.5,57.5 - parent: 12 - - uid: 25441 - components: - - type: Transform - pos: 40.5,17.5 - parent: 12 - - uid: 25443 - components: - - type: Transform - pos: 41.5,17.5 - parent: 12 - - uid: 25445 - components: - - type: Transform - pos: 41.5,16.5 - parent: 12 - - uid: 25446 - components: - - type: Transform - pos: -49.5,46.5 - parent: 12 - - uid: 25453 - components: - - type: Transform - pos: -52.5,46.5 - parent: 12 - - uid: 25455 - components: - - type: Transform - pos: -27.5,60.5 - parent: 12 - - uid: 25456 - components: - - type: Transform - pos: -27.5,61.5 - parent: 12 - - uid: 25458 - components: - - type: Transform - pos: -27.5,63.5 - parent: 12 - - uid: 25459 - components: - - type: Transform - pos: -27.5,64.5 - parent: 12 - - uid: 25471 - components: - - type: Transform - pos: 41.5,15.5 - parent: 12 - - uid: 25472 - components: - - type: Transform - pos: 41.5,14.5 - parent: 12 - - uid: 25473 - components: - - type: Transform - pos: 41.5,13.5 - parent: 12 - - uid: 25474 - components: - - type: Transform - pos: 41.5,12.5 - parent: 12 - - uid: 25475 - components: - - type: Transform - pos: 41.5,11.5 - parent: 12 - - uid: 25476 - components: - - type: Transform - pos: 40.5,11.5 - parent: 12 - - uid: 25477 - components: - - type: Transform - pos: 39.5,11.5 - parent: 12 - - uid: 25478 - components: - - type: Transform - pos: 38.5,11.5 - parent: 12 - - uid: 25482 - components: - - type: Transform - pos: 37.5,11.5 - parent: 12 - - uid: 25484 - components: - - type: Transform - pos: 36.5,11.5 - parent: 12 - - uid: 25539 - components: - - type: Transform - pos: 58.5,-2.5 - parent: 12 - - uid: 25540 - components: - - type: Transform - pos: 58.5,-1.5 - parent: 12 - - uid: 25542 - components: - - type: Transform - pos: 35.5,11.5 - parent: 12 - - uid: 25543 - components: - - type: Transform - pos: 34.5,11.5 - parent: 12 - - uid: 25544 - components: - - type: Transform - pos: 34.5,12.5 - parent: 12 - - uid: 25545 - components: - - type: Transform - pos: 33.5,12.5 - parent: 12 - - uid: 25550 - components: - - type: Transform - pos: 74.5,11.5 - parent: 12 - - uid: 25560 - components: - - type: Transform - pos: 71.5,-2.5 - parent: 12 - - uid: 25633 - components: - - type: Transform - pos: -28.5,7.5 - parent: 12 - - uid: 25634 - components: - - type: Transform - pos: -29.5,7.5 - parent: 12 - - uid: 25635 - components: - - type: Transform - pos: -30.5,7.5 - parent: 12 - - uid: 25636 - components: - - type: Transform - pos: -30.5,6.5 - parent: 12 - - uid: 25637 - components: - - type: Transform - pos: -30.5,5.5 - parent: 12 - - uid: 25638 - components: - - type: Transform - pos: -31.5,5.5 - parent: 12 - - uid: 25639 - components: - - type: Transform - pos: -32.5,5.5 - parent: 12 - - uid: 25640 - components: - - type: Transform - pos: -29.5,5.5 - parent: 12 - - uid: 25641 - components: - - type: Transform - pos: -33.5,5.5 - parent: 12 - - uid: 25642 - components: - - type: Transform - pos: -33.5,6.5 - parent: 12 - - uid: 25643 - components: - - type: Transform - pos: -33.5,7.5 - parent: 12 - - uid: 25644 - components: - - type: Transform - pos: -33.5,8.5 - parent: 12 - - uid: 25645 - components: - - type: Transform - pos: -33.5,9.5 - parent: 12 - - uid: 25646 - components: - - type: Transform - pos: -33.5,10.5 - parent: 12 - - uid: 25647 - components: - - type: Transform - pos: -33.5,11.5 - parent: 12 - - uid: 25648 - components: - - type: Transform - pos: -33.5,12.5 - parent: 12 - - uid: 25649 - components: - - type: Transform - pos: -33.5,13.5 - parent: 12 - - uid: 25650 - components: - - type: Transform - pos: -32.5,13.5 - parent: 12 - - uid: 25651 - components: - - type: Transform - pos: -31.5,13.5 - parent: 12 - - uid: 25652 - components: - - type: Transform - pos: -30.5,13.5 - parent: 12 - - uid: 25653 - components: - - type: Transform - pos: -29.5,13.5 - parent: 12 - - uid: 25654 - components: - - type: Transform - pos: -30.5,8.5 - parent: 12 - - uid: 25655 - components: - - type: Transform - pos: -30.5,9.5 - parent: 12 - - uid: 25656 - components: - - type: Transform - pos: -30.5,10.5 - parent: 12 - - uid: 25657 - components: - - type: Transform - pos: -30.5,11.5 - parent: 12 - - uid: 25658 - components: - - type: Transform - pos: -30.5,12.5 - parent: 12 - - uid: 25824 - components: - - type: Transform - pos: 18.5,-16.5 - parent: 12 - - uid: 25825 - components: - - type: Transform - pos: 8.5,-21.5 - parent: 12 - - uid: 25826 - components: - - type: Transform - pos: 10.5,-21.5 - parent: 12 - - uid: 25827 - components: - - type: Transform - pos: 12.5,-21.5 - parent: 12 - - uid: 25828 - components: - - type: Transform - pos: 14.5,-21.5 - parent: 12 - - uid: 25829 - components: - - type: Transform - pos: 16.5,-21.5 - parent: 12 - - uid: 25830 - components: - - type: Transform - pos: 9.5,-15.5 - parent: 12 - - uid: 25833 - components: - - type: Transform - pos: 32.5,12.5 - parent: 12 - - uid: 25837 - components: - - type: Transform - pos: 32.5,13.5 - parent: 12 - - uid: 25838 - components: - - type: Transform - pos: 32.5,14.5 - parent: 12 - - uid: 26111 - components: - - type: Transform - pos: 40.5,-10.5 - parent: 12 - - uid: 26208 - components: - - type: Transform - pos: -45.5,57.5 - parent: 12 - - uid: 26209 - components: - - type: Transform - pos: -25.5,-27.5 - parent: 12 - - uid: 26210 - components: - - type: Transform - pos: -26.5,-27.5 - parent: 12 - - uid: 26211 - components: - - type: Transform - pos: -27.5,-27.5 - parent: 12 - - uid: 26263 - components: - - type: Transform - pos: 20.5,-21.5 - parent: 12 - - uid: 26264 - components: - - type: Transform - pos: 21.5,-21.5 - parent: 12 - - uid: 26276 - components: - - type: Transform - pos: 23.5,-21.5 - parent: 12 - - uid: 26311 - components: - - type: Transform - pos: 22.5,-21.5 - parent: 12 - - uid: 26368 - components: - - type: Transform - pos: 24.5,-21.5 - parent: 12 - - uid: 26382 - components: - - type: Transform - pos: 19.5,-22.5 - parent: 12 - - uid: 26383 - components: - - type: Transform - pos: 19.5,-20.5 - parent: 12 - - uid: 26451 - components: - - type: Transform - pos: 57.5,4.5 - parent: 12 - - uid: 26478 - components: - - type: Transform - pos: 17.5,7.5 - parent: 12 - - uid: 26512 - components: - - type: Transform - pos: 58.5,0.5 - parent: 12 - - uid: 26513 - components: - - type: Transform - pos: 58.5,1.5 - parent: 12 - - uid: 26514 - components: - - type: Transform - pos: 58.5,3.5 - parent: 12 - - uid: 26515 - components: - - type: Transform - pos: 58.5,2.5 - parent: 12 - - uid: 26516 - components: - - 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 - pos: 21.5,5.5 - parent: 12 - - uid: 26597 - components: - - type: Transform - pos: 15.5,9.5 - parent: 12 - - uid: 26644 - components: - - type: Transform - pos: 17.5,6.5 - parent: 12 - - uid: 26688 - components: - - type: Transform - pos: 65.5,4.5 - parent: 12 - - uid: 26703 - components: - - type: Transform - pos: 65.5,1.5 - parent: 12 - - uid: 26708 - components: - - type: Transform - pos: 65.5,2.5 - parent: 12 - - uid: 26709 - components: - - type: Transform - pos: 65.5,-0.5 - parent: 12 - - uid: 26710 - components: - - type: Transform - pos: 65.5,-1.5 - parent: 12 - - uid: 26711 - components: - - type: Transform - pos: 65.5,9.5 - parent: 12 - - uid: 26720 - components: - - type: Transform - pos: 65.5,7.5 - parent: 12 - - uid: 26722 - components: - - type: Transform - pos: 65.5,6.5 - parent: 12 - - uid: 26723 - components: - - type: Transform - pos: 65.5,5.5 - parent: 12 - - uid: 26724 - components: - - type: Transform - pos: 65.5,11.5 - parent: 12 - - uid: 26730 - components: - - type: Transform - pos: 65.5,3.5 - parent: 12 - - uid: 26733 - components: - - type: Transform - pos: 63.5,3.5 - parent: 12 - - uid: 26734 - components: - - type: Transform - pos: 60.5,4.5 - parent: 12 - - uid: 26741 - components: - - type: Transform - pos: 59.5,4.5 - parent: 12 - - uid: 26761 - components: - - type: Transform - pos: 61.5,4.5 - parent: 12 - - uid: 26762 - components: - - type: Transform - pos: 63.5,4.5 - parent: 12 - - uid: 26779 - components: - - type: Transform - pos: 22.5,5.5 - parent: 12 - - uid: 26806 - components: - - type: Transform - pos: 63.5,5.5 - parent: 12 - - uid: 26807 - components: - - type: Transform - pos: 63.5,6.5 - parent: 12 - - uid: 26808 - components: - - type: Transform - pos: 63.5,2.5 - parent: 12 - - uid: 26844 - components: - - type: Transform - pos: 54.5,5.5 - parent: 12 - - uid: 26845 - components: - - type: Transform - pos: 54.5,4.5 - parent: 12 - - uid: 26846 - components: - - type: Transform - pos: 54.5,3.5 - parent: 12 - - uid: 26847 - components: - - type: Transform - pos: 54.5,2.5 - parent: 12 - - uid: 26871 - components: - - type: Transform - pos: 39.5,1.5 - parent: 12 - - uid: 26872 - components: - - type: Transform - pos: 40.5,1.5 - parent: 12 - - uid: 26884 - components: - - type: Transform - pos: 62.5,9.5 - parent: 12 - - uid: 26885 - components: - - type: Transform - pos: 57.5,6.5 - parent: 12 - - uid: 27091 - components: - - type: Transform - pos: 38.5,0.5 - parent: 12 - - uid: 27114 - components: - - type: Transform - pos: 54.5,13.5 - parent: 12 - - uid: 27253 - components: - - type: Transform - pos: -32.5,-35.5 - parent: 12 - - uid: 27254 - components: - - type: Transform - pos: -33.5,-35.5 - parent: 12 - - uid: 27358 - components: - - type: Transform - pos: 66.5,44.5 - parent: 12 - - uid: 27359 - components: - - type: Transform - pos: 67.5,44.5 - parent: 12 - - uid: 27360 - components: - - type: Transform - pos: 68.5,44.5 - parent: 12 - - uid: 27361 - components: - - type: Transform - pos: 69.5,44.5 - parent: 12 - - uid: 27362 - components: - - type: Transform - pos: 71.5,44.5 - parent: 12 - - uid: 27363 - components: - - type: Transform - pos: 72.5,44.5 - parent: 12 - - uid: 27364 - components: - - type: Transform - pos: 73.5,44.5 - parent: 12 - - uid: 27365 - components: - - type: Transform - pos: 74.5,44.5 - parent: 12 - - uid: 27366 - components: - - type: Transform - pos: 75.5,44.5 - parent: 12 - - uid: 27367 - components: - - type: Transform - pos: 70.5,44.5 - parent: 12 - - uid: 27368 - components: - - type: Transform - pos: 75.5,45.5 - parent: 12 - - uid: 27369 - components: - - type: Transform - pos: 75.5,46.5 - parent: 12 - - uid: 27370 - components: - - type: Transform - pos: 75.5,47.5 - parent: 12 - - uid: 27371 - components: - - type: Transform - pos: 75.5,48.5 - parent: 12 - - uid: 27372 - components: - - type: Transform - pos: 75.5,49.5 - parent: 12 - - uid: 27373 - components: - - type: Transform - pos: 75.5,50.5 - parent: 12 - - uid: 27374 - components: - - type: Transform - pos: 74.5,50.5 - parent: 12 - - uid: 27375 - components: - - type: Transform - pos: 73.5,50.5 - parent: 12 - - uid: 27389 - components: - - type: Transform - pos: -31.5,-35.5 - parent: 12 - - uid: 27390 - components: - - type: Transform - pos: -34.5,-35.5 - parent: 12 - - uid: 27567 - components: - - type: Transform - pos: -44.5,-29.5 - parent: 12 - - uid: 27568 - components: - - type: Transform - pos: -45.5,-29.5 - parent: 12 - - uid: 27569 - components: - - type: Transform - pos: -46.5,-29.5 - parent: 12 - - uid: 27570 - components: - - type: Transform - pos: -47.5,-29.5 - parent: 12 - - uid: 27571 - components: - - type: Transform - pos: -48.5,-29.5 - parent: 12 - - uid: 27572 - components: - - type: Transform - pos: -48.5,-30.5 - parent: 12 - - uid: 27573 - components: - - type: Transform - pos: -49.5,-30.5 - parent: 12 - - uid: 27574 - components: - - type: Transform - pos: -50.5,-30.5 - parent: 12 - - uid: 27575 - components: - - type: Transform - pos: -51.5,-30.5 - parent: 12 - - uid: 27576 - components: - - type: Transform - pos: -53.5,-30.5 - parent: 12 - - uid: 27577 - components: - - type: Transform - pos: -52.5,-30.5 - parent: 12 - - uid: 27578 - components: - - type: Transform - pos: -53.5,-31.5 - parent: 12 - - uid: 27579 - components: - - type: Transform - pos: -53.5,-32.5 - parent: 12 - - uid: 27580 - components: - - type: Transform - pos: -53.5,-33.5 - parent: 12 - - uid: 27581 - components: - - type: Transform - pos: -53.5,-34.5 - parent: 12 - - uid: 27582 - components: - - type: Transform - pos: -53.5,-36.5 - parent: 12 - - uid: 27583 - components: - - type: Transform - pos: -53.5,-37.5 - parent: 12 - - uid: 27584 - components: - - type: Transform - pos: -53.5,-35.5 - parent: 12 - - uid: 27585 - components: - - type: Transform - pos: -53.5,-39.5 - parent: 12 - - uid: 27586 - components: - - type: Transform - pos: -53.5,-38.5 - parent: 12 - - uid: 27587 - components: - - type: Transform - pos: -53.5,-40.5 - parent: 12 - - uid: 27588 - components: - - type: Transform - pos: -53.5,-41.5 - parent: 12 - - uid: 27589 - components: - - type: Transform - pos: -53.5,-42.5 - parent: 12 - - uid: 27590 - components: - - type: Transform - pos: -52.5,-42.5 - parent: 12 - - uid: 27591 - components: - - type: Transform - pos: -51.5,-42.5 - parent: 12 - - uid: 27592 - components: - - type: Transform - pos: -50.5,-42.5 - parent: 12 - - uid: 27593 - components: - - type: Transform - pos: -49.5,-42.5 - parent: 12 - - uid: 27594 - components: - - type: Transform - pos: -48.5,-42.5 - parent: 12 - - uid: 27595 - components: - - type: Transform - pos: -47.5,-42.5 - parent: 12 - - uid: 27596 - components: - - type: Transform - pos: -47.5,-43.5 - parent: 12 - - uid: 27755 - components: - - type: Transform - pos: -49.5,-43.5 - parent: 12 - - uid: 27756 - components: - - type: Transform - pos: -49.5,-44.5 - parent: 12 - - uid: 27757 - components: - - type: Transform - pos: -49.5,-45.5 - parent: 12 - - uid: 27758 - components: - - type: Transform - pos: -49.5,-46.5 - parent: 12 - - uid: 27759 - components: - - type: Transform - pos: -49.5,-47.5 - parent: 12 - - uid: 27760 - components: - - type: Transform - pos: -49.5,-48.5 - parent: 12 - - uid: 27761 - components: - - type: Transform - pos: -49.5,-49.5 - parent: 12 - - uid: 27762 - components: - - type: Transform - pos: -49.5,-50.5 - parent: 12 - - uid: 27763 - components: - - type: Transform - pos: -48.5,-50.5 - parent: 12 - - uid: 27764 - components: - - type: Transform - pos: -48.5,-51.5 - parent: 12 - - uid: 27765 - components: - - type: Transform - pos: -48.5,-52.5 - parent: 12 - - uid: 27867 - components: - - type: Transform - pos: -37.5,-35.5 - parent: 12 - - uid: 27868 - components: - - type: Transform - pos: -38.5,-35.5 - parent: 12 - - uid: 27869 - components: - - type: Transform - pos: -38.5,-36.5 - parent: 12 - - uid: 27870 - components: - - type: Transform - pos: -38.5,-37.5 - parent: 12 - - uid: 27871 - components: - - type: Transform - pos: -38.5,-38.5 - parent: 12 - - uid: 27872 - components: - - type: Transform - pos: -38.5,-39.5 - parent: 12 - - uid: 27873 - components: - - type: Transform - pos: -38.5,-40.5 - parent: 12 - - uid: 27874 - components: - - type: Transform - pos: -38.5,-41.5 - parent: 12 - - uid: 27875 - components: - - type: Transform - pos: -38.5,-42.5 - parent: 12 - - uid: 27876 - components: - - type: Transform - pos: -38.5,-43.5 - parent: 12 - - uid: 27877 - components: - - type: Transform - pos: -38.5,-45.5 - parent: 12 - - uid: 27878 - components: - - type: Transform - pos: -38.5,-46.5 - parent: 12 - - uid: 27879 - components: - - type: Transform - pos: -38.5,-47.5 - parent: 12 - - uid: 27880 - components: - - type: Transform - pos: -38.5,-44.5 - parent: 12 - - uid: 27881 - components: - - type: Transform - pos: -38.5,-49.5 - parent: 12 - - uid: 27882 - components: - - type: Transform - pos: -38.5,-50.5 - parent: 12 - - uid: 27883 - components: - - type: Transform - pos: -38.5,-51.5 - parent: 12 - - uid: 27884 - components: - - type: Transform - pos: -38.5,-48.5 - parent: 12 - - uid: 27913 - components: - - 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 - pos: 54.5,6.5 - parent: 12 - - uid: 28222 - components: - - type: Transform - pos: 54.5,7.5 - parent: 12 - - uid: 28424 - components: - - type: Transform - pos: -25.5,68.5 - parent: 12 - - uid: 28432 - components: - - type: Transform - pos: 6.5,-48.5 - parent: 12 - - uid: 28433 - components: - - type: Transform - pos: 7.5,-48.5 - parent: 12 - - uid: 28466 - components: - - type: Transform - pos: -7.5,-22.5 - parent: 12 - - uid: 28467 - components: - - type: Transform - pos: -7.5,-21.5 - parent: 12 - - uid: 28468 - components: - - type: Transform - pos: -7.5,-20.5 - parent: 12 - - uid: 28469 - components: - - type: Transform - pos: -8.5,-20.5 - parent: 12 - - uid: 28470 - components: - - type: Transform - pos: -8.5,-19.5 - parent: 12 - - uid: 28471 - components: - - type: Transform - pos: -8.5,-18.5 - parent: 12 - - uid: 28472 - components: - - type: Transform - pos: -8.5,-17.5 - parent: 12 - - uid: 28473 - components: - - type: Transform - pos: -8.5,-16.5 - parent: 12 - - uid: 28474 - components: - - type: Transform - pos: -9.5,-16.5 - parent: 12 - - uid: 28503 - components: - - type: Transform - pos: 68.5,11.5 - parent: 12 - - uid: 28523 - components: - - type: Transform - pos: 70.5,11.5 - parent: 12 - - uid: 28531 - components: - - type: Transform - pos: 69.5,11.5 - parent: 12 - - uid: 28655 - components: - - type: Transform - pos: 71.5,11.5 - parent: 12 - - uid: 28783 - components: - - type: Transform - pos: 5.5,-47.5 - parent: 12 - - uid: 28979 - components: - - type: Transform - pos: -46.5,68.5 - parent: 12 - - uid: 28986 - components: - - type: Transform - pos: 6.5,-21.5 - parent: 12 - - uid: 28987 - components: - - type: Transform - pos: 6.5,-20.5 - parent: 12 - - uid: 28988 - components: - - type: Transform - pos: 6.5,-18.5 - parent: 12 - - uid: 28989 - components: - - type: Transform - pos: 6.5,-17.5 - parent: 12 - - uid: 28990 - components: - - type: Transform - pos: 6.5,-16.5 - parent: 12 - - uid: 28991 - components: - - type: Transform - pos: 6.5,-15.5 - parent: 12 - - uid: 28992 - components: - - type: Transform - pos: 6.5,-14.5 - parent: 12 - - uid: 28993 - components: - - type: Transform - pos: 6.5,-13.5 - parent: 12 - - uid: 28994 - components: - - type: Transform - pos: 6.5,-12.5 - parent: 12 - - uid: 28995 - components: - - type: Transform - pos: 6.5,-11.5 - parent: 12 - - uid: 28996 - components: - - type: Transform - pos: 6.5,-19.5 - parent: 12 - - uid: 28997 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 12 - - uid: 29079 - components: - - type: Transform - pos: 30.5,-5.5 - parent: 12 - - uid: 29083 - components: - - type: Transform - pos: 29.5,-5.5 - parent: 12 - - uid: 29084 - components: - - type: Transform - pos: 31.5,-5.5 - parent: 12 - - uid: 29088 - components: - - type: Transform - pos: 30.5,-1.5 - parent: 12 - - uid: 29096 - components: - - type: Transform - pos: 31.5,-1.5 - parent: 12 - - uid: 29097 - components: - - type: Transform - pos: 32.5,-1.5 - parent: 12 - - uid: 29114 - components: - - type: Transform - pos: 33.5,-0.5 - parent: 12 - - uid: 29155 - components: - - type: Transform - pos: 34.5,-0.5 - parent: 12 - - uid: 29156 - components: - - type: Transform - pos: 35.5,-0.5 - parent: 12 - - uid: 29157 - components: - - type: Transform - pos: 36.5,-0.5 - parent: 12 - - uid: 29158 - components: - - type: Transform - pos: 37.5,-0.5 - parent: 12 - - uid: 29206 - components: - - type: Transform - pos: -26.5,62.5 - parent: 12 - - uid: 29217 - components: - - type: Transform - pos: -26.5,67.5 - parent: 12 - - uid: 29221 - components: - - type: Transform - pos: -25.5,69.5 - parent: 12 - - uid: 29252 - components: - - type: Transform - pos: -27.5,62.5 - parent: 12 - - uid: 29253 - components: - - type: Transform - pos: -25.5,62.5 - parent: 12 - - uid: 29280 - components: - - type: Transform - pos: -25.5,70.5 - parent: 12 - - uid: 29325 - components: - - type: Transform - pos: 45.5,3.5 - parent: 12 - - uid: 29326 - components: - - type: Transform - pos: 46.5,3.5 - parent: 12 - - uid: 29327 - components: - - type: Transform - pos: 47.5,3.5 - parent: 12 - - uid: 29328 - components: - - type: Transform - pos: 49.5,3.5 - parent: 12 - - uid: 29329 - components: - - type: Transform - pos: 50.5,3.5 - parent: 12 - - uid: 29330 - components: - - type: Transform - pos: 48.5,3.5 - parent: 12 - - uid: 29372 - components: - - type: Transform - pos: -24.5,72.5 - parent: 12 - - uid: 29388 - components: - - type: Transform - pos: 26.5,-17.5 - parent: 12 - - uid: 29413 - components: - - type: Transform - pos: -48.5,65.5 - parent: 12 - - uid: 29415 - components: - - type: Transform - pos: -46.5,65.5 - parent: 12 - - uid: 29417 - components: - - type: Transform - pos: -45.5,65.5 - parent: 12 - - uid: 29420 - components: - - 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: 29513 - components: - - type: Transform - pos: -25.5,72.5 - parent: 12 - - uid: 29514 - components: - - type: Transform - pos: -22.5,72.5 - parent: 12 - - uid: 29515 - components: - - type: Transform - pos: -21.5,72.5 - parent: 12 - - uid: 29516 - components: - - type: Transform - pos: -23.5,72.5 - parent: 12 - - uid: 29518 - components: - - type: Transform - pos: -21.5,71.5 - parent: 12 - - uid: 29519 - components: - - type: Transform - pos: -21.5,70.5 - parent: 12 - - uid: 29520 - components: - - type: Transform - pos: -21.5,69.5 - parent: 12 - - uid: 29521 - components: - - type: Transform - pos: -21.5,68.5 - parent: 12 - - uid: 29522 - components: - - type: Transform - pos: -21.5,67.5 - parent: 12 - - uid: 29523 - components: - - type: Transform - pos: -21.5,66.5 - parent: 12 - - uid: 29524 - components: - - type: Transform - pos: -21.5,65.5 - parent: 12 - - uid: 29525 - components: - - type: Transform - pos: -22.5,65.5 - parent: 12 - - uid: 29526 - components: - - type: Transform - pos: -23.5,65.5 - parent: 12 - - uid: 29527 - components: - - type: Transform - pos: -23.5,64.5 - parent: 12 - - uid: 29528 - components: - - type: Transform - pos: -23.5,63.5 - parent: 12 - - uid: 29529 - components: - - type: Transform - pos: -23.5,62.5 - parent: 12 - - uid: 29530 - components: - - type: Transform - pos: -23.5,61.5 - parent: 12 - - uid: 29531 - components: - - type: Transform - pos: -24.5,61.5 - parent: 12 - - uid: 29532 - components: - - type: Transform - pos: -25.5,61.5 - parent: 12 - - uid: 29533 - components: - - type: Transform - pos: -50.5,56.5 - parent: 12 - - uid: 29534 - components: - - type: Transform - pos: -50.5,57.5 - parent: 12 - - uid: 29535 - components: - - type: Transform - pos: -50.5,58.5 - parent: 12 - - uid: 29536 - components: - - type: Transform - pos: -50.5,59.5 - parent: 12 - - uid: 29537 - components: - - type: Transform - pos: -50.5,60.5 - parent: 12 - - uid: 29538 - components: - - type: Transform - pos: -50.5,61.5 - parent: 12 - - uid: 29539 - components: - - type: Transform - pos: -26.5,72.5 - parent: 12 - - uid: 29540 - components: - - type: Transform - pos: -27.5,72.5 - parent: 12 - - uid: 29541 - components: - - type: Transform - pos: -28.5,72.5 - parent: 12 - - uid: 29542 - components: - - type: Transform - pos: -29.5,72.5 - parent: 12 - - uid: 29543 - components: - - type: Transform - pos: -30.5,72.5 - parent: 12 - - uid: 29544 - components: - - type: Transform - pos: -31.5,72.5 - parent: 12 - - uid: 29545 - components: - - type: Transform - pos: -32.5,72.5 - parent: 12 - - uid: 29546 - components: - - type: Transform - pos: -33.5,72.5 - parent: 12 - - uid: 29547 - components: - - type: Transform - pos: -34.5,72.5 - parent: 12 - - uid: 29548 - components: - - type: Transform - pos: -35.5,72.5 - parent: 12 - - uid: 29549 - components: - - type: Transform - pos: -36.5,72.5 - parent: 12 - - uid: 29550 - components: - - type: Transform - pos: -37.5,72.5 - parent: 12 - - uid: 29551 - components: - - type: Transform - pos: -38.5,72.5 - parent: 12 - - uid: 29552 - components: - - type: Transform - pos: -39.5,72.5 - parent: 12 - - uid: 29553 - components: - - type: Transform - pos: -40.5,72.5 - parent: 12 - - uid: 29554 - components: - - type: Transform - pos: -41.5,72.5 - parent: 12 - - uid: 29555 - components: - - type: Transform - pos: -41.5,71.5 - parent: 12 - - uid: 29556 - components: - - type: Transform - pos: -41.5,70.5 - parent: 12 - - uid: 29557 - components: - - type: Transform - pos: -41.5,69.5 - parent: 12 - - uid: 29558 - components: - - type: Transform - pos: -41.5,68.5 - parent: 12 - - uid: 29559 - components: - - type: Transform - pos: -41.5,67.5 - parent: 12 - - uid: 29560 - components: - - type: Transform - pos: -41.5,66.5 - parent: 12 - - uid: 29561 - components: - - type: Transform - pos: -41.5,65.5 - parent: 12 - - uid: 29564 - components: - - type: Transform - pos: -43.5,65.5 - parent: 12 - - uid: 29569 - components: - - type: Transform - pos: -47.5,65.5 - parent: 12 - - uid: 29570 - components: - - type: Transform - pos: -50.5,65.5 - parent: 12 - - uid: 29571 - components: - - type: Transform - pos: -50.5,63.5 - parent: 12 - - uid: 29572 - components: - - type: Transform - pos: -50.5,64.5 - parent: 12 - - uid: 29626 - components: - - type: Transform - pos: 58.5,-4.5 - parent: 12 - - uid: 29699 - components: - - type: Transform - pos: -49.5,65.5 - parent: 12 - - uid: 29751 - components: - - type: Transform - pos: -42.5,65.5 - parent: 12 - - uid: 29778 - components: - - type: Transform - pos: -48.5,47.5 - parent: 12 - - uid: 29779 - components: - - type: Transform - pos: -48.5,48.5 - parent: 12 - - uid: 29780 - components: - - type: Transform - pos: -48.5,49.5 - parent: 12 - - uid: 29781 - components: - - type: Transform - pos: -47.5,49.5 - parent: 12 - - uid: 29821 - components: - - type: Transform - pos: 26.5,-21.5 - parent: 12 - - uid: 29823 - components: - - type: Transform - pos: 26.5,-22.5 - parent: 12 - - uid: 29840 - components: - - type: Transform - pos: -30.5,-42.5 - parent: 12 - - uid: 29841 - components: - - type: Transform - pos: -32.5,-42.5 - parent: 12 - - uid: 29843 - components: - - type: Transform - pos: -34.5,-42.5 - parent: 12 - - uid: 29844 - components: - - type: Transform - pos: -33.5,-42.5 - parent: 12 - - uid: 29845 - components: - - type: Transform - pos: -34.5,-41.5 - parent: 12 - - uid: 29846 - components: - - type: Transform - pos: -34.5,-40.5 - parent: 12 - - uid: 29847 - components: - - type: Transform - pos: -34.5,-39.5 - parent: 12 - - uid: 29848 - components: - - type: Transform - pos: -34.5,-38.5 - parent: 12 - - uid: 29849 - components: - - type: Transform - pos: -33.5,-38.5 - parent: 12 - - uid: 29850 - components: - - type: Transform - pos: -32.5,-38.5 - parent: 12 - - uid: 29851 - components: - - type: Transform - pos: -31.5,-38.5 - parent: 12 - - uid: 29936 - components: - - type: Transform - pos: 25.5,-21.5 - parent: 12 - - uid: 29937 - components: - - type: Transform - pos: 24.5,-22.5 - parent: 12 - - uid: 29938 - components: - - type: Transform - pos: 24.5,-20.5 - parent: 12 - - uid: 29939 - components: - - type: Transform - pos: 25.5,-19.5 - parent: 12 - - uid: 29946 - components: - - type: Transform - pos: -11.5,-41.5 - parent: 12 - - uid: 29947 - components: - - type: Transform - pos: -11.5,-40.5 - parent: 12 - - uid: 29948 - components: - - type: Transform - pos: -11.5,-39.5 - parent: 12 - - uid: 29949 - components: - - type: Transform - pos: -11.5,-38.5 - parent: 12 - - uid: 29950 - components: - - type: Transform - pos: -10.5,-40.5 - parent: 12 - - uid: 29951 - components: - - type: Transform - pos: -12.5,-40.5 - parent: 12 - - uid: 29952 - components: - - type: Transform - pos: -11.5,-37.5 - parent: 12 - - uid: 29953 - components: - - type: Transform - pos: -12.5,-37.5 - parent: 12 - - uid: 29954 - components: - - type: Transform - pos: -13.5,-37.5 - parent: 12 - - uid: 29955 - components: - - type: Transform - pos: -13.5,-38.5 - parent: 12 - - uid: 29956 - components: - - type: Transform - pos: -13.5,-36.5 - parent: 12 - - uid: 29957 - components: - - type: Transform - pos: -12.5,-36.5 - parent: 12 - - uid: 29958 - components: - - type: Transform - pos: -11.5,-36.5 - parent: 12 - - uid: 30133 - components: - - type: Transform - pos: 66.5,11.5 - parent: 12 - - uid: 30179 - components: - - type: Transform - pos: 67.5,11.5 - parent: 12 - - uid: 30246 - components: - - type: Transform - pos: -2.5,-2.5 - parent: 12 - - uid: 30325 - components: - - type: Transform - pos: 73.5,11.5 - parent: 12 - - uid: 30327 - components: - - type: Transform - pos: 70.5,-2.5 - parent: 12 - - uid: 30328 - components: - - type: Transform - pos: 69.5,-2.5 - parent: 12 - - uid: 30329 - components: - - type: Transform - pos: 68.5,-2.5 - parent: 12 - - uid: 30330 - components: - - type: Transform - pos: 67.5,-2.5 - parent: 12 - - uid: 30408 - components: - - type: Transform - pos: -9.5,70.5 - parent: 12 - - uid: 30409 - components: - - type: Transform - pos: -9.5,71.5 - parent: 12 - - uid: 30410 - components: - - type: Transform - pos: -9.5,72.5 - parent: 12 - - uid: 30411 - components: - - type: Transform - pos: -10.5,72.5 - parent: 12 - - uid: 30412 - components: - - type: Transform - pos: -11.5,72.5 - parent: 12 - - uid: 30413 - components: - - type: Transform - pos: -12.5,72.5 - parent: 12 - - uid: 30414 - components: - - type: Transform - pos: -13.5,72.5 - parent: 12 - - uid: 30415 - components: - - type: Transform - pos: -14.5,72.5 - parent: 12 - - uid: 30416 - components: - - type: Transform - pos: -15.5,72.5 - parent: 12 - - uid: 30417 - components: - - type: Transform - pos: -16.5,72.5 - parent: 12 - - uid: 30433 - components: - - type: Transform - pos: 66.5,-2.5 - parent: 12 - - uid: 30498 - components: - - type: Transform - pos: -36.5,-51.5 - parent: 12 - - uid: 30499 - components: - - type: Transform - pos: -36.5,-50.5 - parent: 12 - - uid: 30714 - components: - - type: Transform - pos: 3.5,-51.5 - parent: 12 - - uid: 30715 - components: - - type: Transform - pos: 3.5,-52.5 - parent: 12 - - uid: 30716 - components: - - type: Transform - pos: 3.5,-53.5 - parent: 12 - - uid: 30717 - components: - - type: Transform - pos: 3.5,-54.5 - parent: 12 - - uid: 30718 - components: - - type: Transform - pos: 3.5,-55.5 - parent: 12 - - uid: 30719 - components: - - type: Transform - pos: 3.5,-56.5 - parent: 12 - - uid: 30720 - components: - - type: Transform - pos: 2.5,-56.5 - parent: 12 - - uid: 30721 - components: - - type: Transform - pos: -38.5,-53.5 - parent: 12 - - uid: 30722 - components: - - type: Transform - pos: -37.5,-53.5 - parent: 12 - - uid: 30723 - components: - - type: Transform - pos: -36.5,-53.5 - parent: 12 - - uid: 30724 - components: - - type: Transform - pos: -35.5,-53.5 - parent: 12 - - uid: 30725 - components: - - type: Transform - pos: -34.5,-53.5 - parent: 12 - - uid: 30726 - components: - - type: Transform - pos: -33.5,-53.5 - parent: 12 - - uid: 30727 - components: - - type: Transform - pos: -32.5,-53.5 - parent: 12 - - uid: 30728 - components: - - type: Transform - pos: -31.5,-53.5 - parent: 12 - - uid: 30729 - components: - - type: Transform - pos: -30.5,-53.5 - parent: 12 - - uid: 30730 - components: - - type: Transform - pos: -30.5,-54.5 - parent: 12 - - uid: 30731 - components: - - type: Transform - pos: -30.5,-55.5 - parent: 12 - - uid: 30732 - components: - - type: Transform - pos: -30.5,-56.5 - parent: 12 - - uid: 30734 - components: - - type: Transform - pos: -32.5,-56.5 - parent: 12 - - uid: 30735 - components: - - type: Transform - pos: -33.5,-56.5 - parent: 12 - - uid: 30736 - components: - - type: Transform - pos: -33.5,-57.5 - parent: 12 - - uid: 31295 - components: - - type: Transform - pos: 3.5,-57.5 - parent: 12 - - uid: 31296 - components: - - type: Transform - pos: 2.5,-57.5 - parent: 12 - - uid: 31297 - components: - - type: Transform - pos: 1.5,-57.5 - parent: 12 - - uid: 31298 - components: - - type: Transform - pos: 1.5,-58.5 - parent: 12 - - uid: 31299 - components: - - type: Transform - pos: 1.5,-59.5 - parent: 12 - - uid: 31300 - components: - - type: Transform - pos: 1.5,-60.5 - parent: 12 - - uid: 31301 - components: - - type: Transform - pos: 1.5,-61.5 - parent: 12 - - uid: 31302 - components: - - type: Transform - pos: 0.5,-61.5 - parent: 12 - - uid: 31303 - components: - - type: Transform - pos: -0.5,-61.5 - parent: 12 - - uid: 31304 - components: - - type: Transform - pos: -1.5,-61.5 - parent: 12 - - uid: 31305 - components: - - type: Transform - pos: -1.5,-62.5 - parent: 12 - - uid: 31306 - components: - - type: Transform - pos: -1.5,-63.5 - parent: 12 - - uid: 31307 - components: - - type: Transform - pos: -2.5,-63.5 - parent: 12 - - uid: 31308 - components: - - type: Transform - pos: -3.5,-63.5 - parent: 12 - - uid: 31309 - components: - - type: Transform - pos: -4.5,-63.5 - parent: 12 - - uid: 31310 - components: - - type: Transform - pos: -5.5,-63.5 - parent: 12 - - uid: 31311 - components: - - type: Transform - pos: -6.5,-63.5 - parent: 12 - - uid: 31312 - components: - - type: Transform - pos: -6.5,-64.5 - parent: 12 - - uid: 31313 - components: - - type: Transform - pos: -6.5,-65.5 - parent: 12 - - uid: 31314 - components: - - type: Transform - pos: -5.5,-65.5 - parent: 12 - - uid: 31564 - components: - - type: Transform - pos: 51.5,-0.5 - parent: 12 - - uid: 31620 - components: - - type: Transform - pos: 50.5,-0.5 - parent: 12 - - uid: 31621 - components: - - type: Transform - pos: 49.5,-0.5 - parent: 12 - - uid: 31622 - components: - - type: Transform - pos: 48.5,-0.5 - parent: 12 - - uid: 31625 - components: - - type: Transform - pos: 47.5,-0.5 - parent: 12 - - uid: 31626 - components: - - type: Transform - pos: 46.5,-0.5 - parent: 12 - - uid: 31627 - components: - - type: Transform - pos: 45.5,-0.5 - parent: 12 - - uid: 31645 - components: - - type: Transform - pos: 45.5,0.5 - parent: 12 - - uid: 31646 - components: - - type: Transform - pos: 45.5,1.5 - parent: 12 - - uid: 31647 - components: - - type: Transform - pos: 45.5,2.5 - parent: 12 - - uid: 31771 - components: - - type: Transform - pos: -23.5,-4.5 - parent: 12 - - uid: 31772 - components: - - type: Transform - pos: -23.5,-3.5 - parent: 12 - - uid: 31774 - components: - - type: Transform - pos: -23.5,-5.5 - parent: 12 - - uid: 32041 - components: - - type: Transform - pos: 37.5,-15.5 - parent: 12 - - uid: 32044 - components: - - type: Transform - pos: 34.5,-12.5 - parent: 12 - - uid: 32046 - components: - - type: Transform - pos: 35.5,-12.5 - parent: 12 - - uid: 32047 - components: - - type: Transform - pos: 36.5,-12.5 - parent: 12 - - uid: 32048 - components: - - type: Transform - pos: 36.5,-13.5 - parent: 12 - - uid: 32049 - components: - - type: Transform - pos: 36.5,-14.5 - parent: 12 - - uid: 32050 - components: - - type: Transform - pos: 36.5,-15.5 - parent: 12 - - uid: 32076 - components: - - type: Transform - pos: 57.5,63.5 - parent: 12 - - uid: 32077 - components: - - type: Transform - pos: 58.5,63.5 - parent: 12 - - uid: 32078 - components: - - type: Transform - pos: 58.5,64.5 - parent: 12 - - uid: 32079 - components: - - type: Transform - pos: 58.5,65.5 - parent: 12 - - uid: 32090 - components: - - type: Transform - pos: 49.5,55.5 - parent: 12 - - uid: 32091 - components: - - type: Transform - pos: 49.5,54.5 - parent: 12 - - uid: 32156 - components: - - type: Transform - pos: 77.5,11.5 - parent: 12 - - uid: 32157 - components: - - type: Transform - pos: 77.5,10.5 - parent: 12 - - uid: 32158 - components: - - type: Transform - pos: 77.5,9.5 - parent: 12 - - uid: 32159 - components: - - type: Transform - pos: 77.5,7.5 - parent: 12 - - uid: 32160 - components: - - type: Transform - pos: 77.5,6.5 - parent: 12 - - uid: 32161 - components: - - type: Transform - pos: 77.5,5.5 - parent: 12 - - uid: 32162 - components: - - type: Transform - pos: 77.5,4.5 - parent: 12 - - uid: 32163 - components: - - type: Transform - pos: 77.5,3.5 - parent: 12 - - uid: 32164 - components: - - type: Transform - pos: 77.5,2.5 - parent: 12 - - uid: 32165 - components: - - type: Transform - pos: 77.5,8.5 - parent: 12 - - uid: 32166 - components: - - type: Transform - pos: 77.5,1.5 - parent: 12 - - uid: 32167 - components: - - type: Transform - pos: 77.5,-0.5 - parent: 12 - - uid: 32168 - components: - - type: Transform - pos: 77.5,-1.5 - parent: 12 - - uid: 32169 - components: - - type: Transform - pos: 77.5,-2.5 - parent: 12 - - uid: 32170 - components: - - type: Transform - pos: 77.5,0.5 - parent: 12 - - uid: 32213 - components: - - type: Transform - pos: 66.5,4.5 - parent: 12 - - uid: 32242 - components: - - type: Transform - pos: 67.5,4.5 - parent: 12 - - uid: 32243 - components: - - type: Transform - pos: 68.5,4.5 - parent: 12 - - uid: 32244 - components: - - type: Transform - pos: 69.5,4.5 - parent: 12 - - uid: 32245 - components: - - type: Transform - pos: 71.5,6.5 - parent: 12 - - uid: 32246 - components: - - type: Transform - pos: 71.5,7.5 - parent: 12 - - uid: 32247 - components: - - type: Transform - pos: 71.5,8.5 - parent: 12 - - uid: 32248 - components: - - type: Transform - pos: 71.5,9.5 - parent: 12 - - uid: 32249 - components: - - type: Transform - pos: 71.5,10.5 - parent: 12 - - uid: 32250 - components: - - type: Transform - pos: 74.5,4.5 - parent: 12 - - uid: 32251 - components: - - type: Transform - pos: 75.5,4.5 - parent: 12 - - uid: 32252 - components: - - type: Transform - pos: 76.5,4.5 - parent: 12 - - uid: 32253 - components: - - type: Transform - pos: 71.5,2.5 - parent: 12 - - uid: 32254 - components: - - type: Transform - pos: 71.5,1.5 - parent: 12 - - uid: 32255 - components: - - type: Transform - pos: 71.5,-0.5 - parent: 12 - - uid: 32256 - components: - - type: Transform - pos: 71.5,0.5 - parent: 12 - - uid: 32257 - components: - - type: Transform - pos: 71.5,-1.5 - parent: 12 - - uid: 32258 - components: - - type: Transform - pos: 70.5,8.5 - parent: 12 - - uid: 32259 - components: - - type: Transform - pos: 69.5,8.5 - parent: 12 - - uid: 32260 - components: - - type: Transform - pos: 67.5,8.5 - parent: 12 - - uid: 32261 - components: - - type: Transform - pos: 68.5,8.5 - parent: 12 - - uid: 32262 - components: - - type: Transform - pos: 67.5,7.5 - parent: 12 - - uid: 32263 - components: - - type: Transform - pos: 67.5,5.5 - parent: 12 - - uid: 32264 - components: - - type: Transform - pos: 67.5,6.5 - parent: 12 - - uid: 32265 - components: - - type: Transform - pos: 75.5,5.5 - parent: 12 - - uid: 32266 - components: - - type: Transform - pos: 75.5,6.5 - parent: 12 - - uid: 32267 - components: - - type: Transform - pos: 75.5,7.5 - parent: 12 - - uid: 32268 - components: - - type: Transform - pos: 75.5,8.5 - parent: 12 - - uid: 32269 - components: - - type: Transform - pos: 74.5,8.5 - parent: 12 - - uid: 32270 - components: - - type: Transform - pos: 73.5,8.5 - parent: 12 - - uid: 32271 - components: - - type: Transform - pos: 72.5,8.5 - parent: 12 - - uid: 32272 - components: - - type: Transform - pos: 75.5,3.5 - parent: 12 - - uid: 32273 - components: - - type: Transform - pos: 75.5,1.5 - parent: 12 - - uid: 32274 - components: - - type: Transform - pos: 75.5,0.5 - parent: 12 - - uid: 32275 - components: - - type: Transform - pos: 75.5,2.5 - parent: 12 - - uid: 32276 - components: - - type: Transform - pos: 74.5,0.5 - parent: 12 - - uid: 32277 - components: - - type: Transform - pos: 73.5,0.5 - parent: 12 - - uid: 32278 - components: - - type: Transform - pos: 72.5,0.5 - parent: 12 - - uid: 32279 - components: - - type: Transform - pos: 70.5,0.5 - parent: 12 - - uid: 32280 - components: - - type: Transform - pos: 69.5,0.5 - parent: 12 - - uid: 32281 - components: - - type: Transform - pos: 68.5,0.5 - parent: 12 - - uid: 32282 - components: - - type: Transform - pos: 67.5,0.5 - parent: 12 - - uid: 32283 - components: - - type: Transform - pos: 67.5,1.5 - parent: 12 - - uid: 32284 - components: - - type: Transform - pos: 67.5,3.5 - parent: 12 - - uid: 32285 - components: - - type: Transform - pos: 67.5,2.5 - parent: 12 -- proto: CableMVStack - entities: - - uid: 5999 - components: - - type: Transform - pos: -22.5446,-9.451263 - parent: 12 - - uid: 16562 - components: - - type: Transform - pos: -9.63915,23.60367 - parent: 12 - - uid: 23676 - components: - - type: Transform - pos: 44.46338,52.56763 - parent: 12 - - uid: 28716 - components: - - type: Transform - rot: -50.265482457436725 rad - pos: 55.50793,-5.5443873 - parent: 12 -- proto: CableMVStack1 - entities: - - uid: 30733 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.511896,-56.46586 - parent: 12 -- proto: CableTerminal - entities: - - uid: 280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-15.5 - parent: 12 - - uid: 2146 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-5.5 - parent: 12 - - uid: 4541 - components: - - type: Transform - pos: 14.5,-16.5 - parent: 12 - - uid: 4543 - components: - - type: Transform - pos: 12.5,-16.5 - parent: 12 - - uid: 7946 - components: - - type: Transform - 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 - rot: 1.5707963267948966 rad - pos: 35.5,67.5 - parent: 12 - - uid: 17857 - components: - - type: Transform - pos: -52.5,46.5 - parent: 12 - - uid: 21861 - components: - - type: Transform - pos: 38.5,-5.5 - parent: 12 - - uid: 26535 - components: - - type: Transform - pos: 62.5,-2.5 - parent: 12 - - uid: 27220 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-67.5 - parent: 12 - - uid: 27377 - components: - - type: Transform - pos: 13.5,-16.5 - parent: 12 - - uid: 30247 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 12 - - uid: 31110 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-47.5 - parent: 12 - - uid: 31867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-15.5 - parent: 12 - - uid: 31869 - components: - - type: Transform - pos: 15.5,-16.5 - parent: 12 -- proto: Candle - entities: - - uid: 13090 - components: - - type: Transform - pos: 56.275406,37.942432 - parent: 12 - - uid: 13095 - components: - - type: Transform - pos: 48.281464,29.52493 - parent: 12 - - uid: 13134 - components: - - type: Transform - pos: 47.27452,29.684652 - parent: 12 - - uid: 13243 - components: - - type: Transform - pos: 47.5362,32.56305 - parent: 12 - - uid: 13252 - components: - - type: Transform - pos: 56.26499,37.33827 - parent: 12 - - uid: 13254 - components: - - type: Transform - pos: 48.69813,29.64993 - parent: 12 - - uid: 13255 - components: - - type: Transform - pos: 47.6148,29.358263 - parent: 12 - - uid: 13509 - components: - - type: Transform - pos: 50.394928,18.488558 - parent: 12 - - uid: 22262 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,36.5 - parent: 12 - - uid: 22267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,38.5 - parent: 12 - - uid: 25974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.53437,39.706085 - parent: 12 - - uid: 25978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.03437,39.383167 - parent: 12 - - uid: 25979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.263535,39.362335 - parent: 12 - - uid: 25980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.65937,39.3415 - parent: 12 - - uid: 25981 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.87812,39.779 - parent: 12 - - uid: 26093 - components: - - type: Transform - pos: 55.5,39.5 - parent: 12 - - uid: 26094 - components: - - type: Transform - pos: 55.5,35.5 - parent: 12 -- proto: CandleBlue - entities: - - uid: 30223 - components: - - type: Transform - pos: -7.124111,64.65549 - parent: 12 -- proto: CandleGreen - entities: - - uid: 30214 - components: - - type: Transform - pos: -12.599916,61.129665 - parent: 12 -- proto: CandleSmall - entities: - - uid: 16858 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,39.5 - parent: 12 - - uid: 22266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,35.5 - parent: 12 -- proto: CannabisSeeds - entities: - - uid: 7374 - components: - - type: Transform - parent: 7012 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21236 - components: - - type: Transform - pos: -25.429438,44.73208 - parent: 12 -- proto: CapacitorStockPart - entities: - - uid: 31575 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -13.663055,0.58543336 - parent: 12 -- proto: CaptainIDCard - entities: - - uid: 17377 - components: - - type: Transform - pos: -52.281834,16.7479 - parent: 12 -- proto: CarbonDioxideCanister - entities: - - uid: 22 - components: - - type: Transform - pos: 10.5,12.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 - pos: 27.5,9.5 - parent: 12 -- proto: Carpet - entities: - - uid: 2274 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,31.5 - parent: 12 - - uid: 2276 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,31.5 - parent: 12 - - uid: 2340 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,29.5 - parent: 12 - - uid: 2897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,28.5 - parent: 12 - - uid: 4023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-35.5 - parent: 12 - - uid: 4024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-34.5 - parent: 12 - - uid: 4025 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-35.5 - parent: 12 - - uid: 4026 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-34.5 - parent: 12 - - uid: 4027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-35.5 - parent: 12 - - uid: 4028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-34.5 - parent: 12 - - uid: 4029 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-35.5 - parent: 12 - - uid: 4030 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-34.5 - parent: 12 - - uid: 4047 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,28.5 - parent: 12 - - uid: 4726 - components: - - type: Transform - pos: 23.5,48.5 - parent: 12 - - uid: 4890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,27.5 - parent: 12 - - uid: 5385 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,28.5 - parent: 12 - - uid: 5411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,30.5 - parent: 12 - - uid: 6288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,29.5 - parent: 12 - - uid: 6747 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,27.5 - parent: 12 - - uid: 7338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,30.5 - parent: 12 - - uid: 7584 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,31.5 - parent: 12 - - uid: 7620 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,31.5 - parent: 12 - - uid: 10613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 12 - - uid: 10615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-0.5 - parent: 12 - - uid: 10621 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-0.5 - parent: 12 - - uid: 12401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,29.5 - parent: 12 - - uid: 12402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,28.5 - parent: 12 - - uid: 12403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,29.5 - parent: 12 - - uid: 12404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,27.5 - parent: 12 - - uid: 12405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,27.5 - parent: 12 - - uid: 12406 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,30.5 - parent: 12 - - uid: 12407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,30.5 - parent: 12 - - uid: 12727 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,38.5 - parent: 12 - - uid: 13085 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,35.5 - parent: 12 - - uid: 13092 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,37.5 - parent: 12 - - uid: 13097 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,37.5 - parent: 12 - - uid: 13098 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,36.5 - parent: 12 - - uid: 13106 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,40.5 - parent: 12 - - uid: 13119 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,37.5 - parent: 12 - - uid: 13131 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,35.5 - parent: 12 - - uid: 13135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,39.5 - parent: 12 - - uid: 13137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,36.5 - parent: 12 - - uid: 13145 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,28.5 - parent: 12 - - uid: 13178 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,37.5 - parent: 12 - - uid: 13220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,37.5 - parent: 12 - - uid: 13234 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,39.5 - parent: 12 - - uid: 13235 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,38.5 - parent: 12 - - uid: 13236 - components: - - type: Transform - pos: 53.5,37.5 - parent: 12 - - uid: 13237 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,34.5 - parent: 12 - - uid: 13247 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,37.5 - parent: 12 - - uid: 13250 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,36.5 - parent: 12 - - uid: 13253 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,37.5 - parent: 12 - - uid: 13280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,37.5 - parent: 12 - - uid: 13281 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,38.5 - parent: 12 - - uid: 13283 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,35.5 - parent: 12 - - uid: 13284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,39.5 - parent: 12 - - uid: 13286 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,37.5 - parent: 12 - - uid: 13287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,37.5 - parent: 12 - - uid: 13727 - components: - - type: Transform - pos: 20.5,26.5 - parent: 12 - - uid: 13728 - components: - - type: Transform - pos: 20.5,27.5 - parent: 12 - - uid: 13729 - components: - - type: Transform - pos: 20.5,28.5 - parent: 12 - - uid: 13730 - components: - - type: Transform - pos: 20.5,29.5 - parent: 12 - - uid: 13731 - components: - - type: Transform - pos: 20.5,30.5 - parent: 12 - - uid: 13732 - components: - - type: Transform - pos: 21.5,26.5 - parent: 12 - - uid: 13733 - components: - - type: Transform - pos: 21.5,27.5 - parent: 12 - - uid: 13735 - components: - - type: Transform - pos: 21.5,29.5 - parent: 12 - - uid: 13736 - components: - - type: Transform - pos: 21.5,30.5 - parent: 12 - - uid: 13737 - components: - - type: Transform - pos: 22.5,26.5 - parent: 12 - - uid: 13738 - components: - - type: Transform - pos: 22.5,27.5 - parent: 12 - - uid: 13740 - components: - - type: Transform - pos: 22.5,29.5 - parent: 12 - - uid: 13741 - components: - - type: Transform - pos: 22.5,30.5 - parent: 12 - - uid: 13742 - components: - - type: Transform - pos: 23.5,27.5 - parent: 12 - - uid: 13743 - components: - - type: Transform - pos: 23.5,28.5 - parent: 12 - - uid: 13744 - components: - - type: Transform - pos: 23.5,29.5 - parent: 12 - - uid: 13745 - components: - - type: Transform - pos: 19.5,27.5 - parent: 12 - - uid: 13746 - components: - - type: Transform - pos: 19.5,28.5 - parent: 12 - - uid: 13747 - components: - - type: Transform - pos: 19.5,29.5 - parent: 12 - - uid: 13756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,34.5 - parent: 12 - - uid: 13757 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,35.5 - parent: 12 - - uid: 13758 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,36.5 - parent: 12 - - uid: 16545 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,28.5 - parent: 12 - - uid: 16691 - components: - - type: Transform - pos: -20.5,0.5 - parent: 12 - - uid: 16692 - components: - - type: Transform - pos: -20.5,1.5 - parent: 12 - - uid: 16694 - components: - - type: Transform - pos: -21.5,0.5 - parent: 12 - - uid: 16695 - components: - - type: Transform - pos: -21.5,1.5 - parent: 12 - - uid: 16697 - components: - - type: Transform - pos: -22.5,0.5 - parent: 12 - - uid: 16698 - components: - - type: Transform - pos: -22.5,1.5 - parent: 12 - - uid: 17119 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,49.5 - parent: 12 - - uid: 17120 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,50.5 - parent: 12 - - uid: 17121 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,51.5 - parent: 12 - - uid: 18996 - components: - - type: Transform - pos: -53.5,19.5 - parent: 12 - - uid: 18997 - components: - - type: Transform - pos: -53.5,20.5 - parent: 12 - - uid: 18998 - components: - - type: Transform - pos: -53.5,21.5 - parent: 12 - - uid: 18999 - components: - - type: Transform - pos: -52.5,19.5 - parent: 12 - - uid: 19000 - components: - - type: Transform - pos: -52.5,20.5 - parent: 12 - - uid: 19001 - components: - - type: Transform - pos: -52.5,21.5 - parent: 12 - - uid: 19002 - components: - - type: Transform - pos: -51.5,19.5 - parent: 12 - - uid: 19003 - components: - - type: Transform - pos: -51.5,20.5 - parent: 12 - - uid: 19004 - components: - - type: Transform - pos: -51.5,21.5 - parent: 12 - - uid: 19005 - components: - - type: Transform - pos: -50.5,19.5 - parent: 12 - - uid: 19006 - components: - - type: Transform - pos: -50.5,20.5 - parent: 12 - - uid: 19007 - components: - - type: Transform - pos: -50.5,21.5 - parent: 12 - - uid: 19008 - components: - - type: Transform - pos: -49.5,19.5 - parent: 12 - - uid: 19009 - components: - - type: Transform - pos: -49.5,20.5 - parent: 12 - - uid: 19010 - components: - - type: Transform - pos: -49.5,21.5 - parent: 12 - - uid: 21460 - components: - - type: Transform - pos: -34.5,29.5 - parent: 12 - - uid: 21461 - components: - - type: Transform - pos: -34.5,30.5 - parent: 12 - - uid: 21462 - components: - - type: Transform - pos: -33.5,29.5 - parent: 12 - - uid: 21463 - components: - - type: Transform - pos: -33.5,30.5 - parent: 12 - - uid: 21464 - components: - - type: Transform - pos: -32.5,29.5 - parent: 12 - - uid: 21465 - components: - - type: Transform - pos: -32.5,30.5 - parent: 12 - - uid: 22383 - components: - - type: Transform - pos: -12.5,51.5 - parent: 12 - - uid: 22384 - components: - - type: Transform - pos: -13.5,51.5 - parent: 12 - - uid: 22385 - components: - - type: Transform - pos: -14.5,51.5 - parent: 12 - - uid: 22386 - components: - - type: Transform - pos: -15.5,51.5 - parent: 12 - - uid: 22387 - components: - - type: Transform - pos: -16.5,51.5 - parent: 12 - - uid: 22388 - components: - - type: Transform - pos: -14.5,52.5 - parent: 12 - - uid: 23453 - components: - - type: Transform - pos: 23.5,43.5 - parent: 12 - - uid: 23454 - components: - - type: Transform - pos: 23.5,44.5 - parent: 12 - - uid: 23455 - components: - - type: Transform - pos: 22.5,43.5 - parent: 12 - - uid: 23456 - components: - - type: Transform - pos: 22.5,44.5 - parent: 12 - - uid: 23457 - components: - - type: Transform - pos: 21.5,43.5 - parent: 12 - - uid: 23458 - components: - - type: Transform - pos: 21.5,44.5 - parent: 12 - - uid: 23459 - components: - - type: Transform - pos: 20.5,43.5 - parent: 12 - - uid: 23460 - components: - - type: Transform - pos: 20.5,44.5 - parent: 12 - - uid: 23461 - components: - - type: Transform - pos: 21.5,45.5 - parent: 12 - - uid: 23462 - components: - - type: Transform - pos: 21.5,47.5 - parent: 12 - - uid: 23463 - components: - - type: Transform - pos: 21.5,48.5 - parent: 12 - - uid: 23464 - components: - - type: Transform - pos: 20.5,45.5 - parent: 12 - - uid: 23465 - components: - - type: Transform - pos: 20.5,46.5 - parent: 12 - - uid: 23466 - components: - - type: Transform - pos: 20.5,47.5 - parent: 12 - - uid: 23467 - components: - - type: Transform - pos: 20.5,48.5 - parent: 12 - - uid: 23468 - components: - - type: Transform - pos: 21.5,46.5 - parent: 12 - - uid: 23469 - components: - - type: Transform - pos: 22.5,48.5 - parent: 12 - - uid: 23470 - components: - - type: Transform - pos: 22.5,50.5 - parent: 12 - - uid: 23471 - components: - - type: Transform - pos: 22.5,52.5 - parent: 12 - - uid: 23472 - components: - - type: Transform - pos: 22.5,53.5 - parent: 12 - - uid: 23473 - components: - - type: Transform - pos: 22.5,51.5 - parent: 12 - - uid: 23474 - components: - - type: Transform - pos: 21.5,50.5 - parent: 12 - - uid: 23475 - components: - - type: Transform - pos: 21.5,51.5 - parent: 12 - - uid: 23476 - components: - - type: Transform - pos: 21.5,52.5 - parent: 12 - - uid: 23477 - components: - - type: Transform - pos: 21.5,53.5 - parent: 12 - - uid: 23478 - components: - - type: Transform - pos: 20.5,50.5 - parent: 12 - - uid: 23479 - components: - - type: Transform - pos: 19.5,50.5 - parent: 12 - - uid: 23480 - components: - - type: Transform - pos: 19.5,52.5 - parent: 12 - - uid: 23481 - components: - - type: Transform - pos: 19.5,51.5 - parent: 12 - - uid: 23482 - components: - - type: Transform - pos: 20.5,51.5 - parent: 12 - - uid: 23483 - components: - - type: Transform - pos: 20.5,53.5 - parent: 12 - - uid: 23484 - components: - - type: Transform - pos: 19.5,53.5 - parent: 12 - - uid: 23485 - components: - - type: Transform - pos: 20.5,52.5 - parent: 12 - - uid: 23608 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,67.5 - parent: 12 - - uid: 23609 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,67.5 - parent: 12 - - uid: 23610 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,68.5 - parent: 12 - - uid: 23611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,67.5 - parent: 12 - - uid: 23612 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,68.5 - parent: 12 - - uid: 23613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,68.5 - parent: 12 - - uid: 23818 - components: - - type: Transform - pos: -33.5,35.5 - parent: 12 - - uid: 23819 - components: - - type: Transform - pos: -33.5,36.5 - parent: 12 - - uid: 23820 - components: - - type: Transform - pos: -34.5,35.5 - parent: 12 - - uid: 23821 - components: - - type: Transform - pos: -34.5,36.5 - parent: 12 - - uid: 23822 - components: - - type: Transform - pos: -35.5,35.5 - parent: 12 - - uid: 23823 - components: - - type: Transform - pos: -35.5,36.5 - parent: 12 - - uid: 23824 - components: - - type: Transform - pos: -36.5,35.5 - parent: 12 - - uid: 23825 - components: - - type: Transform - pos: -36.5,36.5 - parent: 12 - - uid: 23826 - components: - - type: Transform - pos: -37.5,35.5 - parent: 12 - - uid: 23827 - components: - - type: Transform - pos: -37.5,36.5 - parent: 12 - - uid: 23828 - components: - - type: Transform - pos: -37.5,37.5 - parent: 12 - - uid: 23829 - components: - - type: Transform - pos: -37.5,38.5 - parent: 12 - - uid: 23830 - components: - - type: Transform - pos: -37.5,39.5 - parent: 12 - - uid: 23831 - components: - - type: Transform - pos: -36.5,37.5 - parent: 12 - - uid: 23832 - components: - - type: Transform - pos: -36.5,38.5 - parent: 12 - - uid: 23833 - components: - - type: Transform - pos: -36.5,39.5 - parent: 12 - - uid: 23834 - components: - - type: Transform - pos: -35.5,39.5 - parent: 12 - - uid: 23835 - components: - - type: Transform - pos: -35.5,38.5 - parent: 12 - - uid: 23836 - components: - - type: Transform - pos: -34.5,39.5 - parent: 12 - - uid: 23837 - components: - - type: Transform - pos: -34.5,38.5 - parent: 12 - - uid: 23838 - components: - - type: Transform - pos: -33.5,39.5 - parent: 12 - - uid: 23839 - components: - - type: Transform - pos: -33.5,38.5 - parent: 12 - - uid: 23840 - components: - - type: Transform - pos: -34.5,37.5 - parent: 12 - - uid: 23841 - components: - - type: Transform - pos: -33.5,37.5 - parent: 12 - - uid: 26760 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,0.5 - parent: 12 -- proto: CarpetBlue - entities: - - uid: 18961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,27.5 - parent: 12 - - uid: 18963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,28.5 - parent: 12 - - uid: 18964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,29.5 - parent: 12 - - uid: 18965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,30.5 - parent: 12 - - uid: 18966 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,27.5 - parent: 12 - - uid: 18967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,28.5 - parent: 12 - - uid: 18968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,29.5 - parent: 12 - - uid: 18969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,30.5 - parent: 12 - - uid: 18970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,27.5 - parent: 12 - - uid: 18971 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,28.5 - parent: 12 - - uid: 18972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,29.5 - parent: 12 - - uid: 18973 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,30.5 - parent: 12 - - uid: 18974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,27.5 - parent: 12 - - uid: 18975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,28.5 - parent: 12 - - uid: 18976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,29.5 - parent: 12 - - uid: 18977 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,30.5 - parent: 12 - - uid: 18978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,27.5 - parent: 12 - - uid: 18979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,28.5 - parent: 12 - - uid: 18980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,29.5 - parent: 12 - - uid: 18981 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,30.5 - parent: 12 - - uid: 18982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,31.5 - parent: 12 - - uid: 18983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,31.5 - parent: 12 - - uid: 18984 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,31.5 - parent: 12 - - uid: 18985 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,31.5 - parent: 12 - - uid: 18986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,26.5 - parent: 12 - - uid: 18987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,26.5 - parent: 12 - - uid: 18988 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,26.5 - parent: 12 - - uid: 18989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,26.5 - parent: 12 - - uid: 30207 - components: - - type: Transform - pos: -3.5,59.5 - parent: 12 - - uid: 30208 - components: - - type: Transform - pos: -3.5,60.5 - parent: 12 - - uid: 30209 - components: - - type: Transform - pos: -3.5,61.5 - parent: 12 - - uid: 30210 - components: - - type: Transform - pos: -3.5,62.5 - parent: 12 - - uid: 30211 - components: - - type: Transform - pos: -3.5,63.5 - parent: 12 - - uid: 30212 - components: - - type: Transform - pos: -3.5,64.5 - parent: 12 -- proto: CarpetChapel - entities: - - uid: 3024 - components: - - type: Transform - pos: 45.5,38.5 - parent: 12 - - uid: 3025 - components: - - type: Transform - pos: 43.5,38.5 - parent: 12 - - uid: 4673 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,39.5 - parent: 12 - - uid: 4866 - components: - - type: Transform - pos: 45.5,40.5 - parent: 12 - - uid: 4867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,41.5 - parent: 12 - - uid: 4934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,38.5 - parent: 12 - - uid: 4942 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,38.5 - parent: 12 - - uid: 7109 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,42.5 - parent: 12 - - uid: 13032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,39.5 - parent: 12 - - uid: 13033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,39.5 - parent: 12 - - uid: 13034 - components: - - type: Transform - pos: 41.5,38.5 - parent: 12 - - uid: 13035 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,38.5 - parent: 12 - - uid: 13036 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,37.5 - parent: 12 - - uid: 13037 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,37.5 - parent: 12 - - uid: 13038 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,38.5 - parent: 12 - - uid: 13039 - components: - - type: Transform - pos: 39.5,37.5 - parent: 12 - - uid: 13040 - components: - - type: Transform - pos: 40.5,36.5 - parent: 12 - - uid: 13041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,36.5 - parent: 12 - - uid: 13042 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,37.5 - parent: 12 - - uid: 13044 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,36.5 - parent: 12 - - uid: 13045 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,37.5 - parent: 12 - - uid: 13046 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,35.5 - parent: 12 - - uid: 13047 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,36.5 - parent: 12 - - uid: 13048 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,37.5 - parent: 12 - - uid: 13051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,39.5 - parent: 12 - - uid: 13052 - components: - - type: Transform - pos: 42.5,39.5 - parent: 12 - - uid: 13053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,36.5 - parent: 12 - - uid: 13054 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,37.5 - parent: 12 - - uid: 13055 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,38.5 - parent: 12 - - uid: 13056 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,38.5 - parent: 12 - - uid: 13057 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,39.5 - parent: 12 - - uid: 13058 - components: - - type: Transform - pos: 37.5,37.5 - parent: 12 - - uid: 13059 - components: - - type: Transform - pos: 38.5,36.5 - parent: 12 - - uid: 13060 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,36.5 - parent: 12 - - uid: 13061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,34.5 - parent: 12 - - uid: 13062 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,35.5 - parent: 12 - - uid: 13063 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,36.5 - parent: 12 - - uid: 13064 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,37.5 - parent: 12 - - uid: 13065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,33.5 - parent: 12 - - uid: 13066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,34.5 - parent: 12 - - uid: 13067 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,35.5 - parent: 12 - - uid: 13069 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,33.5 - parent: 12 - - uid: 13070 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,34.5 - parent: 12 - - uid: 13071 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,35.5 - parent: 12 - - uid: 13072 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,36.5 - parent: 12 - - uid: 13074 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,33.5 - parent: 12 - - uid: 13075 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,34.5 - parent: 12 - - uid: 13081 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,34.5 - parent: 12 - - uid: 13082 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,33.5 - parent: 12 - - uid: 13083 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,33.5 - parent: 12 - - uid: 13084 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,34.5 - parent: 12 - - uid: 13087 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,33.5 - parent: 12 - - uid: 13088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,32.5 - parent: 12 - - uid: 13089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,32.5 - parent: 12 - - uid: 13107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,32.5 - parent: 12 - - uid: 13108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,32.5 - parent: 12 - - uid: 13109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,33.5 - parent: 12 - - uid: 13111 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,33.5 - parent: 12 - - uid: 13112 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,34.5 - parent: 12 - - uid: 13116 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,33.5 - parent: 12 - - uid: 13117 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,34.5 - parent: 12 - - uid: 13121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,32.5 - parent: 12 - - uid: 13122 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,33.5 - parent: 12 - - uid: 13123 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,34.5 - parent: 12 - - uid: 13127 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,32.5 - parent: 12 - - uid: 13133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,32.5 - parent: 12 - - uid: 13141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,34.5 - parent: 12 - - uid: 13143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,32.5 - parent: 12 - - uid: 13144 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,32.5 - parent: 12 - - uid: 13170 - components: - - type: Transform - pos: 46.5,41.5 - parent: 12 - - uid: 13171 - components: - - type: Transform - pos: 47.5,40.5 - parent: 12 - - uid: 13172 - components: - - type: Transform - pos: 48.5,41.5 - parent: 12 - - uid: 13175 - components: - - type: Transform - pos: 49.5,40.5 - parent: 12 - - uid: 13177 - components: - - type: Transform - pos: 50.5,41.5 - parent: 12 - - uid: 13181 - components: - - type: Transform - pos: 51.5,42.5 - parent: 12 - - uid: 13187 - components: - - type: Transform - pos: 53.5,42.5 - parent: 12 - - uid: 13192 - components: - - type: Transform - pos: 55.5,42.5 - parent: 12 - - uid: 13193 - components: - - type: Transform - pos: 56.5,41.5 - parent: 12 - - uid: 13196 - components: - - type: Transform - pos: 57.5,42.5 - parent: 12 - - uid: 13198 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,41.5 - parent: 12 - - uid: 13199 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,42.5 - parent: 12 - - uid: 13206 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,42.5 - parent: 12 - - uid: 13208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,42.5 - parent: 12 - - uid: 13215 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,40.5 - parent: 12 - - uid: 13216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,41.5 - parent: 12 - - uid: 13217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,41.5 - parent: 12 - - uid: 13218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,40.5 - parent: 12 - - uid: 13223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,40.5 - parent: 12 - - uid: 13226 - components: - - type: Transform - pos: 44.5,39.5 - parent: 12 -- proto: CarpetGreen - entities: - - uid: 8718 - components: - - type: Transform - pos: -15.5,64.5 - parent: 12 - - uid: 17122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,50.5 - parent: 12 - - uid: 17123 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,50.5 - parent: 12 - - uid: 18951 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,23.5 - parent: 12 - - uid: 18952 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,22.5 - parent: 12 - - uid: 18953 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,21.5 - parent: 12 - - uid: 18954 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,23.5 - parent: 12 - - uid: 18955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,22.5 - parent: 12 - - uid: 18956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,21.5 - parent: 12 - - uid: 18957 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,21.5 - parent: 12 - - uid: 18958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,22.5 - parent: 12 - - uid: 18959 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,21.5 - parent: 12 - - uid: 18960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,22.5 - parent: 12 - - uid: 23486 - components: - - type: Transform - pos: 25.5,39.5 - parent: 12 - - uid: 23487 - components: - - type: Transform - pos: 23.5,39.5 - parent: 12 - - uid: 23488 - components: - - type: Transform - pos: 22.5,39.5 - parent: 12 - - uid: 23489 - components: - - type: Transform - pos: 21.5,39.5 - parent: 12 - - uid: 23490 - components: - - type: Transform - pos: 20.5,39.5 - parent: 12 - - uid: 23491 - components: - - type: Transform - pos: 19.5,39.5 - parent: 12 - - uid: 23492 - components: - - type: Transform - pos: 18.5,39.5 - parent: 12 - - uid: 23493 - components: - - type: Transform - pos: 24.5,39.5 - parent: 12 - - uid: 23494 - components: - - type: Transform - pos: 17.5,39.5 - parent: 12 - - uid: 23495 - components: - - type: Transform - pos: 18.5,40.5 - parent: 12 - - uid: 23496 - components: - - type: Transform - pos: 19.5,40.5 - parent: 12 - - uid: 23497 - components: - - type: Transform - pos: 23.5,40.5 - parent: 12 - - uid: 23498 - components: - - type: Transform - pos: 24.5,40.5 - parent: 12 - - uid: 30197 - components: - - type: Transform - pos: -15.5,62.5 - parent: 12 - - uid: 30202 - components: - - type: Transform - pos: -15.5,63.5 - parent: 12 - - uid: 30203 - components: - - type: Transform - pos: -15.5,61.5 - parent: 12 - - uid: 30204 - components: - - type: Transform - pos: -15.5,59.5 - parent: 12 - - uid: 30205 - components: - - type: Transform - pos: -15.5,60.5 - parent: 12 - - uid: 31521 - components: - - type: Transform - pos: 11.5,-35.5 - parent: 12 - - uid: 31522 - components: - - type: Transform - pos: 11.5,-34.5 - parent: 12 - - uid: 31523 - components: - - type: Transform - pos: 12.5,-35.5 - parent: 12 - - uid: 31524 - components: - - type: Transform - pos: 12.5,-34.5 - parent: 12 - - uid: 31525 - components: - - type: Transform - pos: 13.5,-35.5 - parent: 12 - - uid: 31526 - components: - - type: Transform - pos: 13.5,-34.5 - parent: 12 -- proto: CarpetOrange - entities: - - uid: 12116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,39.5 - parent: 12 - - uid: 12806 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,34.5 - parent: 12 - - uid: 12884 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,38.5 - parent: 12 - - uid: 13096 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,36.5 - parent: 12 - - uid: 13099 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,36.5 - parent: 12 - - uid: 13100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,38.5 - parent: 12 - - uid: 13101 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,41.5 - parent: 12 - - uid: 13102 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,38.5 - parent: 12 - - uid: 13115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,35.5 - parent: 12 - - uid: 13120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,36.5 - parent: 12 - - uid: 13124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,38.5 - parent: 12 - - uid: 13130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,39.5 - parent: 12 - - uid: 13132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,35.5 - parent: 12 - - uid: 13136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,38.5 - parent: 12 - - uid: 13139 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,35.5 - parent: 12 - - uid: 13183 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,40.5 - parent: 12 - - uid: 13184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,40.5 - parent: 12 - - uid: 13185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,35.5 - parent: 12 - - uid: 13186 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,38.5 - parent: 12 - - uid: 13189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,33.5 - parent: 12 - - uid: 13190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,36.5 - parent: 12 - - uid: 13191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,36.5 - parent: 12 - - uid: 13194 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,34.5 - parent: 12 - - uid: 13200 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,41.5 - parent: 12 - - uid: 13201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,33.5 - parent: 12 - - uid: 13202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,33.5 - parent: 12 - - uid: 13204 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,39.5 - parent: 12 - - uid: 13205 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,36.5 - parent: 12 - - uid: 13207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,38.5 - parent: 12 - - uid: 13209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,41.5 - parent: 12 - - uid: 13211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,38.5 - parent: 12 - - uid: 13212 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,34.5 - parent: 12 - - uid: 13213 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,36.5 - parent: 12 - - uid: 13227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,35.5 - parent: 12 - - uid: 13228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,37.5 - parent: 12 - - uid: 13229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,41.5 - parent: 12 - - uid: 13230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,35.5 - parent: 12 - - uid: 13232 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,35.5 - parent: 12 - - uid: 13233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,35.5 - parent: 12 - - uid: 13238 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,36.5 - parent: 12 - - uid: 13239 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,34.5 - parent: 12 - - uid: 13240 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,33.5 - parent: 12 - - uid: 13241 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,39.5 - parent: 12 - - uid: 13242 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,39.5 - parent: 12 - - uid: 13244 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,41.5 - parent: 12 - - uid: 13245 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,35.5 - parent: 12 - - uid: 13251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,39.5 - parent: 12 - - uid: 13257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,36.5 - parent: 12 - - uid: 13258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,39.5 - parent: 12 - - uid: 13259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,38.5 - parent: 12 - - uid: 13260 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,38.5 - parent: 12 - - uid: 13263 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,40.5 - parent: 12 - - uid: 13265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,37.5 - parent: 12 - - uid: 13272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,36.5 - parent: 12 - - uid: 13273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,40.5 - parent: 12 - - uid: 13279 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,39.5 - parent: 12 - - uid: 13282 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,33.5 - parent: 12 - - uid: 13295 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,35.5 - parent: 12 -- proto: CarpetPurple - entities: - - uid: 2395 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-19.5 - parent: 12 - - uid: 2396 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-19.5 - parent: 12 - - uid: 2983 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-23.5 - parent: 12 - - uid: 3242 - components: - - type: Transform - 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: 5093 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-24.5 - parent: 12 - - uid: 5150 - components: - - type: Transform - 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: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,53.5 - parent: 12 - - uid: 17128 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,53.5 - parent: 12 - - uid: 17129 - components: - - type: Transform - 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 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,51.5 - parent: 12 - - uid: 17125 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,50.5 - parent: 12 - - uid: 17126 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,49.5 - parent: 12 -- proto: Catwalk - entities: - - uid: 78 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,4.5 - parent: 12 - - uid: 110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,3.5 - parent: 12 - - uid: 225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,2.5 - parent: 12 - - uid: 226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,1.5 - parent: 12 - - uid: 261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-15.5 - parent: 12 - - uid: 269 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-57.5 - parent: 12 - - uid: 465 - components: - - type: Transform - pos: 10.5,28.5 - parent: 12 - - uid: 506 - components: - - type: Transform - pos: -29.5,-53.5 - parent: 12 - - uid: 555 - components: - - type: Transform - pos: 54.5,12.5 - parent: 12 - - uid: 765 - components: - - type: Transform - pos: -6.5,-63.5 - parent: 12 - - uid: 766 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-61.5 - parent: 12 - - uid: 1076 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,17.5 - parent: 12 - - uid: 1080 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,10.5 - parent: 12 - - uid: 1437 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-7.5 - parent: 12 - - uid: 1555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,2.5 - parent: 12 - - uid: 2026 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: 6.5,-8.5 - parent: 12 - - uid: 2322 - components: - - type: Transform - pos: 40.5,11.5 - parent: 12 - - uid: 2357 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: 17.5,24.5 - parent: 12 - - uid: 2487 - components: - - type: Transform - pos: -26.5,-16.5 - parent: 12 - - uid: 2490 - components: - - 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 - pos: -38.5,-53.5 - parent: 12 - - uid: 2870 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-36.5 - parent: 12 - - uid: 2879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-37.5 - parent: 12 - - uid: 2899 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,9.5 - parent: 12 - - uid: 2912 - components: - - type: Transform - pos: 10.5,-38.5 - parent: 12 - - uid: 2943 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-34.5 - parent: 12 - - uid: 2949 - components: - - type: Transform - pos: 54.5,11.5 - parent: 12 - - uid: 2950 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-35.5 - parent: 12 - - uid: 2961 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,9.5 - parent: 12 - - uid: 2962 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,9.5 - parent: 12 - - uid: 2970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,24.5 - parent: 12 - - uid: 2988 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,0.5 - parent: 12 - - uid: 3086 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-48.5 - parent: 12 - - uid: 3116 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-22.5 - parent: 12 - - uid: 3133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,23.5 - parent: 12 - - uid: 3486 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,24.5 - parent: 12 - - uid: 3623 - components: - - type: Transform - pos: -56.5,48.5 - parent: 12 - - uid: 3913 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,26.5 - parent: 12 - - uid: 3914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-23.5 - parent: 12 - - uid: 3917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,10.5 - parent: 12 - - uid: 3960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,27.5 - parent: 12 - - uid: 4038 - components: - - type: Transform - pos: -38.5,-52.5 - parent: 12 - - uid: 4045 - components: - - type: Transform - pos: 21.5,19.5 - parent: 12 - - uid: 4056 - components: - - type: Transform - pos: -37.5,-53.5 - parent: 12 - - uid: 4093 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-47.5 - parent: 12 - - uid: 4102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-47.5 - parent: 12 - - uid: 4249 - components: - - type: Transform - pos: 3.5,-49.5 - parent: 12 - - uid: 4250 - components: - - type: Transform - pos: 4.5,-49.5 - parent: 12 - - uid: 4251 - components: - - type: Transform - pos: 5.5,-49.5 - parent: 12 - - uid: 4252 - components: - - type: Transform - pos: 5.5,-48.5 - parent: 12 - - uid: 4253 - components: - - type: Transform - pos: 6.5,-48.5 - parent: 12 - - uid: 4268 - components: - - type: Transform - pos: 8.5,-35.5 - parent: 12 - - uid: 4269 - components: - - type: Transform - pos: 8.5,-34.5 - parent: 12 - - uid: 4270 - components: - - type: Transform - pos: 7.5,-34.5 - parent: 12 - - uid: 4271 - components: - - type: Transform - pos: 6.5,-34.5 - parent: 12 - - uid: 4272 - components: - - type: Transform - pos: 5.5,-34.5 - parent: 12 - - uid: 4273 - components: - - type: Transform - pos: 5.5,-33.5 - parent: 12 - - uid: 4274 - components: - - type: Transform - pos: 5.5,-32.5 - parent: 12 - - uid: 4275 - components: - - type: Transform - pos: 5.5,-31.5 - parent: 12 - - uid: 4276 - components: - - type: Transform - pos: 5.5,-30.5 - parent: 12 - - uid: 4277 - components: - - type: Transform - pos: 4.5,-30.5 - parent: 12 - - uid: 4278 - components: - - type: Transform - pos: 3.5,-30.5 - parent: 12 - - uid: 4279 - components: - - type: Transform - pos: 2.5,-30.5 - parent: 12 - - uid: 4280 - components: - - type: Transform - pos: 1.5,-30.5 - parent: 12 - - uid: 4281 - components: - - type: Transform - pos: 0.5,-30.5 - parent: 12 - - uid: 4282 - components: - - type: Transform - pos: -0.5,-30.5 - parent: 12 - - uid: 4283 - components: - - type: Transform - pos: -1.5,-30.5 - parent: 12 - - uid: 4284 - components: - - type: Transform - pos: -2.5,-30.5 - parent: 12 - - uid: 4285 - components: - - type: Transform - pos: -3.5,-30.5 - parent: 12 - - uid: 4286 - components: - - type: Transform - pos: -4.5,-30.5 - parent: 12 - - uid: 4287 - components: - - type: Transform - pos: -5.5,-30.5 - parent: 12 - - uid: 4288 - components: - - type: Transform - pos: -6.5,-30.5 - parent: 12 - - uid: 4289 - components: - - type: Transform - pos: -7.5,-30.5 - parent: 12 - - uid: 4290 - components: - - type: Transform - pos: -8.5,-30.5 - parent: 12 - - uid: 4291 - components: - - type: Transform - pos: -9.5,-30.5 - parent: 12 - - uid: 4292 - components: - - type: Transform - pos: -7.5,-31.5 - parent: 12 - - uid: 4298 - components: - - type: Transform - pos: -7.5,-37.5 - parent: 12 - - uid: 4299 - components: - - type: Transform - pos: -7.5,-38.5 - parent: 12 - - uid: 4300 - components: - - type: Transform - pos: -7.5,-39.5 - parent: 12 - - uid: 4385 - components: - - 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 - pos: -38.5,-51.5 - parent: 12 - - uid: 4611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 12 - - uid: 4644 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-1.5 - parent: 12 - - uid: 4651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-4.5 - parent: 12 - - uid: 4656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-3.5 - parent: 12 - - uid: 4699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-33.5 - parent: 12 - - uid: 4717 - components: - - type: Transform - pos: -39.5,-52.5 - parent: 12 - - uid: 4728 - components: - - type: Transform - pos: -36.5,-53.5 - parent: 12 - - uid: 4766 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-7.5 - parent: 12 - - uid: 4767 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,13.5 - parent: 12 - - uid: 4793 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 12 - - uid: 4869 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 12 - - uid: 4879 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 12 - - uid: 4880 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 12 - - uid: 4928 - components: - - type: Transform - pos: -56.5,47.5 - parent: 12 - - uid: 4950 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,46.5 - parent: 12 - - uid: 4985 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,10.5 - parent: 12 - - uid: 4989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,22.5 - parent: 12 - - uid: 5041 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,16.5 - parent: 12 - - uid: 5055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-17.5 - parent: 12 - - uid: 5105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-34.5 - parent: 12 - - uid: 5198 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-19.5 - parent: 12 - - uid: 5217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-10.5 - parent: 12 - - uid: 5240 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: 2.5,22.5 - parent: 12 - - uid: 5384 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-6.5 - parent: 12 - - uid: 5419 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,10.5 - parent: 12 - - uid: 5506 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-8.5 - parent: 12 - - uid: 5507 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-8.5 - parent: 12 - - uid: 5526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-8.5 - parent: 12 - - uid: 5527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-8.5 - parent: 12 - - uid: 5538 - components: - - type: Transform - pos: 21.5,20.5 - parent: 12 - - uid: 5543 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-8.5 - parent: 12 - - uid: 5550 - components: - - type: Transform - pos: 20.5,20.5 - parent: 12 - - uid: 5552 - components: - - type: Transform - pos: 21.5,21.5 - parent: 12 - - uid: 5553 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,23.5 - parent: 12 - - uid: 5556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,14.5 - parent: 12 - - uid: 5559 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,12.5 - parent: 12 - - uid: 5560 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,12.5 - parent: 12 - - uid: 5561 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,12.5 - parent: 12 - - uid: 5795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-7.5 - parent: 12 - - uid: 5805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,9.5 - parent: 12 - - uid: 5807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,10.5 - parent: 12 - - uid: 5844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-8.5 - parent: 12 - - uid: 5847 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-10.5 - parent: 12 - - uid: 5852 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-6.5 - parent: 12 - - uid: 5857 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,0.5 - parent: 12 - - uid: 6032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,1.5 - parent: 12 - - uid: 6096 - components: - - 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 - rot: -1.5707963267948966 rad - pos: 46.5,-59.5 - parent: 12 - - uid: 6569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-50.5 - parent: 12 - - uid: 6581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-58.5 - parent: 12 - - uid: 6582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-57.5 - parent: 12 - - uid: 6583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-56.5 - parent: 12 - - uid: 6584 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-55.5 - parent: 12 - - uid: 6585 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-54.5 - parent: 12 - - uid: 6586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-53.5 - parent: 12 - - uid: 6587 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-52.5 - parent: 12 - - uid: 6588 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-51.5 - parent: 12 - - uid: 6589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-50.5 - parent: 12 - - uid: 6590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-49.5 - parent: 12 - - uid: 6591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-48.5 - parent: 12 - - uid: 6592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-47.5 - parent: 12 - - uid: 6593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-46.5 - parent: 12 - - uid: 6594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-45.5 - parent: 12 - - uid: 6595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-44.5 - parent: 12 - - uid: 6596 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-44.5 - parent: 12 - - uid: 6597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-44.5 - parent: 12 - - uid: 6598 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-46.5 - parent: 12 - - uid: 6599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-46.5 - parent: 12 - - uid: 6600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-46.5 - parent: 12 - - uid: 6601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-46.5 - parent: 12 - - uid: 6602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-46.5 - parent: 12 - - uid: 6603 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-46.5 - parent: 12 - - uid: 6604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-46.5 - parent: 12 - - uid: 6605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-50.5 - parent: 12 - - uid: 6606 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-50.5 - parent: 12 - - uid: 6607 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-50.5 - parent: 12 - - uid: 6608 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-50.5 - parent: 12 - - uid: 6609 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-50.5 - parent: 12 - - uid: 6610 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-50.5 - parent: 12 - - uid: 6611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-58.5 - parent: 12 - - uid: 6612 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-54.5 - parent: 12 - - uid: 6613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-54.5 - parent: 12 - - uid: 6614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-54.5 - parent: 12 - - uid: 6615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-54.5 - parent: 12 - - uid: 6616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-54.5 - parent: 12 - - uid: 6617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-54.5 - parent: 12 - - uid: 6618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-54.5 - parent: 12 - - uid: 6619 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-58.5 - parent: 12 - - uid: 6620 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-58.5 - parent: 12 - - uid: 6621 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-58.5 - parent: 12 - - uid: 6622 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-58.5 - parent: 12 - - uid: 6623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-58.5 - parent: 12 - - uid: 6624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-58.5 - parent: 12 - - uid: 6625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-58.5 - parent: 12 - - uid: 6626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-54.5 - parent: 12 - - uid: 6627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-54.5 - parent: 12 - - uid: 6628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-54.5 - parent: 12 - - uid: 6629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-54.5 - parent: 12 - - uid: 6630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-54.5 - parent: 12 - - uid: 6631 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-54.5 - parent: 12 - - uid: 6632 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-54.5 - parent: 12 - - uid: 6633 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-54.5 - parent: 12 - - uid: 6634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-54.5 - parent: 12 - - uid: 6635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-54.5 - parent: 12 - - uid: 6636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-54.5 - parent: 12 - - uid: 6637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-58.5 - parent: 12 - - uid: 6638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-58.5 - parent: 12 - - uid: 6639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-58.5 - parent: 12 - - uid: 6640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-58.5 - parent: 12 - - uid: 6641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-58.5 - parent: 12 - - uid: 6642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-58.5 - parent: 12 - - uid: 6643 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-58.5 - parent: 12 - - uid: 6644 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-58.5 - parent: 12 - - uid: 6645 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-58.5 - parent: 12 - - uid: 6646 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-58.5 - parent: 12 - - uid: 6647 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-58.5 - parent: 12 - - uid: 6648 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-58.5 - parent: 12 - - uid: 6649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-58.5 - parent: 12 - - uid: 6650 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-58.5 - parent: 12 - - uid: 6651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-58.5 - parent: 12 - - uid: 6652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-58.5 - parent: 12 - - uid: 6653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-58.5 - parent: 12 - - uid: 6654 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-58.5 - parent: 12 - - uid: 6655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-58.5 - parent: 12 - - uid: 6656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-58.5 - parent: 12 - - uid: 6657 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-58.5 - parent: 12 - - uid: 6658 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-58.5 - parent: 12 - - uid: 6659 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-58.5 - parent: 12 - - uid: 6660 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-58.5 - parent: 12 - - uid: 6661 - components: - - type: Transform - 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: 6773 - components: - - type: Transform - pos: 15.5,-15.5 - parent: 12 - - uid: 7112 - components: - - type: Transform - pos: -56.5,49.5 - parent: 12 - - uid: 7120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-37.5 - parent: 12 - - uid: 7154 - components: - - type: Transform - pos: 54.5,9.5 - parent: 12 - - uid: 7162 - components: - - type: Transform - pos: 16.5,26.5 - parent: 12 - - uid: 7163 - components: - - type: Transform - pos: 16.5,25.5 - parent: 12 - - uid: 7164 - components: - - type: Transform - pos: 16.5,28.5 - parent: 12 - - uid: 7165 - components: - - type: Transform - pos: 15.5,28.5 - parent: 12 - - uid: 7166 - components: - - type: Transform - pos: 16.5,27.5 - parent: 12 - - uid: 7167 - components: - - type: Transform - pos: 14.5,28.5 - parent: 12 - - uid: 7215 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,9.5 - parent: 12 - - uid: 7226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-2.5 - parent: 12 - - uid: 7254 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: 62.5,-33.5 - parent: 12 - - uid: 7622 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-34.5 - parent: 12 - - uid: 7623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-35.5 - parent: 12 - - uid: 7624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-36.5 - parent: 12 - - uid: 7625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-33.5 - parent: 12 - - uid: 7626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-34.5 - parent: 12 - - uid: 7627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-35.5 - parent: 12 - - uid: 7628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-36.5 - parent: 12 - - uid: 7629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-35.5 - parent: 12 - - uid: 7630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-34.5 - parent: 12 - - uid: 7631 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-35.5 - parent: 12 - - uid: 7632 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-34.5 - parent: 12 - - uid: 7633 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-35.5 - parent: 12 - - uid: 7634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-34.5 - parent: 12 - - uid: 7635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-35.5 - parent: 12 - - uid: 7636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-34.5 - parent: 12 - - uid: 7637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-35.5 - parent: 12 - - uid: 7638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-34.5 - parent: 12 - - uid: 7639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-35.5 - parent: 12 - - uid: 7640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-34.5 - parent: 12 - - uid: 7641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-35.5 - parent: 12 - - uid: 7642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-34.5 - parent: 12 - - uid: 7643 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-35.5 - parent: 12 - - uid: 7644 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-34.5 - parent: 12 - - uid: 7645 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-35.5 - parent: 12 - - uid: 7646 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-34.5 - parent: 12 - - uid: 7647 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-35.5 - parent: 12 - - uid: 7648 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-34.5 - parent: 12 - - uid: 7649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-35.5 - parent: 12 - - uid: 7650 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-34.5 - parent: 12 - - uid: 7651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-35.5 - parent: 12 - - uid: 7652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-34.5 - parent: 12 - - uid: 7653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-35.5 - parent: 12 - - uid: 7654 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-34.5 - parent: 12 - - uid: 7655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-35.5 - parent: 12 - - uid: 7656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-34.5 - parent: 12 - - uid: 7657 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-35.5 - parent: 12 - - uid: 7658 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-34.5 - parent: 12 - - uid: 7659 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-35.5 - parent: 12 - - uid: 7660 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-34.5 - parent: 12 - - uid: 7661 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-35.5 - parent: 12 - - uid: 7662 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-34.5 - parent: 12 - - uid: 7663 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-35.5 - parent: 12 - - uid: 7664 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-34.5 - parent: 12 - - uid: 7665 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-35.5 - parent: 12 - - uid: 7666 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-34.5 - parent: 12 - - uid: 7768 - components: - - type: Transform - pos: 65.5,-2.5 - parent: 12 - - uid: 7792 - components: - - type: Transform - pos: -35.5,-53.5 - parent: 12 - - uid: 7842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-15.5 - parent: 12 - - uid: 7900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-47.5 - parent: 12 - - uid: 8296 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,16.5 - parent: 12 - - uid: 8440 - components: - - type: Transform - pos: 65.5,-1.5 - parent: 12 - - uid: 8443 - components: - - type: Transform - pos: 65.5,-0.5 - parent: 12 - - uid: 8452 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-10.5 - parent: 12 - - uid: 8453 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-12.5 - parent: 12 - - uid: 8456 - components: - - type: Transform - pos: 65.5,1.5 - parent: 12 - - uid: 8490 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-37.5 - parent: 12 - - uid: 8491 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-39.5 - parent: 12 - - uid: 8709 - components: - - type: Transform - pos: 65.5,3.5 - parent: 12 - - uid: 8732 - components: - - type: Transform - pos: 65.5,2.5 - parent: 12 - - uid: 8746 - components: - - type: Transform - pos: 83.5,-35.5 - parent: 12 - - uid: 8747 - components: - - type: Transform - pos: 83.5,-34.5 - parent: 12 - - uid: 8748 - components: - - type: Transform - pos: 84.5,-33.5 - parent: 12 - - uid: 8749 - components: - - type: Transform - pos: 84.5,-34.5 - parent: 12 - - uid: 8750 - components: - - type: Transform - pos: 84.5,-35.5 - parent: 12 - - uid: 8751 - components: - - type: Transform - pos: 84.5,-36.5 - parent: 12 - - uid: 8752 - components: - - type: Transform - pos: 85.5,-33.5 - parent: 12 - - uid: 8753 - components: - - type: Transform - pos: 85.5,-34.5 - parent: 12 - - uid: 8754 - components: - - type: Transform - pos: 85.5,-35.5 - parent: 12 - - uid: 8755 - components: - - type: Transform - pos: 85.5,-36.5 - parent: 12 - - uid: 8756 - components: - - type: Transform - pos: 86.5,-36.5 - parent: 12 - - uid: 8757 - components: - - type: Transform - pos: 87.5,-36.5 - parent: 12 - - uid: 8758 - components: - - type: Transform - pos: 88.5,-36.5 - parent: 12 - - uid: 8759 - components: - - type: Transform - pos: 88.5,-34.5 - parent: 12 - - uid: 8760 - components: - - type: Transform - pos: 88.5,-33.5 - parent: 12 - - uid: 8761 - components: - - type: Transform - pos: 87.5,-33.5 - parent: 12 - - uid: 8762 - components: - - type: Transform - pos: 86.5,-33.5 - parent: 12 - - uid: 8763 - components: - - type: Transform - pos: 88.5,-35.5 - parent: 12 - - uid: 8765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-35.5 - parent: 12 - - uid: 8846 - components: - - type: Transform - pos: 65.5,4.5 - parent: 12 - - uid: 8854 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-42.5 - parent: 12 - - uid: 8855 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-43.5 - parent: 12 - - uid: 8856 - components: - - type: Transform - pos: 65.5,5.5 - parent: 12 - - uid: 8857 - components: - - type: Transform - pos: 65.5,7.5 - parent: 12 - - uid: 8859 - components: - - type: Transform - pos: 65.5,8.5 - parent: 12 - - uid: 8860 - components: - - type: Transform - pos: 65.5,9.5 - parent: 12 - - uid: 8877 - components: - - type: Transform - pos: 65.5,6.5 - parent: 12 - - uid: 8910 - components: - - 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 - pos: 65.5,11.5 - parent: 12 - - uid: 9066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-9.5 - parent: 12 - - uid: 9222 - components: - - type: Transform - pos: 8.5,28.5 - parent: 12 - - uid: 9259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-9.5 - parent: 12 - - uid: 9416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,10.5 - parent: 12 - - uid: 9528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,10.5 - parent: 12 - - uid: 9583 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,9.5 - parent: 12 - - uid: 9585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,9.5 - parent: 12 - - uid: 9596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,9.5 - parent: 12 - - uid: 9609 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,30.5 - parent: 12 - - uid: 9625 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,10.5 - parent: 12 - - uid: 9648 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-47.5 - parent: 12 - - uid: 9658 - components: - - type: Transform - pos: 9.5,28.5 - parent: 12 - - uid: 9707 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,32.5 - parent: 12 - - uid: 9723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,28.5 - parent: 12 - - uid: 9968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,59.5 - parent: 12 - - uid: 10320 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-8.5 - parent: 12 - - uid: 10326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-5.5 - parent: 12 - - uid: 10594 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-5.5 - parent: 12 - - uid: 10595 - components: - - type: Transform - pos: -6.5,21.5 - parent: 12 - - uid: 10658 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,69.5 - parent: 12 - - uid: 10818 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,31.5 - parent: 12 - - uid: 10820 - components: - - type: Transform - pos: -57.5,-47.5 - parent: 12 - - uid: 10835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,10.5 - parent: 12 - - uid: 10836 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,10.5 - parent: 12 - - uid: 10870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,8.5 - parent: 12 - - uid: 10917 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,22.5 - parent: 12 - - uid: 10921 - components: - - type: Transform - pos: 21.5,12.5 - parent: 12 - - uid: 10929 - components: - - type: Transform - pos: 22.5,10.5 - parent: 12 - - uid: 10930 - components: - - type: Transform - pos: 19.5,10.5 - parent: 12 - - uid: 10935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,10.5 - parent: 12 - - uid: 10936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,10.5 - parent: 12 - - uid: 10949 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,9.5 - parent: 12 - - uid: 10950 - components: - - 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 - pos: 18.5,24.5 - parent: 12 - - uid: 10978 - components: - - type: Transform - 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 - pos: 22.5,11.5 - parent: 12 - - uid: 11056 - components: - - type: Transform - pos: 21.5,11.5 - parent: 12 - - uid: 11057 - components: - - type: Transform - pos: 22.5,9.5 - parent: 12 - - uid: 11058 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,13.5 - parent: 12 - - uid: 11059 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,14.5 - parent: 12 - - uid: 11060 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,15.5 - parent: 12 - - uid: 11063 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,18.5 - parent: 12 - - uid: 11202 - components: - - type: Transform - pos: 13.5,28.5 - parent: 12 - - uid: 11224 - components: - - type: Transform - pos: 65.5,0.5 - parent: 12 - - uid: 11227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,66.5 - parent: 12 - - uid: 11228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,67.5 - parent: 12 - - uid: 11229 - components: - - type: Transform - 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 - pos: -2.5,9.5 - parent: 12 - - uid: 11345 - components: - - type: Transform - pos: -3.5,9.5 - parent: 12 - - uid: 11358 - components: - - type: Transform - pos: -4.5,9.5 - parent: 12 - - uid: 11375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,12.5 - parent: 12 - - uid: 11385 - components: - - type: Transform - pos: 31.5,8.5 - parent: 12 - - uid: 11386 - components: - - 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 - rot: -1.5707963267948966 rad - pos: 20.5,9.5 - parent: 12 - - uid: 11403 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-15.5 - parent: 12 - - uid: 11455 - components: - - type: Transform - pos: 47.5,11.5 - parent: 12 - - uid: 11464 - components: - - type: Transform - pos: 47.5,9.5 - parent: 12 - - uid: 11569 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-18.5 - parent: 12 - - uid: 11571 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,15.5 - parent: 12 - - uid: 11688 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-20.5 - parent: 12 - - uid: 11940 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,62.5 - parent: 12 - - uid: 12004 - components: - - type: Transform - pos: 41.5,13.5 - parent: 12 - - uid: 12052 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,12.5 - parent: 12 - - uid: 12073 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,13.5 - parent: 12 - - uid: 12075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,13.5 - parent: 12 - - uid: 12086 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,12.5 - parent: 12 - - uid: 12108 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,12.5 - parent: 12 - - uid: 12109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,12.5 - parent: 12 - - uid: 12147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,12.5 - parent: 12 - - uid: 12274 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,22.5 - parent: 12 - - uid: 12883 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,62.5 - parent: 12 - - uid: 13788 - components: - - type: Transform - 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 - pos: 31.5,69.5 - parent: 12 - - uid: 14300 - components: - - type: Transform - pos: 31.5,70.5 - parent: 12 - - uid: 14303 - components: - - type: Transform - pos: 31.5,71.5 - parent: 12 - - uid: 14305 - components: - - type: Transform - pos: 31.5,72.5 - parent: 12 - - uid: 14306 - components: - - type: Transform - pos: 32.5,72.5 - parent: 12 - - uid: 14307 - components: - - type: Transform - pos: 33.5,72.5 - parent: 12 - - uid: 14308 - components: - - type: Transform - pos: 34.5,72.5 - parent: 12 - - uid: 14309 - components: - - type: Transform - pos: 35.5,72.5 - parent: 12 - - uid: 14310 - components: - - type: Transform - pos: 36.5,72.5 - parent: 12 - - uid: 14311 - components: - - type: Transform - pos: 37.5,72.5 - parent: 12 - - uid: 14312 - components: - - type: Transform - pos: 38.5,72.5 - parent: 12 - - uid: 14313 - components: - - type: Transform - pos: 39.5,72.5 - parent: 12 - - uid: 14314 - components: - - type: Transform - pos: 40.5,72.5 - parent: 12 - - uid: 14315 - components: - - type: Transform - pos: 41.5,72.5 - parent: 12 - - uid: 14316 - components: - - type: Transform - pos: 42.5,72.5 - parent: 12 - - uid: 14317 - components: - - type: Transform - pos: 43.5,72.5 - parent: 12 - - uid: 14318 - components: - - type: Transform - pos: 44.5,72.5 - parent: 12 - - uid: 14319 - components: - - type: Transform - pos: 45.5,72.5 - parent: 12 - - uid: 14320 - components: - - type: Transform - pos: 46.5,72.5 - parent: 12 - - uid: 14321 - components: - - type: Transform - pos: 47.5,72.5 - parent: 12 - - uid: 14347 - components: - - type: Transform - pos: 48.5,72.5 - parent: 12 - - uid: 14348 - components: - - type: Transform - pos: 49.5,72.5 - parent: 12 - - uid: 14349 - components: - - type: Transform - pos: 50.5,72.5 - parent: 12 - - uid: 14350 - components: - - type: Transform - pos: 51.5,72.5 - parent: 12 - - uid: 14351 - components: - - type: Transform - pos: 51.5,73.5 - parent: 12 - - uid: 14384 - components: - - type: Transform - pos: 52.5,72.5 - parent: 12 - - uid: 14385 - components: - - type: Transform - pos: 53.5,72.5 - parent: 12 - - uid: 14386 - components: - - type: Transform - pos: 54.5,72.5 - parent: 12 - - uid: 14387 - components: - - type: Transform - pos: 55.5,72.5 - parent: 12 - - uid: 14388 - components: - - type: Transform - pos: 56.5,72.5 - parent: 12 - - uid: 14389 - components: - - type: Transform - pos: 57.5,72.5 - parent: 12 - - uid: 14390 - components: - - type: Transform - pos: 58.5,72.5 - parent: 12 - - uid: 14391 - components: - - type: Transform - pos: 59.5,72.5 - parent: 12 - - uid: 14392 - components: - - type: Transform - pos: 60.5,72.5 - parent: 12 - - uid: 14393 - components: - - type: Transform - pos: 61.5,72.5 - parent: 12 - - uid: 14394 - components: - - type: Transform - pos: 62.5,72.5 - parent: 12 - - uid: 14395 - components: - - type: Transform - pos: 44.5,77.5 - parent: 12 - - uid: 14396 - components: - - type: Transform - pos: 45.5,77.5 - parent: 12 - - uid: 14397 - components: - - type: Transform - pos: 46.5,77.5 - parent: 12 - - uid: 14398 - components: - - type: Transform - pos: 47.5,77.5 - parent: 12 - - uid: 14399 - components: - - type: Transform - pos: 48.5,77.5 - parent: 12 - - uid: 14400 - components: - - type: Transform - pos: 49.5,77.5 - parent: 12 - - uid: 14401 - components: - - type: Transform - pos: 50.5,77.5 - parent: 12 - - uid: 14402 - components: - - type: Transform - pos: 51.5,77.5 - parent: 12 - - uid: 14403 - components: - - type: Transform - pos: 52.5,77.5 - parent: 12 - - uid: 14404 - components: - - type: Transform - pos: 53.5,77.5 - parent: 12 - - uid: 14405 - components: - - type: Transform - pos: 54.5,77.5 - parent: 12 - - uid: 14406 - components: - - type: Transform - pos: 55.5,77.5 - parent: 12 - - uid: 14407 - components: - - type: Transform - pos: 56.5,77.5 - parent: 12 - - uid: 14408 - components: - - type: Transform - pos: 57.5,77.5 - parent: 12 - - uid: 14409 - components: - - type: Transform - pos: 58.5,77.5 - parent: 12 - - uid: 14410 - components: - - type: Transform - pos: 51.5,74.5 - parent: 12 - - uid: 14411 - components: - - type: Transform - pos: 51.5,75.5 - parent: 12 - - uid: 14412 - components: - - type: Transform - pos: 51.5,76.5 - parent: 12 - - uid: 15007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-16.5 - parent: 12 - - uid: 15678 - components: - - type: Transform - pos: 11.5,28.5 - parent: 12 - - uid: 15682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,20.5 - parent: 12 - - uid: 15683 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,19.5 - parent: 12 - - uid: 15684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,18.5 - parent: 12 - - uid: 15685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,17.5 - parent: 12 - - uid: 15686 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,16.5 - parent: 12 - - uid: 15688 - components: - - type: Transform - pos: -5.5,33.5 - parent: 12 - - uid: 16370 - components: - - type: Transform - pos: 12.5,28.5 - parent: 12 - - uid: 16375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,16.5 - parent: 12 - - uid: 16424 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-8.5 - parent: 12 - - uid: 16433 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-11.5 - parent: 12 - - uid: 16434 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-10.5 - parent: 12 - - uid: 16639 - components: - - type: Transform - 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 - pos: -6.5,22.5 - parent: 12 - - uid: 17552 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,10.5 - parent: 12 - - uid: 17607 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,11.5 - parent: 12 - - uid: 17662 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,5.5 - parent: 12 - - uid: 17845 - components: - - type: Transform - pos: -56.5,44.5 - parent: 12 - - uid: 17854 - components: - - type: Transform - pos: -56.5,52.5 - parent: 12 - - uid: 17855 - components: - - type: Transform - pos: -56.5,51.5 - parent: 12 - - uid: 17935 - components: - - type: Transform - pos: -56.5,43.5 - parent: 12 - - uid: 17953 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,7.5 - parent: 12 - - uid: 17975 - components: - - type: Transform - pos: -56.5,45.5 - parent: 12 - - uid: 17976 - components: - - type: Transform - pos: -56.5,46.5 - parent: 12 - - uid: 18069 - components: - - type: Transform - pos: -70.5,48.5 - parent: 12 - - uid: 18070 - components: - - type: Transform - pos: -69.5,48.5 - parent: 12 - - uid: 18071 - components: - - type: Transform - pos: -68.5,48.5 - parent: 12 - - uid: 18072 - components: - - type: Transform - pos: -67.5,48.5 - parent: 12 - - uid: 18073 - components: - - type: Transform - pos: -66.5,48.5 - parent: 12 - - uid: 18074 - components: - - type: Transform - pos: -65.5,48.5 - parent: 12 - - uid: 18075 - components: - - type: Transform - pos: -64.5,48.5 - parent: 12 - - uid: 18076 - components: - - type: Transform - pos: -63.5,48.5 - parent: 12 - - uid: 18077 - components: - - type: Transform - pos: -62.5,48.5 - parent: 12 - - uid: 18078 - components: - - type: Transform - pos: -61.5,48.5 - parent: 12 - - uid: 18079 - components: - - type: Transform - pos: -60.5,48.5 - parent: 12 - - uid: 18080 - components: - - type: Transform - pos: -59.5,48.5 - parent: 12 - - uid: 18081 - components: - - type: Transform - pos: -58.5,48.5 - parent: 12 - - uid: 18082 - components: - - type: Transform - pos: -57.5,48.5 - parent: 12 - - uid: 18083 - components: - - type: Transform - pos: -63.5,53.5 - parent: 12 - - uid: 18084 - components: - - type: Transform - pos: -62.5,53.5 - parent: 12 - - uid: 18085 - components: - - type: Transform - pos: -61.5,53.5 - parent: 12 - - uid: 18086 - components: - - type: Transform - pos: -60.5,53.5 - parent: 12 - - uid: 18087 - components: - - type: Transform - pos: -59.5,53.5 - parent: 12 - - uid: 18088 - components: - - type: Transform - pos: -58.5,53.5 - parent: 12 - - uid: 18089 - components: - - type: Transform - pos: -57.5,43.5 - parent: 12 - - uid: 18090 - components: - - type: Transform - pos: -58.5,43.5 - parent: 12 - - uid: 18091 - components: - - type: Transform - pos: -59.5,43.5 - parent: 12 - - uid: 18092 - components: - - type: Transform - pos: -60.5,43.5 - parent: 12 - - uid: 18093 - components: - - type: Transform - pos: -61.5,43.5 - parent: 12 - - uid: 18094 - components: - - type: Transform - pos: -62.5,43.5 - parent: 12 - - uid: 18095 - components: - - type: Transform - pos: -63.5,43.5 - parent: 12 - - uid: 18096 - components: - - type: Transform - pos: -64.5,43.5 - parent: 12 - - uid: 18097 - components: - - type: Transform - pos: -65.5,43.5 - parent: 12 - - uid: 18098 - components: - - type: Transform - pos: -66.5,43.5 - parent: 12 - - uid: 18099 - components: - - type: Transform - pos: -67.5,43.5 - parent: 12 - - uid: 18100 - components: - - type: Transform - pos: -56.5,50.5 - parent: 12 - - uid: 18107 - components: - - type: Transform - pos: -56.5,53.5 - parent: 12 - - uid: 18151 - components: - - type: Transform - pos: -57.5,53.5 - parent: 12 - - uid: 18152 - components: - - type: Transform - pos: -64.5,53.5 - parent: 12 - - uid: 18153 - components: - - type: Transform - pos: -65.5,53.5 - parent: 12 - - uid: 18154 - components: - - type: Transform - pos: -66.5,53.5 - parent: 12 - - uid: 18155 - components: - - 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 - rot: 3.141592653589793 rad - pos: 51.5,-5.5 - parent: 12 - - uid: 19820 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-5.5 - parent: 12 - - uid: 19864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-45.5 - parent: 12 - - uid: 19867 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-44.5 - parent: 12 - - uid: 19868 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-40.5 - parent: 12 - - uid: 20107 - components: - - type: Transform - pos: -22.5,59.5 - parent: 12 - - uid: 20540 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-46.5 - parent: 12 - - uid: 21425 - components: - - type: Transform - pos: -1.5,34.5 - parent: 12 - - uid: 21470 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,14.5 - parent: 12 - - uid: 21533 - components: - - type: Transform - pos: -6.5,23.5 - parent: 12 - - uid: 21534 - components: - - type: Transform - pos: -6.5,24.5 - parent: 12 - - uid: 21535 - components: - - type: Transform - pos: -6.5,25.5 - parent: 12 - - uid: 21536 - components: - - type: Transform - pos: -7.5,16.5 - parent: 12 - - uid: 21537 - components: - - type: Transform - pos: -8.5,16.5 - parent: 12 - - uid: 21538 - components: - - type: Transform - pos: -9.5,16.5 - parent: 12 - - uid: 21539 - components: - - type: Transform - pos: -11.5,16.5 - parent: 12 - - uid: 21540 - components: - - type: Transform - pos: -10.5,16.5 - parent: 12 - - uid: 21541 - components: - - type: Transform - pos: -12.5,16.5 - parent: 12 - - uid: 21542 - components: - - type: Transform - pos: -5.5,16.5 - parent: 12 - - uid: 21543 - components: - - type: Transform - pos: -5.5,15.5 - parent: 12 - - uid: 21544 - components: - - type: Transform - pos: -5.5,13.5 - parent: 12 - - uid: 21545 - components: - - type: Transform - pos: -5.5,12.5 - parent: 12 - - uid: 21546 - components: - - type: Transform - pos: -5.5,11.5 - parent: 12 - - uid: 21547 - components: - - type: Transform - pos: -5.5,10.5 - parent: 12 - - uid: 21548 - components: - - type: Transform - pos: -5.5,9.5 - parent: 12 - - uid: 21549 - components: - - type: Transform - pos: -5.5,14.5 - parent: 12 - - uid: 21550 - components: - - type: Transform - pos: -6.5,32.5 - parent: 12 - - uid: 21551 - components: - - type: Transform - pos: -6.5,30.5 - parent: 12 - - uid: 21553 - components: - - type: Transform - pos: -3.5,33.5 - parent: 12 - - uid: 21554 - components: - - type: Transform - pos: -6.5,33.5 - parent: 12 - - uid: 21555 - components: - - type: Transform - pos: -6.5,31.5 - parent: 12 - - uid: 21556 - components: - - type: Transform - pos: -2.5,33.5 - parent: 12 - - uid: 21557 - components: - - type: Transform - pos: -4.5,33.5 - parent: 12 - - uid: 21559 - components: - - type: Transform - pos: -1.5,35.5 - parent: 12 - - uid: 21560 - components: - - type: Transform - pos: -1.5,36.5 - parent: 12 - - uid: 21561 - components: - - type: Transform - pos: -1.5,37.5 - parent: 12 - - uid: 21562 - components: - - type: Transform - pos: -1.5,38.5 - parent: 12 - - uid: 21563 - components: - - type: Transform - pos: -1.5,39.5 - parent: 12 - - uid: 21564 - components: - - type: Transform - pos: -1.5,40.5 - parent: 12 - - uid: 21565 - components: - - type: Transform - pos: -1.5,41.5 - parent: 12 - - uid: 21568 - components: - - type: Transform - pos: 24.5,62.5 - parent: 12 - - uid: 21569 - components: - - type: Transform - pos: 26.5,62.5 - parent: 12 - - uid: 21570 - components: - - type: Transform - pos: 27.5,62.5 - parent: 12 - - uid: 21571 - components: - - type: Transform - pos: 25.5,62.5 - parent: 12 - - uid: 21572 - components: - - type: Transform - pos: 28.5,62.5 - parent: 12 - - uid: 21573 - components: - - type: Transform - pos: 29.5,62.5 - parent: 12 - - uid: 21574 - components: - - type: Transform - pos: 30.5,62.5 - parent: 12 - - uid: 21575 - components: - - type: Transform - pos: 32.5,62.5 - parent: 12 - - uid: 21576 - components: - - type: Transform - pos: 33.5,62.5 - parent: 12 - - uid: 21577 - components: - - type: Transform - pos: 31.5,62.5 - parent: 12 - - uid: 21578 - components: - - type: Transform - pos: 34.5,62.5 - parent: 12 - - uid: 21579 - components: - - type: Transform - pos: 35.5,62.5 - parent: 12 - - uid: 21580 - components: - - type: Transform - pos: 35.5,63.5 - parent: 12 - - uid: 21581 - components: - - type: Transform - pos: 35.5,61.5 - parent: 12 - - uid: 21582 - components: - - type: Transform - pos: 35.5,60.5 - parent: 12 - - uid: 21583 - components: - - type: Transform - pos: 36.5,60.5 - parent: 12 - - uid: 21584 - components: - - type: Transform - pos: 37.5,60.5 - parent: 12 - - uid: 21585 - components: - - type: Transform - pos: 38.5,60.5 - parent: 12 - - uid: 21586 - components: - - type: Transform - pos: 39.5,60.5 - parent: 12 - - uid: 21587 - components: - - type: Transform - pos: 40.5,60.5 - parent: 12 - - uid: 21588 - components: - - type: Transform - pos: 41.5,60.5 - parent: 12 - - uid: 21589 - components: - - type: Transform - pos: 43.5,60.5 - parent: 12 - - uid: 21590 - components: - - type: Transform - pos: 42.5,60.5 - parent: 12 - - uid: 21591 - components: - - type: Transform - pos: 43.5,59.5 - parent: 12 - - uid: 21592 - components: - - type: Transform - pos: 43.5,58.5 - parent: 12 - - uid: 21959 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-8.5 - parent: 12 - - uid: 21997 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-8.5 - parent: 12 - - uid: 22022 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,17.5 - parent: 12 - - uid: 22076 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-41.5 - parent: 12 - - uid: 22170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-4.5 - parent: 12 - - uid: 22174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-4.5 - parent: 12 - - uid: 22175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-4.5 - parent: 12 - - uid: 22176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-3.5 - parent: 12 - - uid: 22177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-2.5 - parent: 12 - - uid: 22178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 12 - - uid: 22179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-1.5 - parent: 12 - - uid: 22180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 12 - - uid: 22182 - components: - - type: Transform - pos: 54.5,66.5 - parent: 12 - - uid: 22286 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,12.5 - parent: 12 - - uid: 22291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,12.5 - parent: 12 - - uid: 22317 - components: - - type: Transform - pos: 41.5,10.5 - parent: 12 - - uid: 22339 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-5.5 - parent: 12 - - uid: 22470 - components: - - type: Transform - pos: 8.5,37.5 - parent: 12 - - uid: 22471 - components: - - type: Transform - pos: 7.5,37.5 - parent: 12 - - uid: 22520 - components: - - type: Transform - pos: -2.5,34.5 - parent: 12 - - uid: 23158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-5.5 - parent: 12 - - uid: 23161 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-5.5 - parent: 12 - - uid: 23534 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: 21.5,17.5 - parent: 12 - - uid: 24438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,16.5 - parent: 12 - - uid: 24512 - components: - - type: Transform - pos: 14.5,62.5 - parent: 12 - - uid: 24513 - components: - - type: Transform - pos: 13.5,62.5 - parent: 12 - - uid: 24514 - components: - - type: Transform - pos: 12.5,62.5 - parent: 12 - - uid: 24515 - components: - - type: Transform - pos: 11.5,62.5 - parent: 12 - - uid: 24516 - components: - - type: Transform - pos: 10.5,62.5 - parent: 12 - - uid: 24517 - components: - - type: Transform - pos: 9.5,62.5 - parent: 12 - - uid: 24518 - components: - - type: Transform - pos: 7.5,62.5 - parent: 12 - - uid: 24519 - components: - - type: Transform - pos: 6.5,62.5 - parent: 12 - - uid: 24520 - components: - - type: Transform - pos: 5.5,62.5 - parent: 12 - - uid: 24521 - components: - - type: Transform - pos: 4.5,62.5 - parent: 12 - - uid: 24522 - components: - - type: Transform - pos: 3.5,62.5 - parent: 12 - - uid: 24523 - components: - - type: Transform - pos: 2.5,62.5 - parent: 12 - - uid: 24524 - components: - - type: Transform - pos: 0.5,62.5 - parent: 12 - - uid: 24525 - components: - - type: Transform - pos: 1.5,62.5 - parent: 12 - - uid: 24526 - components: - - type: Transform - pos: 8.5,62.5 - parent: 12 - - uid: 24527 - components: - - type: Transform - pos: -0.5,61.5 - parent: 12 - - uid: 24528 - components: - - type: Transform - pos: -0.5,60.5 - parent: 12 - - uid: 24529 - components: - - type: Transform - pos: -0.5,59.5 - parent: 12 - - uid: 24530 - components: - - type: Transform - pos: -0.5,58.5 - parent: 12 - - uid: 24531 - components: - - type: Transform - pos: -0.5,57.5 - parent: 12 - - uid: 24532 - components: - - type: Transform - pos: -0.5,56.5 - parent: 12 - - uid: 24533 - components: - - type: Transform - pos: -0.5,55.5 - parent: 12 - - uid: 24534 - components: - - type: Transform - pos: -1.5,55.5 - parent: 12 - - uid: 24535 - components: - - type: Transform - pos: -1.5,54.5 - parent: 12 - - uid: 24536 - components: - - type: Transform - pos: -1.5,53.5 - parent: 12 - - uid: 24537 - components: - - type: Transform - pos: -1.5,52.5 - parent: 12 - - uid: 24538 - components: - - type: Transform - pos: -1.5,51.5 - parent: 12 - - uid: 24539 - components: - - type: Transform - pos: -1.5,50.5 - parent: 12 - - uid: 24540 - components: - - type: Transform - pos: -1.5,49.5 - parent: 12 - - uid: 24541 - components: - - type: Transform - pos: -1.5,48.5 - parent: 12 - - uid: 24542 - components: - - type: Transform - pos: -1.5,47.5 - parent: 12 - - uid: 24543 - components: - - type: Transform - pos: -0.5,62.5 - parent: 12 - - uid: 24544 - components: - - type: Transform - pos: -0.5,63.5 - parent: 12 - - uid: 24545 - components: - - type: Transform - pos: -0.5,64.5 - parent: 12 - - uid: 24546 - components: - - type: Transform - pos: -0.5,65.5 - parent: 12 - - uid: 24547 - components: - - type: Transform - pos: -0.5,66.5 - parent: 12 - - uid: 24548 - components: - - type: Transform - pos: -0.5,67.5 - parent: 12 - - uid: 24549 - components: - - type: Transform - pos: -0.5,68.5 - parent: 12 - - uid: 24551 - components: - - type: Transform - pos: -2.5,69.5 - parent: 12 - - uid: 24552 - components: - - type: Transform - pos: -3.5,69.5 - parent: 12 - - uid: 24553 - components: - - type: Transform - pos: -4.5,69.5 - parent: 12 - - uid: 24554 - components: - - type: Transform - pos: -5.5,69.5 - parent: 12 - - uid: 24555 - components: - - type: Transform - pos: -6.5,69.5 - parent: 12 - - uid: 24556 - components: - - type: Transform - pos: -1.5,69.5 - parent: 12 - - uid: 24557 - components: - - type: Transform - pos: -13.5,68.5 - parent: 12 - - uid: 24558 - components: - - type: Transform - pos: -13.5,69.5 - parent: 12 - - uid: 24559 - components: - - type: Transform - pos: -12.5,69.5 - parent: 12 - - uid: 24560 - components: - - type: Transform - pos: -14.5,68.5 - parent: 12 - - uid: 24561 - components: - - type: Transform - pos: -15.5,68.5 - parent: 12 - - uid: 24562 - components: - - type: Transform - pos: -16.5,68.5 - parent: 12 - - uid: 24563 - components: - - type: Transform - pos: -17.5,68.5 - parent: 12 - - uid: 24564 - components: - - type: Transform - pos: -18.5,68.5 - parent: 12 - - uid: 24568 - components: - - type: Transform - pos: -19.5,65.5 - parent: 12 - - uid: 24569 - components: - - type: Transform - pos: -19.5,64.5 - parent: 12 - - uid: 24570 - components: - - type: Transform - pos: -19.5,63.5 - parent: 12 - - uid: 24571 - components: - - type: Transform - pos: -19.5,62.5 - parent: 12 - - uid: 24572 - components: - - type: Transform - pos: -19.5,61.5 - parent: 12 - - uid: 24573 - components: - - type: Transform - pos: -19.5,60.5 - parent: 12 - - uid: 24574 - components: - - type: Transform - pos: -19.5,59.5 - parent: 12 - - uid: 24575 - components: - - type: Transform - pos: -19.5,58.5 - parent: 12 - - uid: 24576 - components: - - type: Transform - pos: -19.5,56.5 - parent: 12 - - uid: 24577 - components: - - type: Transform - pos: -19.5,55.5 - parent: 12 - - uid: 24578 - components: - - type: Transform - pos: -19.5,57.5 - parent: 12 - - uid: 24579 - components: - - type: Transform - pos: -19.5,54.5 - parent: 12 - - uid: 24580 - components: - - type: Transform - pos: -19.5,53.5 - parent: 12 - - uid: 24581 - components: - - type: Transform - pos: -19.5,52.5 - parent: 12 - - uid: 24582 - components: - - type: Transform - pos: -19.5,51.5 - parent: 12 - - uid: 24583 - components: - - type: Transform - pos: -19.5,50.5 - parent: 12 - - uid: 24584 - components: - - type: Transform - pos: -20.5,50.5 - parent: 12 - - uid: 24585 - components: - - type: Transform - pos: -21.5,50.5 - parent: 12 - - uid: 24586 - components: - - type: Transform - pos: -22.5,50.5 - parent: 12 - - uid: 24587 - components: - - type: Transform - pos: -19.5,33.5 - parent: 12 - - uid: 24588 - components: - - type: Transform - pos: -20.5,33.5 - parent: 12 - - uid: 24589 - components: - - type: Transform - pos: -21.5,33.5 - parent: 12 - - uid: 24590 - components: - - type: Transform - pos: -22.5,33.5 - parent: 12 - - uid: 24591 - components: - - type: Transform - pos: -22.5,34.5 - parent: 12 - - uid: 24592 - components: - - type: Transform - pos: -22.5,35.5 - parent: 12 - - uid: 24593 - components: - - type: Transform - pos: -22.5,36.5 - parent: 12 - - uid: 24594 - components: - - type: Transform - pos: -23.5,36.5 - parent: 12 - - uid: 24595 - components: - - type: Transform - pos: -24.5,36.5 - parent: 12 - - uid: 24596 - components: - - type: Transform - pos: -25.5,36.5 - parent: 12 - - uid: 24597 - components: - - type: Transform - pos: -26.5,36.5 - parent: 12 - - uid: 24598 - components: - - type: Transform - pos: -27.5,36.5 - parent: 12 - - uid: 24599 - components: - - type: Transform - pos: -28.5,36.5 - parent: 12 - - uid: 24600 - components: - - type: Transform - pos: -29.5,36.5 - parent: 12 - - uid: 24601 - components: - - type: Transform - pos: -30.5,36.5 - parent: 12 - - uid: 24602 - components: - - type: Transform - pos: 32.5,-30.5 - parent: 12 - - uid: 24603 - components: - - type: Transform - pos: 32.5,-31.5 - parent: 12 - - uid: 24604 - components: - - type: Transform - pos: 32.5,-32.5 - parent: 12 - - uid: 24605 - components: - - type: Transform - pos: 32.5,-34.5 - parent: 12 - - uid: 24606 - components: - - type: Transform - pos: 32.5,-33.5 - parent: 12 - - uid: 24607 - components: - - type: Transform - pos: 33.5,-34.5 - parent: 12 - - uid: 24608 - components: - - type: Transform - pos: 34.5,-34.5 - parent: 12 - - uid: 24609 - components: - - type: Transform - pos: 35.5,-34.5 - parent: 12 - - uid: 24610 - components: - - type: Transform - pos: 36.5,-34.5 - parent: 12 - - uid: 24611 - components: - - type: Transform - pos: 37.5,-34.5 - parent: 12 - - uid: 24612 - components: - - type: Transform - pos: 38.5,-34.5 - parent: 12 - - uid: 24613 - components: - - type: Transform - pos: 39.5,-34.5 - parent: 12 - - uid: 24614 - components: - - type: Transform - pos: 40.5,-34.5 - parent: 12 - - uid: 24615 - components: - - type: Transform - pos: 41.5,-34.5 - parent: 12 - - uid: 24616 - components: - - type: Transform - pos: 42.5,-34.5 - parent: 12 - - uid: 24617 - components: - - type: Transform - pos: 43.5,-34.5 - parent: 12 - - uid: 24618 - components: - - type: Transform - pos: 44.5,-34.5 - parent: 12 - - uid: 24619 - components: - - type: Transform - pos: 45.5,-34.5 - parent: 12 - - uid: 24620 - components: - - type: Transform - pos: 46.5,-34.5 - parent: 12 - - uid: 24621 - components: - - type: Transform - pos: 47.5,-34.5 - parent: 12 - - uid: 24622 - components: - - type: Transform - pos: 48.5,-34.5 - parent: 12 - - uid: 24623 - components: - - type: Transform - pos: 49.5,-34.5 - parent: 12 - - uid: 24624 - components: - - type: Transform - pos: 49.5,-35.5 - parent: 12 - - uid: 24625 - components: - - type: Transform - pos: 49.5,-36.5 - parent: 12 - - uid: 24626 - components: - - type: Transform - pos: 49.5,-37.5 - parent: 12 - - uid: 24627 - components: - - type: Transform - pos: 49.5,-38.5 - parent: 12 - - uid: 24628 - components: - - type: Transform - pos: 49.5,-39.5 - parent: 12 - - uid: 24629 - components: - - type: Transform - pos: 49.5,-40.5 - parent: 12 - - uid: 24630 - components: - - type: Transform - pos: 50.5,-40.5 - parent: 12 - - uid: 24631 - components: - - type: Transform - pos: 51.5,-40.5 - parent: 12 - - uid: 24632 - components: - - type: Transform - pos: 52.5,-40.5 - parent: 12 - - uid: 24652 - components: - - type: Transform - pos: 41.5,11.5 - parent: 12 - - uid: 24653 - components: - - type: Transform - pos: 41.5,12.5 - parent: 12 - - uid: 24670 - components: - - type: Transform - pos: -48.5,45.5 - parent: 12 - - uid: 24671 - components: - - type: Transform - pos: -47.5,45.5 - parent: 12 - - uid: 24672 - components: - - type: Transform - pos: -46.5,45.5 - parent: 12 - - uid: 24674 - components: - - type: Transform - pos: -46.5,43.5 - parent: 12 - - uid: 24675 - components: - - type: Transform - pos: -46.5,42.5 - parent: 12 - - uid: 24676 - components: - - type: Transform - pos: -46.5,41.5 - parent: 12 - - uid: 24677 - components: - - type: Transform - pos: -46.5,40.5 - parent: 12 - - uid: 24678 - components: - - type: Transform - pos: -46.5,39.5 - parent: 12 - - uid: 24679 - components: - - type: Transform - pos: -46.5,38.5 - parent: 12 - - uid: 24680 - components: - - type: Transform - pos: -46.5,37.5 - parent: 12 - - uid: 24681 - components: - - type: Transform - pos: -46.5,36.5 - parent: 12 - - uid: 24682 - components: - - type: Transform - pos: -45.5,45.5 - parent: 12 - - uid: 24683 - components: - - type: Transform - pos: -44.5,45.5 - parent: 12 - - uid: 25194 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,9.5 - parent: 12 - - uid: 25415 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,46.5 - parent: 12 - - uid: 25758 - components: - - type: Transform - pos: -19.5,17.5 - parent: 12 - - uid: 25759 - components: - - type: Transform - pos: -20.5,17.5 - parent: 12 - - uid: 25760 - components: - - type: Transform - pos: -21.5,17.5 - parent: 12 - - uid: 25761 - components: - - type: Transform - pos: -22.5,17.5 - parent: 12 - - uid: 25762 - components: - - type: Transform - pos: -23.5,17.5 - parent: 12 - - uid: 25764 - components: - - type: Transform - pos: -23.5,18.5 - parent: 12 - - uid: 25765 - components: - - type: Transform - pos: -23.5,19.5 - parent: 12 - - uid: 25766 - components: - - type: Transform - pos: -23.5,20.5 - parent: 12 - - uid: 25767 - components: - - type: Transform - pos: -23.5,22.5 - parent: 12 - - uid: 25768 - components: - - type: Transform - pos: -23.5,21.5 - parent: 12 - - uid: 25769 - components: - - type: Transform - pos: -24.5,22.5 - parent: 12 - - uid: 25770 - components: - - type: Transform - pos: -25.5,22.5 - parent: 12 - - uid: 25771 - components: - - type: Transform - pos: -26.5,22.5 - parent: 12 - - uid: 25772 - components: - - type: Transform - pos: -27.5,22.5 - parent: 12 - - uid: 25773 - components: - - type: Transform - pos: -28.5,22.5 - parent: 12 - - uid: 25774 - components: - - type: Transform - pos: -29.5,22.5 - parent: 12 - - uid: 25775 - components: - - type: Transform - pos: -26.5,23.5 - parent: 12 - - uid: 25822 - components: - - type: Transform - pos: -55.5,-50.5 - parent: 12 - - uid: 26236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,59.5 - parent: 12 - - uid: 26379 - components: - - type: Transform - pos: -50.5,-46.5 - parent: 12 - - uid: 26414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-22.5 - parent: 12 - - uid: 26421 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-22.5 - parent: 12 - - uid: 26422 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-22.5 - parent: 12 - - uid: 26432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-22.5 - parent: 12 - - uid: 26438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-22.5 - parent: 12 - - uid: 26440 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-22.5 - parent: 12 - - uid: 26445 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-22.5 - parent: 12 - - uid: 26446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-22.5 - parent: 12 - - uid: 26452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-22.5 - parent: 12 - - uid: 26455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-22.5 - parent: 12 - - uid: 26461 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-22.5 - parent: 12 - - uid: 26462 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-21.5 - parent: 12 - - uid: 26466 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-20.5 - parent: 12 - - uid: 26469 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-20.5 - parent: 12 - - uid: 26470 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-20.5 - parent: 12 - - uid: 26778 - components: - - type: Transform - 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: 27223 - components: - - type: Transform - rot: 1.5707963267948966 rad - 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: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-13.5 - parent: 12 - - uid: 27319 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,17.5 - parent: 12 - - uid: 27332 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-14.5 - parent: 12 - - uid: 27333 - components: - - type: Transform - 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 - rot: 1.5707963267948966 rad - pos: -43.5,-14.5 - parent: 12 - - uid: 27660 - components: - - type: Transform - pos: -38.5,-50.5 - parent: 12 - - uid: 27664 - components: - - type: Transform - pos: -40.5,-52.5 - parent: 12 - - uid: 27666 - components: - - type: Transform - pos: -42.5,-52.5 - parent: 12 - - uid: 27667 - components: - - type: Transform - pos: -43.5,-52.5 - parent: 12 - - uid: 27668 - components: - - type: Transform - pos: -45.5,-52.5 - parent: 12 - - uid: 27669 - components: - - type: Transform - pos: -46.5,-52.5 - parent: 12 - - uid: 27670 - components: - - type: Transform - pos: -44.5,-52.5 - parent: 12 - - uid: 27671 - components: - - type: Transform - pos: -46.5,-51.5 - parent: 12 - - uid: 27672 - components: - - type: Transform - pos: -47.5,-51.5 - parent: 12 - - uid: 27673 - components: - - type: Transform - pos: -48.5,-51.5 - parent: 12 - - uid: 27674 - components: - - type: Transform - pos: -48.5,-50.5 - parent: 12 - - uid: 27675 - components: - - type: Transform - pos: -49.5,-50.5 - parent: 12 - - uid: 27676 - components: - - type: Transform - pos: -49.5,-49.5 - parent: 12 - - uid: 27677 - components: - - type: Transform - pos: -49.5,-48.5 - parent: 12 - - uid: 27678 - components: - - type: Transform - pos: -49.5,-47.5 - parent: 12 - - uid: 27679 - components: - - type: Transform - pos: -49.5,-46.5 - parent: 12 - - uid: 27680 - components: - - type: Transform - pos: -49.5,-45.5 - parent: 12 - - uid: 27681 - components: - - type: Transform - pos: -49.5,-44.5 - parent: 12 - - uid: 27682 - components: - - type: Transform - pos: -49.5,-43.5 - parent: 12 - - uid: 27683 - components: - - type: Transform - pos: -49.5,-42.5 - parent: 12 - - uid: 27684 - components: - - type: Transform - pos: -50.5,-42.5 - parent: 12 - - uid: 27685 - components: - - type: Transform - pos: -51.5,-42.5 - parent: 12 - - uid: 27686 - components: - - type: Transform - pos: -52.5,-42.5 - parent: 12 - - uid: 27687 - components: - - type: Transform - pos: -53.5,-42.5 - parent: 12 - - uid: 27688 - components: - - type: Transform - pos: -53.5,-41.5 - parent: 12 - - uid: 27689 - components: - - type: Transform - pos: -53.5,-39.5 - parent: 12 - - uid: 27690 - components: - - type: Transform - pos: -53.5,-38.5 - parent: 12 - - uid: 27691 - components: - - type: Transform - pos: -53.5,-37.5 - parent: 12 - - uid: 27692 - components: - - type: Transform - pos: -53.5,-36.5 - parent: 12 - - uid: 27693 - components: - - type: Transform - pos: -53.5,-35.5 - parent: 12 - - uid: 27694 - components: - - type: Transform - pos: -53.5,-34.5 - parent: 12 - - uid: 27695 - components: - - type: Transform - pos: -53.5,-40.5 - parent: 12 - - uid: 27696 - components: - - type: Transform - pos: -54.5,-34.5 - parent: 12 - - uid: 27697 - components: - - type: Transform - pos: -55.5,-34.5 - parent: 12 - - uid: 27698 - components: - - type: Transform - pos: -56.5,-34.5 - parent: 12 - - uid: 27699 - components: - - type: Transform - pos: -57.5,-34.5 - parent: 12 - - uid: 27700 - components: - - type: Transform - pos: -58.5,-34.5 - parent: 12 - - uid: 27701 - components: - - type: Transform - pos: -58.5,-33.5 - parent: 12 - - uid: 27702 - components: - - type: Transform - pos: -58.5,-32.5 - parent: 12 - - uid: 27715 - components: - - type: Transform - pos: -58.5,-18.5 - parent: 12 - - uid: 27727 - components: - - type: Transform - pos: -48.5,-16.5 - parent: 12 - - uid: 27728 - components: - - type: Transform - pos: -47.5,-16.5 - parent: 12 - - uid: 27729 - components: - - type: Transform - pos: -49.5,-16.5 - parent: 12 - - uid: 27730 - components: - - type: Transform - pos: -47.5,-15.5 - parent: 12 - - uid: 27731 - components: - - type: Transform - pos: -46.5,-15.5 - parent: 12 - - uid: 27732 - components: - - type: Transform - pos: -46.5,-14.5 - parent: 12 - - uid: 27733 - components: - - type: Transform - pos: -45.5,-14.5 - parent: 12 - - uid: 27737 - components: - - type: Transform - pos: -43.5,-12.5 - parent: 12 - - uid: 27738 - components: - - type: Transform - pos: -42.5,-12.5 - parent: 12 - - uid: 27739 - components: - - type: Transform - pos: -41.5,-12.5 - parent: 12 - - uid: 27740 - components: - - type: Transform - pos: -40.5,-12.5 - parent: 12 - - uid: 27741 - components: - - type: Transform - pos: -39.5,-12.5 - parent: 12 - - uid: 27742 - components: - - type: Transform - pos: -38.5,-12.5 - parent: 12 - - uid: 27743 - components: - - type: Transform - pos: -37.5,-12.5 - parent: 12 - - uid: 27744 - components: - - type: Transform - pos: -36.5,-12.5 - parent: 12 - - uid: 27745 - components: - - type: Transform - pos: -34.5,-12.5 - parent: 12 - - uid: 27746 - components: - - type: Transform - pos: -33.5,-12.5 - parent: 12 - - uid: 27747 - components: - - type: Transform - pos: -32.5,-12.5 - parent: 12 - - uid: 27748 - components: - - type: Transform - pos: -31.5,-12.5 - parent: 12 - - uid: 27749 - components: - - type: Transform - pos: -30.5,-12.5 - parent: 12 - - uid: 27750 - components: - - type: Transform - pos: -29.5,-12.5 - parent: 12 - - uid: 27751 - components: - - type: Transform - pos: -28.5,-12.5 - parent: 12 - - uid: 27752 - components: - - type: Transform - pos: -27.5,-12.5 - parent: 12 - - uid: 27753 - components: - - type: Transform - pos: -35.5,-12.5 - parent: 12 - - uid: 27847 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,72.5 - parent: 12 - - uid: 27865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,16.5 - parent: 12 - - uid: 27866 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,18.5 - parent: 12 - - uid: 27953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-21.5 - parent: 12 - - uid: 27966 - components: - - type: Transform - pos: 24.5,17.5 - parent: 12 - - uid: 27967 - components: - - type: Transform - pos: 22.5,17.5 - parent: 12 - - uid: 27969 - components: - - type: Transform - pos: 23.5,17.5 - parent: 12 - - uid: 28230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,8.5 - parent: 12 - - uid: 28231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,8.5 - parent: 12 - - uid: 28232 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,8.5 - parent: 12 - - uid: 28233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,8.5 - parent: 12 - - uid: 28238 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,8.5 - parent: 12 - - uid: 28376 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-16.5 - parent: 12 - - uid: 28377 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,8.5 - parent: 12 - - uid: 28378 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,8.5 - parent: 12 - - uid: 28392 - components: - - type: Transform - pos: -21.5,-16.5 - parent: 12 - - uid: 28393 - components: - - type: Transform - pos: -22.5,-16.5 - parent: 12 - - uid: 28394 - components: - - type: Transform - pos: -25.5,-16.5 - parent: 12 - - uid: 28395 - components: - - type: Transform - pos: -24.5,-16.5 - parent: 12 - - uid: 28396 - components: - - type: Transform - pos: -23.5,-16.5 - parent: 12 - - uid: 28397 - components: - - type: Transform - pos: -26.5,-15.5 - parent: 12 - - uid: 28398 - components: - - type: Transform - pos: -27.5,-15.5 - parent: 12 - - uid: 28399 - components: - - type: Transform - pos: -28.5,-15.5 - parent: 12 - - uid: 28400 - components: - - type: Transform - pos: -28.5,-14.5 - parent: 12 - - uid: 28401 - components: - - type: Transform - pos: -28.5,-13.5 - parent: 12 - - uid: 28402 - components: - - type: Transform - pos: -21.5,-17.5 - parent: 12 - - uid: 28403 - components: - - type: Transform - pos: -20.5,-17.5 - parent: 12 - - uid: 28425 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,8.5 - parent: 12 - - uid: 28444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-15.5 - parent: 12 - - uid: 28601 - components: - - type: Transform - pos: -5.5,8.5 - parent: 12 - - uid: 28602 - components: - - type: Transform - pos: -5.5,7.5 - parent: 12 - - uid: 28603 - components: - - type: Transform - pos: -6.5,7.5 - parent: 12 - - uid: 28604 - components: - - type: Transform - pos: -6.5,6.5 - parent: 12 - - uid: 28605 - components: - - type: Transform - pos: -6.5,5.5 - parent: 12 - - uid: 28606 - components: - - type: Transform - pos: -6.5,4.5 - parent: 12 - - uid: 28607 - components: - - type: Transform - pos: -6.5,3.5 - parent: 12 - - uid: 28608 - components: - - type: Transform - pos: -6.5,2.5 - parent: 12 - - uid: 28609 - components: - - type: Transform - pos: -7.5,2.5 - parent: 12 - - uid: 28610 - components: - - type: Transform - pos: -8.5,2.5 - parent: 12 - - uid: 28611 - components: - - type: Transform - pos: -8.5,1.5 - parent: 12 - - uid: 28612 - components: - - type: Transform - pos: -8.5,-0.5 - parent: 12 - - uid: 28617 - components: - - type: Transform - pos: -8.5,0.5 - parent: 12 - - uid: 28621 - components: - - type: Transform - pos: -8.5,-12.5 - parent: 12 - - uid: 28622 - components: - - type: Transform - pos: -8.5,-13.5 - parent: 12 - - uid: 28623 - components: - - type: Transform - pos: -8.5,-14.5 - parent: 12 - - uid: 28624 - components: - - type: Transform - pos: -8.5,-15.5 - parent: 12 - - uid: 28625 - components: - - type: Transform - pos: -8.5,-16.5 - parent: 12 - - uid: 28626 - components: - - type: Transform - pos: -8.5,-17.5 - parent: 12 - - uid: 28627 - components: - - type: Transform - pos: -8.5,-18.5 - parent: 12 - - uid: 28628 - components: - - type: Transform - pos: -8.5,-19.5 - parent: 12 - - uid: 28629 - components: - - type: Transform - pos: -8.5,-20.5 - parent: 12 - - uid: 28631 - components: - - 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 - pos: 47.5,10.5 - parent: 12 - - uid: 28939 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 12 - - uid: 28940 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-6.5 - parent: 12 - - uid: 28941 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-6.5 - parent: 12 - - uid: 29054 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,20.5 - parent: 12 - - uid: 29055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,20.5 - parent: 12 - - uid: 29056 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,21.5 - parent: 12 - - uid: 29057 - components: - - type: Transform - 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: 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: -33.5,-67.5 - parent: 12 - - uid: 29087 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-67.5 - parent: 12 - - uid: 29089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-67.5 - parent: 12 - - uid: 29090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-67.5 - parent: 12 - - uid: 29418 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,65.5 - parent: 12 - - uid: 29419 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: -47.5,65.5 - parent: 12 - - uid: 29563 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,65.5 - parent: 12 - - uid: 29567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,65.5 - parent: 12 - - uid: 29664 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,72.5 - parent: 12 - - uid: 29665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,72.5 - parent: 12 - - uid: 29666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,72.5 - parent: 12 - - uid: 29668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,72.5 - parent: 12 - - uid: 29669 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,72.5 - parent: 12 - - uid: 29670 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,72.5 - parent: 12 - - uid: 29671 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,72.5 - parent: 12 - - uid: 29672 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,72.5 - parent: 12 - - uid: 29673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,72.5 - parent: 12 - - uid: 29674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,72.5 - parent: 12 - - uid: 29675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,72.5 - parent: 12 - - uid: 29676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,72.5 - parent: 12 - - uid: 29677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,72.5 - parent: 12 - - uid: 29678 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,72.5 - parent: 12 - - uid: 29679 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,72.5 - parent: 12 - - uid: 29680 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,72.5 - parent: 12 - - uid: 29681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,72.5 - parent: 12 - - uid: 29682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,72.5 - parent: 12 - - uid: 29683 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,72.5 - parent: 12 - - uid: 29684 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,71.5 - parent: 12 - - uid: 29685 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,70.5 - parent: 12 - - uid: 29686 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,69.5 - parent: 12 - - uid: 29687 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,68.5 - parent: 12 - - uid: 29688 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,67.5 - parent: 12 - - uid: 29690 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,65.5 - parent: 12 - - uid: 29700 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,64.5 - parent: 12 - - uid: 29701 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,62.5 - parent: 12 - - uid: 29702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,61.5 - parent: 12 - - uid: 29703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,60.5 - parent: 12 - - uid: 29704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,59.5 - parent: 12 - - uid: 29705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,58.5 - parent: 12 - - uid: 29706 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,57.5 - parent: 12 - - uid: 29707 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,56.5 - parent: 12 - - uid: 29708 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,63.5 - parent: 12 - - uid: 29709 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,55.5 - parent: 12 - - uid: 29710 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,54.5 - parent: 12 - - uid: 29711 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,53.5 - parent: 12 - - uid: 29712 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,52.5 - parent: 12 - - uid: 29713 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,51.5 - parent: 12 - - uid: 29714 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,50.5 - parent: 12 - - uid: 29715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,49.5 - parent: 12 - - uid: 29716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,49.5 - parent: 12 - - uid: 29717 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,49.5 - parent: 12 - - uid: 29719 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,47.5 - parent: 12 - - uid: 29748 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,65.5 - parent: 12 - - uid: 29749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,65.5 - parent: 12 - - uid: 29752 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,65.5 - parent: 12 - - uid: 29753 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,65.5 - parent: 12 - - uid: 29818 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,66.5 - parent: 12 - - uid: 30131 - components: - - type: Transform - pos: -43.5,68.5 - parent: 12 - - uid: 30301 - components: - - type: Transform - pos: -57.5,-48.5 - parent: 12 - - uid: 30473 - components: - - type: Transform - pos: 30.5,12.5 - parent: 12 - - uid: 30479 - components: - - type: Transform - pos: 30.5,19.5 - parent: 12 - - uid: 30480 - components: - - type: Transform - pos: 30.5,18.5 - parent: 12 - - uid: 30901 - components: - - type: Transform - pos: -34.5,-53.5 - parent: 12 - - uid: 30902 - components: - - type: Transform - pos: -33.5,-53.5 - parent: 12 - - uid: 30903 - components: - - type: Transform - pos: -32.5,-53.5 - parent: 12 - - uid: 30904 - components: - - type: Transform - pos: -31.5,-53.5 - parent: 12 - - uid: 30905 - components: - - type: Transform - pos: -30.5,-53.5 - parent: 12 - - uid: 30907 - components: - - type: Transform - pos: -27.5,-53.5 - parent: 12 - - uid: 30908 - components: - - type: Transform - pos: -28.5,-53.5 - parent: 12 - - uid: 30909 - components: - - type: Transform - pos: -26.5,-53.5 - parent: 12 - - uid: 30910 - components: - - type: Transform - pos: -25.5,-53.5 - parent: 12 - - uid: 30911 - components: - - type: Transform - pos: -25.5,-54.5 - parent: 12 - - uid: 30912 - components: - - type: Transform - pos: -25.5,-55.5 - parent: 12 - - uid: 30913 - components: - - type: Transform - pos: -25.5,-57.5 - parent: 12 - - uid: 30914 - components: - - type: Transform - pos: -25.5,-58.5 - parent: 12 - - uid: 30915 - components: - - type: Transform - pos: -25.5,-59.5 - parent: 12 - - uid: 30916 - components: - - type: Transform - pos: -25.5,-60.5 - parent: 12 - - uid: 30917 - components: - - type: Transform - pos: -25.5,-61.5 - parent: 12 - - uid: 30918 - components: - - type: Transform - pos: -25.5,-62.5 - parent: 12 - - uid: 30919 - components: - - type: Transform - pos: -25.5,-56.5 - parent: 12 - - uid: 30920 - components: - - type: Transform - pos: -24.5,-62.5 - parent: 12 - - uid: 30921 - components: - - type: Transform - pos: -24.5,-63.5 - parent: 12 - - uid: 30922 - components: - - type: Transform - pos: -23.5,-63.5 - parent: 12 - - uid: 30923 - components: - - type: Transform - pos: -22.5,-63.5 - parent: 12 - - uid: 30924 - components: - - type: Transform - pos: -21.5,-63.5 - parent: 12 - - uid: 30925 - components: - - type: Transform - pos: -20.5,-63.5 - parent: 12 - - uid: 30926 - components: - - type: Transform - pos: -19.5,-63.5 - parent: 12 - - uid: 30927 - components: - - type: Transform - pos: -18.5,-63.5 - parent: 12 - - uid: 30928 - components: - - type: Transform - pos: -17.5,-63.5 - parent: 12 - - uid: 30929 - components: - - type: Transform - pos: -16.5,-63.5 - parent: 12 - - uid: 30931 - components: - - type: Transform - pos: -15.5,-64.5 - parent: 12 - - uid: 30932 - components: - - type: Transform - pos: -14.5,-64.5 - parent: 12 - - uid: 30933 - components: - - type: Transform - pos: -13.5,-64.5 - parent: 12 - - uid: 30934 - components: - - type: Transform - pos: -12.5,-64.5 - parent: 12 - - uid: 30935 - components: - - type: Transform - pos: -11.5,-64.5 - parent: 12 - - uid: 30936 - components: - - type: Transform - pos: -10.5,-64.5 - parent: 12 - - uid: 30937 - components: - - type: Transform - pos: -8.5,-64.5 - parent: 12 - - uid: 30938 - components: - - type: Transform - pos: -9.5,-64.5 - parent: 12 - - uid: 30939 - components: - - type: Transform - pos: -8.5,-63.5 - parent: 12 - - uid: 30940 - components: - - type: Transform - pos: -7.5,-63.5 - parent: 12 - - uid: 30942 - components: - - type: Transform - pos: -5.5,-63.5 - parent: 12 - - uid: 30943 - components: - - type: Transform - pos: -4.5,-63.5 - parent: 12 - - uid: 30944 - components: - - type: Transform - pos: -3.5,-63.5 - parent: 12 - - uid: 30945 - components: - - type: Transform - pos: -2.5,-63.5 - parent: 12 - - uid: 30946 - components: - - type: Transform - pos: -1.5,-63.5 - parent: 12 - - uid: 30947 - components: - - type: Transform - pos: -1.5,-62.5 - parent: 12 - - uid: 30948 - components: - - type: Transform - pos: -1.5,-61.5 - parent: 12 - - uid: 30949 - components: - - type: Transform - pos: -0.5,-61.5 - parent: 12 - - uid: 30950 - components: - - type: Transform - pos: 0.5,-61.5 - parent: 12 - - uid: 30952 - components: - - type: Transform - pos: 1.5,-59.5 - parent: 12 - - uid: 30953 - components: - - type: Transform - pos: 1.5,-60.5 - parent: 12 - - uid: 30954 - components: - - type: Transform - pos: 1.5,-58.5 - parent: 12 - - uid: 30955 - components: - - type: Transform - pos: 1.5,-57.5 - parent: 12 - - uid: 30956 - components: - - type: Transform - pos: 2.5,-57.5 - parent: 12 - - uid: 30958 - components: - - type: Transform - pos: 3.5,-56.5 - parent: 12 - - uid: 30959 - components: - - type: Transform - pos: 3.5,-55.5 - parent: 12 - - uid: 30960 - components: - - type: Transform - pos: 3.5,-54.5 - parent: 12 - - uid: 30961 - components: - - type: Transform - pos: 3.5,-53.5 - parent: 12 - - uid: 30962 - components: - - type: Transform - pos: 3.5,-52.5 - parent: 12 - - uid: 30963 - components: - - type: Transform - pos: 3.5,-51.5 - parent: 12 - - uid: 30964 - components: - - type: Transform - pos: 3.5,-50.5 - parent: 12 - - uid: 31024 - components: - - type: Transform - pos: -57.5,-45.5 - parent: 12 - - uid: 31031 - components: - - type: Transform - pos: -57.5,-54.5 - parent: 12 - - uid: 31032 - components: - - type: Transform - pos: -55.5,-49.5 - parent: 12 - - uid: 31035 - components: - - type: Transform - pos: -57.5,-44.5 - parent: 12 - - uid: 31039 - components: - - type: Transform - pos: -55.5,-51.5 - parent: 12 - - uid: 31041 - components: - - type: Transform - pos: -57.5,-43.5 - parent: 12 - - uid: 31107 - components: - - type: Transform - pos: -15.5,-71.5 - parent: 12 - - uid: 31111 - components: - - type: Transform - pos: -13.5,-71.5 - parent: 12 - - uid: 31113 - components: - - type: Transform - pos: -14.5,-71.5 - parent: 12 - - uid: 31270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,16.5 - parent: 12 - - uid: 31271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,16.5 - parent: 12 - - uid: 31272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,15.5 - parent: 12 - - uid: 31396 - components: - - type: Transform - pos: 57.5,66.5 - parent: 12 - - uid: 31419 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-64.5 - parent: 12 - - uid: 31442 - components: - - type: Transform - pos: 54.5,67.5 - parent: 12 - - uid: 31445 - components: - - type: Transform - pos: 55.5,66.5 - parent: 12 - - uid: 31446 - components: - - type: Transform - pos: 56.5,66.5 - parent: 12 - - uid: 31843 - components: - - type: Transform - pos: 66.5,11.5 - parent: 12 - - uid: 31844 - components: - - type: Transform - pos: 67.5,11.5 - parent: 12 - - uid: 31845 - components: - - type: Transform - pos: 68.5,11.5 - parent: 12 - - uid: 31846 - components: - - type: Transform - pos: 69.5,11.5 - parent: 12 - - uid: 31847 - components: - - type: Transform - pos: 70.5,11.5 - parent: 12 - - uid: 31848 - components: - - type: Transform - pos: 71.5,11.5 - parent: 12 - - uid: 31849 - components: - - type: Transform - pos: 73.5,11.5 - parent: 12 - - uid: 31850 - components: - - type: Transform - pos: 74.5,11.5 - parent: 12 - - uid: 31851 - components: - - type: Transform - pos: 75.5,11.5 - parent: 12 - - uid: 31852 - components: - - type: Transform - pos: 76.5,11.5 - parent: 12 - - uid: 31853 - components: - - type: Transform - pos: 72.5,11.5 - parent: 12 - - uid: 31854 - components: - - type: Transform - pos: 76.5,-2.5 - parent: 12 - - uid: 31855 - components: - - type: Transform - pos: 75.5,-2.5 - parent: 12 - - uid: 31856 - components: - - type: Transform - pos: 74.5,-2.5 - parent: 12 - - uid: 31857 - components: - - type: Transform - pos: 73.5,-2.5 - parent: 12 - - uid: 31858 - components: - - type: Transform - pos: 72.5,-2.5 - parent: 12 - - uid: 31859 - components: - - type: Transform - pos: 71.5,-2.5 - parent: 12 - - uid: 31860 - components: - - type: Transform - pos: 70.5,-2.5 - parent: 12 - - uid: 31861 - components: - - type: Transform - pos: 69.5,-2.5 - parent: 12 - - uid: 31862 - components: - - type: Transform - pos: 68.5,-2.5 - parent: 12 - - uid: 31863 - components: - - type: Transform - pos: 67.5,-2.5 - parent: 12 - - uid: 31864 - components: - - type: Transform - pos: 66.5,-2.5 - parent: 12 - - uid: 32058 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-15.5 - parent: 12 - - uid: 32171 - components: - - type: Transform - pos: 77.5,-2.5 - parent: 12 - - uid: 32172 - components: - - type: Transform - pos: 77.5,-0.5 - parent: 12 - - uid: 32173 - components: - - type: Transform - pos: 77.5,0.5 - parent: 12 - - uid: 32174 - components: - - type: Transform - pos: 77.5,1.5 - parent: 12 - - uid: 32175 - components: - - type: Transform - pos: 77.5,2.5 - parent: 12 - - uid: 32176 - components: - - type: Transform - pos: 77.5,-1.5 - parent: 12 - - uid: 32177 - components: - - type: Transform - pos: 77.5,5.5 - parent: 12 - - uid: 32178 - components: - - type: Transform - pos: 77.5,6.5 - parent: 12 - - uid: 32179 - components: - - type: Transform - pos: 77.5,3.5 - parent: 12 - - uid: 32180 - components: - - type: Transform - pos: 77.5,7.5 - parent: 12 - - uid: 32181 - components: - - type: Transform - pos: 77.5,8.5 - parent: 12 - - uid: 32182 - components: - - type: Transform - pos: 77.5,4.5 - parent: 12 - - uid: 32183 - components: - - type: Transform - pos: 77.5,10.5 - parent: 12 - - uid: 32184 - components: - - type: Transform - pos: 77.5,11.5 - parent: 12 - - uid: 32185 - components: - - type: Transform - pos: 77.5,9.5 - parent: 12 -- proto: Cautery - entities: - - uid: 9752 - components: - - type: Transform - rot: -43.98229715025713 rad - pos: -5.4273577,-32.52228 - parent: 12 - - uid: 27302 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -5.4645452,-39.057785 - parent: 12 -- proto: CellRechargerCircuitboard - entities: - - uid: 22319 - components: - - type: Transform - pos: 35.456554,45.333942 - parent: 12 -- proto: CentrifugeMachineCircuitboard - entities: - - uid: 30957 - components: - - type: Transform - parent: 30951 - - type: Physics - canCollide: False -- proto: Chair - entities: - - uid: 907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-44.5 - parent: 12 - - uid: 1689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-23.5 - parent: 12 - - uid: 1814 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-23.5 - parent: 12 - - uid: 1819 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-21.5 - parent: 12 - - uid: 2698 - components: - - type: Transform - pos: -2.5,-49.5 - parent: 12 - - uid: 2880 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,13.5 - parent: 12 - - uid: 2916 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-32.5 - parent: 12 - - uid: 2931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-45.5 - parent: 12 - - uid: 2932 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-44.5 - parent: 12 - - uid: 3030 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-33.5 - parent: 12 - - uid: 3113 - components: - - type: Transform - pos: 12.5,52.5 - parent: 12 - - uid: 3466 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-35.5 - parent: 12 - - uid: 3467 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-35.5 - parent: 12 - - uid: 3811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-57.5 - parent: 12 - - uid: 3812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-56.5 - parent: 12 - - uid: 3894 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,20.5 - parent: 12 - - uid: 4264 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-26.5 - parent: 12 - - uid: 4409 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,10.5 - parent: 12 - - uid: 4560 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,70.5 - parent: 12 - - uid: 4646 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,68.5 - parent: 12 - - uid: 4770 - components: - - type: Transform - pos: -39.5,60.5 - parent: 12 - - uid: 5121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-29.5 - parent: 12 - - uid: 5247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,69.5 - parent: 12 - - uid: 5394 - components: - - type: Transform - pos: -0.5,-49.5 - parent: 12 - - uid: 5471 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-21.5 - parent: 12 - - uid: 5532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-22.5 - parent: 12 - - uid: 5533 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-20.5 - parent: 12 - - uid: 5534 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-20.5 - parent: 12 - - uid: 5863 - components: - - type: Transform - pos: 21.5,-20.5 - parent: 12 - - uid: 5896 - components: - - type: Transform - pos: 31.5,-3.5 - parent: 12 - - uid: 5918 - components: - - type: Transform - rot: 1.5707963267948966 rad - 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: 6700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-38.5 - parent: 12 - - uid: 6701 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-36.5 - parent: 12 - - uid: 6819 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-36.5 - parent: 12 - - uid: 6822 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-36.5 - parent: 12 - - uid: 6823 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-36.5 - parent: 12 - - uid: 6824 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-38.5 - parent: 12 - - uid: 6828 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-35.5 - parent: 12 - - uid: 6829 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-35.5 - parent: 12 - - uid: 6841 - components: - - type: Transform - pos: -1.5,-49.5 - parent: 12 - - uid: 7352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,57.5 - parent: 12 - - uid: 8996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-45.5 - parent: 12 - - uid: 9118 - components: - - type: Transform - pos: 54.5,-10.5 - parent: 12 - - uid: 9119 - components: - - type: Transform - pos: 55.5,-10.5 - parent: 12 - - uid: 9261 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-25.5 - parent: 12 - - uid: 9262 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: -11.5,-56.5 - parent: 12 - - uid: 10385 - components: - - type: Transform - pos: -23.5,-2.5 - parent: 12 - - uid: 10897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-30.5 - parent: 12 - - uid: 11124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-18.5 - parent: 12 - - uid: 11349 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,23.5 - parent: 12 - - uid: 11930 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: 44.5,10.5 - parent: 12 - - uid: 12281 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,16.5 - parent: 12 - - uid: 12282 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,24.5 - parent: 12 - - uid: 12975 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: 56.5,28.5 - parent: 12 - - uid: 13020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,29.5 - parent: 12 - - uid: 13021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,30.5 - parent: 12 - - uid: 13022 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,30.5 - parent: 12 - - uid: 13023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,29.5 - parent: 12 - - uid: 13024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,28.5 - parent: 12 - - uid: 13025 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,27.5 - parent: 12 - - uid: 13321 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,28.5 - parent: 12 - - uid: 13482 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,34.5 - parent: 12 - - uid: 13483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,35.5 - parent: 12 - - uid: 13620 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,30.5 - parent: 12 - - uid: 13715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,28.5 - parent: 12 - - uid: 13716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,28.5 - parent: 12 - - uid: 16767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,17.5 - parent: 12 - - uid: 16769 - components: - - type: Transform - pos: -28.5,16.5 - parent: 12 - - uid: 16789 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,19.5 - parent: 12 - - uid: 16790 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,18.5 - parent: 12 - - uid: 16791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,18.5 - parent: 12 - - uid: 16792 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,19.5 - parent: 12 - - uid: 17419 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,20.5 - parent: 12 - - uid: 17575 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,30.5 - parent: 12 - - uid: 17576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,27.5 - parent: 12 - - uid: 17970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,38.5 - parent: 12 - - uid: 18156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,47.5 - parent: 12 - - uid: 18675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,41.5 - parent: 12 - - uid: 18676 - components: - - type: Transform - pos: -25.5,41.5 - parent: 12 - - uid: 19404 - components: - - type: Transform - pos: -48.5,62.5 - parent: 12 - - uid: 19405 - components: - - type: Transform - pos: -45.5,62.5 - parent: 12 - - uid: 19406 - components: - - 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 - rot: 1.5707963267948966 rad - pos: -36.5,39.5 - parent: 12 - - uid: 20877 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,34.5 - parent: 12 - - uid: 20878 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,42.5 - parent: 12 - - uid: 20880 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,55.5 - parent: 12 - - uid: 20887 - components: - - type: Transform - pos: -30.5,34.5 - parent: 12 - - uid: 20888 - components: - - type: Transform - pos: -30.5,33.5 - parent: 12 - - uid: 20889 - components: - - type: Transform - pos: -29.5,34.5 - parent: 12 - - uid: 20890 - components: - - type: Transform - pos: -29.5,33.5 - parent: 12 - - uid: 20891 - components: - - type: Transform - pos: -28.5,34.5 - parent: 12 - - uid: 20892 - components: - - type: Transform - pos: -28.5,33.5 - parent: 12 - - uid: 20893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,31.5 - parent: 12 - - uid: 20895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,32.5 - parent: 12 - - uid: 20896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,31.5 - parent: 12 - - uid: 20897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,33.5 - parent: 12 - - uid: 20898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,33.5 - parent: 12 - - uid: 20899 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,32.5 - parent: 12 - - uid: 20900 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,36.5 - parent: 12 - - uid: 20901 - components: - - type: Transform - pos: -33.5,32.5 - parent: 12 - - uid: 20902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,37.5 - parent: 12 - - uid: 20903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,37.5 - parent: 12 - - uid: 20904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,38.5 - parent: 12 - - uid: 21280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,43.5 - parent: 12 - - uid: 21281 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,44.5 - parent: 12 - - uid: 21282 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,45.5 - parent: 12 - - uid: 21293 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,45.5 - parent: 12 - - uid: 21294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,46.5 - parent: 12 - - uid: 21295 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,46.5 - parent: 12 - - uid: 21296 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,45.5 - parent: 12 - - uid: 21297 - components: - - type: Transform - pos: -41.5,48.5 - parent: 12 - - uid: 21298 - components: - - type: Transform - pos: -40.5,48.5 - parent: 12 - - uid: 21336 - components: - - type: Transform - pos: -28.5,41.5 - parent: 12 - - uid: 21426 - components: - - type: Transform - pos: -29.5,31.5 - parent: 12 - - uid: 21427 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,31.5 - parent: 12 - - uid: 21428 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,25.5 - parent: 12 - - uid: 21429 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,25.5 - parent: 12 - - uid: 21430 - components: - - type: Transform - pos: -29.5,26.5 - parent: 12 - - uid: 21431 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,39.5 - parent: 12 - - uid: 21599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,21.5 - parent: 12 - - uid: 21660 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,42.5 - parent: 12 - - uid: 21661 - components: - - type: Transform - pos: -12.5,43.5 - parent: 12 - - uid: 21771 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,54.5 - parent: 12 - - uid: 21772 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: -52.5,36.5 - parent: 12 - - uid: 22172 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,37.5 - parent: 12 - - uid: 22376 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,47.5 - parent: 12 - - uid: 22377 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,53.5 - parent: 12 - - uid: 22495 - components: - - type: Transform - pos: 3.5,41.5 - parent: 12 - - uid: 22497 - components: - - type: Transform - pos: 5.5,41.5 - parent: 12 - - uid: 22620 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,51.5 - parent: 12 - - uid: 22621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,52.5 - parent: 12 - - uid: 22622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,48.5 - parent: 12 - - uid: 22623 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,49.5 - parent: 12 - - uid: 22625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,52.5 - parent: 12 - - uid: 22626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,53.5 - parent: 12 - - uid: 22680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,56.5 - parent: 12 - - uid: 22685 - components: - - type: Transform - pos: 12.5,58.5 - parent: 12 - - uid: 23575 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,58.5 - parent: 12 - - uid: 24265 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,59.5 - parent: 12 - - uid: 24266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,59.5 - parent: 12 - - uid: 24267 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,61.5 - parent: 12 - - uid: 24268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,62.5 - parent: 12 - - uid: 24269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,63.5 - parent: 12 - - uid: 24270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,64.5 - parent: 12 - - uid: 24271 - components: - - type: Transform - pos: -6.5,65.5 - parent: 12 - - uid: 24639 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,22.5 - parent: 12 - - uid: 25043 - components: - - type: Transform - pos: 3.5,65.5 - parent: 12 - - uid: 25365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,38.5 - parent: 12 - - uid: 25397 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-39.5 - parent: 12 - - uid: 25495 - components: - - type: Transform - pos: -14.5,38.5 - parent: 12 - - uid: 25496 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,36.5 - parent: 12 - - uid: 25497 - components: - - type: Transform - pos: -14.5,34.5 - parent: 12 - - uid: 25498 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,32.5 - parent: 12 - - uid: 25510 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,79.5 - parent: 12 - - uid: 25511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,81.5 - parent: 12 - - uid: 25512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,79.5 - parent: 12 - - uid: 25513 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,81.5 - parent: 12 - - uid: 25685 - components: - - type: Transform - pos: 38.5,-25.5 - parent: 12 - - uid: 25686 - components: - - type: Transform - pos: 37.5,-25.5 - parent: 12 - - uid: 25687 - components: - - type: Transform - pos: 36.5,-25.5 - parent: 12 - - uid: 25693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-28.5 - parent: 12 - - uid: 25694 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-28.5 - parent: 12 - - uid: 25695 - components: - - type: Transform - pos: 2.5,-25.5 - parent: 12 - - uid: 25696 - components: - - type: Transform - pos: 3.5,-25.5 - parent: 12 - - uid: 25697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-28.5 - parent: 12 - - uid: 25698 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-28.5 - parent: 12 - - uid: 25703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-25.5 - parent: 12 - - uid: 25704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-25.5 - parent: 12 - - uid: 25707 - components: - - type: Transform - pos: -12.5,-26.5 - parent: 12 - - uid: 25708 - components: - - type: Transform - pos: -11.5,-26.5 - parent: 12 - - uid: 25709 - components: - - type: Transform - pos: -10.5,-26.5 - parent: 12 - - uid: 25710 - components: - - type: Transform - pos: -9.5,-26.5 - parent: 12 - - uid: 25711 - components: - - type: Transform - pos: -12.5,-33.5 - parent: 12 - - uid: 25712 - components: - - type: Transform - pos: -11.5,-33.5 - parent: 12 - - uid: 25716 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-22.5 - parent: 12 - - uid: 25717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-21.5 - parent: 12 - - uid: 25718 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-20.5 - parent: 12 - - uid: 25720 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 12 - - uid: 25721 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-1.5 - parent: 12 - - uid: 25728 - components: - - type: Transform - pos: -17.5,21.5 - parent: 12 - - uid: 25729 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,19.5 - parent: 12 - - uid: 25730 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,19.5 - parent: 12 - - uid: 25731 - components: - - type: Transform - pos: -14.5,21.5 - parent: 12 - - uid: 25742 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,26.5 - parent: 12 - - uid: 25743 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,26.5 - parent: 12 - - uid: 25744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,26.5 - parent: 12 - - uid: 25872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,36.5 - parent: 12 - - uid: 25890 - components: - - type: Transform - pos: 29.5,63.5 - parent: 12 - - uid: 25891 - components: - - type: Transform - pos: 30.5,63.5 - parent: 12 - - uid: 25892 - components: - - type: Transform - pos: 31.5,63.5 - parent: 12 - - uid: 25905 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,48.5 - parent: 12 - - uid: 25906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,49.5 - parent: 12 - - uid: 25910 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,43.5 - parent: 12 - - uid: 25911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,43.5 - parent: 12 - - uid: 25912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,43.5 - parent: 12 - - uid: 25913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,43.5 - parent: 12 - - uid: 25914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,43.5 - parent: 12 - - uid: 25915 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,43.5 - parent: 12 - - uid: 25916 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,40.5 - parent: 12 - - uid: 25917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,41.5 - parent: 12 - - uid: 25918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,42.5 - parent: 12 - - uid: 25922 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,45.5 - parent: 12 - - uid: 25923 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,45.5 - parent: 12 - - uid: 25924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,43.5 - parent: 12 - - uid: 25925 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,54.5 - parent: 12 - - uid: 25926 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,54.5 - parent: 12 - - uid: 25927 - components: - - type: Transform - pos: 35.5,67.5 - parent: 12 - - uid: 25931 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,56.5 - parent: 12 - - uid: 25932 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,56.5 - parent: 12 - - uid: 26001 - components: - - type: Transform - pos: -33.5,-34.5 - parent: 12 - - uid: 26002 - components: - - type: Transform - pos: -32.5,-34.5 - parent: 12 - - uid: 26026 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,70.5 - parent: 12 - - uid: 26055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-43.5 - parent: 12 - - uid: 26056 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-43.5 - parent: 12 - - uid: 26057 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-43.5 - parent: 12 - - uid: 26058 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-43.5 - parent: 12 - - uid: 26059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-43.5 - parent: 12 - - uid: 26308 - components: - - type: Transform - 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: 28302 - components: - - type: Transform - pos: -19.5,-68.5 - parent: 12 - - uid: 28529 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,6.5 - parent: 12 - - uid: 28673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,5.5 - parent: 12 - - uid: 28675 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,5.5 - parent: 12 - - uid: 28676 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,6.5 - parent: 12 - - uid: 28757 - components: - - type: Transform - pos: 55.5,0.5 - parent: 12 - - uid: 28758 - components: - - 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 - pos: 29.5,-1.5 - parent: 12 - - uid: 29350 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-3.5 - parent: 12 - - uid: 29517 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,74.5 - parent: 12 - - uid: 29594 - components: - - type: Transform - 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: 29973 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-12.5 - parent: 12 - - uid: 31149 - components: - - type: Transform - pos: -12.5,-68.5 - parent: 12 - - uid: 31160 - components: - - type: Transform - pos: -11.5,-68.5 - parent: 12 - - uid: 31264 - components: - - type: Transform - pos: 1.5,-66.5 - parent: 12 - - uid: 31596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,23.5 - parent: 12 - - uid: 31817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,68.5 - parent: 12 - - uid: 32072 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-12.5 - parent: 12 -- proto: ChairFolding - entities: - - uid: 326 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,63.5 - parent: 12 - - uid: 2002 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.598167,-28.494562 - parent: 12 - - uid: 2003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.44973,-28.42425 - parent: 12 - - uid: 2019 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-39.5 - parent: 12 - - uid: 6998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,62.5 - parent: 12 - - uid: 7257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.512264,-10.39917 - parent: 12 - - uid: 9447 - components: - - type: Transform - pos: 57.5,64.5 - parent: 12 - - uid: 9467 - components: - - type: Transform - pos: 56.5,64.5 - parent: 12 - - uid: 10050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,63.5 - parent: 12 - - uid: 22681 - components: - - type: Transform - pos: 10.919728,58.52839 - parent: 12 - - uid: 22682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.575829,56.268974 - parent: 12 - - uid: 29306 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,62.5 - parent: 12 - - uid: 30482 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,12.5 - parent: 12 - - uid: 30484 - components: - - type: Transform - pos: 44.5,-15.5 - parent: 12 - - uid: 31144 - components: - - type: Transform - pos: -36.5,-56.5 - parent: 12 - - uid: 31159 - components: - - type: Transform - pos: -13.5,-68.5 - parent: 12 - - uid: 31265 - components: - - type: Transform - pos: 0.5,-66.5 - parent: 12 - - uid: 31688 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.408453,-26.829342 - parent: 12 - - uid: 31689 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.06586,-28.196033 - parent: 12 - - uid: 32101 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,61.5 - parent: 12 -- proto: ChairFoldingSpawnFolded - entities: - - uid: 9476 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,61.5 - parent: 12 - - uid: 32099 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,63.5 - parent: 12 -- proto: ChairGreyscale - entities: - - uid: 1822 - components: - - type: Transform - pos: -44.5,-43.5 - parent: 12 - - uid: 1823 - components: - - type: Transform - pos: -43.5,-43.5 - parent: 12 - - uid: 1824 - components: - - type: Transform - pos: -42.5,-43.5 - parent: 12 -- proto: ChairOfficeDark - entities: - - uid: 531 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.428665,-23.42477 - parent: 12 - - uid: 2243 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.506424,-23.931408 - parent: 12 - - uid: 2585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.369087,-38.421375 - parent: 12 - - uid: 2993 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,26.5 - parent: 12 - - uid: 3144 - components: - - type: Transform - pos: -20.460161,-46.346664 - parent: 12 - - uid: 3728 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,32.5 - parent: 12 - - uid: 3782 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.474756,-61.511093 - parent: 12 - - uid: 3950 - components: - - type: Transform - pos: -22.352177,-50.419205 - parent: 12 - - uid: 4078 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.367077,-38.37782 - parent: 12 - - uid: 5243 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.53466,-28.446274 - parent: 12 - - uid: 7518 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.634914,-12.316643 - parent: 12 - - uid: 7828 - components: - - type: Transform - pos: 62.5,1.5 - parent: 12 - - uid: 8721 - components: - - type: Transform - pos: 53.45191,-22.36775 - parent: 12 - - uid: 8722 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.561283,-31.276865 - parent: 12 - - uid: 8894 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.477512,-29.414087 - parent: 12 - - uid: 9712 - components: - - type: Transform - pos: -0.5,-52.5 - parent: 12 - - uid: 11612 - components: - - type: Transform - pos: -2.5,-52.5 - parent: 12 - - uid: 15660 - components: - - type: Transform - pos: 13.537189,37.57953 - parent: 12 - - uid: 15801 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.530295,35.648975 - parent: 12 - - uid: 18657 - components: - - type: Transform - pos: -33.5,21.5 - parent: 12 - - uid: 18658 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,23.5 - parent: 12 - - uid: 19349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.47049,-39.353542 - parent: 12 - - uid: 19634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,78.5 - parent: 12 - - uid: 22348 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,0.5 - parent: 12 - - uid: 23441 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,49.5 - parent: 12 - - uid: 25861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.7435,48.165333 - parent: 12 - - uid: 25862 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.45593,48.134083 - parent: 12 - - uid: 25863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.720875,57.492115 - parent: 12 - - uid: 26532 - components: - - type: Transform - pos: 56.5,-4.5 - parent: 12 - - uid: 27066 - components: - - 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 - rot: 1.5707963267948966 rad - pos: -8.5,78.5 - parent: 12 - - uid: 30288 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,77.5 - parent: 12 - - uid: 30289 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.478801,72.686386 - parent: 12 - - uid: 30311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,77.5 - parent: 12 - - uid: 31262 - components: - - type: Transform - pos: -3.5,-66.5 - parent: 12 - - uid: 31797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,30.5 - parent: 12 - - uid: 31798 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,26.5 - parent: 12 - - uid: 31799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,28.5 - parent: 12 -- proto: ChairOfficeLight - entities: - - uid: 1816 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.482025,-21.348282 - parent: 12 - - uid: 1817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.482025,-18.395157 - parent: 12 - - uid: 1820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.623356,-25.68923 - parent: 12 - - uid: 1821 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.335243,-36.532413 - parent: 12 - - uid: 2665 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: -20.5,0.5 - parent: 12 - - uid: 6294 - components: - - type: Transform - pos: 35.5,-38.5 - parent: 12 - - uid: 7521 - components: - - type: Transform - pos: 13.5,-23.5 - parent: 12 - - uid: 13864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.460695,39.608284 - parent: 12 - - uid: 25522 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.470709,-20.484278 - parent: 12 - - uid: 29971 - components: - - type: Transform - pos: 18.5,-12.5 - parent: 12 - - uid: 31486 - components: - - type: Transform - pos: 12.5,-34.5 - parent: 12 - - uid: 31558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 12 -- proto: ChairPilotSeat - entities: - - uid: 22359 - components: - - type: Transform - pos: -13.5,49.5 - parent: 12 - - uid: 22360 - components: - - type: Transform - pos: -15.5,49.5 - parent: 12 -- proto: ChairWood - entities: - - uid: 7304 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,78.5 - parent: 12 - - uid: 13018 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,78.5 - parent: 12 - - uid: 15057 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,50.5 - parent: 12 - - uid: 15058 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,51.5 - parent: 12 - - uid: 15059 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,52.5 - parent: 12 - - uid: 15060 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,53.5 - parent: 12 - - uid: 15061 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,53.5 - parent: 12 - - uid: 15062 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,52.5 - parent: 12 - - uid: 15063 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,51.5 - parent: 12 - - uid: 15064 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,50.5 - parent: 12 - - uid: 19659 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: -9.5,77.5 - parent: 12 -- proto: CheapLighter - entities: - - uid: 2044 - components: - - type: Transform - pos: -56.64224,59.774014 - parent: 12 - - uid: 13017 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 46.42896,64.165306 - parent: 12 - - uid: 21375 - components: - - type: Transform - pos: -25.366394,45.399204 - parent: 12 -- proto: CheapRollerBedSpawnFolded - entities: - - uid: 13865 - components: - - type: Transform - pos: 28.29917,37.781895 - parent: 12 - - uid: 13866 - components: - - type: Transform - pos: 28.48667,37.622173 - parent: 12 - - uid: 19379 - components: - - type: Transform - pos: -47.5615,56.51636 - parent: 12 -- proto: CheckerBoard - entities: - - uid: 8729 - components: - - type: Transform - pos: 51.79037,-36.868877 - parent: 12 - - uid: 25500 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.488264,33.57113 - parent: 12 - - uid: 30318 - components: - - type: Transform - pos: -10.393614,78.45385 - parent: 12 -- proto: ChemDispenser - entities: - - uid: 2290 - components: - - type: Transform - pos: -35.5,-42.5 - parent: 12 - - uid: 2319 - components: - - type: Transform - pos: -31.5,-41.5 - parent: 12 - - uid: 4089 - components: - - type: Transform - pos: -25.5,-44.5 - parent: 12 -- proto: ChemistryEmptyBottle01 - entities: - - uid: 4169 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 46.04867,64.58201 - parent: 12 - - uid: 12410 - components: - - type: Transform - pos: 40.23914,28.830877 - parent: 12 - - uid: 17613 - components: - - type: Transform - pos: -52.436638,28.570076 - parent: 12 -- proto: ChemistryHotplate - entities: - - uid: 12644 - components: - - type: Transform - pos: -32.5,-44.5 - parent: 12 - - uid: 26234 - components: - - type: Transform - pos: -28.5,-41.5 - parent: 12 -- proto: ChemMaster - entities: - - uid: 2286 - components: - - type: Transform - pos: -35.5,-43.5 - parent: 12 - - uid: 2318 - components: - - type: Transform - pos: -33.5,-41.5 - parent: 12 - - uid: 26609 - components: - - type: Transform - pos: -26.5,-41.5 - parent: 12 -- proto: ChessBoard - entities: - - uid: 6825 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.539015,-36.42866 - parent: 12 - - uid: 13484 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.58448,36.6077 - parent: 12 - - uid: 13714 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.51699,28.565704 - parent: 12 - - uid: 21380 - components: - - type: Transform - pos: -28.5,44.5 - parent: 12 - - uid: 25499 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.476033,37.570534 - parent: 12 - - uid: 30309 - components: - - type: Transform - pos: -10.629725,78.592735 - parent: 12 -- proto: ChopSticks - entities: - - uid: 270 - components: - - type: Transform - pos: 31.55592,23.897781 - parent: 12 - - uid: 14943 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 31.262383,23.926529 - parent: 12 -- proto: ChurchBell - entities: - - uid: 11461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,33.5 - parent: 12 -- proto: ChurchOrganInstrument - entities: - - uid: 13110 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,38.5 - parent: 12 -- proto: CigaretteMold - entities: - - uid: 31125 - components: - - type: Transform - pos: -30.5,-59.5 - parent: 12 -- proto: CigaretteSpent - entities: - - uid: 13511 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.262024,20.263313 - parent: 12 -- proto: CigarGold - entities: - - uid: 15114 - components: - - type: Transform - pos: -29.484297,7.799851 - parent: 12 - - uid: 22676 - components: - - type: Transform - pos: 11.895839,57.06381 - parent: 12 -- proto: CigarGoldCase - entities: - - uid: 15843 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -30.428051,7.541847 - parent: 12 -- proto: CigCartonBlue - entities: - - uid: 13634 - components: - - 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 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -2.7167625,60.810635 - parent: 12 -- proto: CigPackGreen - entities: - - uid: 16760 - components: - - type: Transform - pos: -19.39561,2.431752 - parent: 12 - - uid: 21376 - components: - - type: Transform - pos: -25.626968,45.635986 - parent: 12 - - uid: 30187 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -16.708582,62.74659 - parent: 12 -- proto: CircuitImprinter - entities: - - uid: 1945 - components: - - type: Transform - pos: -25.5,-21.5 - parent: 12 -- proto: CleanerDispenser - entities: - - uid: 27851 - components: - - type: Transform - pos: 44.5,22.5 - parent: 12 -- proto: ClosetBombFilled - entities: - - uid: 1758 - components: - - type: Transform - pos: -42.5,-24.5 - parent: 12 - - uid: 29222 - components: - - type: Transform - pos: -25.5,63.5 - parent: 12 -- proto: ClosetChefFilled - entities: - - uid: 23568 - components: - - type: Transform - pos: 32.5,56.5 - parent: 12 -- proto: ClosetEmergency - entities: - - uid: 914 - components: - - type: Transform - pos: -46.5,-53.5 - parent: 12 - - uid: 1734 - components: - - type: Transform - pos: -29.5,-18.5 - parent: 12 - - uid: 1735 - components: - - type: Transform - pos: -36.5,-37.5 - parent: 12 - - uid: 1757 - components: - - type: Transform - pos: -45.5,-30.5 - parent: 12 - - uid: 26249 - components: - - type: Transform - pos: -51.5,-40.5 - parent: 12 - - uid: 27330 - components: - - type: Transform - pos: -51.5,-19.5 - parent: 12 - - uid: 27834 - components: - - type: Transform - pos: -52.5,-34.5 - parent: 12 - - uid: 31099 - components: - - type: Transform - pos: -12.5,-66.5 - parent: 12 - - uid: 31367 - components: - - type: Transform - pos: -26.5,-55.5 - parent: 12 - - uid: 31443 - components: - - type: Transform - pos: 0.5,-62.5 - parent: 12 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 2381 - components: - - type: Transform - pos: -60.5,-19.5 - parent: 12 - - uid: 4140 - components: - - type: Transform - pos: 6.5,-47.5 - parent: 12 - - uid: 4309 - components: - - type: Transform - pos: -13.5,-19.5 - parent: 12 - - uid: 6290 - components: - - type: Transform - pos: 59.5,-39.5 - parent: 12 - - uid: 9233 - components: - - type: Transform - pos: 30.5,-55.5 - parent: 12 - - uid: 9819 - components: - - type: Transform - pos: -24.5,-14.5 - parent: 12 - - uid: 10406 - components: - - type: Transform - pos: -26.5,-5.5 - parent: 12 - - uid: 11467 - components: - - type: Transform - pos: 76.5,-30.5 - parent: 12 - - uid: 12024 - components: - - type: Transform - pos: 49.5,11.5 - parent: 12 - - uid: 13940 - components: - - type: Transform - pos: 33.5,37.5 - parent: 12 - - uid: 13941 - components: - - type: Transform - pos: 33.5,36.5 - parent: 12 - - uid: 15580 - components: - - type: Transform - pos: 48.5,65.5 - parent: 12 - - uid: 16788 - components: - - type: Transform - pos: -10.5,-0.5 - parent: 12 - - uid: 21079 - components: - - type: Transform - pos: -44.5,47.5 - parent: 12 - - uid: 21080 - components: - - type: Transform - pos: -36.5,56.5 - parent: 12 - - uid: 21471 - components: - - type: Transform - pos: -22.5,31.5 - parent: 12 - - uid: 21477 - components: - - type: Transform - pos: -23.5,24.5 - parent: 12 - - uid: 23648 - components: - - type: Transform - pos: 52.5,51.5 - parent: 12 - - uid: 24502 - components: - - type: Transform - pos: 36.5,63.5 - parent: 12 - - uid: 24781 - components: - - type: Transform - pos: 11.5,84.5 - parent: 12 - - uid: 24996 - components: - - type: Transform - pos: 25.5,84.5 - parent: 12 - - uid: 24998 - components: - - type: Transform - pos: -18.5,60.5 - parent: 12 - - uid: 24999 - components: - - type: Transform - pos: -2.5,53.5 - parent: 12 - - uid: 25000 - components: - - type: Transform - pos: -18.5,35.5 - parent: 12 - - uid: 25054 - components: - - type: Transform - pos: 49.5,-32.5 - parent: 12 - - uid: 25333 - components: - - type: Transform - pos: 0.5,-25.5 - parent: 12 - - uid: 25336 - components: - - type: Transform - pos: 26.5,-28.5 - parent: 12 - - uid: 25340 - components: - - type: Transform - pos: 15.5,-39.5 - parent: 12 - - uid: 25341 - components: - - type: Transform - pos: 27.5,-39.5 - parent: 12 - - uid: 25355 - components: - - type: Transform - pos: 37.5,40.5 - parent: 12 - - uid: 25356 - components: - - type: Transform - pos: -20.5,29.5 - parent: 12 - - uid: 25361 - components: - - type: Transform - pos: -17.5,5.5 - parent: 12 - - uid: 25375 - components: - - type: Transform - pos: -17.5,73.5 - parent: 12 - - uid: 25920 - components: - - type: Transform - pos: 14.5,40.5 - parent: 12 - - uid: 25975 - components: - - type: Transform - pos: -45.5,31.5 - parent: 12 - - uid: 26027 - components: - - type: Transform - pos: -0.5,10.5 - parent: 12 - - uid: 26246 - components: - - type: Transform - 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 - pos: 7.5,-4.5 - parent: 12 - - uid: 27228 - components: - - 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 - pos: 29.5,9.5 - parent: 12 - - uid: 29230 - components: - - type: Transform - pos: -22.5,61.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 - - uid: 29648 - components: - - type: Transform - pos: -43.5,72.5 - parent: 12 - - uid: 30464 - components: - - type: Transform - pos: 32.5,10.5 - parent: 12 - - uid: 30487 - components: - - type: Transform - pos: 44.5,-18.5 - parent: 12 -- proto: ClosetEmergencyN2FilledRandom - entities: - - uid: 8668 - components: - - type: Transform - pos: -13.5,-66.5 - parent: 12 - - uid: 14957 - components: - - type: Transform - pos: -11.5,-3.5 - parent: 12 - - uid: 25337 - components: - - type: Transform - pos: 48.5,-26.5 - parent: 12 - - uid: 25338 - components: - - type: Transform - pos: 35.5,-35.5 - parent: 12 - - uid: 25342 - components: - - type: Transform - pos: -26.5,-7.5 - parent: 12 - - uid: 25344 - components: - - type: Transform - pos: -22.5,19.5 - parent: 12 - - uid: 25346 - components: - - type: Transform - pos: -20.5,60.5 - parent: 12 - - uid: 25351 - components: - - type: Transform - pos: -0.5,54.5 - parent: 12 - - uid: 25352 - components: - - type: Transform - pos: 29.5,66.5 - parent: 12 - - uid: 25353 - components: - - type: Transform - pos: 41.5,59.5 - parent: 12 - - uid: 26683 - components: - - type: Transform - 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: - - type: Transform - pos: -5.5,68.5 - parent: 12 - - uid: 31701 - components: - - type: Transform - pos: -61.5,-30.5 - parent: 12 -- proto: ClosetFireFilled - entities: - - uid: 913 - components: - - type: Transform - pos: -45.5,-53.5 - parent: 12 - - uid: 1754 - components: - - type: Transform - pos: -37.5,-42.5 - parent: 12 - - uid: 1756 - components: - - type: Transform - pos: -46.5,-30.5 - parent: 12 - - uid: 4139 - components: - - type: Transform - pos: 5.5,-47.5 - parent: 12 - - uid: 6278 - components: - - type: Transform - pos: 48.5,-36.5 - parent: 12 - - uid: 11261 - components: - - type: Transform - pos: -36.5,55.5 - parent: 12 - - uid: 12023 - components: - - type: Transform - pos: 49.5,10.5 - parent: 12 - - uid: 13942 - components: - - type: Transform - pos: 33.5,35.5 - parent: 12 - - uid: 16519 - components: - - type: Transform - pos: -21.5,31.5 - parent: 12 - - uid: 18276 - components: - - type: Transform - pos: -17.5,72.5 - parent: 12 - - uid: 21478 - components: - - type: Transform - pos: -22.5,24.5 - parent: 12 - - uid: 23649 - components: - - type: Transform - pos: 52.5,52.5 - parent: 12 - - uid: 24236 - components: - - type: Transform - pos: 50.5,65.5 - parent: 12 - - uid: 24501 - components: - - type: Transform - pos: 36.5,62.5 - parent: 12 - - uid: 25002 - components: - - type: Transform - pos: -18.5,36.5 - parent: 12 - - uid: 25055 - components: - - type: Transform - pos: -6.5,13.5 - parent: 12 - - uid: 25056 - components: - - type: Transform - pos: -18.5,62.5 - parent: 12 - - uid: 25057 - components: - - type: Transform - pos: -2.5,52.5 - parent: 12 - - uid: 25288 - components: - - type: Transform - pos: 28.5,-39.5 - parent: 12 - - uid: 25334 - components: - - type: Transform - pos: 1.5,-25.5 - parent: 12 - - uid: 25335 - components: - - type: Transform - pos: 27.5,-28.5 - parent: 12 - - uid: 25339 - components: - - type: Transform - pos: 16.5,-39.5 - parent: 12 - - uid: 25354 - components: - - type: Transform - pos: 36.5,40.5 - parent: 12 - - uid: 25359 - components: - - type: Transform - pos: -19.5,29.5 - parent: 12 - - uid: 25360 - components: - - type: Transform - pos: -17.5,6.5 - parent: 12 - - uid: 25508 - components: - - type: Transform - pos: 12.5,84.5 - parent: 12 - - uid: 25509 - components: - - type: Transform - pos: 24.5,84.5 - parent: 12 - - uid: 25919 - components: - - type: Transform - pos: 15.5,40.5 - parent: 12 - - uid: 25976 - components: - - 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: 29654 - components: - - type: Transform - pos: -43.5,71.5 - parent: 12 - - uid: 30472 - components: - - type: Transform - pos: 29.5,19.5 - parent: 12 - - uid: 30488 - components: - - type: Transform - pos: 44.5,-19.5 - parent: 12 - - uid: 31366 - components: - - type: Transform - pos: -26.5,-56.5 - parent: 12 - - uid: 31444 - components: - - type: Transform - pos: -0.5,-62.5 - parent: 12 - - uid: 31580 - components: - - type: Transform - pos: -23.5,-14.5 - parent: 12 -- proto: ClosetJanitorFilled - entities: - - uid: 12253 - components: - - type: Transform - pos: 43.5,19.5 - parent: 12 -- proto: ClosetL3Filled - entities: - - uid: 1748 - components: - - type: Transform - pos: -44.5,-41.5 - parent: 12 - - uid: 1749 - components: - - type: Transform - pos: -43.5,-41.5 - parent: 12 - - uid: 1750 - components: - - type: Transform - pos: -37.5,-43.5 - parent: 12 - - uid: 1751 - components: - - type: Transform - pos: -37.5,-44.5 - parent: 12 - - uid: 3813 - components: - - type: Transform - pos: -17.5,-54.5 - parent: 12 - - uid: 3814 - components: - - type: Transform - pos: -17.5,-53.5 - parent: 12 -- proto: ClosetL3JanitorFilled - entities: - - uid: 12258 - components: - - type: Transform - pos: 43.5,18.5 - parent: 12 -- proto: ClosetL3ScienceFilled - entities: - - uid: 1744 - components: - - type: Transform - pos: -40.5,-28.5 - parent: 12 - - uid: 1745 - components: - - type: Transform - pos: -39.5,-28.5 - parent: 12 - - uid: 1746 - components: - - type: Transform - pos: -21.5,-23.5 - parent: 12 - - uid: 1747 - components: - - type: Transform - pos: -19.5,-23.5 - parent: 12 - - uid: 1994 - components: - - type: Transform - pos: -35.5,-22.5 - parent: 12 -- proto: ClosetL3VirologyFilled - entities: - - uid: 2688 - components: - - type: Transform - pos: -10.5,-58.5 - parent: 12 -- proto: ClosetLegalFilled - entities: - - uid: 8948 - components: - - type: Transform - pos: -24.5,31.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: - - 8949 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 894 - components: - - type: Transform - pos: 52.5,23.5 - parent: 12 - - uid: 895 - components: - - type: Transform - pos: 41.5,19.5 - parent: 12 - - uid: 937 - components: - - 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 - pos: -8.5,-31.5 - parent: 12 - - uid: 3152 - components: - - type: Transform - pos: -12.5,-3.5 - parent: 12 - - uid: 7012 - components: - - type: Transform - pos: 3.5,-62.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: - - 7374 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 7383 - components: - - type: Transform - pos: 2.5,69.5 - parent: 12 - - uid: 8982 - components: - - type: Transform - pos: 37.5,-23.5 - parent: 12 - - uid: 9996 - components: - - type: Transform - pos: -25.5,-14.5 - parent: 12 - - uid: 11279 - components: - - type: Transform - pos: 5.5,30.5 - parent: 12 - - uid: 11310 - components: - - type: Transform - pos: -4.5,-61.5 - parent: 12 - - uid: 11472 - components: - - type: Transform - pos: 55.5,12.5 - parent: 12 - - uid: 12021 - components: - - type: Transform - pos: 43.5,10.5 - parent: 12 - - uid: 12022 - components: - - 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: 12135 - components: - - type: Transform - pos: -9.5,-68.5 - parent: 12 - - uid: 12246 - components: - - type: Transform - pos: 49.5,17.5 - parent: 12 - - uid: 16505 - components: - - type: Transform - pos: -7.5,15.5 - parent: 12 - - uid: 16652 - components: - - type: Transform - pos: -56.5,-29.5 - parent: 12 - - uid: 18105 - components: - - type: Transform - pos: -19.5,70.5 - parent: 12 - - uid: 21600 - components: - - type: Transform - pos: -27.5,21.5 - parent: 12 - - uid: 22123 - components: - - type: Transform - pos: -0.5,15.5 - parent: 12 - - uid: 22146 - components: - - type: Transform - pos: 52.5,-7.5 - parent: 12 - - uid: 24277 - components: - - type: Transform - pos: -14.5,67.5 - parent: 12 - - uid: 24278 - components: - - type: Transform - pos: -18.5,49.5 - parent: 12 - - uid: 24499 - components: - - type: Transform - pos: 32.5,61.5 - parent: 12 - - uid: 24500 - components: - - type: Transform - pos: 36.5,61.5 - parent: 12 - - uid: 24505 - components: - - type: Transform - pos: 23.5,63.5 - parent: 12 - - uid: 24506 - components: - - type: Transform - pos: 8.5,64.5 - parent: 12 - - uid: 24507 - components: - - type: Transform - pos: -4.5,67.5 - parent: 12 - - uid: 24508 - components: - - type: Transform - pos: 0.5,54.5 - parent: 12 - - uid: 24994 - components: - - type: Transform - pos: -18.5,61.5 - parent: 12 - - uid: 25324 - components: - - type: Transform - pos: -7.5,33.5 - parent: 12 - - uid: 25325 - components: - - type: Transform - pos: -22.5,18.5 - parent: 12 - - uid: 25326 - components: - - type: Transform - pos: 5.5,-35.5 - parent: 12 - - uid: 25329 - components: - - type: Transform - pos: 34.5,-35.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 - pos: -54.5,-19.5 - parent: 12 - - uid: 27831 - components: - - type: Transform - pos: -47.5,-45.5 - parent: 12 - - uid: 28284 - components: - - type: Transform - pos: -26.5,-12.5 - parent: 12 - - uid: 28440 - components: - - type: Transform - pos: 6.5,-7.5 - parent: 12 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 28441 - paper_label: !type:ContainerSlot - 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: 28870 - components: - - type: Transform - 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 - pos: 29.5,18.5 - parent: 12 - - uid: 30906 - components: - - type: Transform - pos: -25.5,-52.5 - parent: 12 - - uid: 30930 - components: - - type: Transform - pos: -15.5,-63.5 - parent: 12 - - uid: 31162 - components: - - type: Transform - pos: -27.5,-59.5 - parent: 12 -- proto: ClosetRadiationSuitFilled - entities: - - uid: 2315 - components: - - type: Transform - pos: -33.5,-39.5 - parent: 12 - - uid: 13002 - components: - - type: Transform - pos: -54.5,-32.5 - parent: 12 - - uid: 22041 - components: - - type: Transform - pos: -44.5,-22.5 - parent: 12 - - uid: 22048 - components: - - type: Transform - pos: -47.5,-38.5 - parent: 12 -- proto: ClosetSteelBase - entities: - - uid: 16506 - components: - - type: Transform - pos: -19.5,4.5 - parent: 12 - - uid: 16507 - components: - - type: Transform - pos: -19.5,14.5 - parent: 12 - - uid: 21468 - components: - - type: Transform - pos: -39.5,32.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: - - 8477 - - 8498 - - 8790 - - 8804 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetToolFilled - entities: - - uid: 902 - components: - - type: Transform - pos: -19.5,-6.5 - parent: 12 - - uid: 8294 - components: - - type: Transform - pos: 44.5,-10.5 - parent: 12 - - uid: 24486 - components: - - type: Transform - pos: 24.5,65.5 - parent: 12 -- proto: ClosetWallEmergencyFilledRandom - entities: - - uid: 7523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-4.5 - parent: 12 - - uid: 8883 - components: - - type: Transform - pos: 39.5,-20.5 - parent: 12 - - uid: 21377 - components: - - type: Transform - pos: -26.5,52.5 - parent: 12 - - uid: 25358 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,40.5 - parent: 12 -- proto: ClosetWallFireFilledRandom - entities: - - uid: 21378 - components: - - type: Transform - pos: -27.5,49.5 - parent: 12 - - uid: 25345 - components: - - type: Transform - pos: -21.5,34.5 - parent: 12 - - uid: 25357 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,39.5 - parent: 12 - - uid: 28744 - components: - - type: Transform - pos: 20.5,8.5 - parent: 12 -- proto: ClosetWallMaintenanceFilledRandom - entities: - - uid: 22580 - components: - - type: Transform - pos: 47.5,-4.5 - parent: 12 -- proto: ClothingBackpackSatchelGenetics - entities: - - uid: 2696 - components: - - type: Transform - pos: -0.5472758,-52.572456 - parent: 12 -- proto: ClothingBeltMedicalEMTFilled - entities: - - uid: 2494 - components: - - type: Transform - pos: -19.53998,-46.81788 - parent: 12 -- proto: ClothingBeltStorageWaistbag - entities: - - uid: 9235 - components: - - type: Transform - pos: -20.590734,12.548069 - parent: 12 -- proto: ClothingBeltUtility - entities: - - uid: 2043 - components: - - type: Transform - rot: -56.54866776461632 rad - pos: -20.51532,-21.420076 - parent: 12 - - uid: 9108 - components: - - type: Transform - pos: 42.92,-32.307697 - parent: 12 - - uid: 10383 - components: - - type: Transform - pos: -22.503332,-9.953175 - parent: 12 - - uid: 12034 - components: - - type: Transform - pos: 29.404346,45.5935 - parent: 12 - - uid: 16475 - components: - - type: Transform - pos: -7.446628,11.795433 - parent: 12 - - uid: 23663 - components: - - type: Transform - pos: 48.51947,53.511364 - parent: 12 - - uid: 25378 - components: - - type: Transform - rot: -100.53096491487331 rad - pos: 9.531616,-13.506657 - parent: 12 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 28711 - components: - - type: Transform - pos: 52.389435,1.5120246 - parent: 12 -- proto: ClothingEyesBlindfold - entities: - - uid: 17606 - components: - - type: Transform - pos: -51.59934,28.413542 - parent: 12 -- proto: ClothingEyesGlassesCheapSunglasses - entities: - - uid: 21389 - components: - - type: Transform - pos: -27.615736,54.444736 - parent: 12 - - uid: 22474 - components: - - type: Transform - parent: 22473 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22481 - components: - - type: Transform - parent: 22480 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22490 - components: - - type: Transform - pos: 5.4568458,41.487026 - parent: 12 - - uid: 22539 - components: - - type: Transform - pos: 3.5015354,41.514862 - parent: 12 -- proto: ClothingEyesGlassesChemical - entities: - - uid: 2510 - components: - - type: Transform - pos: -34.460335,-48.768856 - parent: 12 -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 13708 - components: - - type: Transform - pos: 18.47465,28.263622 - parent: 12 - - uid: 22472 - components: - - type: Transform - pos: 2.4488733,41.539967 - parent: 12 - - uid: 30263 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -21.523514,1.0408798 - parent: 12 -- proto: ClothingEyesHudBeer - entities: - - uid: 23436 - components: - - type: Transform - pos: 31.817574,51.333954 - parent: 12 -- proto: ClothingEyesHudMedical - entities: - - uid: 13838 - components: - - type: Transform - rot: -62.83185307179591 rad - pos: 29.327696,35.27665 - parent: 12 - - uid: 32093 - components: - - type: Transform - pos: -10.5,-37.5 - parent: 12 -- proto: ClothingHandsGlovesBoxingBlue - entities: - - uid: 22633 - components: - - type: Transform - pos: 7.5,53.5 - parent: 12 - - uid: 30190 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -2.320929,60.466644 - parent: 12 - - uid: 31331 - components: - - type: Transform - pos: 2.6241279,-64.28531 - parent: 12 -- proto: ClothingHandsGlovesBoxingGreen - entities: - - uid: 21732 - components: - - type: Transform - pos: -16.368809,62.392178 - parent: 12 - - uid: 22634 - components: - - type: Transform - pos: 7.5,54.5 - parent: 12 -- proto: ClothingHandsGlovesBoxingRed - entities: - - uid: 22631 - components: - - type: Transform - pos: 10.5,48.5 - parent: 12 - - uid: 31332 - components: - - type: Transform - pos: 2.3387475,-64.660645 - parent: 12 -- proto: ClothingHandsGlovesBoxingYellow - entities: - - uid: 22632 - components: - - type: Transform - pos: 10.5,49.5 - parent: 12 -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 5908 - components: - - type: Transform - pos: 33.68242,-17.632181 - parent: 12 - - uid: 9236 - components: - - type: Transform - 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 - pos: 40.641838,28.466246 - parent: 12 - - uid: 19286 - components: - - type: Transform - pos: -46.541893,54.60185 - parent: 12 - - uid: 22379 - components: - - type: Transform - pos: -15.491646,56.483044 - parent: 12 - - uid: 23561 - components: - - type: Transform - pos: 42.446712,53.64907 - parent: 12 - - uid: 28501 - components: - - type: Transform - pos: -12.498269,-45.67308 - parent: 12 -- proto: ClothingHandsGlovesLeather - entities: - - uid: 24125 - components: - - type: Transform - pos: 63.856445,45.400734 - parent: 12 -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 2794 - components: - - type: Transform - pos: -11.50525,-60.453125 - parent: 12 -- proto: ClothingHeadHatAnimalHeadslime - entities: - - uid: 31773 - components: - - type: Transform - pos: -10.514854,-62.37003 - parent: 12 -- proto: ClothingHeadHatAnimalMonkey - entities: - - uid: 2752 - components: - - type: Transform - pos: -7.9430385,-54.758686 - parent: 12 -- proto: ClothingHeadHatBeretBrigmedic - entities: - - uid: 21307 - components: - - type: Transform - pos: -46.29019,55.383354 - parent: 12 -- proto: ClothingHeadHatBluesoft - entities: - - uid: 30226 - components: - - type: Transform - pos: -4.5150943,62.876217 - parent: 12 -- proto: ClothingHeadHatCake - entities: - - uid: 15100 - components: - - type: Transform - pos: 21.5,47.5 - parent: 12 -- proto: ClothingHeadHatCasa - entities: - - uid: 31592 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 31.596687,23.608313 - parent: 12 - - uid: 31593 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 31.319462,23.37985 - parent: 12 -- proto: ClothingHeadHatChickenhead - entities: - - uid: 25868 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 58.704426,58.721027 - parent: 12 -- proto: ClothingHeadHatCone - entities: - - uid: 16765 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 10.694662,-23.490442 - parent: 12 - - uid: 30427 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 11.719354,-23.505884 - parent: 12 - - uid: 30428 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 10.210094,-23.490442 - parent: 12 - - uid: 30429 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 11.2533045,-23.512062 - parent: 12 - - uid: 32036 - components: - - 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 - components: - - type: Transform - rot: -31.415926535897945 rad - pos: -3.7113204,-67.61389 - parent: 12 - - uid: 31209 - components: - - type: Transform - rot: -31.415926535897945 rad - pos: 1.8169088,-67.654686 - parent: 12 -- proto: ClothingHeadHatGreensoft - entities: - - uid: 30232 - components: - - type: Transform - 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 - components: - - type: Transform - pos: -15.479212,51.570213 - parent: 12 -- proto: ClothingHeadHatSantahat - entities: - - uid: 31656 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: -22.599323,38.502403 - parent: 12 - - uid: 31657 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: -41.818073,40.566353 - parent: 12 - - uid: 31669 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: -36.450703,42.555126 - parent: 12 - - uid: 31670 - components: - - type: Transform - pos: -29.275808,38.740208 - parent: 12 - - uid: 31672 - components: - - type: Transform - pos: -37.561886,53.522655 - parent: 12 - - uid: 31673 - components: - - type: Transform - pos: 23.223015,-26.438202 - parent: 12 - - uid: 31674 - components: - - type: Transform - pos: 21.975492,-27.778383 - 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 - rot: -6.283185307179586 rad - pos: 37.24733,57.648235 - parent: 12 -- proto: ClothingHeadHatUshanka - entities: - - uid: 30941 - components: - - type: Transform - pos: 5.4417367,-60.162846 - parent: 12 - - uid: 31184 - components: - - type: Transform - pos: 5.6500697,-60.402912 - parent: 12 -- proto: ClothingHeadHatWelding - entities: - - uid: 5503 - components: - - type: Transform - pos: 40.62628,2.544718 - parent: 12 - - uid: 6745 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: 12.546636,-24.388168 - parent: 12 - - uid: 10390 - components: - - type: Transform - pos: -34.3023,-10.548859 - parent: 12 - - uid: 12214 - components: - - type: Transform - pos: 51.521744,10.769743 - parent: 12 - - uid: 23684 - components: - - type: Transform - pos: 44.680992,51.002113 - parent: 12 -- proto: ClothingHeadHatWeldingMaskFlame - entities: - - uid: 26165 - components: - - type: Transform - rot: -37.69911184307754 rad - pos: -45.593422,44.51472 - parent: 12 -- proto: ClothingHeadHatWeldingMaskFlameBlue - entities: - - uid: 6202 - components: - - type: Transform - pos: -0.54897594,7.582822 - parent: 12 -- proto: ClothingHeadHatWeldingMaskPainted - entities: - - uid: 4244 - components: - - type: Transform - pos: 3.7177448,-29.628248 - parent: 12 -- proto: ClothingHeadHatWizardFake - entities: - - uid: 13093 - components: - - type: Transform - pos: 55.53297,28.077326 - parent: 12 -- proto: ClothingHeadHelmetBone - entities: - - uid: 13524 - components: - - type: MetaData - desc: Cool-looking helmet made of skull of your enemies. This one seems very thin and fragile. - - type: Transform - pos: 55.418385,27.514826 - parent: 12 - missingComponents: - - Armor -- proto: ClothingHeadHelmetCosmonaut - entities: - - uid: 26557 - components: - - type: Transform - pos: -21.667349,-7.343448 - parent: 12 -- proto: ClothingHeadHelmetRiot - entities: - - uid: 20866 - components: - - type: Transform - pos: -37.79711,65.677376 - parent: 12 - - uid: 20869 - components: - - type: Transform - pos: -37.4544,65.665146 - parent: 12 -- proto: ClothingHeadPyjamaSyndicateRed - entities: - - uid: 28257 - components: - - type: Transform - parent: 28254 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadSafari - entities: - - uid: 31462 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 13.468971,-34.68746 - parent: 12 -- proto: ClothingHeadsetMedicalScience - entities: - - uid: 5033 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -19.489866,-29.595835 - parent: 12 -- proto: ClothingMaskBandBlue - entities: - - uid: 30237 - components: - - type: Transform - pos: -2.5084562,62.783176 - parent: 12 -- proto: ClothingMaskBandGreen - entities: - - uid: 30233 - components: - - type: Transform - pos: -14.456373,60.792213 - parent: 12 -- proto: ClothingMaskBandRed - entities: - - uid: 21390 - components: - - type: Transform - pos: -27.60846,55.430187 - parent: 12 -- proto: ClothingMaskBee - entities: - - uid: 22199 - components: - - type: Transform - pos: 0.50635767,25.52865 - parent: 12 -- proto: ClothingMaskBreathMedical - entities: - - uid: 2924 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 2.63736,-32.324486 - parent: 12 - - uid: 9963 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 2.32486,-32.289738 - parent: 12 - - uid: 10900 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -19.677366,-30.367203 - parent: 12 -- proto: ClothingMaskBreathMedicalSecurity - entities: - - uid: 31358 - components: - - type: Transform - rot: -31.415926535897945 rad - pos: -34.346054,-15.604868 - parent: 12 -- proto: ClothingMaskGas - entities: - - uid: 8498 - components: - - type: Transform - parent: 21468 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 13014 - components: - - type: Transform - 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 - components: - - type: Transform - pos: 8.695399,-10.653677 - parent: 12 -- proto: ClothingMaskMuzzle - entities: - - uid: 26829 - components: - - type: Transform - pos: -24.5,53.5 - parent: 12 -- proto: ClothingMaskSterile - entities: - - uid: 8888 - components: - - 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 - pos: 40.589756,28.67458 - parent: 12 - - uid: 19287 - components: - - type: Transform - pos: -46.73773,54.846462 - parent: 12 - - uid: 31732 - components: - - type: Transform - parent: 3958 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 31733 - components: - - type: Transform - parent: 3958 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckCloakAce - entities: - - uid: 18303 - components: - - type: Transform - pos: -4.464142,51.52777 - parent: 12 -- proto: ClothingNeckCloakMiner - entities: - - uid: 32127 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -60.515457,-50.51032 - parent: 12 -- proto: ClothingNeckCloakTrans - entities: - - uid: 25486 - components: - - type: Transform - pos: -0.13286686,29.66557 - parent: 12 -- proto: ClothingNeckHeadphones - entities: - - uid: 27908 - components: - - type: Transform - pos: -25.446548,64.671776 - parent: 12 - - uid: 29599 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -50.5738,76.70312 - parent: 12 -- proto: ClothingNeckScarfStripedBlue - entities: - - uid: 30225 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -2.5250711,64.516556 - parent: 12 -- proto: ClothingNeckScarfStripedGreen - entities: - - uid: 6293 - components: - - type: Transform - pos: -14.564797,58.594166 - parent: 12 -- proto: ClothingNeckScarfStripedSyndieRed - entities: - - uid: 28256 - components: - - type: Transform - parent: 28254 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckStethoscope - entities: - - uid: 12708 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -8.446025,-33.4393 - parent: 12 - - type: Stethoscope - actionEntity: 4711 - - type: ActionsContainer - - type: ContainerContainer - containers: - 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 - components: - - type: Transform - pos: -29.5,54.5 - parent: 12 -- proto: ClothingOuterApronChef - entities: - - uid: 266 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 29.248413,25.550251 - parent: 12 - - uid: 31138 - components: - - type: Transform - pos: -32.352356,-57.409943 - parent: 12 - - uid: 31594 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 29.566408,25.68896 - parent: 12 -- proto: ClothingOuterArmorBulletproof - entities: - - uid: 20871 - components: - - type: Transform - pos: -37.356483,64.18525 - parent: 12 -- proto: ClothingOuterArmorReflective - entities: - - uid: 20872 - components: - - type: Transform - pos: -37.76039,64.19748 - parent: 12 -- proto: ClothingOuterArmorRiot - entities: - - uid: 20867 - components: - - type: Transform - pos: -37.380962,64.57662 - parent: 12 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: This decreases your speed by [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - It provides the following protection: - - - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]60%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]60%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]30%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]10%[/color]. - priority: 0 - component: Armor - title: null - - uid: 20868 - components: - - type: Transform - pos: -37.784874,64.60109 - parent: 12 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: This decreases your speed by [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - It provides the following protection: - - - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]60%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]60%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]30%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]10%[/color]. - priority: 0 - component: Armor - title: null -- proto: ClothingOuterCoatGentle - entities: - - uid: 13523 - components: - - type: Transform - pos: 54.772552,24.550056 - parent: 12 -- proto: ClothingOuterCoatLabGeneOpened - entities: - - uid: 30381 - components: - - type: Transform - pos: -2.514976,-52.547947 - parent: 12 -- proto: ClothingOuterCoatLabOpened - entities: - - uid: 343 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 42.74899,63.393394 - parent: 12 - - uid: 11943 - components: - - 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 - components: - - type: Transform - pos: -6.8520417,64.332344 - parent: 12 -- proto: ClothingOuterFlannelGreen - entities: - - uid: 30216 - components: - - type: Transform - pos: -11.945792,60.527626 - parent: 12 -- proto: ClothingOuterHoodieBlack - entities: - - uid: 25982 - components: - - type: Transform - pos: 37.5,37.5 - parent: 12 -- proto: ClothingOuterHoodieGrey - entities: - - uid: 8477 - components: - - type: Transform - parent: 21468 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterHospitalGown - entities: - - uid: 2825 - components: - - type: Transform - rot: 6.283185307179586 rad - pos: -8.581383,-45.43181 - parent: 12 - - uid: 28462 - components: - - type: Transform - rot: 6.283185307179586 rad - pos: -8.450924,-45.54604 - parent: 12 - - uid: 31734 - components: - - type: Transform - parent: 3958 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 31735 - components: - - type: Transform - parent: 3958 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterSanta - entities: - - uid: 31654 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: -21.505573,38.6744 - parent: 12 - - uid: 31655 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: -41.474323,40.472534 - parent: 12 - - uid: 31667 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: -31.513205,38.489803 - parent: 12 - - uid: 31668 - components: - - type: Transform - rot: -6.217248937900877E-15 rad - pos: -39.52883,36.55096 - parent: 12 - - uid: 31671 - components: - - type: Transform - pos: -37.341736,53.412502 - parent: 12 -- proto: ClothingOuterStraightjacket - entities: - - uid: 19275 - components: - - type: Transform - pos: -47.597347,54.737755 - parent: 12 -- proto: ClothingOuterSuitEmergency - entities: - - uid: 10386 - components: - - type: Transform - pos: -20.66127,-7.3468537 - parent: 12 - - uid: 10387 - components: - - type: Transform - pos: -20.351429,-7.5670047 - parent: 12 -- proto: ClothingOuterSuitMonkey - entities: - - uid: 2751 - components: - - type: Transform - pos: -7.747349,-54.783165 - parent: 12 -- proto: ClothingOuterWinterChef - entities: - - uid: 24081 - components: - - type: Transform - pos: 41.50579,51.421726 - parent: 12 -- proto: ClothingShoesBling - entities: - - uid: 17387 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -30.809994,11.504305 - parent: 12 -- proto: ClothingShoesBootsCowboyBrown - entities: - - uid: 31520 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 13.549731,-35.642796 - parent: 12 -- proto: ClothingShoesBootsMag - entities: - - uid: 9586 - components: - - type: Transform - pos: 35.502213,-9.453249 - parent: 12 - - uid: 16457 - components: - - type: Transform - pos: -10.5,10.5 - parent: 12 - - uid: 16459 - components: - - type: Transform - pos: -10.5,7.5 - parent: 12 -- proto: ClothingShoesColorBlue - entities: - - uid: 30235 - components: - - type: Transform - pos: -4.5188723,64.76372 - parent: 12 -- proto: ClothingShoesColorGreen - entities: - - uid: 21685 - components: - - type: Transform - pos: -16.518875,58.738705 - parent: 12 -- proto: ClothingShoesFlippers - entities: - - uid: 22477 - components: - - type: Transform - parent: 22473 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22486 - components: - - type: Transform - parent: 22480 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingShoesSkates - entities: - - uid: 836 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -51.46078,67.59943 - parent: 12 - - uid: 1836 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -45.59967,73.321205 - parent: 12 - - uid: 25439 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -50.495502,67.57858 - parent: 12 - - uid: 29215 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -45.342724,73.68256 - parent: 12 -- proto: ClothingShoesTourist - entities: - - uid: 22478 - components: - - type: Transform - parent: 22473 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22482 - components: - - type: Transform - parent: 22480 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUnderSocksBee - entities: - - uid: 22200 - components: - - type: Transform - pos: -2.539668,30.440784 - parent: 12 -- proto: ClothingUnderSocksCoder - entities: - - uid: 4527 - components: - - type: Transform - pos: -0.50228786,-20.693401 - parent: 12 -- proto: ClothingUniformColorRainbow - entities: - - uid: 29984 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -0.27628815,17.396 - parent: 12 -- proto: ClothingUniformJumpskirtBlueElegantDress - entities: - - uid: 30194 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -2.4667625,60.654274 - parent: 12 -- proto: ClothingUniformJumpskirtGreenElegantDress - entities: - - uid: 30189 - components: - - type: Transform - pos: -16.566727,62.579807 - parent: 12 -- proto: ClothingUniformJumpskirtLawyerBlack - entities: - - uid: 8939 - components: - - type: Transform - parent: 8818 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpskirtLawyerBlue - entities: - - uid: 8865 - components: - - type: Transform - parent: 8818 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitColorBrown - entities: - - uid: 12812 - components: - - type: Transform - pos: 55.808376,27.453695 - parent: 12 -- proto: ClothingUniformJumpsuitColorGrey - entities: - - uid: 8790 - components: - - type: Transform - parent: 21468 - - 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 - components: - - type: Transform - rot: -31.415926535897945 rad - pos: -4.0456233,-68.12794 - parent: 12 - - uid: 31208 - components: - - type: Transform - rot: -31.415926535897945 rad - pos: 2.3224406,-68.45431 - parent: 12 -- proto: ClothingUniformJumpsuitHawaiBlack - entities: - - uid: 22535 - components: - - type: Transform - pos: 3.4828787,41.55774 - parent: 12 -- proto: ClothingUniformJumpsuitHawaiBlue - entities: - - uid: 22534 - components: - - type: Transform - pos: 5.4296494,41.582844 - parent: 12 -- proto: ClothingUniformJumpsuitLawyerBlack - entities: - - uid: 8947 - components: - - type: Transform - parent: 8818 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitLawyerBlue - entities: - - uid: 8940 - components: - - type: Transform - parent: 8818 - - 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 - components: - - type: Transform - parent: 28254 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitSafari - entities: - - uid: 31463 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 13.549731,-35.194027 - parent: 12 -- proto: ClothingUniformOveralls - entities: - - uid: 24116 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 58.704426,58.319515 - parent: 12 -- proto: Cobweb1 - entities: - - uid: 4899 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-23.5 - parent: 12 - - uid: 4997 - components: - - type: Transform - pos: 53.5,-42.5 - parent: 12 - - uid: 9215 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-38.5 - parent: 12 - - uid: 9862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-18.5 - parent: 12 - - uid: 12321 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,6.5 - parent: 12 - - uid: 12327 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,17.5 - parent: 12 - - uid: 12328 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,19.5 - parent: 12 - - uid: 12329 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,16.5 - parent: 12 - - uid: 16376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,17.5 - parent: 12 - - uid: 24997 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,15.5 - parent: 12 - - uid: 25015 - components: - - type: Transform - pos: 6.5,66.5 - parent: 12 - - uid: 25016 - components: - - type: Transform - pos: -2.5,56.5 - parent: 12 - - uid: 25018 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,64.5 - parent: 12 - - uid: 25020 - components: - - type: Transform - pos: -1.5,70.5 - parent: 12 - - uid: 25021 - components: - - type: Transform - pos: -15.5,69.5 - parent: 12 - - uid: 25025 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,50.5 - parent: 12 - - uid: 25026 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,31.5 - parent: 12 - - uid: 25028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,16.5 - parent: 12 - - uid: 25029 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,44.5 - parent: 12 - - uid: 25030 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,40.5 - parent: 12 - - uid: 25031 - components: - - type: Transform - pos: -33.5,-18.5 - parent: 12 - - uid: 25032 - components: - - type: Transform - pos: -8.5,-22.5 - parent: 12 - - uid: 25034 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,58.5 - parent: 12 - - uid: 25036 - components: - - type: Transform - pos: 42.5,64.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 - pos: 38.5,63.5 - parent: 12 -- proto: Cobweb2 - entities: - - uid: 2488 - components: - - type: Transform - pos: 35.5,20.5 - parent: 12 - - uid: 4747 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,14.5 - parent: 12 - - uid: 4983 - components: - - type: Transform - pos: 59.5,-39.5 - parent: 12 - - uid: 9375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-39.5 - parent: 12 - - uid: 12319 - components: - - type: Transform - pos: 52.5,20.5 - parent: 12 - - uid: 12325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,10.5 - parent: 12 - - uid: 12330 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,23.5 - parent: 12 - - uid: 12331 - components: - - type: Transform - pos: 41.5,19.5 - parent: 12 - - uid: 19838 - components: - - type: Transform - pos: 44.5,-10.5 - parent: 12 - - uid: 25017 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,66.5 - parent: 12 - - uid: 25022 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,67.5 - parent: 12 - - uid: 25024 - components: - - type: Transform - pos: -18.5,49.5 - parent: 12 - - uid: 25039 - components: - - type: Transform - pos: 46.5,64.5 - parent: 12 - - uid: 25040 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,65.5 - parent: 12 - - uid: 25041 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,65.5 - parent: 12 -- proto: ComfyChair - entities: - - uid: 887 - components: - - type: Transform - pos: -22.5,-33.5 - parent: 12 - - uid: 2526 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-36.5 - parent: 12 - - uid: 2527 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-35.5 - parent: 12 - - uid: 3796 - components: - - type: Transform - pos: -20.5,-59.5 - parent: 12 - - uid: 3797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-56.5 - parent: 12 - - uid: 3798 - components: - - 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 - pos: 50.5,20.5 - parent: 12 - - uid: 12627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,37.5 - parent: 12 - - uid: 13619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,30.5 - parent: 12 - - uid: 13723 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,26.5 - parent: 12 - - uid: 13724 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,30.5 - parent: 12 - - uid: 17595 - components: - - type: Transform - pos: -53.5,30.5 - parent: 12 - - uid: 17596 - components: - - type: Transform - pos: -52.5,30.5 - parent: 12 - - uid: 17597 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,27.5 - parent: 12 - - uid: 17598 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,27.5 - parent: 12 - - uid: 18881 - components: - - type: Transform - pos: -43.5,22.5 - parent: 12 - - uid: 20824 - components: - - type: Transform - pos: -42.5,33.5 - parent: 12 - - uid: 21279 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,46.5 - parent: 12 - - uid: 21454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,30.5 - parent: 12 - - uid: 22361 - components: - - type: Transform - pos: -13.5,51.5 - parent: 12 - - uid: 22362 - components: - - type: Transform - pos: -12.5,51.5 - parent: 12 - - uid: 22363 - components: - - type: Transform - pos: -16.5,51.5 - parent: 12 - - uid: 24145 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,44.5 - parent: 12 - - uid: 24146 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,43.5 - parent: 12 - - uid: 24149 - components: - - type: Transform - pos: 52.5,58.5 - parent: 12 - - uid: 24150 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,56.5 - parent: 12 - - uid: 24174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,43.5 - parent: 12 - - uid: 25533 - components: - - type: Transform - pos: 17.5,50.5 - parent: 12 - - uid: 26555 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,48.5 - parent: 12 - - uid: 31263 - components: - - type: Transform - pos: -2.5,-66.5 - parent: 12 - - uid: 31690 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-28.5 - parent: 12 - - uid: 31793 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,27.5 - parent: 12 - - uid: 31795 - components: - - type: Transform - pos: -51.5,30.5 - parent: 12 -- proto: CommandmentCircuitBoard - entities: - - uid: 28530 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -3.5673757,-15.712456 - parent: 12 - - uid: 28856 - components: - - type: Transform - pos: -0.5296287,-15.396446 - parent: 12 -- proto: CommsComputerCircuitboard - entities: - - uid: 31351 - components: - - type: Transform - pos: 36.43559,-39.44592 - parent: 12 -- proto: ComputerAlert - entities: - - uid: 3911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,30.5 - parent: 12 - - uid: 3967 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-20.5 - parent: 12 - - uid: 4785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-15.5 - parent: 12 - - uid: 29966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-13.5 - parent: 12 -- proto: ComputerAnalysisConsole - entities: - - uid: 4892 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-22.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 1697: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - - uid: 9171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-26.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 1696: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver -- proto: ComputerAtmosMonitoring - entities: - - uid: 28972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-20.5 - parent: 12 - - uid: 29967 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-13.5 - parent: 12 -- proto: computerBodyScanner - entities: - - uid: 10977 - components: - - type: Transform - pos: -20.5,-27.5 - parent: 12 -- proto: ComputerBroken - entities: - - uid: 2305 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,20.5 - parent: 12 - - uid: 3691 - components: - - type: Transform - pos: -4.5,22.5 - parent: 12 - - uid: 12230 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,20.5 - parent: 12 - - uid: 13501 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,22.5 - parent: 12 - - uid: 22307 - components: - - type: Transform - pos: 36.5,8.5 - parent: 12 - - uid: 26004 - components: - - type: Transform - pos: 36.5,-37.5 - parent: 12 - - uid: 30993 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-48.5 - parent: 12 -- proto: ComputerCargoBounty - entities: - - uid: 437 - components: - - type: Transform - pos: 56.5,-18.5 - parent: 12 - - uid: 8469 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-22.5 - parent: 12 -- proto: ComputerCargoOrders - entities: - - uid: 3621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,26.5 - parent: 12 - - uid: 8466 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-22.5 - parent: 12 - - uid: 27089 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-10.5 - parent: 12 - - uid: 29136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-18.5 - parent: 12 -- proto: ComputerComms - entities: - - uid: 17418 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,22.5 - parent: 12 - - uid: 31794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,28.5 - parent: 12 -- proto: ComputerCrewMonitoring - entities: - - uid: 893 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-47.5 - parent: 12 - - uid: 2586 - components: - - type: Transform - pos: -12.5,-37.5 - parent: 12 - - uid: 17580 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,30.5 - parent: 12 - - uid: 19219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,23.5 - parent: 12 - - uid: 22047 - components: - - type: Transform - pos: -40.5,56.5 - parent: 12 -- proto: ComputerCriminalRecords - entities: - - uid: 3729 - components: - - type: Transform - pos: -56.5,33.5 - parent: 12 - - uid: 7260 - components: - - type: Transform - pos: -39.5,56.5 - parent: 12 - - uid: 8720 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-31.5 - parent: 12 - - uid: 13629 - components: - - type: Transform - pos: 31.5,33.5 - parent: 12 - - uid: 16642 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,55.5 - parent: 12 - - uid: 20821 - components: - - type: Transform - pos: -43.5,36.5 - parent: 12 - - uid: 20827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,42.5 - parent: 12 - - uid: 21612 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,38.5 - parent: 12 - - uid: 23581 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,56.5 - parent: 12 -- proto: ComputerFrame - entities: - - uid: 4088 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-53.5 - parent: 12 - - uid: 5381 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-53.5 - parent: 12 - - type: Construction - containers: - - board - node: monitorUnsecured - - type: ContainerContainer - containers: - board: !type:Container - ents: [] -- proto: ComputerId - entities: - - uid: 2995 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,29.5 - parent: 12 - - uid: 18659 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,23.5 - parent: 12 -- proto: ComputerMassMedia - entities: - - uid: 15796 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,35.5 - parent: 12 -- proto: ComputerMedicalRecords - entities: - - uid: 1009 - components: - - type: Transform - pos: -22.5,-37.5 - parent: 12 - - uid: 2587 - components: - - type: Transform - pos: -11.5,-37.5 - parent: 12 - - uid: 9682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-61.5 - parent: 12 - - uid: 16834 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,39.5 - parent: 12 -- proto: ComputerPowerMonitoring - entities: - - uid: 526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-5.5 - parent: 12 - - uid: 3912 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,27.5 - parent: 12 - - uid: 5474 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-21.5 - parent: 12 - - uid: 5889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-4.5 - parent: 12 - - uid: 6325 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,20.5 - parent: 12 - - uid: 6685 - components: - - type: Transform - pos: 35.5,-37.5 - parent: 12 - - uid: 16308 - components: - - 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 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-34.5 - parent: 12 - - uid: 3915 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,27.5 - parent: 12 - - uid: 8866 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-31.5 - parent: 12 - - uid: 10370 - components: - - type: Transform - pos: -22.5,-2.5 - parent: 12 - - uid: 18309 - components: - - type: Transform - 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 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-19.5 - parent: 12 - - uid: 1701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-23.5 - parent: 12 - - uid: 1702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-23.5 - parent: 12 - - uid: 1704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-36.5 - parent: 12 - - uid: 2300 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-18.5 - parent: 12 - - uid: 9431 - components: - - type: Transform - pos: -32.5,-18.5 - parent: 12 - - uid: 31796 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,27.5 - parent: 12 -- proto: ComputerRoboticsControl - entities: - - uid: 12683 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-28.5 - parent: 12 -- proto: ComputerSalvageExpedition - entities: - - uid: 7282 - components: - - type: Transform - pos: 78.5,-27.5 - parent: 12 -- proto: ComputerShuttleCargo - entities: - - uid: 8464 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-10.5 - parent: 12 -- proto: ComputerSolarControl - entities: - - uid: 9217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-44.5 - parent: 12 - - uid: 9221 - components: - - type: Transform - pos: 37.5,-37.5 - parent: 12 - - uid: 14297 - components: - - type: Transform - pos: 34.5,67.5 - parent: 12 - - uid: 18157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,47.5 - parent: 12 - - uid: 26073 - components: - - type: Transform - 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 - rot: 1.5707963267948966 rad - pos: 8.5,-15.5 - parent: 12 -- proto: ComputerStationRecords - entities: - - uid: 998 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,31.5 - parent: 12 - - uid: 2279 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,51.5 - parent: 12 - - uid: 13630 - components: - - type: Transform - pos: 29.5,33.5 - parent: 12 - - uid: 18660 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,21.5 - parent: 12 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 1116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,38.5 - parent: 12 - - uid: 5803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,36.5 - parent: 12 - - uid: 11470 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,55.5 - parent: 12 - - uid: 20822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,35.5 - parent: 12 - - uid: 20826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,34.5 - parent: 12 - - uid: 23576 - components: - - 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 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,37.5 - parent: 12 -- proto: ComputerTechnologyDiskTerminal - entities: - - uid: 1707 - components: - - type: Transform - pos: -40.5,-37.5 - parent: 12 -- proto: ComputerTelevision - entities: - - uid: 2006 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-12.5 - parent: 12 - - uid: 4031 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-36.5 - parent: 12 - - uid: 4032 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-30.5 - parent: 12 - - uid: 6888 - components: - - type: Transform - pos: 27.5,-36.5 - parent: 12 - - uid: 12270 - components: - - type: Transform - pos: 43.5,17.5 - parent: 12 - - uid: 13608 - components: - - type: Transform - pos: 29.5,27.5 - parent: 12 - - uid: 15805 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,36.5 - parent: 12 - - uid: 16517 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,6.5 - parent: 12 - - uid: 20818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,32.5 - parent: 12 - - uid: 20819 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,47.5 - parent: 12 - - uid: 21379 - components: - - type: Transform - pos: -29.5,56.5 - parent: 12 - - uid: 24283 - components: - - 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 - pos: -19.5,-0.5 - parent: 12 -- proto: ContainmentFieldGeneratorFlatpack - entities: - - uid: 2920 - components: - - type: Transform - parent: 2918 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 2923 - components: - - type: Transform - parent: 2918 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 2929 - components: - - type: Transform - parent: 2918 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ConveyorBelt - entities: - - uid: 2489 - components: - - type: Transform - pos: 35.5,20.5 - parent: 12 - - uid: 6186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-37.5 - parent: 12 - - uid: 7502 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-37.5 - parent: 12 - - uid: 7574 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-13.5 - parent: 12 - - uid: 7723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-13.5 - parent: 12 - - uid: 7725 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-12.5 - parent: 12 - - uid: 7726 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-13.5 - parent: 12 - - uid: 7736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-13.5 - parent: 12 - - uid: 7737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-13.5 - parent: 12 - - uid: 7738 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-13.5 - parent: 12 - - uid: 7740 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-12.5 - parent: 12 - - uid: 7741 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-12.5 - parent: 12 - - uid: 7742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-12.5 - parent: 12 - - uid: 7743 - components: - - type: Transform - pos: 60.5,-12.5 - parent: 12 - - uid: 7744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-13.5 - parent: 12 - - uid: 7748 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-15.5 - parent: 12 - - uid: 7749 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-15.5 - parent: 12 - - uid: 7750 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-15.5 - parent: 12 - - uid: 7751 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-15.5 - parent: 12 - - uid: 7752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-15.5 - parent: 12 - - uid: 7753 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-15.5 - parent: 12 - - uid: 7754 - components: - - type: Transform - pos: 60.5,-15.5 - parent: 12 - - uid: 7755 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-16.5 - parent: 12 - - uid: 7756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-16.5 - parent: 12 - - uid: 7757 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-16.5 - parent: 12 - - uid: 7758 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-16.5 - parent: 12 - - uid: 7759 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-16.5 - parent: 12 - - uid: 7812 - components: - - type: Transform - pos: 47.5,-20.5 - parent: 12 - - uid: 7813 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-20.5 - parent: 12 - - uid: 7814 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-22.5 - parent: 12 - - uid: 7815 - components: - - type: Transform - pos: 47.5,-22.5 - parent: 12 - - uid: 7955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-37.5 - parent: 12 - - uid: 7989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-37.5 - parent: 12 - - uid: 8001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-37.5 - parent: 12 - - uid: 8002 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-37.5 - parent: 12 - - uid: 8003 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-37.5 - parent: 12 - - uid: 8004 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-37.5 - parent: 12 - - uid: 8005 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-37.5 - parent: 12 - - uid: 8006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-37.5 - parent: 12 - - uid: 8007 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-37.5 - parent: 12 - - uid: 8008 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-37.5 - parent: 12 - - uid: 8009 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-37.5 - parent: 12 - - uid: 8010 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-37.5 - parent: 12 - - uid: 8011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-37.5 - parent: 12 - - uid: 8012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-37.5 - parent: 12 - - uid: 8013 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-37.5 - parent: 12 - - uid: 8014 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-37.5 - parent: 12 - - uid: 9556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,14.5 - parent: 12 - - uid: 11497 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,16.5 - parent: 12 - - uid: 11499 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,14.5 - parent: 12 - - uid: 11507 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,14.5 - parent: 12 - - uid: 11518 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,14.5 - parent: 12 - - uid: 11519 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,14.5 - parent: 12 - - uid: 11528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,14.5 - parent: 12 - - uid: 11529 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,14.5 - parent: 12 - - uid: 11531 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,14.5 - parent: 12 - - uid: 11532 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,14.5 - parent: 12 - - uid: 11533 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,14.5 - parent: 12 - - uid: 11534 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,14.5 - parent: 12 - - uid: 11958 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,14.5 - parent: 12 - - uid: 11959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,16.5 - parent: 12 - - uid: 11960 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,15.5 - parent: 12 - - uid: 11972 - components: - - type: Transform - pos: 35.5,19.5 - parent: 12 - - uid: 11973 - components: - - type: Transform - pos: 35.5,18.5 - parent: 12 - - uid: 11974 - components: - - type: Transform - pos: 35.5,17.5 - parent: 12 - - uid: 11975 - components: - - type: Transform - pos: 35.5,16.5 - parent: 12 - - uid: 11976 - components: - - type: Transform - pos: 35.5,15.5 - parent: 12 - - uid: 11977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,14.5 - parent: 12 - - uid: 12079 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,17.5 - parent: 12 - - uid: 12081 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,17.5 - parent: 12 - - uid: 12082 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,17.5 - parent: 12 - - uid: 12083 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,17.5 - parent: 12 - - uid: 12123 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,14.5 - parent: 12 - - uid: 12199 - components: - - type: Transform - pos: 47.5,-21.5 - parent: 12 - - uid: 12227 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-21.5 - parent: 12 - - uid: 12290 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,6.5 - parent: 12 - - uid: 12610 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,40.5 - parent: 12 - - uid: 12611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,40.5 - parent: 12 - - uid: 12612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,40.5 - parent: 12 - - uid: 12613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,40.5 - parent: 12 - - uid: 12632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,6.5 - parent: 12 - - uid: 12633 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,6.5 - parent: 12 - - uid: 22295 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,6.5 - parent: 12 - - uid: 22312 - components: - - type: Transform - 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 - components: - - type: Transform - parent: 6162 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6164 - components: - - type: Transform - parent: 6162 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6165 - components: - - type: Transform - parent: 6162 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6166 - components: - - type: Transform - parent: 6162 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6200 - components: - - type: Transform - parent: 6162 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6201 - components: - - type: Transform - parent: 6162 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CorporateCircuitBoard - entities: - - uid: 28851 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -4.5230923,-11.528757 - parent: 12 -- proto: CrateAirlockKit - entities: - - uid: 1042 - components: - - type: Transform - pos: -44.5,-16.5 - parent: 12 - - uid: 9268 - components: - - type: Transform - pos: 37.5,-19.5 - parent: 12 -- proto: CrateArtifactContainer - entities: - - uid: 2007 - components: - - type: Transform - pos: -48.5,-32.5 - parent: 12 - - type: Lock - locked: False - - uid: 2008 - components: - - type: Transform - pos: -48.5,-31.5 - parent: 12 - - type: Lock - locked: False - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.147 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 22064 - components: - - type: Transform - pos: 47.5,60.5 - parent: 12 -- proto: CrateBaseSecure - entities: - - uid: 6770 - components: - - type: Transform - pos: 77.5,-27.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 -- proto: CrateChemistrySupplies - entities: - - uid: 3512 - components: - - type: Transform - pos: -25.5,-48.5 - parent: 12 -- proto: CrateCoffin - entities: - - uid: 12738 - components: - - type: Transform - pos: 47.5,27.5 - parent: 12 - - uid: 13094 - components: - - type: Transform - pos: 49.5,26.5 - parent: 12 - - uid: 13125 - components: - - type: Transform - pos: 48.5,27.5 - parent: 12 - - uid: 13203 - components: - - type: Transform - pos: 47.5,26.5 - parent: 12 - - uid: 13275 - components: - - type: Transform - pos: 48.5,26.5 - parent: 12 -- proto: CrateContrabandStorageSecure - entities: - - uid: 19457 - components: - - type: Transform - pos: -35.5,68.5 - parent: 12 -- proto: CrateEmergencyExplosive - entities: - - uid: 18274 - components: - - type: Transform - pos: -45.5,52.5 - parent: 12 -- proto: CrateEmergencyInternalsLarge - entities: - - uid: 16461 - components: - - type: Transform - pos: -8.5,13.5 - parent: 12 -- proto: CrateEmptySpawner - entities: - - uid: 436 - components: - - type: Transform - pos: 56.5,-15.5 - parent: 12 - - uid: 2036 - components: - - type: Transform - pos: -12.5,-21.5 - parent: 12 - - uid: 16693 - components: - - type: Transform - pos: 62.5,-20.5 - parent: 12 - - uid: 26169 - components: - - type: Transform - pos: 60.5,-21.5 - parent: 12 -- proto: CrateEngineering - entities: - - uid: 6162 - components: - - type: MetaData - desc: A large crate containing 6 conveyor belts. - name: conveyor belt crate - - type: Transform - pos: 62.5,-21.5 - parent: 12 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6201 - - 6200 - - 6166 - - 6165 - - 6164 - - 6163 - - 4914 - - 4916 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateEngineeringAMEJar - entities: - - uid: 773 - components: - - type: Transform - pos: 40.5,4.5 - parent: 12 -- proto: CrateEngineeringAMEShielding - entities: - - uid: 26873 - components: - - type: Transform - pos: 38.5,4.5 - parent: 12 - - uid: 31866 - components: - - type: Transform - pos: 39.5,4.5 - parent: 12 -- proto: CrateEngineeringElectricalSupplies - entities: - - uid: 5505 - components: - - type: Transform - pos: 8.5,-18.5 - parent: 12 -- proto: CrateEngineeringShuttle - entities: - - uid: 10889 - components: - - type: Transform - pos: -24.5,-9.5 - parent: 12 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 10892 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateEngineeringSingularityContainment - entities: - - uid: 2918 - components: - - type: Transform - pos: 58.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: - - 2920 - - 2923 - - 2929 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateEngineeringSingularityEmitter - entities: - - uid: 5883 - components: - - type: Transform - pos: 57.5,12.5 - parent: 12 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8977377 - - 7.139109 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6299 - - 6298 - - 5888 - - 4851 - - 4887 - - 5885 - - 5886 - 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 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 24225 - - 24224 - - 24223 - - 24218 - - 24193 - 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.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 25195 - - 25104 - - 25101 - - 25038 - - 25027 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateEngineeringToolbox - entities: - - uid: 9254 - components: - - type: Transform - pos: 14.5,-19.5 - parent: 12 -- proto: CrateFilledSpawner - entities: - - uid: 8304 - components: - - type: Transform - pos: 37.5,-21.5 - parent: 12 - - uid: 8858 - components: - - type: Transform - pos: 63.5,-21.5 - parent: 12 - - uid: 8934 - components: - - type: Transform - pos: 47.5,-22.5 - parent: 12 - - uid: 24483 - components: - - type: Transform - pos: 29.5,65.5 - parent: 12 - - uid: 24484 - components: - - type: Transform - pos: 28.5,68.5 - parent: 12 - - uid: 26168 - components: - - type: Transform - pos: 63.5,-20.5 - parent: 12 - - uid: 30403 - components: - - type: Transform - pos: 60.5,-20.5 - parent: 12 - - uid: 30435 - components: - - type: Transform - pos: 40.5,-19.5 - parent: 12 -- proto: CrateFoodDinnerware - entities: - - uid: 9269 - components: - - type: Transform - pos: 37.5,-17.5 - parent: 12 -- proto: CrateFreezer - entities: - - uid: 1844 - components: - - type: Transform - pos: -45.5,-49.5 - parent: 12 - - uid: 3473 - components: - - type: Transform - pos: -3.5,-32.5 - parent: 12 - - uid: 8955 - components: - - type: Transform - pos: 4.5,-38.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 - - uid: 11064 - components: - - type: Transform - pos: -20.5,-30.5 - parent: 12 - - uid: 15403 - components: - - type: Transform - pos: 42.5,52.5 - parent: 12 - - uid: 15443 - components: - - type: Transform - pos: 38.5,47.5 - parent: 12 - - uid: 24273 - components: - - type: Transform - pos: -11.5,66.5 - parent: 12 - - uid: 30500 - components: - - type: Transform - pos: -5.5,-37.5 - parent: 12 -- proto: CrateFunArtSupplies - entities: - - uid: 2037 - components: - - type: Transform - pos: -10.5,-24.5 - parent: 12 -- proto: CrateFunLizardPlushieBulk - entities: - - uid: 2038 - components: - - type: Transform - pos: -6.5,-22.5 - parent: 12 -- proto: CrateGenericSteel - entities: - - uid: 12249 - components: - - type: Transform - pos: 48.5,21.5 - parent: 12 - - uid: 22380 - components: - - type: Transform - pos: -13.5,53.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: - - 22381 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 22382 - components: - - type: Transform - pos: -16.5,56.5 - parent: 12 - - uid: 24157 - components: - - type: Transform - pos: 57.5,47.5 - parent: 12 - - uid: 25009 - components: - - type: Transform - pos: 6.5,65.5 - parent: 12 - - uid: 25010 - components: - - type: Transform - pos: 4.5,66.5 - parent: 12 -- proto: CrateHydroponicsSeeds - entities: - - uid: 24019 - components: - - type: Transform - pos: 64.5,47.5 - parent: 12 -- proto: CrateHydroponicsTools - entities: - - uid: 24018 - components: - - type: Transform - pos: 63.5,47.5 - parent: 12 -- proto: CrateMaterialPlasma - entities: - - uid: 1774 - components: - - type: Transform - pos: -49.5,-37.5 - parent: 12 -- proto: CrateMedicalSurgery - entities: - - uid: 1837 - components: - - type: Transform - pos: -45.5,-46.5 - parent: 12 - - uid: 30505 - components: - - type: Transform - pos: 0.5,-32.5 - parent: 12 -- proto: CrateMousetrapBoxes - entities: - - uid: 9620 - components: - - type: Transform - pos: -12.5,-22.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 -- proto: CrateNPCChicken - entities: - - uid: 23512 - components: - - type: Transform - pos: 61.5,58.5 - parent: 12 -- proto: CrateNPCHamlet - entities: - - uid: 27274 - components: - - type: Transform - pos: -56.5,24.5 - parent: 12 -- proto: CrateSecure - entities: - - uid: 13231 - components: - - type: Transform - pos: 49.5,27.5 - parent: 12 - - uid: 21736 - components: - - type: Transform - pos: -4.5,63.5 - parent: 12 - - uid: 21746 - components: - - type: Transform - pos: -4.5,65.5 - parent: 12 - - uid: 21747 - components: - - type: Transform - pos: -16.5,65.5 - parent: 12 - - uid: 21748 - components: - - type: Transform - pos: -14.5,59.5 - parent: 12 -- proto: CrateSecurityTrackingMindshieldImplants - entities: - - uid: 16641 - components: - - type: Transform - pos: -32.5,68.5 - parent: 12 -- proto: CrateServiceBureaucracy - entities: - - uid: 16696 - components: - - type: Transform - pos: -20.5,4.5 - parent: 12 -- proto: CrateServiceCustomSmokable - entities: - - uid: 24093 - components: - - type: Transform - pos: 65.5,47.5 - parent: 12 -- proto: CrateServiceGuidebooks - entities: - - uid: 9765 - components: - - type: Transform - pos: -8.5,-23.5 - parent: 12 -- proto: CrateServiceJanitorialSupplies - entities: - - uid: 4115 - components: - - type: Transform - pos: 6.5,-52.5 - parent: 12 - - uid: 28423 - components: - - type: Transform - pos: 46.5,20.5 - parent: 12 -- proto: CrateStoneGrave - entities: - - uid: 1987 - components: - - type: Transform - pos: -0.5,31.5 - parent: 12 -- proto: CrateTrainingBombs - entities: - - uid: 25440 - components: - - type: Transform - pos: -29.5,62.5 - parent: 12 -- proto: CrateTrashCart - entities: - - uid: 8935 - components: - - type: Transform - pos: 46.5,-24.5 - parent: 12 - - uid: 21335 - components: - - type: Transform - pos: -36.5,34.5 - parent: 12 - - uid: 24129 - components: - - type: Transform - pos: 64.5,42.5 - parent: 12 -- proto: CrateTrashCartFilled - entities: - - uid: 4161 - components: - - type: Transform - pos: 8.5,-48.5 - parent: 12 - - uid: 8936 - components: - - type: Transform - pos: 47.5,-24.5 - parent: 12 - - uid: 13526 - components: - - type: Transform - pos: 41.5,23.5 - parent: 12 -- proto: CrateTrashCartJani - entities: - - uid: 13525 - components: - - type: Transform - pos: 41.5,22.5 - parent: 12 -- proto: CrateVendingMachineRestockDiscountDansFilled - entities: - - uid: 8978 - components: - - type: Transform - pos: 40.5,-24.5 - parent: 12 -- proto: CrateWoodenGrave - entities: - - uid: 112 - components: - - type: Transform - pos: -2.5,30.5 - parent: 12 - - uid: 16653 - components: - - type: Transform - pos: 0.5,25.5 - parent: 12 -- proto: CrayonBlue - entities: - - uid: 30224 - components: - - type: Transform - pos: -6.2595277,64.728455 - parent: 12 -- proto: CrayonBox - entities: - - uid: 21372 - components: - - type: Transform - pos: -25.672194,43.487648 - parent: 12 -- proto: CrayonGreen - entities: - - uid: 30215 - components: - - type: Transform - pos: -12.172833,61.71595 - parent: 12 -- proto: CrayonRainbow - entities: - - uid: 29985 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -0.6350524,17.341604 - parent: 12 -- proto: Crematorium - entities: - - uid: 12393 - components: - - type: Transform - pos: 39.5,31.5 - parent: 12 -- proto: CrewMonitoringServer - entities: - - uid: 26979 - components: - - type: Transform - pos: -41.5,-20.5 - parent: 12 - - type: SingletonDeviceNetServer - active: False - available: False -- proto: Crowbar - entities: - - uid: 9248 - components: - - type: Transform - pos: 8.644007,-23.64231 - parent: 12 - - uid: 12983 - components: - - type: Transform - pos: 34.46234,28.534636 - parent: 12 - - uid: 17619 - components: - - type: Transform - pos: -52.634552,29.55966 - parent: 12 - - uid: 21515 - components: - - 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 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,50.5 - parent: 12 - - uid: 28862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,38.5 - parent: 12 -- proto: CryogenicSleepUnitSpawnerLateJoin - entities: - - uid: 17625 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,51.5 - parent: 12 - - uid: 21642 - components: - - type: Transform - pos: -6.5,51.5 - parent: 12 - - uid: 21643 - components: - - type: Transform - pos: -6.5,50.5 - parent: 12 - - uid: 21644 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,50.5 - parent: 12 -- proto: CryoPod - entities: - - uid: 2798 - components: - - type: Transform - pos: -13.5,-54.5 - parent: 12 - - uid: 2799 - components: - - type: Transform - pos: -11.5,-54.5 - parent: 12 -- proto: CryoxadoneBeakerSmall - entities: - - uid: 2801 - components: - - type: Transform - pos: -13.211769,-56.53523 - parent: 12 - - uid: 9295 - components: - - type: Transform - pos: -13.196144,-56.206875 - parent: 12 -- proto: CurtainsBlackOpen - entities: - - uid: 8481 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,30.5 - parent: 12 -- proto: CurtainsBlueOpen - entities: - - uid: 21983 - components: - - type: Transform - pos: -53.5,19.5 - parent: 12 - - uid: 21984 - components: - - type: Transform - pos: -9.5,-38.5 - parent: 12 - - uid: 22369 - components: - - type: Transform - pos: -5.5,60.5 - parent: 12 -- proto: CurtainsGreenOpen - entities: - - uid: 21982 - components: - - type: Transform - pos: -41.5,24.5 - parent: 12 - - uid: 30186 - components: - - type: Transform - pos: -13.5,62.5 - parent: 12 -- proto: CurtainsOrangeOpen - entities: - - uid: 21963 - components: - - type: Transform - pos: 46.5,-8.5 - parent: 12 -- proto: CurtainsPinkOpen - entities: - - uid: 22896 - components: - - type: Transform - pos: 5.5,55.5 - parent: 12 -- proto: CurtainsPurpleOpen - entities: - - uid: 21985 - components: - - type: Transform - pos: -37.5,-19.5 - parent: 12 -- proto: CurtainsRedOpen - entities: - - uid: 8335 - components: - - type: Transform - pos: -22.5,3.5 - parent: 12 - - uid: 16701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,3.5 - parent: 12 - - uid: 16703 - components: - - type: Transform - pos: -20.5,3.5 - parent: 12 - - uid: 22052 - components: - - type: Transform - pos: -44.5,33.5 - parent: 12 -- proto: CurtainsWhiteOpen - entities: - - uid: 21980 - components: - - type: Transform - pos: 27.5,-22.5 - parent: 12 - - uid: 22895 - components: - - type: Transform - pos: 3.5,55.5 - parent: 12 -- proto: d6Dice - entities: - - uid: 929 - components: - - type: Transform - pos: 36.674004,-46.37224 - parent: 12 - - uid: 22659 - components: - - type: Transform - pos: 11.531604,56.649582 - parent: 12 - - uid: 22660 - components: - - type: Transform - pos: 12.561508,56.900627 - parent: 12 - - uid: 22661 - components: - - type: Transform - pos: 10.288468,57.72908 - parent: 12 - - uid: 22662 - components: - - type: Transform - pos: 10.81598,57.67887 - parent: 12 -- proto: DartBlue - entities: - - uid: 15011 - components: - - type: Transform - pos: 21.74457,48.622555 - parent: 12 - - uid: 15012 - components: - - type: Transform - pos: 21.609154,48.560055 - parent: 12 -- proto: DartPurple - entities: - - uid: 15013 - components: - - type: Transform - pos: 21.359154,48.42464 - parent: 12 - - uid: 15014 - components: - - type: Transform - pos: 21.52582,48.445473 - parent: 12 -- proto: DartYellow - entities: - - uid: 15009 - components: - - type: Transform - pos: 21.43207,48.757973 - parent: 12 - - uid: 15010 - components: - - type: Transform - pos: 21.296654,48.664223 - parent: 12 -- proto: DefaultStationBeacon - entities: - - uid: 10337 - components: - - type: Transform - pos: 48.5,3.5 - parent: 12 - - type: NavMapBeacon - text: Station anchor - - type: WarpPoint - location: Station anchor - - uid: 21606 - components: - - type: Transform - pos: -34.5,-9.5 - parent: 12 - - type: NavMapBeacon - text: Ship constuction bay - - type: WarpPoint - location: Ship constuction bay - - uid: 24250 - components: - - type: Transform - pos: 13.5,49.5 - parent: 12 - - type: NavMapBeacon - text: Boxing ring - - type: WarpPoint - location: Boxing ring - - uid: 24251 - components: - - type: Transform - pos: 12.5,37.5 - parent: 12 - - type: NavMapBeacon - text: Reporter's office - - type: WarpPoint - location: Reporter's office - - uid: 24252 - components: - - type: Transform - pos: 5.5,38.5 - parent: 12 - - type: NavMapBeacon - 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 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 12 -- proto: DefaultStationBeaconAICore - entities: - - uid: 24246 - components: - - type: Transform - pos: -0.5,0.5 - parent: 12 -- proto: DefaultStationBeaconAME - entities: - - uid: 1358 - components: - - type: Transform - pos: 39.5,3.5 - parent: 12 -- proto: DefaultStationBeaconAnomalyGenerator - entities: - - uid: 2011 - components: - - type: Transform - pos: -43.5,-36.5 - parent: 12 -- proto: DefaultStationBeaconArmory - entities: - - uid: 20851 - components: - - type: Transform - pos: -35.5,66.5 - parent: 12 -- proto: DefaultStationBeaconArrivals - entities: - - uid: 24257 - components: - - type: Transform - pos: 18.5,66.5 - parent: 12 -- proto: DefaultStationBeaconArtifactLab - entities: - - uid: 1698 - components: - - type: Transform - pos: -46.5,-24.5 - parent: 12 -- proto: DefaultStationBeaconAtmospherics - entities: - - uid: 7235 - components: - - type: Transform - pos: 15.5,-4.5 - parent: 12 -- proto: DefaultStationBeaconBar - entities: - - uid: 22819 - components: - - type: Transform - pos: 24.5,46.5 - parent: 12 -- proto: DefaultStationBeaconBotany - entities: - - uid: 24124 - components: - - type: Transform - pos: 68.5,48.5 - parent: 12 -- proto: DefaultStationBeaconBridge - entities: - - uid: 17623 - components: - - type: Transform - pos: -52.5,29.5 - parent: 12 -- proto: DefaultStationBeaconBrig - entities: - - uid: 29871 - components: - - type: Transform - pos: -43.5,57.5 - parent: 12 -- proto: DefaultStationBeaconCaptainsQuarters - entities: - - uid: 17408 - components: - - type: Transform - pos: -51.5,20.5 - parent: 12 -- proto: DefaultStationBeaconCargoReception - entities: - - uid: 8513 - components: - - type: Transform - pos: 52.5,-26.5 - parent: 12 -- proto: DefaultStationBeaconCERoom - entities: - - uid: 24247 - components: - - type: Transform - pos: 26.5,-21.5 - parent: 12 -- proto: DefaultStationBeaconChapel - entities: - - uid: 23417 - components: - - type: Transform - pos: 53.5,37.5 - parent: 12 -- proto: DefaultStationBeaconChemistry - entities: - - uid: 2012 - components: - - type: Transform - pos: -30.5,-43.5 - parent: 12 -- proto: DefaultStationBeaconCMORoom - entities: - - uid: 3937 - components: - - type: Transform - pos: -10.5,-38.5 - parent: 12 -- proto: DefaultStationBeaconCourtroom - entities: - - uid: 21603 - components: - - type: Transform - pos: -30.5,30.5 - parent: 12 -- proto: DefaultStationBeaconCryonics - entities: - - uid: 3938 - components: - - type: Transform - pos: -11.5,-55.5 - parent: 12 -- proto: DefaultStationBeaconCryosleep - entities: - - uid: 21646 - components: - - type: Transform - pos: -7.5,50.5 - parent: 12 -- proto: DefaultStationBeaconDetectiveRoom - entities: - - uid: 13600 - components: - - type: Transform - pos: 30.5,29.5 - parent: 12 -- proto: DefaultStationBeaconDisposals - entities: - - uid: 12314 - components: - - type: Transform - pos: 39.5,17.5 - parent: 12 -- proto: DefaultStationBeaconDorms - entities: - - uid: 19881 - components: - - type: Transform - pos: -9.5,61.5 - parent: 12 -- proto: DefaultStationBeaconEngineering - entities: - - uid: 24248 - components: - - type: Transform - pos: 22.5,-17.5 - parent: 12 -- proto: DefaultStationBeaconEscapePod - entities: - - uid: 627 - components: - - type: Transform - pos: -55.5,-39.5 - parent: 12 - - uid: 703 - components: - - type: Transform - pos: -10.5,-71.5 - parent: 12 - - uid: 916 - components: - - type: Transform - pos: -18.5,73.5 - parent: 12 - - uid: 7275 - components: - - type: Transform - pos: -32.5,-47.5 - parent: 12 - - uid: 24235 - components: - - type: Transform - pos: 49.5,65.5 - parent: 12 - - uid: 29274 - components: - - type: Transform - pos: -22.5,65.5 - parent: 12 -- proto: DefaultStationBeaconEvac - entities: - - uid: 7264 - components: - - type: Transform - pos: 21.5,-37.5 - parent: 12 - - uid: 25286 - components: - - type: Transform - pos: 13.5,-53.5 - parent: 12 - - uid: 25287 - components: - - type: Transform - pos: 30.5,-53.5 - parent: 12 -- proto: DefaultStationBeaconEVAStorage - entities: - - uid: 16455 - components: - - type: Transform - pos: -10.5,9.5 - parent: 12 -- proto: DefaultStationBeaconGravGen - entities: - - uid: 32070 - components: - - type: Transform - pos: 37.5,-12.5 - parent: 12 -- proto: DefaultStationBeaconHOPOffice - entities: - - uid: 18662 - components: - - type: Transform - pos: -34.5,22.5 - parent: 12 -- proto: DefaultStationBeaconHOSRoom - entities: - - uid: 20815 - components: - - type: Transform - pos: -42.5,34.5 - parent: 12 -- proto: DefaultStationBeaconJanitorsCloset - entities: - - uid: 4116 - components: - - type: Transform - pos: 7.5,-51.5 - parent: 12 - - uid: 12259 - components: - - type: Transform - pos: 45.5,19.5 - parent: 12 -- proto: DefaultStationBeaconKitchen - entities: - - uid: 22839 - components: - - type: Transform - pos: 29.5,57.5 - parent: 12 -- proto: DefaultStationBeaconLawOffice - entities: - - uid: 16688 - components: - - type: Transform - pos: -22.5,0.5 - parent: 12 -- proto: DefaultStationBeaconLibrary - entities: - - uid: 30350 - components: - - type: Transform - pos: -8.5,73.5 - parent: 12 -- proto: DefaultStationBeaconMedical - entities: - - uid: 3939 - components: - - type: Transform - pos: -15.5,-42.5 - parent: 12 -- proto: DefaultStationBeaconMorgue - entities: - - uid: 7582 - components: - - type: Transform - pos: 5.5,-42.5 - parent: 12 -- proto: DefaultStationBeaconPermaBrig - entities: - - uid: 19299 - components: - - type: Transform - pos: -29.5,53.5 - parent: 12 -- proto: DefaultStationBeaconPowerBank - entities: - - uid: 4476 - components: - - type: Transform - pos: 13.5,-15.5 - parent: 12 -- proto: DefaultStationBeaconQMRoom - entities: - - uid: 8434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-8.5 - parent: 12 -- proto: DefaultStationBeaconRDRoom - entities: - - uid: 2013 - components: - - type: Transform - pos: -37.5,-22.5 - parent: 12 -- proto: DefaultStationBeaconRobotics - entities: - - uid: 2016 - components: - - type: Transform - pos: -23.5,-29.5 - parent: 12 -- proto: DefaultStationBeaconSalvage - entities: - - uid: 8514 - components: - - type: Transform - pos: 79.5,-34.5 - parent: 12 - - uid: 8745 - components: - - type: Transform - pos: 58.5,-31.5 - parent: 12 -- proto: DefaultStationBeaconScience - entities: - - uid: 2015 - components: - - type: Transform - pos: -33.5,-30.5 - parent: 12 -- proto: DefaultStationBeaconSecurityCheckpoint - entities: - - uid: 8969 - components: - - type: Transform - pos: 52.5,-33.5 - parent: 12 - - uid: 23573 - components: - - type: Transform - pos: 22.5,58.5 - parent: 12 -- proto: DefaultStationBeaconServerRoom - entities: - - uid: 2014 - components: - - type: Transform - pos: -42.5,-20.5 - parent: 12 -- proto: DefaultStationBeaconService - entities: - - uid: 22890 - components: - - type: Transform - pos: 36.5,53.5 - parent: 12 -- proto: DefaultStationBeaconSingularity - entities: - - uid: 26654 - components: - - type: Transform - pos: 60.5,5.5 - parent: 12 -- proto: DefaultStationBeaconSolars - entities: - - uid: 9216 - components: - - type: Transform - pos: 50.5,-43.5 - parent: 12 - - uid: 14280 - components: - - type: Transform - pos: 34.5,66.5 - parent: 12 - - uid: 24253 - components: - - 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 - pos: -52.5,-47.5 - parent: 12 -- proto: DefaultStationBeaconSupply - entities: - - uid: 8970 - components: - - type: Transform - pos: 51.5,-19.5 - parent: 12 -- proto: DefaultStationBeaconSurgery - entities: - - uid: 11357 - components: - - type: Transform - pos: -0.5,-35.5 - parent: 12 -- proto: DefaultStationBeaconTechVault - entities: - - uid: 6677 - components: - - type: Transform - pos: 40.5,-38.5 - parent: 12 -- proto: DefaultStationBeaconTEG - entities: - - uid: 4013 - components: - - type: Transform - pos: 7.5,15.5 - parent: 12 -- proto: DefaultStationBeaconTelecoms - entities: - - uid: 21869 - components: - - type: Transform - pos: 36.5,-5.5 - parent: 12 -- proto: DefaultStationBeaconToolRoom - entities: - - uid: 24137 - components: - - type: Transform - pos: 45.5,49.5 - parent: 12 - - uid: 24245 - components: - - type: Transform - pos: 31.5,-22.5 - parent: 12 -- proto: DefaultStationBeaconVault - entities: - - uid: 10190 - components: - - type: Transform - pos: -30.5,9.5 - parent: 12 -- proto: DefaultStationBeaconWardensOffice - entities: - - uid: 20823 - components: - - type: Transform - pos: -39.5,53.5 - parent: 12 -- proto: Defibrillator - entities: - - uid: 9125 - components: - - type: Transform - rot: -56.54866776461632 rad - pos: -9.565519,-50.342686 - parent: 12 - - uid: 9654 - components: - - type: Transform - pos: -10.440518,-45.433025 - parent: 12 - - uid: 13827 - components: - - type: Transform - pos: 31.26054,36.780315 - parent: 12 -- proto: DefibrillatorCabinetFilled - entities: - - uid: 2277 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,55.5 - parent: 12 - - uid: 4069 - components: - - type: Transform - pos: -22.5,-48.5 - parent: 12 - - uid: 4070 - components: - - type: Transform - pos: -13.5,-40.5 - parent: 12 - - uid: 4072 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-53.5 - parent: 12 - - uid: 4073 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-59.5 - parent: 12 - - uid: 30626 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-52.5 - parent: 12 - - uid: 30860 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-56.5 - parent: 12 -- proto: DeployableBarrier - entities: - - uid: 21343 - components: - - type: Transform - pos: -31.5,41.5 - parent: 12 - - uid: 21344 - components: - - type: Transform - pos: -30.5,41.5 - parent: 12 -- proto: DeskBell - entities: - - uid: 16520 - components: - - type: Transform - pos: 27.517546,53.33378 - parent: 12 - - uid: 19350 - components: - - type: Transform - pos: -18.443525,-21.50596 - parent: 12 -- proto: DiseaseDiagnoser - entities: - - uid: 2774 - components: - - type: Transform - pos: -13.5,-61.5 - parent: 12 -- proto: DiseaseSwab - entities: - - uid: 21237 - components: - - type: Transform - pos: -28.787512,53.838696 - parent: 12 - - uid: 21238 - components: - - type: Transform - pos: -28.829178,54.088696 - parent: 12 -- proto: DisposalBend - entities: - - uid: 1862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-42.5 - parent: 12 - - uid: 1863 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-34.5 - parent: 12 - - uid: 1910 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-29.5 - parent: 12 - - uid: 1911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-27.5 - parent: 12 - - uid: 1912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-29.5 - parent: 12 - - uid: 1939 - components: - - type: Transform - 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 - pos: 51.5,-5.5 - parent: 12 - - uid: 3620 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,72.5 - parent: 12 - - uid: 3846 - components: - - type: Transform - pos: -10.5,-47.5 - parent: 12 - - uid: 3848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-57.5 - parent: 12 - - uid: 3849 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-54.5 - parent: 12 - - uid: 3850 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-54.5 - parent: 12 - - uid: 3851 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-50.5 - parent: 12 - - uid: 3870 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-42.5 - parent: 12 - - uid: 3887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-43.5 - parent: 12 - - uid: 3888 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-42.5 - parent: 12 - - uid: 3909 - components: - - type: Transform - pos: 0.5,-36.5 - parent: 12 - - uid: 3910 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-36.5 - parent: 12 - - uid: 3924 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-35.5 - parent: 12 - - uid: 3925 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-35.5 - parent: 12 - - uid: 3934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-27.5 - parent: 12 - - uid: 4039 - components: - - type: Transform - pos: 21.5,20.5 - parent: 12 - - uid: 4136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-47.5 - parent: 12 - - uid: 4138 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-52.5 - parent: 12 - - uid: 4297 - components: - - type: Transform - pos: -0.5,-35.5 - parent: 12 - - uid: 4317 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-47.5 - parent: 12 - - uid: 4456 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-51.5 - parent: 12 - - uid: 4661 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 12 - - uid: 4674 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,38.5 - parent: 12 - - uid: 4718 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-47.5 - parent: 12 - - uid: 5173 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-11.5 - parent: 12 - - uid: 5194 - components: - - type: Transform - pos: 43.5,-0.5 - parent: 12 - - uid: 5211 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-46.5 - parent: 12 - - uid: 5396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-17.5 - parent: 12 - - uid: 5603 - components: - - type: Transform - pos: -26.5,-44.5 - parent: 12 - - uid: 6161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-38.5 - parent: 12 - - uid: 6271 - components: - - 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 - rot: -1.5707963267948966 rad - pos: 14.5,-38.5 - parent: 12 - - uid: 6865 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-37.5 - parent: 12 - - uid: 6867 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: -39.5,50.5 - parent: 12 - - uid: 8352 - components: - - type: Transform - pos: 77.5,-32.5 - parent: 12 - - uid: 8353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-35.5 - parent: 12 - - uid: 8419 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-28.5 - parent: 12 - - uid: 8421 - components: - - type: Transform - pos: 56.5,-28.5 - parent: 12 - - uid: 8422 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-40.5 - parent: 12 - - uid: 8474 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-8.5 - parent: 12 - - uid: 8903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-42.5 - parent: 12 - - uid: 8951 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,11.5 - parent: 12 - - uid: 9071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,21.5 - parent: 12 - - uid: 9457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,28.5 - parent: 12 - - uid: 9527 - components: - - type: Transform - pos: 16.5,28.5 - parent: 12 - - uid: 9623 - components: - - type: Transform - pos: 18.5,24.5 - parent: 12 - - uid: 9670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,24.5 - parent: 12 - - uid: 9674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,54.5 - parent: 12 - - uid: 9798 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-22.5 - parent: 12 - - uid: 9799 - components: - - type: Transform - pos: 35.5,-22.5 - parent: 12 - - uid: 9800 - components: - - type: Transform - pos: 30.5,-18.5 - parent: 12 - - uid: 9801 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-18.5 - parent: 12 - - uid: 9802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-16.5 - parent: 12 - - uid: 10414 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-2.5 - parent: 12 - - uid: 10415 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-3.5 - parent: 12 - - uid: 10416 - components: - - type: Transform - pos: -23.5,-3.5 - parent: 12 - - uid: 10417 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-5.5 - parent: 12 - - uid: 10924 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,11.5 - parent: 12 - - uid: 11036 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,10.5 - parent: 12 - - uid: 11037 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,9.5 - parent: 12 - - uid: 11052 - components: - - type: Transform - pos: 22.5,12.5 - parent: 12 - - uid: 11054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,11.5 - parent: 12 - - uid: 11384 - components: - - type: Transform - pos: 31.5,8.5 - parent: 12 - - uid: 11401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-26.5 - parent: 12 - - uid: 11434 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-21.5 - parent: 12 - - uid: 11446 - components: - - type: Transform - pos: 20.5,10.5 - parent: 12 - - uid: 11548 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,45.5 - parent: 12 - - uid: 11790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,53.5 - parent: 12 - - uid: 11792 - components: - - type: Transform - pos: 28.5,56.5 - parent: 12 - - uid: 11937 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,53.5 - parent: 12 - - uid: 11965 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,17.5 - parent: 12 - - uid: 11966 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,17.5 - parent: 12 - - uid: 12006 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,12.5 - parent: 12 - - uid: 12007 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,12.5 - parent: 12 - - uid: 12008 - components: - - type: Transform - pos: 46.5,14.5 - parent: 12 - - uid: 12139 - components: - - type: Transform - pos: 41.5,19.5 - parent: 12 - - uid: 12304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,17.5 - parent: 12 - - uid: 12305 - components: - - type: Transform - pos: 44.5,21.5 - parent: 12 - - uid: 12664 - components: - - type: Transform - pos: 39.5,23.5 - parent: 12 - - uid: 12665 - components: - - type: Transform - pos: 38.5,28.5 - parent: 12 - - uid: 12677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,32.5 - parent: 12 - - uid: 12712 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,38.5 - parent: 12 - - uid: 12919 - components: - - type: Transform - pos: 56.5,-21.5 - parent: 12 - - uid: 13010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,23.5 - parent: 12 - - uid: 13668 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,28.5 - parent: 12 - - uid: 13669 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,29.5 - parent: 12 - - uid: 13670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,28.5 - parent: 12 - - uid: 14936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,41.5 - parent: 12 - - uid: 15046 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,54.5 - parent: 12 - - uid: 15047 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,54.5 - parent: 12 - - uid: 15070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,41.5 - parent: 12 - - uid: 15123 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,52.5 - parent: 12 - - uid: 15124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,50.5 - parent: 12 - - uid: 15125 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,50.5 - parent: 12 - - uid: 15126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,53.5 - parent: 12 - - uid: 15137 - components: - - type: Transform - pos: 42.5,7.5 - parent: 12 - - uid: 15141 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,7.5 - parent: 12 - - uid: 15144 - components: - - type: Transform - pos: 37.5,11.5 - parent: 12 - - uid: 15153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,49.5 - parent: 12 - - uid: 15154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,52.5 - parent: 12 - - uid: 15155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,49.5 - parent: 12 - - uid: 15161 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,42.5 - parent: 12 - - uid: 15175 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-13.5 - parent: 12 - - uid: 15400 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,51.5 - parent: 12 - - uid: 15401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,54.5 - parent: 12 - - uid: 15402 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,55.5 - parent: 12 - - uid: 16755 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,9.5 - parent: 12 - - uid: 17665 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,32.5 - parent: 12 - - uid: 17723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,22.5 - parent: 12 - - uid: 17724 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,22.5 - parent: 12 - - uid: 17730 - components: - - type: Transform - pos: -47.5,32.5 - parent: 12 - - uid: 17731 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,28.5 - parent: 12 - - uid: 18671 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,9.5 - parent: 12 - - uid: 19249 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-42.5 - parent: 12 - - uid: 19251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-38.5 - parent: 12 - - uid: 19545 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,9.5 - parent: 12 - - uid: 19819 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-5.5 - parent: 12 - - uid: 20076 - components: - - type: Transform - pos: -8.5,-12.5 - parent: 12 - - uid: 20077 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-12.5 - parent: 12 - - uid: 20078 - components: - - type: Transform - pos: -9.5,-10.5 - parent: 12 - - uid: 20079 - components: - - type: Transform - pos: -10.5,-8.5 - parent: 12 - - uid: 20220 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,41.5 - parent: 12 - - uid: 20260 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,44.5 - parent: 12 - - uid: 20261 - components: - - type: Transform - pos: 12.5,44.5 - parent: 12 - - uid: 20262 - components: - - type: Transform - pos: 13.5,45.5 - parent: 12 - - uid: 20265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,59.5 - parent: 12 - - uid: 20272 - components: - - type: Transform - pos: -32.5,59.5 - parent: 12 - - uid: 20275 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,53.5 - parent: 12 - - uid: 20277 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,40.5 - parent: 12 - - uid: 20278 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,37.5 - parent: 12 - - uid: 20288 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-10.5 - parent: 12 - - uid: 20289 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-8.5 - parent: 12 - - uid: 20290 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-4.5 - parent: 12 - - uid: 20291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,50.5 - parent: 12 - - uid: 20292 - components: - - type: Transform - pos: -19.5,55.5 - parent: 12 - - uid: 20293 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-2.5 - parent: 12 - - uid: 20314 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 12 - - uid: 20315 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-4.5 - parent: 12 - - uid: 20316 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 12 - - uid: 20435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 12 - - uid: 21324 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,51.5 - parent: 12 - - uid: 22104 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,10.5 - parent: 12 - - uid: 22125 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,8.5 - parent: 12 - - uid: 22441 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,48.5 - parent: 12 - - uid: 22442 - components: - - type: Transform - pos: -5.5,54.5 - parent: 12 - - uid: 22544 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,41.5 - parent: 12 - - uid: 22545 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,42.5 - parent: 12 - - uid: 22724 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,62.5 - parent: 12 - - uid: 22731 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,59.5 - parent: 12 - - uid: 22796 - components: - - type: Transform - pos: 12.5,82.5 - parent: 12 - - uid: 22797 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,82.5 - parent: 12 - - uid: 22798 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,67.5 - parent: 12 - - uid: 22800 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,67.5 - parent: 12 - - uid: 22875 - components: - - type: Transform - pos: 50.5,55.5 - parent: 12 - - uid: 22879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,49.5 - parent: 12 - - uid: 23429 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,42.5 - parent: 12 - - uid: 23434 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,44.5 - parent: 12 - - uid: 23689 - components: - - type: Transform - pos: 45.5,48.5 - parent: 12 - - uid: 23874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,39.5 - parent: 12 - - uid: 23875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,39.5 - parent: 12 - - uid: 23876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,50.5 - parent: 12 - - uid: 24037 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,52.5 - parent: 12 - - uid: 24058 - components: - - type: Transform - pos: 67.5,48.5 - parent: 12 - - uid: 24060 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,48.5 - parent: 12 - - uid: 24061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,47.5 - parent: 12 - - uid: 24063 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,44.5 - parent: 12 - - uid: 25379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-38.5 - parent: 12 - - uid: 25464 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,11.5 - parent: 12 - - uid: 25470 - components: - - type: Transform - pos: 31.5,0.5 - parent: 12 - - uid: 25517 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,45.5 - parent: 12 - - uid: 25521 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-23.5 - parent: 12 - - uid: 25942 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-18.5 - parent: 12 - - uid: 25943 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-18.5 - parent: 12 - - uid: 25947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-23.5 - parent: 12 - - uid: 25990 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-47.5 - parent: 12 - - uid: 26217 - components: - - type: Transform - pos: 48.5,-13.5 - parent: 12 - - uid: 26511 - components: - - type: Transform - pos: 23.5,11.5 - parent: 12 - - uid: 26523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-10.5 - parent: 12 - - uid: 26729 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-1.5 - parent: 12 - - uid: 26791 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,4.5 - parent: 12 - - uid: 26802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,4.5 - parent: 12 - - uid: 26811 - components: - - type: Transform - pos: 30.5,10.5 - parent: 12 - - uid: 26815 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,0.5 - parent: 12 - - uid: 27387 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,6.5 - parent: 12 - - uid: 27604 - components: - - type: Transform - pos: 54.5,8.5 - parent: 12 - - uid: 28039 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-46.5 - parent: 12 - - uid: 28040 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-41.5 - parent: 12 - - uid: 28041 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-41.5 - parent: 12 - - uid: 28042 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-35.5 - parent: 12 - - uid: 28043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-35.5 - parent: 12 - - uid: 28086 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,25.5 - parent: 12 - - uid: 28087 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,25.5 - parent: 12 - - uid: 28114 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,43.5 - parent: 12 - - uid: 28115 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,43.5 - parent: 12 - - uid: 28116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,45.5 - parent: 12 - - uid: 28148 - components: - - type: Transform - pos: 38.5,12.5 - parent: 12 - - uid: 28149 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,8.5 - parent: 12 - - uid: 28150 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,12.5 - parent: 12 - - uid: 29033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,20.5 - parent: 12 - - uid: 29197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,7.5 - parent: 12 - - uid: 29198 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,7.5 - parent: 12 - - uid: 29199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,2.5 - parent: 12 - - uid: 29200 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,2.5 - parent: 12 - - uid: 29201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-20.5 - parent: 12 - - uid: 29202 - components: - - type: Transform - pos: -7.5,-20.5 - parent: 12 - - uid: 29203 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-23.5 - parent: 12 - - uid: 29204 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-23.5 - parent: 12 - - uid: 29205 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,9.5 - parent: 12 - - uid: 29389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-16.5 - parent: 12 - - uid: 29390 - components: - - type: Transform - pos: 30.5,0.5 - parent: 12 - - uid: 31244 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-68.5 - parent: 12 - - uid: 31249 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-68.5 - parent: 12 - - uid: 31252 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-68.5 - parent: 12 - - uid: 31253 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-68.5 - parent: 12 - - uid: 31800 - components: - - type: Transform - pos: -9.5,72.5 - parent: 12 - - uid: 31916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-26.5 - parent: 12 - - uid: 31917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-25.5 - parent: 12 - - uid: 31918 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 12 - - uid: 31946 - components: - - type: Transform - pos: -14.5,2.5 - parent: 12 - - uid: 31947 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,2.5 - parent: 12 - - uid: 32009 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,47.5 - parent: 12 - - uid: 32010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,47.5 - parent: 12 - - uid: 32011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,45.5 - parent: 12 - - uid: 32012 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,45.5 - parent: 12 - - uid: 32013 - components: - - type: Transform - pos: 52.5,46.5 - parent: 12 -- proto: DisposalJunction - entities: - - uid: 1900 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-34.5 - parent: 12 - - uid: 1914 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-27.5 - parent: 12 - - uid: 3840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-47.5 - parent: 12 - - uid: 3868 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-43.5 - parent: 12 - - uid: 3886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-42.5 - parent: 12 - - uid: 4530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-27.5 - parent: 12 - - uid: 5054 - components: - - 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 - rot: 1.5707963267948966 rad - pos: 33.5,23.5 - parent: 12 - - uid: 8392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-28.5 - parent: 12 - - uid: 8425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-35.5 - parent: 12 - - uid: 10925 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,12.5 - parent: 12 - - uid: 10994 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,10.5 - parent: 12 - - uid: 13607 - components: - - type: Transform - pos: 34.5,29.5 - parent: 12 - - uid: 13654 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,28.5 - parent: 12 - - uid: 13947 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,41.5 - parent: 12 - - uid: 15036 - components: - - type: Transform - pos: 18.5,46.5 - parent: 12 - - uid: 15584 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,44.5 - parent: 12 - - uid: 16754 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,9.5 - parent: 12 - - uid: 17688 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,28.5 - parent: 12 - - uid: 20311 - components: - - type: Transform - pos: -35.5,53.5 - parent: 12 - - uid: 21346 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,40.5 - parent: 12 - - uid: 21473 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,28.5 - parent: 12 - - uid: 22444 - components: - - type: Transform - pos: -5.5,53.5 - parent: 12 - - uid: 22749 - components: - - type: Transform - pos: 19.5,62.5 - parent: 12 - - uid: 22805 - components: - - type: Transform - pos: 19.5,64.5 - parent: 12 - - uid: 23688 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,44.5 - parent: 12 - - uid: 24045 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,47.5 - parent: 12 - - uid: 27954 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,41.5 - parent: 12 -- proto: DisposalJunctionFlipped - entities: - - uid: 1882 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-34.5 - parent: 12 - - uid: 1899 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-27.5 - parent: 12 - - uid: 1919 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-24.5 - parent: 12 - - uid: 1938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-24.5 - parent: 12 - - uid: 3839 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-50.5 - parent: 12 - - uid: 3867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-42.5 - parent: 12 - - uid: 3885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-43.5 - parent: 12 - - uid: 3933 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-27.5 - parent: 12 - - uid: 4293 - components: - - type: Transform - pos: -9.5,60.5 - parent: 12 - - uid: 4979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-27.5 - parent: 12 - - uid: 5106 - components: - - type: Transform - 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 - pos: 51.5,61.5 - parent: 12 - - uid: 6866 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-37.5 - parent: 12 - - uid: 8387 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-28.5 - parent: 12 - - uid: 8395 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-28.5 - parent: 12 - - uid: 8426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-37.5 - parent: 12 - - uid: 10447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-5.5 - parent: 12 - - uid: 11610 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,23.5 - parent: 12 - - uid: 12306 - components: - - type: Transform - pos: 39.5,21.5 - parent: 12 - - uid: 12659 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,23.5 - parent: 12 - - uid: 13604 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,29.5 - parent: 12 - - uid: 14910 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,44.5 - parent: 12 - - uid: 15025 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,41.5 - parent: 12 - - uid: 15033 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,41.5 - parent: 12 - - uid: 15109 - components: - - type: Transform - pos: 25.5,45.5 - parent: 12 - - uid: 16389 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,44.5 - parent: 12 - - uid: 16753 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,9.5 - parent: 12 - - uid: 17717 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,28.5 - parent: 12 - - uid: 20155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,40.5 - parent: 12 - - uid: 20271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,40.5 - parent: 12 - - uid: 20769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,40.5 - parent: 12 - - uid: 21327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-32.5 - parent: 12 - - uid: 22415 - components: - - type: Transform - pos: -9.5,48.5 - parent: 12 - - uid: 24062 - components: - - type: Transform - pos: 51.5,47.5 - parent: 12 - - uid: 25999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-41.5 - parent: 12 - - uid: 26519 - components: - - type: Transform - pos: 30.5,-10.5 - parent: 12 -- proto: DisposalMachineFrame - entities: - - uid: 12940 - components: - - type: Transform - pos: 28.5,21.5 - parent: 12 -- proto: DisposalPipe - entities: - - uid: 19 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-14.5 - parent: 12 - - uid: 357 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-21.5 - parent: 12 - - uid: 404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-12.5 - parent: 12 - - uid: 499 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-12.5 - parent: 12 - - uid: 637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-42.5 - parent: 12 - - uid: 789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,19.5 - parent: 12 - - uid: 886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-34.5 - parent: 12 - - uid: 889 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-34.5 - parent: 12 - - uid: 908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,28.5 - parent: 12 - - uid: 910 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,7.5 - parent: 12 - - uid: 1055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,28.5 - parent: 12 - - uid: 1084 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,12.5 - parent: 12 - - uid: 1086 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,19.5 - parent: 12 - - uid: 1864 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-41.5 - parent: 12 - - uid: 1865 - components: - - type: Transform - pos: -38.5,-40.5 - parent: 12 - - uid: 1866 - components: - - type: Transform - pos: -38.5,-38.5 - parent: 12 - - uid: 1867 - components: - - type: Transform - pos: -38.5,-39.5 - parent: 12 - - uid: 1868 - components: - - type: Transform - pos: -38.5,-37.5 - parent: 12 - - uid: 1869 - components: - - type: Transform - pos: -42.5,-38.5 - parent: 12 - - uid: 1870 - components: - - type: Transform - pos: -42.5,-37.5 - parent: 12 - - uid: 1871 - components: - - type: Transform - pos: -42.5,-36.5 - parent: 12 - - uid: 1872 - components: - - type: Transform - pos: -42.5,-35.5 - parent: 12 - - uid: 1873 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-34.5 - parent: 12 - - uid: 1874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-34.5 - parent: 12 - - uid: 1875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-36.5 - parent: 12 - - uid: 1876 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-35.5 - parent: 12 - - uid: 1879 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-37.5 - parent: 12 - - uid: 1881 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-36.5 - parent: 12 - - uid: 1883 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-35.5 - parent: 12 - - uid: 1886 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-34.5 - parent: 12 - - uid: 1887 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-34.5 - parent: 12 - - uid: 1888 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-34.5 - parent: 12 - - uid: 1889 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-34.5 - parent: 12 - - uid: 1890 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-34.5 - parent: 12 - - uid: 1891 - components: - - type: Transform - pos: -30.5,-33.5 - parent: 12 - - uid: 1892 - components: - - type: Transform - pos: -30.5,-32.5 - parent: 12 - - uid: 1893 - components: - - type: Transform - pos: -30.5,-30.5 - parent: 12 - - uid: 1894 - components: - - type: Transform - pos: -30.5,-31.5 - parent: 12 - - uid: 1895 - components: - - type: Transform - pos: -30.5,-29.5 - parent: 12 - - uid: 1896 - components: - - type: Transform - pos: -30.5,-28.5 - parent: 12 - - uid: 1897 - components: - - type: Transform - pos: -30.5,-26.5 - parent: 12 - - uid: 1898 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-27.5 - parent: 12 - - uid: 1901 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-29.5 - parent: 12 - - uid: 1902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-29.5 - parent: 12 - - uid: 1903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-29.5 - parent: 12 - - uid: 1904 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-29.5 - parent: 12 - - uid: 1905 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-29.5 - parent: 12 - - uid: 1906 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-27.5 - parent: 12 - - uid: 1907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-27.5 - parent: 12 - - uid: 1908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-27.5 - parent: 12 - - uid: 1909 - components: - - type: Transform - pos: -36.5,-28.5 - parent: 12 - - uid: 1913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-28.5 - parent: 12 - - uid: 1920 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-24.5 - parent: 12 - - uid: 1921 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-24.5 - parent: 12 - - uid: 1922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-19.5 - parent: 12 - - uid: 1923 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-21.5 - parent: 12 - - uid: 1924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-20.5 - parent: 12 - - uid: 1925 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-22.5 - parent: 12 - - uid: 1926 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-23.5 - parent: 12 - - uid: 1927 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,28.5 - parent: 12 - - uid: 1928 - components: - - type: Transform - pos: -30.5,-25.5 - parent: 12 - - uid: 1929 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-24.5 - parent: 12 - - uid: 1930 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-24.5 - parent: 12 - - uid: 1931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-24.5 - parent: 12 - - uid: 1932 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-24.5 - parent: 12 - - uid: 1933 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-24.5 - parent: 12 - - uid: 1934 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-24.5 - parent: 12 - - uid: 1935 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-24.5 - parent: 12 - - uid: 1936 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-24.5 - parent: 12 - - uid: 1937 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-24.5 - parent: 12 - - uid: 2166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 12 - - uid: 2369 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-10.5 - parent: 12 - - uid: 2538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,45.5 - parent: 12 - - uid: 2876 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,3.5 - parent: 12 - - uid: 3033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-4.5 - parent: 12 - - uid: 3115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,49.5 - parent: 12 - - uid: 3121 - components: - - type: Transform - pos: 10.5,-40.5 - parent: 12 - - uid: 3622 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,10.5 - parent: 12 - - uid: 3825 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-50.5 - parent: 12 - - uid: 3826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-49.5 - parent: 12 - - uid: 3827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-48.5 - parent: 12 - - uid: 3828 - components: - - type: Transform - pos: -16.5,-56.5 - parent: 12 - - uid: 3829 - components: - - type: Transform - pos: -16.5,-55.5 - parent: 12 - - uid: 3830 - components: - - type: Transform - pos: -16.5,-54.5 - parent: 12 - - uid: 3831 - components: - - type: Transform - pos: -16.5,-53.5 - parent: 12 - - uid: 3832 - components: - - type: Transform - pos: -16.5,-52.5 - parent: 12 - - uid: 3833 - components: - - type: Transform - pos: -16.5,-51.5 - parent: 12 - - uid: 3834 - components: - - type: Transform - pos: -16.5,-49.5 - parent: 12 - - uid: 3835 - components: - - type: Transform - pos: -16.5,-48.5 - parent: 12 - - uid: 3836 - components: - - type: Transform - pos: -16.5,-46.5 - parent: 12 - - uid: 3837 - components: - - type: Transform - pos: -16.5,-45.5 - parent: 12 - - uid: 3838 - components: - - type: Transform - pos: -16.5,-44.5 - parent: 12 - - uid: 3841 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-47.5 - parent: 12 - - uid: 3842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-47.5 - parent: 12 - - uid: 3843 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-47.5 - parent: 12 - - uid: 3844 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-47.5 - parent: 12 - - uid: 3845 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-47.5 - parent: 12 - - uid: 3852 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-54.5 - parent: 12 - - uid: 3853 - components: - - type: Transform - pos: -20.5,-53.5 - parent: 12 - - uid: 3854 - components: - - type: Transform - pos: -20.5,-52.5 - parent: 12 - - uid: 3855 - components: - - type: Transform - pos: -20.5,-51.5 - parent: 12 - - uid: 3856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-50.5 - parent: 12 - - uid: 3857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-50.5 - parent: 12 - - uid: 3858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-50.5 - parent: 12 - - uid: 3859 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-46.5 - parent: 12 - - uid: 3860 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-45.5 - parent: 12 - - uid: 3861 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-44.5 - parent: 12 - - uid: 3862 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-43.5 - parent: 12 - - uid: 3863 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-42.5 - parent: 12 - - uid: 3864 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-42.5 - parent: 12 - - uid: 3865 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-42.5 - parent: 12 - - uid: 3866 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-42.5 - parent: 12 - - uid: 3871 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-43.5 - parent: 12 - - uid: 3872 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-43.5 - parent: 12 - - uid: 3873 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-43.5 - parent: 12 - - uid: 3874 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-43.5 - parent: 12 - - uid: 3875 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-43.5 - parent: 12 - - uid: 3876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-43.5 - parent: 12 - - uid: 3877 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-43.5 - parent: 12 - - uid: 3878 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-43.5 - parent: 12 - - uid: 3879 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-43.5 - parent: 12 - - uid: 3880 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-43.5 - parent: 12 - - uid: 3881 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-43.5 - parent: 12 - - uid: 3882 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-43.5 - parent: 12 - - uid: 3883 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-43.5 - parent: 12 - - uid: 3884 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-43.5 - parent: 12 - - uid: 3902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-42.5 - parent: 12 - - uid: 3903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-42.5 - parent: 12 - - uid: 3904 - components: - - type: Transform - pos: 0.5,-41.5 - parent: 12 - - uid: 3905 - components: - - type: Transform - pos: 0.5,-40.5 - parent: 12 - - uid: 3906 - components: - - type: Transform - pos: 0.5,-39.5 - parent: 12 - - uid: 3907 - components: - - type: Transform - pos: 0.5,-38.5 - parent: 12 - - uid: 3908 - components: - - type: Transform - pos: 0.5,-37.5 - parent: 12 - - uid: 3918 - components: - - type: Transform - pos: -16.5,-41.5 - parent: 12 - - uid: 3919 - components: - - type: Transform - pos: -16.5,-40.5 - parent: 12 - - uid: 3920 - components: - - type: Transform - pos: -16.5,-39.5 - parent: 12 - - uid: 3921 - components: - - type: Transform - pos: -16.5,-38.5 - parent: 12 - - uid: 3922 - components: - - type: Transform - pos: -16.5,-37.5 - parent: 12 - - uid: 3923 - components: - - type: Transform - pos: -16.5,-36.5 - parent: 12 - - uid: 3926 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-34.5 - parent: 12 - - uid: 3927 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-33.5 - parent: 12 - - uid: 3929 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-31.5 - parent: 12 - - uid: 3930 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-30.5 - parent: 12 - - uid: 3931 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-29.5 - parent: 12 - - uid: 3932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-28.5 - parent: 12 - - uid: 3935 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-26.5 - parent: 12 - - uid: 3936 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-25.5 - parent: 12 - - uid: 3989 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,49.5 - parent: 12 - - uid: 3990 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,49.5 - parent: 12 - - uid: 3991 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,49.5 - parent: 12 - - uid: 4077 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,28.5 - parent: 12 - - uid: 4133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-51.5 - parent: 12 - - uid: 4134 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-50.5 - parent: 12 - - uid: 4135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-49.5 - parent: 12 - - uid: 4265 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-39.5 - parent: 12 - - uid: 4303 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-23.5 - parent: 12 - - uid: 4398 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,49.5 - parent: 12 - - uid: 4415 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,49.5 - parent: 12 - - uid: 4461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,45.5 - parent: 12 - - uid: 4462 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-41.5 - parent: 12 - - uid: 4532 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,45.5 - parent: 12 - - uid: 4571 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-47.5 - parent: 12 - - uid: 4584 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,45.5 - parent: 12 - - uid: 4585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,45.5 - parent: 12 - - uid: 4681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-10.5 - parent: 12 - - uid: 4684 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-11.5 - parent: 12 - - uid: 4697 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-26.5 - parent: 12 - - uid: 4710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-26.5 - parent: 12 - - uid: 4744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-26.5 - parent: 12 - - uid: 4749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-26.5 - parent: 12 - - uid: 4751 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-26.5 - parent: 12 - - uid: 4752 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-26.5 - parent: 12 - - uid: 4754 - components: - - type: Transform - pos: 16.5,25.5 - parent: 12 - - uid: 4760 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-11.5 - parent: 12 - - uid: 4922 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-27.5 - parent: 12 - - uid: 4923 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-27.5 - parent: 12 - - uid: 4924 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-27.5 - parent: 12 - - uid: 4925 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-27.5 - parent: 12 - - uid: 4926 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-27.5 - parent: 12 - - uid: 4927 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-27.5 - parent: 12 - - uid: 4931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-27.5 - parent: 12 - - uid: 4932 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-27.5 - parent: 12 - - uid: 4964 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-51.5 - parent: 12 - - uid: 5051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-40.5 - parent: 12 - - uid: 5072 - components: - - type: Transform - pos: 20.5,-13.5 - parent: 12 - - uid: 5127 - components: - - type: Transform - 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 - rot: 1.5707963267948966 rad - pos: 33.5,11.5 - parent: 12 - - uid: 5398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-14.5 - parent: 12 - - uid: 5409 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-1.5 - parent: 12 - - uid: 5412 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-15.5 - parent: 12 - - uid: 5514 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,2.5 - parent: 12 - - uid: 5520 - components: - - type: Transform - pos: -26.5,-45.5 - parent: 12 - - uid: 5551 - components: - - type: Transform - pos: 7.5,-48.5 - parent: 12 - - uid: 5604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-44.5 - parent: 12 - - uid: 5682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,11.5 - parent: 12 - - uid: 5800 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,1.5 - parent: 12 - - uid: 5831 - components: - - type: Transform - pos: 37.5,10.5 - parent: 12 - - uid: 5921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-13.5 - parent: 12 - - uid: 5922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-14.5 - parent: 12 - - uid: 5923 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-15.5 - parent: 12 - - uid: 5959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-17.5 - parent: 12 - - uid: 5964 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-20.5 - parent: 12 - - uid: 5965 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-26.5 - parent: 12 - - uid: 5991 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-24.5 - parent: 12 - - uid: 5995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-22.5 - parent: 12 - - uid: 6019 - components: - - type: Transform - pos: 37.5,8.5 - parent: 12 - - uid: 6021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,10.5 - parent: 12 - - uid: 6206 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-51.5 - parent: 12 - - uid: 6263 - components: - - type: Transform - 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 - rot: 1.5707963267948966 rad - pos: 33.5,-1.5 - parent: 12 - - uid: 6767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,7.5 - parent: 12 - - uid: 6843 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-30.5 - parent: 12 - - uid: 6844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-29.5 - parent: 12 - - uid: 6845 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-28.5 - parent: 12 - - uid: 6853 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-31.5 - parent: 12 - - uid: 6856 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-38.5 - parent: 12 - - uid: 6857 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-38.5 - parent: 12 - - uid: 6858 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-38.5 - parent: 12 - - uid: 6859 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-37.5 - parent: 12 - - uid: 6860 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-37.5 - parent: 12 - - uid: 6861 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-37.5 - parent: 12 - - uid: 6868 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-37.5 - parent: 12 - - uid: 6869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-37.5 - parent: 12 - - uid: 6870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-36.5 - parent: 12 - - uid: 6871 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-35.5 - parent: 12 - - uid: 6872 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-34.5 - parent: 12 - - uid: 6873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-33.5 - parent: 12 - - uid: 6874 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-32.5 - parent: 12 - - uid: 6875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-31.5 - parent: 12 - - uid: 6876 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-30.5 - parent: 12 - - uid: 6877 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-29.5 - parent: 12 - - uid: 6878 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-28.5 - parent: 12 - - uid: 7170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,28.5 - parent: 12 - - uid: 7219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,9.5 - parent: 12 - - uid: 7230 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-12.5 - parent: 12 - - uid: 7256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,5.5 - parent: 12 - - uid: 7280 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: 30.5,-15.5 - parent: 12 - - uid: 7321 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-26.5 - parent: 12 - - uid: 7353 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: 32.5,17.5 - parent: 12 - - uid: 7539 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-26.5 - parent: 12 - - uid: 7555 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,28.5 - parent: 12 - - uid: 8286 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-26.5 - parent: 12 - - uid: 8287 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-26.5 - parent: 12 - - uid: 8288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-26.5 - parent: 12 - - uid: 8289 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,13.5 - parent: 12 - - uid: 8290 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,12.5 - parent: 12 - - uid: 8291 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,16.5 - parent: 12 - - uid: 8354 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-34.5 - parent: 12 - - uid: 8355 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-33.5 - parent: 12 - - uid: 8356 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-35.5 - parent: 12 - - uid: 8357 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-35.5 - parent: 12 - - uid: 8358 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,-35.5 - parent: 12 - - uid: 8359 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-35.5 - parent: 12 - - uid: 8360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-35.5 - parent: 12 - - uid: 8361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-35.5 - parent: 12 - - uid: 8362 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-35.5 - parent: 12 - - uid: 8363 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-35.5 - parent: 12 - - uid: 8364 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-35.5 - parent: 12 - - uid: 8365 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-35.5 - parent: 12 - - uid: 8366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-35.5 - parent: 12 - - uid: 8367 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-35.5 - parent: 12 - - uid: 8368 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-35.5 - parent: 12 - - uid: 8369 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-35.5 - parent: 12 - - uid: 8370 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-35.5 - parent: 12 - - uid: 8371 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-35.5 - parent: 12 - - uid: 8372 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-35.5 - parent: 12 - - uid: 8373 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-35.5 - parent: 12 - - uid: 8374 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-35.5 - parent: 12 - - uid: 8375 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-35.5 - parent: 12 - - uid: 8376 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-40.5 - parent: 12 - - uid: 8377 - components: - - type: Transform - pos: 56.5,-39.5 - parent: 12 - - uid: 8378 - components: - - type: Transform - pos: 56.5,-38.5 - parent: 12 - - uid: 8379 - components: - - type: Transform - pos: 56.5,-36.5 - parent: 12 - - uid: 8380 - components: - - type: Transform - pos: 56.5,-34.5 - parent: 12 - - uid: 8381 - components: - - type: Transform - pos: 56.5,-33.5 - parent: 12 - - uid: 8382 - components: - - type: Transform - pos: 56.5,-32.5 - parent: 12 - - uid: 8383 - components: - - type: Transform - pos: 56.5,-31.5 - parent: 12 - - uid: 8384 - components: - - type: Transform - pos: 56.5,-30.5 - parent: 12 - - uid: 8385 - components: - - type: Transform - pos: 56.5,-29.5 - parent: 12 - - uid: 8386 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-28.5 - parent: 12 - - uid: 8388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-28.5 - parent: 12 - - uid: 8389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-28.5 - parent: 12 - - uid: 8390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-28.5 - parent: 12 - - uid: 8391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-28.5 - parent: 12 - - uid: 8393 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-28.5 - parent: 12 - - uid: 8394 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-28.5 - parent: 12 - - uid: 8396 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-28.5 - parent: 12 - - uid: 8397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-28.5 - parent: 12 - - uid: 8398 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-27.5 - parent: 12 - - uid: 8399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-27.5 - parent: 12 - - uid: 8400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-27.5 - parent: 12 - - uid: 8401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-27.5 - parent: 12 - - uid: 8402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-27.5 - parent: 12 - - uid: 8403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-27.5 - parent: 12 - - uid: 8404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-27.5 - parent: 12 - - uid: 8405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-27.5 - parent: 12 - - uid: 8406 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-27.5 - parent: 12 - - uid: 8407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-27.5 - parent: 12 - - uid: 8408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-27.5 - parent: 12 - - uid: 8409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-27.5 - parent: 12 - - uid: 8410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-27.5 - parent: 12 - - uid: 8411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-27.5 - parent: 12 - - uid: 8412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-27.5 - parent: 12 - - uid: 8413 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-27.5 - parent: 12 - - uid: 8414 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-27.5 - parent: 12 - - uid: 8415 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-27.5 - parent: 12 - - uid: 8417 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-27.5 - parent: 12 - - uid: 8424 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-37.5 - parent: 12 - - uid: 8451 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-0.5 - parent: 12 - - uid: 8941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-27.5 - parent: 12 - - uid: 8942 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-26.5 - parent: 12 - - uid: 8943 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-25.5 - parent: 12 - - uid: 8944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-24.5 - parent: 12 - - uid: 8945 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-23.5 - parent: 12 - - uid: 8946 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-22.5 - parent: 12 - - uid: 8953 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-23.5 - parent: 12 - - uid: 8960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-21.5 - parent: 12 - - uid: 8961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-21.5 - parent: 12 - - uid: 8962 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-21.5 - parent: 12 - - uid: 8963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-21.5 - parent: 12 - - uid: 8964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-21.5 - parent: 12 - - uid: 8965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-21.5 - parent: 12 - - uid: 8975 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-0.5 - parent: 12 - - uid: 9001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-26.5 - parent: 12 - - uid: 9011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,7.5 - parent: 12 - - uid: 9014 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-15.5 - parent: 12 - - uid: 9258 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-26.5 - parent: 12 - - uid: 9339 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-27.5 - parent: 12 - - uid: 9340 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-27.5 - parent: 12 - - uid: 9341 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-27.5 - parent: 12 - - uid: 9342 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-27.5 - parent: 12 - - uid: 9343 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-27.5 - parent: 12 - - uid: 9344 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-27.5 - parent: 12 - - uid: 9345 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-27.5 - parent: 12 - - uid: 9346 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-27.5 - parent: 12 - - uid: 9347 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-27.5 - parent: 12 - - uid: 9348 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-27.5 - parent: 12 - - uid: 9349 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-27.5 - parent: 12 - - uid: 9350 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-27.5 - parent: 12 - - uid: 9351 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-27.5 - parent: 12 - - uid: 9352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-27.5 - parent: 12 - - uid: 9353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-27.5 - parent: 12 - - uid: 9354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-27.5 - parent: 12 - - uid: 9355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-27.5 - parent: 12 - - uid: 9356 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-27.5 - parent: 12 - - uid: 9357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-27.5 - parent: 12 - - uid: 9358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-27.5 - parent: 12 - - uid: 9359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-27.5 - parent: 12 - - uid: 9360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-27.5 - parent: 12 - - uid: 9361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-27.5 - parent: 12 - - uid: 9362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-27.5 - parent: 12 - - uid: 9363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-27.5 - parent: 12 - - uid: 9364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-27.5 - parent: 12 - - uid: 9365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-27.5 - parent: 12 - - uid: 9411 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,19.5 - parent: 12 - - uid: 9432 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-24.5 - parent: 12 - - uid: 9450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,9.5 - parent: 12 - - uid: 9451 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,9.5 - parent: 12 - - uid: 9453 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,9.5 - parent: 12 - - uid: 9454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,9.5 - parent: 12 - - uid: 9468 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,28.5 - parent: 12 - - uid: 9481 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,24.5 - parent: 12 - - uid: 9491 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,28.5 - parent: 12 - - uid: 9501 - components: - - type: Transform - pos: 18.5,23.5 - parent: 12 - - uid: 9502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,28.5 - parent: 12 - - uid: 9520 - components: - - type: Transform - pos: 16.5,27.5 - parent: 12 - - uid: 9529 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,28.5 - parent: 12 - - uid: 9611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-17.5 - parent: 12 - - uid: 9647 - components: - - type: Transform - pos: 10.5,-39.5 - parent: 12 - - uid: 9684 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,54.5 - parent: 12 - - uid: 9731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,9.5 - parent: 12 - - uid: 9774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-22.5 - parent: 12 - - uid: 9775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-22.5 - parent: 12 - - uid: 9776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-22.5 - parent: 12 - - uid: 9777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-22.5 - parent: 12 - - uid: 9778 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-21.5 - parent: 12 - - uid: 9779 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-20.5 - parent: 12 - - uid: 9780 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-19.5 - parent: 12 - - uid: 9781 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-18.5 - parent: 12 - - uid: 9782 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-18.5 - parent: 12 - - uid: 9783 - components: - - type: Transform - pos: 27.5,-17.5 - parent: 12 - - uid: 9789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-18.5 - parent: 12 - - uid: 9790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-19.5 - parent: 12 - - uid: 9791 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-20.5 - parent: 12 - - uid: 9792 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-21.5 - parent: 12 - - uid: 9793 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-22.5 - parent: 12 - - uid: 9794 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-23.5 - parent: 12 - - uid: 9795 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-24.5 - parent: 12 - - uid: 9796 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-25.5 - parent: 12 - - uid: 9797 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-26.5 - parent: 12 - - uid: 9995 - components: - - type: Transform - pos: 16.5,26.5 - parent: 12 - - uid: 10255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,43.5 - parent: 12 - - uid: 10418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-23.5 - parent: 12 - - uid: 10419 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-22.5 - parent: 12 - - uid: 10420 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-21.5 - parent: 12 - - uid: 10421 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-20.5 - parent: 12 - - uid: 10422 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-19.5 - parent: 12 - - uid: 10423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-18.5 - parent: 12 - - uid: 10424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-17.5 - parent: 12 - - uid: 10425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-16.5 - parent: 12 - - uid: 10426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-15.5 - parent: 12 - - uid: 10427 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-14.5 - parent: 12 - - uid: 10428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-13.5 - parent: 12 - - uid: 10429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-12.5 - parent: 12 - - uid: 10430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-11.5 - parent: 12 - - uid: 10431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-10.5 - parent: 12 - - uid: 10432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-9.5 - parent: 12 - - uid: 10433 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-8.5 - parent: 12 - - uid: 10434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-7.5 - parent: 12 - - uid: 10435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-6.5 - parent: 12 - - uid: 10436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-4.5 - parent: 12 - - uid: 10437 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-5.5 - parent: 12 - - uid: 10438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-5.5 - parent: 12 - - uid: 10439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-5.5 - parent: 12 - - uid: 10440 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-5.5 - parent: 12 - - uid: 10441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-5.5 - parent: 12 - - uid: 10442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-5.5 - parent: 12 - - uid: 10443 - components: - - type: Transform - pos: -23.5,-4.5 - parent: 12 - - uid: 10444 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-3.5 - parent: 12 - - uid: 10445 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-3.5 - parent: 12 - - uid: 10446 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-3.5 - parent: 12 - - uid: 10618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-5.5 - parent: 12 - - uid: 10628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-5.5 - parent: 12 - - uid: 10634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-5.5 - parent: 12 - - uid: 10637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-5.5 - parent: 12 - - uid: 10701 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,28.5 - parent: 12 - - uid: 10825 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,6.5 - parent: 12 - - uid: 10871 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,10.5 - parent: 12 - - uid: 10872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,10.5 - parent: 12 - - uid: 10875 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,10.5 - parent: 12 - - uid: 10922 - components: - - type: Transform - pos: 22.5,11.5 - parent: 12 - - uid: 10926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,11.5 - parent: 12 - - uid: 10931 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-13.5 - parent: 12 - - uid: 10932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-13.5 - parent: 12 - - uid: 10959 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,10.5 - parent: 12 - - uid: 10960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,10.5 - parent: 12 - - uid: 10961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,10.5 - parent: 12 - - uid: 10962 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,10.5 - parent: 12 - - uid: 10963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,10.5 - parent: 12 - - uid: 10964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,9.5 - parent: 12 - - uid: 10965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,9.5 - parent: 12 - - uid: 10971 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,9.5 - parent: 12 - - uid: 10972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,9.5 - parent: 12 - - uid: 10973 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,9.5 - parent: 12 - - uid: 10974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,9.5 - parent: 12 - - uid: 10975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,9.5 - parent: 12 - - uid: 10976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,9.5 - parent: 12 - - uid: 10987 - components: - - type: Transform - pos: 21.5,13.5 - parent: 12 - - uid: 10988 - components: - - type: Transform - pos: 21.5,14.5 - parent: 12 - - uid: 10989 - components: - - type: Transform - pos: 21.5,15.5 - parent: 12 - - uid: 10990 - components: - - type: Transform - pos: 42.5,-24.5 - parent: 12 - - uid: 10991 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-26.5 - parent: 12 - - uid: 10992 - components: - - type: Transform - pos: 21.5,18.5 - parent: 12 - - uid: 10995 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,10.5 - parent: 12 - - uid: 10998 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,10.5 - parent: 12 - - uid: 11002 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,7.5 - parent: 12 - - uid: 11003 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,6.5 - parent: 12 - - uid: 11004 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,5.5 - parent: 12 - - uid: 11021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-26.5 - parent: 12 - - uid: 11042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-16.5 - parent: 12 - - uid: 11123 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-17.5 - parent: 12 - - uid: 11281 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-7.5 - parent: 12 - - uid: 11398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-22.5 - parent: 12 - - uid: 11402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-26.5 - parent: 12 - - uid: 11436 - components: - - type: Transform - pos: 37.5,9.5 - parent: 12 - - uid: 11457 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,11.5 - parent: 12 - - uid: 11477 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-5.5 - parent: 12 - - uid: 11492 - components: - - type: Transform - pos: 41.5,18.5 - parent: 12 - - uid: 11493 - components: - - type: Transform - pos: 41.5,17.5 - parent: 12 - - uid: 11495 - components: - - type: Transform - pos: 41.5,15.5 - parent: 12 - - uid: 11496 - components: - - type: Transform - pos: 41.5,14.5 - parent: 12 - - uid: 11509 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,47.5 - parent: 12 - - uid: 11577 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,11.5 - parent: 12 - - uid: 11581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,7.5 - parent: 12 - - uid: 11614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-26.5 - parent: 12 - - uid: 11615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-26.5 - parent: 12 - - uid: 11659 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-26.5 - parent: 12 - - uid: 11689 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-20.5 - parent: 12 - - uid: 11697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-19.5 - parent: 12 - - uid: 11698 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-14.5 - parent: 12 - - uid: 11699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-17.5 - parent: 12 - - uid: 11700 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-16.5 - parent: 12 - - uid: 11782 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,17.5 - parent: 12 - - uid: 11783 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,16.5 - parent: 12 - - uid: 11784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-26.5 - parent: 12 - - uid: 11890 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,54.5 - parent: 12 - - uid: 11961 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,17.5 - parent: 12 - - uid: 11962 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,17.5 - parent: 12 - - uid: 11967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,17.5 - parent: 12 - - uid: 11968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,18.5 - parent: 12 - - uid: 11969 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,19.5 - parent: 12 - - uid: 11970 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,20.5 - parent: 12 - - uid: 12002 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,12.5 - parent: 12 - - uid: 12003 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,13.5 - parent: 12 - - uid: 12099 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,12.5 - parent: 12 - - uid: 12295 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,21.5 - parent: 12 - - uid: 12296 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,21.5 - parent: 12 - - uid: 12297 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,21.5 - parent: 12 - - uid: 12298 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,21.5 - parent: 12 - - uid: 12299 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,20.5 - parent: 12 - - uid: 12300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,19.5 - parent: 12 - - uid: 12301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,18.5 - parent: 12 - - uid: 12302 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,17.5 - parent: 12 - - uid: 12303 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,17.5 - parent: 12 - - uid: 12335 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,14.5 - parent: 12 - - uid: 12339 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,53.5 - parent: 12 - - uid: 12391 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,14.5 - parent: 12 - - uid: 12635 - components: - - type: Transform - pos: 41.5,16.5 - parent: 12 - - uid: 12660 - components: - - type: Transform - pos: 38.5,24.5 - parent: 12 - - uid: 12661 - components: - - type: Transform - pos: 38.5,25.5 - parent: 12 - - uid: 12662 - components: - - type: Transform - pos: 38.5,26.5 - parent: 12 - - uid: 12663 - components: - - type: Transform - pos: 38.5,27.5 - parent: 12 - - uid: 12666 - components: - - type: Transform - pos: 39.5,22.5 - parent: 12 - - uid: 12667 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,23.5 - parent: 12 - - uid: 12668 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,23.5 - parent: 12 - - uid: 12669 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,23.5 - parent: 12 - - uid: 12678 - components: - - type: Transform - pos: 4.5,31.5 - parent: 12 - - uid: 12679 - components: - - type: Transform - pos: 4.5,30.5 - parent: 12 - - uid: 12680 - components: - - type: Transform - pos: 4.5,29.5 - parent: 12 - - uid: 12700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,20.5 - parent: 12 - - uid: 12718 - components: - - type: Transform - pos: 42.5,41.5 - parent: 12 - - uid: 12719 - components: - - type: Transform - pos: 42.5,40.5 - parent: 12 - - uid: 12720 - components: - - type: Transform - pos: 42.5,39.5 - parent: 12 - - uid: 12868 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,42.5 - parent: 12 - - uid: 12984 - components: - - type: Transform - pos: 34.5,24.5 - parent: 12 - - uid: 12985 - components: - - type: Transform - pos: 34.5,25.5 - parent: 12 - - uid: 12986 - components: - - type: Transform - pos: 34.5,26.5 - parent: 12 - - uid: 12987 - components: - - type: Transform - pos: 34.5,27.5 - parent: 12 - - uid: 12988 - components: - - type: Transform - pos: 34.5,28.5 - parent: 12 - - uid: 12989 - components: - - type: Transform - pos: 34.5,30.5 - parent: 12 - - uid: 12990 - components: - - type: Transform - pos: 34.5,31.5 - parent: 12 - - uid: 12991 - components: - - type: Transform - pos: 34.5,32.5 - parent: 12 - - uid: 12992 - components: - - type: Transform - pos: 34.5,33.5 - parent: 12 - - uid: 12993 - components: - - type: Transform - pos: 34.5,34.5 - parent: 12 - - uid: 13006 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,22.5 - parent: 12 - - uid: 13007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,23.5 - parent: 12 - - uid: 13008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,23.5 - parent: 12 - - uid: 13188 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,12.5 - parent: 12 - - uid: 13597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,29.5 - parent: 12 - - uid: 13598 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,29.5 - parent: 12 - - uid: 13599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,29.5 - parent: 12 - - uid: 13601 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,30.5 - parent: 12 - - uid: 13602 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,31.5 - parent: 12 - - uid: 13603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,32.5 - parent: 12 - - uid: 13648 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,29.5 - parent: 12 - - uid: 13649 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,28.5 - parent: 12 - - uid: 13650 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,28.5 - parent: 12 - - uid: 13651 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,28.5 - parent: 12 - - uid: 13652 - components: - - type: Transform - pos: 24.5,27.5 - parent: 12 - - uid: 13655 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,28.5 - parent: 12 - - uid: 13656 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,28.5 - parent: 12 - - uid: 13657 - components: - - type: Transform - pos: 21.5,29.5 - parent: 12 - - uid: 13658 - components: - - type: Transform - pos: 21.5,30.5 - parent: 12 - - uid: 13659 - components: - - type: Transform - pos: 21.5,31.5 - parent: 12 - - uid: 13660 - components: - - type: Transform - pos: 21.5,32.5 - parent: 12 - - uid: 13661 - components: - - type: Transform - pos: 21.5,33.5 - parent: 12 - - uid: 13662 - components: - - type: Transform - pos: 21.5,34.5 - parent: 12 - - uid: 13663 - components: - - type: Transform - pos: 21.5,35.5 - parent: 12 - - uid: 13664 - components: - - type: Transform - pos: 21.5,36.5 - parent: 12 - - uid: 13665 - components: - - type: Transform - pos: 21.5,37.5 - parent: 12 - - uid: 13666 - components: - - type: Transform - pos: 21.5,38.5 - parent: 12 - - uid: 13948 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,35.5 - parent: 12 - - uid: 13949 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,36.5 - parent: 12 - - uid: 13950 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,37.5 - parent: 12 - - uid: 13951 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,38.5 - parent: 12 - - uid: 13952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,39.5 - parent: 12 - - uid: 13953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,40.5 - parent: 12 - - uid: 13954 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,36.5 - parent: 12 - - uid: 13955 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,37.5 - parent: 12 - - uid: 13956 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,38.5 - parent: 12 - - uid: 13957 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,39.5 - parent: 12 - - uid: 13958 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,40.5 - parent: 12 - - uid: 13959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,41.5 - parent: 12 - - uid: 13960 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,41.5 - parent: 12 - - uid: 13961 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,41.5 - parent: 12 - - uid: 13962 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,42.5 - parent: 12 - - uid: 15017 - components: - - type: Transform - pos: 18.5,45.5 - parent: 12 - - uid: 15018 - components: - - type: Transform - pos: 18.5,44.5 - parent: 12 - - uid: 15019 - components: - - type: Transform - pos: 18.5,43.5 - parent: 12 - - uid: 15020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,41.5 - parent: 12 - - uid: 15021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,41.5 - parent: 12 - - uid: 15022 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,41.5 - parent: 12 - - uid: 15023 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,41.5 - parent: 12 - - uid: 15024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,41.5 - parent: 12 - - uid: 15026 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,41.5 - parent: 12 - - uid: 15027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,41.5 - parent: 12 - - uid: 15028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,41.5 - parent: 12 - - uid: 15029 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,44.5 - parent: 12 - - uid: 15030 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,41.5 - parent: 12 - - uid: 15031 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,41.5 - parent: 12 - - uid: 15032 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,42.5 - parent: 12 - - uid: 15037 - components: - - type: Transform - pos: 18.5,47.5 - parent: 12 - - uid: 15038 - components: - - type: Transform - pos: 18.5,48.5 - parent: 12 - - uid: 15039 - components: - - type: Transform - pos: 18.5,49.5 - parent: 12 - - uid: 15040 - components: - - type: Transform - pos: 18.5,50.5 - parent: 12 - - uid: 15041 - components: - - type: Transform - pos: 18.5,51.5 - parent: 12 - - uid: 15042 - components: - - type: Transform - pos: 18.5,52.5 - parent: 12 - - uid: 15043 - components: - - type: Transform - pos: 18.5,53.5 - parent: 12 - - uid: 15044 - components: - - type: Transform - pos: 19.5,55.5 - parent: 12 - - uid: 15045 - components: - - type: Transform - pos: 19.5,56.5 - parent: 12 - - uid: 15105 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,45.5 - parent: 12 - - uid: 15106 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,44.5 - parent: 12 - - uid: 15107 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,43.5 - parent: 12 - - uid: 15108 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,42.5 - parent: 12 - - uid: 15110 - components: - - type: Transform - pos: 25.5,47.5 - parent: 12 - - uid: 15111 - components: - - type: Transform - pos: 25.5,48.5 - parent: 12 - - uid: 15112 - components: - - type: Transform - pos: 25.5,49.5 - parent: 12 - - uid: 15113 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,52.5 - parent: 12 - - uid: 15116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,50.5 - parent: 12 - - uid: 15117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,50.5 - parent: 12 - - uid: 15118 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,50.5 - parent: 12 - - uid: 15119 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,50.5 - parent: 12 - - uid: 15120 - components: - - type: Transform - pos: 30.5,51.5 - parent: 12 - - uid: 15121 - components: - - type: Transform - pos: 30.5,52.5 - parent: 12 - - uid: 15122 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,52.5 - parent: 12 - - uid: 15128 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,46.5 - parent: 12 - - uid: 15132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,56.5 - parent: 12 - - uid: 15133 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,56.5 - parent: 12 - - uid: 15134 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-22.5 - parent: 12 - - uid: 15135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-21.5 - parent: 12 - - uid: 15136 - components: - - type: Transform - pos: 32.5,12.5 - parent: 12 - - uid: 15138 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,54.5 - parent: 12 - - uid: 15139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,54.5 - parent: 12 - - uid: 15140 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,54.5 - parent: 12 - - uid: 15143 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-13.5 - parent: 12 - - uid: 15145 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-13.5 - parent: 12 - - uid: 15146 - components: - - type: Transform - pos: 19.5,43.5 - parent: 12 - - uid: 15147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,42.5 - parent: 12 - - uid: 15148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,44.5 - parent: 12 - - uid: 15149 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,45.5 - parent: 12 - - uid: 15150 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,46.5 - parent: 12 - - uid: 15151 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,47.5 - parent: 12 - - uid: 15152 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,48.5 - parent: 12 - - uid: 15156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,49.5 - parent: 12 - - uid: 15157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,49.5 - parent: 12 - - uid: 15158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,49.5 - parent: 12 - - uid: 15159 - components: - - type: Transform - pos: 23.5,50.5 - parent: 12 - - uid: 15160 - components: - - type: Transform - pos: 23.5,51.5 - parent: 12 - - uid: 15162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,41.5 - parent: 12 - - uid: 15163 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,42.5 - parent: 12 - - uid: 15164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,39.5 - parent: 12 - - uid: 15165 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,40.5 - parent: 12 - - uid: 15174 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-13.5 - parent: 12 - - uid: 15388 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,54.5 - parent: 12 - - uid: 15389 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,55.5 - parent: 12 - - uid: 15390 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,55.5 - parent: 12 - - uid: 15391 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,55.5 - parent: 12 - - uid: 15392 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,55.5 - parent: 12 - - uid: 15393 - components: - - type: Transform - pos: 35.5,53.5 - parent: 12 - - uid: 15394 - components: - - type: Transform - pos: 35.5,52.5 - parent: 12 - - uid: 15395 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,51.5 - parent: 12 - - uid: 15396 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,51.5 - parent: 12 - - uid: 15397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,51.5 - parent: 12 - - uid: 15399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-10.5 - parent: 12 - - uid: 16388 - components: - - type: Transform - pos: -25.5,26.5 - parent: 12 - - uid: 16418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-4.5 - parent: 12 - - uid: 16532 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-9.5 - parent: 12 - - uid: 16713 - components: - - type: Transform - pos: -23.5,5.5 - parent: 12 - - uid: 16714 - components: - - type: Transform - pos: -23.5,6.5 - parent: 12 - - uid: 16715 - components: - - type: Transform - pos: -23.5,7.5 - parent: 12 - - uid: 16716 - components: - - type: Transform - pos: -23.5,8.5 - parent: 12 - - uid: 16717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,9.5 - parent: 12 - - uid: 16718 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,9.5 - parent: 12 - - uid: 16719 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,10.5 - parent: 12 - - uid: 16720 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,11.5 - parent: 12 - - uid: 16721 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,12.5 - parent: 12 - - uid: 16722 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,13.5 - parent: 12 - - uid: 16723 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,14.5 - parent: 12 - - uid: 16724 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,15.5 - parent: 12 - - uid: 16725 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,16.5 - parent: 12 - - uid: 16726 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,17.5 - parent: 12 - - uid: 16727 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,18.5 - parent: 12 - - uid: 16728 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,9.5 - parent: 12 - - uid: 16729 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,9.5 - parent: 12 - - uid: 16730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,9.5 - parent: 12 - - uid: 16731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,9.5 - parent: 12 - - uid: 16732 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,9.5 - parent: 12 - - uid: 16733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,9.5 - parent: 12 - - uid: 16734 - components: - - type: Transform - pos: -16.5,10.5 - parent: 12 - - uid: 16735 - components: - - type: Transform - pos: -16.5,11.5 - parent: 12 - - uid: 16736 - components: - - type: Transform - pos: -16.5,12.5 - parent: 12 - - uid: 16737 - components: - - type: Transform - pos: -16.5,13.5 - parent: 12 - - uid: 16738 - components: - - type: Transform - pos: -16.5,14.5 - parent: 12 - - uid: 16739 - components: - - type: Transform - pos: -16.5,15.5 - parent: 12 - - uid: 16740 - components: - - type: Transform - pos: -16.5,8.5 - parent: 12 - - uid: 16741 - components: - - type: Transform - pos: -16.5,7.5 - parent: 12 - - uid: 16742 - components: - - type: Transform - pos: -16.5,6.5 - parent: 12 - - uid: 16743 - components: - - type: Transform - pos: -16.5,5.5 - parent: 12 - - uid: 16744 - components: - - type: Transform - pos: -16.5,4.5 - parent: 12 - - uid: 16745 - components: - - type: Transform - pos: -16.5,3.5 - parent: 12 - - uid: 16746 - components: - - type: Transform - pos: -16.5,2.5 - parent: 12 - - uid: 16747 - components: - - type: Transform - pos: -16.5,1.5 - parent: 12 - - uid: 16748 - components: - - type: Transform - pos: -16.5,0.5 - parent: 12 - - uid: 16749 - components: - - type: Transform - pos: -16.5,-0.5 - parent: 12 - - uid: 16750 - components: - - type: Transform - pos: -16.5,-1.5 - parent: 12 - - uid: 16751 - components: - - type: Transform - pos: -16.5,-2.5 - parent: 12 - - uid: 16752 - components: - - type: Transform - pos: -16.5,-3.5 - parent: 12 - - uid: 17641 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-8.5 - parent: 12 - - uid: 17666 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,33.5 - parent: 12 - - uid: 17667 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,32.5 - parent: 12 - - uid: 17668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,32.5 - parent: 12 - - uid: 17669 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,32.5 - parent: 12 - - uid: 17670 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,32.5 - parent: 12 - - uid: 17671 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,32.5 - parent: 12 - - uid: 17672 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,32.5 - parent: 12 - - uid: 17673 - components: - - type: Transform - pos: -47.5,31.5 - parent: 12 - - uid: 17674 - components: - - type: Transform - pos: -47.5,30.5 - parent: 12 - - uid: 17675 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,28.5 - parent: 12 - - uid: 17676 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,28.5 - parent: 12 - - uid: 17677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,28.5 - parent: 12 - - uid: 17678 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,28.5 - parent: 12 - - uid: 17679 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,28.5 - parent: 12 - - uid: 17680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,28.5 - parent: 12 - - uid: 17681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,28.5 - parent: 12 - - uid: 17682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,28.5 - parent: 12 - - uid: 17683 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,28.5 - parent: 12 - - uid: 17684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,28.5 - parent: 12 - - uid: 17685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,28.5 - parent: 12 - - uid: 17686 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,28.5 - parent: 12 - - uid: 17687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,28.5 - parent: 12 - - uid: 17689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,28.5 - parent: 12 - - uid: 17690 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,28.5 - parent: 12 - - uid: 17691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,28.5 - parent: 12 - - uid: 17692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,28.5 - parent: 12 - - uid: 17693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,28.5 - parent: 12 - - uid: 17694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,28.5 - parent: 12 - - uid: 17695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,28.5 - parent: 12 - - uid: 17697 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,28.5 - parent: 12 - - uid: 17698 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,28.5 - parent: 12 - - uid: 17699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,28.5 - parent: 12 - - uid: 17700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,28.5 - parent: 12 - - uid: 17701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,28.5 - parent: 12 - - uid: 17702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,28.5 - parent: 12 - - uid: 17703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,28.5 - parent: 12 - - uid: 17704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,28.5 - parent: 12 - - uid: 17705 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,16.5 - parent: 12 - - uid: 17706 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,17.5 - parent: 12 - - uid: 17707 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,18.5 - parent: 12 - - uid: 17708 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,19.5 - parent: 12 - - uid: 17709 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,20.5 - parent: 12 - - uid: 17710 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,21.5 - parent: 12 - - uid: 17711 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,22.5 - parent: 12 - - uid: 17712 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,23.5 - parent: 12 - - uid: 17713 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,24.5 - parent: 12 - - uid: 17714 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,25.5 - parent: 12 - - uid: 17715 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,26.5 - parent: 12 - - uid: 17716 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,27.5 - parent: 12 - - uid: 17718 - components: - - type: Transform - pos: -33.5,27.5 - parent: 12 - - uid: 17719 - components: - - type: Transform - pos: -33.5,26.5 - parent: 12 - - uid: 17720 - components: - - type: Transform - pos: -33.5,25.5 - parent: 12 - - uid: 17721 - components: - - type: Transform - pos: -33.5,24.5 - parent: 12 - - uid: 17722 - components: - - type: Transform - pos: -33.5,23.5 - parent: 12 - - uid: 17727 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,22.5 - parent: 12 - - uid: 17732 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,29.5 - parent: 12 - - uid: 17844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-27.5 - parent: 12 - - uid: 18304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-25.5 - parent: 12 - - uid: 18306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-19.5 - parent: 12 - - uid: 18563 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-7.5 - parent: 12 - - uid: 18564 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-6.5 - parent: 12 - - uid: 18668 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-5.5 - parent: 12 - - uid: 18672 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-42.5 - parent: 12 - - uid: 18673 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-40.5 - parent: 12 - - uid: 18756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,10.5 - parent: 12 - - uid: 18758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,10.5 - parent: 12 - - uid: 18894 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-39.5 - parent: 12 - - uid: 19033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-3.5 - parent: 12 - - uid: 19177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,10.5 - parent: 12 - - uid: 19189 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-18.5 - parent: 12 - - uid: 19195 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-12.5 - parent: 12 - - uid: 19238 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-42.5 - parent: 12 - - uid: 19243 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-16.5 - parent: 12 - - uid: 19245 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-21.5 - parent: 12 - - uid: 19277 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-23.5 - parent: 12 - - uid: 19428 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,20.5 - parent: 12 - - uid: 19539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-16.5 - parent: 12 - - uid: 19552 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-2.5 - parent: 12 - - uid: 19815 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-6.5 - parent: 12 - - uid: 19843 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-1.5 - parent: 12 - - uid: 19968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-0.5 - parent: 12 - - uid: 20151 - components: - - type: Transform - pos: -38.5,38.5 - parent: 12 - - uid: 20152 - components: - - type: Transform - pos: -38.5,39.5 - parent: 12 - - uid: 20153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,40.5 - parent: 12 - - uid: 20154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,40.5 - parent: 12 - - uid: 20156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,40.5 - parent: 12 - - uid: 20157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,40.5 - parent: 12 - - uid: 20158 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,40.5 - parent: 12 - - uid: 20159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,40.5 - parent: 12 - - uid: 20160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,40.5 - parent: 12 - - uid: 20162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,40.5 - parent: 12 - - uid: 20163 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,40.5 - parent: 12 - - uid: 20164 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,40.5 - parent: 12 - - uid: 20165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,40.5 - parent: 12 - - uid: 20166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,40.5 - parent: 12 - - uid: 20167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,40.5 - parent: 12 - - uid: 20168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,40.5 - parent: 12 - - uid: 20169 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,40.5 - parent: 12 - - uid: 20170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,40.5 - parent: 12 - - uid: 20171 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,40.5 - parent: 12 - - uid: 20172 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,29.5 - parent: 12 - - uid: 20173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,30.5 - parent: 12 - - uid: 20174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,31.5 - parent: 12 - - uid: 20175 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,32.5 - parent: 12 - - uid: 20176 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,33.5 - parent: 12 - - uid: 20177 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,34.5 - parent: 12 - - uid: 20178 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,35.5 - parent: 12 - - uid: 20179 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,36.5 - parent: 12 - - uid: 20180 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,37.5 - parent: 12 - - uid: 20181 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,38.5 - parent: 12 - - uid: 20182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,39.5 - parent: 12 - - uid: 20183 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,41.5 - parent: 12 - - uid: 20184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,42.5 - parent: 12 - - uid: 20185 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,43.5 - parent: 12 - - uid: 20186 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,44.5 - parent: 12 - - uid: 20187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-8.5 - parent: 12 - - uid: 20188 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,44.5 - parent: 12 - - uid: 20189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,44.5 - parent: 12 - - uid: 20190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,44.5 - parent: 12 - - uid: 20191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,44.5 - parent: 12 - - uid: 20193 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,44.5 - parent: 12 - - uid: 20194 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,44.5 - parent: 12 - - uid: 20195 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,44.5 - parent: 12 - - uid: 20196 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,44.5 - parent: 12 - - uid: 20197 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,44.5 - parent: 12 - - uid: 20198 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,44.5 - parent: 12 - - uid: 20199 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,44.5 - parent: 12 - - uid: 20200 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,44.5 - parent: 12 - - uid: 20201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,44.5 - parent: 12 - - uid: 20202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,44.5 - parent: 12 - - uid: 20203 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,44.5 - parent: 12 - - uid: 20204 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,44.5 - parent: 12 - - uid: 20205 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,44.5 - parent: 12 - - uid: 20206 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,44.5 - parent: 12 - - uid: 20207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,44.5 - parent: 12 - - uid: 20208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,44.5 - parent: 12 - - uid: 20209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,44.5 - parent: 12 - - uid: 20211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,44.5 - parent: 12 - - uid: 20212 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,44.5 - parent: 12 - - uid: 20213 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,44.5 - parent: 12 - - uid: 20214 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,41.5 - parent: 12 - - uid: 20215 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,41.5 - parent: 12 - - uid: 20216 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,41.5 - parent: 12 - - uid: 20217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,41.5 - parent: 12 - - uid: 20218 - components: - - type: Transform - pos: 12.5,42.5 - parent: 12 - - uid: 20219 - components: - - type: Transform - pos: 12.5,43.5 - parent: 12 - - uid: 20221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,42.5 - parent: 12 - - uid: 20222 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,42.5 - parent: 12 - - uid: 20223 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,42.5 - parent: 12 - - uid: 20224 - components: - - type: Transform - pos: 13.5,43.5 - parent: 12 - - uid: 20225 - components: - - type: Transform - pos: 13.5,44.5 - parent: 12 - - uid: 20226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,45.5 - parent: 12 - - uid: 20227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,45.5 - parent: 12 - - uid: 20228 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,45.5 - parent: 12 - - uid: 20229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,45.5 - parent: 12 - - uid: 20230 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,45.5 - parent: 12 - - uid: 20231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,45.5 - parent: 12 - - uid: 20232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,45.5 - parent: 12 - - uid: 20233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,45.5 - parent: 12 - - uid: 20234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,45.5 - parent: 12 - - uid: 20235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,45.5 - parent: 12 - - uid: 20236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,45.5 - parent: 12 - - uid: 20237 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,45.5 - parent: 12 - - uid: 20238 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,45.5 - parent: 12 - - uid: 20239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,45.5 - parent: 12 - - uid: 20240 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,45.5 - parent: 12 - - uid: 20241 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,45.5 - parent: 12 - - uid: 20242 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,45.5 - parent: 12 - - uid: 20243 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,45.5 - parent: 12 - - uid: 20244 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,45.5 - parent: 12 - - uid: 20245 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,45.5 - parent: 12 - - uid: 20246 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,45.5 - parent: 12 - - uid: 20247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,45.5 - parent: 12 - - uid: 20249 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,45.5 - parent: 12 - - uid: 20250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,45.5 - parent: 12 - - uid: 20251 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,45.5 - parent: 12 - - uid: 20252 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,45.5 - parent: 12 - - uid: 20253 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,45.5 - parent: 12 - - uid: 20254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,0.5 - parent: 12 - - uid: 20255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,1.5 - parent: 12 - - uid: 20256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,53.5 - parent: 12 - - uid: 20259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,2.5 - parent: 12 - - uid: 20263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,55.5 - parent: 12 - - uid: 20264 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,53.5 - parent: 12 - - uid: 20266 - components: - - type: Transform - pos: -39.5,52.5 - parent: 12 - - uid: 20269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,40.5 - parent: 12 - - uid: 20270 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,53.5 - parent: 12 - - uid: 20273 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,57.5 - parent: 12 - - uid: 20274 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,58.5 - parent: 12 - - uid: 20279 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,50.5 - parent: 12 - - uid: 20280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,50.5 - parent: 12 - - uid: 20281 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,51.5 - parent: 12 - - uid: 20282 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,52.5 - parent: 12 - - uid: 20283 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,53.5 - parent: 12 - - uid: 20284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,54.5 - parent: 12 - - uid: 20285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,55.5 - parent: 12 - - uid: 20286 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,55.5 - parent: 12 - - uid: 20287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,55.5 - parent: 12 - - uid: 20294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,59.5 - parent: 12 - - uid: 20295 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,59.5 - parent: 12 - - uid: 20297 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,56.5 - parent: 12 - - uid: 20298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,54.5 - parent: 12 - - uid: 20299 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,52.5 - parent: 12 - - uid: 20300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,51.5 - parent: 12 - - uid: 20301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,50.5 - parent: 12 - - uid: 20302 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,49.5 - parent: 12 - - uid: 20303 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,48.5 - parent: 12 - - uid: 20304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,47.5 - parent: 12 - - uid: 20305 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,46.5 - parent: 12 - - uid: 20306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,45.5 - parent: 12 - - uid: 20307 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,44.5 - parent: 12 - - uid: 20308 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,43.5 - parent: 12 - - uid: 20309 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,42.5 - parent: 12 - - uid: 20310 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,41.5 - parent: 12 - - uid: 20562 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-8.5 - parent: 12 - - uid: 20885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,3.5 - parent: 12 - - uid: 21326 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-32.5 - parent: 12 - - uid: 21347 - components: - - type: Transform - pos: -28.5,39.5 - parent: 12 - - uid: 21469 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,4.5 - parent: 12 - - uid: 21472 - components: - - type: Transform - pos: -25.5,27.5 - parent: 12 - - uid: 22088 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-26.5 - parent: 12 - - uid: 22108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-16.5 - parent: 12 - - uid: 22113 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-23.5 - parent: 12 - - uid: 22121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,10.5 - parent: 12 - - uid: 22122 - components: - - type: Transform - pos: 30.5,9.5 - parent: 12 - - uid: 22268 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-23.5 - parent: 12 - - uid: 22275 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,19.5 - parent: 12 - - uid: 22308 - components: - - type: Transform - pos: 41.5,13.5 - parent: 12 - - uid: 22366 - components: - - type: Transform - pos: 42.5,-25.5 - parent: 12 - - uid: 22389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-26.5 - parent: 12 - - uid: 22418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,49.5 - parent: 12 - - uid: 22419 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,50.5 - parent: 12 - - uid: 22420 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,51.5 - parent: 12 - - uid: 22421 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,52.5 - parent: 12 - - uid: 22422 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,53.5 - parent: 12 - - uid: 22423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,54.5 - parent: 12 - - uid: 22424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,55.5 - parent: 12 - - uid: 22425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,57.5 - parent: 12 - - uid: 22426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,58.5 - parent: 12 - - uid: 22427 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,59.5 - parent: 12 - - uid: 22428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,56.5 - parent: 12 - - uid: 22429 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,60.5 - parent: 12 - - uid: 22430 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,60.5 - parent: 12 - - uid: 22431 - components: - - type: Transform - pos: -5.5,52.5 - parent: 12 - - uid: 22432 - components: - - type: Transform - pos: -5.5,51.5 - parent: 12 - - uid: 22433 - components: - - type: Transform - pos: -5.5,50.5 - parent: 12 - - uid: 22434 - components: - - type: Transform - pos: -5.5,49.5 - parent: 12 - - uid: 22435 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,48.5 - parent: 12 - - uid: 22436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,48.5 - parent: 12 - - uid: 22437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,48.5 - parent: 12 - - uid: 22438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,46.5 - parent: 12 - - uid: 22439 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,47.5 - parent: 12 - - uid: 22440 - components: - - type: Transform - pos: -9.5,45.5 - parent: 12 - - uid: 22537 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-5.5 - parent: 12 - - uid: 22546 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,45.5 - parent: 12 - - uid: 22547 - components: - - type: Transform - pos: 8.5,42.5 - parent: 12 - - uid: 22549 - components: - - type: Transform - pos: 8.5,43.5 - parent: 12 - - uid: 22725 - components: - - type: Transform - pos: 8.5,60.5 - parent: 12 - - uid: 22726 - components: - - type: Transform - pos: 8.5,61.5 - parent: 12 - - uid: 22727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,59.5 - parent: 12 - - uid: 22728 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,59.5 - parent: 12 - - uid: 22729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,59.5 - parent: 12 - - uid: 22730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,59.5 - parent: 12 - - uid: 22734 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,62.5 - parent: 12 - - uid: 22735 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,62.5 - parent: 12 - - uid: 22736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,62.5 - parent: 12 - - uid: 22737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,62.5 - parent: 12 - - uid: 22738 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,62.5 - parent: 12 - - uid: 22739 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,62.5 - parent: 12 - - uid: 22740 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,62.5 - parent: 12 - - uid: 22741 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,62.5 - parent: 12 - - uid: 22742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,62.5 - parent: 12 - - uid: 22743 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,62.5 - parent: 12 - - uid: 22744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,61.5 - parent: 12 - - uid: 22745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,60.5 - parent: 12 - - uid: 22746 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,59.5 - parent: 12 - - uid: 22747 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,58.5 - parent: 12 - - uid: 22748 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,57.5 - parent: 12 - - uid: 22753 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,68.5 - parent: 12 - - uid: 22754 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,81.5 - parent: 12 - - uid: 22755 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,79.5 - parent: 12 - - uid: 22756 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,80.5 - parent: 12 - - uid: 22757 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,78.5 - parent: 12 - - uid: 22758 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,77.5 - parent: 12 - - uid: 22759 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,75.5 - parent: 12 - - uid: 22760 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,76.5 - parent: 12 - - uid: 22761 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,74.5 - parent: 12 - - uid: 22762 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,73.5 - parent: 12 - - uid: 22763 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,72.5 - parent: 12 - - uid: 22764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,71.5 - parent: 12 - - uid: 22765 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,69.5 - parent: 12 - - uid: 22766 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,68.5 - parent: 12 - - uid: 22767 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,70.5 - parent: 12 - - uid: 22768 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,67.5 - parent: 12 - - uid: 22769 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,67.5 - parent: 12 - - uid: 22770 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,67.5 - parent: 12 - - uid: 22771 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,67.5 - parent: 12 - - uid: 22772 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,67.5 - parent: 12 - - uid: 22773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,67.5 - parent: 12 - - uid: 22774 - components: - - type: Transform - pos: 19.5,66.5 - parent: 12 - - uid: 22775 - components: - - type: Transform - pos: 19.5,65.5 - parent: 12 - - uid: 22776 - components: - - type: Transform - pos: 19.5,63.5 - parent: 12 - - uid: 22777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,67.5 - parent: 12 - - uid: 22778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,67.5 - parent: 12 - - uid: 22779 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,67.5 - parent: 12 - - uid: 22780 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,67.5 - parent: 12 - - uid: 22781 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,69.5 - parent: 12 - - uid: 22782 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,70.5 - parent: 12 - - uid: 22783 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,71.5 - parent: 12 - - uid: 22784 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,72.5 - parent: 12 - - uid: 22785 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,73.5 - parent: 12 - - uid: 22786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,74.5 - parent: 12 - - uid: 22787 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,75.5 - parent: 12 - - uid: 22788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,76.5 - parent: 12 - - uid: 22789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,77.5 - parent: 12 - - uid: 22790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,78.5 - parent: 12 - - uid: 22791 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,79.5 - parent: 12 - - uid: 22792 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,80.5 - parent: 12 - - uid: 22793 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,81.5 - parent: 12 - - uid: 22794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,82.5 - parent: 12 - - uid: 22795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,82.5 - parent: 12 - - uid: 22802 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,64.5 - parent: 12 - - uid: 22803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,64.5 - parent: 12 - - uid: 22804 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,64.5 - parent: 12 - - uid: 22835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-26.5 - parent: 12 - - uid: 22840 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,49.5 - parent: 12 - - uid: 22841 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,49.5 - parent: 12 - - uid: 22842 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,49.5 - parent: 12 - - uid: 22843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,49.5 - parent: 12 - - uid: 22844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,49.5 - parent: 12 - - uid: 22845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,49.5 - parent: 12 - - uid: 22846 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,49.5 - parent: 12 - - uid: 22847 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,49.5 - parent: 12 - - uid: 22848 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,49.5 - parent: 12 - - uid: 22862 - components: - - type: Transform - pos: 50.5,50.5 - parent: 12 - - uid: 22863 - components: - - type: Transform - pos: 50.5,51.5 - parent: 12 - - uid: 22864 - components: - - type: Transform - pos: 50.5,52.5 - parent: 12 - - uid: 22865 - components: - - type: Transform - pos: 50.5,54.5 - parent: 12 - - uid: 22866 - components: - - type: Transform - pos: 50.5,53.5 - parent: 12 - - uid: 22867 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,55.5 - parent: 12 - - uid: 22868 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,55.5 - parent: 12 - - uid: 22869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,55.5 - parent: 12 - - uid: 22870 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,55.5 - parent: 12 - - uid: 22871 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,55.5 - parent: 12 - - uid: 22872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,55.5 - parent: 12 - - uid: 22873 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,55.5 - parent: 12 - - uid: 22874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,55.5 - parent: 12 - - uid: 23128 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-26.5 - parent: 12 - - uid: 23141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-8.5 - parent: 12 - - uid: 23142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-8.5 - parent: 12 - - uid: 23425 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,42.5 - parent: 12 - - uid: 23426 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,42.5 - parent: 12 - - uid: 23427 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,42.5 - parent: 12 - - uid: 23428 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,42.5 - parent: 12 - - uid: 23431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,43.5 - parent: 12 - - uid: 23432 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,44.5 - parent: 12 - - uid: 23433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,44.5 - parent: 12 - - uid: 23690 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,48.5 - parent: 12 - - uid: 23691 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,45.5 - parent: 12 - - uid: 23692 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,46.5 - parent: 12 - - uid: 23693 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,47.5 - parent: 12 - - uid: 23694 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,44.5 - parent: 12 - - uid: 23695 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,44.5 - parent: 12 - - uid: 23696 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,44.5 - parent: 12 - - uid: 23697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,44.5 - parent: 12 - - uid: 23771 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-26.5 - parent: 12 - - uid: 23772 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-26.5 - parent: 12 - - uid: 23847 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,40.5 - parent: 12 - - uid: 23848 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,39.5 - parent: 12 - - uid: 23849 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,39.5 - parent: 12 - - uid: 23850 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,39.5 - parent: 12 - - uid: 23851 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,39.5 - parent: 12 - - uid: 23852 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,39.5 - parent: 12 - - uid: 23853 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,39.5 - parent: 12 - - uid: 23854 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,39.5 - parent: 12 - - uid: 23855 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,39.5 - parent: 12 - - uid: 23856 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,39.5 - parent: 12 - - uid: 23857 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,39.5 - parent: 12 - - uid: 23858 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,39.5 - parent: 12 - - uid: 23859 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,39.5 - parent: 12 - - uid: 23860 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,39.5 - parent: 12 - - uid: 23861 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,39.5 - parent: 12 - - uid: 23862 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,39.5 - parent: 12 - - uid: 23863 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,39.5 - parent: 12 - - uid: 23864 - components: - - type: Transform - pos: -34.5,40.5 - parent: 12 - - uid: 23865 - components: - - type: Transform - pos: -34.5,42.5 - parent: 12 - - uid: 23866 - components: - - type: Transform - pos: -34.5,43.5 - parent: 12 - - uid: 23867 - components: - - type: Transform - pos: -34.5,44.5 - parent: 12 - - uid: 23868 - components: - - type: Transform - pos: -34.5,41.5 - parent: 12 - - uid: 23869 - components: - - type: Transform - pos: -34.5,45.5 - parent: 12 - - uid: 23870 - components: - - type: Transform - pos: -34.5,47.5 - parent: 12 - - uid: 23871 - components: - - type: Transform - pos: -34.5,46.5 - parent: 12 - - uid: 23872 - components: - - type: Transform - pos: -34.5,49.5 - parent: 12 - - uid: 23873 - components: - - type: Transform - pos: -34.5,48.5 - parent: 12 - - uid: 23886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-26.5 - parent: 12 - - uid: 23890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-26.5 - parent: 12 - - uid: 23945 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,49.5 - parent: 12 - - uid: 24038 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,52.5 - parent: 12 - - uid: 24039 - components: - - type: Transform - pos: 57.5,50.5 - parent: 12 - - uid: 24040 - components: - - type: Transform - pos: 57.5,51.5 - parent: 12 - - uid: 24042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,45.5 - parent: 12 - - uid: 24043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,46.5 - parent: 12 - - uid: 24044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,47.5 - parent: 12 - - uid: 24046 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,48.5 - parent: 12 - - uid: 24047 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,48.5 - parent: 12 - - uid: 24048 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,48.5 - parent: 12 - - uid: 24049 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,48.5 - parent: 12 - - uid: 24050 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,48.5 - parent: 12 - - uid: 24051 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,48.5 - parent: 12 - - uid: 24052 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,48.5 - parent: 12 - - uid: 24053 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,48.5 - parent: 12 - - uid: 24054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,48.5 - parent: 12 - - uid: 24055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,48.5 - parent: 12 - - uid: 24056 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,48.5 - parent: 12 - - uid: 24057 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,48.5 - parent: 12 - - uid: 24064 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,44.5 - parent: 12 - - uid: 24066 - components: - - type: Transform - pos: 51.5,48.5 - parent: 12 - - uid: 24067 - components: - - type: Transform - pos: 51.5,49.5 - parent: 12 - - uid: 24068 - components: - - type: Transform - pos: 51.5,50.5 - parent: 12 - - uid: 24069 - components: - - type: Transform - pos: 51.5,51.5 - parent: 12 - - uid: 24070 - components: - - type: Transform - pos: 51.5,52.5 - parent: 12 - - uid: 24071 - components: - - type: Transform - pos: 51.5,53.5 - parent: 12 - - uid: 24072 - components: - - type: Transform - pos: 51.5,54.5 - parent: 12 - - uid: 24073 - components: - - type: Transform - pos: 51.5,55.5 - parent: 12 - - uid: 24074 - components: - - type: Transform - pos: 51.5,56.5 - parent: 12 - - uid: 24075 - components: - - type: Transform - pos: 51.5,57.5 - parent: 12 - - uid: 24076 - components: - - type: Transform - pos: 51.5,58.5 - parent: 12 - - uid: 24077 - components: - - type: Transform - pos: 51.5,59.5 - parent: 12 - - uid: 24078 - components: - - type: Transform - pos: 51.5,60.5 - parent: 12 - - uid: 24153 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,48.5 - parent: 12 - - uid: 24155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-26.5 - parent: 12 - - uid: 24509 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-26.5 - parent: 12 - - uid: 24638 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,15.5 - parent: 12 - - uid: 24699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-26.5 - parent: 12 - - uid: 24700 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,48.5 - parent: 12 - - uid: 25331 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-1.5 - parent: 12 - - uid: 25343 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-26.5 - parent: 12 - - uid: 25371 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-42.5 - parent: 12 - - uid: 25382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-26.5 - parent: 12 - - uid: 25487 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-41.5 - parent: 12 - - uid: 25519 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-26.5 - parent: 12 - - uid: 25520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-26.5 - parent: 12 - - uid: 25945 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-25.5 - parent: 12 - - uid: 25946 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-24.5 - parent: 12 - - uid: 25992 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-47.5 - parent: 12 - - uid: 25993 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-47.5 - parent: 12 - - uid: 25994 - components: - - type: Transform - pos: -38.5,-46.5 - parent: 12 - - uid: 25995 - components: - - type: Transform - pos: -38.5,-45.5 - parent: 12 - - uid: 25996 - components: - - type: Transform - pos: -38.5,-44.5 - parent: 12 - - uid: 25997 - components: - - type: Transform - pos: -38.5,-43.5 - parent: 12 - - uid: 25998 - components: - - type: Transform - pos: -38.5,-42.5 - parent: 12 - - uid: 26076 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-23.5 - parent: 12 - - uid: 26104 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-13.5 - parent: 12 - - uid: 26114 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-21.5 - parent: 12 - - uid: 26135 - components: - - type: Transform - pos: 10.5,-41.5 - parent: 12 - - uid: 26136 - components: - - type: Transform - pos: 10.5,-42.5 - parent: 12 - - uid: 26137 - components: - - type: Transform - pos: 10.5,-43.5 - parent: 12 - - uid: 26140 - components: - - type: Transform - pos: 10.5,-44.5 - parent: 12 - - uid: 26141 - components: - - type: Transform - pos: 10.5,-45.5 - parent: 12 - - uid: 26142 - components: - - type: Transform - pos: 10.5,-46.5 - parent: 12 - - uid: 26143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-47.5 - parent: 12 - - uid: 26218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-20.5 - parent: 12 - - uid: 26439 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-19.5 - parent: 12 - - uid: 26801 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-0.5 - parent: 12 - - uid: 27305 - components: - - type: Transform - pos: 43.5,-3.5 - parent: 12 - - uid: 27306 - components: - - type: Transform - pos: 43.5,-2.5 - parent: 12 - - uid: 27307 - components: - - type: Transform - pos: 43.5,-1.5 - parent: 12 - - uid: 27388 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,7.5 - parent: 12 - - uid: 27830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,8.5 - parent: 12 - - uid: 27835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,8.5 - parent: 12 - - uid: 27836 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,8.5 - parent: 12 - - uid: 27891 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,8.5 - parent: 12 - - uid: 27892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,8.5 - parent: 12 - - uid: 27893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,8.5 - parent: 12 - - uid: 27894 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,8.5 - parent: 12 - - uid: 27895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,8.5 - parent: 12 - - uid: 27896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,8.5 - parent: 12 - - uid: 27897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,8.5 - parent: 12 - - uid: 27898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,8.5 - parent: 12 - - uid: 27899 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,8.5 - parent: 12 - - uid: 27900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,8.5 - parent: 12 - - uid: 27902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,8.5 - parent: 12 - - uid: 27903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,8.5 - parent: 12 - - uid: 27904 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,9.5 - parent: 12 - - uid: 27905 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,10.5 - parent: 12 - - uid: 27906 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,11.5 - parent: 12 - - uid: 27907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,12.5 - parent: 12 - - uid: 27998 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-26.5 - parent: 12 - - uid: 27999 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-26.5 - parent: 12 - - uid: 28000 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-26.5 - parent: 12 - - uid: 28001 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-26.5 - parent: 12 - - uid: 28002 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-26.5 - parent: 12 - - uid: 28003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-26.5 - parent: 12 - - uid: 28004 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-26.5 - parent: 12 - - uid: 28005 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-26.5 - parent: 12 - - uid: 28006 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-26.5 - parent: 12 - - uid: 28007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-26.5 - parent: 12 - - uid: 28008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-26.5 - parent: 12 - - uid: 28009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-26.5 - parent: 12 - - uid: 28010 - components: - - type: Transform - pos: -14.5,-27.5 - parent: 12 - - uid: 28011 - components: - - type: Transform - pos: -14.5,-28.5 - parent: 12 - - uid: 28012 - components: - - type: Transform - pos: -14.5,-29.5 - parent: 12 - - uid: 28013 - components: - - type: Transform - pos: -14.5,-30.5 - parent: 12 - - uid: 28014 - components: - - type: Transform - pos: -14.5,-31.5 - parent: 12 - - uid: 28015 - components: - - type: Transform - pos: -14.5,-32.5 - parent: 12 - - uid: 28016 - components: - - type: Transform - pos: -14.5,-33.5 - parent: 12 - - uid: 28017 - components: - - type: Transform - pos: -14.5,-34.5 - parent: 12 - - uid: 28018 - components: - - type: Transform - pos: -15.5,-36.5 - parent: 12 - - uid: 28019 - components: - - type: Transform - pos: -15.5,-37.5 - parent: 12 - - uid: 28020 - components: - - type: Transform - pos: -15.5,-38.5 - parent: 12 - - uid: 28021 - components: - - type: Transform - pos: -15.5,-39.5 - parent: 12 - - uid: 28022 - components: - - type: Transform - pos: -15.5,-40.5 - parent: 12 - - uid: 28023 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-41.5 - parent: 12 - - uid: 28024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-41.5 - parent: 12 - - uid: 28025 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-41.5 - parent: 12 - - uid: 28026 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-41.5 - parent: 12 - - uid: 28027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-41.5 - parent: 12 - - uid: 28028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-41.5 - parent: 12 - - uid: 28029 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-42.5 - parent: 12 - - uid: 28030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-43.5 - parent: 12 - - uid: 28031 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-44.5 - parent: 12 - - uid: 28032 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-45.5 - parent: 12 - - uid: 28033 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-46.5 - parent: 12 - - uid: 28034 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-46.5 - parent: 12 - - uid: 28035 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-46.5 - parent: 12 - - uid: 28055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,12.5 - parent: 12 - - uid: 28076 - components: - - type: Transform - pos: 32.5,18.5 - parent: 12 - - uid: 28077 - components: - - type: Transform - pos: 32.5,19.5 - parent: 12 - - uid: 28078 - components: - - type: Transform - pos: 32.5,20.5 - parent: 12 - - uid: 28079 - components: - - type: Transform - pos: 32.5,21.5 - parent: 12 - - uid: 28080 - components: - - type: Transform - pos: 32.5,22.5 - parent: 12 - - uid: 28081 - components: - - type: Transform - pos: 32.5,23.5 - parent: 12 - - uid: 28082 - components: - - type: Transform - pos: 32.5,24.5 - parent: 12 - - uid: 28083 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,25.5 - parent: 12 - - uid: 28084 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,25.5 - parent: 12 - - uid: 28089 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,26.5 - parent: 12 - - uid: 28090 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,27.5 - parent: 12 - - uid: 28091 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,28.5 - parent: 12 - - uid: 28092 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,29.5 - parent: 12 - - uid: 28093 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,30.5 - parent: 12 - - uid: 28094 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,31.5 - parent: 12 - - uid: 28095 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,32.5 - parent: 12 - - uid: 28096 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,33.5 - parent: 12 - - uid: 28097 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,34.5 - parent: 12 - - uid: 28098 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,35.5 - parent: 12 - - uid: 28099 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,36.5 - parent: 12 - - uid: 28100 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,37.5 - parent: 12 - - uid: 28101 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,38.5 - parent: 12 - - uid: 28102 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,39.5 - parent: 12 - - uid: 28103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,40.5 - parent: 12 - - uid: 28104 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,41.5 - parent: 12 - - uid: 28105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,42.5 - parent: 12 - - uid: 28106 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,43.5 - parent: 12 - - uid: 28107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,43.5 - parent: 12 - - uid: 28108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,43.5 - parent: 12 - - uid: 28109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,43.5 - parent: 12 - - uid: 28110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,43.5 - parent: 12 - - uid: 28111 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,43.5 - parent: 12 - - uid: 28112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,43.5 - parent: 12 - - uid: 28113 - components: - - type: Transform - pos: 43.5,44.5 - parent: 12 - - uid: 28120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,45.5 - parent: 12 - - uid: 28139 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,12.5 - parent: 12 - - uid: 28147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,12.5 - parent: 12 - - uid: 28151 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,13.5 - parent: 12 - - uid: 28152 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,15.5 - parent: 12 - - uid: 28153 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,16.5 - parent: 12 - - uid: 28154 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,17.5 - parent: 12 - - uid: 28155 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,19.5 - parent: 12 - - uid: 28156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,20.5 - parent: 12 - - uid: 28164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,21.5 - parent: 12 - - uid: 28217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,14.5 - parent: 12 - - uid: 28218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,18.5 - parent: 12 - - uid: 28219 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,22.5 - parent: 12 - - uid: 28446 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-26.5 - parent: 12 - - uid: 28447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-26.5 - parent: 12 - - uid: 28448 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-26.5 - parent: 12 - - uid: 28449 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-26.5 - parent: 12 - - uid: 28450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-26.5 - parent: 12 - - uid: 28451 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-26.5 - parent: 12 - - uid: 28452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-26.5 - parent: 12 - - uid: 28810 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-44.5 - parent: 12 - - uid: 28847 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,52.5 - parent: 12 - - uid: 28945 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-1.5 - parent: 12 - - uid: 28946 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-1.5 - parent: 12 - - uid: 28948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-1.5 - parent: 12 - - uid: 29016 - components: - - type: Transform - pos: 18.5,21.5 - parent: 12 - - uid: 29017 - components: - - type: Transform - pos: 18.5,22.5 - parent: 12 - - uid: 29099 - components: - - type: Transform - pos: -9.5,-1.5 - parent: 12 - - uid: 29101 - components: - - type: Transform - pos: -10.5,-3.5 - parent: 12 - - uid: 29104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-4.5 - parent: 12 - - uid: 29105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-7.5 - parent: 12 - - uid: 29106 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-6.5 - parent: 12 - - uid: 29109 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-5.5 - parent: 12 - - uid: 29110 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,21.5 - parent: 12 - - uid: 29113 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-8.5 - parent: 12 - - uid: 29160 - components: - - type: Transform - pos: -10.5,-9.5 - parent: 12 - - uid: 29161 - components: - - type: Transform - pos: -9.5,-11.5 - parent: 12 - - uid: 29167 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-22.5 - parent: 12 - - uid: 29168 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-21.5 - parent: 12 - - uid: 29169 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-19.5 - parent: 12 - - uid: 29170 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-18.5 - parent: 12 - - uid: 29171 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-17.5 - parent: 12 - - uid: 29172 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-16.5 - parent: 12 - - uid: 29173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-15.5 - parent: 12 - - uid: 29174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-14.5 - parent: 12 - - uid: 29175 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-13.5 - parent: 12 - - uid: 29188 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,0.5 - parent: 12 - - uid: 29189 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,1.5 - parent: 12 - - uid: 29191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,2.5 - parent: 12 - - uid: 29192 - components: - - type: Transform - pos: -6.5,3.5 - parent: 12 - - uid: 29193 - components: - - type: Transform - pos: -6.5,4.5 - parent: 12 - - uid: 29194 - components: - - type: Transform - pos: -6.5,5.5 - parent: 12 - - uid: 29195 - components: - - type: Transform - pos: -6.5,6.5 - parent: 12 - - uid: 29196 - components: - - type: Transform - pos: -5.5,8.5 - parent: 12 - - uid: 29212 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-38.5 - parent: 12 - - uid: 29255 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-38.5 - parent: 12 - - uid: 29286 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-38.5 - parent: 12 - - uid: 29369 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-16.5 - parent: 12 - - uid: 29370 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-16.5 - parent: 12 - - uid: 29377 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-9.5 - parent: 12 - - uid: 29378 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-8.5 - parent: 12 - - uid: 29379 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-7.5 - parent: 12 - - uid: 29380 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-5.5 - parent: 12 - - uid: 29381 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-4.5 - parent: 12 - - uid: 29382 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-3.5 - parent: 12 - - uid: 29383 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-2.5 - parent: 12 - - uid: 29384 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-1.5 - parent: 12 - - uid: 29385 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-0.5 - parent: 12 - - uid: 29386 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-6.5 - parent: 12 - - uid: 30809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,46.5 - parent: 12 - - uid: 31245 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-68.5 - parent: 12 - - uid: 31246 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-68.5 - parent: 12 - - uid: 31247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-68.5 - parent: 12 - - uid: 31248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-68.5 - parent: 12 - - uid: 31250 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-67.5 - parent: 12 - - uid: 31251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-67.5 - parent: 12 - - uid: 31801 - components: - - type: Transform - pos: -9.5,61.5 - parent: 12 - - uid: 31802 - components: - - type: Transform - pos: -9.5,62.5 - parent: 12 - - uid: 31803 - components: - - type: Transform - pos: -9.5,63.5 - parent: 12 - - uid: 31804 - components: - - type: Transform - pos: -9.5,64.5 - parent: 12 - - uid: 31805 - components: - - type: Transform - pos: -9.5,65.5 - parent: 12 - - uid: 31806 - components: - - type: Transform - pos: -9.5,66.5 - parent: 12 - - uid: 31807 - components: - - type: Transform - pos: -9.5,67.5 - parent: 12 - - uid: 31808 - components: - - type: Transform - pos: -9.5,68.5 - parent: 12 - - uid: 31809 - components: - - type: Transform - pos: -9.5,69.5 - parent: 12 - - uid: 31810 - components: - - type: Transform - pos: -9.5,70.5 - parent: 12 - - uid: 31811 - components: - - type: Transform - pos: -9.5,71.5 - parent: 12 - - uid: 31812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,72.5 - parent: 12 - - uid: 31912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-12.5 - parent: 12 - - uid: 31913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-21.5 - parent: 12 - - uid: 31914 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-21.5 - parent: 12 - - uid: 31915 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-21.5 - parent: 12 - - uid: 31919 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-24.5 - parent: 12 - - uid: 31920 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-23.5 - parent: 12 - - uid: 31921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-22.5 - parent: 12 - - uid: 31923 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-20.5 - parent: 12 - - uid: 31924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-19.5 - parent: 12 - - uid: 31925 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-18.5 - parent: 12 - - uid: 31926 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-17.5 - parent: 12 - - uid: 31927 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-16.5 - parent: 12 - - uid: 31928 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-15.5 - parent: 12 - - uid: 31929 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-14.5 - parent: 12 - - uid: 31930 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-13.5 - parent: 12 - - uid: 31931 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-12.5 - parent: 12 - - uid: 31932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-11.5 - parent: 12 - - uid: 31933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-10.5 - parent: 12 - - uid: 31934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-9.5 - parent: 12 - - uid: 31935 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-8.5 - parent: 12 - - uid: 31936 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-7.5 - parent: 12 - - uid: 31937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-6.5 - parent: 12 - - uid: 31938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-5.5 - parent: 12 - - uid: 31939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-4.5 - parent: 12 - - uid: 31940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-3.5 - parent: 12 - - uid: 31941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-2.5 - parent: 12 - - uid: 31942 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-1.5 - parent: 12 - - uid: 31943 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-0.5 - parent: 12 - - uid: 31944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,0.5 - parent: 12 - - uid: 31945 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,1.5 - parent: 12 - - uid: 31948 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,3.5 - parent: 12 - - uid: 31949 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,4.5 - parent: 12 - - uid: 31950 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,5.5 - parent: 12 - - uid: 31951 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,6.5 - parent: 12 - - uid: 31952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,7.5 - parent: 12 - - uid: 31953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,8.5 - parent: 12 - - uid: 31954 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,9.5 - parent: 12 - - uid: 31955 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,10.5 - parent: 12 - - uid: 31956 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,11.5 - parent: 12 - - uid: 31957 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,12.5 - parent: 12 - - uid: 31958 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,13.5 - parent: 12 - - uid: 31959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,14.5 - parent: 12 - - uid: 31960 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,15.5 - parent: 12 - - uid: 31961 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,16.5 - parent: 12 - - uid: 31962 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,17.5 - parent: 12 - - uid: 31963 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,18.5 - parent: 12 - - uid: 31964 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,19.5 - parent: 12 - - uid: 31965 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,20.5 - parent: 12 - - uid: 31966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,21.5 - parent: 12 - - uid: 31967 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,22.5 - parent: 12 - - uid: 31968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,23.5 - parent: 12 - - uid: 31969 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,24.5 - parent: 12 - - uid: 31970 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,25.5 - parent: 12 - - uid: 31971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,26.5 - parent: 12 - - uid: 31972 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,27.5 - parent: 12 - - uid: 31973 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,28.5 - parent: 12 - - uid: 31974 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,29.5 - parent: 12 - - uid: 31975 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,30.5 - parent: 12 - - uid: 31976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,31.5 - parent: 12 - - uid: 31977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,32.5 - parent: 12 - - uid: 31978 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,33.5 - parent: 12 - - uid: 31979 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,34.5 - parent: 12 - - uid: 31980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,35.5 - parent: 12 - - uid: 31981 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,36.5 - parent: 12 - - uid: 31982 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,37.5 - parent: 12 - - uid: 31983 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,38.5 - parent: 12 - - uid: 31984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,39.5 - parent: 12 - - uid: 31985 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,40.5 - parent: 12 - - uid: 31987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,41.5 - parent: 12 - - uid: 31988 - components: - - type: Transform - pos: 28.5,54.5 - parent: 12 - - uid: 31989 - components: - - type: Transform - pos: 28.5,55.5 - parent: 12 - - uid: 31996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-21.5 - parent: 12 - - uid: 32003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,45.5 - parent: 12 - - uid: 32004 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,45.5 - parent: 12 - - uid: 32005 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,45.5 - parent: 12 - - uid: 32006 - components: - - type: Transform - pos: 56.5,46.5 - parent: 12 - - uid: 32007 - components: - - type: Transform - pos: 57.5,48.5 - parent: 12 - - uid: 32008 - components: - - type: Transform - pos: 57.5,49.5 - parent: 12 -- proto: DisposalPipeBroken - entities: - - uid: 4901 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,55.5 - parent: 12 - - uid: 9045 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-18.5 - parent: 12 - - uid: 20296 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,50.5 - parent: 12 -- proto: DisposalRouter - entities: - - uid: 21663 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-26.5 - parent: 12 - - type: DisposalRouter - tags: - - Engineering - - uid: 27958 - components: - - type: Transform - pos: 48.5,-17.5 - parent: 12 - - type: DisposalRouter - tags: - - Cargo - - uid: 27959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,54.5 - parent: 12 - - type: DisposalRouter - tags: - - Freezer -- proto: DisposalRouterFlipped - entities: - - uid: 8952 - components: - - type: Transform - pos: 50.5,49.5 - parent: 12 - - type: DisposalRouter - tags: - - Botany - - uid: 10839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-26.5 - parent: 12 - - type: DisposalRouter - tags: - - Chemistry - - uid: 12126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,53.5 - parent: 12 - - type: DisposalRouter - tags: - - Kitchen - - uid: 24035 - components: - - type: Transform - pos: 50.5,46.5 - parent: 12 - - type: DisposalRouter - tags: - - Ranch - - uid: 31922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-21.5 - parent: 12 - - type: DisposalRouter - tags: - - Science - - uid: 31986 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,41.5 - parent: 12 - - type: DisposalRouter - tags: - - Security -- proto: DisposalTrunk - entities: - - uid: 1853 - components: - - type: Transform - pos: -41.5,-46.5 - parent: 12 - - uid: 1854 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-41.5 - parent: 12 - - uid: 1855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-39.5 - parent: 12 - - uid: 1857 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-28.5 - parent: 12 - - uid: 1858 - components: - - type: Transform - pos: -42.5,-27.5 - parent: 12 - - uid: 1859 - components: - - type: Transform - pos: -27.5,-18.5 - parent: 12 - - uid: 3387 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,71.5 - parent: 12 - - uid: 3821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-57.5 - parent: 12 - - uid: 3822 - components: - - type: Transform - pos: -22.5,-53.5 - parent: 12 - - uid: 3869 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-47.5 - parent: 12 - - uid: 3889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-44.5 - parent: 12 - - uid: 3891 - components: - - type: Transform - pos: 3.5,-38.5 - parent: 12 - - uid: 4132 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-52.5 - parent: 12 - - uid: 4150 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-52.5 - parent: 12 - - uid: 4301 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-35.5 - parent: 12 - - uid: 4675 - components: - - type: Transform - pos: 43.5,39.5 - parent: 12 - - uid: 5209 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,61.5 - parent: 12 - - uid: 6265 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: 9.5,-32.5 - parent: 12 - - uid: 6848 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-31.5 - parent: 12 - - uid: 6849 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-32.5 - parent: 12 - - uid: 6850 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-31.5 - parent: 12 - - uid: 6863 - components: - - type: Transform - pos: 18.5,-36.5 - parent: 12 - - uid: 7515 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,50.5 - parent: 12 - - uid: 8349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-32.5 - parent: 12 - - uid: 8350 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-37.5 - parent: 12 - - uid: 8831 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,21.5 - parent: 12 - - uid: 8991 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-21.5 - parent: 12 - - uid: 9111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-29.5 - parent: 12 - - uid: 9112 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-29.5 - parent: 12 - - uid: 9446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-22.5 - parent: 12 - - uid: 9633 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-23.5 - parent: 12 - - uid: 10413 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-2.5 - parent: 12 - - uid: 10915 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-8.5 - parent: 12 - - uid: 12285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,17.5 - parent: 12 - - uid: 12333 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,14.5 - parent: 12 - - uid: 12637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,19.5 - parent: 12 - - uid: 12702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,32.5 - parent: 12 - - uid: 12721 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,28.5 - parent: 12 - - uid: 13606 - components: - - type: Transform - pos: 30.5,33.5 - parent: 12 - - uid: 13653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,26.5 - parent: 12 - - uid: 13868 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-44.5 - parent: 12 - - uid: 13963 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,35.5 - parent: 12 - - uid: 15034 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,46.5 - parent: 12 - - uid: 15104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,45.5 - parent: 12 - - uid: 15127 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,53.5 - parent: 12 - - uid: 15142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,56.5 - parent: 12 - - uid: 15398 - components: - - type: Transform - pos: 39.5,53.5 - parent: 12 - - uid: 15631 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,53.5 - parent: 12 - - uid: 16711 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,4.5 - parent: 12 - - uid: 16712 - components: - - type: Transform - pos: -26.5,19.5 - parent: 12 - - uid: 17726 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,21.5 - parent: 12 - - uid: 17728 - components: - - type: Transform - pos: -54.5,34.5 - parent: 12 - - uid: 19164 - components: - - type: Transform - pos: -29.5,-41.5 - parent: 12 - - uid: 20147 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,58.5 - parent: 12 - - uid: 20149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,37.5 - parent: 12 - - uid: 20150 - components: - - type: Transform - pos: -24.5,41.5 - parent: 12 - - uid: 21328 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-32.5 - parent: 12 - - uid: 21345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,38.5 - parent: 12 - - uid: 21475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,25.5 - parent: 12 - - uid: 21664 - components: - - 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 - rot: 1.5707963267948966 rad - pos: -6.5,54.5 - parent: 12 - - uid: 22417 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,60.5 - parent: 12 - - uid: 22541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,41.5 - parent: 12 - - uid: 22751 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,82.5 - parent: 12 - - uid: 22752 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,82.5 - parent: 12 - - uid: 22806 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,64.5 - parent: 12 - - uid: 22809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,59.5 - parent: 12 - - uid: 23588 - components: - - type: Transform - pos: 67.5,50.5 - parent: 12 - - uid: 23687 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,48.5 - parent: 12 - - uid: 23877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,50.5 - parent: 12 - - uid: 24036 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,52.5 - parent: 12 - - uid: 24059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,47.5 - parent: 12 - - uid: 24154 - components: - - type: Transform - pos: 53.5,49.5 - parent: 12 - - uid: 26522 - components: - - type: Transform - pos: 33.5,-9.5 - parent: 12 - - uid: 26646 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-12.5 - parent: 12 - - uid: 27021 - components: - - type: Transform - pos: 10.5,-18.5 - parent: 12 - - uid: 27386 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,6.5 - parent: 12 - - uid: 27955 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-17.5 - parent: 12 - - uid: 28382 - components: - - type: Transform - pos: 35.5,18.5 - parent: 12 - - uid: 29166 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-24.5 - parent: 12 - - uid: 29387 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,0.5 - parent: 12 - - uid: 31242 - components: - - type: Transform - pos: -1.5,-66.5 - parent: 12 - - uid: 31243 - components: - - type: Transform - pos: -0.5,-66.5 - parent: 12 - - uid: 31254 - components: - - type: Transform - pos: -4.5,-67.5 - parent: 12 - - uid: 31255 - components: - - type: Transform - pos: 2.5,-67.5 - parent: 12 - - uid: 32115 - components: - - type: Transform - pos: 54.5,64.5 - parent: 12 -- proto: DisposalUnit - entities: - - uid: 1845 - components: - - type: Transform - pos: -41.5,-46.5 - parent: 12 - - uid: 1846 - components: - - type: Transform - pos: -40.5,-41.5 - parent: 12 - - uid: 1847 - components: - - type: Transform - pos: -42.5,-27.5 - parent: 12 - - uid: 1848 - components: - - type: Transform - pos: -31.5,-28.5 - parent: 12 - - uid: 1849 - components: - - type: Transform - pos: -27.5,-18.5 - parent: 12 - - uid: 1851 - components: - - type: Transform - pos: -29.5,-41.5 - parent: 12 - - uid: 1852 - components: - - type: Transform - pos: -42.5,-39.5 - parent: 12 - - uid: 1940 - components: - - type: Transform - pos: -28.5,38.5 - parent: 12 - - uid: 2938 - components: - - type: Transform - pos: -1.5,-35.5 - parent: 12 - - uid: 3112 - components: - - type: Transform - pos: 3.5,-38.5 - parent: 12 - - uid: 3460 - components: - - type: Transform - pos: -11.5,71.5 - parent: 12 - - uid: 3818 - components: - - type: Transform - pos: -15.5,-57.5 - parent: 12 - - uid: 3819 - components: - - type: Transform - pos: -22.5,-53.5 - parent: 12 - - uid: 3820 - components: - - type: Transform - pos: -21.5,-47.5 - parent: 12 - - uid: 3890 - components: - - type: Transform - pos: -1.5,-44.5 - parent: 12 - - uid: 4131 - components: - - type: Transform - pos: 8.5,-52.5 - parent: 12 - - uid: 4669 - components: - - type: Transform - pos: 35.5,-23.5 - parent: 12 - - uid: 5110 - components: - - type: Transform - pos: 56.5,-8.5 - parent: 12 - - uid: 6203 - components: - - type: Transform - pos: 56.5,-22.5 - parent: 12 - - uid: 6738 - components: - - type: Transform - pos: -26.5,-2.5 - parent: 12 - - uid: 6862 - components: - - type: Transform - pos: 18.5,-36.5 - parent: 12 - - uid: 7221 - components: - - type: Transform - pos: 55.5,6.5 - parent: 12 - - uid: 8347 - components: - - type: Transform - pos: 54.5,-37.5 - parent: 12 - - uid: 8348 - components: - - type: Transform - pos: 76.5,-32.5 - parent: 12 - - uid: 9110 - components: - - type: Transform - pos: 46.5,-29.5 - parent: 12 - - uid: 9113 - components: - - type: Transform - pos: 54.5,-29.5 - parent: 12 - - uid: 9296 - components: - - type: Transform - pos: 44.5,-11.5 - parent: 12 - - uid: 11239 - components: - - type: Transform - pos: -8.5,-24.5 - parent: 12 - - uid: 11503 - components: - - type: MetaData - name: disposal unit to waste ejection - - type: Transform - pos: 37.5,19.5 - parent: 12 - - uid: 12190 - components: - - type: Transform - pos: -7.5,-52.5 - parent: 12 - - uid: 12307 - components: - - 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 - pos: 5.5,32.5 - parent: 12 - - uid: 12723 - components: - - type: Transform - pos: 37.5,28.5 - parent: 12 - - uid: 13605 - components: - - type: Transform - pos: 30.5,33.5 - parent: 12 - - uid: 13667 - components: - - type: Transform - pos: 24.5,26.5 - parent: 12 - - uid: 13937 - components: - - type: Transform - pos: 31.5,35.5 - parent: 12 - - uid: 15035 - components: - - type: Transform - pos: 17.5,46.5 - parent: 12 - - uid: 15103 - components: - - type: Transform - pos: 27.5,45.5 - parent: 12 - - uid: 15129 - components: - - type: Transform - pos: 31.5,53.5 - parent: 12 - - uid: 16709 - components: - - type: Transform - pos: -23.5,4.5 - parent: 12 - - uid: 16710 - components: - - type: Transform - pos: -26.5,19.5 - parent: 12 - - uid: 17725 - components: - - type: Transform - pos: -35.5,21.5 - parent: 12 - - uid: 17729 - components: - - type: Transform - pos: -54.5,34.5 - parent: 12 - - uid: 19352 - components: - - type: Transform - pos: 67.5,47.5 - parent: 12 - - uid: 19865 - components: - - type: Transform - pos: -32.5,58.5 - parent: 12 - - uid: 20145 - components: - - type: Transform - pos: -39.5,37.5 - parent: 12 - - uid: 20146 - components: - - type: Transform - pos: -24.5,41.5 - parent: 12 - - uid: 21329 - components: - - type: Transform - pos: -17.5,-32.5 - parent: 12 - - uid: 21474 - components: - - type: Transform - pos: -25.5,25.5 - parent: 12 - - uid: 21665 - components: - - type: Transform - pos: -14.5,45.5 - parent: 12 - - uid: 22204 - components: - - type: Transform - pos: 10.5,82.5 - parent: 12 - - uid: 22416 - components: - - type: Transform - pos: -6.5,60.5 - parent: 12 - - uid: 22543 - components: - - type: Transform - pos: 9.5,41.5 - parent: 12 - - uid: 22719 - components: - - type: Transform - pos: 15.5,64.5 - parent: 12 - - uid: 22750 - components: - - type: Transform - pos: 26.5,82.5 - parent: 12 - - uid: 22807 - components: - - type: Transform - pos: 13.5,59.5 - parent: 12 - - uid: 23686 - components: - - type: Transform - pos: 43.5,48.5 - parent: 12 - - uid: 24065 - components: - - type: Transform - pos: 52.5,61.5 - parent: 12 - - uid: 24152 - components: - - type: Transform - pos: 53.5,49.5 - parent: 12 - - uid: 25983 - components: - - type: Transform - pos: 43.5,39.5 - parent: 12 - - uid: 26843 - components: - - type: Transform - pos: -38.5,50.5 - parent: 12 - - uid: 26927 - components: - - type: Transform - pos: 59.5,-40.5 - parent: 12 - - uid: 28375 - components: - - type: Transform - pos: 16.5,-12.5 - parent: 12 - - uid: 29391 - components: - - type: Transform - pos: 29.5,0.5 - parent: 12 - - uid: 31240 - components: - - type: Transform - pos: -1.5,-66.5 - parent: 12 - - uid: 31241 - components: - - type: Transform - pos: -0.5,-66.5 - parent: 12 - - uid: 32106 - components: - - type: Transform - pos: 54.5,64.5 - parent: 12 -- proto: DisposalYJunction - entities: - - uid: 6851 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-32.5 - parent: 12 - - uid: 6852 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-31.5 - parent: 12 - - uid: 13964 - components: - - type: Transform - pos: 34.5,41.5 - parent: 12 - - uid: 18312 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,10.5 - parent: 12 - - uid: 22801 - components: - - type: Transform - pos: 19.5,67.5 - parent: 12 - - uid: 23430 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,42.5 - parent: 12 - - uid: 24006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-27.5 - parent: 12 -- proto: DogBed - entities: - - uid: 18310 - components: - - type: Transform - pos: 49.5,-7.5 - parent: 12 - - uid: 18663 - components: - - type: Transform - pos: -40.5,23.5 - parent: 12 - - uid: 19297 - components: - - type: Transform - pos: -30.5,-41.5 - parent: 12 - - uid: 19677 - components: - - type: Transform - pos: -15.5,72.5 - parent: 12 - - uid: 21986 - components: - - type: Transform - pos: -39.5,-20.5 - parent: 12 - - uid: 22097 - components: - - type: Transform - pos: -39.5,50.5 - parent: 12 - - uid: 24692 - components: - - type: Transform - pos: -50.5,21.5 - parent: 12 -- proto: DonkpocketBoxSpawner - entities: - - uid: 23450 - components: - - type: Transform - pos: 30.5,52.5 - parent: 12 -- proto: DoorElectronics - entities: - - uid: 10366 - components: - - type: Transform - pos: -22.617483,-10.352707 - parent: 12 - - uid: 26075 - components: - - 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 - components: - - type: Transform - pos: -12.227327,8.931523 - parent: 12 -- proto: DoubleEmergencyOxygenTankFilled - entities: - - uid: 16509 - components: - - type: Transform - pos: -12.602327,8.983606 - parent: 12 -- proto: Dresser - entities: - - uid: 22469 - components: - - type: Transform - pos: 4.5,55.5 - parent: 12 -- proto: DresserCaptainFilled - entities: - - uid: 17409 - components: - - type: Transform - pos: -53.5,20.5 - parent: 12 -- proto: DresserChiefEngineerFilled - entities: - - uid: 5467 - components: - - type: Transform - pos: 27.5,-23.5 - parent: 12 -- proto: DresserChiefMedicalOfficerFilled - entities: - - uid: 4698 - components: - - type: Transform - pos: -9.5,-37.5 - parent: 12 -- proto: DresserHeadOfPersonnelFilled - entities: - - uid: 18866 - components: - - type: Transform - pos: -42.5,25.5 - parent: 12 -- proto: DresserHeadOfSecurityFilled - entities: - - uid: 20814 - components: - - type: Transform - pos: -42.5,36.5 - parent: 12 -- proto: DresserQuarterMasterFilled - entities: - - uid: 25190 - components: - - type: Transform - pos: 45.5,-8.5 - parent: 12 -- proto: DresserResearchDirectorFilled - entities: - - uid: 1815 - components: - - 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 - components: - - type: Transform - pos: -32.3834,32.63709 - parent: 12 - - uid: 22509 - components: - - type: Transform - parent: 22505 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 28683 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 52.62303,6.1613517 - parent: 12 - - uid: 28684 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 52.37303,6.5919075 - parent: 12 - - uid: 32110 - components: - - type: Transform - pos: 55.682777,64.744896 - parent: 12 - - uid: 32111 - components: - - type: Transform - pos: 55.307777,64.59201 - parent: 12 -- proto: DrinkBeerCan - entities: - - uid: 13717 - components: - - type: Transform - pos: 18.35898,29.672634 - parent: 12 - - uid: 13718 - components: - - type: Transform - pos: 18.525648,29.464302 - parent: 12 - - uid: 22507 - components: - - type: Transform - parent: 22505 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22515 - components: - - type: Transform - parent: 22505 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22517 - components: - - type: Transform - parent: 22505 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: DrinkBlueCuracaoBottleFull - entities: - - uid: 20833 - components: - - type: Transform - pos: -43.32282,32.806873 - parent: 12 -- proto: DrinkBlueCuracaoGlass - entities: - - uid: 30230 - components: - - type: Transform - pos: -6.9176617,63.82557 - parent: 12 -- proto: DrinkBottleOfNothingFull - entities: - - uid: 22691 - components: - - type: Transform - pos: 3.3723278,57.41803 - parent: 12 -- proto: DrinkCoffeeJug - entities: - - uid: 4034 - components: - - type: Transform - pos: -33.65946,-23.452644 - parent: 12 -- proto: DrinkCoffeeLiqueurBottleFull - entities: - - uid: 21412 - components: - - type: Transform - pos: -33.231888,44.587296 - parent: 12 -- proto: DrinkColaCan - entities: - - uid: 13334 - components: - - type: Transform - pos: 54.281384,28.590036 - parent: 12 -- proto: DrinkFlask - entities: - - uid: 17415 - components: - - type: Transform - pos: -49.320602,19.989155 - parent: 12 -- proto: DrinkGildlagerBottleFull - entities: - - uid: 31998 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -30.212772,11.4973545 - 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 - rot: -43.98229715025713 rad - pos: -57.251377,-13.417505 - parent: 12 - - uid: 8343 - components: - - type: Transform - rot: -43.98229715025713 rad - pos: -57.626377,-13.21438 - parent: 12 - - uid: 11435 - components: - - type: Transform - pos: 38.313904,-31.611166 - parent: 12 - - uid: 17626 - components: - - type: Transform - pos: -55.749138,33.626568 - parent: 12 - - uid: 17627 - components: - - type: Transform - pos: -55.342888,33.449482 - parent: 12 - - uid: 17628 - components: - - type: Transform - pos: -49.737614,34.624363 - parent: 12 - - uid: 17629 - components: - - type: Transform - pos: -49.268864,34.353527 - parent: 12 - - uid: 21457 - components: - - type: Transform - pos: -32.761353,32.672523 - parent: 12 - - uid: 22506 - components: - - type: Transform - parent: 22505 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22508 - components: - - type: Transform - parent: 22505 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22510 - components: - - type: Transform - parent: 22505 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22511 - components: - - type: Transform - parent: 22505 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: DrinkGlassWhite - entities: - - uid: 31687 - components: - - type: Transform - pos: 24.274195,-28.126541 - parent: 12 -- proto: DrinkGoldenCup - entities: - - uid: 10942 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -31.42805,11.573797 - parent: 12 -- proto: DrinkGreenTea - entities: - - uid: 1998 - components: - - type: Transform - pos: -35.72964,-20.740477 - parent: 12 -- proto: DrinkGreenTeaGlass - entities: - - uid: 30241 - components: - - type: Transform - pos: -12.344746,61.094505 - parent: 12 -- proto: DrinkHippiesDelightGlass - entities: - - uid: 12275 - components: - - 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 - components: - - type: Transform - pos: -21.66724,-53.695744 - parent: 12 - - uid: 3805 - components: - - type: Transform - pos: -21.281977,-53.420555 - parent: 12 - - uid: 4035 - components: - - type: Transform - pos: -33.263626,-23.608894 - parent: 12 - - uid: 4036 - components: - - type: Transform - pos: -33.242794,-23.30681 - parent: 12 - - uid: 4724 - components: - - type: Transform - pos: 63.518173,-26.590563 - parent: 12 - - uid: 8908 - components: - - type: Transform - pos: 55.37848,-34.243008 - parent: 12 - - uid: 8911 - components: - - type: Transform - pos: 49.248596,-11.526512 - parent: 12 - - uid: 16762 - components: - - type: Transform - pos: -19.754375,2.6274414 - parent: 12 - - uid: 16763 - components: - - type: Transform - pos: -19.68099,2.4235983 - parent: 12 - - uid: 17600 - components: - - type: Transform - pos: -55.612465,24.675547 - parent: 12 - - uid: 17601 - components: - - type: Transform - pos: -55.17216,24.72447 - parent: 12 - - uid: 17602 - components: - - type: Transform - pos: -55.33116,24.357552 - parent: 12 - - uid: 18874 - components: - - type: Transform - pos: -43.471462,21.802345 - parent: 12 - - uid: 21410 - components: - - type: Transform - pos: -33.75304,44.754787 - parent: 12 - - uid: 21411 - components: - - type: Transform - pos: -33.58722,44.43513 - parent: 12 - - uid: 31049 - components: - - type: Transform - pos: -40.499992,47.607746 - parent: 12 - - uid: 31815 - components: - - type: Transform - pos: -10.505037,71.717316 - parent: 12 - - uid: 31816 - components: - - type: Transform - pos: -10.659958,71.43193 - parent: 12 - - uid: 31818 - components: - - type: Transform - pos: -10.284887,71.41563 - parent: 12 -- proto: DrinkIceBucket - entities: - - uid: 15102 - components: - - type: Transform - pos: 23.5,44.5 - parent: 12 - - uid: 22513 - components: - - type: Transform - parent: 22505 - - 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 - pos: 28.464611,58.561584 - parent: 12 - - uid: 22882 - components: - - 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 - components: - - type: Transform - pos: -31.864534,44.26396 - parent: 12 - - uid: 24117 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 57.68418,56.94676 - parent: 12 -- proto: DrinkMopwataBottleRandom - entities: - - uid: 9720 - components: - - type: Transform - rot: -31.415926535897945 rad - pos: -39.55718,-16.449203 - parent: 12 -- proto: DrinkMugBlue - entities: - - uid: 30236 - components: - - type: Transform - pos: -4.494262,58.796005 - parent: 12 -- proto: DrinkMugDog - entities: - - uid: 9374 - components: - - type: MetaData - name: modern art - - type: Transform - pos: 46.5,-38.5 - parent: 12 -- proto: DrinkMugGreen - entities: - - uid: 30234 - components: - - type: Transform - pos: -16.489782,64.7735 - parent: 12 -- proto: DrinkMugMetal - entities: - - uid: 21388 - components: - - type: Transform - pos: -31.299795,44.190083 - parent: 12 -- proto: DrinkMugOne - entities: - - uid: 8906 - components: - - type: Transform - pos: 58.47659,-11.375843 - parent: 12 - - uid: 8907 - components: - - type: Transform - pos: 55.305096,-34.53654 - parent: 12 - - uid: 20832 - components: - - type: Transform - pos: -43.74887,32.77803 - parent: 12 - - uid: 26941 - components: - - type: Transform - pos: 5.577743,70.50162 - parent: 12 -- proto: DrinkMugRed - entities: - - uid: 23618 - components: - - type: Transform - pos: 19.575062,68.438705 - parent: 12 -- proto: DrinkPwrGameCan - entities: - - uid: 30317 - components: - - type: Transform - pos: -6.312085,77.664825 - parent: 12 -- proto: DrinkSakeBottleFull - entities: - - uid: 31598 - components: - - type: Transform - pos: 29.942114,25.606844 - parent: 12 -- proto: DrinkShotGlass - entities: - - uid: 13325 - components: - - type: Transform - pos: 44.358738,29.577848 - parent: 12 - - uid: 26293 - components: - - type: Transform - pos: 44.139988,29.75493 - parent: 12 -- proto: DrinkTeaGlass - entities: - - uid: 17618 - components: - - type: Transform - pos: -53.504837,29.39008 - parent: 12 -- proto: DrinkTeapot - entities: - - uid: 1999 - components: - - 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 - components: - - type: Transform - pos: 30.629667,28.774036 - parent: 12 -- proto: DrinkWhiskeyGlass - entities: - - uid: 13632 - components: - - type: Transform - pos: 30.233835,28.649036 - parent: 12 -- proto: DrinkWineBottleFull - entities: - - uid: 13324 - components: - - type: Transform - pos: 44.849934,29.910017 - parent: 12 - - uid: 17631 - components: - - type: Transform - pos: -49.487614,34.551445 - parent: 12 - - uid: 22512 - components: - - type: Transform - parent: 22505 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: DrinkWineCan - entities: - - uid: 22514 - components: - - type: Transform - parent: 22505 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22516 - components: - - type: Transform - parent: 22505 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22518 - components: - - type: Transform - parent: 22505 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: DrinkWineGlass - entities: - - uid: 22667 - components: - - type: Transform - pos: 10.301028,56.511505 - parent: 12 - - uid: 22679 - components: - - 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 - components: - - type: Transform - pos: 31.426579,36.306904 - parent: 12 - - uid: 24032 - components: - - type: Transform - pos: 77.42148,49.07132 - parent: 12 - - uid: 24033 - components: - - type: Transform - pos: 77.61463,48.901142 - parent: 12 -- proto: ElectricGuitarInstrument - entities: - - uid: 13481 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -29.330828,7.500151 - parent: 12 -- proto: ElectrolysisUnitMachineCircuitboard - entities: - - uid: 26647 - components: - - type: Transform - pos: -3.5,21.5 - parent: 12 -- proto: EmergencyFunnyOxygenTankFilled - entities: - - uid: 27129 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 27.46012,19.431234 - parent: 12 - - type: GasTank - toggleActionEntity: 27130 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 27130 -- proto: EmergencyLight - entities: - - uid: 11 - components: - - 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 - rot: 1.5707963267948966 rad - pos: 53.5,-4.5 - parent: 12 - - uid: 345 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-47.5 - parent: 12 - - uid: 3900 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-45.5 - parent: 12 - - uid: 5092 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-7.5 - parent: 12 - - uid: 8887 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-49.5 - parent: 12 - - uid: 10510 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-7.5 - parent: 12 - - uid: 10511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-13.5 - parent: 12 - - uid: 10513 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-15.5 - parent: 12 - - uid: 10515 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-2.5 - parent: 12 - - uid: 10516 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-2.5 - parent: 12 - - uid: 10517 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-47.5 - parent: 12 - - uid: 10520 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-23.5 - parent: 12 - - uid: 10521 - components: - - type: Transform - pos: 8.5,-25.5 - parent: 12 - - uid: 10522 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-27.5 - parent: 12 - - uid: 10523 - components: - - type: Transform - pos: -7.5,-26.5 - parent: 12 - - uid: 10524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-30.5 - parent: 12 - - uid: 10525 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-21.5 - parent: 12 - - uid: 10526 - components: - - type: Transform - pos: -28.5,-23.5 - parent: 12 - - uid: 10527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-31.5 - parent: 12 - - uid: 10528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-27.5 - parent: 12 - - uid: 10529 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-21.5 - parent: 12 - - uid: 10530 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-24.5 - parent: 12 - - uid: 10531 - components: - - type: Transform - pos: -51.5,-29.5 - parent: 12 - - uid: 10532 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-40.5 - parent: 12 - - uid: 10533 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-36.5 - parent: 12 - - uid: 10534 - components: - - type: Transform - pos: -29.5,-41.5 - parent: 12 - - uid: 10535 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-45.5 - parent: 12 - - uid: 10536 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-47.5 - parent: 12 - - uid: 10537 - components: - - type: Transform - pos: -21.5,-49.5 - parent: 12 - - uid: 10539 - components: - - type: Transform - pos: -13.5,-58.5 - parent: 12 - - uid: 10542 - components: - - type: Transform - pos: -6.5,-41.5 - parent: 12 - - uid: 10543 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-37.5 - parent: 12 - - uid: 10545 - components: - - type: Transform - pos: 21.5,-20.5 - parent: 12 - - uid: 10546 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-23.5 - parent: 12 - - uid: 10547 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-12.5 - parent: 12 - - uid: 10548 - components: - - type: Transform - pos: 23.5,-16.5 - parent: 12 - - uid: 10552 - components: - - type: Transform - pos: 50.5,-11.5 - parent: 12 - - uid: 10553 - components: - - type: Transform - pos: 60.5,-18.5 - parent: 12 - - uid: 10554 - components: - - type: Transform - pos: 51.5,-24.5 - parent: 12 - - uid: 10555 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-33.5 - parent: 12 - - uid: 10556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-33.5 - parent: 12 - - uid: 10558 - components: - - type: Transform - pos: 78.5,-34.5 - parent: 12 - - uid: 10559 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-32.5 - parent: 12 - - uid: 10560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-32.5 - parent: 12 - - uid: 10562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-47.5 - parent: 12 - - uid: 10563 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-38.5 - parent: 12 - - uid: 11607 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,21.5 - parent: 12 - - uid: 12647 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,24.5 - parent: 12 - - uid: 13527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,41.5 - parent: 12 - - uid: 13528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,41.5 - parent: 12 - - uid: 13529 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,35.5 - parent: 12 - - uid: 13530 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,33.5 - parent: 12 - - uid: 13846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,41.5 - parent: 12 - - uid: 13847 - components: - - type: Transform - pos: 38.5,43.5 - parent: 12 - - uid: 13965 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: -8.5,8.5 - parent: 12 - - uid: 16667 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,12.5 - parent: 12 - - uid: 16668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,12.5 - parent: 12 - - uid: 16669 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,6.5 - parent: 12 - - uid: 16670 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,6.5 - parent: 12 - - uid: 16671 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,12.5 - parent: 12 - - uid: 16672 - components: - - type: Transform - pos: -39.5,17.5 - parent: 12 - - uid: 16673 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,1.5 - parent: 12 - - uid: 16674 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-0.5 - parent: 12 - - uid: 17797 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,27.5 - parent: 12 - - uid: 17798 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,30.5 - parent: 12 - - uid: 17799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,31.5 - parent: 12 - - uid: 17800 - components: - - 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 - rot: 1.5707963267948966 rad - pos: -30.5,45.5 - parent: 12 - - uid: 21241 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,55.5 - parent: 12 - - uid: 21242 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,51.5 - parent: 12 - - uid: 21243 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,46.5 - parent: 12 - - uid: 21244 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,57.5 - parent: 12 - - uid: 21245 - components: - - type: Transform - pos: -46.5,59.5 - parent: 12 - - uid: 21246 - components: - - type: Transform - pos: -40.5,59.5 - parent: 12 - - uid: 21247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,50.5 - parent: 12 - - uid: 21248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,66.5 - parent: 12 - - uid: 21249 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,66.5 - parent: 12 - - uid: 21250 - components: - - type: Transform - pos: -35.5,62.5 - parent: 12 - - uid: 21251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,58.5 - parent: 12 - - uid: 21252 - components: - - type: Transform - pos: -42.5,36.5 - parent: 12 - - uid: 21253 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,40.5 - parent: 12 - - uid: 21254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,38.5 - parent: 12 - - uid: 21255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,38.5 - parent: 12 - - uid: 21256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,38.5 - parent: 12 - - uid: 21257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,34.5 - parent: 12 - - uid: 21258 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,31.5 - parent: 12 - - uid: 21259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,25.5 - parent: 12 - - uid: 21260 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,20.5 - parent: 12 - - uid: 21261 - components: - - type: Transform - pos: -24.5,29.5 - parent: 12 - - uid: 21262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,25.5 - parent: 12 - - uid: 21263 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,31.5 - parent: 12 - - uid: 21264 - components: - - type: Transform - pos: -26.5,34.5 - parent: 12 - - uid: 21265 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,32.5 - parent: 12 - - uid: 21266 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,25.5 - parent: 12 - - uid: 21267 - components: - - type: Transform - pos: -53.5,34.5 - parent: 12 - - uid: 21268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,24.5 - parent: 12 - - uid: 21269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,18.5 - parent: 12 - - uid: 21270 - components: - - type: Transform - pos: -50.5,38.5 - parent: 12 - - uid: 21271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,42.5 - parent: 12 - - uid: 21272 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,24.5 - parent: 12 - - uid: 21283 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,45.5 - parent: 12 - - uid: 21458 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,26.5 - parent: 12 - - uid: 21459 - components: - - type: Transform - pos: -32.5,30.5 - parent: 12 - - uid: 23940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-1.5 - parent: 12 - - uid: 25296 - components: - - type: Transform - pos: -11.5,45.5 - parent: 12 - - uid: 25297 - components: - - type: Transform - pos: 0.5,45.5 - parent: 12 - - uid: 25298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,43.5 - parent: 12 - - uid: 25299 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,40.5 - parent: 12 - - uid: 25300 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,45.5 - parent: 12 - - uid: 25301 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,47.5 - parent: 12 - - uid: 25302 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,39.5 - parent: 12 - - uid: 25303 - components: - - type: Transform - pos: 22.5,31.5 - parent: 12 - - uid: 25304 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,30.5 - parent: 12 - - uid: 25306 - components: - - type: Transform - pos: 32.5,47.5 - parent: 12 - - uid: 25307 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,51.5 - parent: 12 - - uid: 25308 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,47.5 - parent: 12 - - uid: 25309 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,47.5 - parent: 12 - - uid: 25310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,51.5 - parent: 12 - - uid: 25311 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,46.5 - parent: 12 - - uid: 25312 - components: - - type: Transform - pos: 58.5,58.5 - parent: 12 - - uid: 25314 - components: - - type: Transform - pos: 50.5,63.5 - parent: 12 - - uid: 25315 - components: - - type: Transform - pos: 44.5,56.5 - parent: 12 - - uid: 25316 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,52.5 - parent: 12 - - uid: 25317 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,66.5 - parent: 12 - - uid: 25318 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,66.5 - parent: 12 - - uid: 25319 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,61.5 - parent: 12 - - uid: 25320 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,62.5 - parent: 12 - - uid: 25321 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,49.5 - parent: 12 - - uid: 25322 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,50.5 - parent: 12 - - uid: 29975 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-8.5 - parent: 12 - - uid: 29976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-3.5 - parent: 12 - - uid: 29977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-13.5 - parent: 12 - - uid: 29992 - components: - - type: Transform - pos: 18.5,5.5 - parent: 12 - - uid: 30434 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,9.5 - parent: 12 - - uid: 30436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,4.5 - parent: 12 - - uid: 30468 - components: - - type: Transform - pos: 56.5,0.5 - parent: 12 - - uid: 30483 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,4.5 - parent: 12 - - uid: 30988 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-7.5 - parent: 12 - - uid: 30989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-17.5 - parent: 12 - - uid: 30990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,10.5 - parent: 12 - - uid: 30991 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,14.5 - parent: 12 - - uid: 31360 - components: - - type: Transform - pos: -12.5,-68.5 - parent: 12 - - uid: 31361 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-27.5 - parent: 12 - - uid: 31362 - components: - - type: Transform - pos: -59.5,-21.5 - parent: 12 - - uid: 31514 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-16.5 - parent: 12 - - uid: 31568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 12 - - uid: 31870 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-15.5 - parent: 12 - - uid: 32037 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-12.5 - parent: 12 -- proto: EmergencyNitrogenTankFilled - entities: - - uid: 31675 - components: - - type: Transform - 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 - components: - - type: Transform - pos: -23.409348,-41.46257 - parent: 12 - - uid: 2512 - components: - - type: Transform - pos: -23.471848,-42.228195 - 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 - parent: 5883 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 5886 - components: - - type: Transform - parent: 5883 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 5888 - components: - - type: Transform - parent: 5883 - - 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 - components: - - type: Transform - pos: 33.718956,-6.4224234 - parent: 12 -- proto: EncryptionKeyEngineering - entities: - - uid: 22251 - components: - - type: Transform - pos: 33.319225,-6.41427 - parent: 12 -- proto: EncryptionKeyMedicalScience - entities: - - uid: 22252 - components: - - type: Transform - pos: 33.51501,-6.2675023 - parent: 12 -- proto: EpinephrineChemistryBottle - entities: - - uid: 30546 - components: - - type: Transform - pos: -52.860172,28.779083 - parent: 12 -- proto: ExosuitFabricator - entities: - - uid: 12356 - components: - - type: Transform - pos: -25.5,-31.5 - parent: 12 -- proto: ExtendedEmergencyOxygenTankFilled - entities: - - uid: 31364 - components: - - type: Transform - 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 - components: - - type: Transform - pos: -48.5,-20.5 - parent: 12 - - uid: 2107 - components: - - type: Transform - pos: -39.5,-38.5 - parent: 12 - - uid: 4075 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-45.5 - parent: 12 - - uid: 4076 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-33.5 - parent: 12 - - uid: 4372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,31.5 - parent: 12 - - uid: 9238 - components: - - type: Transform - pos: -3.5,-24.5 - parent: 12 - - uid: 16539 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-26.5 - parent: 12 - - uid: 21076 - components: - - type: Transform - pos: 11.5,-41.5 - parent: 12 - - uid: 21306 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-40.5 - parent: 12 - - uid: 21932 - components: - - 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 - pos: -15.5,-59.5 - parent: 12 - - uid: 26005 - components: - - type: Transform - pos: -20.5,-22.5 - parent: 12 - - uid: 26006 - components: - - type: Transform - pos: -18.5,-3.5 - parent: 12 - - uid: 26008 - components: - - type: Transform - pos: -36.5,25.5 - parent: 12 - - uid: 26009 - components: - - type: Transform - pos: -52.5,35.5 - parent: 12 - - uid: 26010 - components: - - type: Transform - pos: -36.5,46.5 - parent: 12 - - uid: 26011 - components: - - type: Transform - pos: -41.5,54.5 - parent: 12 - - uid: 26012 - components: - - type: Transform - pos: -29.5,37.5 - parent: 12 - - uid: 26013 - components: - - type: Transform - pos: -5.5,47.5 - parent: 12 - - uid: 26014 - components: - - type: Transform - pos: -10.5,70.5 - parent: 12 - - uid: 26015 - components: - - type: Transform - pos: 12.5,66.5 - parent: 12 - - uid: 26016 - components: - - type: Transform - pos: 24.5,57.5 - parent: 12 - - uid: 26017 - components: - - type: Transform - pos: 26.5,40.5 - parent: 12 - - uid: 26018 - components: - - type: Transform - pos: 20.5,25.5 - parent: 12 - - uid: 26019 - components: - - type: Transform - pos: 33.5,27.5 - parent: 12 - - uid: 26020 - components: - - type: Transform - pos: 49.5,51.5 - parent: 12 - - uid: 26021 - components: - - type: Transform - pos: 53.5,64.5 - parent: 12 - - uid: 26022 - components: - - type: Transform - pos: 54.5,43.5 - parent: 12 - - uid: 26023 - components: - - type: Transform - pos: 40.5,20.5 - parent: 12 - - uid: 26024 - components: - - type: Transform - pos: 29.5,-14.5 - parent: 12 - - uid: 26025 - components: - - type: Transform - pos: -36.5,0.5 - parent: 12 - - uid: 26028 - components: - - type: Transform - pos: 45.5,-14.5 - parent: 12 - - uid: 26029 - components: - - type: Transform - pos: 43.5,-33.5 - parent: 12 - - uid: 26031 - components: - - type: Transform - pos: 30.5,-36.5 - parent: 12 - - uid: 26033 - components: - - type: Transform - pos: 5.5,-37.5 - parent: 12 - - uid: 26034 - components: - - type: Transform - pos: 8.5,-24.5 - parent: 12 - - uid: 26035 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 12 - - uid: 26036 - components: - - type: Transform - pos: 10.5,83.5 - parent: 12 - - uid: 26037 - components: - - type: Transform - pos: -31.5,20.5 - parent: 12 - - uid: 26038 - components: - - type: Transform - pos: -24.5,4.5 - parent: 12 - - uid: 26039 - components: - - type: Transform - pos: -5.5,30.5 - parent: 12 - - uid: 26040 - components: - - type: Transform - pos: -0.5,34.5 - parent: 12 - - uid: 26041 - components: - - type: Transform - pos: 16.5,52.5 - parent: 12 - - uid: 26042 - components: - - type: Transform - pos: -0.5,52.5 - parent: 12 - - uid: 26043 - components: - - type: Transform - pos: 6.5,57.5 - parent: 12 - - uid: 26044 - components: - - type: Transform - pos: 26.5,83.5 - parent: 12 - - uid: 26046 - components: - - type: Transform - pos: 73.5,47.5 - parent: 12 - - uid: 26047 - components: - - 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 - pos: 32.5,6.5 - parent: 12 - - uid: 30467 - components: - - 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 - components: - - type: Transform - pos: -23.5,-60.5 - parent: 12 - - type: FaxMachine - name: Psychology - destinationAddress: Psychology - - uid: 4040 - components: - - type: Transform - pos: -38.5,-32.5 - parent: 12 - - type: FaxMachine - name: Science - destinationAddress: Science - - uid: 4202 - components: - - type: Transform - pos: 51.5,-21.5 - parent: 12 - - type: FaxMachine - name: Cargo - destinationAddress: Cargo - - uid: 11206 - components: - - type: Transform - pos: -23.5,-39.5 - parent: 12 - - type: FaxMachine - name: Medical - destinationAddress: Medical - - uid: 13313 - components: - - type: Transform - pos: 45.5,29.5 - parent: 12 - - type: FaxMachine - name: Chapel - destinationAddress: Chapel - - uid: 16764 - components: - - type: Transform - pos: -25.5,0.5 - parent: 12 - - type: FaxMachine - name: Lawyer's office - destinationAddress: Lawyer's office - - uid: 18869 - components: - - type: Transform - pos: -39.5,23.5 - parent: 12 - - type: FaxMachine - name: HOP - destinationAddress: HOP - - uid: 18990 - components: - - type: Transform - pos: -54.5,24.5 - parent: 12 - - type: FaxMachine - name: Bridge - destinationAddress: Bridge - - uid: 21415 - components: - - type: Transform - pos: -36.5,38.5 - parent: 12 - - type: FaxMachine - name: Security - destinationAddress: Security - - uid: 21480 - components: - - type: Transform - pos: -28.5,25.5 - parent: 12 - - type: FaxMachine - name: Court - destinationAddress: Court - - uid: 26277 - components: - - type: Transform - pos: 7.5,57.5 - parent: 12 - - type: FaxMachine - name: Recreation lounge - destinationAddress: Recreation lounge - - uid: 26279 - components: - - type: Transform - pos: 34.5,51.5 - parent: 12 - - type: FaxMachine - name: Service - destinationAddress: Service - - uid: 26479 - components: - - type: Transform - pos: 21.5,-18.5 - parent: 12 - - type: FaxMachine - name: Engineering - destinationAddress: Engineering - - uid: 30315 - components: - - type: Transform - pos: -13.5,73.5 - parent: 12 - - type: FaxMachine - name: Library - destinationAddress: Library -- proto: FaxMachineCaptain - entities: - - uid: 17603 - components: - - type: Transform - pos: -49.5,20.5 - parent: 12 - - type: FaxMachine - destinationAddress: Captain's Office -- proto: FenceMetalStraight - entities: - - uid: 8342 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-69.5 - parent: 12 - - uid: 8476 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-69.5 - parent: 12 - - uid: 8520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-69.5 - parent: 12 - - uid: 8734 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-69.5 - parent: 12 - - uid: 8735 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-69.5 - parent: 12 - - uid: 8764 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-69.5 - parent: 12 -- proto: filingCabinetDrawerRandom - entities: - - uid: 1960 - components: - - 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 - components: - - type: Transform - pos: -25.5,-18.5 - parent: 12 - - uid: 13609 - components: - - type: Transform - pos: 28.5,27.5 - parent: 12 - - uid: 25367 - components: - - type: Transform - pos: -44.5,23.5 - parent: 12 - - uid: 29121 - components: - - type: Transform - pos: 52.5,-21.5 - parent: 12 -- proto: FireAlarm - entities: - - uid: 23815 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,34.5 - parent: 12 - - type: DeviceList - devices: - - 20775 - - 17648 - - 20333 - - 20334 - - 20337 - - 20335 - - 20336 - - 23812 - - 15732 - - uid: 23816 - components: - - type: Transform - pos: -3.5,46.5 - parent: 12 - - type: DeviceList - devices: - - 18638 - - 18637 - - 18636 - - 18646 - - 18645 - - 18639 - - 18644 - - 19751 - - 19750 - - 23817 - - 23814 - - 20774 - - 16635 - - 16634 - - 16633 - - uid: 23903 - components: - - type: Transform - pos: -8.5,67.5 - parent: 12 - - type: DeviceList - devices: - - 19740 - - 19741 - - 19746 - - 19739 - - 19742 - - uid: 23904 - components: - - type: Transform - pos: 11.5,46.5 - parent: 12 - - type: DeviceList - devices: - - 14619 - - 14620 - - 22523 - - 22521 - - 14618 - - 17131 - - 17132 - - 18638 - - 18637 - - 18636 - - uid: 23905 - components: - - type: Transform - pos: -18.5,30.5 - parent: 12 - - type: DeviceList - devices: - - 15702 - - 15700 - - 16633 - - 16634 - - 16635 - - 16636 - - 19846 - - 15699 - - 15701 - - 23909 - - 23908 - - 23906 - - 23907 - - uid: 23910 - components: - - type: Transform - pos: -23.5,30.5 - parent: 12 - - type: DeviceList - devices: - - 15702 - - 15700 - - 20772 - - 23911 - - 2117 - - 17646 - - 17647 - - uid: 23913 - components: - - type: Transform - pos: -24.5,12.5 - parent: 12 - - type: DeviceList - devices: - - 15699 - - 15701 - - 16409 - - 16408 - - 23915 - - 23914 - - 16530 - - 15908 - - 15909 - - 15906 - - 15907 - - 23916 - - uid: 23917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-2.5 - parent: 12 - - type: DeviceList - devices: - - 23918 - - 9329 - - 9330 - - 21889 - - 23915 - - 23914 - - uid: 23925 - components: - - type: Transform - pos: -10.5,-25.5 - parent: 12 - - type: DeviceList - devices: - - 5582 - - 5581 - - 23919 - - 23923 - - 23922 - - 2085 - - 23920 - - 23921 - - uid: 23926 - components: - - type: Transform - pos: 24.5,-25.5 - parent: 12 - - type: DeviceList - devices: - - 6806 - - 6807 - - 9316 - - 9317 - - 9320 - - 5579 - - 5580 - - 6783 - - 6812 - - uid: 23927 - components: - - type: Transform - pos: 45.5,-25.5 - parent: 12 - - type: DeviceList - devices: - - 7390 - - 7388 - - 7389 - - 7459 - - 7460 - - 23928 - - 29393 - - uid: 23929 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-26.5 - parent: 12 - - type: DeviceList - devices: - - 7459 - - 7460 - - 7462 - - 9114 - - 7458 - - 9117 - - 9116 - - 9115 - - uid: 23930 - components: - - type: Transform - pos: -43.5,-21.5 - parent: 12 - - type: DeviceList - devices: - - 2079 - - 23934 - - 23933 - - 23932 - - uid: 23931 - components: - - type: Transform - pos: -31.5,-22.5 - parent: 12 - - type: DeviceList - devices: - - 2081 - - 2082 - - 2083 - - 2084 - - 2080 - - 2077 - - 2075 - - uid: 23937 - components: - - type: Transform - pos: 14.5,-36.5 - parent: 12 - - type: DeviceList - devices: - - 23936 - - 6812 - - 6783 - - 6175 - - 6005 - - 4155 - - 2824 - - 6283 - - 6815 - - 6816 - - uid: 23938 - components: - - type: Transform - pos: 26.5,44.5 - parent: 12 - - type: DeviceList - devices: - - 17133 - - 17134 - - 13749 - - 14619 - - 14620 - - 14483 - - 14486 - - 14485 - - 14588 - - 14587 - - uid: 23939 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,64.5 - parent: 12 - - type: DeviceList - devices: - - 14558 - - 14561 - - 14559 - - 14557 - - 14587 - - 14588 - - 14622 - - 14900 - - 14899 - - 14901 - - 14902 - - 14553 - - uid: 23942 - components: - - type: Transform - pos: 47.5,57.5 - parent: 12 - - type: DeviceList - devices: - - 24083 - - 24082 - - 23943 - - 14476 - - 14475 - - 26899 - - 14472 - - 14471 - - uid: 24244 - components: - - type: Transform - pos: 41.5,44.5 - parent: 12 - - type: DeviceList - devices: - - 24083 - - 24082 - - 14479 - - 14477 - - 14478 - - 13165 - - 13307 - - 13946 - - 13945 - - 17133 - - 17134 - - 14480 - - 14481 - - 13863 -- proto: FireAlarmElectronics - entities: - - uid: 9213 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 44.6147,-36.414783 - parent: 12 -- proto: FireAxeCabinetFilled - entities: - - uid: 5710 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-5.5 - parent: 12 - - uid: 25973 - components: - - type: Transform - pos: -54.5,35.5 - parent: 12 -- proto: FireExtinguisher - entities: - - uid: 9762 - components: - - type: Transform - pos: -21.497362,-25.426727 - parent: 12 - - uid: 12149 - components: - - type: Transform - pos: 80.2891,-38.43335 - parent: 12 - - uid: 12293 - components: - - type: Transform - pos: 80.56647,-38.438786 - parent: 12 - - uid: 12921 - components: - - type: Transform - pos: 80.773125,-38.438786 - parent: 12 - - uid: 13505 - components: - - type: Transform - pos: 54.159203,23.93505 - parent: 12 - - uid: 16466 - components: - - type: Transform - pos: -12.417644,9.496946 - parent: 12 - - uid: 16467 - components: - - type: Transform - pos: -12.553061,9.684446 - parent: 12 - - uid: 21511 - components: - - type: Transform - pos: -28.658644,23.554457 - parent: 12 -- proto: FireExtinguisherMini - entities: - - uid: 29005 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -24.285675,-2.5206692 - parent: 12 -- proto: Firelock - entities: - - uid: 9605 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-50.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28354 - - uid: 28829 - components: - - type: Transform - pos: 43.5,-38.5 - parent: 12 - - uid: 30697 - components: - - type: Transform - pos: -25.5,-59.5 - parent: 12 - - uid: 30698 - components: - - type: Transform - pos: -41.5,-52.5 - parent: 12 - - uid: 30699 - components: - - type: Transform - pos: -10.5,-64.5 - parent: 12 - - uid: 31112 - components: - - type: Transform - pos: -51.5,-46.5 - parent: 12 - - uid: 31615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-19.5 - parent: 12 - - uid: 31636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-29.5 - parent: 12 - - uid: 31637 - components: - - type: Transform - pos: -63.5,-21.5 - parent: 12 - - uid: 31638 - components: - - type: Transform - pos: -63.5,-27.5 - parent: 12 -- proto: FirelockEdge - entities: - - uid: 2114 - components: - - type: Transform - pos: -33.5,20.5 - parent: 12 - - uid: 2117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,24.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23910 - - uid: 3513 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,32.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28383 - - uid: 3514 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,32.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28383 - - uid: 4203 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-20.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28373 - - 8504 - - uid: 6744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-18.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28373 - - 8504 - - uid: 6753 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-60.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9974 - - uid: 6754 - components: - - type: Transform - pos: -20.5,-40.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28502 - - uid: 6755 - components: - - type: Transform - pos: -22.5,-40.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28502 - - uid: 8515 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-19.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28373 - - 8504 - - uid: 13292 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,31.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13303 - - uid: 13297 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,31.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13303 - - uid: 23633 - components: - - type: Transform - pos: 14.5,55.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23630 - - uid: 23634 - components: - - type: Transform - pos: 8.5,55.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23630 - - uid: 23751 - components: - - type: Transform - pos: 68.5,46.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24184 - - uid: 23752 - components: - - type: Transform - pos: 69.5,46.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24184 - - uid: 23753 - components: - - type: Transform - pos: 70.5,46.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24184 - - uid: 23754 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,51.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24184 - - uid: 23755 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,51.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24184 - - uid: 23756 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,51.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24184 - - uid: 25548 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-21.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28373 - - 8504 - - uid: 27065 - components: - - type: Transform - pos: 47.5,-12.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28373 - - uid: 27102 - components: - - type: Transform - pos: 48.5,-12.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28373 - - uid: 29662 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,72.5 - parent: 12 - - uid: 29663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,72.5 - parent: 12 -- proto: FirelockGlass - entities: - - uid: 62 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,54.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 70 - - 29275 - - uid: 245 - components: - - type: Transform - pos: -43.5,54.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23796 - - 23791 - - uid: 246 - components: - - type: Transform - pos: -41.5,55.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 70 - - 23791 - - uid: 379 - components: - - type: Transform - pos: 36.5,-22.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10018 - - uid: 609 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27311 - - uid: 610 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-49.5 - parent: 12 - - 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: 617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-16.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22005 - - uid: 630 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9142 - - 27311 - - 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 - - uid: 1553 - components: - - type: Transform - pos: 58.5,-25.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 6833 - - 8504 - - uid: 2020 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27311 - - 9142 - - uid: 2034 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27311 - - uid: 2073 - components: - - type: Transform - pos: -39.5,-48.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28343 - - uid: 2074 - components: - - type: Transform - pos: -39.5,-47.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28343 - - uid: 2075 - components: - - type: Transform - pos: -38.5,-40.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23931 - - 9972 - - 28343 - - uid: 2076 - components: - - type: Transform - pos: -45.5,-39.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 921 - - uid: 2077 - components: - - type: Transform - pos: -39.5,-34.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23931 - - 9972 - - 921 - - uid: 2079 - components: - - type: Transform - pos: -41.5,-29.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23930 - - 1699 - - uid: 2080 - components: - - type: Transform - pos: -38.5,-29.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23931 - - 9972 - - uid: 2081 - components: - - type: Transform - pos: -34.5,-24.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23931 - - 9972 - - 2629 - - uid: 2082 - components: - - type: Transform - pos: -27.5,-22.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23931 - - 2089 - - 9972 - - uid: 2083 - components: - - type: Transform - pos: -24.5,-26.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23931 - - 9972 - - 5098 - - uid: 2084 - components: - - type: Transform - pos: -22.5,-24.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23931 - - 9972 - - uid: 2085 - components: - - type: Transform - pos: -18.5,-24.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23925 - - 28360 - - uid: 2088 - components: - - type: Transform - pos: -49.5,-33.5 - parent: 12 - - uid: 2324 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 30445 - - 31755 - - uid: 2348 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-23.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 7342 - - uid: 2516 - components: - - type: Transform - pos: 4.5,21.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 12273 - - uid: 2613 - components: - - type: Transform - pos: -13.5,-47.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8971 - - uid: 2674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-9.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 7342 - - 31755 - - uid: 2679 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 4906 - - 31755 - - uid: 2824 - components: - - type: Transform - pos: 31.5,-42.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23937 - - 2852 - - 706 - - uid: 2909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-23.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8504 - - uid: 3896 - components: - - type: Transform - pos: 9.5,-42.5 - parent: 12 - - uid: 3986 - components: - - type: Transform - pos: -36.5,-46.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28343 - - uid: 3987 - components: - - type: Transform - pos: -28.5,-46.5 - parent: 12 - - uid: 3988 - components: - - type: Transform - pos: -26.5,-45.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 25448 - - uid: 3992 - components: - - type: Transform - pos: -24.5,-43.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 25448 - - 28502 - - uid: 3993 - components: - - type: Transform - pos: -24.5,-46.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28502 - - uid: 3994 - components: - - type: Transform - pos: -18.5,-50.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 377 - - uid: 3995 - components: - - type: Transform - pos: -21.5,-57.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 377 - - uid: 3996 - components: - - type: Transform - pos: -18.5,-58.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 377 - - uid: 3997 - components: - - type: Transform - pos: -14.5,-58.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9974 - - uid: 3998 - components: - - type: Transform - pos: -16.5,-52.5 - parent: 12 - - uid: 3999 - components: - - type: Transform - pos: -7.5,-59.5 - parent: 12 - - uid: 4001 - components: - - type: Transform - pos: -14.5,-55.5 - parent: 12 - - uid: 4002 - components: - - type: Transform - pos: -10.5,-53.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8971 - - uid: 4004 - components: - - type: Transform - pos: -13.5,-46.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8971 - - uid: 4005 - components: - - type: Transform - pos: -5.5,-45.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8971 - - uid: 4006 - components: - - type: Transform - pos: -4.5,-49.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28354 - - 8971 - - uid: 4007 - components: - - type: Transform - pos: 0.5,-48.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28354 - - uid: 4008 - components: - - type: Transform - pos: 2.5,-45.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28358 - - uid: 4009 - components: - - type: Transform - pos: 0.5,-40.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27296 - - uid: 4010 - components: - - type: Transform - pos: 2.5,-42.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28358 - - uid: 4011 - components: - - type: Transform - pos: 2.5,-39.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28358 - - 27296 - - uid: 4014 - components: - - type: Transform - pos: -11.5,-40.5 - parent: 12 - - uid: 4015 - components: - - type: Transform - pos: -16.5,-40.5 - parent: 12 - - uid: 4016 - components: - - type: Transform - pos: -15.5,-40.5 - parent: 12 - - uid: 4017 - components: - - type: Transform - pos: -18.5,-42.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28502 - - uid: 4018 - components: - - type: Transform - pos: -18.5,-41.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28502 - - uid: 4155 - components: - - type: Transform - pos: 30.5,-42.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23937 - - 2852 - - 706 - - uid: 4266 - components: - - type: Transform - pos: 34.5,-14.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 1288 - - 32066 - - uid: 4417 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-16.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2614 - - 28360 - - uid: 4566 - components: - - type: Transform - pos: 39.5,-14.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 7342 - - 32066 - - uid: 5030 - components: - - type: Transform - pos: -22.5,-29.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 5098 - - 5109 - - uid: 5232 - components: - - type: Transform - pos: -3.5,70.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 30349 - - uid: 5579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23926 - - 28366 - - 28365 - - uid: 5580 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-26.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23926 - - 28366 - - 28365 - - uid: 5581 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23925 - - 28360 - - 28366 - - uid: 5582 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-26.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23925 - - 28360 - - 28366 - - uid: 6005 - components: - - type: Transform - pos: 12.5,-42.5 - parent: 12 - - type: DeviceNetwork - 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 - pos: 13.5,-42.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23937 - - 2852 - - 1169 - - uid: 6181 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-34.5 - parent: 12 - - uid: 6205 - components: - - type: Transform - pos: -9.5,1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9702 - - uid: 6283 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-41.5 - parent: 12 - - type: DeviceNetwork - 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 - pos: 0.5,16.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 12273 - - uid: 6783 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-33.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23926 - - 23937 - - 28365 - - 2852 - - uid: 6806 - components: - - type: Transform - pos: 28.5,-27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23926 - - 28363 - - uid: 6807 - components: - - type: Transform - pos: 28.5,-26.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23926 - - 28363 - - uid: 6812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-33.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23926 - - 23937 - - 28365 - - 2852 - - uid: 6815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-36.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23937 - - 2852 - - uid: 6816 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-36.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23937 - - 2852 - - uid: 7357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-9.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 7342 - - 31755 - - uid: 7388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-25.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23927 - - 4418 - - 7342 - - uid: 7389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-25.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23927 - - 4418 - - 7342 - - uid: 7390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23927 - - 28363 - - 4418 - - uid: 7456 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-22.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28367 - - 28373 - - uid: 7458 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23929 - - 28367 - - 6833 - - uid: 7459 - components: - - type: Transform - pos: 47.5,-28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23927 - - 23929 - - 4418 - - uid: 7460 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23927 - - 23929 - - 4418 - - uid: 7461 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-35.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8914 - - uid: 7462 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23929 - - 28367 - - 8914 - - uid: 7529 - components: - - type: Transform - pos: 7.5,-14.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22005 - - uid: 7560 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,53.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 70 - - 29275 - - uid: 7615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-35.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 6833 - - uid: 7616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-34.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 6833 - - uid: 7617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-38.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 6833 - - 752 - - uid: 7618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-38.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 6833 - - 752 - - uid: 7775 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-14.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28371 - - 28373 - - uid: 7785 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-11.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28371 - - 28373 - - uid: 7820 - components: - - type: Transform - pos: 35.5,12.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 30445 - - 9101 - - uid: 8306 - components: - - type: Transform - pos: 35.5,11.5 - parent: 12 - - type: DeviceNetwork - 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 - pos: 45.5,-13.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28373 - - 7342 - - uid: 8461 - components: - - type: Transform - pos: 48.5,-9.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 20784 - - uid: 9114 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23929 - - 28367 - - 8914 - - uid: 9115 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-23.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23929 - - 28373 - - uid: 9116 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-23.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23929 - - 28367 - - 28373 - - uid: 9117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-23.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23929 - - 28367 - - 28373 - - uid: 9218 - components: - - type: Transform - pos: 48.5,-42.5 - parent: 12 - - uid: 9302 - components: - - type: Transform - pos: 30.5,-5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 1288 - - 448 - - uid: 9303 - components: - - type: Transform - pos: 32.5,-1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 448 - - 4906 - - uid: 9305 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 1288 - - 10019 - - uid: 9310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-18.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10018 - - 10019 - - uid: 9311 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-19.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10019 - - uid: 9314 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-19.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10019 - - 450 - - uid: 9315 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-19.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10019 - - 450 - - uid: 9316 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-24.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23926 - - 28365 - - 450 - - uid: 9317 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-24.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23926 - - 28365 - - 450 - - uid: 9318 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-15.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10019 - - uid: 9320 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-24.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23926 - - 28365 - - 10201 - - uid: 9321 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-17.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10201 - - 22005 - - uid: 9322 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10201 - - uid: 9324 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 12 - - uid: 9325 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-8.5 - parent: 12 - - uid: 9326 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 12 - - uid: 9327 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 12 - - uid: 9329 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-9.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23917 - - 2614 - - 9702 - - uid: 9330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23917 - - 2614 - - 9702 - - uid: 9332 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-16.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2614 - - 28360 - - uid: 9482 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-9.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28373 - - uid: 9513 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,62.5 - parent: 12 - - uid: 9606 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-38.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27296 - - uid: 9646 - components: - - type: Transform - pos: -24.5,5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 449 - - uid: 10287 - components: - - type: Transform - pos: -42.5,3.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 16497 - - uid: 10288 - components: - - type: Transform - pos: -36.5,3.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 16497 - - uid: 10289 - components: - - type: Transform - pos: -36.5,15.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28381 - - uid: 10291 - components: - - type: Transform - pos: -42.5,15.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28381 - - uid: 10509 - components: - - type: Transform - pos: -12.5,-5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9702 - - uid: 10811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 448 - - 4906 - - uid: 11314 - components: - - type: Transform - pos: -21.5,-32.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 5109 - - uid: 11460 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,52.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23796 - - 70 - - uid: 11858 - components: - - type: Transform - pos: -48.5,48.5 - parent: 12 - - uid: 12336 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,9.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 30445 - - uid: 12337 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,15.5 - parent: 12 - - uid: 12338 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,17.5 - parent: 12 - - uid: 12340 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,9.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 30445 - - 9101 - - uid: 12341 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,19.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2611 - - uid: 12342 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,22.5 - parent: 12 - - uid: 12343 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,21.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2611 - - uid: 12344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,23.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 30453 - - uid: 12725 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-45.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 25448 - - uid: 13165 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,40.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24244 - - 23643 - - 13303 - - uid: 13173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,29.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13076 - - 28383 - - uid: 13219 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28383 - - uid: 13222 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,26.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13076 - - uid: 13306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,31.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13303 - - uid: 13307 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,40.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24244 - - 23643 - - 13303 - - uid: 13592 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28330 - - 13751 - - uid: 13593 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,29.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13751 - - 30453 - - uid: 13748 - components: - - type: Transform - pos: 21.5,32.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28330 - - uid: 13749 - components: - - type: Transform - pos: 21.5,38.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23938 - - uid: 13837 - components: - - type: Transform - pos: -34.5,-45.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 25448 - - uid: 13863 - components: - - type: Transform - pos: 31.5,40.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24244 - - 13943 - - 23643 - - uid: 13945 - components: - - type: Transform - pos: 34.5,38.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24244 - - 23643 - - 30453 - - uid: 13946 - components: - - type: Transform - pos: 35.5,38.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24244 - - 23643 - - 30453 - - uid: 14259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,66.5 - parent: 12 - - uid: 14470 - components: - - type: Transform - pos: 33.5,54.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 30452 - - uid: 14471 - components: - - type: Transform - pos: 41.5,55.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23942 - - 28271 - - 30452 - - uid: 14472 - components: - - type: Transform - pos: 43.5,57.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23942 - - 28271 - - uid: 14473 - components: - - type: Transform - pos: 34.5,58.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 30452 - - uid: 14475 - components: - - type: Transform - pos: 51.5,60.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23942 - - 28271 - - 28328 - - uid: 14476 - components: - - type: Transform - pos: 53.5,55.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23942 - - 24187 - - 28271 - - uid: 14477 - components: - - type: Transform - pos: 56.5,46.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 12578 - - 24244 - - 23643 - - uid: 14478 - components: - - type: Transform - pos: 58.5,45.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24244 - - 23643 - - uid: 14479 - components: - - type: Transform - pos: 45.5,46.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24244 - - 23643 - - uid: 14480 - components: - - type: Transform - pos: 31.5,44.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24244 - - 23643 - - 30450 - - uid: 14481 - components: - - type: Transform - pos: 32.5,44.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24244 - - 23643 - - 30450 - - uid: 14482 - components: - - type: Transform - pos: 33.5,50.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 30452 - - uid: 14483 - components: - - type: Transform - pos: 28.5,50.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23626 - - 23938 - - uid: 14484 - components: - - type: Transform - pos: 30.5,52.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23635 - - uid: 14485 - components: - - type: Transform - pos: 26.5,54.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23635 - - 23938 - - uid: 14486 - components: - - type: Transform - pos: 27.5,53.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23626 - - 23635 - - 23938 - - uid: 14524 - components: - - type: Transform - pos: 20.5,57.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23625 - - 23594 - - uid: 14525 - components: - - type: Transform - pos: 20.5,58.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23625 - - 23594 - - uid: 14526 - components: - - type: Transform - pos: 22.5,60.5 - parent: 12 - - uid: 14552 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,64.5 - parent: 12 - - uid: 14553 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,67.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23594 - - 23939 - - uid: 14557 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,62.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23594 - - 23939 - - uid: 14558 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,61.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23625 - - 23594 - - 23939 - - uid: 14559 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,61.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23594 - - 23939 - - uid: 14561 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,62.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23594 - - 23939 - - uid: 14587 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,55.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23626 - - 23594 - - 23938 - - 23939 - - uid: 14588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,55.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23626 - - 23594 - - 23938 - - 23939 - - uid: 14618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,46.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23630 - - 23904 - - 28331 - - uid: 14619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,41.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23626 - - 23904 - - 23938 - - 28331 - - uid: 14620 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,42.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23626 - - 23904 - - 23938 - - 28331 - - uid: 14622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,67.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23594 - - 23939 - - uid: 14646 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,63.5 - parent: 12 - - uid: 14899 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,71.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23939 - - uid: 14900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,71.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23939 - - uid: 14901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,71.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23939 - - uid: 14902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,71.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23939 - - uid: 15653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,26.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28337 - - uid: 15654 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,26.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28337 - - uid: 15655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,29.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28337 - - uid: 15656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,29.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28337 - - uid: 15699 - components: - - type: Transform - pos: -16.5,14.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23905 - - 23913 - - 2857 - - 449 - - uid: 15700 - components: - - type: Transform - pos: -21.5,28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23905 - - 23910 - - 2857 - - 28339 - - uid: 15701 - components: - - type: Transform - pos: -15.5,14.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23905 - - 23913 - - 2857 - - 449 - - uid: 15702 - components: - - type: Transform - pos: -21.5,27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23905 - - 23910 - - 2857 - - 28339 - - uid: 15732 - components: - - type: Transform - pos: -31.5,36.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23809 - - 23815 - - uid: 15733 - components: - - type: Transform - pos: -23.5,37.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23811 - - uid: 15783 - components: - - type: Transform - pos: 4.5,33.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22582 - - uid: 15906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,16.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23913 - - 28381 - - uid: 15907 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,17.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23913 - - 449 - - 28381 - - uid: 15908 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23913 - - 449 - - 16497 - - uid: 15909 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23913 - - 449 - - 16497 - - uid: 16364 - components: - - type: Transform - pos: -28.5,59.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29272 - - 29275 - - uid: 16379 - components: - - type: Transform - pos: -10.5,26.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28337 - - uid: 16408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,6.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23913 - - 449 - - uid: 16409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,12.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23913 - - 449 - - uid: 16410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,9.5 - parent: 12 - - uid: 16530 - components: - - type: Transform - pos: -24.5,2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23913 - - 449 - - uid: 16633 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23816 - - 23905 - - 28270 - - 2857 - - uid: 16634 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23816 - - 23905 - - 28270 - - 2857 - - uid: 16635 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23816 - - 23905 - - 28270 - - 2857 - - uid: 16636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23905 - - 2857 - - 28337 - - uid: 16665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-34.5 - parent: 12 - - uid: 16702 - components: - - type: Transform - pos: -18.5,0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9702 - - uid: 17131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,46.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23632 - - 23904 - - 28331 - - uid: 17132 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,46.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23632 - - 23904 - - 28331 - - uid: 17133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,41.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23626 - - 23938 - - 24244 - - 23643 - - uid: 17134 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,42.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23626 - - 23938 - - 24244 - - 23643 - - uid: 17642 - components: - - type: Transform - pos: -51.5,23.5 - parent: 12 - - uid: 17643 - components: - - type: Transform - pos: -45.5,24.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18884 - - uid: 17644 - components: - - type: Transform - pos: -44.5,28.5 - parent: 12 - - uid: 17645 - components: - - type: Transform - pos: -44.5,29.5 - parent: 12 - - uid: 17646 - components: - - type: Transform - pos: -40.5,28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23910 - - 28339 - - uid: 17647 - components: - - type: Transform - pos: -40.5,29.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23910 - - 28339 - - uid: 17648 - components: - - type: Transform - pos: -40.5,34.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23804 - - 23815 - - 23809 - - uid: 17649 - components: - - type: Transform - pos: -45.5,34.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23804 - - uid: 17650 - components: - - type: Transform - pos: -51.5,35.5 - parent: 12 - - uid: 17651 - components: - - type: Transform - pos: -50.5,32.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18887 - - 23809 - - uid: 17652 - components: - - type: Transform - pos: -50.5,33.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18887 - - 23809 - - uid: 17653 - components: - - type: Transform - pos: -50.5,31.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18887 - - 23809 - - uid: 17654 - components: - - type: Transform - pos: -50.5,26.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18887 - - 23809 - - uid: 17655 - components: - - type: Transform - pos: -50.5,25.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18887 - - 23809 - - uid: 17656 - components: - - type: Transform - pos: -50.5,24.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18887 - - 23809 - - uid: 18275 - components: - - type: Transform - pos: -49.5,55.5 - parent: 12 - - uid: 18636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,45.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23816 - - 23904 - - 28331 - - 28270 - - uid: 18637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,44.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23816 - - 23904 - - 28331 - - 28270 - - uid: 18638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,43.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23816 - - 23904 - - 28331 - - 28270 - - uid: 18639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,42.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23816 - - 28270 - - uid: 18644 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,42.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23816 - - 28270 - - uid: 18645 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,46.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23816 - - 28270 - - uid: 18646 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,46.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23816 - - 28270 - - uid: 18656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,46.5 - parent: 12 - - uid: 18848 - components: - - type: Transform - pos: -38.5,22.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18884 - - uid: 19289 - components: - - type: Transform - pos: -48.5,57.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23791 - - uid: 19290 - components: - - type: Transform - pos: -47.5,60.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23791 - - uid: 19338 - components: - - type: Transform - pos: -37.5,58.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23791 - - 29275 - - uid: 19339 - components: - - type: Transform - pos: -37.5,59.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23791 - - 29275 - - uid: 19738 - components: - - type: Transform - pos: -17.5,63.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22398 - - uid: 19739 - components: - - type: Transform - pos: -13.5,63.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22398 - - 23903 - - uid: 19740 - components: - - type: Transform - pos: -10.5,57.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22398 - - 23903 - - uid: 19741 - components: - - type: Transform - pos: -9.5,57.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22398 - - 23903 - - uid: 19742 - components: - - type: Transform - pos: -9.5,67.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22398 - - 23903 - - uid: 19743 - components: - - type: Transform - pos: -11.5,69.5 - parent: 12 - - uid: 19744 - components: - - type: Transform - pos: -9.5,70.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 30349 - - uid: 19745 - components: - - type: Transform - pos: -7.5,69.5 - parent: 12 - - uid: 19746 - components: - - type: Transform - pos: -5.5,61.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22398 - - 23903 - - uid: 19747 - components: - - type: Transform - pos: -14.5,52.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 25516 - - uid: 19749 - components: - - type: Transform - pos: -17.5,55.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 25516 - - uid: 19750 - components: - - type: Transform - pos: -9.5,46.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23816 - - 28270 - - uid: 19751 - components: - - type: Transform - pos: -7.5,46.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23816 - - 28270 - - uid: 19752 - components: - - type: Transform - pos: -11.5,50.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 25516 - - uid: 19812 - components: - - type: Transform - pos: 3.5,63.5 - parent: 12 - - uid: 19813 - components: - - type: Transform - pos: -1.5,61.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22398 - - uid: 19814 - components: - - type: Transform - pos: -5.5,52.5 - parent: 12 - - uid: 19846 - components: - - type: Transform - pos: -13.5,28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23905 - - 2857 - - 28337 - - uid: 20333 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,39.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23800 - - 23809 - - 23815 - - uid: 20334 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,41.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23800 - - 23809 - - 23815 - - uid: 20335 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,43.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23809 - - 23815 - - 29275 - - uid: 20336 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,43.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23809 - - 23815 - - 29275 - - uid: 20337 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,43.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23809 - - 23815 - - uid: 20338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,45.5 - parent: 12 - - uid: 20339 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,48.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29275 - - uid: 20344 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,60.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23791 - - uid: 20345 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,60.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23791 - - uid: 20772 - components: - - type: Transform - pos: -25.5,30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23910 - - 28339 - - uid: 20773 - components: - - type: Transform - pos: -23.5,33.5 - parent: 12 - - uid: 20774 - components: - - type: Transform - pos: -18.5,33.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23816 - - uid: 20775 - components: - - type: Transform - pos: -33.5,34.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23809 - - 23815 - - uid: 20790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-54.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28354 - - uid: 20843 - components: - - type: Transform - pos: -36.5,63.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 20779 - - uid: 20844 - components: - - type: Transform - pos: -33.5,63.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 20779 - - uid: 21081 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-34.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27296 - - uid: 21300 - components: - - type: Transform - pos: -42.5,47.5 - parent: 12 - - uid: 21373 - components: - - type: Transform - pos: -30.5,49.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23786 - - uid: 21374 - components: - - type: Transform - pos: -29.5,49.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23786 - - uid: 21519 - components: - - type: Transform - pos: -12.5,-7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9702 - - uid: 21567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,58.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23630 - - uid: 21889 - components: - - type: Transform - pos: -9.5,-6.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23917 - - 9702 - - uid: 22142 - components: - - type: Transform - pos: 53.5,-6.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27311 - - uid: 22246 - components: - - type: Transform - pos: 32.5,-7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22248 - - uid: 22247 - components: - - type: Transform - pos: 37.5,-5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22248 - - uid: 22521 - components: - - type: Transform - pos: 7.5,42.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22582 - - 23904 - - 28331 - - uid: 22523 - components: - - type: Transform - pos: 8.5,42.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22582 - - 23904 - - 28331 - - uid: 22583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,35.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22582 - - uid: 22718 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,60.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23630 - - uid: 23747 - components: - - type: Transform - pos: 60.5,48.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24184 - - 12578 - - uid: 23748 - components: - - type: Transform - pos: 60.5,49.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24184 - - 12578 - - uid: 23749 - components: - - type: Transform - pos: 57.5,51.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24187 - - 12578 - - uid: 23750 - components: - - type: Transform - pos: 65.5,53.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24184 - - 24187 - - uid: 23790 - components: - - type: Transform - pos: -31.5,53.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23786 - - uid: 23812 - components: - - type: Transform - pos: -26.5,40.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23811 - - 23815 - - 23809 - - uid: 23813 - components: - - type: Transform - pos: -21.5,42.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23811 - - uid: 23814 - components: - - type: Transform - pos: -19.5,40.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23811 - - 23816 - - 28270 - - uid: 23817 - components: - - type: Transform - pos: -18.5,44.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23816 - - 28270 - - uid: 23891 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 448 - - 11505 - - uid: 23906 - components: - - type: Transform - pos: -13.5,16.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23905 - - 2857 - - uid: 23907 - components: - - type: Transform - pos: -13.5,17.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23905 - - 2857 - - uid: 23908 - components: - - type: Transform - pos: -18.5,16.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23905 - - 2857 - - uid: 23909 - components: - - type: Transform - pos: -18.5,17.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23905 - - 2857 - - uid: 23911 - components: - - type: Transform - pos: -26.5,24.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23910 - - 28339 - - uid: 23912 - components: - - type: Transform - pos: -30.5,22.5 - parent: 12 - - uid: 23914 - components: - - type: Transform - pos: -16.5,4.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23913 - - 23917 - - 449 - - 9702 - - uid: 23915 - components: - - type: Transform - pos: -15.5,4.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23913 - - 23917 - - 449 - - 9702 - - uid: 23916 - components: - - type: Transform - pos: -24.5,16.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23913 - - 449 - - uid: 23918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23917 - - 9702 - - uid: 23919 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-29.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23925 - - 28360 - - uid: 23920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-24.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23925 - - 28360 - - uid: 23921 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-23.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23925 - - 28360 - - uid: 23922 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-31.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23925 - - 28360 - - uid: 23923 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-31.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23925 - - 28360 - - uid: 23928 - components: - - type: Transform - pos: 45.5,-33.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23927 - - 4418 - - uid: 23932 - components: - - type: Transform - pos: -47.5,-29.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23930 - - uid: 23933 - components: - - type: Transform - pos: -50.5,-26.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23930 - - 1699 - - uid: 23934 - components: - - type: Transform - pos: -50.5,-22.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23930 - - 1699 - - uid: 23935 - components: - - type: Transform - pos: 11.5,-38.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2852 - - uid: 23936 - components: - - type: Transform - pos: 11.5,-37.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23937 - - 2852 - - uid: 23943 - components: - - type: Transform - pos: 53.5,54.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23942 - - 24187 - - 28271 - - uid: 24082 - components: - - type: Transform - pos: 51.5,50.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24244 - - 23643 - - 28271 - - 23942 - - uid: 24083 - components: - - type: Transform - pos: 50.5,50.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24244 - - 23643 - - 28271 - - 23942 - - uid: 24427 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-22.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 7342 - - uid: 24662 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,59.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29272 - - uid: 25372 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-42.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 25448 - - 28502 - - uid: 25373 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-40.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 25448 - - uid: 25681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,5.5 - parent: 12 - - type: DeviceNetwork - 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 - rot: -1.5707963267948966 rad - pos: -45.5,56.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23791 - - uid: 26161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 6833 - - uid: 26235 - components: - - type: Transform - pos: -53.5,-33.5 - parent: 12 - - uid: 26245 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-39.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 921 - - uid: 26289 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,61.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29272 - - uid: 26671 - components: - - type: Transform - 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: - - 28271 - - 23942 - - uid: 26923 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,3.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27311 - - 27312 - - uid: 27005 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,7.5 - parent: 12 - - 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 - rot: 1.5707963267948966 rad - pos: -37.5,52.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 70 - - 29275 - - uid: 27280 - components: - - type: Transform - pos: 1.5,-33.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27296 - - uid: 27309 - components: - - type: Transform - rot: 1.5707963267948966 rad - 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 - rot: 1.5707963267948966 rad - pos: -27.5,-11.5 - parent: 12 - - uid: 27918 - components: - - type: Transform - pos: 32.5,20.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9101 - - 30453 - - uid: 27957 - components: - - type: Transform - pos: 23.5,5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3983 - - uid: 27965 - components: - - type: Transform - pos: 23.5,6.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3983 - - uid: 27970 - components: - - type: Transform - pos: 15.5,6.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3983 - - uid: 28356 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-34.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27296 - - uid: 28904 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 4906 - - 31755 - - uid: 29100 - components: - - type: Transform - pos: 33.5,20.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9101 - - 30453 - - uid: 29207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,62.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29270 - - 29272 - - uid: 29276 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,48.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29275 - - uid: 29277 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,53.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29275 - - uid: 29393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-25.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23927 - - 4418 - - 7342 - - uid: 29867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-38.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9972 - - uid: 29981 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-24.5 - parent: 12 - - uid: 29982 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-24.5 - parent: 12 - - uid: 29996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,66.5 - parent: 12 - - uid: 30199 - components: - - type: Transform - pos: 44.5,61.5 - parent: 12 - - uid: 30447 - components: - - type: Transform - pos: 46.5,8.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 30445 - - uid: 30448 - components: - - type: Transform - pos: 39.5,11.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 30445 - - uid: 30449 - components: - - type: Transform - pos: 31.5,12.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9101 - - uid: 30451 - components: - - type: Transform - pos: 34.5,48.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 30450 - - 30452 - - uid: 31515 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 11505 - - uid: 31516 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 11505 - - uid: 31553 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-32.5 - parent: 12 - - uid: 31715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-14.5 - parent: 12 - - uid: 31716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-16.5 - parent: 12 - - uid: 31758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 31755 - - uid: 31990 - components: - - type: Transform - pos: 8.5,-3.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3983 - - uid: 31991 - components: - - type: Transform - pos: 7.5,-6.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3983 - - uid: 31992 - components: - - type: Transform - pos: 20.5,-13.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3983 - - uid: 32069 - components: - - type: Transform - pos: 36.5,-13.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 32066 -- proto: Fireplace - entities: - - uid: 28307 - components: - - type: Transform - pos: -37.5,-14.5 - parent: 12 - - uid: 30393 - components: - - type: Transform - pos: -15.5,73.5 - parent: 12 -- proto: Flash - entities: - - uid: 26214 - components: - - type: Transform - pos: -32.480057,41.497932 - parent: 12 -- proto: FlashlightLantern - entities: - - uid: 8997 - components: - - type: Transform - rot: -37.69911184307754 rad - pos: 38.711037,-23.654663 - parent: 12 - - type: HandheldLight - toggleActionEntity: 8998 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 8998 - - type: ActionsContainer - - uid: 8999 - components: - - type: Transform - rot: -37.69911184307754 rad - pos: 38.115814,-23.238823 - parent: 12 - - type: HandheldLight - toggleActionEntity: 9392 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 9392 - - type: ActionsContainer - - uid: 9107 - components: - - type: Transform - pos: 43.716873,-32.370197 - parent: 12 - - uid: 9808 - components: - - type: Transform - pos: 8.494595,-22.511063 - parent: 12 - - uid: 9809 - components: - - type: Transform - pos: 8.307095,-22.104813 - parent: 12 - - uid: 10388 - components: - - type: Transform - pos: -21.324892,-7.465754 - parent: 12 - - type: HandheldLight - toggleActionEntity: 5596 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 5596 - - type: ActionsContainer - - uid: 10389 - components: - - type: Transform - pos: -21.487967,-7.6532903 - parent: 12 - - type: HandheldLight - toggleActionEntity: 5597 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 5597 - - type: ActionsContainer - - uid: 16477 - components: - - type: Transform - pos: -12.4423065,5.162703 - parent: 12 - - uid: 16478 - components: - - type: Transform - pos: -12.421473,5.4335365 - parent: 12 - - uid: 16479 - components: - - type: Transform - pos: -12.4110565,5.6835365 - parent: 12 - - uid: 26655 - components: - - type: Transform - 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 - 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 - components: - - type: Transform - pos: 31.983833,27.524036 - parent: 12 - - uid: 13712 - components: - - type: Transform - pos: 18.79824,27.680288 - parent: 12 - - uid: 17376 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -29.955828,7.493202 - parent: 12 - - uid: 17610 - components: - - type: Transform - pos: -51.686638,29.299244 - parent: 12 - - uid: 24094 - components: - - type: Transform - pos: 63.528076,45.615196 - parent: 12 -- proto: Floodlight - entities: - - uid: 4313 - components: - - type: Transform - pos: 79.504265,-32.459354 - parent: 12 - - type: HandheldLight - toggleActionEntity: 12036 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 12036 - - type: ActionsContainer - - uid: 12064 - components: - - type: Transform - pos: 78.500854,-32.475662 - parent: 12 - - type: HandheldLight - toggleActionEntity: 12037 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 12037 - - type: ActionsContainer -- proto: FloorDrain - entities: - - uid: 2728 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-33.5 - parent: 12 - - type: Fixtures - fixtures: {} - - uid: 4240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-30.5 - parent: 12 - - type: Fixtures - fixtures: {} - - uid: 5212 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-50.5 - parent: 12 - - type: Fixtures - fixtures: {} - - uid: 5877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-18.5 - parent: 12 - - type: Fixtures - fixtures: {} - - uid: 7589 - components: - - type: Transform - pos: 5.5,-39.5 - parent: 12 - - type: Fixtures - fixtures: {} - - uid: 11212 - components: - - type: Transform - pos: -20.5,-29.5 - parent: 12 - - type: Fixtures - fixtures: {} - - uid: 11948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-38.5 - parent: 12 - - type: Fixtures - fixtures: {} - - uid: 12264 - components: - - type: Transform - pos: 45.5,18.5 - parent: 12 - - type: Fixtures - fixtures: {} - - uid: 19351 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,55.5 - parent: 12 - - type: Fixtures - fixtures: {} - - uid: 19873 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,51.5 - parent: 12 - - type: Fixtures - fixtures: {} - - uid: 22404 - components: - - type: Transform - pos: -5.5,56.5 - parent: 12 - - type: Fixtures - fixtures: {} - - uid: 23563 - components: - - type: Transform - pos: 40.5,52.5 - parent: 12 - - type: Fixtures - fixtures: {} - - uid: 25986 - components: - - type: Transform - pos: -43.5,-48.5 - parent: 12 - - type: Fixtures - fixtures: {} - - uid: 28211 - components: - - type: Transform - pos: 7.5,-51.5 - parent: 12 - - type: Fixtures - fixtures: {} -- proto: FloorTileItemDirty - entities: - - uid: 25013 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.419593,66.49368 - parent: 12 -- proto: FloorTileItemSteel - entities: - - uid: 12982 - components: - - type: Transform - pos: 34.733173,29.305468 - parent: 12 -- proto: FloorWaterEntity - entities: - - uid: 12895 - components: - - type: Transform - pos: 37.5,33.5 - parent: 12 - - uid: 12896 - components: - - type: Transform - pos: 37.5,34.5 - parent: 12 - - uid: 12897 - components: - - type: Transform - pos: 38.5,33.5 - parent: 12 - - uid: 12898 - components: - - type: Transform - pos: 38.5,34.5 - parent: 12 - - uid: 12899 - components: - - type: Transform - pos: 39.5,33.5 - parent: 12 - - uid: 12900 - components: - - type: Transform - pos: 39.5,34.5 - parent: 12 - - uid: 12901 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,33.5 - parent: 12 - - uid: 12902 - components: - - type: Transform - pos: 40.5,34.5 - parent: 12 - - uid: 22445 - components: - - type: Transform - pos: 7.5,39.5 - parent: 12 - - uid: 22446 - components: - - type: Transform - pos: 7.5,38.5 - parent: 12 - - uid: 22447 - components: - - type: Transform - pos: 7.5,37.5 - parent: 12 - - uid: 22448 - components: - - type: Transform - pos: 7.5,36.5 - parent: 12 - - uid: 22449 - components: - - type: Transform - pos: 6.5,39.5 - parent: 12 - - uid: 22450 - components: - - type: Transform - pos: 6.5,38.5 - parent: 12 - - uid: 22451 - components: - - type: Transform - pos: 6.5,37.5 - parent: 12 - - uid: 22452 - components: - - type: Transform - pos: 6.5,36.5 - parent: 12 - - uid: 22453 - components: - - type: Transform - pos: 5.5,39.5 - parent: 12 - - uid: 22454 - components: - - type: Transform - pos: 5.5,38.5 - parent: 12 - - uid: 22455 - components: - - type: Transform - pos: 5.5,37.5 - parent: 12 - - uid: 22456 - components: - - type: Transform - pos: 5.5,36.5 - parent: 12 - - uid: 22457 - components: - - type: Transform - pos: 4.5,39.5 - parent: 12 - - uid: 22458 - components: - - type: Transform - pos: 4.5,38.5 - parent: 12 - - uid: 22459 - components: - - type: Transform - pos: 4.5,37.5 - parent: 12 - - uid: 22460 - components: - - type: Transform - pos: 4.5,36.5 - parent: 12 - - uid: 22461 - components: - - type: Transform - pos: 3.5,39.5 - parent: 12 - - uid: 22462 - components: - - type: Transform - pos: 3.5,38.5 - parent: 12 - - uid: 22463 - components: - - type: Transform - pos: 3.5,36.5 - parent: 12 - - uid: 22464 - components: - - type: Transform - pos: 2.5,37.5 - parent: 12 - - uid: 22465 - components: - - type: Transform - pos: 2.5,39.5 - parent: 12 - - uid: 22466 - components: - - type: Transform - pos: 2.5,38.5 - parent: 12 - - uid: 22467 - components: - - type: Transform - pos: 3.5,37.5 - parent: 12 - - uid: 22468 - components: - - type: Transform - pos: 2.5,36.5 - parent: 12 -- proto: FloraTree - entities: - - uid: 2748 - components: - - type: Transform - pos: -7.8905973,-55.743637 - parent: 12 -- proto: FloraTreeChristmas02 - entities: - - uid: 28861 - components: - - type: Transform - pos: 22,-26 - parent: 12 -- proto: FloraTreeLarge - entities: - - uid: 10941 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.7588944,29.263266 - parent: 12 - - uid: 12001 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.469524,-11.638336 - parent: 12 - - uid: 16654 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5758333,29.903433 - parent: 12 - - uid: 16655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.796552,25.585442 - parent: 12 - - uid: 16656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.7850382,24.706781 - parent: 12 -- proto: FloraTreeStump - entities: - - uid: 2749 - components: - - type: Transform - pos: -5.9218473,-57.649887 - parent: 12 - - uid: 15847 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.0779247,26.137743 - parent: 12 - - uid: 15848 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.4293902,31.447367 - parent: 12 - - uid: 17332 - components: - - type: Transform - 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 - components: - - type: Transform - pos: 19.617043,-18.507524 - parent: 12 - - uid: 9849 - components: - - type: Transform - pos: 19.364277,-18.271065 - parent: 12 -- proto: FoodApple - entities: - - uid: 25859 - components: - - type: Transform - pos: 57.657833,58.144764 - parent: 12 - - uid: 25860 - components: - - 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: FoodBakedCookie - entities: - - uid: 31677 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 24.602898,-28.325752 - parent: 12 - - uid: 31678 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 24.44549,-28.571293 - parent: 12 -- proto: FoodBanana - entities: - - uid: 4201 - components: - - type: Transform - pos: -9.655863,20.270027 - parent: 12 - - uid: 9998 - components: - - type: Transform - pos: -11.85737,19.691113 - parent: 12 - - uid: 31504 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -20.334875,-13.652145 - parent: 12 - - uid: 31505 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -18.69425,-14.46521 - parent: 12 - - uid: 31506 - components: - - type: Transform - pos: -18.288,-12.151104 - parent: 12 - - uid: 31507 - components: - - type: Transform - pos: -20.412998,-10.931505 - parent: 12 -- proto: FoodBowlBig - entities: - - uid: 8728 - components: - - type: Transform - pos: 31.47438,24.75063 - parent: 12 - - uid: 15073 - components: - - type: Transform - pos: 21.5,50.5 - parent: 12 - - uid: 15074 - components: - - type: Transform - pos: 20.5,53.5 - parent: 12 - - uid: 15075 - components: - - type: Transform - pos: 21.5,51.5 - parent: 12 - - uid: 23556 - components: - - type: Transform - pos: 34.48866,52.719734 - parent: 12 - - uid: 23557 - components: - - type: Transform - pos: 34.480503,52.890965 - parent: 12 - - uid: 31591 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 31.409153,24.530325 - parent: 12 -- proto: FoodBowlBigTrash - entities: - - uid: 31150 - components: - - type: Transform - rot: -31.415926535897945 rad - pos: -31.432775,-58.28114 - parent: 12 -- proto: FoodBoxDonkpocket - entities: - - uid: 3807 - components: - - type: Transform - pos: -20.566486,-56.447628 - parent: 12 - - uid: 13337 - components: - - type: Transform - pos: 54.4793,29.485868 - parent: 12 - - uid: 29356 - components: - - type: Transform - pos: 54.5,61.5 - parent: 12 -- proto: FoodBoxDonkpocketHonk - entities: - - uid: 31510 - components: - - type: Transform - pos: -20.437183,-9.567356 - parent: 12 -- proto: FoodBoxDonkpocketSpicy - entities: - - uid: 24446 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 55.676666,5.3604836 - parent: 12 -- proto: FoodBoxDonkpocketStonk - entities: - - uid: 6757 - components: - - type: Transform - rot: -37.69911184307754 rad - pos: 63.531303,-26.01895 - parent: 12 -- proto: FoodBoxDonut - entities: - - uid: 21413 - components: - - type: Transform - pos: -34.654446,38.680275 - parent: 12 - - uid: 21414 - components: - - type: Transform - pos: -34.299114,38.455334 - parent: 12 -- proto: FoodBoxPizzaFilled - entities: - - uid: 10911 - components: - - type: Transform - pos: 0.5,52.5 - parent: 12 -- proto: FoodBreadMoldySlice - entities: - - uid: 3240 - components: - - type: Transform - pos: -3.51239,22.532377 - parent: 12 - - uid: 31123 - components: - - type: Transform - pos: -30.467789,-57.532593 - parent: 12 -- proto: FoodBreadPlain - entities: - - uid: 22885 - components: - - type: Transform - pos: 26.388363,60.742725 - parent: 12 -- proto: FoodBurgerChicken - entities: - - uid: 24095 - components: - - type: Transform - pos: 64.51245,50.631386 - parent: 12 -- proto: FoodBurgerClown - entities: - - uid: 22808 - components: - - type: Transform - pos: 5.695893,57.543556 - parent: 12 -- proto: FoodBurgerMcguffin - entities: - - uid: 28686 - components: - - type: Transform - pos: 52.626194,5.4898076 - parent: 12 -- proto: FoodBurgerMime - entities: - - uid: 22707 - components: - - type: Transform - pos: 3.7616825,57.618866 - parent: 12 -- proto: FoodBurgerMothRoach - entities: - - uid: 28505 - components: - - type: Transform - pos: 10.45153,-49.457336 - parent: 12 -- proto: FoodCakeChristmas - entities: - - uid: 22173 - components: - - type: Transform - pos: 21.240437,-26.565382 - parent: 12 -- proto: FoodCakeSuppermatterSlice - entities: - - uid: 15371 - components: - - type: Transform - pos: -0.5,19.5 - parent: 12 -- proto: FoodCartCold - entities: - - uid: 13311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,45.5 - parent: 12 -- proto: FoodCartHot - entities: - - uid: 23559 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,55.5 - parent: 12 -- proto: FoodCondimentBottleEnzyme - entities: - - uid: 11791 - components: - - type: Transform - pos: 25.738708,55.553703 - parent: 12 -- proto: FoodCondimentPacketKetchup - entities: - - uid: 15065 - components: - - type: Transform - pos: 20.960737,52.716328 - parent: 12 -- proto: FoodCondimentPacketMustard - entities: - - uid: 15066 - components: - - type: Transform - pos: 20.783653,52.945496 - parent: 12 -- proto: FoodCondimentPacketPepper - entities: - - uid: 15068 - components: - - type: Transform - pos: 21.096153,50.757996 - parent: 12 -- proto: FoodCondimentPacketSalt - entities: - - uid: 341 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 39.342648,63.71342 - parent: 12 - - uid: 15067 - components: - - type: Transform - pos: 21.273237,50.997578 - parent: 12 - - uid: 31599 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 39.129684,63.4756 - parent: 12 -- proto: FoodContainerEgg - entities: - - uid: 11579 - components: - - type: Transform - pos: 57.538345,56.66531 - parent: 12 -- proto: FoodFrozenSnowcone - entities: - - uid: 22491 - components: - - type: Transform - pos: 4.2259855,41.45399 - parent: 12 -- proto: FoodFrozenSnowconeClown - entities: - - uid: 22488 - components: - - type: Transform - pos: 4.602779,41.71759 - parent: 12 - - uid: 22703 - components: - - type: Transform - pos: 5.3442173,57.744392 - parent: 12 -- proto: FoodFrozenSnowconeFruit - entities: - - uid: 22494 - components: - - type: Transform - pos: 4.615339,41.32385 - parent: 12 -- proto: FoodFrozenSnowconeMime - entities: - - uid: 22696 - components: - - type: Transform - pos: 3.284409,57.86991 - parent: 12 -- proto: FoodFrozenSnowconeTrash - entities: - - uid: 22493 - components: - - type: Transform - pos: 4.2259855,41.253155 - parent: 12 -- proto: FoodKebabSkewer - entities: - - uid: 31139 - components: - - type: Transform - pos: -31.2631,-57.502415 - parent: 12 - - uid: 31140 - components: - - type: Transform - pos: -31.49684,-57.333786 - parent: 12 -- proto: FoodMealEggplantParm - entities: - - uid: 31902 - components: - - 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 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: 0.4457004,-68.474846 - parent: 12 - - uid: 31347 - components: - - type: Transform - pos: -2.5056877,-67.55059 - parent: 12 -- proto: FoodMeatCutletCooked - entities: - - uid: 24164 - components: - - type: Transform - pos: 62.3479,50.36764 - parent: 12 -- proto: FoodMeatRotten - entities: - - uid: 31115 - components: - - type: Transform - pos: -38.5,-56.5 - parent: 12 -- proto: FoodNoodles - entities: - - uid: 20830 - components: - - type: Transform - pos: -42.57975,32.5926 - parent: 12 -- proto: FoodPieBananaCream - entities: - - uid: 22810 - components: - - type: Transform - pos: 5.293979,57.330166 - parent: 12 -- proto: FoodPieBananaCreamSlice - entities: - - uid: 21381 - components: - - type: Transform - pos: -24.503761,44.49396 - parent: 12 -- proto: FoodPizzaMoldySlice - entities: - - uid: 31124 - components: - - type: Transform - pos: -30.5164,-58.581932 - parent: 12 -- proto: FoodPizzaUraniumSlice - entities: - - uid: 30340 - components: - - type: Transform - pos: -40.483036,-56.420677 - parent: 12 -- proto: FoodPlate - entities: - - uid: 15048 - components: - - type: Transform - pos: 21.5,48.5 - parent: 12 - - uid: 20829 - components: - - type: Transform - pos: -42.55297,32.61269 - parent: 12 - - uid: 22884 - components: - - type: Transform - pos: 26.363243,60.742725 - parent: 12 - - uid: 23554 - components: - - type: Transform - pos: 34.52127,52.31205 - parent: 12 - - uid: 23555 - components: - - type: Transform - pos: 34.52127,52.4262 - parent: 12 - - uid: 24165 - components: - - type: Transform - pos: 62.4104,50.602016 - parent: 12 - - uid: 24166 - components: - - type: Transform - pos: 64.56665,50.71139 - parent: 12 - - uid: 31653 - components: - - type: Transform - pos: 21.224129,-26.540905 - parent: 12 -- proto: FoodPlatePlastic - entities: - - uid: 31121 - components: - - type: Transform - pos: -30.5,-58.5 - parent: 12 -- proto: FoodPlateSmall - entities: - - uid: 15049 - components: - - type: Transform - pos: 21.5,50.5 - parent: 12 - - uid: 15050 - components: - - type: Transform - pos: 21.5,51.5 - parent: 12 - - uid: 15051 - components: - - type: Transform - pos: 21.5,52.5 - parent: 12 - - uid: 15052 - components: - - type: Transform - pos: 21.5,53.5 - parent: 12 - - uid: 15053 - components: - - type: Transform - pos: 20.5,53.5 - parent: 12 - - uid: 15054 - components: - - type: Transform - pos: 20.5,52.5 - parent: 12 - - uid: 15055 - components: - - type: Transform - pos: 20.5,51.5 - parent: 12 - - uid: 15056 - components: - - type: Transform - pos: 20.5,50.5 - parent: 12 - - uid: 28687 - components: - - type: Transform - pos: 52.619247,5.510641 - parent: 12 - - uid: 31122 - components: - - type: Transform - pos: -30.5,-57.5 - parent: 12 -- proto: FoodPlateSmallPlastic - entities: - - uid: 21382 - components: - - type: Transform - pos: -24.5,44.5 - parent: 12 - - uid: 21383 - components: - - type: Transform - pos: -26.867271,48.438313 - parent: 12 - - uid: 21384 - components: - - type: Transform - pos: -26.796207,48.68693 - parent: 12 -- proto: FoodPlateSmallTrash - entities: - - uid: 2664 - components: - - type: Transform - pos: -3.5,22.5 - parent: 12 - - uid: 31120 - components: - - type: Transform - pos: -30.5,-59.5 - parent: 12 - - uid: 31151 - components: - - type: Transform - rot: -37.69911184307754 rad - pos: -32.811203,-54.540565 - parent: 12 -- proto: FoodPlateTrash - entities: - - uid: 31152 - components: - - type: Transform - pos: -29.443712,-54.018364 - parent: 12 -- proto: FoodPotato - entities: - - uid: 31464 - components: - - type: Transform - pos: 5.7125697,-59.47866 - parent: 12 - - uid: 31465 - components: - - type: Transform - pos: 6.643125,-62.02904 - parent: 12 - - uid: 31466 - components: - - type: Transform - pos: 5.8445144,-61.33158 - parent: 12 -- proto: FoodRiceBoiled - entities: - - uid: 264 - components: - - type: Transform - pos: 31.425674,22.653664 - parent: 12 -- proto: FoodRiceEgg - entities: - - uid: 31597 - components: - - type: Transform - pos: 28.572287,23.800898 - parent: 12 -- proto: FoodSnackChips - entities: - - uid: 13336 - components: - - type: Transform - pos: 54.94805,28.277536 - parent: 12 - - uid: 13510 - components: - - 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: 9540 - components: - - type: Transform - pos: 2.4938688,68.63764 - parent: 12 - - 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 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 28.530884,23.314575 - parent: 12 -- proto: FoodSpaceshroomCooked - entities: - - uid: 31132 - components: - - 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 - components: - - type: Transform - pos: -32.41751,-59.52884 - parent: 12 -- proto: FoodTinPeachesMaint - entities: - - uid: 21597 - components: - - type: Transform - pos: -29.519777,21.595074 - parent: 12 - - uid: 27859 - components: - - type: Transform - pos: -53.388275,-43.57603 - parent: 12 -- proto: FoodTinPeachesMaintTrash - entities: - - uid: 29645 - components: - - type: Transform - pos: -27.343327,78.76142 - parent: 12 - - uid: 31133 - components: - - type: Transform - pos: -28.70083,-57.79198 - parent: 12 -- proto: Football - entities: - - uid: 22487 - components: - - type: Transform - pos: 2.5242314,41.778458 - parent: 12 - - uid: 24281 - components: - - type: Transform - pos: -6.6684904,63.501125 - parent: 12 - - uid: 24282 - components: - - type: Transform - pos: -7.011202,64.047424 - parent: 12 -- proto: Fork - entities: - - uid: 15076 - components: - - type: Transform - pos: 21.5,52.5 - parent: 12 - - uid: 20831 - components: - - type: Transform - pos: -42.11784,32.619385 - parent: 12 - - uid: 23546 - components: - - type: Transform - pos: 37.768116,54.385433 - parent: 12 - - uid: 23549 - components: - - type: Transform - pos: 37.5072,54.197895 - parent: 12 - - uid: 23551 - components: - - type: Transform - pos: 37.254433,53.9859 - parent: 12 - - uid: 28685 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 52.27581,5.7932963 - parent: 12 -- proto: ForkPlastic - entities: - - uid: 21385 - components: - - type: Transform - pos: -26.227678,48.56854 - parent: 12 -- proto: GameMasterCircuitBoard - entities: - - uid: 28852 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -3.3420668,-15.542583 - parent: 12 -- proto: GasAnalyzer - entities: - - uid: 5919 - components: - - type: Transform - rot: -43.98229715025713 rad - pos: 33.728954,-18.568962 - parent: 12 -- proto: GasFilter - entities: - - uid: 2802 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-56.5 - parent: 12 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 18269 - components: - - type: Transform - pos: -47.5,44.5 - parent: 12 -- proto: GasMinerCarbonDioxide - entities: - - uid: 5478 - components: - - type: Transform - pos: 25.5,-4.5 - parent: 12 -- proto: GasMinerNitrogenStationLarge - entities: - - uid: 7198 - components: - - type: Transform - pos: 25.5,-8.5 - parent: 12 -- proto: GasMinerOxygenStationLarge - entities: - - uid: 4876 - components: - - type: Transform - pos: 25.5,-10.5 - parent: 12 -- proto: GasMinerWaterVapor - entities: - - uid: 4625 - components: - - type: Transform - pos: 25.5,-2.5 - parent: 12 -- proto: GasMixer - entities: - - uid: 1795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-31.5 - parent: 12 - - uid: 9826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-19.5 - parent: 12 - - uid: 21523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,10.5 - parent: 12 -- proto: GasMixerFlipped - entities: - - uid: 18248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,41.5 - parent: 12 - - type: GasMixer - inletTwoConcentration: 0.78 - inletOneConcentration: 0.22 - targetPressure: 4500 -- proto: GasOutletInjector - entities: - - uid: 802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-25.5 - parent: 12 - - uid: 803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-21.5 - parent: 12 - - uid: 992 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-46.5 - parent: 12 - - uid: 2787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-62.5 - parent: 12 - - uid: 4576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-4.5 - parent: 12 - - uid: 4636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-10.5 - parent: 12 - - uid: 4640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,1.5 - parent: 12 - - uid: 4896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-0.5 - parent: 12 - - uid: 4961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-8.5 - parent: 12 - - uid: 5362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-2.5 - parent: 12 - - uid: 5843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-6.5 - parent: 12 - - uid: 7227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,3.5 - parent: 12 - - uid: 11205 - components: - - type: Transform - pos: 9.5,21.5 - parent: 12 - - uid: 11285 - components: - - type: Transform - pos: 16.5,21.5 - parent: 12 -- proto: GasPassiveVent - entities: - - uid: 1705 - components: - - type: Transform - pos: 6.5,21.5 - parent: 12 - - uid: 1717 - components: - - type: Transform - pos: 13.5,21.5 - parent: 12 - - uid: 2257 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-8.5 - parent: 12 - - uid: 2258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-10.5 - parent: 12 - - uid: 4637 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-4.5 - parent: 12 - - uid: 4641 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,1.5 - parent: 12 - - uid: 4962 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-6.5 - parent: 12 - - uid: 5869 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-2.5 - parent: 12 - - uid: 6214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,19.5 - parent: 12 - - uid: 7255 - components: - - type: Transform - 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 - rot: 1.5707963267948966 rad - pos: 39.5,52.5 - parent: 12 - - uid: 15415 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,52.5 - parent: 12 - - uid: 15787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,31.5 - parent: 12 - - uid: 15788 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,31.5 - parent: 12 - - uid: 32228 - components: - - type: Transform - pos: -4.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPipeBend - entities: - - uid: 928 - components: - - type: Transform - pos: 4.5,-57.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 965 - components: - - type: Transform - pos: -42.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 988 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-43.5 - parent: 12 - - uid: 989 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-43.5 - parent: 12 - - uid: 995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 996 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1013 - components: - - type: Transform - pos: -0.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1088 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1090 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1133 - components: - - type: Transform - pos: -26.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1144 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1171 - components: - - type: Transform - pos: -43.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1188 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1190 - components: - - type: Transform - pos: -42.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1259 - components: - - type: Transform - pos: -26.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1260 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1286 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1293 - components: - - type: Transform - pos: -17.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1294 - components: - - type: Transform - pos: -16.5,-20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1752 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1779 - components: - - type: Transform - pos: 16.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2086 - components: - - type: Transform - pos: 29.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2168 - components: - - type: Transform - pos: 25.5,0.5 - parent: 12 - - uid: 2341 - components: - - type: Transform - pos: -25.5,-53.5 - 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 - pos: 0.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2641 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2690 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 2733 - components: - - type: Transform - pos: 12.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 2734 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 2758 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2807 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-56.5 - parent: 12 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 2812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-56.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2813 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-56.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2863 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2898 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2905 - components: - - type: Transform - pos: -1.5,-53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-53.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2980 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3014 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-59.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 3544 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3545 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3549 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-54.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-54.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3563 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3565 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3617 - components: - - type: Transform - pos: 0.5,-36.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3618 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-36.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3645 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3646 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-33.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-33.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3682 - components: - - type: Transform - pos: 0.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3683 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3720 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3724 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3739 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3750 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3769 - components: - - type: Transform - pos: -15.5,-18.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-18.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4144 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4145 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-53.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4589 - components: - - type: Transform - pos: 25.5,-9.5 - parent: 12 - - uid: 4759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4847 - components: - - type: Transform - pos: 16.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4849 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4850 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4951 - components: - - type: Transform - pos: 0.5,-46.5 - parent: 12 - - uid: 4984 - components: - - type: Transform - pos: 25.5,-7.5 - parent: 12 - - uid: 4986 - components: - - type: Transform - pos: 25.5,-1.5 - parent: 12 - - uid: 5149 - components: - - type: Transform - pos: -45.5,-18.5 - parent: 12 - - uid: 5158 - components: - - type: Transform - pos: -20.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5187 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-30.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5295 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-36.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5373 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5382 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5389 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5397 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5413 - components: - - type: Transform - pos: 1.5,-49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5417 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 5427 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5504 - components: - - type: Transform - pos: 31.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5536 - components: - - type: Transform - pos: -35.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5549 - components: - - type: Transform - pos: 8.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5630 - components: - - type: Transform - pos: 25.5,-5.5 - parent: 12 - - uid: 5804 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5815 - components: - - type: Transform - pos: 6.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 6220 - components: - - type: Transform - pos: 22.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6905 - components: - - type: Transform - pos: 62.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7062 - components: - - type: Transform - pos: 50.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7121 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7168 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7189 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7194 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7205 - components: - - 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 - pos: -46.5,-19.5 - parent: 12 - - uid: 7329 - components: - - type: Transform - pos: 8.5,-36.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7341 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-14.5 - 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 - pos: 45.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7579 - components: - - type: Transform - pos: -7.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7796 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7818 - components: - - type: Transform - pos: 42.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7819 - components: - - type: Transform - pos: 38.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8305 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,0.5 - 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 - rot: 3.141592653589793 rad - pos: 41.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8532 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8534 - components: - - type: Transform - pos: 41.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8598 - components: - - type: Transform - pos: 58.5,-31.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-36.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8606 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-36.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8607 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8608 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8633 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8646 - components: - - type: Transform - pos: 51.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8664 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8711 - components: - - type: Transform - pos: 58.5,-19.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8712 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-19.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8793 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8989 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-23.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9073 - components: - - type: Transform - pos: 25.5,2.5 - parent: 12 - - uid: 9090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9128 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9143 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9414 - components: - - type: Transform - pos: 18.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9456 - components: - - type: Transform - pos: 1.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9509 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9621 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9626 - components: - - type: Transform - pos: 31.5,-9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9627 - components: - - type: Transform - pos: 21.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9755 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9860 - components: - - type: Transform - pos: 2.5,-19.5 - parent: 12 - - uid: 9863 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10081 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,13.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10082 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10085 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10304 - components: - - type: Transform - pos: -25.5,13.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10346 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-59.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 10376 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10873 - components: - - type: Transform - pos: 22.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11011 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11119 - components: - - type: Transform - pos: -14.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11120 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11429 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11473 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11611 - components: - - type: Transform - pos: 0.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12728 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12753 - components: - - type: Transform - pos: 43.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12754 - components: - - type: Transform - pos: 43.5,35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12755 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12757 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12758 - components: - - type: Transform - pos: 42.5,36.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12793 - components: - - type: Transform - pos: 54.5,35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12794 - components: - - type: Transform - pos: 55.5,37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12813 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,36.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12844 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12846 - components: - - type: Transform - pos: 49.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12859 - components: - - type: Transform - pos: 40.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12860 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12881 - components: - - type: Transform - pos: 44.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12931 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13104 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13140 - components: - - type: Transform - pos: 51.5,38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13274 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13517 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,23.5 - parent: 12 - - uid: 13520 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,25.5 - parent: 12 - - uid: 13594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13595 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14072 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14073 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14076 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14077 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14093 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14100 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15413 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,51.5 - parent: 12 - - uid: 15416 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,51.5 - parent: 12 - - uid: 15417 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,49.5 - parent: 12 - - uid: 15434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,47.5 - parent: 12 - - uid: 15822 - components: - - type: Transform - pos: -27.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15863 - components: - - type: Transform - pos: -26.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15937 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15938 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15939 - components: - - type: Transform - pos: -22.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16682 - components: - - type: Transform - pos: -22.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17138 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17246 - components: - - type: Transform - pos: 12.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17247 - components: - - type: Transform - pos: 13.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18254 - components: - - type: Transform - pos: -47.5,41.5 - parent: 12 - - uid: 18261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,44.5 - parent: 12 - - uid: 18262 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,43.5 - parent: 12 - - uid: 18723 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18732 - components: - - type: Transform - pos: -36.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18765 - components: - - type: Transform - pos: -41.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18766 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18771 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18775 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18777 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18806 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,35.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18831 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,32.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,32.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19181 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,35.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19967 - components: - - type: Transform - pos: -37.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19981 - components: - - type: Transform - pos: -20.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19982 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19985 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19986 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20108 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20139 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,36.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20140 - components: - - type: Transform - pos: -22.5,36.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20957 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-20.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20977 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21008 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21360 - components: - - type: Transform - pos: -29.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,10.5 - parent: 12 - - uid: 21529 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: -10.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22151 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22155 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22243 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22316 - components: - - type: Transform - pos: 48.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22552 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22553 - components: - - type: Transform - pos: 9.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22554 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22575 - components: - - type: Transform - pos: 4.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22576 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22877 - components: - - type: Transform - pos: -5.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22886 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22993 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22994 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22995 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,68.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22996 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,68.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22997 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,69.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22998 - components: - - type: Transform - pos: -0.5,69.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22999 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23000 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23001 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23002 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23034 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23035 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23049 - components: - - type: Transform - pos: 34.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23059 - components: - - type: Transform - pos: 35.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23079 - components: - - type: Transform - pos: 43.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23080 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23118 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23119 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23120 - components: - - type: Transform - pos: 22.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23194 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,70.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23195 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,70.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,70.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23197 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,70.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,67.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23199 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,67.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,66.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23201 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,67.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,68.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23203 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,68.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23204 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,70.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23205 - components: - - type: Transform - pos: 12.5,70.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23206 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,70.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23207 - components: - - type: Transform - pos: 13.5,70.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,67.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23209 - components: - - type: Transform - pos: 14.5,67.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23210 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,66.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23211 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,67.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23212 - components: - - type: Transform - pos: 14.5,68.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23213 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,68.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23383 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23384 - components: - - type: Transform - pos: 9.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23385 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23386 - components: - - type: Transform - pos: 14.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23387 - components: - - type: Transform - pos: 8.5,58.5 - 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 - pos: 31.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23638 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23987 - components: - - type: Transform - pos: 68.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23988 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23989 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24029 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24113 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24637 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26051 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26320 - components: - - type: Transform - pos: 49.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26321 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26373 - components: - - type: Transform - pos: 34.5,-41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26442 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26573 - components: - - type: Transform - pos: 10.5,24.5 - parent: 12 - - uid: 26576 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,24.5 - parent: 12 - - uid: 26594 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,27.5 - parent: 12 - - uid: 26595 - components: - - type: Transform - pos: 13.5,27.5 - parent: 12 - - uid: 26596 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,24.5 - parent: 12 - - uid: 26602 - components: - - type: Transform - 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 - pos: 41.5,18.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26986 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,18.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27216 - components: - - type: Transform - pos: -57.5,-35.5 - parent: 12 - - uid: 27273 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27277 - components: - - type: Transform - pos: -3.5,-49.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27279 - components: - - type: Transform - pos: 0.5,-50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-19.5 - parent: 12 - - uid: 27608 - components: - - type: Transform - pos: -37.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27986 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28292 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-18.5 - parent: 12 - - uid: 28773 - components: - - type: Transform - pos: 54.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28782 - components: - - type: Transform - pos: 44.5,-23.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 29053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29260 - components: - - type: Transform - pos: -25.5,64.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 29297 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,64.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29578 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29591 - components: - - type: Transform - pos: -48.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29652 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,67.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29816 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,65.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29817 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,65.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 30440 - components: - - type: Transform - pos: 30.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30442 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30874 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30876 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30877 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30878 - components: - - type: Transform - pos: -24.5,-62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30879 - components: - - type: Transform - pos: -16.5,-63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-64.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30882 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30885 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30886 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-57.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31402 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31423 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-66.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 32223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32330 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasPipeFourway - entities: - - uid: 2577 - components: - - type: Transform - pos: -0.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2805 - components: - - type: Transform - pos: -11.5,-55.5 - parent: 12 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3505 - components: - - type: Transform - pos: 5.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4341 - components: - - type: Transform - pos: -16.5,-64.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4823 - components: - - type: Transform - pos: 16.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5297 - components: - - type: Transform - pos: 30.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6003 - components: - - type: Transform - pos: -15.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7188 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7190 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10894 - components: - - type: Transform - pos: 43.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12747 - components: - - type: Transform - pos: 43.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13822 - components: - - type: Transform - pos: 34.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16573 - components: - - type: Transform - pos: -16.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16575 - components: - - type: Transform - pos: -15.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18760 - components: - - type: Transform - pos: -51.5,25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18763 - components: - - type: Transform - pos: -47.5,25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18805 - components: - - type: Transform - pos: -47.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20034 - components: - - type: Transform - pos: 17.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20040 - components: - - type: Transform - pos: -35.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20080 - components: - - type: Transform - pos: -35.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20081 - components: - - type: Transform - pos: -34.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20210 - components: - - type: Transform - pos: 19.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20979 - components: - - type: Transform - pos: 30.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21779 - components: - - type: Transform - pos: -7.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27778 - components: - - type: Transform - pos: 32.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 32342 - components: - - type: Transform - pos: 69.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32343 - components: - - type: Transform - pos: 70.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasPipeSensor - entities: - - uid: 1502 - components: - - type: MetaData - name: gas pipe sensor (TEG Mix) - - type: Transform - pos: 12.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - type: Label - currentLabel: TEG Mix - - type: NameModifier - baseName: gas pipe sensor -- proto: GasPipeSensorDistribution - entities: - - uid: 1357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasPipeSensorWaste - entities: - - uid: 2417 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPipeStraight - entities: - - uid: 18 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 281 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 321 - components: - - type: Transform - pos: 41.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-14.5 - 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 - pos: -37.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 742 - components: - - type: Transform - pos: -45.5,-20.5 - parent: 12 - - uid: 744 - components: - - type: Transform - pos: -46.5,-20.5 - parent: 12 - - uid: 804 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-27.5 - parent: 12 - - uid: 805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-27.5 - parent: 12 - - uid: 806 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-25.5 - parent: 12 - - uid: 807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-25.5 - parent: 12 - - uid: 808 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-23.5 - parent: 12 - - uid: 809 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-23.5 - parent: 12 - - uid: 810 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-21.5 - parent: 12 - - uid: 811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-21.5 - parent: 12 - - uid: 892 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,1.5 - parent: 12 - - uid: 909 - components: - - type: Transform - pos: -37.5,-30.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 922 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 990 - components: - - type: Transform - pos: -42.5,-44.5 - parent: 12 - - uid: 991 - components: - - type: Transform - pos: -42.5,-45.5 - parent: 12 - - uid: 1056 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1093 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1094 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1095 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1097 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1098 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1099 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1101 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1102 - components: - - type: Transform - pos: -37.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1103 - components: - - type: Transform - pos: -38.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1104 - components: - - type: Transform - pos: -38.5,-44.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1105 - components: - - type: Transform - pos: -38.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1106 - components: - - type: Transform - pos: -37.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1107 - components: - - type: Transform - pos: -37.5,-44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1108 - components: - - type: Transform - pos: -37.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1111 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1112 - components: - - type: Transform - pos: -38.5,-40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1113 - components: - - type: Transform - pos: -38.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1114 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1115 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1118 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1119 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1123 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1129 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1132 - components: - - type: Transform - pos: -26.5,-44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1139 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1140 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1143 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1150 - components: - - type: Transform - pos: -41.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1151 - components: - - type: Transform - pos: -41.5,-36.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1152 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1158 - components: - - type: Transform - pos: -38.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1159 - components: - - type: Transform - pos: -38.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1160 - components: - - type: Transform - pos: -38.5,-36.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1161 - components: - - type: Transform - pos: -38.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1162 - components: - - type: Transform - pos: -37.5,-33.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1163 - components: - - type: Transform - pos: -37.5,-32.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1164 - components: - - type: Transform - pos: -37.5,-31.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1175 - components: - - type: Transform - pos: -43.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1181 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-30.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-31.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1183 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-32.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1192 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-40.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1193 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1195 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1197 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-36.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1201 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1202 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1203 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1205 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1212 - components: - - type: Transform - pos: -36.5,-23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1213 - components: - - type: Transform - pos: -36.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1215 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1216 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1219 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1221 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-33.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1222 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-32.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-31.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1224 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1227 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1230 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1234 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1235 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1236 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1237 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1238 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1239 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1240 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1241 - components: - - type: Transform - pos: -27.5,-23.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1242 - components: - - type: Transform - pos: -27.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1243 - components: - - type: Transform - pos: -27.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1245 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1246 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1248 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1249 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1253 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1262 - components: - - type: Transform - pos: -26.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1263 - components: - - type: Transform - pos: -26.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1264 - components: - - type: Transform - pos: -24.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1265 - components: - - type: Transform - pos: -24.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1266 - components: - - type: Transform - pos: -24.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1278 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1279 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1281 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1282 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1289 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1290 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1291 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1292 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1297 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1298 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1299 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1300 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1302 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1303 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1307 - components: - - type: Transform - pos: -32.5,-44.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1308 - components: - - type: Transform - pos: -32.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1310 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1312 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1554 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1776 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1809 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1860 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1983 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1984 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,28.5 - 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 - rot: 1.5707963267948966 rad - pos: 43.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2091 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2110 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2124 - components: - - type: Transform - pos: -1.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-2.5 - parent: 12 - - uid: 2164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-10.5 - parent: 12 - - uid: 2254 - components: - - type: Transform - pos: 57.5,-23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2311 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2343 - components: - - type: Transform - pos: 35.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 2448 - components: - - type: Transform - pos: 42.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2499 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2615 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2647 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2676 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 2677 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 2692 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,19.5 - parent: 12 - - uid: 2697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2720 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2735 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,20.5 - parent: 12 - - uid: 2767 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2775 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2806 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-55.5 - parent: 12 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 2814 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2815 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2816 - components: - - type: Transform - pos: 57.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2859 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,19.5 - parent: 12 - - uid: 2864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2872 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,20.5 - parent: 12 - - uid: 2885 - components: - - type: Transform - pos: 42.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2886 - components: - - type: Transform - pos: 43.5,-23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2906 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2955 - components: - - type: Transform - pos: 43.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2958 - components: - - type: Transform - pos: 43.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3009 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3018 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,19.5 - parent: 12 - - uid: 3096 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3117 - components: - - type: Transform - pos: 52.5,65.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3205 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,20.5 - parent: 12 - - uid: 3239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 3464 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3468 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,20.5 - parent: 12 - - uid: 3474 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3490 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-57.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3491 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-56.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3495 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3496 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3497 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3499 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-57.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3500 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-56.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3501 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3503 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-59.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 3504 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-59.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 3507 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-59.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 3508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-59.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 3509 - components: - - type: Transform - pos: -5.5,-58.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 3515 - components: - - type: Transform - pos: -13.5,-60.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3522 - components: - - type: Transform - pos: -10.5,-51.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3523 - components: - - type: Transform - pos: -10.5,-50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3525 - components: - - type: Transform - pos: -10.5,-48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3526 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3527 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3529 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3531 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-54.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3534 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3536 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3537 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3540 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-51.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-51.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3543 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3546 - components: - - type: Transform - pos: -20.5,-51.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3547 - components: - - type: Transform - pos: -20.5,-52.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3548 - components: - - type: Transform - pos: -20.5,-53.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3551 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-49.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3552 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3559 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-44.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3561 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3562 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3566 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3567 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3568 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3570 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3571 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-41.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3572 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-40.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3573 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3574 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3575 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3576 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3577 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3578 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-44.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3579 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3583 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3587 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3588 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3600 - components: - - type: Transform - pos: -1.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3602 - components: - - type: Transform - pos: -1.5,-44.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3603 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3606 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3607 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3608 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3609 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3610 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3611 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3612 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3615 - components: - - type: Transform - pos: 0.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3616 - components: - - type: Transform - pos: -0.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3637 - components: - - type: Transform - pos: -16.5,-40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3638 - components: - - type: Transform - pos: -17.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3639 - components: - - type: Transform - pos: -17.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3640 - components: - - type: Transform - pos: -17.5,-36.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3641 - components: - - type: Transform - pos: -16.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3642 - components: - - type: Transform - pos: -16.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3643 - components: - - type: Transform - pos: -16.5,-36.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3644 - components: - - type: Transform - pos: -16.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3647 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3648 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-32.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-33.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3653 - components: - - type: Transform - pos: -14.5,-33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3654 - components: - - type: Transform - pos: -14.5,-32.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3655 - components: - - type: Transform - pos: -14.5,-31.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3656 - components: - - type: Transform - pos: -15.5,-31.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3657 - components: - - type: Transform - pos: -15.5,-30.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3658 - components: - - type: Transform - pos: -14.5,-30.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3659 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3660 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3662 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3664 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3667 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3669 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3670 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3671 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3672 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3679 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3680 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3684 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3685 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3686 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3687 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3688 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3698 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3700 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-41.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3701 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-40.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3706 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3707 - components: - - type: Transform - pos: -12.5,-53.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3708 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3714 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3717 - components: - - type: Transform - pos: -6.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3718 - components: - - type: Transform - pos: -6.5,-48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3721 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3722 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3723 - components: - - type: Transform - pos: -3.5,-44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3726 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3727 - components: - - type: Transform - pos: 1.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-36.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-36.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3732 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-36.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3735 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3737 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3738 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3740 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3741 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3742 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3746 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3747 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3748 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3749 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3751 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3753 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3754 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3755 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3757 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3758 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3759 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3760 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3762 - components: - - type: Transform - pos: -15.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3763 - components: - - type: Transform - pos: -15.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3764 - components: - - type: Transform - pos: -15.5,-23.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3766 - components: - - type: Transform - pos: -15.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3767 - components: - - type: Transform - pos: -15.5,-20.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3768 - components: - - type: Transform - pos: -15.5,-19.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3771 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-17.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3772 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3773 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-19.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3774 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-18.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3775 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4042 - components: - - type: Transform - pos: 21.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4074 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4152 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4344 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4383 - components: - - type: Transform - pos: 12.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 4390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4402 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-30.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4406 - components: - - type: Transform - pos: 38.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4479 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-8.5 - parent: 12 - - uid: 4537 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-2.5 - parent: 12 - - uid: 4539 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-3.5 - parent: 12 - - uid: 4548 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-10.5 - parent: 12 - - uid: 4563 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-6.5 - parent: 12 - - uid: 4580 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,1.5 - parent: 12 - - uid: 4591 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-2.5 - parent: 12 - - uid: 4604 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,0.5 - parent: 12 - - uid: 4610 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-4.5 - parent: 12 - - uid: 4620 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4621 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4628 - components: - - type: Transform - pos: 8.5,-10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4634 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,1.5 - parent: 12 - - uid: 4635 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,1.5 - parent: 12 - - uid: 4638 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-8.5 - parent: 12 - - uid: 4639 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-9.5 - parent: 12 - - uid: 4642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,2.5 - parent: 12 - - uid: 4648 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4658 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4659 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4660 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4662 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-1.5 - parent: 12 - - uid: 4678 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4719 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4727 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4746 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4756 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4762 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4779 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 12 - - uid: 4802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4804 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4805 - components: - - type: Transform - pos: 9.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4806 - components: - - type: Transform - pos: 9.5,-17.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4807 - components: - - type: Transform - pos: 9.5,-18.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4808 - components: - - type: Transform - pos: 9.5,-19.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4809 - components: - - type: Transform - pos: 9.5,-20.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4810 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4813 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4814 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4815 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4816 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4817 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-23.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4818 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4819 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4822 - components: - - type: Transform - pos: 16.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4825 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4831 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4833 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4836 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4838 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4840 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4841 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4842 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4846 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4889 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,0.5 - parent: 12 - - uid: 4894 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4929 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,19.5 - parent: 12 - - uid: 4937 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-7.5 - parent: 12 - - uid: 4939 - components: - - type: Transform - pos: 31.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4940 - components: - - type: Transform - pos: 43.5,-17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4941 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4966 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4975 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,2.5 - parent: 12 - - uid: 4978 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,2.5 - parent: 12 - - uid: 4990 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4991 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-4.5 - parent: 12 - - uid: 5004 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-3.5 - parent: 12 - - uid: 5006 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-1.5 - parent: 12 - - uid: 5010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-10.5 - parent: 12 - - uid: 5012 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,0.5 - parent: 12 - - uid: 5016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 12 - - uid: 5017 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 12 - - uid: 5018 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-0.5 - parent: 12 - - uid: 5019 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,0.5 - parent: 12 - - uid: 5031 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5043 - components: - - type: Transform - pos: 8.5,-9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5047 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-9.5 - parent: 12 - - uid: 5079 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5089 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,1.5 - parent: 12 - - uid: 5101 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5128 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5136 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5142 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5168 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5213 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5239 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-6.5 - parent: 12 - - uid: 5241 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-5.5 - parent: 12 - - uid: 5252 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-19.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5264 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5268 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5275 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5276 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5277 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5282 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5283 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5285 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5286 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-10.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5288 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5291 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5292 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5293 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5294 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5296 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5299 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5300 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5306 - components: - - type: Transform - pos: 8.5,-17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5307 - components: - - type: Transform - pos: 8.5,-18.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5310 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5329 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5331 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5332 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5334 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5335 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5336 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5337 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5339 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5340 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5341 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5343 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5348 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5350 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5351 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5352 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5356 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-7.5 - parent: 12 - - uid: 5366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-9.5 - parent: 12 - - uid: 5369 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-6.5 - parent: 12 - - uid: 5375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5383 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5386 - components: - - type: Transform - pos: 12.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 5387 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 5399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5400 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5402 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 5408 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5410 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 5418 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 5422 - components: - - type: Transform - pos: 43.5,-19.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5423 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5424 - components: - - type: Transform - pos: 43.5,-20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5426 - components: - - type: Transform - pos: -33.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5433 - components: - - type: Transform - pos: -36.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-51.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5486 - components: - - type: Transform - pos: 33.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5510 - components: - - type: Transform - pos: 45.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5511 - components: - - type: Transform - pos: 45.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5529 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5587 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5588 - components: - - type: Transform - pos: 23.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5589 - components: - - type: Transform - pos: 23.5,-20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5590 - components: - - type: Transform - pos: 23.5,-19.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5591 - components: - - type: Transform - pos: 23.5,-18.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5595 - components: - - type: Transform - pos: 12.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 5634 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-8.5 - parent: 12 - - uid: 5642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5670 - components: - - type: Transform - pos: 8.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-3.5 - parent: 12 - - uid: 5679 - components: - - type: Transform - pos: 8.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5712 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5801 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5835 - components: - - type: Transform - 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 - pos: 20.5,-23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5938 - components: - - type: Transform - pos: 20.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5939 - components: - - type: Transform - pos: 20.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5941 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5942 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5943 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5944 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5945 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5946 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5947 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5952 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-0.5 - parent: 12 - - uid: 5954 - components: - - type: Transform - pos: 43.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5955 - components: - - type: Transform - pos: 33.5,22.5 - 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 - rot: -1.5707963267948966 rad - pos: 44.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5960 - components: - - type: Transform - pos: 33.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,1.5 - parent: 12 - - uid: 5962 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-20.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5997 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,3.5 - parent: 12 - - uid: 6015 - components: - - type: Transform - pos: -12.5,-52.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6042 - components: - - type: Transform - pos: 33.5,18.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6085 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6086 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-31.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6091 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-32.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6092 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-32.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6111 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6260 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6270 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6680 - components: - - type: Transform - pos: 52.5,64.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6705 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,1.5 - 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 - rot: 1.5707963267948966 rad - pos: -14.5,-11.5 - 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 - rot: 3.141592653589793 rad - pos: 42.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6772 - components: - - type: Transform - pos: 43.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6779 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,2.5 - parent: 12 - - uid: 6780 - components: - - type: Transform - pos: 43.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6781 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-4.5 - parent: 12 - - uid: 6799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6836 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6842 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 6854 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-23.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6855 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-0.5 - parent: 12 - - uid: 6897 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6901 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6904 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6942 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6985 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6988 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6989 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6993 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6994 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6996 - components: - - type: Transform - pos: 22.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6997 - components: - - type: Transform - pos: 22.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6999 - components: - - type: Transform - pos: 22.5,-31.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7001 - components: - - type: Transform - pos: 22.5,-33.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7002 - components: - - type: Transform - pos: 22.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7004 - components: - - type: Transform - pos: 22.5,-36.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7005 - components: - - type: Transform - pos: 21.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7006 - components: - - type: Transform - pos: 21.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7007 - components: - - type: Transform - pos: 21.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7008 - components: - - type: Transform - pos: 21.5,-30.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7010 - components: - - type: Transform - pos: 21.5,-32.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7011 - components: - - type: Transform - pos: 21.5,-33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7013 - components: - - type: Transform - pos: 21.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7014 - components: - - type: Transform - pos: 21.5,-36.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7015 - components: - - type: Transform - pos: 21.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7018 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7020 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7021 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7022 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7025 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7026 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7029 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7030 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7031 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7032 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7033 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7036 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7037 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7038 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7039 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7040 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7041 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7042 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7045 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-40.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7046 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-41.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7047 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7052 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7053 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7056 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7057 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7058 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7060 - components: - - type: Transform - pos: 30.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7061 - components: - - type: Transform - pos: 30.5,-40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7063 - components: - - type: Transform - pos: 30.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7064 - components: - - type: Transform - pos: 30.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7065 - components: - - type: Transform - pos: 30.5,-44.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7066 - components: - - type: Transform - pos: 30.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7067 - components: - - type: Transform - pos: 30.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7068 - components: - - type: Transform - pos: 19.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7069 - components: - - type: Transform - pos: 13.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7070 - components: - - type: Transform - pos: 13.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7071 - components: - - type: Transform - pos: 13.5,-44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7072 - components: - - type: Transform - pos: 13.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7073 - components: - - type: Transform - pos: 13.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7074 - components: - - type: Transform - pos: 13.5,-41.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7075 - components: - - type: Transform - pos: 13.5,-40.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7076 - components: - - type: Transform - pos: 13.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7077 - components: - - type: Transform - pos: 13.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7078 - components: - - type: Transform - pos: 12.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7079 - components: - - type: Transform - pos: 12.5,-40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7080 - components: - - type: Transform - pos: 12.5,-41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7081 - components: - - type: Transform - pos: 12.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7082 - components: - - type: Transform - pos: 12.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7083 - components: - - type: Transform - pos: 12.5,-44.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7084 - components: - - type: Transform - pos: 12.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7085 - components: - - type: Transform - pos: 12.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7089 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7090 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7091 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7092 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7093 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7094 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7095 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7098 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7099 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7100 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-26.5 - 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 - rot: 3.141592653589793 rad - pos: 3.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 7117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - 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 - rot: 3.141592653589793 rad - pos: 42.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7136 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 7137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7140 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7144 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 7147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,19.5 - parent: 12 - - uid: 7148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,19.5 - parent: 12 - - uid: 7149 - components: - - type: Transform - 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 - rot: 1.5707963267948966 rad - pos: 13.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7172 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7179 - components: - - type: Transform - pos: 41.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-36.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7181 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-36.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7182 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-36.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7185 - components: - - type: Transform - pos: -0.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7186 - components: - - type: Transform - pos: 0.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7192 - components: - - type: Transform - pos: -1.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7193 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7196 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,1.5 - parent: 12 - - uid: 7210 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-7.5 - parent: 12 - - uid: 7214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7222 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: 39.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7242 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,3.5 - parent: 12 - - uid: 7248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-1.5 - parent: 12 - - uid: 7249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-5.5 - parent: 12 - - uid: 7253 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7281 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7309 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,16.5 - 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 - rot: 3.141592653589793 rad - pos: -0.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7326 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-23.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7330 - components: - - type: Transform - pos: 33.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7331 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7333 - components: - - type: Transform - pos: 33.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7340 - components: - - type: Transform - pos: 33.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7385 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,23.5 - 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 - rot: 3.141592653589793 rad - pos: -10.5,-52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7473 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7474 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7475 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7476 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7477 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-27.5 - 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 - rot: -1.5707963267948966 rad - pos: 5.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7548 - components: - - type: Transform - pos: 4.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7566 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-23.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7797 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-18.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7803 - components: - - type: Transform - pos: 35.5,25.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7833 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,3.5 - parent: 12 - - uid: 7836 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7838 - components: - - type: Transform - pos: -46.5,44.5 - parent: 12 - - uid: 8241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-45.5 - 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 - pos: 10.5,-40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8493 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8518 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8519 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8521 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8522 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8523 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8524 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8525 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8526 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8527 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8529 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8530 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8545 - components: - - type: Transform - pos: 77.5,-32.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8546 - components: - - type: Transform - pos: 77.5,-33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8547 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8548 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8549 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8553 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8554 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8559 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8560 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8561 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8563 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8570 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8571 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8573 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8574 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8575 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8584 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8585 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8587 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8588 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8590 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8591 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-33.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-32.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8599 - components: - - type: Transform - pos: 57.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8600 - components: - - type: Transform - pos: 57.5,-33.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8601 - components: - - type: Transform - pos: 57.5,-32.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8602 - components: - - type: Transform - pos: 56.5,-32.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8603 - components: - - type: Transform - pos: 56.5,-33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8604 - components: - - type: Transform - pos: 56.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8609 - components: - - type: Transform - pos: 55.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8610 - components: - - type: Transform - pos: 55.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8611 - components: - - type: Transform - pos: 55.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8612 - components: - - type: Transform - pos: 56.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8613 - components: - - type: Transform - pos: 56.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8614 - components: - - type: Transform - pos: 57.5,-36.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8615 - components: - - type: Transform - pos: 56.5,-30.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8616 - components: - - type: Transform - pos: 56.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8617 - components: - - type: Transform - pos: 56.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8618 - components: - - type: Transform - pos: 56.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8619 - components: - - type: Transform - pos: 56.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8620 - components: - - type: Transform - pos: 56.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8635 - components: - - type: Transform - pos: 50.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8636 - components: - - type: Transform - pos: 57.5,-30.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8637 - components: - - type: Transform - pos: 57.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8643 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8644 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8647 - components: - - type: Transform - pos: 51.5,-31.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8648 - components: - - type: Transform - pos: 51.5,-30.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8649 - components: - - type: Transform - pos: 51.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8650 - components: - - type: Transform - pos: 51.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8651 - components: - - type: Transform - pos: 52.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8652 - components: - - type: Transform - pos: 52.5,-30.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8653 - components: - - type: Transform - pos: 52.5,-31.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8654 - components: - - type: Transform - pos: 49.5,-23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8655 - components: - - type: Transform - pos: 49.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8656 - components: - - type: Transform - pos: 49.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8657 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8658 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8659 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8660 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8661 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-23.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8663 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8665 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8666 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8671 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8680 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8683 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8684 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8686 - components: - - type: Transform - pos: 49.5,-19.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8687 - components: - - type: Transform - pos: 49.5,-18.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8688 - components: - - type: Transform - pos: 49.5,-17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8689 - components: - - type: Transform - pos: 49.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8690 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8699 - components: - - type: Transform - pos: 58.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8700 - components: - - type: Transform - pos: 58.5,-20.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8701 - components: - - type: Transform - pos: 57.5,-18.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8702 - components: - - type: Transform - pos: 57.5,-17.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8703 - components: - - type: Transform - pos: 57.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8704 - components: - - type: Transform - pos: 57.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8705 - components: - - type: Transform - pos: 57.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8707 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8708 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8714 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8739 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-19.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8794 - components: - - type: Transform - pos: 6.5,-9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8800 - components: - - type: Transform - pos: 6.5,-10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8801 - components: - - type: Transform - pos: 6.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8802 - components: - - type: Transform - pos: 6.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8803 - components: - - type: Transform - pos: 6.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8806 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-31.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8889 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8899 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8909 - components: - - type: Transform - pos: 7.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8954 - components: - - type: Transform - pos: 7.5,-44.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8966 - components: - - type: Transform - pos: 58.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8981 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-17.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9048 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9088 - components: - - type: Transform - pos: 33.5,15.5 - 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 - rot: 1.5707963267948966 rad - pos: 23.5,-1.5 - parent: 12 - - uid: 9176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-3.5 - parent: 12 - - uid: 9406 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9409 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9412 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9417 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9419 - components: - - type: Transform - pos: -5.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9420 - components: - - type: Transform - pos: -5.5,13.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9421 - components: - - type: Transform - pos: -5.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9427 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9430 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9463 - components: - - type: Transform - pos: 52.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9464 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9465 - components: - - type: Transform - pos: 43.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9466 - components: - - type: Transform - pos: 43.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9470 - components: - - type: Transform - pos: 52.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9477 - components: - - type: Transform - pos: 31.5,-10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9478 - components: - - type: Transform - pos: 31.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9486 - components: - - type: Transform - pos: 43.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9493 - components: - - type: Transform - pos: 30.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9494 - components: - - type: Transform - pos: 30.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9496 - components: - - type: Transform - pos: -33.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9498 - components: - - type: Transform - pos: -36.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9517 - components: - - type: Transform - pos: -12.5,-54.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9535 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9561 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9565 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9566 - components: - - type: Transform - pos: 43.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9576 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9582 - components: - - type: Transform - pos: 30.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9592 - components: - - type: Transform - pos: 8.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9607 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9616 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9618 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9630 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9634 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9639 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9685 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-44.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9686 - components: - - type: Transform - pos: 5.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9687 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9688 - components: - - type: Transform - pos: 5.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9689 - components: - - type: Transform - pos: 5.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9690 - components: - - type: Transform - pos: 5.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9691 - components: - - type: Transform - pos: 5.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9692 - components: - - type: Transform - pos: 5.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9693 - components: - - type: Transform - pos: 5.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9694 - components: - - type: Transform - pos: 5.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9695 - components: - - type: Transform - pos: 5.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9696 - components: - - type: Transform - pos: 5.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9697 - components: - - type: Transform - pos: 5.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9698 - components: - - type: Transform - pos: 5.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9699 - components: - - type: Transform - pos: 5.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9700 - components: - - type: Transform - pos: 5.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9701 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9705 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9708 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9710 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9713 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9716 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9718 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,18.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9726 - components: - - type: Transform - pos: 4.5,22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9747 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9753 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9754 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9815 - components: - - type: Transform - pos: 10.5,-41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9831 - components: - - type: Transform - pos: 10.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9838 - components: - - type: Transform - pos: -1.5,-54.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9851 - components: - - type: Transform - pos: 4.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9959 - components: - - type: Transform - pos: -12.5,-49.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9960 - components: - - type: Transform - pos: -12.5,-48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9961 - components: - - type: Transform - pos: -12.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9982 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9999 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10007 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10008 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10009 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10010 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10011 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10015 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10029 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10030 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10031 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10033 - components: - - type: Transform - pos: -1.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10034 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10035 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10036 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10037 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10038 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10039 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10044 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10045 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10046 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10047 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10052 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10054 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10056 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-10.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10057 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10058 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10061 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10062 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10063 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10067 - components: - - type: Transform - pos: -0.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10068 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10077 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10079 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10083 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10084 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10086 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10087 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10088 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10089 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10090 - components: - - type: Transform - pos: -27.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10105 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10192 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,13.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10200 - components: - - type: Transform - pos: -51.5,22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10314 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10321 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10331 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10392 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10518 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10519 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10549 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10693 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10700 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10727 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10794 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10885 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10898 - components: - - type: Transform - pos: 32.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10904 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11008 - components: - - type: Transform - pos: 29.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11009 - components: - - type: Transform - pos: 29.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11022 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,13.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11031 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,13.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11071 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11072 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11073 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11074 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11075 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11076 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11077 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11078 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11079 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11081 - components: - - type: Transform - pos: -16.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11082 - components: - - type: Transform - pos: -16.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11083 - components: - - type: Transform - pos: -16.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11084 - components: - - type: Transform - pos: -16.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11086 - components: - - type: Transform - pos: -16.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11087 - components: - - type: Transform - pos: -16.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11088 - components: - - type: Transform - pos: -16.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11089 - components: - - type: Transform - pos: -16.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11090 - components: - - type: Transform - pos: -16.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11091 - components: - - type: Transform - pos: -16.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11092 - components: - - type: Transform - pos: -16.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11093 - components: - - type: Transform - pos: -16.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11094 - components: - - type: Transform - pos: -16.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11095 - components: - - type: Transform - pos: -16.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11096 - components: - - type: Transform - pos: -16.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11097 - components: - - type: Transform - pos: -15.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11098 - components: - - type: Transform - pos: -15.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11099 - components: - - type: Transform - pos: -15.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11100 - components: - - type: Transform - pos: -15.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11101 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11105 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11106 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11107 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11108 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11110 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11112 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11113 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11114 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11115 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11118 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11121 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11145 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11322 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 11344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11372 - components: - - type: Transform - pos: 33.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11391 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11426 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11427 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11482 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11510 - components: - - type: Transform - pos: 12.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 11592 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11683 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11923 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11925 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11926 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11927 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11935 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11956 - components: - - type: Transform - pos: 38.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11957 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11979 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12042 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12046 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12048 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12074 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12150 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12224 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12370 - components: - - type: Transform - pos: 35.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12639 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12741 - components: - - type: Transform - pos: 53.5,38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12748 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12749 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12750 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12751 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12752 - components: - - type: Transform - pos: 44.5,30.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12759 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12760 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12761 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12762 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12763 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,38.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12765 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12766 - components: - - type: Transform - pos: 44.5,37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12767 - components: - - type: Transform - pos: 44.5,36.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12768 - components: - - type: Transform - pos: 44.5,35.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12769 - components: - - type: Transform - pos: 44.5,31.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12770 - components: - - type: Transform - pos: 44.5,32.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12771 - components: - - type: Transform - pos: 44.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12772 - components: - - type: Transform - pos: 44.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12773 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12776 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12777 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,30.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12778 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,31.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12779 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,32.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12780 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12781 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12782 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12783 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12785 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12788 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12789 - components: - - type: Transform - pos: 54.5,31.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12790 - components: - - type: Transform - pos: 54.5,32.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12791 - components: - - type: Transform - pos: 54.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12792 - components: - - type: Transform - pos: 54.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12795 - components: - - type: Transform - pos: 55.5,31.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12796 - components: - - type: Transform - pos: 55.5,32.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12797 - components: - - type: Transform - pos: 55.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12798 - components: - - type: Transform - pos: 55.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12799 - components: - - type: Transform - pos: 55.5,35.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12800 - components: - - type: Transform - pos: 55.5,36.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12801 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12802 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12808 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12814 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,36.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,36.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12816 - components: - - type: Transform - pos: 38.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12817 - components: - - type: Transform - pos: 38.5,26.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12818 - components: - - type: Transform - pos: 38.5,25.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12823 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12824 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12825 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12826 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12827 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12828 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12829 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12830 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12831 - components: - - type: Transform - pos: 49.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12832 - components: - - type: Transform - pos: 49.5,22.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12833 - components: - - type: Transform - pos: 49.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12834 - components: - - type: Transform - pos: 49.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12836 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12841 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12843 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12847 - components: - - type: Transform - pos: 39.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12848 - components: - - type: Transform - pos: 39.5,22.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12849 - components: - - type: Transform - pos: 39.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12850 - components: - - type: Transform - pos: 39.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12851 - components: - - type: Transform - pos: 39.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12853 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12854 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12855 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12857 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12858 - components: - - type: Transform - pos: 40.5,22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12862 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12863 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12865 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12869 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,31.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,32.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12871 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12872 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,35.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12874 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,36.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12876 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12877 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12878 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12888 - components: - - type: Transform - pos: 32.5,18.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12889 - components: - - type: Transform - pos: 32.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12890 - components: - - type: Transform - pos: 32.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12891 - components: - - type: Transform - pos: 32.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12892 - components: - - type: Transform - pos: 32.5,22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13015 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13105 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13129 - components: - - type: Transform - pos: 53.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13225 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13278 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13583 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13584 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13586 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13587 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13675 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,31.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13676 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,32.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13677 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13679 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13680 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,36.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13681 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13682 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,38.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13795 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13800 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13804 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13807 - components: - - type: Transform - pos: 34.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13808 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13810 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13813 - components: - - type: Transform - pos: 42.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13814 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13816 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13823 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13919 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13920 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13930 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13931 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14057 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14058 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14059 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14060 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14061 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14062 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14063 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14064 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14065 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14066 - components: - - type: Transform - pos: 53.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14067 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14068 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14069 - components: - - type: Transform - pos: 50.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14078 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14079 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14081 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14082 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14083 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14084 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14085 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14086 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14087 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14092 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14096 - components: - - type: Transform - pos: 48.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14098 - components: - - type: Transform - pos: 46.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14099 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14101 - components: - - type: Transform - pos: 48.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14103 - components: - - type: Transform - pos: 46.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14198 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14939 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14952 - components: - - type: Transform - pos: 4.5,-58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14958 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14960 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14961 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14962 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,38.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14963 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14964 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,36.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14965 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14967 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,32.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,31.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14971 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,31.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,31.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,49.5 - parent: 12 - - uid: 15408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,49.5 - parent: 12 - - uid: 15409 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,50.5 - parent: 12 - - uid: 15410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,51.5 - parent: 12 - - uid: 15411 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,51.5 - parent: 12 - - uid: 15812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15814 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,18.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15815 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15816 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15819 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15821 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15823 - components: - - type: Transform - pos: -26.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15824 - components: - - type: Transform - pos: -26.5,13.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15825 - components: - - type: Transform - pos: -26.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15826 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15827 - components: - - type: Transform - pos: -26.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15829 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15831 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15833 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15834 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15835 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15836 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15837 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15838 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15841 - components: - - type: Transform - pos: -27.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15865 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15868 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15870 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15871 - components: - - type: Transform - pos: -34.5,18.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15888 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15891 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15895 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15896 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15897 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15898 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15926 - components: - - type: Transform - pos: -16.5,13.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15927 - components: - - type: Transform - pos: -16.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15928 - components: - - type: Transform - pos: -16.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15929 - components: - - type: Transform - pos: -15.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15930 - components: - - type: Transform - pos: -15.5,13.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15931 - components: - - type: Transform - pos: -15.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15932 - components: - - type: Transform - pos: -15.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15933 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15934 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15941 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15942 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15943 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15944 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15945 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15946 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15947 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15949 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15950 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16315 - components: - - type: Transform - pos: -30.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16350 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16533 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16548 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16576 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,26.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16577 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,25.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16579 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16582 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16583 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16584 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,18.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16585 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16587 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16588 - components: - - type: Transform - pos: -16.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16589 - components: - - type: Transform - pos: -15.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16590 - components: - - type: Transform - pos: -15.5,26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16591 - components: - - type: Transform - pos: -15.5,25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16592 - components: - - type: Transform - pos: -15.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16593 - components: - - type: Transform - pos: -15.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16595 - components: - - type: Transform - pos: -15.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16596 - components: - - type: Transform - pos: -15.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16598 - components: - - type: Transform - pos: -15.5,18.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16599 - components: - - type: Transform - pos: -15.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16600 - components: - - type: Transform - pos: -15.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16604 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16605 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16606 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16608 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16609 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16610 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16615 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16616 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16620 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16623 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16625 - components: - - type: Transform - pos: -10.5,25.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16627 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,26.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16678 - components: - - type: Transform - pos: -22.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16679 - components: - - type: Transform - pos: -20.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16683 - components: - - type: Transform - pos: -20.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16684 - components: - - type: Transform - pos: -20.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16685 - components: - - type: Transform - pos: -20.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16686 - components: - - type: Transform - pos: -20.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16687 - components: - - type: Transform - pos: -20.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16806 - components: - - type: Transform - pos: -34.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16807 - components: - - type: Transform - pos: -34.5,25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16808 - components: - - type: Transform - pos: -33.5,25.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16809 - components: - - type: Transform - pos: -33.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16810 - components: - - type: Transform - pos: -33.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17140 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17145 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17146 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17148 - components: - - type: Transform - pos: 21.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17152 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17157 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17159 - components: - - type: Transform - pos: 13.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17161 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17163 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17164 - components: - - type: Transform - pos: 43.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17169 - components: - - type: Transform - pos: 43.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17171 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17172 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17181 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17184 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17185 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17188 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17189 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17190 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,30.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17191 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,31.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17192 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,32.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17193 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17195 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17196 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,36.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17197 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17202 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17203 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17205 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,30.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17206 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,31.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17207 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,32.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17210 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,35.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17211 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,36.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17212 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17213 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17215 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17222 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17223 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17224 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17232 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17234 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17235 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17237 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17238 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17239 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17240 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17242 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17244 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17253 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17260 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17263 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17264 - components: - - type: Transform - pos: 21.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17265 - components: - - type: Transform - pos: 21.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17390 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17772 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17948 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18256 - components: - - type: Transform - pos: -49.5,43.5 - parent: 12 - - uid: 18263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,46.5 - parent: 12 - - uid: 18265 - components: - - type: Transform - pos: -48.5,43.5 - parent: 12 - - uid: 18266 - components: - - type: Transform - pos: -47.5,45.5 - parent: 12 - - uid: 18268 - components: - - type: Transform - pos: -46.5,45.5 - parent: 12 - - uid: 18313 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18686 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18688 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18690 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18696 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18697 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18698 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18701 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18702 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18705 - components: - - type: Transform - pos: -33.5,26.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18706 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18707 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18708 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18714 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18716 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18718 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18719 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18720 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18721 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18722 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18724 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18729 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18733 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18734 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18735 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18738 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18739 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18740 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18742 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18743 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18744 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18745 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18746 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18747 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18748 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18749 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18753 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18754 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18761 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18762 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18767 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18768 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18769 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18770 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18772 - components: - - type: Transform - pos: -41.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18778 - components: - - type: Transform - pos: -51.5,26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18779 - components: - - type: Transform - pos: -51.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18780 - components: - - type: Transform - pos: -51.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18781 - components: - - type: Transform - pos: -51.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18782 - components: - - type: Transform - pos: -51.5,30.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18783 - components: - - type: Transform - pos: -51.5,31.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18784 - components: - - type: Transform - pos: -51.5,32.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18785 - components: - - type: Transform - pos: -51.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18786 - components: - - type: Transform - pos: -51.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18787 - components: - - type: Transform - pos: -51.5,35.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18788 - components: - - type: Transform - pos: -51.5,36.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18792 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18793 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18794 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18796 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18798 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18800 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18801 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18802 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18808 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18809 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18810 - components: - - type: Transform - pos: -47.5,30.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18811 - components: - - type: Transform - pos: -47.5,31.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18812 - components: - - type: Transform - pos: -47.5,32.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18816 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18817 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18818 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18819 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18821 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,32.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18823 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,35.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18824 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,35.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18825 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,35.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18826 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18828 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18829 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,32.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18830 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,32.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19159 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19196 - components: - - type: Transform - pos: -34.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19380 - components: - - type: Transform - pos: -48.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19381 - components: - - type: Transform - pos: -48.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19382 - components: - - type: Transform - pos: -47.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19384 - components: - - type: Transform - pos: -45.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19385 - components: - - type: Transform - pos: -45.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19386 - components: - - type: Transform - pos: -44.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19388 - components: - - type: Transform - pos: -42.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19389 - components: - - type: Transform - pos: -42.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19390 - components: - - type: Transform - pos: -41.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19411 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19412 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19416 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19417 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19419 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19420 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19421 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19422 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19423 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19424 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19425 - components: - - type: Transform - pos: -47.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19426 - components: - - type: Transform - pos: -47.5,57.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19427 - components: - - type: Transform - pos: -48.5,57.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19434 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,58.5 - 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 - rot: 1.5707963267948966 rad - pos: -15.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19831 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,59.5 - 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 - rot: -1.5707963267948966 rad - pos: -17.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19891 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19899 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19905 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19907 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19909 - components: - - type: Transform - pos: -36.5,35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19910 - components: - - type: Transform - pos: -36.5,36.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19911 - components: - - type: Transform - pos: -36.5,37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19912 - components: - - type: Transform - pos: -36.5,38.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19913 - components: - - type: Transform - pos: -37.5,36.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19914 - components: - - type: Transform - pos: -37.5,37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19915 - components: - - type: Transform - pos: -37.5,38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19916 - components: - - type: Transform - pos: -37.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19917 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19919 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19920 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19922 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19923 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19924 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19925 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19926 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19927 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19928 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19929 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19930 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19933 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19934 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19935 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19936 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19937 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19941 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19942 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19943 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19946 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19947 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19949 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19950 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19951 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19953 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19954 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19955 - components: - - type: Transform - pos: -35.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19956 - components: - - type: Transform - pos: -35.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19957 - components: - - type: Transform - pos: -35.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19959 - components: - - type: Transform - pos: -34.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19960 - components: - - type: Transform - pos: -34.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19961 - components: - - type: Transform - pos: -34.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19962 - components: - - type: Transform - pos: -34.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19970 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19971 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19973 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19975 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19976 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19977 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19978 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19979 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19988 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19989 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19990 - components: - - type: Transform - pos: -29.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19991 - components: - - type: Transform - pos: -29.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19992 - components: - - type: Transform - pos: -29.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19993 - components: - - type: Transform - pos: -29.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19994 - components: - - type: Transform - pos: -29.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19995 - components: - - type: Transform - pos: -29.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19996 - components: - - type: Transform - pos: -29.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19997 - components: - - type: Transform - pos: -30.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19998 - components: - - type: Transform - pos: -30.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20000 - components: - - type: Transform - pos: -30.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20001 - components: - - type: Transform - pos: -30.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20015 - components: - - type: Transform - pos: -35.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20016 - components: - - type: Transform - pos: -35.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20017 - components: - - type: Transform - pos: -35.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20019 - components: - - type: Transform - pos: -35.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20020 - components: - - type: Transform - pos: -34.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20021 - components: - - type: Transform - pos: -34.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20022 - components: - - type: Transform - pos: -34.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20024 - components: - - type: Transform - pos: -34.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20026 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20031 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20032 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20033 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20036 - components: - - type: Transform - pos: -29.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20037 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20038 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20039 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20041 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20045 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20046 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20047 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20052 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20060 - components: - - type: Transform - pos: -35.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20061 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20062 - components: - - type: Transform - pos: -34.5,57.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20063 - components: - - type: Transform - pos: -34.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20064 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20065 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20066 - components: - - type: Transform - pos: -35.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20067 - components: - - type: Transform - pos: -35.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20068 - components: - - type: Transform - pos: -35.5,57.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20069 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20071 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20082 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20083 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20084 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20085 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20086 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20087 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20088 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20090 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20091 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20092 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20093 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20094 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20095 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20098 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20099 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20100 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,64.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20101 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,65.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20102 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,64.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20104 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,65.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20111 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20112 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20113 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20114 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20115 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20116 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20117 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20118 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20119 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20122 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20123 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20128 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20132 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20134 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,35.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20136 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20137 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20341 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-42.5 - 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 - rot: 3.141592653589793 rad - pos: 19.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20908 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20909 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20910 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20915 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20918 - components: - - type: Transform - pos: -29.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20919 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20920 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20923 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20925 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20926 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20928 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20929 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,64.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20931 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20935 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20936 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,57.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20942 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20943 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,64.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20945 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20946 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20947 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20948 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20949 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20950 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20951 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20955 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20960 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20963 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20964 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20965 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20967 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20968 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20969 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20971 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20973 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20974 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20975 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20981 - components: - - type: Transform - pos: 31.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20985 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20986 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20988 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20989 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,57.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20990 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,57.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20991 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20993 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20994 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20995 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20996 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20997 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20998 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20999 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21000 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21001 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21002 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21004 - components: - - type: Transform - pos: 26.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21005 - components: - - type: Transform - pos: 26.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21013 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21014 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21015 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21020 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21021 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21022 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21025 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21026 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21029 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21030 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21031 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21033 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21034 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21035 - components: - - type: Transform - pos: 51.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21036 - components: - - type: Transform - pos: 51.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21037 - components: - - type: Transform - pos: 51.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21038 - components: - - type: Transform - pos: 51.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21039 - components: - - type: Transform - pos: 51.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21040 - components: - - type: Transform - pos: 51.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21041 - components: - - type: Transform - pos: 50.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21042 - components: - - type: Transform - pos: 50.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21043 - components: - - type: Transform - pos: 50.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21044 - components: - - type: Transform - pos: 50.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21045 - components: - - type: Transform - pos: 50.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21047 - components: - - type: Transform - pos: 50.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21049 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21050 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21051 - components: - - type: Transform - pos: -25.5,30.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21052 - components: - - type: Transform - pos: -25.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21053 - components: - - type: Transform - pos: -25.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21054 - components: - - type: Transform - pos: -25.5,31.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21773 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21774 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21775 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21776 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21777 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21778 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21780 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21781 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21782 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21783 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21785 - components: - - type: Transform - pos: -10.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21786 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21791 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21792 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21793 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21794 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21795 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,57.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21796 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21797 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21798 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21808 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21810 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21811 - components: - - type: Transform - pos: -10.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21812 - components: - - type: Transform - pos: -10.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21813 - components: - - type: Transform - pos: -10.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21814 - components: - - type: Transform - pos: -10.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21815 - components: - - type: Transform - pos: -10.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21816 - components: - - type: Transform - pos: -10.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21817 - components: - - type: Transform - pos: -10.5,57.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21818 - components: - - type: Transform - pos: -10.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21819 - components: - - type: Transform - pos: -10.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21821 - components: - - type: Transform - pos: -10.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21822 - components: - - type: Transform - pos: -10.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21825 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21829 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21831 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21833 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21836 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21837 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21843 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21847 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21849 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21874 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21911 - components: - - type: Transform - pos: 34.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22006 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22024 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22093 - components: - - type: Transform - pos: 29.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22101 - components: - - type: Transform - pos: 30.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22111 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22114 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22115 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22116 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22234 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22235 - components: - - type: Transform - pos: 30.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22237 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22238 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22240 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22241 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22242 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22310 - components: - - type: Transform - pos: 38.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22555 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22556 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22559 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22561 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22562 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22563 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22564 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22565 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22566 - components: - - type: Transform - pos: 1.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22567 - components: - - type: Transform - pos: 1.5,38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22568 - components: - - type: Transform - pos: 1.5,37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22569 - components: - - type: Transform - pos: 1.5,36.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22570 - components: - - type: Transform - pos: 1.5,35.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22571 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22573 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22574 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,32.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22584 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22585 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22587 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22589 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22593 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22825 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22897 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22898 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22899 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22900 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22901 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22902 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22903 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22904 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22905 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22906 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22907 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22908 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22909 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,57.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22912 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22914 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22915 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22916 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22919 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22920 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22921 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22922 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22923 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22924 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22925 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22926 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22927 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22928 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22929 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22930 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22931 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22935 - components: - - type: Transform - pos: -19.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22936 - components: - - type: Transform - pos: -19.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22937 - components: - - type: Transform - pos: -19.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22938 - components: - - type: Transform - pos: -19.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22939 - components: - - type: Transform - pos: -19.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22940 - components: - - type: Transform - pos: -19.5,57.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22941 - components: - - type: Transform - pos: -19.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22942 - components: - - type: Transform - pos: -19.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22943 - components: - - type: Transform - pos: -19.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22944 - components: - - type: Transform - pos: -19.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22945 - components: - - type: Transform - pos: -19.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22946 - components: - - type: Transform - pos: -19.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22947 - components: - - type: Transform - pos: -19.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22948 - components: - - type: Transform - pos: -19.5,64.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22949 - components: - - type: Transform - pos: -19.5,65.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22950 - components: - - type: Transform - pos: -19.5,66.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22951 - components: - - type: Transform - pos: -19.5,67.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22953 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,68.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22954 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,68.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,68.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,68.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22957 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,69.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,69.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22959 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,69.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,69.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,69.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22962 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,69.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,69.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,69.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22966 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,69.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,69.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,69.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22969 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,68.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22970 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,67.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,66.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22972 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,65.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22973 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,64.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22974 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22975 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22978 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22979 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,57.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22980 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22981 - components: - - type: Transform - pos: -2.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22982 - components: - - type: Transform - pos: -2.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22983 - components: - - type: Transform - pos: -2.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22984 - components: - - type: Transform - pos: -2.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22985 - components: - - type: Transform - pos: -2.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22986 - components: - - type: Transform - pos: -2.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22987 - components: - - type: Transform - pos: -2.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22988 - components: - - type: Transform - pos: -2.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22989 - components: - - type: Transform - pos: -2.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22990 - components: - - type: Transform - pos: -2.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22991 - components: - - type: Transform - pos: -2.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22992 - components: - - type: Transform - pos: -2.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23004 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23005 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23006 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23011 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23012 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23013 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23014 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23015 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23017 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23018 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23019 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23020 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23021 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23022 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23025 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23026 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23029 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23030 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23031 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23036 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23037 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23038 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23039 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23040 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23042 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23043 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23045 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23046 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23047 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23048 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23051 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23052 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23053 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23056 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23057 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23058 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23060 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23061 - components: - - type: Transform - pos: 34.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23062 - components: - - type: Transform - pos: 34.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23063 - components: - - type: Transform - pos: 34.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23064 - components: - - type: Transform - pos: 34.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23065 - components: - - type: Transform - pos: 34.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23066 - components: - - type: Transform - pos: 34.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23067 - components: - - type: Transform - pos: 34.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23068 - components: - - type: Transform - pos: 34.5,57.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23069 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23070 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23071 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23072 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23073 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23074 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23075 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23076 - components: - - type: Transform - pos: 43.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23077 - components: - - type: Transform - pos: 43.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23078 - components: - - type: Transform - pos: 43.5,57.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23081 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23082 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23083 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23084 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23085 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23086 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23088 - components: - - type: Transform - pos: 50.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23089 - components: - - type: Transform - pos: 50.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23090 - components: - - type: Transform - pos: 50.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23095 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23097 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23098 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23099 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23105 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23106 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23107 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23108 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23110 - components: - - type: Transform - pos: 21.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23111 - components: - - type: Transform - pos: 21.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23112 - components: - - type: Transform - pos: 21.5,13.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23113 - components: - - type: Transform - pos: 21.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23114 - components: - - type: Transform - pos: 21.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23115 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23131 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23146 - components: - - type: Transform - pos: 4.5,30.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23147 - components: - - type: Transform - pos: 4.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23149 - components: - - type: Transform - pos: 4.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23150 - components: - - type: Transform - pos: 4.5,26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23151 - components: - - type: Transform - pos: 4.5,25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23160 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23169 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,18.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23178 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,71.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23187 - components: - - type: Transform - pos: 19.5,66.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23188 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,67.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23189 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,67.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23190 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,66.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23191 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,66.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23214 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,67.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23215 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,67.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23216 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,66.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,66.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,67.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23219 - components: - - type: Transform - pos: 12.5,68.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23220 - components: - - type: Transform - pos: 12.5,69.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23221 - components: - - type: Transform - pos: 13.5,69.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,66.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,67.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,66.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,67.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,67.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23227 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,68.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,69.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,69.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23230 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23231 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,73.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23232 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,74.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23233 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,75.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,76.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23235 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,77.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,78.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,71.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23238 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23239 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,73.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,74.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,75.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23242 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,76.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23243 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,77.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23244 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,78.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23245 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,78.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,77.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,76.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,75.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23249 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,74.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23250 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,73.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23252 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,71.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,78.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,76.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,77.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,75.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23257 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,74.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,73.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,71.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23367 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23368 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23369 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23373 - components: - - type: Transform - pos: 8.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23374 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23377 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23378 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23379 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23380 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23381 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23382 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23391 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23392 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23394 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23395 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23537 - components: - - type: Transform - pos: 35.5,26.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23589 - components: - - type: Transform - pos: 22.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-18.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23949 - components: - - type: Transform - pos: 69.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23954 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23955 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23956 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23958 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23960 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23961 - components: - - type: Transform - pos: 50.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23962 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23963 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23964 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23965 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23966 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23968 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23969 - components: - - type: Transform - pos: 57.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23971 - components: - - type: Transform - pos: 57.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23973 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23981 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23991 - components: - - type: Transform - pos: 70.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23992 - components: - - type: Transform - pos: 68.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23993 - components: - - type: Transform - pos: 68.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23994 - components: - - type: Transform - pos: 68.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23995 - components: - - type: Transform - pos: 68.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23998 - components: - - type: Transform - pos: 70.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23999 - components: - - type: Transform - pos: 70.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24003 - components: - - type: Transform - pos: 69.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24004 - components: - - type: Transform - pos: 69.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24005 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24106 - components: - - type: Transform - pos: 56.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24107 - components: - - type: Transform - pos: 56.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24108 - components: - - type: Transform - pos: 56.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24110 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24111 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24186 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-60.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 24566 - components: - - type: Transform - pos: -5.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24567 - components: - - type: Transform - pos: -5.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24634 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24643 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24644 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24804 - components: - - type: Transform - pos: -9.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25092 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25096 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25105 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25389 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25398 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25400 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25411 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25437 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-41.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25527 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25529 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25530 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25546 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25569 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25571 - components: - - type: Transform - pos: 38.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25573 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25659 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25669 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-10.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25675 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26052 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26121 - components: - - type: Transform - pos: 21.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26126 - components: - - type: Transform - pos: -0.5,-54.5 - 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 - pos: 51.5,-32.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26316 - components: - - type: Transform - pos: 51.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26317 - components: - - type: Transform - pos: 51.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26318 - components: - - type: Transform - pos: 51.5,-36.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26323 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26325 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26334 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,30.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26340 - components: - - type: Transform - pos: -14.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26341 - components: - - type: Transform - pos: -14.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26342 - components: - - type: Transform - pos: -14.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,70.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26346 - components: - - type: Transform - pos: 12.5,38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26347 - components: - - type: Transform - pos: 12.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26348 - components: - - type: Transform - pos: 12.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26349 - components: - - type: Transform - pos: 13.5,38.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26350 - components: - - type: Transform - pos: 13.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26351 - components: - - type: Transform - pos: 13.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26352 - components: - - type: Transform - pos: 13.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26363 - components: - - type: Transform - pos: 50.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26364 - components: - - type: Transform - pos: 50.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26365 - components: - - type: Transform - pos: 50.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26370 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26371 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26372 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26411 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26453 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26474 - components: - - type: Transform - pos: -5.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26477 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26517 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26539 - components: - - type: Transform - pos: 41.5,13.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26540 - components: - - type: Transform - pos: 41.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26541 - components: - - type: Transform - pos: 41.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26559 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,19.5 - parent: 12 - - uid: 26561 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,20.5 - parent: 12 - - uid: 26562 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,21.5 - parent: 12 - - uid: 26563 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,22.5 - parent: 12 - - uid: 26572 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,23.5 - parent: 12 - - uid: 26578 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,23.5 - parent: 12 - - uid: 26581 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,22.5 - parent: 12 - - uid: 26582 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,21.5 - parent: 12 - - uid: 26585 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,20.5 - parent: 12 - - uid: 26587 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,19.5 - parent: 12 - - uid: 26603 - components: - - type: Transform - pos: 9.5,25.5 - parent: 12 - - uid: 26604 - components: - - type: Transform - pos: 9.5,26.5 - parent: 12 - - uid: 26605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,27.5 - parent: 12 - - uid: 26608 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,27.5 - parent: 12 - - uid: 26612 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,25.5 - parent: 12 - - uid: 26613 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,26.5 - parent: 12 - - uid: 26629 - components: - - type: Transform - pos: 41.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26630 - components: - - type: Transform - pos: 41.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26650 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26673 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26679 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26695 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26726 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26849 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,16.5 - 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 - rot: 3.141592653589793 rad - pos: 54.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26929 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26930 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26966 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26977 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26984 - components: - - type: Transform - pos: 41.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26987 - components: - - type: Transform - pos: 38.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26988 - components: - - type: Transform - pos: 38.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26989 - components: - - type: Transform - pos: 38.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26990 - components: - - type: Transform - pos: 38.5,22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26991 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,18.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,18.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27034 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27036 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27054 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27173 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27174 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27175 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27265 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-33.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27281 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27282 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27286 - components: - - type: Transform - pos: -2.5,-51.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27290 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27294 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-51.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27298 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-49.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27299 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-49.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27606 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27607 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27663 - components: - - type: Transform - pos: 33.5,13.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,13.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27917 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28353 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28408 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28454 - components: - - type: Transform - pos: 5.5,-25.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28455 - components: - - type: Transform - pos: 5.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28456 - components: - - type: Transform - pos: 5.5,-23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28771 - components: - - type: Transform - pos: 54.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28772 - components: - - type: Transform - pos: 54.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28779 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28780 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28929 - components: - - type: Transform - pos: 6.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29119 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 29262 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29264 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29265 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 29266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 29267 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 29293 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29295 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29296 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29398 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29403 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29404 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29405 - components: - - type: Transform - pos: -50.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29406 - components: - - type: Transform - pos: -50.5,57.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29407 - components: - - type: Transform - pos: -50.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29408 - components: - - type: Transform - pos: -50.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29409 - components: - - type: Transform - pos: -50.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29410 - components: - - type: Transform - pos: -50.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29411 - components: - - type: Transform - pos: -50.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29412 - components: - - type: Transform - pos: -50.5,64.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29573 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29574 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29575 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29580 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29581 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29582 - components: - - type: Transform - pos: -48.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29583 - components: - - type: Transform - pos: -48.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29584 - components: - - type: Transform - pos: -48.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29585 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29587 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29589 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29590 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29653 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,67.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29689 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,66.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,65.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,65.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,65.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,65.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,65.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29696 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,65.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29697 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,65.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29698 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,65.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29785 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,69.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,70.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29787 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,71.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29792 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29793 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29796 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29797 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29798 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29800 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29804 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29806 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29808 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29809 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29810 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29811 - components: - - type: Transform - pos: -41.5,68.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29812 - components: - - type: Transform - pos: -41.5,69.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29813 - components: - - type: Transform - pos: -41.5,70.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29814 - components: - - type: Transform - pos: -41.5,71.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29852 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 29853 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 29959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 30008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30331 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30345 - components: - - type: Transform - pos: -12.5,-51.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 30439 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30530 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30819 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30820 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-54.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30821 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30822 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-56.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30823 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-57.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30824 - components: - - type: Transform - pos: 1.5,-58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30825 - components: - - type: Transform - pos: 1.5,-59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30826 - components: - - type: Transform - pos: 1.5,-60.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30829 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30830 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30831 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30835 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30836 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-64.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30837 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-64.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30838 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-64.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-64.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30840 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-64.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30841 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-64.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-64.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30843 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30844 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30845 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30846 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30847 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30848 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30849 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30850 - components: - - type: Transform - pos: -25.5,-61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30851 - components: - - type: Transform - pos: -25.5,-60.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30852 - components: - - type: Transform - pos: -25.5,-59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30853 - components: - - type: Transform - pos: -25.5,-58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30854 - components: - - type: Transform - pos: -25.5,-57.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30855 - components: - - type: Transform - pos: -25.5,-56.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30856 - components: - - type: Transform - pos: -25.5,-55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30857 - components: - - type: Transform - pos: -25.5,-54.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30859 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30866 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30867 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30868 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30869 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-51.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30871 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30872 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30888 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31375 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 31404 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31405 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31407 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31408 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31409 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31411 - components: - - type: Transform - pos: -29.5,-57.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31412 - components: - - type: Transform - pos: -29.5,-56.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31413 - components: - - type: Transform - pos: -29.5,-55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31414 - components: - - type: Transform - pos: -29.5,-54.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-67.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31417 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-66.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-65.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31424 - components: - - type: Transform - pos: -7.5,-67.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-65.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31427 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-64.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31428 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-66.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31430 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-66.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31431 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-66.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31432 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-66.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31433 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-66.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31434 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-66.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-65.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-64.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31437 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31474 - components: - - type: Transform - pos: 4.5,-59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31475 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 31476 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 31477 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 31740 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 32068 - components: - - type: Transform - pos: 36.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 32216 - components: - - type: Transform - pos: -1.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32217 - components: - - type: Transform - pos: -1.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32218 - components: - - type: Transform - pos: -1.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32219 - components: - - type: Transform - pos: -1.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32220 - components: - - type: Transform - pos: -1.5,-9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32329 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 32333 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32334 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32335 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32336 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32337 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32338 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32344 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32345 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32346 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32347 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32348 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32349 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 32350 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 32351 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 32352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 32355 - components: - - type: Transform - pos: 62.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32356 - components: - - type: Transform - pos: 62.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32357 - components: - - type: Transform - pos: 62.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPipeTJunction - entities: - - uid: 103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1092 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1109 - components: - - type: Transform - pos: -37.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1110 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1127 - components: - - type: Transform - pos: -27.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1131 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1145 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1206 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1210 - components: - - type: Transform - pos: -36.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-30.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1231 - components: - - type: Transform - pos: -30.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1232 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1274 - components: - - type: Transform - pos: -20.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1277 - components: - - type: Transform - pos: -24.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1295 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1296 - components: - - type: Transform - pos: -27.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2108 - components: - - type: Transform - pos: 21.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2288 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2603 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-38.5 - 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 - rot: -1.5707963267948966 rad - pos: -10.5,-54.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-55.5 - parent: 12 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 2810 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-56.5 - parent: 12 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 2811 - components: - - type: Transform - pos: -9.5,-55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3241 - components: - - type: Transform - pos: -10.5,-59.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 3297 - components: - - type: Transform - pos: -12.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3394 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3492 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-55.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3498 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3532 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3535 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-51.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3554 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3580 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3582 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3598 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3599 - components: - - type: Transform - pos: -1.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3633 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3678 - components: - - type: Transform - pos: -3.5,-43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3696 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3712 - components: - - type: Transform - pos: -13.5,-58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3734 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3928 - components: - - type: Transform - pos: -39.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3953 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4097 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4342 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4343 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-57.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-31.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-32.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4811 - components: - - type: Transform - pos: 11.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4829 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4871 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-49.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4918 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4945 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5003 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5035 - components: - - type: Transform - pos: 38.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5144 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5145 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5278 - components: - - type: Transform - pos: 21.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5308 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-19.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5312 - components: - - type: Transform - pos: 33.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5315 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-52.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5342 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5345 - components: - - type: Transform - pos: 12.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5359 - components: - - type: Transform - pos: 20.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5360 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5374 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5392 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5530 - components: - - type: Transform - pos: -6.5,-63.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5711 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5963 - components: - - type: Transform - pos: -29.5,-53.5 - 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 - rot: 3.141592653589793 rad - pos: -26.5,2.5 - 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 - pos: 20.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6837 - components: - - type: Transform - pos: -10.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6840 - components: - - type: Transform - pos: 6.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6894 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-23.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6990 - components: - - type: Transform - pos: 21.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6991 - components: - - type: Transform - pos: 25.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6995 - components: - - type: Transform - pos: 22.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7016 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7017 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7019 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7035 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7087 - components: - - type: Transform - pos: 13.5,-37.5 - 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 - rot: 1.5707963267948966 rad - pos: 49.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,31.5 - 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 - rot: 1.5707963267948966 rad - pos: -16.5,-48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7206 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7277 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-50.5 - 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 - rot: 1.5707963267948966 rad - pos: -16.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7315 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7337 - components: - - type: Transform - pos: 27.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7467 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7747 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7762 - components: - - type: Transform - pos: 43.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7763 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7808 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-17.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7817 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,61.5 - 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 - rot: -1.5707963267948966 rad - pos: 57.5,0.5 - 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 - pos: 12.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8517 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8537 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-31.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8567 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8595 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8596 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-31.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8621 - components: - - type: Transform - pos: 56.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8630 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8631 - components: - - type: Transform - pos: 49.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8632 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8641 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8642 - components: - - type: Transform - pos: 52.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8645 - components: - - type: Transform - pos: 57.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8674 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-22.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8675 - components: - - type: Transform - pos: -6.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8679 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8685 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8696 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8706 - components: - - type: Transform - pos: 58.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8741 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8904 - components: - - type: Transform - pos: 7.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9052 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9461 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9462 - components: - - type: Transform - pos: 34.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9563 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9587 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9601 - components: - - type: Transform - pos: 5.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9643 - components: - - type: Transform - pos: -8.5,-59.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 9734 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9735 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9749 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9955 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10064 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10065 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10188 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10193 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10260 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-18.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10813 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10912 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10920 - components: - - type: Transform - pos: 44.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10981 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11012 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11013 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11023 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11067 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11068 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11069 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11085 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11116 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11971 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,30.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12161 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12411 - components: - - type: Transform - pos: 32.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12740 - components: - - type: Transform - pos: 39.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12742 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12743 - components: - - type: Transform - pos: 42.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12746 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12756 - components: - - type: Transform - pos: 44.5,38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12819 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12821 - components: - - type: Transform - pos: 39.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12845 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12861 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12867 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13003 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13270 - components: - - type: Transform - pos: 53.5,35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13305 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13518 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,23.5 - parent: 12 - - uid: 13581 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13806 - components: - - type: Transform - pos: 35.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13811 - components: - - type: Transform - pos: 39.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13819 - components: - - type: Transform - pos: 36.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13926 - components: - - type: Transform - pos: 31.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13927 - components: - - type: Transform - pos: 30.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13928 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13929 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14019 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14052 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14053 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14056 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14091 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14095 - components: - - type: Transform - pos: 54.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15252 - components: - - type: Transform - pos: -20.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15406 - components: - - type: Transform - pos: 40.5,49.5 - parent: 12 - - uid: 15412 - components: - - type: Transform - pos: 40.5,52.5 - parent: 12 - - uid: 15418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,48.5 - parent: 12 - - uid: 15786 - components: - - type: Transform - pos: 8.5,32.5 - parent: 12 - - uid: 15789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,31.5 - parent: 12 - - uid: 15808 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15809 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15811 - components: - - type: Transform - pos: -19.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15813 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15852 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15869 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15875 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,22.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15884 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15935 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15936 - components: - - type: Transform - pos: -23.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16391 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16392 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,22.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16594 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,22.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16607 - components: - - type: Transform - pos: -10.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16612 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16628 - components: - - type: Transform - pos: -10.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16814 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,38.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17144 - components: - - type: Transform - pos: 17.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17151 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17198 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17231 - components: - - type: Transform - pos: 8.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17243 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17245 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,69.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17249 - components: - - type: Transform - pos: 10.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17254 - components: - - type: Transform - pos: 25.5,41.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17262 - components: - - type: Transform - pos: -28.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17658 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17661 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18255 - components: - - type: Transform - pos: -48.5,41.5 - parent: 12 - - uid: 18264 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,43.5 - parent: 12 - - uid: 18623 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18632 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18727 - components: - - type: Transform - pos: -33.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18728 - components: - - type: Transform - pos: -34.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18750 - components: - - type: Transform - pos: -42.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18789 - components: - - type: Transform - pos: -51.5,37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18815 - components: - - type: Transform - pos: -43.5,34.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18835 - components: - - type: Transform - pos: -42.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18836 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,29.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19252 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19276 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,68.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19370 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19383 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19387 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19391 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19407 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19408 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19409 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19414 - components: - - type: Transform - pos: -39.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19415 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19853 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,57.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19894 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19904 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19906 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19921 - components: - - type: Transform - pos: -32.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19931 - components: - - type: Transform - pos: -22.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19940 - components: - - type: Transform - pos: -21.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19944 - components: - - type: Transform - pos: -36.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19945 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19958 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19974 - components: - - type: Transform - pos: 7.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19983 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19999 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20007 - components: - - type: Transform - pos: 8.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20018 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20023 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20025 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20030 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20035 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20109 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20110 - components: - - type: Transform - pos: -39.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20138 - components: - - type: Transform - pos: -23.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20192 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,65.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,65.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20922 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,58.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20938 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,57.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20954 - components: - - type: Transform - pos: 26.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20961 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20978 - components: - - type: Transform - pos: 18.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21018 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21048 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21838 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21840 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21875 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22078 - components: - - type: Transform - pos: 53.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22119 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,31.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22578 - components: - - type: Transform - pos: 1.5,40.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22857 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22910 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23094 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23185 - components: - - type: Transform - pos: 17.5,66.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23186 - components: - - type: Transform - pos: 19.5,67.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23370 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23371 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,57.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23372 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,57.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23720 - components: - - type: Transform - pos: 37.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23948 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23950 - components: - - type: Transform - pos: 68.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23952 - components: - - type: Transform - pos: 63.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23967 - components: - - type: Transform - pos: 56.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23970 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23990 - components: - - type: Transform - pos: 62.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24000 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,52.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26086 - components: - - type: Transform - pos: -58.5,-35.5 - parent: 12 - - uid: 26614 - components: - - type: Transform - pos: 37.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27292 - components: - - type: Transform - pos: 1.5,-36.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27303 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27960 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27961 - components: - - type: Transform - pos: 17.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27962 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28453 - components: - - type: Transform - pos: 0.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28930 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-21.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29268 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,60.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 29298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29299 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29402 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29650 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,67.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29788 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,72.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31403 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31421 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-66.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31422 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-66.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-66.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 32339 - components: - - type: Transform - pos: 58.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPort - entities: - - uid: 794 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-21.5 - parent: 12 - - uid: 795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-23.5 - parent: 12 - - uid: 796 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-25.5 - parent: 12 - - uid: 797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-27.5 - parent: 12 - - uid: 798 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-22.5 - parent: 12 - - uid: 799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-22.5 - parent: 12 - - uid: 986 - components: - - type: Transform - pos: -41.5,-41.5 - parent: 12 - - uid: 1796 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-31.5 - parent: 12 - - uid: 1797 - components: - - type: Transform - pos: -52.5,-30.5 - parent: 12 - - uid: 1798 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-31.5 - parent: 12 - - uid: 2317 - components: - - type: Transform - pos: -27.5,-49.5 - parent: 12 - - uid: 2362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-21.5 - parent: 12 - - uid: 2654 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,19.5 - parent: 12 - - uid: 2785 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-62.5 - parent: 12 - - uid: 2956 - components: - - type: Transform - pos: 5.5,12.5 - parent: 12 - - uid: 4630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-18.5 - parent: 12 - - uid: 9813 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-18.5 - parent: 12 - - uid: 9856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-20.5 - parent: 12 - - uid: 9858 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-20.5 - parent: 12 - - uid: 10876 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-60.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 11018 - components: - - type: Transform - pos: 25.5,-14.5 - parent: 12 - - uid: 11246 - components: - - type: Transform - pos: 6.5,12.5 - parent: 12 - - uid: 13515 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,22.5 - parent: 12 - - uid: 13516 - components: - - type: Transform - pos: 52.5,24.5 - parent: 12 - - uid: 15435 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,47.5 - parent: 12 - - uid: 16574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18249 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,40.5 - parent: 12 - - uid: 18250 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,40.5 - parent: 12 - - uid: 18251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,40.5 - parent: 12 - - uid: 18252 - components: - - type: Transform - pos: -49.5,44.5 - parent: 12 - - uid: 18257 - components: - - type: Transform - pos: -47.5,47.5 - parent: 12 - - uid: 18258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,42.5 - parent: 12 - - uid: 18259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,42.5 - parent: 12 - - uid: 21524 - components: - - type: Transform - pos: -3.5,11.5 - parent: 12 - - uid: 21525 - components: - - type: Transform - pos: -2.5,11.5 - parent: 12 - - uid: 21526 - components: - - type: Transform - pos: -4.5,11.5 - parent: 12 - - uid: 22496 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,32.5 - parent: 12 - - uid: 25469 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,7.5 - parent: 12 - - uid: 25666 - components: - - type: Transform - pos: 21.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26471 - components: - - type: Transform - pos: 24.5,-14.5 - parent: 12 - - uid: 26591 - components: - - 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 - pos: 22.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPressurePump - entities: - - uid: 788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-21.5 - parent: 12 - - uid: 790 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-21.5 - parent: 12 - - uid: 791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-23.5 - parent: 12 - - uid: 792 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-25.5 - parent: 12 - - uid: 793 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-27.5 - parent: 12 - - uid: 926 - components: - - type: MetaData - name: waste gas pump - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-55.5 - parent: 12 - - type: GasPressurePump - targetPressure: 4500 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 987 - components: - - type: Transform - pos: -41.5,-42.5 - parent: 12 - - uid: 2186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,3.5 - parent: 12 - - uid: 2786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-62.5 - parent: 12 - - uid: 2809 - components: - - type: MetaData - name: distro gas pump - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4092 - components: - - type: MetaData - name: distro pump - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-7.5 - parent: 12 - - uid: 4650 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-3.5 - parent: 12 - - uid: 4743 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-5.5 - parent: 12 - - uid: 4948 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,2.5 - parent: 12 - - uid: 5090 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,0.5 - parent: 12 - - uid: 5717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-9.5 - parent: 12 - - uid: 6235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-1.5 - parent: 12 - - uid: 7212 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,1.5 - parent: 12 - - uid: 9060 - components: - - type: Transform - pos: 25.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9061 - components: - - type: Transform - pos: 24.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12050 - components: - - type: Transform - pos: -45.5,-21.5 - parent: 12 - - uid: 13521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,25.5 - parent: 12 - - type: GasPressurePump - targetPressure: 508.721 - - uid: 18260 - components: - - type: Transform - pos: -47.5,46.5 - parent: 12 - - uid: 23126 - components: - - type: MetaData - name: waste pump - - type: Transform - pos: 20.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasThermoMachineFreezer - entities: - - uid: 2356 - components: - - type: Transform - pos: 40.5,-20.5 - parent: 12 - - uid: 2804 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-56.5 - parent: 12 - - type: GasThermoMachine - targetTemperature: 100 - - type: ApcPowerReceiver - powerDisabled: False - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 2960 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,11.5 - parent: 12 - - uid: 18270 - components: - - type: Transform - pos: -46.5,47.5 - parent: 12 - - uid: 23982 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 12 - - uid: 23983 - components: - - type: Transform - pos: 10.5,-2.5 - parent: 12 -- proto: GasThermoMachineFreezerEnabled - entities: - - uid: 15405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,49.5 - parent: 12 - - type: GasThermoMachine - targetTemperature: 243.15 -- proto: GasThermoMachineHeater - entities: - - uid: 2022 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,11.5 - parent: 12 - - uid: 3979 - components: - - type: Transform - pos: 13.5,-2.5 - parent: 12 - - uid: 4575 - components: - - type: Transform - pos: 12.5,-2.5 - parent: 12 - - uid: 15784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,32.5 - parent: 12 - - type: GasThermoMachine - targetTemperature: 330 - - uid: 27077 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-35.5 - parent: 12 -- proto: GasValve - entities: - - uid: 13519 - components: - - type: Transform - pos: 51.5,24.5 - parent: 12 - - type: GasValve - open: False - - uid: 18253 - components: - - type: Transform - pos: -49.5,42.5 - parent: 12 - - type: GasValve - open: False - - uid: 28754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-12.5 - parent: 12 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#990000FF' - - uid: 31768 - components: - - type: Transform - pos: -13.5,-59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasVentPump - entities: - - uid: 277 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 688 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-64.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 994 - components: - - type: Transform - pos: -41.5,-46.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28343 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1134 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-41.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28343 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-37.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9972 - - 921 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-39.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9972 - - 921 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1137 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 1699 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1211 - components: - - type: Transform - pos: -32.5,-19.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2089 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-21.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2629 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9972 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1305 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1306 - components: - - type: Transform - pos: -32.5,-43.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 25448 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2686 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-61.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9974 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2695 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-55.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28354 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-55.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9974 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2756 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2759 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-58.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9984 - - 377 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2762 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-51.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9984 - - 377 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-54.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3114 - components: - - type: Transform - pos: 52.5,66.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3519 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-46.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9975 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3533 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-53.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9984 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-39.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2545 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4729 - components: - - type: Transform - pos: 45.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4855 - components: - - type: Transform - pos: -5.5,-32.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27296 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-19.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10201 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5328 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28366 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5379 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-39.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27296 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5585 - components: - - type: Transform - pos: 21.5,-21.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 450 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28365 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6082 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6084 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6291 - components: - - type: Transform - pos: 37.5,1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 1375 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6709 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 4906 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6973 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-47.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 706 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-47.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 1169 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6978 - components: - - type: Transform - pos: 19.5,-36.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2852 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7183 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-15.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 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 - rot: -1.5707963267948966 rad - pos: -15.5,-48.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9984 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7507 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7806 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 31755 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8303 - components: - - type: Transform - pos: -6.5,-41.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9984 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8535 - components: - - type: Transform - pos: 49.5,-26.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28367 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8542 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-40.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 752 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8543 - components: - - type: Transform - pos: 77.5,-31.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8597 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-31.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 6833 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8678 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-20.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28373 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-15.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28371 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8698 - components: - - type: Transform - pos: 56.5,-14.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28371 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8985 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-18.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 7342 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 5098 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 5109 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9479 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-10.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 1288 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9717 - components: - - type: Transform - pos: 58.5,3.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9142 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10005 - components: - - type: Transform - pos: 30.5,-23.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10018 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10026 - components: - - type: Transform - pos: 23.5,-16.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10019 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10069 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-10.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 32232 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10073 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-12.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2614 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10106 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10412 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10808 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11341 - components: - - type: Transform - pos: 8.5,12.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 12273 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11462 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-49.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8971 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12232 - components: - - type: Transform - pos: 29.5,2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 11505 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12735 - components: - - type: Transform - pos: 39.5,30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13076 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12736 - components: - - type: Transform - pos: 42.5,30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28383 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12737 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13303 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12739 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,38.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13303 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12839 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,19.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2611 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12998 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13246 - components: - - type: Transform - pos: 53.5,40.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13303 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13582 - components: - - type: Transform - pos: 31.5,30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13751 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13589 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13750 - - 28330 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13923 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,38.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13943 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13939 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 30453 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14089 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,45.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23643 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14090 - components: - - type: Transform - pos: 54.5,50.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 12578 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14097 - components: - - type: Transform - pos: 46.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-60.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14937 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14959 - components: - - type: Transform - pos: 34.5,43.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23643 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15130 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27311 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15806 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 16497 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15807 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,10.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 449 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15840 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,15.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 449 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15872 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,17.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 16496 - - 28381 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15873 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,22.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18884 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,3.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 449 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15954 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,59.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29272 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16631 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,22.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2857 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16680 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17268 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-34.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27296 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18888 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18751 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,23.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18884 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18752 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,25.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18888 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18755 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,20.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18888 - - uid: 18776 - components: - - type: Transform - pos: -53.5,26.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18887 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,37.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18887 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18791 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,37.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18887 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,33.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23804 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19393 - components: - - type: Transform - pos: -44.5,61.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23791 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19394 - components: - - type: Transform - pos: -41.5,61.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23791 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19395 - components: - - type: Transform - pos: -47.5,61.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23791 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,58.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23791 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19880 - components: - - type: Transform - pos: 57.5,53.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24187 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20002 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,41.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23800 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20003 - components: - - type: Transform - pos: -32.5,41.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23809 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20004 - components: - - type: Transform - pos: -22.5,41.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23811 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20005 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,43.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20006 - components: - - type: Transform - pos: -27.5,44.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23786 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20014 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,44.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29275 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20029 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,50.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23630 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20054 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,45.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20105 - components: - - type: Transform - pos: -36.5,66.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 20779 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20125 - components: - - type: Transform - pos: -39.5,54.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 70 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,53.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23796 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20793 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27312 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 20983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,57.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23625 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21010 - components: - - type: Transform - pos: 26.5,56.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23635 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21019 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,54.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23639 - - 30452 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21056 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,33.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21057 - components: - - type: Transform - pos: -28.5,29.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28339 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21301 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,48.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21799 - components: - - type: Transform - pos: -7.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21801 - components: - - type: Transform - pos: -5.5,53.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21802 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,60.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22398 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,62.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22398 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21807 - components: - - type: Transform - pos: -10.5,64.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22398 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21943 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9702 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22090 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22245 - components: - - type: Transform - pos: 35.5,-6.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22248 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22331 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,54.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23786 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22550 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,39.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22582 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22591 - components: - - type: Transform - pos: 2.5,48.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23632 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,49.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 25516 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22812 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,39.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23626 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22813 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,39.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23626 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22826 - components: - - type: Transform - pos: 32.5,46.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 30450 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23093 - components: - - type: Transform - pos: 51.5,62.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28328 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23145 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,31.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23193 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,65.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23594 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23261 - components: - - type: Transform - pos: 12.5,79.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23594 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23262 - components: - - type: Transform - pos: 24.5,79.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23594 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23396 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,51.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23626 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,57.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23630 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23398 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,58.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23630 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28360 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23941 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,57.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28271 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23944 - components: - - type: Transform - pos: 70.5,50.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24184 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,45.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24184 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23997 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,52.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24184 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24002 - components: - - type: Transform - pos: 63.5,50.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24184 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24112 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,45.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22815 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25097 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-33.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27296 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,12.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9101 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26118 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-49.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8971 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26312 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 4418 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26314 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-33.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8914 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26319 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-37.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8914 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26327 - components: - - type: Transform - pos: 48.5,-8.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 20784 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28337 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,39.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28270 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26333 - components: - - type: Transform - pos: 11.5,44.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28331 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26337 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28363 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26339 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,47.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26343 - components: - - type: Transform - pos: -14.5,54.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26345 - components: - - type: Transform - pos: -9.5,71.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 30349 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26353 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,37.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26369 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-11.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28371 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26374 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-42.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26897 - components: - - type: Transform - pos: 48.5,59.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26994 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 30445 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-52.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28354 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28143 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-13.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3983 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28504 - components: - - type: Transform - pos: -21.5,-45.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28502 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28937 - components: - - type: Transform - pos: 6.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28973 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29258 - components: - - type: Transform - pos: -27.5,64.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29270 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29300 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29301 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,64.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29397 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29651 - components: - - type: Transform - pos: -43.5,68.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29837 - components: - - type: Transform - pos: -18.5,73.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 30009 - components: - - type: Transform - pos: -11.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31400 - components: - - type: Transform - pos: -37.5,-57.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-58.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31415 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-68.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31420 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-67.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-68.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31456 - components: - - type: Transform - pos: -4.5,-65.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31478 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-34.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 31479 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-31.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 32067 - components: - - type: Transform - pos: 36.5,-12.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 32066 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 32224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 32231 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 32225 - components: - - type: Transform - pos: 0.5,0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 32231 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 32235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 32231 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 32328 - components: - - type: Transform - pos: 59.5,53.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24187 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 32353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,49.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24184 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasVentScrubber - entities: - - uid: 800 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 12032 - - uid: 801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-23.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 12032 - - uid: 993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-49.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28343 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-42.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28343 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-25.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 1699 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-34.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9972 - - 921 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9972 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1244 - components: - - type: Transform - pos: -27.5,-20.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2089 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-24.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2629 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1275 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-25.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2089 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-48.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1313 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-43.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 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 - rot: 1.5707963267948966 rad - pos: 34.5,29.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 30453 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2680 - components: - - type: Transform - pos: 39.5,2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 1375 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2755 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-60.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9974 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 2760 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-58.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9984 - - 377 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-55.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 377 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3555 - components: - - type: Transform - pos: -22.5,-42.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2545 - - 28502 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3584 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-44.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2545 - - 9984 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-35.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2545 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3725 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-39.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9975 - - 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 - rot: 1.5707963267948966 rad - pos: -5.5,-37.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 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 - rot: 3.141592653589793 rad - pos: 11.5,-22.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10201 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5280 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-17.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10019 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5281 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-16.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 1288 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 4906 - - 448 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5318 - components: - - type: Transform - pos: -5.5,-57.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 5344 - components: - - type: Transform - pos: 4.5,-26.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 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 - rot: -1.5707963267948966 rad - pos: 58.5,5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9142 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6083 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6212 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26792 - - uid: 6979 - components: - - type: Transform - pos: 24.5,-36.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2852 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-47.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 706 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6981 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-47.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 1169 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6983 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28365 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7519 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-50.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8971 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8536 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-29.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28367 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8538 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-32.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8914 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8540 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-32.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 6833 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8541 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-40.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 752 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8544 - components: - - type: Transform - pos: 80.5,-31.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-22.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8504 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-20.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28373 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-13.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28371 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-17.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 7342 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9449 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 5098 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 448 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10006 - components: - - type: Transform - pos: 31.5,-23.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10018 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-13.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2614 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,3.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 449 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-61.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9974 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 10512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-50.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8971 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11209 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 5109 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-39.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12231 - components: - - type: Transform - pos: 30.5,3.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 11505 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12730 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13076 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12731 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28383 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12732 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13303 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12733 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,34.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13303 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12734 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,34.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13303 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12838 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,19.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2611 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12852 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,18.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13674 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13750 - - 28330 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13824 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,42.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23643 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13925 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,38.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13943 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14088 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,44.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23643 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14094 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,47.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 12578 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14102 - components: - - type: Transform - pos: 48.5,50.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14973 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,31.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 13751 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15858 - components: - - type: Transform - pos: -19.5,8.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 449 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15860 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 16497 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,16.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 16496 - - 28381 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,22.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18884 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,15.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 449 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15951 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15952 - components: - - type: Transform - pos: -23.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,22.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2857 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16681 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18799 - components: - - type: Transform - pos: -42.5,30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18888 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18813 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,33.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18888 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18814 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,33.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23804 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18834 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,31.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 18887 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19173 - components: - - type: Transform - pos: 42.5,-27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 4418 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19392 - components: - - type: Transform - pos: -48.5,61.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23791 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19396 - components: - - type: Transform - pos: -45.5,61.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23791 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19397 - components: - - type: Transform - pos: -42.5,61.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23791 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,56.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19430 - components: - - type: Transform - pos: -38.5,59.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23791 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 31755 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20008 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,38.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23809 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20009 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,38.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23811 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20010 - components: - - type: Transform - pos: -27.5,46.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23786 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20011 - components: - - type: Transform - pos: -21.5,46.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20012 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,39.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23800 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20013 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,44.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29275 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20055 - components: - - type: Transform - pos: -39.5,44.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20106 - components: - - type: Transform - pos: -33.5,66.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 20779 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,51.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 70 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,52.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23796 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,54.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23626 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20962 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,45.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23626 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20980 - components: - - type: Transform - pos: 30.5,54.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23635 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20982 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20984 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,58.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23625 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,50.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23639 - - 30452 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21007 - components: - - type: Transform - pos: 31.5,46.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 30450 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21055 - components: - - type: Transform - pos: -25.5,32.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21058 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,26.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28339 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21804 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,61.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22398 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,63.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22398 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21806 - components: - - type: Transform - pos: -9.5,64.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22398 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,51.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21942 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-14.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28371 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21944 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9702 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22244 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-6.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22248 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22332 - components: - - type: Transform - pos: -30.5,52.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23786 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22548 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,39.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22582 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 22590 - components: - - type: Transform - pos: 3.5,48.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23632 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23192 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,65.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23594 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23263 - components: - - type: Transform - pos: 11.5,79.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23594 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23264 - components: - - type: Transform - pos: 25.5,79.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23594 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,53.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23630 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23400 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,57.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23630 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23572 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-22.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28360 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23957 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,47.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24184 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,45.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24184 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24007 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,47.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24184 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24008 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,52.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24184 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25972 - components: - - type: Transform - pos: 18.5,-26.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28365 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26128 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-55.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28354 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26164 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-23.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26328 - components: - - type: Transform - pos: -11.5,28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28337 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26331 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,38.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28270 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26332 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,44.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28331 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26336 - components: - - type: Transform - pos: 33.5,-26.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28363 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,49.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26354 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,37.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26689 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27249 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27272 - components: - - type: Transform - pos: -3.5,-32.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27296 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-52.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28354 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 28935 - components: - - type: Transform - pos: 26.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 28936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3983 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 29259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,64.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29270 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 29261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,60.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29272 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 30441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,14.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9101 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 30444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 30445 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 31480 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-35.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 31481 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-32.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32100 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32226 - components: - - type: Transform - pos: -1.5,0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 32231 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 32231 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-10.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 32232 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 32231 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32340 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,56.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24187 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32341 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,56.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24187 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,48.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 24184 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 32358 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,44.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22815 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasVolumePump - entities: - - uid: 2869 - components: - - type: Transform - pos: 6.5,18.5 - parent: 12 - - uid: 3019 - components: - - type: Transform - pos: 13.5,18.5 - parent: 12 - - uid: 3237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,18.5 - parent: 12 - - uid: 4382 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,18.5 - parent: 12 - - uid: 7146 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,13.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 26045 - components: - - type: MetaData - name: volumetric gas pump to TEG - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 26556 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,18.5 - parent: 12 - - uid: 26592 - components: - - type: Transform - pos: 12.5,18.5 - parent: 12 -- proto: Gauze - entities: - - uid: 13825 - components: - - type: Transform - rot: -69.11503837897548 rad - pos: 29.681107,35.548954 - parent: 12 - - uid: 19353 - components: - - type: Transform - pos: -47.563118,57.633785 - parent: 12 -- proto: Girder - entities: - - uid: 1059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-4.5 - parent: 12 - - uid: 2387 - components: - - type: Transform - 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: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-62.5 - parent: 12 - - uid: 10969 - components: - - type: Transform - pos: -48.5,51.5 - parent: 12 - - uid: 11535 - components: - - type: Transform - pos: 47.5,13.5 - parent: 12 - - uid: 11983 - components: - - type: Transform - pos: 34.5,10.5 - parent: 12 - - uid: 12065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,18.5 - parent: 12 - - uid: 12235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,10.5 - parent: 12 - - uid: 13486 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,22.5 - parent: 12 - - uid: 15859 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-61.5 - parent: 12 - - uid: 22143 - components: - - type: Transform - pos: 44.5,-2.5 - parent: 12 - - uid: 22309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,11.5 - parent: 12 - - uid: 23438 - components: - - type: Transform - pos: 38.5,45.5 - parent: 12 - - uid: 26705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-2.5 - parent: 12 - - uid: 26755 - components: - - type: Transform - pos: 46.5,-4.5 - parent: 12 - - uid: 28445 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,15.5 - parent: 12 - - uid: 28923 - components: - - 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 - pos: -33.5,-55.5 - parent: 12 - - uid: 31439 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-64.5 - parent: 12 - - uid: 32190 - components: - - type: Transform - pos: 67.5,-5.5 - parent: 12 - - uid: 32288 - components: - - type: Transform - pos: 79.5,-2.5 - parent: 12 - - uid: 32289 - components: - - type: Transform - pos: 79.5,3.5 - parent: 12 - - uid: 32290 - components: - - type: Transform - pos: 79.5,11.5 - parent: 12 - - uid: 32291 - components: - - type: Transform - pos: 67.5,14.5 - parent: 12 -- proto: GlassBoxLaserFilled - entities: - - uid: 17404 - components: - - type: Transform - pos: -52.5,18.5 - parent: 12 -- proto: GlowstickBase - entities: - - uid: 4156 - components: - - type: Transform - pos: 8.366522,-50.27419 - parent: 12 - - uid: 4157 - components: - - type: Transform - pos: 8.564439,-50.347107 - parent: 12 - - uid: 6880 - components: - - type: Transform - pos: 22.113516,-38.434826 - parent: 12 - - uid: 6881 - components: - - type: Transform - pos: 22.301016,-38.4817 - parent: 12 - - uid: 6882 - components: - - type: Transform - pos: 22.207266,-38.20045 - parent: 12 - - uid: 12744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.740177,25.514826 - parent: 12 - - uid: 21073 - components: - - type: Transform - pos: -44.677162,44.579002 - parent: 12 - - uid: 29613 - components: - - type: Transform - rot: 2.220446049250313E-16 rad - pos: -47.544113,68.56509 - parent: 12 - - uid: 30217 - components: - - type: Transform - pos: -11.633292,61.04882 - parent: 12 - - uid: 30218 - components: - - type: Transform - pos: -11.352042,61.121788 - parent: 12 -- proto: GlowstickBlue - entities: - - uid: 30220 - components: - - type: Transform - pos: -6.4519653,63.967514 - parent: 12 - - uid: 30221 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -6.2282777,64.03005 - parent: 12 -- proto: GlowstickPurple - entities: - - uid: 29612 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -52.46078,75.45116 - parent: 12 -- proto: GlowstickRed - entities: - - uid: 29611 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -46.405224,74.242805 - parent: 12 -- proto: GlowstickYellow - entities: - - uid: 29600 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -53.55106,69.57985 - parent: 12 -- proto: GrassBattlemap - entities: - - uid: 30316 - components: - - type: Transform - pos: -7.4539666,77.78246 - parent: 12 -- proto: GravityGenerator - entities: - - uid: 26939 - components: - - type: Transform - pos: 37.5,-10.5 - parent: 12 -- proto: GrenadeFlashBang - entities: - - uid: 21409 - components: - - type: Transform - pos: -35.903347,36.74952 - parent: 12 - - uid: 23883 - components: - - type: Transform - pos: -38.261044,51.369217 - parent: 12 - - uid: 25419 - components: - - type: Transform - pos: -26.19504,65.46033 - parent: 12 -- proto: Grille - entities: - - uid: 5 - components: - - type: Transform - pos: 0.5,2.5 - parent: 12 - - uid: 8 - components: - - type: Transform - pos: -1.5,3.5 - parent: 12 - - uid: 25 - components: - - type: Transform - pos: 0.5,3.5 - parent: 12 - - uid: 28 - components: - - type: Transform - pos: -20.5,55.5 - parent: 12 - - uid: 118 - components: - - type: Transform - pos: -47.5,13.5 - parent: 12 - - uid: 120 - components: - - type: Transform - pos: -53.5,13.5 - parent: 12 - - uid: 135 - components: - - type: Transform - pos: -51.5,13.5 - parent: 12 - - uid: 136 - components: - - type: Transform - pos: -52.5,13.5 - parent: 12 - - uid: 147 - components: - - type: Transform - pos: -50.5,13.5 - parent: 12 - - uid: 148 - components: - - type: Transform - pos: -55.5,15.5 - parent: 12 - - uid: 176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-13.5 - parent: 12 - - uid: 177 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-13.5 - parent: 12 - - uid: 180 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-15.5 - parent: 12 - - uid: 181 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-15.5 - parent: 12 - - uid: 209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-18.5 - parent: 12 - - uid: 210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-17.5 - parent: 12 - - uid: 222 - components: - - type: Transform - pos: -55.5,16.5 - parent: 12 - - uid: 223 - components: - - type: Transform - pos: -56.5,16.5 - parent: 12 - - uid: 224 - components: - - type: Transform - pos: -48.5,13.5 - parent: 12 - - uid: 233 - components: - - type: Transform - pos: -55.5,14.5 - parent: 12 - - uid: 234 - components: - - type: Transform - pos: -56.5,17.5 - parent: 12 - - uid: 235 - components: - - type: Transform - pos: -56.5,18.5 - parent: 12 - - uid: 236 - components: - - type: Transform - pos: -6.5,-5.5 - parent: 12 - - uid: 237 - components: - - type: Transform - pos: -57.5,18.5 - parent: 12 - - uid: 238 - components: - - type: Transform - pos: -54.5,13.5 - parent: 12 - - uid: 239 - components: - - type: Transform - pos: -6.5,-7.5 - parent: 12 - - uid: 241 - components: - - type: Transform - pos: -47.5,15.5 - parent: 12 - - uid: 242 - components: - - type: Transform - pos: -60.5,34.5 - parent: 12 - - uid: 243 - components: - - type: Transform - pos: -60.5,32.5 - parent: 12 - - uid: 244 - components: - - type: Transform - pos: -60.5,31.5 - parent: 12 - - uid: 252 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,6.5 - parent: 12 - - uid: 255 - components: - - type: Transform - pos: -60.5,33.5 - parent: 12 - - uid: 256 - components: - - type: Transform - pos: -57.5,39.5 - parent: 12 - - uid: 258 - components: - - type: Transform - pos: -56.5,39.5 - parent: 12 - - uid: 260 - components: - - type: Transform - pos: -57.5,37.5 - parent: 12 - - uid: 265 - components: - - type: Transform - pos: -57.5,38.5 - parent: 12 - - uid: 283 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-8.5 - parent: 12 - - uid: 284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-9.5 - parent: 12 - - uid: 290 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-4.5 - parent: 12 - - uid: 293 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-10.5 - parent: 12 - - uid: 294 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-11.5 - parent: 12 - - uid: 295 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-12.5 - parent: 12 - - uid: 296 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-13.5 - parent: 12 - - uid: 297 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-14.5 - parent: 12 - - uid: 298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-15.5 - parent: 12 - - uid: 299 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-15.5 - parent: 12 - - uid: 300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-14.5 - parent: 12 - - uid: 301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-13.5 - parent: 12 - - uid: 302 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-12.5 - parent: 12 - - uid: 303 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-11.5 - parent: 12 - - uid: 304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-10.5 - parent: 12 - - uid: 333 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-17.5 - parent: 12 - - uid: 334 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-17.5 - parent: 12 - - uid: 337 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-16.5 - parent: 12 - - uid: 381 - components: - - type: Transform - pos: -29.5,-7.5 - parent: 12 - - uid: 400 - components: - - type: Transform - pos: -29.5,-3.5 - parent: 12 - - uid: 409 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-40.5 - parent: 12 - - uid: 426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,3.5 - parent: 12 - - uid: 430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,1.5 - parent: 12 - - uid: 431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,2.5 - parent: 12 - - uid: 441 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,4.5 - parent: 12 - - uid: 442 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,4.5 - parent: 12 - - uid: 458 - components: - - type: Transform - pos: -30.5,-17.5 - parent: 12 - - uid: 463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-5.5 - parent: 12 - - uid: 464 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-2.5 - parent: 12 - - uid: 468 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-4.5 - parent: 12 - - uid: 472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,0.5 - parent: 12 - - uid: 473 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,0.5 - parent: 12 - - uid: 474 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,0.5 - parent: 12 - - uid: 520 - components: - - type: Transform - pos: -31.5,-17.5 - parent: 12 - - uid: 521 - components: - - type: Transform - pos: -32.5,-17.5 - parent: 12 - - uid: 534 - components: - - type: Transform - pos: -27.5,-29.5 - parent: 12 - - uid: 535 - components: - - type: Transform - pos: -27.5,-30.5 - parent: 12 - - uid: 545 - components: - - type: Transform - pos: -13.5,-22.5 - parent: 12 - - uid: 546 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 12 - - uid: 577 - components: - - type: Transform - pos: -1.5,-24.5 - parent: 12 - - uid: 578 - components: - - type: Transform - pos: -0.5,-24.5 - parent: 12 - - uid: 579 - components: - - type: Transform - pos: 0.5,-24.5 - parent: 12 - - uid: 594 - components: - - type: Transform - pos: -34.5,-21.5 - parent: 12 - - uid: 595 - components: - - type: Transform - pos: -34.5,-20.5 - parent: 12 - - uid: 614 - components: - - type: Transform - pos: 37.5,-47.5 - parent: 12 - - uid: 620 - components: - - type: Transform - pos: -37.5,-25.5 - parent: 12 - - uid: 621 - components: - - type: Transform - pos: -36.5,-25.5 - parent: 12 - - uid: 622 - components: - - type: Transform - pos: -41.5,-23.5 - parent: 12 - - uid: 636 - components: - - type: Transform - pos: -38.5,-28.5 - parent: 12 - - uid: 638 - components: - - type: Transform - pos: 6.5,19.5 - parent: 12 - - uid: 652 - components: - - type: Transform - pos: -35.5,-32.5 - parent: 12 - - uid: 653 - components: - - type: Transform - pos: -35.5,-31.5 - parent: 12 - - uid: 654 - components: - - type: Transform - pos: -35.5,-30.5 - parent: 12 - - uid: 655 - components: - - type: Transform - pos: -34.5,-29.5 - parent: 12 - - uid: 656 - components: - - type: Transform - pos: -33.5,-29.5 - parent: 12 - - uid: 657 - components: - - type: Transform - pos: -32.5,-29.5 - parent: 12 - - uid: 658 - components: - - type: Transform - pos: -31.5,-32.5 - parent: 12 - - uid: 659 - components: - - type: Transform - pos: -31.5,-31.5 - parent: 12 - - uid: 660 - components: - - type: Transform - pos: -31.5,-30.5 - parent: 12 - - uid: 661 - components: - - type: Transform - pos: -34.5,-33.5 - parent: 12 - - uid: 662 - components: - - type: Transform - pos: -33.5,-33.5 - parent: 12 - - uid: 663 - components: - - type: Transform - pos: -32.5,-33.5 - parent: 12 - - uid: 697 - components: - - type: Transform - pos: 9.5,19.5 - parent: 12 - - uid: 699 - components: - - type: Transform - pos: -50.5,-33.5 - parent: 12 - - uid: 700 - components: - - type: Transform - pos: -48.5,-33.5 - parent: 12 - - uid: 714 - components: - - type: Transform - pos: -50.5,-27.5 - parent: 12 - - uid: 715 - components: - - type: Transform - pos: -50.5,-25.5 - parent: 12 - - uid: 716 - components: - - type: Transform - pos: -50.5,-23.5 - parent: 12 - - uid: 717 - components: - - type: Transform - pos: -50.5,-21.5 - parent: 12 - - uid: 767 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,59.5 - parent: 12 - - uid: 778 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-20.5 - parent: 12 - - uid: 779 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-20.5 - parent: 12 - - uid: 825 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-44.5 - parent: 12 - - uid: 829 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-44.5 - parent: 12 - - uid: 831 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-44.5 - parent: 12 - - uid: 832 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-35.5 - parent: 12 - - uid: 842 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-40.5 - parent: 12 - - uid: 843 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-40.5 - parent: 12 - - uid: 844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-40.5 - parent: 12 - - uid: 867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-34.5 - parent: 12 - - uid: 868 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-35.5 - parent: 12 - - uid: 869 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-36.5 - parent: 12 - - uid: 871 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-38.5 - parent: 12 - - uid: 872 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-37.5 - parent: 12 - - uid: 891 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-38.5 - parent: 12 - - uid: 951 - components: - - type: Transform - pos: -28.5,-2.5 - parent: 12 - - uid: 979 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-42.5 - parent: 12 - - uid: 980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-41.5 - parent: 12 - - uid: 1000 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-48.5 - parent: 12 - - uid: 1005 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-49.5 - parent: 12 - - uid: 1006 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-48.5 - parent: 12 - - uid: 1007 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-48.5 - parent: 12 - - uid: 1008 - components: - - type: Transform - pos: 28.5,-25.5 - parent: 12 - - uid: 1010 - components: - - type: Transform - pos: -30.5,-48.5 - parent: 12 - - uid: 1019 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-39.5 - parent: 12 - - uid: 1020 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-38.5 - parent: 12 - - uid: 1021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-36.5 - parent: 12 - - uid: 1022 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-35.5 - parent: 12 - - uid: 1023 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-34.5 - parent: 12 - - uid: 1024 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-33.5 - parent: 12 - - uid: 1039 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-47.5 - parent: 12 - - uid: 1060 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-45.5 - parent: 12 - - uid: 1062 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-45.5 - parent: 12 - - uid: 1063 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-45.5 - parent: 12 - - uid: 1276 - components: - - type: Transform - pos: -51.5,-17.5 - parent: 12 - - uid: 1352 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-10.5 - parent: 12 - - uid: 1354 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-6.5 - parent: 12 - - uid: 1453 - components: - - type: Transform - pos: -56.5,21.5 - parent: 12 - - uid: 1538 - components: - - type: Transform - pos: 14.5,19.5 - parent: 12 - - uid: 1550 - components: - - type: Transform - pos: 11.5,3.5 - parent: 12 - - uid: 1885 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-11.5 - parent: 12 - - uid: 2048 - components: - - type: Transform - pos: 35.5,8.5 - parent: 12 - - uid: 2066 - components: - - type: Transform - pos: 11.5,1.5 - parent: 12 - - uid: 2172 - components: - - type: Transform - pos: 7.5,19.5 - parent: 12 - - uid: 2174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-2.5 - parent: 12 - - uid: 2175 - components: - - type: Transform - pos: 13.5,3.5 - parent: 12 - - uid: 2179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-40.5 - parent: 12 - - uid: 2252 - components: - - type: Transform - pos: 28.5,-7.5 - parent: 12 - - uid: 2253 - components: - - type: Transform - pos: 11.5,2.5 - parent: 12 - - uid: 2303 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,63.5 - parent: 12 - - uid: 2304 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,62.5 - parent: 12 - - uid: 2331 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-52.5 - parent: 12 - - uid: 2332 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-52.5 - parent: 12 - - uid: 2333 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-52.5 - parent: 12 - - uid: 2339 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,64.5 - parent: 12 - - uid: 2344 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,61.5 - parent: 12 - - uid: 2349 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-60.5 - parent: 12 - - uid: 2350 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-61.5 - parent: 12 - - uid: 2351 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-61.5 - parent: 12 - - uid: 2352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-62.5 - parent: 12 - - uid: 2353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-62.5 - parent: 12 - - uid: 2354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-62.5 - parent: 12 - - uid: 2355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-62.5 - parent: 12 - - uid: 2445 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-51.5 - parent: 12 - - uid: 2446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-49.5 - parent: 12 - - uid: 2449 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-40.5 - parent: 12 - - uid: 2452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-37.5 - parent: 12 - - uid: 2453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-37.5 - parent: 12 - - uid: 2482 - components: - - type: Transform - pos: -18.5,-47.5 - parent: 12 - - uid: 2483 - components: - - type: Transform - pos: -18.5,-46.5 - parent: 12 - - uid: 2484 - components: - - type: Transform - pos: -18.5,-45.5 - parent: 12 - - uid: 2485 - components: - - type: Transform - pos: -18.5,-44.5 - parent: 12 - - uid: 2486 - components: - - type: Transform - pos: -18.5,-43.5 - parent: 12 - - uid: 2500 - components: - - type: Transform - pos: -13.5,-44.5 - parent: 12 - - uid: 2507 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-49.5 - parent: 12 - - uid: 2547 - components: - - type: Transform - pos: -0.5,-54.5 - parent: 12 - - uid: 2549 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-37.5 - parent: 12 - - uid: 2551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-38.5 - parent: 12 - - uid: 2552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-36.5 - parent: 12 - - uid: 2553 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-36.5 - parent: 12 - - uid: 2554 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-40.5 - parent: 12 - - uid: 2555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-40.5 - parent: 12 - - uid: 2562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-36.5 - parent: 12 - - uid: 2588 - components: - - type: Transform - pos: -13.5,-44.5 - parent: 12 - - uid: 2589 - components: - - type: Transform - pos: -12.5,-44.5 - parent: 12 - - uid: 2590 - components: - - type: Transform - pos: -11.5,-44.5 - parent: 12 - - uid: 2591 - components: - - type: Transform - pos: -10.5,-44.5 - parent: 12 - - uid: 2592 - components: - - type: Transform - pos: -9.5,-44.5 - parent: 12 - - uid: 2593 - components: - - type: Transform - pos: -8.5,-44.5 - parent: 12 - - uid: 2594 - components: - - type: Transform - pos: -7.5,-44.5 - parent: 12 - - uid: 2595 - components: - - type: Transform - pos: -6.5,-44.5 - parent: 12 - - uid: 2616 - components: - - type: Transform - pos: -13.5,-45.5 - parent: 12 - - uid: 2617 - components: - - type: Transform - pos: -13.5,-48.5 - parent: 12 - - uid: 2618 - components: - - type: Transform - pos: -14.5,-48.5 - parent: 12 - - uid: 2619 - components: - - type: Transform - pos: -14.5,-49.5 - parent: 12 - - uid: 2620 - components: - - type: Transform - pos: -14.5,-50.5 - parent: 12 - - uid: 2621 - components: - - type: Transform - pos: -14.5,-51.5 - parent: 12 - - uid: 2634 - components: - - type: Transform - pos: -14.5,-56.5 - parent: 12 - - uid: 2635 - components: - - type: Transform - pos: -17.5,-52.5 - parent: 12 - - uid: 2636 - components: - - type: Transform - pos: -15.5,-52.5 - parent: 12 - - uid: 2656 - components: - - type: Transform - pos: -1.5,20.5 - parent: 12 - - uid: 2666 - components: - - type: Transform - pos: -8.5,-58.5 - parent: 12 - - uid: 2694 - components: - - type: Transform - pos: -4.5,-58.5 - parent: 12 - - uid: 2701 - components: - - type: Transform - pos: -1.5,-54.5 - parent: 12 - - uid: 2702 - components: - - type: Transform - pos: -2.5,-54.5 - parent: 12 - - uid: 2703 - components: - - type: Transform - pos: -3.5,-54.5 - parent: 12 - - uid: 2706 - components: - - type: Transform - pos: -6.5,-53.5 - parent: 12 - - uid: 2707 - components: - - type: Transform - pos: -7.5,-53.5 - parent: 12 - - uid: 2708 - components: - - type: Transform - pos: -9.5,-56.5 - parent: 12 - - uid: 2709 - components: - - type: Transform - pos: -9.5,-55.5 - parent: 12 - - uid: 2713 - components: - - type: Transform - pos: -13.5,-53.5 - parent: 12 - - uid: 2714 - components: - - type: Transform - pos: -12.5,-53.5 - parent: 12 - - uid: 2715 - components: - - type: Transform - pos: -11.5,-53.5 - parent: 12 - - uid: 2846 - components: - - type: Transform - pos: -4.5,-51.5 - parent: 12 - - uid: 2847 - components: - - type: Transform - pos: -4.5,-50.5 - parent: 12 - - uid: 2848 - components: - - type: Transform - pos: -4.5,-47.5 - parent: 12 - - uid: 2849 - components: - - type: Transform - pos: -4.5,-46.5 - parent: 12 - - uid: 2850 - components: - - type: Transform - pos: -5.5,-46.5 - parent: 12 - - uid: 2851 - components: - - type: Transform - pos: -5.5,-44.5 - parent: 12 - - uid: 2892 - components: - - type: Transform - pos: -2.5,-48.5 - parent: 12 - - uid: 2893 - components: - - type: Transform - pos: 31.5,-24.5 - parent: 12 - - uid: 2895 - components: - - type: Transform - pos: -0.5,-48.5 - parent: 12 - - uid: 2903 - components: - - type: Transform - pos: -1.5,-48.5 - parent: 12 - - uid: 2947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-31.5 - parent: 12 - - uid: 2952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-55.5 - parent: 12 - - uid: 2971 - components: - - type: Transform - pos: -4.5,-40.5 - parent: 12 - - uid: 2972 - components: - - type: Transform - pos: -5.5,-40.5 - parent: 12 - - uid: 2974 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-35.5 - parent: 12 - - uid: 2985 - components: - - type: Transform - pos: -3.5,-40.5 - parent: 12 - - uid: 2986 - components: - - type: Transform - pos: 1.5,-40.5 - parent: 12 - - uid: 3028 - components: - - type: Transform - pos: -2.5,-33.5 - parent: 12 - - uid: 3054 - components: - - type: Transform - pos: -3.5,-29.5 - parent: 12 - - uid: 3055 - components: - - type: Transform - pos: -2.5,-29.5 - parent: 12 - - uid: 3056 - components: - - type: Transform - pos: -1.5,-29.5 - parent: 12 - - uid: 3057 - components: - - type: Transform - pos: -0.5,-29.5 - parent: 12 - - uid: 3058 - components: - - type: Transform - pos: 0.5,-29.5 - parent: 12 - - uid: 3059 - components: - - type: Transform - pos: 1.5,-29.5 - parent: 12 - - uid: 3066 - components: - - type: Transform - pos: -0.5,-28.5 - parent: 12 - - uid: 3067 - components: - - type: Transform - pos: -0.5,-25.5 - parent: 12 - - uid: 3100 - components: - - type: Transform - pos: 2.5,-44.5 - parent: 12 - - uid: 3106 - components: - - 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: 3200 - components: - - type: Transform - pos: -58.5,56.5 - parent: 12 - - uid: 3480 - components: - - type: Transform - pos: 20.5,-33.5 - parent: 12 - - uid: 3630 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 12 - - uid: 4104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-47.5 - parent: 12 - - uid: 4230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-46.5 - parent: 12 - - uid: 4259 - components: - - type: Transform - pos: 7.5,74.5 - parent: 12 - - uid: 4263 - components: - - type: Transform - pos: 7.5,73.5 - parent: 12 - - uid: 4413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-54.5 - parent: 12 - - uid: 4421 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 12 - - uid: 4422 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-24.5 - parent: 12 - - uid: 4424 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-25.5 - parent: 12 - - uid: 4425 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-28.5 - parent: 12 - - uid: 4426 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-29.5 - parent: 12 - - uid: 4427 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-29.5 - parent: 12 - - uid: 4446 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-20.5 - parent: 12 - - uid: 4447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-21.5 - parent: 12 - - uid: 4448 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-22.5 - parent: 12 - - uid: 4460 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-54.5 - parent: 12 - - uid: 4463 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-17.5 - parent: 12 - - uid: 4465 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-18.5 - parent: 12 - - uid: 4524 - components: - - type: Transform - pos: 49.5,57.5 - parent: 12 - - uid: 4598 - components: - - type: Transform - pos: 13.5,-0.5 - parent: 12 - - uid: 4666 - components: - - type: Transform - pos: 36.5,-0.5 - parent: 12 - - uid: 4671 - components: - - 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 - rot: 3.141592653589793 rad - pos: 21.5,-0.5 - parent: 12 - - uid: 4772 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,53.5 - parent: 12 - - uid: 4773 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-13.5 - parent: 12 - - uid: 4784 - components: - - type: Transform - pos: 21.5,-11.5 - parent: 12 - - uid: 4796 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-1.5 - parent: 12 - - uid: 4798 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-2.5 - parent: 12 - - uid: 4870 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: 32.5,-6.5 - parent: 12 - - uid: 4920 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-7.5 - parent: 12 - - uid: 4953 - components: - - type: Transform - pos: -22.5,-28.5 - parent: 12 - - uid: 4972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-4.5 - parent: 12 - - uid: 5028 - components: - - type: Transform - pos: 12.5,-1.5 - parent: 12 - - uid: 5050 - components: - - type: Transform - pos: 37.5,-0.5 - parent: 12 - - uid: 5085 - components: - - type: Transform - pos: 29.5,-5.5 - parent: 12 - - uid: 5086 - components: - - type: Transform - pos: 31.5,-5.5 - parent: 12 - - uid: 5208 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-9.5 - parent: 12 - - uid: 5269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,3.5 - parent: 12 - - uid: 5437 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-24.5 - parent: 12 - - uid: 5438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-24.5 - parent: 12 - - uid: 5458 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-22.5 - parent: 12 - - uid: 5459 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-21.5 - parent: 12 - - uid: 5460 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-20.5 - parent: 12 - - uid: 5461 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: 23.5,-6.5 - parent: 12 - - uid: 5718 - components: - - type: Transform - pos: 28.5,-0.5 - parent: 12 - - uid: 5798 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-0.5 - parent: 12 - - uid: 5806 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-3.5 - parent: 12 - - uid: 5808 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,0.5 - parent: 12 - - uid: 5809 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-4.5 - parent: 12 - - uid: 5811 - components: - - type: Transform - pos: 13.5,2.5 - parent: 12 - - uid: 5818 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-9.5 - parent: 12 - - uid: 5832 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-5.5 - parent: 12 - - uid: 5878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-21.5 - parent: 12 - - uid: 5879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-21.5 - parent: 12 - - uid: 5967 - components: - - type: Transform - pos: 10.5,-1.5 - parent: 12 - - uid: 5974 - components: - - type: Transform - pos: -31.5,-45.5 - parent: 12 - - uid: 5987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-8.5 - parent: 12 - - uid: 5990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-3.5 - parent: 12 - - uid: 6009 - components: - - type: Transform - pos: 28.5,-2.5 - parent: 12 - - uid: 6016 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,1.5 - parent: 12 - - uid: 6017 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-8.5 - parent: 12 - - uid: 6055 - components: - - type: Transform - pos: 16.5,-29.5 - parent: 12 - - uid: 6056 - components: - - type: Transform - pos: 17.5,-29.5 - parent: 12 - - uid: 6057 - components: - - type: Transform - pos: 18.5,-29.5 - parent: 12 - - uid: 6058 - components: - - type: Transform - pos: 19.5,-30.5 - parent: 12 - - uid: 6059 - components: - - type: Transform - pos: 19.5,-31.5 - parent: 12 - - uid: 6060 - components: - - type: Transform - pos: 19.5,-32.5 - parent: 12 - - uid: 6061 - components: - - type: Transform - pos: 24.5,-32.5 - parent: 12 - - uid: 6062 - components: - - type: Transform - pos: 24.5,-31.5 - parent: 12 - - uid: 6063 - components: - - type: Transform - pos: 24.5,-30.5 - parent: 12 - - uid: 6064 - components: - - type: Transform - pos: 25.5,-29.5 - parent: 12 - - uid: 6065 - components: - - type: Transform - pos: 26.5,-29.5 - parent: 12 - - uid: 6087 - components: - - type: Transform - pos: 18.5,-34.5 - parent: 12 - - uid: 6088 - components: - - type: Transform - pos: 18.5,-35.5 - parent: 12 - - uid: 6089 - components: - - type: Transform - pos: 25.5,-34.5 - parent: 12 - - uid: 6090 - components: - - type: Transform - pos: 25.5,-35.5 - parent: 12 - - uid: 6098 - components: - - type: Transform - pos: 31.5,-33.5 - parent: 12 - - uid: 6100 - components: - - type: Transform - pos: 31.5,-32.5 - parent: 12 - - uid: 6120 - components: - - type: Transform - pos: 17.5,-39.5 - parent: 12 - - uid: 6121 - components: - - type: Transform - pos: 18.5,-39.5 - parent: 12 - - uid: 6122 - components: - - type: Transform - pos: 17.5,-40.5 - parent: 12 - - uid: 6123 - components: - - type: Transform - pos: 20.5,-39.5 - parent: 12 - - uid: 6124 - components: - - type: Transform - pos: 21.5,-39.5 - parent: 12 - - uid: 6125 - components: - - type: Transform - pos: 22.5,-39.5 - parent: 12 - - uid: 6126 - components: - - type: Transform - pos: 23.5,-39.5 - parent: 12 - - uid: 6128 - components: - - type: Transform - pos: 25.5,-39.5 - parent: 12 - - uid: 6129 - components: - - type: Transform - pos: 26.5,-39.5 - parent: 12 - - uid: 6131 - components: - - type: Transform - pos: 16.5,-40.5 - parent: 12 - - uid: 6139 - components: - - type: Transform - pos: 15.5,-40.5 - parent: 12 - - uid: 6140 - components: - - type: Transform - pos: 14.5,-40.5 - parent: 12 - - uid: 6141 - components: - - type: Transform - pos: 14.5,-41.5 - parent: 12 - - uid: 6142 - components: - - type: Transform - pos: 14.5,-42.5 - parent: 12 - - uid: 6143 - components: - - type: Transform - pos: 23.5,-33.5 - parent: 12 - - uid: 6144 - components: - - type: Transform - pos: 14.5,-44.5 - parent: 12 - - uid: 6146 - components: - - type: Transform - pos: 14.5,-46.5 - parent: 12 - - uid: 6147 - components: - - type: Transform - pos: 14.5,-47.5 - parent: 12 - - uid: 6148 - components: - - type: Transform - pos: 14.5,-48.5 - parent: 12 - - uid: 6149 - components: - - type: Transform - pos: 14.5,-49.5 - parent: 12 - - uid: 6150 - components: - - type: Transform - pos: 14.5,-50.5 - parent: 12 - - uid: 6152 - components: - - type: Transform - pos: 14.5,-52.5 - parent: 12 - - uid: 6167 - components: - - type: Transform - pos: 26.5,-40.5 - parent: 12 - - uid: 6168 - components: - - type: Transform - pos: 27.5,-40.5 - parent: 12 - - uid: 6169 - components: - - type: Transform - pos: 28.5,-40.5 - parent: 12 - - uid: 6170 - components: - - type: Transform - pos: 29.5,-40.5 - parent: 12 - - uid: 6171 - components: - - type: Transform - pos: 29.5,-41.5 - parent: 12 - - uid: 6172 - components: - - type: Transform - pos: 29.5,-42.5 - parent: 12 - - uid: 6174 - components: - - type: Transform - pos: 29.5,-44.5 - parent: 12 - - uid: 6176 - components: - - type: Transform - pos: 29.5,-46.5 - parent: 12 - - uid: 6177 - components: - - type: Transform - pos: 29.5,-47.5 - parent: 12 - - uid: 6178 - components: - - type: Transform - pos: 29.5,-48.5 - parent: 12 - - uid: 6179 - components: - - type: Transform - pos: 29.5,-49.5 - parent: 12 - - uid: 6180 - components: - - type: Transform - pos: 29.5,-50.5 - parent: 12 - - uid: 6182 - components: - - type: Transform - pos: 29.5,-52.5 - parent: 12 - - uid: 6208 - components: - - type: Transform - pos: 7.5,75.5 - parent: 12 - - uid: 6246 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-44.5 - parent: 12 - - uid: 6302 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-70.5 - parent: 12 - - uid: 6309 - components: - - type: Transform - pos: 57.5,-8.5 - parent: 12 - - uid: 6336 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-44.5 - parent: 12 - - uid: 6339 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-45.5 - parent: 12 - - uid: 6340 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-45.5 - parent: 12 - - uid: 6341 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-45.5 - parent: 12 - - uid: 6342 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-45.5 - parent: 12 - - uid: 6682 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-13.5 - parent: 12 - - uid: 6706 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-40.5 - parent: 12 - - uid: 6733 - components: - - type: Transform - pos: 0.5,1.5 - parent: 12 - - uid: 6737 - components: - - type: Transform - pos: 28.5,-9.5 - parent: 12 - - uid: 6748 - components: - - type: Transform - pos: 28.5,-3.5 - parent: 12 - - uid: 6764 - components: - - type: Transform - pos: 28.5,-8.5 - parent: 12 - - uid: 6798 - components: - - type: Transform - pos: 30.5,-29.5 - parent: 12 - - uid: 6804 - components: - - type: Transform - pos: 28.5,-28.5 - parent: 12 - - uid: 6890 - components: - - type: Transform - pos: 34.5,-24.5 - parent: 12 - - uid: 6898 - components: - - type: Transform - pos: 28.5,-10.5 - parent: 12 - - uid: 6941 - components: - - type: Transform - pos: -60.5,30.5 - parent: 12 - - uid: 7129 - components: - - type: Transform - pos: -1.5,19.5 - parent: 12 - - uid: 7199 - components: - - type: Transform - pos: 9.5,-1.5 - parent: 12 - - uid: 7238 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-8.5 - parent: 12 - - uid: 7241 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-10.5 - parent: 12 - - uid: 7245 - components: - - type: Transform - pos: 13.5,0.5 - parent: 12 - - uid: 7247 - components: - - type: Transform - pos: 13.5,1.5 - parent: 12 - - uid: 7251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,2.5 - parent: 12 - - uid: 7262 - components: - - type: Transform - pos: 28.5,-1.5 - parent: 12 - - uid: 7356 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,10.5 - parent: 12 - - uid: 7379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-28.5 - parent: 12 - - uid: 7380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-26.5 - parent: 12 - - uid: 7392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-25.5 - parent: 12 - - uid: 7393 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-25.5 - parent: 12 - - uid: 7394 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-25.5 - parent: 12 - - uid: 7395 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-26.5 - parent: 12 - - uid: 7396 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-22.5 - parent: 12 - - uid: 7397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-21.5 - parent: 12 - - uid: 7398 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-22.5 - parent: 12 - - uid: 7399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-22.5 - parent: 12 - - uid: 7400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-23.5 - parent: 12 - - uid: 7401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-29.5 - parent: 12 - - uid: 7463 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-30.5 - parent: 12 - - uid: 7486 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-48.5 - parent: 12 - - uid: 7489 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-47.5 - parent: 12 - - uid: 7490 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-46.5 - parent: 12 - - uid: 7495 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-44.5 - parent: 12 - - uid: 7496 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-43.5 - parent: 12 - - uid: 7497 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-42.5 - parent: 12 - - uid: 7504 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-13.5 - parent: 12 - - uid: 7513 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-19.5 - parent: 12 - - uid: 7551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-12.5 - parent: 12 - - uid: 7552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-12.5 - parent: 12 - - uid: 7553 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-12.5 - parent: 12 - - uid: 7561 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-10.5 - parent: 12 - - uid: 7567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-16.5 - parent: 12 - - uid: 7572 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-11.5 - parent: 12 - - uid: 7610 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-41.5 - parent: 12 - - uid: 7611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-41.5 - parent: 12 - - uid: 7684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-39.5 - parent: 12 - - uid: 7685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-39.5 - parent: 12 - - uid: 7686 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-39.5 - parent: 12 - - uid: 7687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-39.5 - parent: 12 - - uid: 7688 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-39.5 - parent: 12 - - uid: 7689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-39.5 - parent: 12 - - uid: 7690 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-38.5 - parent: 12 - - uid: 7691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-37.5 - parent: 12 - - uid: 7692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-32.5 - parent: 12 - - uid: 7693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-31.5 - parent: 12 - - uid: 7694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-28.5 - parent: 12 - - uid: 7695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-27.5 - parent: 12 - - uid: 7696 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-26.5 - parent: 12 - - uid: 7698 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-26.5 - parent: 12 - - uid: 7699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-26.5 - parent: 12 - - uid: 7700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-27.5 - parent: 12 - - uid: 7701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-28.5 - parent: 12 - - uid: 7702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-31.5 - parent: 12 - - uid: 7703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-32.5 - parent: 12 - - uid: 7710 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-26.5 - parent: 12 - - uid: 7718 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-11.5 - parent: 12 - - uid: 7719 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-11.5 - parent: 12 - - uid: 7731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-21.5 - parent: 12 - - uid: 7735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-20.5 - parent: 12 - - uid: 7773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-14.5 - parent: 12 - - uid: 7826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,1.5 - parent: 12 - - uid: 7832 - components: - - type: Transform - pos: 13.5,4.5 - parent: 12 - - uid: 8028 - components: - - type: Transform - pos: 62.5,-28.5 - parent: 12 - - uid: 8029 - components: - - type: Transform - pos: 62.5,-29.5 - parent: 12 - - uid: 8030 - components: - - type: Transform - pos: 62.5,-30.5 - parent: 12 - - uid: 8041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-49.5 - parent: 12 - - uid: 8240 - components: - - type: Transform - pos: 33.5,-24.5 - parent: 12 - - uid: 8341 - components: - - type: Transform - pos: 30.5,-24.5 - parent: 12 - - uid: 8431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-9.5 - parent: 12 - - uid: 8433 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-9.5 - parent: 12 - - uid: 8445 - components: - - type: Transform - pos: -63.5,-23.5 - parent: 12 - - uid: 8479 - components: - - type: Transform - pos: 55.5,-24.5 - parent: 12 - - uid: 8516 - components: - - type: Transform - pos: 7.5,72.5 - parent: 12 - - uid: 8622 - components: - - type: Transform - pos: -46.5,0.5 - parent: 12 - - uid: 8713 - components: - - type: Transform - pos: 49.5,59.5 - parent: 12 - - uid: 9057 - components: - - type: Transform - pos: 17.5,17.5 - parent: 12 - - uid: 9068 - components: - - type: Transform - pos: -58.5,36.5 - parent: 12 - - uid: 9077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-13.5 - parent: 12 - - uid: 9200 - components: - - type: Transform - 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 - pos: 10.5,0.5 - parent: 12 - - uid: 9403 - components: - - type: Transform - pos: 22.5,8.5 - parent: 12 - - uid: 9404 - components: - - type: Transform - pos: 21.5,8.5 - parent: 12 - - uid: 9428 - components: - - type: Transform - pos: -1.5,1.5 - parent: 12 - - uid: 9442 - components: - - type: Transform - pos: 59.5,-24.5 - parent: 12 - - uid: 9504 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,61.5 - parent: 12 - - uid: 9526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,10.5 - parent: 12 - - uid: 9570 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-32.5 - parent: 12 - - uid: 9593 - components: - - type: Transform - pos: 41.5,-17.5 - parent: 12 - - uid: 9619 - components: - - type: Transform - pos: -0.5,-40.5 - parent: 12 - - uid: 9709 - components: - - 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 - pos: 5.5,26.5 - parent: 12 - - uid: 9956 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,10.5 - parent: 12 - - uid: 9970 - components: - - type: Transform - pos: -46.5,3.5 - parent: 12 - - uid: 9971 - components: - - type: Transform - pos: 60.5,65.5 - parent: 12 - - uid: 10060 - components: - - type: Transform - pos: -63.5,-24.5 - parent: 12 - - uid: 10071 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,15.5 - parent: 12 - - uid: 10091 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,14.5 - parent: 12 - - uid: 10092 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,14.5 - parent: 12 - - uid: 10093 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,15.5 - parent: 12 - - uid: 10094 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,4.5 - parent: 12 - - uid: 10095 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,4.5 - parent: 12 - - uid: 10096 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,0.5 - parent: 12 - - uid: 10097 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,0.5 - parent: 12 - - uid: 10098 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,0.5 - parent: 12 - - uid: 10099 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,0.5 - parent: 12 - - uid: 10100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,0.5 - parent: 12 - - uid: 10101 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,0.5 - parent: 12 - - uid: 10102 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,0.5 - parent: 12 - - uid: 10103 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,0.5 - parent: 12 - - uid: 10104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,0.5 - parent: 12 - - uid: 10107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,3.5 - parent: 12 - - uid: 10108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,3.5 - parent: 12 - - uid: 10109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,5.5 - parent: 12 - - uid: 10110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,4.5 - parent: 12 - - uid: 10111 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,13.5 - parent: 12 - - uid: 10112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,3.5 - parent: 12 - - uid: 10113 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,3.5 - parent: 12 - - uid: 10114 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,3.5 - parent: 12 - - uid: 10115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,3.5 - parent: 12 - - uid: 10116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,4.5 - parent: 12 - - uid: 10117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,3.5 - parent: 12 - - uid: 10118 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,3.5 - parent: 12 - - uid: 10123 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,15.5 - parent: 12 - - uid: 10124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,14.5 - parent: 12 - - uid: 10125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,14.5 - parent: 12 - - uid: 10126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,13.5 - parent: 12 - - uid: 10127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,15.5 - parent: 12 - - uid: 10128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,15.5 - parent: 12 - - uid: 10129 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,15.5 - parent: 12 - - uid: 10131 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,15.5 - parent: 12 - - uid: 10132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,15.5 - parent: 12 - - uid: 10133 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,15.5 - parent: 12 - - uid: 10138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,5.5 - parent: 12 - - uid: 10145 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,3.5 - parent: 12 - - uid: 10146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,4.5 - parent: 12 - - uid: 10147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,5.5 - parent: 12 - - uid: 10148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,3.5 - parent: 12 - - uid: 10149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,4.5 - parent: 12 - - uid: 10150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,5.5 - parent: 12 - - uid: 10151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,13.5 - parent: 12 - - uid: 10152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,14.5 - parent: 12 - - uid: 10153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,15.5 - parent: 12 - - uid: 10154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,15.5 - parent: 12 - - uid: 10155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,14.5 - parent: 12 - - uid: 10156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,13.5 - parent: 12 - - uid: 10187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,16.5 - parent: 12 - - uid: 10223 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,17.5 - parent: 12 - - uid: 10224 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,18.5 - parent: 12 - - uid: 10225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,18.5 - parent: 12 - - uid: 10226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,18.5 - parent: 12 - - uid: 10227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,18.5 - parent: 12 - - uid: 10228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,18.5 - parent: 12 - - uid: 10229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,18.5 - parent: 12 - - uid: 10230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,18.5 - parent: 12 - - uid: 10231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,18.5 - parent: 12 - - uid: 10232 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,18.5 - parent: 12 - - uid: 10233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,18.5 - parent: 12 - - uid: 10234 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,19.5 - parent: 12 - - uid: 10317 - components: - - type: Transform - pos: 41.5,3.5 - parent: 12 - - uid: 10327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-27.5 - parent: 12 - - uid: 10339 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-7.5 - parent: 12 - - uid: 10347 - components: - - type: Transform - pos: 57.5,1.5 - parent: 12 - - uid: 10368 - components: - - 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 - rot: 1.5707963267948966 rad - pos: -13.5,8.5 - parent: 12 - - uid: 10570 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,9.5 - parent: 12 - - uid: 10571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,10.5 - parent: 12 - - uid: 10576 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,14.5 - parent: 12 - - uid: 10577 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,14.5 - parent: 12 - - uid: 10588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,13.5 - parent: 12 - - uid: 10610 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,12.5 - parent: 12 - - uid: 10657 - components: - - type: Transform - pos: 11.5,0.5 - parent: 12 - - uid: 10675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,22.5 - parent: 12 - - uid: 10676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,21.5 - parent: 12 - - uid: 10677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,20.5 - parent: 12 - - uid: 10678 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,20.5 - parent: 12 - - uid: 10679 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,20.5 - parent: 12 - - uid: 10680 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,20.5 - parent: 12 - - uid: 10681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,20.5 - parent: 12 - - uid: 10705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,8.5 - parent: 12 - - uid: 10724 - components: - - type: Transform - pos: -14.5,-70.5 - parent: 12 - - uid: 10725 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,20.5 - parent: 12 - - uid: 10728 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,19.5 - parent: 12 - - uid: 10739 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,21.5 - parent: 12 - - uid: 10787 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: -5.5,-62.5 - parent: 12 - - uid: 10914 - components: - - type: Transform - pos: 12.5,11.5 - parent: 12 - - uid: 10916 - components: - - type: Transform - pos: 13.5,11.5 - parent: 12 - - uid: 10934 - components: - - type: Transform - pos: 17.5,15.5 - parent: 12 - - uid: 10966 - components: - - type: Transform - pos: 17.5,18.5 - parent: 12 - - uid: 10970 - components: - - type: Transform - pos: -49.5,51.5 - parent: 12 - - uid: 10979 - components: - - type: Transform - pos: 10.5,11.5 - parent: 12 - - uid: 11035 - components: - - type: Transform - pos: 8.5,11.5 - parent: 12 - - uid: 11133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,18.5 - parent: 12 - - uid: 11134 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,19.5 - parent: 12 - - uid: 11148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,25.5 - parent: 12 - - uid: 11149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,25.5 - parent: 12 - - uid: 11150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,24.5 - parent: 12 - - uid: 11151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,23.5 - parent: 12 - - uid: 11152 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,22.5 - parent: 12 - - uid: 11153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,21.5 - parent: 12 - - uid: 11154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,20.5 - parent: 12 - - uid: 11155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,19.5 - parent: 12 - - uid: 11182 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,27.5 - parent: 12 - - uid: 11183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,30.5 - parent: 12 - - uid: 11207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,19.5 - parent: 12 - - uid: 11242 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,25.5 - parent: 12 - - uid: 11243 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,26.5 - parent: 12 - - uid: 11245 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,25.5 - parent: 12 - - uid: 11247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,25.5 - parent: 12 - - uid: 11248 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,25.5 - parent: 12 - - uid: 11249 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,26.5 - parent: 12 - - uid: 11311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-62.5 - parent: 12 - - uid: 11338 - components: - - type: Transform - pos: 9.5,11.5 - parent: 12 - - uid: 11343 - components: - - type: Transform - pos: 15.5,19.5 - parent: 12 - - uid: 11360 - components: - - type: Transform - 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 - pos: 53.5,19.5 - parent: 12 - - uid: 11448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,11.5 - parent: 12 - - uid: 11458 - components: - - type: Transform - pos: 16.5,19.5 - parent: 12 - - uid: 11459 - components: - - type: Transform - pos: 51.5,11.5 - parent: 12 - - uid: 11465 - components: - - type: Transform - pos: 48.5,10.5 - parent: 12 - - uid: 11486 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-14.5 - parent: 12 - - uid: 11501 - components: - - type: Transform - pos: 37.5,15.5 - parent: 12 - - uid: 11513 - components: - - type: Transform - pos: 43.5,15.5 - parent: 12 - - uid: 11514 - components: - - 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 - pos: 49.5,15.5 - parent: 12 - - uid: 11530 - components: - - type: Transform - pos: 44.5,13.5 - parent: 12 - - uid: 11536 - components: - - type: Transform - pos: 37.5,20.5 - parent: 12 - - uid: 11537 - components: - - type: Transform - pos: 38.5,20.5 - parent: 12 - - uid: 11564 - components: - - type: Transform - pos: 48.5,17.5 - parent: 12 - - uid: 11566 - components: - - type: Transform - pos: 43.5,23.5 - parent: 12 - - uid: 11567 - components: - - type: Transform - pos: 45.5,23.5 - parent: 12 - - uid: 11568 - components: - - type: Transform - pos: 47.5,23.5 - parent: 12 - - uid: 11575 - components: - - type: Transform - pos: 53.5,20.5 - parent: 12 - - uid: 11583 - components: - - type: Transform - pos: 55.5,24.5 - parent: 12 - - uid: 11587 - components: - - type: Transform - pos: 56.5,26.5 - parent: 12 - - uid: 11588 - components: - - type: Transform - 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 - pos: 57.5,26.5 - parent: 12 - - uid: 11617 - components: - - type: Transform - pos: 57.5,27.5 - parent: 12 - - uid: 11618 - components: - - type: Transform - pos: 57.5,28.5 - parent: 12 - - uid: 11619 - components: - - type: Transform - pos: 57.5,29.5 - parent: 12 - - uid: 11620 - components: - - type: Transform - pos: 57.5,31.5 - parent: 12 - - uid: 11621 - components: - - type: Transform - pos: 57.5,32.5 - parent: 12 - - uid: 11622 - components: - - type: Transform - pos: 57.5,33.5 - parent: 12 - - uid: 11623 - components: - - type: Transform - pos: 57.5,30.5 - parent: 12 - - uid: 11696 - components: - - type: Transform - pos: 54.5,16.5 - parent: 12 - - uid: 11710 - components: - - type: Transform - pos: 27.5,31.5 - parent: 12 - - uid: 11711 - components: - - type: Transform - pos: 27.5,32.5 - parent: 12 - - uid: 11712 - components: - - type: Transform - pos: 33.5,31.5 - parent: 12 - - uid: 11713 - components: - - type: Transform - pos: 33.5,32.5 - parent: 12 - - uid: 11714 - components: - - type: Transform - pos: 28.5,34.5 - parent: 12 - - uid: 11715 - components: - - type: Transform - pos: 29.5,34.5 - parent: 12 - - uid: 11723 - components: - - type: Transform - pos: 25.5,30.5 - parent: 12 - - uid: 11724 - components: - - type: Transform - pos: 25.5,31.5 - parent: 12 - - uid: 11725 - components: - - type: Transform - pos: 24.5,31.5 - parent: 12 - - uid: 11726 - components: - - type: Transform - pos: 24.5,32.5 - parent: 12 - - uid: 11727 - components: - - type: Transform - pos: 23.5,32.5 - parent: 12 - - uid: 11728 - components: - - type: Transform - pos: 22.5,33.5 - parent: 12 - - uid: 11729 - components: - - type: Transform - pos: 22.5,34.5 - parent: 12 - - uid: 11730 - components: - - type: Transform - pos: 22.5,35.5 - parent: 12 - - uid: 11731 - components: - - type: Transform - pos: 26.5,34.5 - parent: 12 - - uid: 11732 - components: - - type: Transform - pos: 25.5,35.5 - parent: 12 - - uid: 11733 - components: - - type: Transform - pos: 25.5,36.5 - parent: 12 - - uid: 11734 - components: - - type: Transform - pos: 25.5,37.5 - parent: 12 - - uid: 11735 - components: - - type: Transform - pos: 24.5,38.5 - parent: 12 - - uid: 11736 - components: - - type: Transform - pos: 23.5,38.5 - parent: 12 - - uid: 11737 - components: - - type: Transform - pos: 22.5,37.5 - parent: 12 - - uid: 11738 - components: - - type: Transform - pos: 22.5,36.5 - parent: 12 - - uid: 11739 - components: - - type: Transform - pos: 20.5,37.5 - parent: 12 - - uid: 11740 - components: - - type: Transform - pos: 20.5,36.5 - parent: 12 - - uid: 11741 - components: - - type: Transform - pos: 20.5,35.5 - parent: 12 - - uid: 11742 - components: - - type: Transform - pos: 20.5,34.5 - parent: 12 - - uid: 11743 - components: - - type: Transform - pos: 20.5,33.5 - parent: 12 - - uid: 11744 - components: - - type: Transform - pos: 19.5,32.5 - parent: 12 - - uid: 11745 - components: - - type: Transform - pos: 18.5,32.5 - parent: 12 - - uid: 11746 - components: - - type: Transform - pos: 18.5,31.5 - parent: 12 - - uid: 11747 - components: - - type: Transform - pos: 17.5,31.5 - parent: 12 - - uid: 11748 - components: - - 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 - pos: 28.5,40.5 - parent: 12 - - uid: 11807 - components: - - type: Transform - pos: 19.5,38.5 - parent: 12 - - uid: 11808 - components: - - type: Transform - pos: 18.5,38.5 - parent: 12 - - uid: 11822 - components: - - type: Transform - pos: 10.5,36.5 - parent: 12 - - uid: 11823 - components: - - type: Transform - pos: 10.5,37.5 - parent: 12 - - uid: 11849 - components: - - type: Transform - pos: -0.5,38.5 - parent: 12 - - uid: 11850 - components: - - type: Transform - pos: -0.5,37.5 - parent: 12 - - uid: 11861 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-27.5 - parent: 12 - - uid: 11891 - components: - - type: Transform - pos: 40.5,40.5 - parent: 12 - - uid: 11892 - components: - - type: Transform - pos: 41.5,40.5 - parent: 12 - - uid: 11900 - components: - - type: Transform - pos: 37.5,35.5 - parent: 12 - - uid: 11901 - components: - - type: Transform - pos: 38.5,35.5 - parent: 12 - - uid: 11902 - components: - - type: Transform - pos: 39.5,35.5 - parent: 12 - - uid: 11903 - components: - - type: Transform - pos: 40.5,35.5 - parent: 12 - - uid: 11904 - components: - - type: Transform - pos: 41.5,34.5 - parent: 12 - - uid: 11905 - components: - - type: Transform - pos: 41.5,35.5 - parent: 12 - - uid: 11908 - components: - - type: Transform - pos: 58.5,34.5 - parent: 12 - - uid: 11909 - components: - - type: Transform - pos: 59.5,34.5 - parent: 12 - - uid: 11910 - components: - - type: Transform - pos: 59.5,35.5 - parent: 12 - - uid: 11911 - components: - - type: Transform - pos: 59.5,36.5 - parent: 12 - - uid: 11912 - components: - - type: Transform - pos: 59.5,38.5 - parent: 12 - - uid: 11933 - components: - - 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 - pos: 27.5,14.5 - parent: 12 - - uid: 12316 - components: - - type: Transform - pos: 29.5,14.5 - parent: 12 - - uid: 12358 - components: - - type: Transform - pos: 8.5,19.5 - parent: 12 - - uid: 12429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,41.5 - parent: 12 - - uid: 12430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,41.5 - parent: 12 - - uid: 12431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,41.5 - parent: 12 - - uid: 12432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,41.5 - parent: 12 - - uid: 12433 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,42.5 - parent: 12 - - uid: 12434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,42.5 - parent: 12 - - uid: 12435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,42.5 - parent: 12 - - uid: 12436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,41.5 - parent: 12 - - uid: 12437 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,41.5 - parent: 12 - - uid: 12438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,41.5 - parent: 12 - - uid: 12439 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,41.5 - parent: 12 - - uid: 12440 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,41.5 - parent: 12 - - uid: 12453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,41.5 - parent: 12 - - uid: 12456 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,41.5 - parent: 12 - - uid: 12457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,42.5 - parent: 12 - - uid: 12458 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,42.5 - parent: 12 - - uid: 12459 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,42.5 - parent: 12 - - uid: 12460 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,43.5 - parent: 12 - - uid: 12461 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,44.5 - parent: 12 - - uid: 12462 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,44.5 - parent: 12 - - uid: 12463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,45.5 - parent: 12 - - uid: 12464 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,47.5 - parent: 12 - - uid: 12465 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,48.5 - parent: 12 - - uid: 12466 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,49.5 - parent: 12 - - uid: 12467 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,50.5 - parent: 12 - - uid: 12482 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,52.5 - parent: 12 - - uid: 12484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,53.5 - parent: 12 - - uid: 12485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,53.5 - parent: 12 - - uid: 12486 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,54.5 - parent: 12 - - uid: 12487 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,55.5 - parent: 12 - - uid: 12488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,55.5 - parent: 12 - - uid: 12489 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,55.5 - parent: 12 - - uid: 12490 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,56.5 - parent: 12 - - uid: 12497 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,56.5 - parent: 12 - - uid: 12498 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,56.5 - parent: 12 - - uid: 12499 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,56.5 - parent: 12 - - uid: 12500 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,56.5 - parent: 12 - - uid: 12508 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,56.5 - parent: 12 - - uid: 12509 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,55.5 - parent: 12 - - uid: 12510 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,55.5 - parent: 12 - - uid: 12511 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,55.5 - parent: 12 - - uid: 12512 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,55.5 - parent: 12 - - uid: 12513 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,56.5 - parent: 12 - - uid: 12514 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,56.5 - parent: 12 - - uid: 12522 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,52.5 - parent: 12 - - uid: 12532 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,49.5 - parent: 12 - - uid: 12533 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,48.5 - parent: 12 - - uid: 12534 - components: - - type: Transform - pos: 64.5,57.5 - parent: 12 - - uid: 12536 - components: - - type: Transform - pos: 71.5,51.5 - parent: 12 - - uid: 12537 - components: - - type: Transform - pos: 71.5,46.5 - parent: 12 - - uid: 12539 - components: - - type: Transform - pos: 67.5,51.5 - parent: 12 - - uid: 12540 - components: - - type: Transform - pos: 67.5,46.5 - parent: 12 - - uid: 12547 - components: - - type: Transform - pos: 60.5,47.5 - parent: 12 - - uid: 12552 - components: - - type: Transform - pos: 62.5,46.5 - parent: 12 - - uid: 12553 - components: - - type: Transform - pos: 64.5,58.5 - parent: 12 - - uid: 12556 - components: - - type: Transform - pos: 64.5,59.5 - parent: 12 - - uid: 12558 - components: - - type: Transform - pos: 62.5,51.5 - parent: 12 - - uid: 12559 - components: - - type: Transform - pos: 60.5,50.5 - parent: 12 - - uid: 12589 - components: - - type: Transform - pos: 53.5,43.5 - parent: 12 - - uid: 12590 - components: - - type: Transform - pos: 52.5,43.5 - parent: 12 - - uid: 12591 - components: - - type: Transform - pos: 51.5,43.5 - parent: 12 - - uid: 12592 - components: - - type: Transform - pos: 50.5,43.5 - parent: 12 - - uid: 12593 - components: - - type: Transform - pos: 49.5,43.5 - parent: 12 - - uid: 12594 - components: - - 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 - pos: 17.5,16.5 - parent: 12 - - uid: 12681 - components: - - type: Transform - pos: 17.5,14.5 - parent: 12 - - uid: 12699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-2.5 - parent: 12 - - uid: 13028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,28.5 - parent: 12 - - uid: 13166 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,61.5 - parent: 12 - - uid: 13210 - components: - - type: Transform - pos: -54.5,75.5 - parent: 12 - - uid: 13322 - components: - - type: Transform - pos: -57.5,-56.5 - parent: 12 - - uid: 13991 - components: - - type: Transform - pos: 49.5,49.5 - parent: 12 - - uid: 13992 - components: - - type: Transform - pos: 52.5,49.5 - parent: 12 - - uid: 13993 - components: - - type: Transform - pos: 54.5,46.5 - parent: 12 - - uid: 13998 - components: - - type: Transform - pos: 56.5,51.5 - parent: 12 - - uid: 14011 - components: - - type: Transform - pos: 53.5,58.5 - parent: 12 - - uid: 14012 - components: - - type: Transform - pos: 53.5,56.5 - parent: 12 - - uid: 14013 - components: - - type: Transform - pos: 53.5,57.5 - parent: 12 - - uid: 14023 - components: - - type: Transform - pos: 62.5,59.5 - parent: 12 - - uid: 14024 - components: - - type: Transform - pos: 63.5,59.5 - parent: 12 - - uid: 14047 - components: - - type: Transform - pos: 46.5,54.5 - parent: 12 - - uid: 14048 - components: - - type: Transform - pos: 47.5,54.5 - parent: 12 - - uid: 14105 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,44.5 - parent: 12 - - uid: 14106 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,44.5 - parent: 12 - - uid: 14107 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,44.5 - parent: 12 - - uid: 14112 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,44.5 - parent: 12 - - uid: 14113 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,48.5 - parent: 12 - - uid: 14141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,43.5 - parent: 12 - - uid: 14143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,53.5 - parent: 12 - - uid: 14144 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,44.5 - parent: 12 - - uid: 14176 - components: - - type: Transform - pos: 49.5,58.5 - parent: 12 - - uid: 14204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,65.5 - parent: 12 - - uid: 14205 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,65.5 - parent: 12 - - uid: 14206 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,65.5 - parent: 12 - - uid: 14219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,56.5 - parent: 12 - - uid: 14237 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,68.5 - parent: 12 - - uid: 14238 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,68.5 - parent: 12 - - uid: 14239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,68.5 - parent: 12 - - uid: 14240 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,68.5 - parent: 12 - - uid: 14241 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,67.5 - parent: 12 - - uid: 14250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-21.5 - parent: 12 - - uid: 14468 - components: - - type: Transform - pos: 33.5,56.5 - parent: 12 - - uid: 14469 - components: - - type: Transform - pos: 33.5,57.5 - parent: 12 - - uid: 14503 - components: - - type: Transform - pos: 24.5,58.5 - parent: 12 - - uid: 14504 - components: - - type: Transform - pos: 25.5,61.5 - parent: 12 - - uid: 14505 - components: - - type: Transform - pos: 26.5,61.5 - parent: 12 - - uid: 14506 - components: - - type: Transform - pos: 27.5,61.5 - parent: 12 - - uid: 14517 - components: - - type: Transform - pos: 20.5,56.5 - parent: 12 - - uid: 14520 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,55.5 - parent: 12 - - uid: 14522 - components: - - type: Transform - pos: 20.5,59.5 - parent: 12 - - uid: 14537 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,69.5 - parent: 12 - - uid: 14538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,69.5 - parent: 12 - - uid: 14575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,59.5 - parent: 12 - - uid: 14576 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,58.5 - parent: 12 - - uid: 14577 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,57.5 - parent: 12 - - uid: 14578 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,56.5 - parent: 12 - - uid: 14585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,55.5 - parent: 12 - - uid: 14593 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,50.5 - parent: 12 - - uid: 14594 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,49.5 - parent: 12 - - uid: 14595 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,48.5 - parent: 12 - - uid: 14604 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,43.5 - parent: 12 - - uid: 14605 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,46.5 - parent: 12 - - uid: 14606 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,46.5 - parent: 12 - - uid: 14607 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,46.5 - parent: 12 - - uid: 14608 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,46.5 - parent: 12 - - uid: 14609 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,46.5 - parent: 12 - - uid: 14627 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,63.5 - parent: 12 - - uid: 14628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,63.5 - parent: 12 - - uid: 14629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,63.5 - parent: 12 - - uid: 14642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,69.5 - parent: 12 - - uid: 14643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,69.5 - parent: 12 - - uid: 14648 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,71.5 - parent: 12 - - uid: 14649 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,72.5 - parent: 12 - - uid: 14650 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,73.5 - parent: 12 - - uid: 14651 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,74.5 - parent: 12 - - uid: 14652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,75.5 - parent: 12 - - uid: 14656 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,80.5 - parent: 12 - - uid: 14658 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,74.5 - parent: 12 - - uid: 14659 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,73.5 - parent: 12 - - uid: 14660 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,72.5 - parent: 12 - - uid: 14661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,71.5 - parent: 12 - - uid: 14662 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,71.5 - parent: 12 - - uid: 14663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,70.5 - parent: 12 - - uid: 14664 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,70.5 - parent: 12 - - uid: 14665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,69.5 - parent: 12 - - uid: 14666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,69.5 - parent: 12 - - uid: 14667 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,69.5 - parent: 12 - - uid: 14668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,69.5 - parent: 12 - - uid: 14669 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,70.5 - parent: 12 - - uid: 14670 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,70.5 - parent: 12 - - uid: 14671 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,71.5 - parent: 12 - - uid: 14672 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,71.5 - parent: 12 - - uid: 14673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,72.5 - parent: 12 - - uid: 14674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,73.5 - parent: 12 - - uid: 14675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,74.5 - parent: 12 - - uid: 14677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,79.5 - parent: 12 - - uid: 14681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,75.5 - parent: 12 - - uid: 14682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,74.5 - parent: 12 - - uid: 14683 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,73.5 - parent: 12 - - uid: 14684 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,72.5 - parent: 12 - - uid: 14685 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,71.5 - parent: 12 - - uid: 14694 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,81.5 - parent: 12 - - uid: 14717 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,78.5 - parent: 12 - - uid: 14730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,80.5 - parent: 12 - - uid: 14731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,81.5 - parent: 12 - - uid: 14732 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,79.5 - parent: 12 - - uid: 14733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,78.5 - parent: 12 - - uid: 14751 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,84.5 - parent: 12 - - uid: 14753 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,85.5 - parent: 12 - - uid: 14754 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,85.5 - parent: 12 - - uid: 14759 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,85.5 - parent: 12 - - uid: 14760 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,85.5 - parent: 12 - - uid: 14762 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,84.5 - parent: 12 - - uid: 14794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,77.5 - parent: 12 - - uid: 14795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,78.5 - parent: 12 - - uid: 14796 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,79.5 - parent: 12 - - uid: 14797 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,80.5 - parent: 12 - - uid: 14798 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,81.5 - parent: 12 - - uid: 14799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,82.5 - parent: 12 - - uid: 14802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,82.5 - parent: 12 - - uid: 14803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,81.5 - parent: 12 - - uid: 14804 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,80.5 - parent: 12 - - uid: 14805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,79.5 - parent: 12 - - uid: 14806 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,78.5 - parent: 12 - - uid: 14807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,77.5 - parent: 12 - - uid: 15441 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,46.5 - parent: 12 - - uid: 15442 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,47.5 - parent: 12 - - uid: 15460 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,32.5 - parent: 12 - - uid: 15461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,31.5 - parent: 12 - - uid: 15462 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,31.5 - parent: 12 - - uid: 15463 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,31.5 - parent: 12 - - uid: 15464 - components: - - type: Transform - pos: -26.5,30.5 - parent: 12 - - uid: 15465 - components: - - type: Transform - pos: -31.5,33.5 - parent: 12 - - uid: 15469 - components: - - type: Transform - pos: -28.5,31.5 - parent: 12 - - uid: 15480 - components: - - type: Transform - pos: -27.5,30.5 - parent: 12 - - uid: 15483 - components: - - type: Transform - pos: -31.5,32.5 - parent: 12 - - uid: 15484 - components: - - type: Transform - pos: -28.5,30.5 - parent: 12 - - uid: 15500 - components: - - type: Transform - pos: -28.5,32.5 - parent: 12 - - uid: 15501 - components: - - type: Transform - pos: -29.5,32.5 - parent: 12 - - uid: 15506 - components: - - type: Transform - pos: -32.5,31.5 - parent: 12 - - uid: 15507 - components: - - type: Transform - pos: -31.5,31.5 - parent: 12 - - uid: 15526 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,37.5 - parent: 12 - - uid: 15527 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,33.5 - parent: 12 - - uid: 15528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,33.5 - parent: 12 - - uid: 15529 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,33.5 - parent: 12 - - uid: 15530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,35.5 - parent: 12 - - uid: 15547 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,34.5 - parent: 12 - - uid: 15553 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,30.5 - parent: 12 - - uid: 15558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,29.5 - parent: 12 - - uid: 15559 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,29.5 - parent: 12 - - uid: 15560 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,29.5 - parent: 12 - - uid: 15586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,37.5 - parent: 12 - - uid: 15587 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,37.5 - parent: 12 - - uid: 15590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,32.5 - parent: 12 - - uid: 15591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,33.5 - parent: 12 - - uid: 15592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,34.5 - parent: 12 - - uid: 15593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,35.5 - parent: 12 - - uid: 15594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,36.5 - parent: 12 - - uid: 15595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,37.5 - parent: 12 - - uid: 15596 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,38.5 - parent: 12 - - uid: 15597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,39.5 - parent: 12 - - uid: 15598 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,40.5 - parent: 12 - - uid: 15600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,41.5 - parent: 12 - - uid: 15602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,42.5 - parent: 12 - - uid: 15603 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,42.5 - parent: 12 - - uid: 15604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,42.5 - parent: 12 - - uid: 15605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,42.5 - parent: 12 - - uid: 15606 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,42.5 - parent: 12 - - uid: 15607 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,42.5 - parent: 12 - - uid: 15608 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,42.5 - parent: 12 - - uid: 15609 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,42.5 - parent: 12 - - uid: 15610 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,40.5 - parent: 12 - - uid: 15611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,41.5 - parent: 12 - - uid: 15662 - components: - - type: Transform - pos: -30.5,32.5 - parent: 12 - - uid: 15663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,25.5 - parent: 12 - - uid: 15679 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,34.5 - parent: 12 - - uid: 15690 - components: - - type: Transform - pos: -21.5,26.5 - parent: 12 - - uid: 15691 - components: - - type: Transform - pos: -21.5,29.5 - parent: 12 - - uid: 15775 - components: - - type: Transform - pos: 1.5,42.5 - parent: 12 - - uid: 15776 - components: - - type: Transform - pos: 2.5,42.5 - parent: 12 - - uid: 15777 - components: - - type: Transform - pos: 4.5,42.5 - parent: 12 - - uid: 15778 - components: - - type: Transform - pos: 5.5,42.5 - parent: 12 - - uid: 15864 - components: - - type: Transform - pos: -47.5,14.5 - parent: 12 - - uid: 15892 - components: - - type: Transform - pos: 1.5,46.5 - parent: 12 - - uid: 15899 - components: - - type: Transform - pos: -60.5,24.5 - parent: 12 - - uid: 15900 - components: - - type: Transform - pos: -60.5,25.5 - parent: 12 - - uid: 15910 - components: - - type: Transform - pos: -60.5,26.5 - parent: 12 - - uid: 15911 - components: - - type: Transform - pos: -60.5,27.5 - parent: 12 - - uid: 15912 - components: - - type: Transform - pos: -60.5,28.5 - parent: 12 - - uid: 15913 - components: - - type: Transform - pos: -60.5,29.5 - parent: 12 - - uid: 15914 - components: - - type: Transform - pos: -59.5,22.5 - parent: 12 - - uid: 15915 - components: - - type: Transform - pos: -59.5,19.5 - parent: 12 - - uid: 15916 - components: - - type: Transform - pos: -49.5,13.5 - parent: 12 - - uid: 16353 - components: - - type: Transform - pos: 5.5,25.5 - parent: 12 - - uid: 16413 - components: - - type: Transform - pos: -59.5,20.5 - parent: 12 - - uid: 16414 - components: - - type: Transform - pos: -58.5,19.5 - parent: 12 - - uid: 16416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-12.5 - parent: 12 - - uid: 16422 - components: - - type: Transform - pos: -59.5,21.5 - parent: 12 - - uid: 16423 - components: - - type: Transform - pos: -59.5,23.5 - parent: 12 - - uid: 16523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,79.5 - parent: 12 - - uid: 16524 - components: - - type: Transform - pos: -13.5,76.5 - parent: 12 - - uid: 16526 - components: - - type: Transform - pos: -32.5,-15.5 - parent: 12 - - uid: 16531 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: 56.5,5.5 - parent: 12 - - uid: 16801 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,46.5 - parent: 12 - - uid: 16805 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,46.5 - parent: 12 - - uid: 16924 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,54.5 - parent: 12 - - uid: 16927 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,56.5 - parent: 12 - - uid: 16928 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,55.5 - parent: 12 - - uid: 17107 - components: - - type: Transform - pos: 4.5,46.5 - parent: 12 - - uid: 17275 - components: - - type: Transform - pos: -50.5,27.5 - parent: 12 - - uid: 17276 - components: - - type: Transform - pos: -50.5,30.5 - parent: 12 - - uid: 17290 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,16.5 - parent: 12 - - uid: 17291 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,15.5 - parent: 12 - - uid: 17292 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,15.5 - parent: 12 - - uid: 17293 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,15.5 - parent: 12 - - uid: 17294 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,15.5 - parent: 12 - - uid: 17295 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,15.5 - parent: 12 - - uid: 17296 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,16.5 - parent: 12 - - uid: 17297 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,19.5 - parent: 12 - - uid: 17298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,20.5 - parent: 12 - - uid: 17299 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,21.5 - parent: 12 - - uid: 17300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,22.5 - parent: 12 - - uid: 17301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,19.5 - parent: 12 - - uid: 17337 - components: - - type: Transform - pos: -57.5,23.5 - parent: 12 - - uid: 17338 - components: - - type: Transform - pos: -57.5,24.5 - parent: 12 - - uid: 17339 - components: - - type: Transform - pos: -57.5,25.5 - parent: 12 - - uid: 17340 - components: - - type: Transform - pos: -58.5,26.5 - parent: 12 - - uid: 17341 - components: - - type: Transform - pos: -58.5,25.5 - parent: 12 - - uid: 17342 - components: - - type: Transform - pos: -58.5,27.5 - parent: 12 - - uid: 17343 - components: - - type: Transform - pos: -58.5,28.5 - parent: 12 - - uid: 17344 - components: - - type: Transform - pos: -58.5,29.5 - parent: 12 - - uid: 17345 - components: - - type: Transform - pos: -58.5,30.5 - parent: 12 - - uid: 17346 - components: - - type: Transform - pos: -58.5,31.5 - parent: 12 - - uid: 17347 - components: - - type: Transform - pos: -58.5,32.5 - parent: 12 - - uid: 17348 - components: - - type: Transform - pos: -57.5,32.5 - parent: 12 - - uid: 17349 - components: - - type: Transform - pos: -57.5,33.5 - parent: 12 - - uid: 17350 - components: - - type: Transform - pos: -57.5,34.5 - parent: 12 - - uid: 17351 - components: - - type: Transform - pos: -56.5,34.5 - parent: 12 - - uid: 17352 - components: - - type: Transform - pos: -55.5,34.5 - parent: 12 - - uid: 17353 - components: - - type: Transform - pos: -55.5,35.5 - parent: 12 - - uid: 17421 - components: - - type: Transform - 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 - pos: -59.5,34.5 - parent: 12 - - uid: 17545 - components: - - type: Transform - pos: -59.5,35.5 - parent: 12 - - uid: 17614 - components: - - type: Transform - pos: -55.5,-56.5 - parent: 12 - - uid: 17811 - components: - - type: Transform - pos: -54.5,76.5 - parent: 12 - - uid: 17832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,45.5 - parent: 12 - - uid: 17834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,47.5 - parent: 12 - - uid: 17936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,48.5 - parent: 12 - - uid: 17937 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,48.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 - rot: -1.5707963267948966 rad - pos: -40.5,38.5 - parent: 12 - - uid: 18648 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,40.5 - parent: 12 - - uid: 18649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,42.5 - parent: 12 - - uid: 18712 - components: - - type: Transform - pos: 15.5,-18.5 - parent: 12 - - uid: 18896 - components: - - type: Transform - pos: -20.5,3.5 - parent: 12 - - uid: 19035 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,43.5 - parent: 12 - - uid: 19036 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,43.5 - parent: 12 - - uid: 19049 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,46.5 - parent: 12 - - uid: 19050 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,46.5 - parent: 12 - - uid: 19054 - components: - - type: Transform - pos: -26.5,39.5 - parent: 12 - - uid: 19055 - components: - - type: Transform - pos: -26.5,41.5 - parent: 12 - - uid: 19056 - components: - - type: Transform - pos: -19.5,41.5 - parent: 12 - - uid: 19057 - components: - - type: Transform - pos: -20.5,42.5 - parent: 12 - - uid: 19058 - components: - - type: Transform - pos: -19.5,42.5 - parent: 12 - - uid: 19059 - components: - - type: Transform - pos: -18.5,42.5 - parent: 12 - - uid: 19060 - components: - - type: Transform - pos: -18.5,43.5 - parent: 12 - - uid: 19106 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,42.5 - parent: 12 - - uid: 19107 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,42.5 - parent: 12 - - uid: 19108 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,42.5 - parent: 12 - - uid: 19136 - components: - - type: Transform - pos: -32.5,50.5 - parent: 12 - - uid: 19158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,50.5 - parent: 12 - - uid: 19167 - components: - - type: Transform - pos: -42.5,54.5 - parent: 12 - - uid: 19191 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,57.5 - parent: 12 - - uid: 19198 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,54.5 - parent: 12 - - uid: 19200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,51.5 - parent: 12 - - uid: 19205 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,57.5 - parent: 12 - - uid: 19207 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,57.5 - parent: 12 - - uid: 19208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,56.5 - parent: 12 - - uid: 19209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,55.5 - parent: 12 - - uid: 19210 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,51.5 - parent: 12 - - uid: 19221 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,60.5 - parent: 12 - - uid: 19222 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,60.5 - parent: 12 - - uid: 19223 - components: - - type: Transform - 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 - pos: -32.5,51.5 - parent: 12 - - uid: 19325 - components: - - type: Transform - pos: -32.5,52.5 - parent: 12 - - uid: 19327 - components: - - type: Transform - pos: -32.5,54.5 - parent: 12 - - uid: 19328 - components: - - type: Transform - pos: -32.5,55.5 - parent: 12 - - uid: 19329 - components: - - type: Transform - pos: -32.5,56.5 - parent: 12 - - uid: 19330 - components: - - type: Transform - pos: -27.5,57.5 - parent: 12 - - uid: 19442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,46.5 - parent: 12 - - uid: 19443 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,46.5 - parent: 12 - - uid: 19444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,46.5 - parent: 12 - - uid: 19445 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,46.5 - parent: 12 - - uid: 19446 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,46.5 - parent: 12 - - uid: 19458 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,79.5 - parent: 12 - - uid: 19582 - components: - - type: Transform - pos: -20.5,53.5 - parent: 12 - - uid: 19583 - components: - - type: Transform - pos: -20.5,57.5 - parent: 12 - - uid: 19584 - components: - - type: Transform - pos: -18.5,51.5 - parent: 12 - - uid: 19585 - components: - - type: Transform - pos: -18.5,53.5 - parent: 12 - - uid: 19586 - components: - - type: Transform - pos: -18.5,57.5 - parent: 12 - - uid: 19594 - components: - - type: Transform - pos: -11.5,48.5 - parent: 12 - - uid: 19620 - components: - - type: Transform - pos: -57.5,36.5 - parent: 12 - - uid: 19633 - components: - - type: Transform - pos: -13.5,75.5 - parent: 12 - - uid: 19647 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,79.5 - parent: 12 - - uid: 19655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,78.5 - parent: 12 - - uid: 19669 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,79.5 - parent: 12 - - uid: 19679 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,78.5 - parent: 12 - - uid: 19721 - components: - - type: Transform - pos: -11.5,49.5 - parent: 12 - - uid: 19728 - components: - - type: Transform - pos: -13.5,62.5 - parent: 12 - - uid: 19735 - components: - - type: Transform - pos: -5.5,60.5 - parent: 12 - - uid: 19807 - components: - - type: Transform - pos: 5.5,71.5 - parent: 12 - - uid: 19839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,58.5 - parent: 12 - - uid: 20958 - components: - - type: Transform - pos: -54.5,38.5 - parent: 12 - - uid: 21074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-48.5 - parent: 12 - - uid: 21315 - components: - - type: Transform - pos: 34.5,-0.5 - parent: 12 - - uid: 21706 - components: - - type: Transform - pos: 52.5,-35.5 - parent: 12 - - uid: 21862 - components: - - type: Transform - pos: 37.5,-6.5 - parent: 12 - - uid: 21903 - components: - - type: Transform - pos: -0.5,1.5 - parent: 12 - - uid: 21904 - components: - - type: Transform - pos: -54.5,37.5 - parent: 12 - - uid: 21907 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 12 - - uid: 21987 - components: - - type: Transform - pos: -1.5,2.5 - parent: 12 - - uid: 21990 - components: - - type: Transform - pos: -3.5,-7.5 - parent: 12 - - uid: 21993 - components: - - type: Transform - pos: -5.5,-7.5 - parent: 12 - - uid: 21994 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 12 - - uid: 21995 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-7.5 - parent: 12 - - uid: 21996 - components: - - type: Transform - pos: -5.5,-5.5 - parent: 12 - - uid: 22011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-5.5 - parent: 12 - - uid: 22012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-7.5 - parent: 12 - - uid: 22013 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-5.5 - parent: 12 - - uid: 22016 - components: - - type: Transform - pos: -3.5,-5.5 - parent: 12 - - uid: 22051 - components: - - type: Transform - pos: -33.5,5.5 - parent: 12 - - uid: 22065 - components: - - type: Transform - pos: -33.5,13.5 - parent: 12 - - uid: 22193 - components: - - type: Transform - pos: -38.5,80.5 - parent: 12 - - uid: 22276 - components: - - type: Transform - pos: 38.5,15.5 - parent: 12 - - uid: 22294 - components: - - type: Transform - pos: 35.5,7.5 - parent: 12 - - uid: 22302 - components: - - type: Transform - pos: 45.5,15.5 - parent: 12 - - uid: 22303 - components: - - type: Transform - pos: 46.5,15.5 - parent: 12 - - uid: 22320 - components: - - type: Transform - pos: -40.5,78.5 - parent: 12 - - uid: 22686 - components: - - type: Transform - pos: 11.5,60.5 - parent: 12 - - uid: 22687 - components: - - type: Transform - pos: 12.5,60.5 - parent: 12 - - uid: 22850 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-11.5 - parent: 12 - - uid: 22852 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,59.5 - parent: 12 - - uid: 22854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-11.5 - parent: 12 - - uid: 22963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,13.5 - parent: 12 - - uid: 23091 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,5.5 - parent: 12 - - uid: 23165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,8.5 - parent: 12 - - uid: 23412 - components: - - type: Transform - pos: 9.5,0.5 - parent: 12 - - uid: 23604 - components: - - type: Transform - pos: 57.5,-7.5 - parent: 12 - - uid: 23716 - components: - - type: Transform - pos: -56.5,56.5 - parent: 12 - - uid: 23924 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-34.5 - parent: 12 - - uid: 24388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-9.5 - parent: 12 - - uid: 24649 - components: - - type: Transform - pos: -19.5,-62.5 - parent: 12 - - uid: 25089 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,12.5 - parent: 12 - - uid: 25102 - components: - - type: Transform - pos: 63.5,2.5 - parent: 12 - - uid: 25103 - components: - - type: Transform - pos: 60.5,-22.5 - parent: 12 - - uid: 25196 - components: - - type: Transform - pos: 33.5,-3.5 - parent: 12 - - uid: 25447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-40.5 - parent: 12 - - uid: 25449 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-40.5 - parent: 12 - - uid: 25450 - components: - - type: Transform - pos: -26.5,74.5 - parent: 12 - - uid: 25489 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,66.5 - parent: 12 - - uid: 25538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-11.5 - parent: 12 - - uid: 25559 - components: - - type: Transform - pos: 61.5,65.5 - parent: 12 - - uid: 25561 - components: - - type: Transform - pos: 61.5,63.5 - parent: 12 - - uid: 25562 - components: - - type: Transform - pos: 61.5,62.5 - parent: 12 - - uid: 25563 - components: - - type: Transform - pos: 61.5,61.5 - parent: 12 - - uid: 25587 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-26.5 - parent: 12 - - uid: 25588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-27.5 - parent: 12 - - uid: 25589 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-22.5 - parent: 12 - - uid: 25590 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-25.5 - parent: 12 - - uid: 25617 - components: - - type: Transform - pos: -30.5,13.5 - parent: 12 - - uid: 25619 - components: - - type: Transform - pos: -29.5,13.5 - parent: 12 - - uid: 25620 - components: - - type: Transform - pos: -31.5,13.5 - parent: 12 - - uid: 25621 - components: - - type: Transform - pos: -33.5,12.5 - parent: 12 - - uid: 25622 - components: - - type: Transform - pos: -32.5,13.5 - parent: 12 - - uid: 25623 - components: - - type: Transform - pos: -33.5,9.5 - parent: 12 - - uid: 25624 - components: - - type: Transform - pos: -33.5,6.5 - parent: 12 - - uid: 25625 - components: - - type: Transform - pos: -33.5,10.5 - parent: 12 - - uid: 25626 - components: - - type: Transform - pos: -33.5,7.5 - parent: 12 - - uid: 25627 - components: - - type: Transform - pos: -33.5,11.5 - parent: 12 - - uid: 25628 - components: - - type: Transform - pos: -33.5,8.5 - parent: 12 - - uid: 25629 - components: - - type: Transform - pos: -29.5,5.5 - parent: 12 - - uid: 25630 - components: - - type: Transform - pos: -30.5,5.5 - parent: 12 - - uid: 25631 - components: - - type: Transform - pos: -31.5,5.5 - parent: 12 - - uid: 25632 - components: - - type: Transform - pos: -32.5,5.5 - parent: 12 - - uid: 25977 - components: - - type: Transform - pos: -49.5,-19.5 - parent: 12 - - uid: 26068 - components: - - type: Transform - pos: -31.5,-60.5 - parent: 12 - - uid: 26103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,4.5 - parent: 12 - - uid: 26106 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-17.5 - parent: 12 - - uid: 26107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-17.5 - parent: 12 - - uid: 26108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-17.5 - parent: 12 - - uid: 26110 - components: - - type: Transform - pos: -41.5,56.5 - parent: 12 - - uid: 26112 - components: - - type: Transform - pos: -40.5,57.5 - parent: 12 - - uid: 26156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,22.5 - parent: 12 - - uid: 26157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,20.5 - parent: 12 - - uid: 26158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,20.5 - parent: 12 - - uid: 26171 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-22.5 - parent: 12 - - uid: 26172 - components: - - type: Transform - pos: 7.5,83.5 - parent: 12 - - uid: 26175 - components: - - type: Transform - pos: 7.5,84.5 - parent: 12 - - uid: 26176 - components: - - type: Transform - pos: 7.5,85.5 - parent: 12 - - uid: 26177 - components: - - type: Transform - pos: 7.5,86.5 - parent: 12 - - uid: 26178 - components: - - type: Transform - pos: 8.5,87.5 - parent: 12 - - uid: 26179 - components: - - type: Transform - pos: 8.5,88.5 - parent: 12 - - uid: 26180 - components: - - type: Transform - pos: 9.5,88.5 - parent: 12 - - uid: 26181 - components: - - type: Transform - pos: 9.5,89.5 - parent: 12 - - uid: 26182 - components: - - type: Transform - pos: 10.5,89.5 - parent: 12 - - uid: 26183 - components: - - type: Transform - pos: 11.5,89.5 - parent: 12 - - uid: 26185 - components: - - type: Transform - pos: 12.5,90.5 - parent: 12 - - uid: 26186 - components: - - type: Transform - pos: 12.5,91.5 - parent: 12 - - uid: 26187 - components: - - type: Transform - pos: 14.5,91.5 - parent: 12 - - uid: 26190 - components: - - type: Transform - pos: 15.5,91.5 - parent: 12 - - uid: 26191 - components: - - type: Transform - pos: 16.5,91.5 - parent: 12 - - uid: 26192 - components: - - type: Transform - pos: 17.5,91.5 - parent: 12 - - uid: 26193 - components: - - type: Transform - pos: 18.5,91.5 - parent: 12 - - uid: 26194 - components: - - type: Transform - pos: 19.5,91.5 - parent: 12 - - uid: 26195 - components: - - type: Transform - pos: 20.5,91.5 - parent: 12 - - uid: 26198 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-11.5 - parent: 12 - - uid: 26199 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-54.5 - parent: 12 - - uid: 26201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,22.5 - parent: 12 - - uid: 26229 - components: - - type: Transform - pos: 21.5,91.5 - parent: 12 - - uid: 26248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-47.5 - parent: 12 - - uid: 26252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-23.5 - parent: 12 - - uid: 26255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-47.5 - parent: 12 - - uid: 26260 - components: - - type: Transform - pos: 22.5,91.5 - parent: 12 - - uid: 26274 - components: - - type: Transform - pos: 23.5,91.5 - parent: 12 - - uid: 26288 - components: - - type: Transform - pos: -22.5,3.5 - parent: 12 - - uid: 26303 - components: - - type: Transform - pos: -25.5,62.5 - parent: 12 - - uid: 26322 - components: - - type: Transform - pos: -0.5,-31.5 - parent: 12 - - uid: 26396 - components: - - type: Transform - pos: 41.5,2.5 - parent: 12 - - uid: 26409 - components: - - type: Transform - pos: 24.5,91.5 - parent: 12 - - uid: 26410 - components: - - type: Transform - pos: 13.5,91.5 - parent: 12 - - uid: 26412 - components: - - type: Transform - pos: 24.5,90.5 - parent: 12 - - uid: 26420 - components: - - type: Transform - pos: 63.5,4.5 - parent: 12 - - uid: 26450 - components: - - type: Transform - pos: 25.5,89.5 - parent: 12 - - uid: 26542 - components: - - type: Transform - pos: 26.5,89.5 - parent: 12 - - uid: 26546 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,7.5 - parent: 12 - - uid: 26550 - components: - - type: Transform - pos: 36.5,-3.5 - parent: 12 - - uid: 26564 - components: - - type: Transform - pos: 34.5,-3.5 - parent: 12 - - uid: 26566 - components: - - type: Transform - pos: -22.5,-8.5 - parent: 12 - - uid: 26575 - components: - - type: Transform - pos: 35.5,-3.5 - parent: 12 - - uid: 26586 - components: - - type: Transform - pos: 27.5,89.5 - parent: 12 - - uid: 26598 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-21.5 - parent: 12 - - uid: 26600 - components: - - type: Transform - pos: 14.5,-13.5 - parent: 12 - - uid: 26620 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,4.5 - parent: 12 - - uid: 26621 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,4.5 - parent: 12 - - uid: 26627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,10.5 - parent: 12 - - uid: 26675 - components: - - type: Transform - pos: 14.5,11.5 - parent: 12 - - uid: 26676 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,4.5 - parent: 12 - - uid: 26692 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,1.5 - parent: 12 - - uid: 26696 - components: - - type: Transform - 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: 26945 - components: - - type: Transform - 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: - - type: Transform - pos: 27.5,88.5 - parent: 12 - - uid: 27095 - components: - - type: Transform - pos: 28.5,88.5 - parent: 12 - - uid: 27096 - components: - - type: Transform - pos: 28.5,87.5 - parent: 12 - - uid: 27099 - components: - - type: Transform - pos: 29.5,86.5 - parent: 12 - - uid: 27101 - components: - - type: Transform - pos: 29.5,85.5 - parent: 12 - - uid: 27111 - components: - - type: Transform - pos: -57.5,-11.5 - parent: 12 - - uid: 27169 - components: - - type: Transform - pos: 29.5,84.5 - parent: 12 - - uid: 27237 - components: - - type: Transform - pos: 6.5,76.5 - parent: 12 - - uid: 27248 - components: - - type: Transform - pos: 29.5,76.5 - parent: 12 - - uid: 27262 - components: - - type: Transform - pos: 29.5,75.5 - parent: 12 - - uid: 27263 - components: - - type: Transform - pos: 29.5,74.5 - parent: 12 - - uid: 27264 - components: - - type: Transform - pos: 29.5,73.5 - parent: 12 - - uid: 27266 - components: - - type: Transform - pos: 29.5,72.5 - parent: 12 - - uid: 27267 - components: - - type: Transform - pos: 29.5,71.5 - parent: 12 - - uid: 27275 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-37.5 - parent: 12 - - uid: 27293 - components: - - 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 - pos: -33.5,-60.5 - parent: 12 - - uid: 27337 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-11.5 - parent: 12 - - uid: 27338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-11.5 - parent: 12 - - uid: 27341 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-11.5 - parent: 12 - - uid: 27378 - components: - - type: Transform - pos: 12.5,-18.5 - parent: 12 - - uid: 27379 - components: - - type: Transform - pos: 14.5,-18.5 - parent: 12 - - uid: 27406 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-11.5 - parent: 12 - - uid: 27408 - components: - - 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 - pos: -32.5,-45.5 - parent: 12 - - uid: 27734 - components: - - type: Transform - pos: 29.5,83.5 - parent: 12 - - uid: 27843 - components: - - type: Transform - pos: -27.5,62.5 - parent: 12 - - uid: 27857 - components: - - type: Transform - 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: 27915 - components: - - type: Transform - pos: 30.5,77.5 - parent: 12 - - uid: 27916 - components: - - type: Transform - pos: 41.5,-19.5 - parent: 12 - - uid: 27919 - components: - - type: Transform - pos: 30.5,78.5 - parent: 12 - - uid: 27920 - components: - - type: Transform - pos: 30.5,79.5 - parent: 12 - - uid: 27921 - components: - - type: Transform - pos: 30.5,80.5 - parent: 12 - - uid: 27922 - components: - - 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 - rot: 3.141592653589793 rad - pos: 81.5,41.5 - parent: 12 - - uid: 27927 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,42.5 - parent: 12 - - uid: 27928 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,47.5 - parent: 12 - - uid: 27929 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,43.5 - parent: 12 - - uid: 27930 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,44.5 - parent: 12 - - uid: 27931 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,45.5 - parent: 12 - - uid: 27932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,46.5 - parent: 12 - - uid: 27936 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,48.5 - parent: 12 - - uid: 27937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,50.5 - parent: 12 - - uid: 27938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,51.5 - parent: 12 - - uid: 27939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,52.5 - parent: 12 - - uid: 27940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,53.5 - parent: 12 - - uid: 27941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,54.5 - parent: 12 - - uid: 27942 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,49.5 - parent: 12 - - uid: 27943 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,56.5 - parent: 12 - - uid: 27945 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,57.5 - parent: 12 - - uid: 27946 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,55.5 - parent: 12 - - uid: 27947 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,61.5 - parent: 12 - - uid: 27948 - components: - - type: Transform - anchored: False - 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 - rot: 3.141592653589793 rad - pos: 63.5,61.5 - parent: 12 - - uid: 27951 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: -53.5,-11.5 - parent: 12 - - uid: 28167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-11.5 - parent: 12 - - uid: 28170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-11.5 - parent: 12 - - uid: 28171 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-11.5 - parent: 12 - - uid: 28194 - components: - - type: Transform - 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: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,59.5 - parent: 12 - - uid: 28315 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,59.5 - parent: 12 - - uid: 28316 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,59.5 - parent: 12 - - uid: 28318 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,59.5 - parent: 12 - - uid: 28319 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,59.5 - parent: 12 - - uid: 28320 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,59.5 - parent: 12 - - uid: 28321 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,59.5 - parent: 12 - - uid: 28322 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,59.5 - parent: 12 - - uid: 28323 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,59.5 - parent: 12 - - uid: 28324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,59.5 - parent: 12 - - uid: 28326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,59.5 - parent: 12 - - uid: 28347 - components: - - type: Transform - pos: 6.5,81.5 - parent: 12 - - uid: 28348 - components: - - type: Transform - pos: 6.5,80.5 - parent: 12 - - uid: 28370 - components: - - type: Transform - pos: 6.5,79.5 - parent: 12 - - uid: 28374 - components: - - type: Transform - pos: 6.5,78.5 - parent: 12 - - uid: 28421 - components: - - type: Transform - pos: 6.5,77.5 - parent: 12 - - uid: 28434 - components: - - type: Transform - pos: 6.5,82.5 - parent: 12 - - 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: 28882 - components: - - type: Transform - pos: 3.5,71.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: -42.5,74.5 - parent: 12 - - uid: 29151 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,74.5 - parent: 12 - - uid: 29210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,68.5 - parent: 12 - - uid: 29214 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,67.5 - parent: 12 - - uid: 29216 - components: - - type: Transform - pos: -25.5,70.5 - parent: 12 - - uid: 29228 - components: - - type: Transform - pos: -25.5,69.5 - parent: 12 - - uid: 29246 - components: - - type: Transform - pos: -22.5,63.5 - parent: 12 - - uid: 29305 - components: - - type: Transform - pos: -54.5,-48.5 - parent: 12 - - uid: 29346 - components: - - type: Transform - pos: -57.5,61.5 - parent: 12 - - uid: 29422 - components: - - type: Transform - pos: -54.5,68.5 - parent: 12 - - uid: 29457 - components: - - type: Transform - pos: -41.5,-70.5 - parent: 12 - - uid: 29459 - components: - - type: Transform - pos: -42.5,-68.5 - parent: 12 - - uid: 29460 - components: - - type: Transform - pos: -42.5,-70.5 - parent: 12 - - uid: 29461 - components: - - type: Transform - pos: -42.5,-67.5 - parent: 12 - - uid: 29462 - components: - - type: Transform - pos: -42.5,-66.5 - parent: 12 - - uid: 29463 - components: - - type: Transform - pos: -42.5,-63.5 - parent: 12 - - uid: 29464 - components: - - type: Transform - pos: -42.5,-62.5 - parent: 12 - - uid: 29465 - components: - - type: Transform - 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: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-40.5 - parent: 12 - - uid: 29998 - components: - - type: Transform - pos: -21.5,-11.5 - parent: 12 - - uid: 29999 - components: - - type: Transform - pos: -21.5,-12.5 - parent: 12 - - uid: 30004 - components: - - type: Transform - pos: -21.5,-10.5 - parent: 12 - - uid: 30016 - components: - - type: Transform - pos: 7.5,76.5 - parent: 12 - - uid: 30019 - components: - - type: Transform - pos: 60.5,74.5 - parent: 12 - - uid: 30038 - components: - - type: Transform - pos: 37.5,-54.5 - parent: 12 - - uid: 30039 - components: - - type: Transform - pos: 37.5,-55.5 - parent: 12 - - uid: 30040 - components: - - type: Transform - pos: 37.5,-56.5 - parent: 12 - - uid: 30041 - components: - - type: Transform - pos: 37.5,-57.5 - parent: 12 - - uid: 30042 - components: - - type: Transform - pos: 37.5,-59.5 - parent: 12 - - uid: 30043 - components: - - type: Transform - pos: 37.5,-60.5 - parent: 12 - - uid: 30044 - components: - - type: Transform - pos: 37.5,-61.5 - parent: 12 - - uid: 30045 - components: - - type: Transform - pos: 37.5,-58.5 - parent: 12 - - uid: 30046 - components: - - type: Transform - pos: 38.5,-61.5 - parent: 12 - - uid: 30048 - components: - - type: Transform - pos: 40.5,-61.5 - parent: 12 - - uid: 30049 - components: - - type: Transform - pos: 41.5,-61.5 - parent: 12 - - uid: 30050 - components: - - type: Transform - pos: 42.5,-61.5 - parent: 12 - - uid: 30051 - components: - - type: Transform - pos: 43.5,-61.5 - parent: 12 - - uid: 30053 - components: - - type: Transform - pos: 45.5,-61.5 - parent: 12 - - uid: 30054 - components: - - type: Transform - pos: 47.5,-61.5 - parent: 12 - - uid: 30055 - components: - - type: Transform - pos: 48.5,-61.5 - parent: 12 - - uid: 30058 - components: - - type: Transform - pos: 50.5,-61.5 - parent: 12 - - uid: 30060 - components: - - type: Transform - pos: 53.5,-61.5 - parent: 12 - - uid: 30061 - components: - - type: Transform - pos: 54.5,-61.5 - parent: 12 - - uid: 30065 - components: - - type: Transform - pos: 58.5,-61.5 - parent: 12 - - uid: 30066 - components: - - type: Transform - pos: 56.5,-61.5 - parent: 12 - - uid: 30067 - components: - - type: Transform - pos: 60.5,-61.5 - parent: 12 - - uid: 30069 - components: - - type: Transform - pos: 61.5,-61.5 - parent: 12 - - uid: 30070 - components: - - type: Transform - pos: 62.5,-61.5 - parent: 12 - - uid: 30071 - components: - - type: Transform - pos: 63.5,-61.5 - parent: 12 - - uid: 30073 - components: - - type: Transform - pos: 65.5,-61.5 - parent: 12 - - uid: 30074 - components: - - type: Transform - pos: 66.5,-61.5 - parent: 12 - - uid: 30075 - components: - - type: Transform - pos: 67.5,-61.5 - parent: 12 - - uid: 30076 - components: - - type: Transform - pos: 68.5,-61.5 - parent: 12 - - uid: 30077 - components: - - type: Transform - pos: 69.5,-61.5 - parent: 12 - - uid: 30079 - components: - - type: Transform - pos: 71.5,-61.5 - parent: 12 - - uid: 30080 - components: - - type: Transform - pos: 72.5,-61.5 - parent: 12 - - uid: 30081 - components: - - type: Transform - pos: 73.5,-61.5 - parent: 12 - - uid: 30082 - components: - - type: Transform - pos: 74.5,-61.5 - parent: 12 - - uid: 30083 - components: - - type: Transform - pos: 74.5,-60.5 - parent: 12 - - uid: 30084 - components: - - type: Transform - pos: 74.5,-59.5 - parent: 12 - - uid: 30086 - components: - - type: Transform - pos: 74.5,-57.5 - parent: 12 - - uid: 30087 - components: - - type: Transform - pos: -69.5,50.5 - parent: 12 - - uid: 30089 - components: - - type: Transform - pos: -72.5,50.5 - parent: 12 - - uid: 30090 - components: - - type: Transform - pos: -73.5,50.5 - parent: 12 - - uid: 30091 - components: - - type: Transform - pos: -70.5,50.5 - parent: 12 - - uid: 30092 - components: - - type: Transform - pos: -73.5,49.5 - parent: 12 - - uid: 30093 - components: - - type: Transform - pos: -73.5,48.5 - parent: 12 - - uid: 30095 - components: - - type: Transform - pos: -73.5,46.5 - parent: 12 - - uid: 30097 - components: - - type: Transform - pos: -71.5,46.5 - parent: 12 - - uid: 30098 - components: - - type: Transform - pos: -70.5,46.5 - parent: 12 - - uid: 30099 - components: - - type: Transform - pos: -69.5,46.5 - parent: 12 - - uid: 30100 - components: - - type: Transform - pos: -69.5,45.5 - parent: 12 - - uid: 30102 - components: - - type: Transform - pos: -69.5,43.5 - parent: 12 - - uid: 30103 - components: - - type: Transform - pos: -69.5,42.5 - parent: 12 - - uid: 30104 - components: - - type: Transform - pos: -69.5,41.5 - parent: 12 - - uid: 30105 - components: - - type: Transform - pos: -69.5,40.5 - parent: 12 - - uid: 30106 - components: - - type: Transform - pos: -68.5,40.5 - parent: 12 - - uid: 30107 - components: - - type: Transform - pos: -67.5,40.5 - parent: 12 - - uid: 30108 - components: - - type: Transform - pos: -66.5,40.5 - parent: 12 - - uid: 30109 - components: - - type: Transform - pos: -65.5,40.5 - parent: 12 - - uid: 30110 - components: - - type: Transform - pos: -64.5,40.5 - parent: 12 - - uid: 30111 - components: - - type: Transform - pos: -63.5,40.5 - parent: 12 - - uid: 30114 - components: - - type: Transform - pos: -60.5,40.5 - parent: 12 - - uid: 30115 - components: - - type: Transform - pos: -59.5,40.5 - parent: 12 - - uid: 30116 - components: - - 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 - pos: -69.5,53.5 - parent: 12 - - uid: 30119 - components: - - type: Transform - pos: -69.5,54.5 - parent: 12 - - uid: 30122 - components: - - type: Transform - pos: -69.5,56.5 - parent: 12 - - uid: 30123 - components: - - type: Transform - pos: -68.5,56.5 - parent: 12 - - uid: 30124 - components: - - type: Transform - pos: -67.5,56.5 - parent: 12 - - uid: 30125 - components: - - type: Transform - pos: -66.5,56.5 - parent: 12 - - uid: 30126 - components: - - type: Transform - pos: -59.5,56.5 - parent: 12 - - uid: 30128 - components: - - type: Transform - pos: -61.5,56.5 - parent: 12 - - uid: 30129 - components: - - type: Transform - pos: -62.5,56.5 - parent: 12 - - uid: 30130 - components: - - type: Transform - pos: -63.5,56.5 - parent: 12 - - uid: 30132 - components: - - type: Transform - pos: -65.5,56.5 - parent: 12 - - uid: 30134 - components: - - type: Transform - pos: 62.5,70.5 - parent: 12 - - uid: 30135 - components: - - type: Transform - pos: 63.5,70.5 - parent: 12 - - uid: 30136 - components: - - type: Transform - pos: 64.5,70.5 - parent: 12 - - uid: 30138 - components: - - type: Transform - pos: 65.5,71.5 - parent: 12 - - uid: 30139 - components: - - type: Transform - pos: 65.5,73.5 - parent: 12 - - uid: 30140 - components: - - type: Transform - pos: 65.5,74.5 - parent: 12 - - uid: 30141 - components: - - type: Transform - pos: 65.5,72.5 - parent: 12 - - uid: 30142 - components: - - type: Transform - pos: 64.5,74.5 - parent: 12 - - uid: 30143 - components: - - type: Transform - pos: 63.5,74.5 - parent: 12 - - uid: 30145 - components: - - type: Transform - pos: 61.5,74.5 - parent: 12 - - uid: 30146 - components: - - type: Transform - pos: 60.5,75.5 - parent: 12 - - uid: 30147 - components: - - type: Transform - pos: 60.5,76.5 - parent: 12 - - uid: 30148 - components: - - type: Transform - pos: 60.5,77.5 - parent: 12 - - uid: 30150 - components: - - type: Transform - pos: 60.5,79.5 - parent: 12 - - uid: 30151 - components: - - type: Transform - pos: 60.5,80.5 - parent: 12 - - uid: 30153 - components: - - type: Transform - pos: 59.5,80.5 - parent: 12 - - uid: 30154 - components: - - type: Transform - pos: 58.5,80.5 - parent: 12 - - uid: 30155 - components: - - type: Transform - pos: 57.5,80.5 - parent: 12 - - uid: 30156 - components: - - type: Transform - pos: 56.5,80.5 - parent: 12 - - uid: 30157 - components: - - type: Transform - pos: 55.5,80.5 - parent: 12 - - uid: 30158 - components: - - type: Transform - pos: 54.5,80.5 - parent: 12 - - uid: 30160 - components: - - type: Transform - pos: 52.5,80.5 - parent: 12 - - uid: 30161 - components: - - type: Transform - pos: 50.5,80.5 - parent: 12 - - uid: 30162 - components: - - type: Transform - pos: 49.5,80.5 - parent: 12 - - uid: 30164 - components: - - type: Transform - pos: 47.5,80.5 - parent: 12 - - uid: 30166 - components: - - type: Transform - pos: 51.5,80.5 - parent: 12 - - uid: 30167 - components: - - type: Transform - pos: 44.5,80.5 - parent: 12 - - uid: 30168 - components: - - type: Transform - pos: 43.5,80.5 - parent: 12 - - uid: 30169 - components: - - type: Transform - pos: 45.5,80.5 - parent: 12 - - uid: 30170 - components: - - type: Transform - pos: 42.5,80.5 - parent: 12 - - uid: 30171 - components: - - type: Transform - pos: 42.5,79.5 - parent: 12 - - uid: 30172 - components: - - type: Transform - pos: 42.5,78.5 - parent: 12 - - uid: 30173 - components: - - type: Transform - pos: 41.5,78.5 - parent: 12 - - uid: 30174 - components: - - type: Transform - pos: 40.5,78.5 - parent: 12 - - uid: 30177 - components: - - type: Transform - pos: 36.5,78.5 - parent: 12 - - uid: 30178 - components: - - type: Transform - pos: 35.5,78.5 - parent: 12 - - uid: 30182 - components: - - type: Transform - pos: 31.5,78.5 - parent: 12 - - uid: 30183 - components: - - type: Transform - pos: 37.5,78.5 - parent: 12 - - uid: 30195 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-59.5 - parent: 12 - - uid: 30265 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,79.5 - parent: 12 - - uid: 30276 - components: - - type: Transform - pos: -14.5,74.5 - parent: 12 - - uid: 30294 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,72.5 - parent: 12 - - uid: 30299 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,75.5 - parent: 12 - - uid: 30300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,76.5 - parent: 12 - - uid: 30491 - components: - - type: Transform - pos: -49.5,-56.5 - parent: 12 - - uid: 30509 - components: - - type: Transform - pos: -26.5,-61.5 - parent: 12 - - uid: 30510 - components: - - type: Transform - pos: -26.5,-62.5 - parent: 12 - - uid: 30511 - components: - - type: Transform - pos: -26.5,-63.5 - parent: 12 - - uid: 30512 - components: - - type: Transform - pos: -25.5,-63.5 - parent: 12 - - uid: 30513 - components: - - type: Transform - pos: -25.5,-64.5 - parent: 12 - - uid: 30514 - components: - - type: Transform - pos: -24.5,-64.5 - parent: 12 - - uid: 30515 - components: - - type: Transform - pos: -23.5,-64.5 - parent: 12 - - uid: 30532 - components: - - type: Transform - pos: -28.5,-60.5 - parent: 12 - - uid: 30547 - components: - - type: Transform - pos: -39.5,66.5 - parent: 12 - - uid: 30549 - components: - - type: Transform - pos: -38.5,70.5 - parent: 12 - - uid: 30555 - components: - - type: Transform - pos: -34.5,-52.5 - parent: 12 - - uid: 30556 - components: - - type: Transform - pos: -33.5,-52.5 - parent: 12 - - uid: 30557 - components: - - type: Transform - pos: -32.5,-52.5 - parent: 12 - - uid: 30558 - components: - - type: Transform - pos: -31.5,-52.5 - parent: 12 - - uid: 30559 - components: - - type: Transform - pos: -30.5,-52.5 - parent: 12 - - uid: 30560 - components: - - type: Transform - pos: -29.5,-52.5 - parent: 12 - - uid: 30572 - components: - - type: Transform - pos: -39.5,67.5 - parent: 12 - - uid: 30580 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-56.5 - parent: 12 - - uid: 30582 - components: - - type: Transform - pos: -35.5,70.5 - parent: 12 - - uid: 30584 - components: - - type: Transform - pos: -29.5,-60.5 - parent: 12 - - uid: 30834 - components: - - type: Transform - pos: -37.5,70.5 - parent: 12 - - uid: 30875 - components: - - type: Transform - pos: -34.5,70.5 - parent: 12 - - uid: 30965 - components: - - type: Transform - pos: -39.5,70.5 - parent: 12 - - uid: 30966 - components: - - type: Transform - pos: -38.5,62.5 - parent: 12 - - uid: 30967 - components: - - type: Transform - pos: -33.5,70.5 - parent: 12 - - uid: 30968 - components: - - type: Transform - pos: -39.5,69.5 - parent: 12 - - uid: 30969 - components: - - type: Transform - pos: -39.5,65.5 - parent: 12 - - uid: 30978 - components: - - type: Transform - pos: -54.5,-47.5 - parent: 12 - - uid: 30979 - components: - - type: Transform - pos: -54.5,-46.5 - parent: 12 - - uid: 31000 - components: - - type: Transform - pos: -39.5,64.5 - parent: 12 - - uid: 31001 - components: - - type: Transform - pos: -39.5,62.5 - parent: 12 - - uid: 31002 - components: - - type: Transform - pos: -39.5,63.5 - parent: 12 - - uid: 31008 - components: - - type: Transform - pos: -31.5,70.5 - parent: 12 - - uid: 31013 - components: - - type: Transform - pos: -32.5,70.5 - parent: 12 - - uid: 31015 - components: - - type: Transform - pos: -39.5,68.5 - parent: 12 - - uid: 31016 - components: - - type: Transform - pos: -36.5,70.5 - parent: 12 - - uid: 31021 - components: - - type: Transform - pos: -61.5,-46.5 - parent: 12 - - uid: 31029 - components: - - type: Transform - pos: -26.5,-58.5 - parent: 12 - - uid: 31087 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-44.5 - parent: 12 - - uid: 31088 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-43.5 - parent: 12 - - uid: 31089 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-42.5 - parent: 12 - - uid: 31090 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-41.5 - parent: 12 - - uid: 31091 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-41.5 - parent: 12 - - uid: 31092 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-41.5 - parent: 12 - - uid: 31093 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-41.5 - parent: 12 - - uid: 31094 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-41.5 - parent: 12 - - uid: 31095 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-41.5 - parent: 12 - - uid: 31103 - components: - - type: Transform - pos: -9.5,-70.5 - parent: 12 - - uid: 31163 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-64.5 - parent: 12 - - uid: 31164 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-64.5 - parent: 12 - - uid: 31186 - components: - - type: Transform - pos: 3.5,-68.5 - parent: 12 - - uid: 31195 - components: - - type: Transform - pos: -2.5,-70.5 - parent: 12 - - uid: 31196 - components: - - type: Transform - pos: -1.5,-70.5 - parent: 12 - - uid: 31197 - components: - - type: Transform - pos: 0.5,-70.5 - parent: 12 - - uid: 31198 - components: - - type: Transform - pos: 1.5,-70.5 - parent: 12 - - uid: 31199 - components: - - type: Transform - pos: -3.5,-70.5 - parent: 12 - - uid: 31200 - components: - - type: Transform - pos: -0.5,-70.5 - parent: 12 - - uid: 31213 - components: - - type: Transform - pos: 3.5,-67.5 - parent: 12 - - uid: 31219 - components: - - type: Transform - pos: 3.5,-64.5 - parent: 12 - - uid: 31220 - components: - - type: Transform - pos: 3.5,-66.5 - parent: 12 - - uid: 31221 - components: - - type: Transform - pos: 3.5,-65.5 - parent: 12 - - uid: 31440 - components: - - type: Transform - pos: 2.5,-62.5 - parent: 12 - - uid: 31441 - components: - - type: Transform - pos: 60.5,68.5 - parent: 12 - - uid: 31451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-60.5 - parent: 12 - - uid: 31452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-61.5 - parent: 12 - - uid: 31453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-62.5 - parent: 12 - - uid: 31603 - components: - - type: Transform - pos: -63.5,-25.5 - parent: 12 - - uid: 31616 - components: - - type: Transform - pos: -63.5,-28.5 - parent: 12 - - uid: 31618 - components: - - type: Transform - pos: -62.5,-30.5 - parent: 12 - - uid: 31623 - components: - - type: Transform - pos: -63.5,-20.5 - parent: 12 - - uid: 31624 - components: - - type: Transform - pos: -62.5,-31.5 - parent: 12 - - uid: 32033 - components: - - type: Transform - pos: 41.5,-18.5 - parent: 12 - - uid: 32307 - components: - - type: Transform - pos: 79.5,2.5 - parent: 12 - - uid: 32308 - components: - - type: Transform - pos: 69.5,-5.5 - parent: 12 - - uid: 32309 - components: - - type: Transform - pos: 70.5,-5.5 - parent: 12 - - uid: 32310 - components: - - type: Transform - pos: 75.5,-5.5 - parent: 12 - - uid: 32311 - components: - - type: Transform - pos: 79.5,-4.5 - parent: 12 - - uid: 32313 - components: - - type: Transform - pos: 79.5,7.5 - parent: 12 - - uid: 32314 - components: - - type: Transform - pos: 79.5,10.5 - parent: 12 - - uid: 32315 - components: - - type: Transform - pos: 74.5,14.5 - parent: 12 - - uid: 32316 - components: - - type: Transform - pos: 75.5,14.5 - parent: 12 - - uid: 32317 - components: - - type: Transform - pos: 68.5,14.5 - parent: 12 - - uid: 32318 - components: - - type: Transform - pos: 66.5,14.5 - parent: 12 - - uid: 32319 - components: - - type: Transform - pos: 61.5,14.5 - parent: 12 - - uid: 32320 - components: - - type: Transform - pos: 78.5,14.5 - parent: 12 - - uid: 32332 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,51.5 - parent: 12 - - uid: 32360 - components: - - type: Transform - pos: 80.5,40.5 - parent: 12 - - uid: 32361 - components: - - type: Transform - pos: 80.5,38.5 - parent: 12 - - uid: 32369 - components: - - type: Transform - pos: 84.5,56.5 - parent: 12 - - uid: 32370 - components: - - type: Transform - pos: 84.5,54.5 - parent: 12 - - uid: 32371 - components: - - type: Transform - pos: 66.5,37.5 - parent: 12 - - uid: 32373 - components: - - type: Transform - pos: 84.5,50.5 - parent: 12 - - uid: 32374 - components: - - type: Transform - pos: 84.5,49.5 - parent: 12 - - uid: 32376 - components: - - type: Transform - pos: 84.5,47.5 - parent: 12 - - uid: 32377 - components: - - type: Transform - pos: 84.5,45.5 - parent: 12 - - uid: 32378 - components: - - type: Transform - pos: 84.5,44.5 - parent: 12 - - uid: 32381 - components: - - type: Transform - pos: 84.5,41.5 - parent: 12 - - uid: 32382 - components: - - type: Transform - pos: 84.5,40.5 - parent: 12 - - uid: 32383 - components: - - type: Transform - pos: 83.5,39.5 - parent: 12 - - uid: 32386 - components: - - type: Transform - pos: 82.5,38.5 - parent: 12 - - uid: 32387 - components: - - type: Transform - pos: 82.5,37.5 - parent: 12 - - uid: 32388 - components: - - type: Transform - pos: 82.5,36.5 - parent: 12 - - uid: 32389 - components: - - type: Transform - pos: 79.5,38.5 - parent: 12 - - uid: 32390 - components: - - type: Transform - pos: 78.5,38.5 - parent: 12 - - uid: 32391 - components: - - type: Transform - pos: 77.5,38.5 - parent: 12 - - uid: 32392 - components: - - type: Transform - pos: 76.5,38.5 - parent: 12 - - uid: 32393 - components: - - type: Transform - pos: 75.5,38.5 - parent: 12 - - uid: 32394 - components: - - type: Transform - pos: 74.5,38.5 - parent: 12 - - uid: 32395 - components: - - type: Transform - pos: 73.5,38.5 - parent: 12 - - uid: 32396 - components: - - type: Transform - pos: 72.5,38.5 - parent: 12 - - uid: 32397 - components: - - type: Transform - pos: 71.5,38.5 - parent: 12 - - uid: 32398 - components: - - type: Transform - pos: 70.5,38.5 - parent: 12 - - uid: 32399 - components: - - type: Transform - pos: 69.5,38.5 - parent: 12 - - uid: 32400 - components: - - type: Transform - pos: 68.5,38.5 - parent: 12 - - uid: 32401 - components: - - type: Transform - pos: 67.5,38.5 - parent: 12 - - uid: 32404 - components: - - type: Transform - pos: 64.5,37.5 - parent: 12 - - uid: 32405 - components: - - type: Transform - pos: 63.5,37.5 - parent: 12 - - uid: 32406 - components: - - type: Transform - pos: 62.5,37.5 - parent: 12 - - uid: 32408 - components: - - type: Transform - pos: 60.5,37.5 - parent: 12 - - uid: 32409 - components: - - type: Transform - pos: 67.5,36.5 - parent: 12 - - uid: 32411 - components: - - type: Transform - pos: 68.5,36.5 - parent: 12 - - uid: 32412 - components: - - type: Transform - pos: 69.5,36.5 - parent: 12 - - uid: 32414 - components: - - type: Transform - pos: 71.5,36.5 - parent: 12 - - uid: 32415 - components: - - type: Transform - pos: 72.5,36.5 - parent: 12 - - uid: 32416 - components: - - type: Transform - pos: 73.5,36.5 - parent: 12 - - uid: 32417 - components: - - type: Transform - pos: 74.5,36.5 - parent: 12 - - uid: 32418 - components: - - type: Transform - pos: 75.5,36.5 - parent: 12 - - uid: 32419 - components: - - type: Transform - pos: 76.5,36.5 - parent: 12 - - uid: 32420 - components: - - type: Transform - pos: 77.5,36.5 - parent: 12 - - uid: 32421 - components: - - type: Transform - pos: 78.5,36.5 - parent: 12 - - uid: 32423 - components: - - type: Transform - pos: 80.5,36.5 - parent: 12 - - uid: 32424 - components: - - type: Transform - pos: 81.5,36.5 - parent: 12 - - uid: 32425 - components: - - type: Transform - pos: 83.5,58.5 - parent: 12 - - uid: 32427 - components: - - type: Transform - pos: 82.5,59.5 - parent: 12 - - uid: 32428 - components: - - type: Transform - pos: 82.5,60.5 - parent: 12 - - uid: 32429 - components: - - type: Transform - pos: 82.5,61.5 - parent: 12 - - uid: 32430 - components: - - type: Transform - pos: 69.5,62.5 - parent: 12 - - uid: 32431 - components: - - type: Transform - pos: 81.5,61.5 - parent: 12 - - uid: 32432 - components: - - type: Transform - pos: 80.5,61.5 - parent: 12 - - uid: 32433 - components: - - type: Transform - pos: 79.5,61.5 - parent: 12 - - uid: 32434 - components: - - type: Transform - pos: 78.5,61.5 - parent: 12 - - uid: 32435 - components: - - type: Transform - pos: 77.5,61.5 - parent: 12 - - uid: 32436 - components: - - type: Transform - pos: 76.5,61.5 - parent: 12 - - uid: 32437 - components: - - type: Transform - pos: 75.5,61.5 - parent: 12 - - uid: 32438 - components: - - type: Transform - pos: 74.5,61.5 - parent: 12 - - uid: 32439 - components: - - type: Transform - pos: 73.5,61.5 - parent: 12 - - uid: 32440 - components: - - type: Transform - pos: 72.5,61.5 - parent: 12 - - uid: 32441 - components: - - type: Transform - pos: 71.5,61.5 - parent: 12 - - uid: 32442 - components: - - type: Transform - pos: 70.5,61.5 - parent: 12 - - uid: 32444 - components: - - type: Transform - pos: 68.5,61.5 - parent: 12 - - uid: 32445 - components: - - type: Transform - pos: 67.5,61.5 - parent: 12 - - uid: 32446 - components: - - type: Transform - pos: 69.5,63.5 - parent: 12 - - uid: 32447 - components: - - type: Transform - pos: 66.5,39.5 - parent: 12 - - uid: 32448 - components: - - type: Transform - pos: 68.5,63.5 - parent: 12 - - uid: 32449 - components: - - type: Transform - pos: 67.5,63.5 - parent: 12 - - uid: 32451 - components: - - type: Transform - pos: 65.5,63.5 - parent: 12 - - uid: 32452 - components: - - type: Transform - pos: 64.5,63.5 - parent: 12 - - uid: 32453 - components: - - type: Transform - pos: 63.5,63.5 - parent: 12 - - uid: 32454 - components: - - type: Transform - pos: 63.5,64.5 - parent: 12 - - uid: 32455 - components: - - type: Transform - pos: 63.5,65.5 - parent: 12 - - uid: 32456 - components: - - type: Transform - pos: 62.5,65.5 - parent: 12 - - uid: 32457 - components: - - type: Transform - pos: 65.5,39.5 - parent: 12 - - uid: 32458 - components: - - type: Transform - pos: 64.5,39.5 - parent: 12 - - uid: 32460 - components: - - type: Transform - pos: 62.5,39.5 - parent: 12 - - uid: 32461 - components: - - type: Transform - pos: 60.5,39.5 - parent: 12 - - uid: 32462 - components: - - type: Transform - pos: 61.5,39.5 - parent: 12 -- proto: GrilleBroken - entities: - - uid: 3719 - components: - - type: Transform - pos: -0.5,20.5 - parent: 12 - - uid: 7530 - components: - - type: Transform - pos: 44.5,-3.5 - parent: 12 - - uid: 7531 - components: - - type: Transform - pos: 40.5,6.5 - parent: 12 - - uid: 11282 - components: - - type: Transform - pos: -1.5,15.5 - parent: 12 - - uid: 11397 - components: - - type: Transform - pos: -54.5,-56.5 - parent: 12 - - uid: 12027 - components: - - type: Transform - pos: 46.5,13.5 - parent: 12 - - uid: 12352 - components: - - type: Transform - pos: 48.5,-2.5 - parent: 12 - - uid: 18315 - components: - - type: Transform - pos: -42.5,-59.5 - parent: 12 - - uid: 23167 - components: - - type: Transform - pos: -56.5,-56.5 - parent: 12 - - uid: 28921 - components: - - type: Transform - pos: 32.5,10.5 - parent: 12 - - uid: 29064 - components: - - type: Transform - pos: -58.5,-56.5 - parent: 12 - - uid: 30492 - components: - - type: Transform - pos: 44.5,-14.5 - parent: 12 - - uid: 30889 - components: - - type: Transform - pos: -27.5,-57.5 - parent: 12 - - uid: 30892 - components: - - type: Transform - pos: -28.5,-55.5 - parent: 12 - - uid: 30896 - components: - - type: Transform - pos: -31.5,-55.5 - parent: 12 - - uid: 30897 - components: - - type: Transform - pos: -29.5,-55.5 - parent: 12 - - uid: 31022 - components: - - type: Transform - pos: -61.5,-47.5 - parent: 12 - - uid: 31023 - components: - - type: Transform - pos: -59.5,-56.5 - parent: 12 - - uid: 31028 - components: - - type: Transform - pos: -50.5,-56.5 - parent: 12 - - uid: 31033 - components: - - type: Transform - pos: -61.5,-45.5 - parent: 12 -- proto: GrilleDiagonal - entities: - - uid: 19616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,79.5 - parent: 12 - - uid: 30273 - components: - - type: Transform - pos: -12.5,79.5 - parent: 12 -- proto: GrilleSpawner - entities: - - uid: 942 - components: - - type: Transform - pos: 82.5,39.5 - parent: 12 - - uid: 19569 - components: - - type: Transform - pos: 76.5,59.5 - parent: 12 - - uid: 20564 - components: - - type: Transform - pos: 65.5,70.5 - parent: 12 - - uid: 20565 - components: - - type: Transform - pos: 68.5,59.5 - parent: 12 - - uid: 20566 - components: - - type: Transform - pos: 61.5,64.5 - parent: 12 - - uid: 21369 - components: - - type: Transform - pos: 39.5,-61.5 - parent: 12 - - uid: 21516 - components: - - type: Transform - pos: 44.5,-61.5 - parent: 12 - - uid: 21530 - components: - - type: Transform - pos: 46.5,-61.5 - parent: 12 - - uid: 21531 - components: - - type: Transform - pos: 49.5,-61.5 - parent: 12 - - uid: 21601 - components: - - type: Transform - pos: 52.5,-61.5 - parent: 12 - - uid: 21607 - components: - - type: Transform - pos: 51.5,-61.5 - parent: 12 - - uid: 21621 - components: - - type: Transform - pos: 55.5,-61.5 - parent: 12 - - uid: 21703 - components: - - type: Transform - pos: 57.5,-61.5 - parent: 12 - - uid: 21871 - components: - - type: Transform - pos: 64.5,-61.5 - parent: 12 - - uid: 21926 - components: - - type: Transform - pos: 70.5,-61.5 - parent: 12 - - uid: 21970 - components: - - type: Transform - pos: 74.5,-58.5 - parent: 12 - - uid: 21971 - components: - - type: Transform - pos: -69.5,44.5 - parent: 12 - - uid: 22027 - components: - - type: Transform - pos: -62.5,40.5 - parent: 12 - - uid: 22028 - components: - - type: Transform - pos: -61.5,40.5 - parent: 12 - - uid: 22066 - components: - - type: Transform - pos: -64.5,56.5 - parent: 12 - - uid: 22075 - components: - - type: Transform - pos: -60.5,56.5 - parent: 12 - - uid: 22079 - components: - - type: Transform - pos: -69.5,52.5 - parent: 12 - - uid: 22080 - components: - - type: Transform - pos: -71.5,50.5 - parent: 12 - - uid: 22089 - components: - - type: Transform - pos: -69.5,55.5 - parent: 12 - - uid: 22092 - components: - - type: Transform - pos: -73.5,47.5 - parent: 12 - - uid: 22094 - components: - - type: Transform - pos: -72.5,46.5 - parent: 12 - - uid: 22095 - components: - - type: Transform - pos: 61.5,69.5 - parent: 12 - - uid: 22098 - components: - - type: Transform - pos: 60.5,78.5 - parent: 12 - - uid: 22100 - components: - - type: Transform - pos: 62.5,74.5 - parent: 12 - - uid: 22124 - components: - - type: Transform - pos: 48.5,80.5 - parent: 12 - - uid: 22126 - components: - - type: Transform - pos: 64.5,61.5 - parent: 12 - - uid: 22128 - components: - - type: Transform - pos: 46.5,80.5 - parent: 12 - - uid: 22131 - components: - - type: Transform - pos: 34.5,78.5 - parent: 12 - - uid: 22133 - components: - - type: Transform - pos: 38.5,78.5 - parent: 12 - - uid: 22134 - components: - - type: Transform - pos: 39.5,78.5 - parent: 12 - - uid: 22135 - components: - - type: Transform - pos: 53.5,80.5 - parent: 12 - - uid: 22137 - components: - - type: Transform - pos: 33.5,78.5 - parent: 12 - - uid: 22138 - components: - - type: Transform - pos: 32.5,78.5 - parent: 12 - - uid: 22139 - components: - - type: Transform - pos: 61.5,70.5 - parent: 12 - - uid: 22140 - components: - - type: Transform - pos: 59.5,-61.5 - parent: 12 - - uid: 25385 - components: - - 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: 27933 - components: - - type: Transform - pos: 81.5,57.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 - - uid: 32143 - components: - - type: Transform - pos: 69.5,14.5 - parent: 12 - - uid: 32299 - components: - - type: Transform - pos: 68.5,-5.5 - parent: 12 - - uid: 32300 - components: - - type: Transform - pos: 74.5,-5.5 - parent: 12 - - uid: 32301 - components: - - type: Transform - pos: 79.5,-3.5 - parent: 12 - - uid: 32302 - components: - - type: Transform - pos: 79.5,-0.5 - parent: 12 - - uid: 32303 - components: - - type: Transform - pos: 79.5,0.5 - parent: 12 - - uid: 32304 - components: - - type: Transform - pos: 79.5,8.5 - parent: 12 - - uid: 32305 - components: - - type: Transform - pos: 73.5,14.5 - parent: 12 - - uid: 32306 - components: - - type: Transform - pos: 62.5,14.5 - parent: 12 - - uid: 32368 - components: - - type: Transform - pos: 84.5,57.5 - parent: 12 - - uid: 32372 - components: - - type: Transform - pos: 84.5,43.5 - parent: 12 - - uid: 32375 - components: - - type: Transform - pos: 84.5,48.5 - parent: 12 - - uid: 32379 - components: - - type: Transform - pos: 84.5,52.5 - parent: 12 - - uid: 32380 - components: - - type: Transform - pos: 61.5,67.5 - parent: 12 - - uid: 32384 - components: - - type: Transform - pos: 81.5,40.5 - parent: 12 - - uid: 32385 - components: - - type: Transform - pos: 61.5,66.5 - parent: 12 - - uid: 32403 - components: - - type: Transform - pos: 65.5,37.5 - parent: 12 - - uid: 32407 - components: - - type: Transform - pos: 63.5,39.5 - parent: 12 - - uid: 32413 - components: - - type: Transform - pos: 79.5,36.5 - parent: 12 - - uid: 32422 - components: - - type: Transform - pos: 70.5,36.5 - parent: 12 - - uid: 32426 - components: - - type: Transform - pos: 82.5,58.5 - parent: 12 - - uid: 32450 - components: - - type: Transform - pos: 66.5,63.5 - parent: 12 - - uid: 32459 - components: - - type: Transform - pos: 61.5,37.5 - parent: 12 - - uid: 32463 - components: - - type: Transform - pos: 84.5,53.5 - parent: 12 -- proto: GroundCannabis - entities: - - uid: 12239 - components: - - type: Transform - pos: 50.497936,20.58864 - parent: 12 - - uid: 24160 - components: - - 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 - components: - - type: Transform - pos: -37.5,66.5 - parent: 12 -- proto: GunSafeLaserCarbine - entities: - - uid: 20858 - components: - - type: Transform - pos: -32.5,66.5 - parent: 12 -- proto: GunSafePistolMk58 - entities: - - uid: 9408 - components: - - type: Transform - pos: -37.5,68.5 - parent: 12 -- proto: GunSafeRifleLecter - entities: - - uid: 20859 - components: - - type: Transform - pos: -32.5,67.5 - parent: 12 -- proto: GunSafeSubMachineGunDrozd - entities: - - uid: 20874 - components: - - type: Transform - pos: -37.5,67.5 - parent: 12 -- proto: GyroscopeMachineCircuitboard - entities: - - uid: 14249 - components: - - type: Transform - pos: 40.571014,-39.502075 - parent: 12 -- proto: GyroscopeUnanchored - entities: - - uid: 30001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-12.5 - parent: 12 -- proto: Handcuffs - entities: - - uid: 17611 - components: - - type: Transform - pos: -51.966255,28.73969 - parent: 12 -- proto: HandheldGPSBasic - entities: - - uid: 10408 - components: - - type: Transform - pos: -22.32395,-4.2484355 - parent: 12 - - uid: 10409 - components: - - type: Transform - pos: -22.111952,-4.5664315 - parent: 12 -- proto: HandheldHealthAnalyzer - entities: - - uid: 1838 - components: - - type: Transform - pos: -46.35575,-47.815594 - parent: 12 - - uid: 2836 - components: - - type: Transform - rot: -56.54866776461632 rad - pos: -13.534269,-50.311413 - parent: 12 - - uid: 2843 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: -17.509005,-44.411045 - parent: 12 - - uid: 11709 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -4.6762905,-32.320335 - parent: 12 - - uid: 12709 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -5.6384325,-38.454876 - parent: 12 - - uid: 13831 - components: - - type: Transform - pos: 31.56834,36.946865 - parent: 12 - - uid: 19274 - components: - - type: Transform - pos: -47.471107,54.507904 - parent: 12 -- proto: HandheldHealthAnalyzerUnpowered - entities: - - uid: 13126 - components: - - type: Transform - pos: 40.641838,28.76833 - parent: 12 -- proto: HandheldStationMapUnpowered - entities: - - uid: 30188 - components: - - type: Transform - pos: -52.42798,29.174751 - parent: 12 -- proto: HandLabeler - entities: - - uid: 2312 - components: - - type: Transform - pos: -27.34096,-41.738174 - parent: 12 - - uid: 4080 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -18.443611,-38.54743 - parent: 12 - - uid: 6887 - components: - - type: Transform - pos: 23.50414,-38.247326 - parent: 12 - - uid: 8891 - components: - - type: Transform - rot: -50.265482457436725 rad - pos: 46.54092,-15.729965 - parent: 12 - - uid: 13290 - components: - - type: Transform - pos: 37.53767,27.247498 - parent: 12 - - uid: 13636 - components: - - type: Transform - pos: 32.463,27.492786 - parent: 12 - - uid: 13843 - components: - - type: Transform - pos: 30.4622,39.447388 - parent: 12 - - uid: 25864 - components: - - type: Transform - pos: 58.564953,50.55527 - parent: 12 -- proto: HappyHonk - entities: - - uid: 22733 - components: - - type: Transform - pos: 5.5,55.5 - parent: 12 -- proto: HappyHonkMime - entities: - - uid: 22698 - components: - - type: Transform - pos: 3.5,55.5 - parent: 12 -- proto: HarmonicaInstrument - entities: - - uid: 13711 - components: - - type: Transform - pos: 18.73574,27.607372 - parent: 12 - - uid: 21233 - components: - - type: Transform - pos: -27.696377,48.604057 - parent: 12 -- proto: HeatExchanger - entities: - - uid: 5988 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-19.5 - parent: 12 - - uid: 7302 - components: - - type: Transform - pos: -45.5,-19.5 - parent: 12 - - uid: 26617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,27.5 - parent: 12 - - uid: 28293 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-18.5 - parent: 12 - - uid: 28294 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-18.5 - parent: 12 -- proto: Hemostat - entities: - - uid: 5104 - components: - - type: Transform - pos: -22.46475,53.106586 - parent: 12 - - uid: 13872 - components: - - type: Transform - pos: 31.348331,37.825436 - parent: 12 -- proto: HighSecArmoryLocked - entities: - - uid: 20841 - components: - - type: Transform - pos: -36.5,63.5 - parent: 12 - - uid: 20842 - components: - - type: Transform - pos: -33.5,63.5 - parent: 12 -- proto: HighSecCommandLocked - entities: - - uid: 81 - components: - - type: Transform - pos: 38.5,-38.5 - parent: 12 - - uid: 132 - components: - - type: Transform - pos: -0.5,-8.5 - parent: 12 - - uid: 2219 - components: - - type: Transform - pos: -0.5,-4.5 - parent: 12 - - uid: 17460 - components: - - type: Transform - pos: -27.5,9.5 - parent: 12 - - uid: 28526 - components: - - type: Transform - pos: 36.5,-13.5 - parent: 12 -- proto: HolopadAiCore - entities: - - uid: 32118 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 12 -- proto: HolopadAiEntrance - entities: - - uid: 32120 - components: - - type: Transform - pos: -6.5,-6.5 - parent: 12 -- proto: HolopadAiUpload - entities: - - uid: 32119 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 12 -- proto: HolopadCargoBayLongRange - entities: - - uid: 31905 - components: - - type: Transform - pos: 56.5,-10.5 - parent: 12 -- proto: HolopadCargoFront - entities: - - uid: 31903 - components: - - type: Transform - pos: 53.5,-20.5 - parent: 12 -- proto: HolopadCargoSalvageBay - entities: - - uid: 31904 - components: - - type: Transform - pos: 57.5,-30.5 - parent: 12 -- proto: HolopadCommandBridge - entities: - - uid: 31879 - components: - - type: Transform - pos: -55.5,30.5 - parent: 12 -- proto: HolopadCommandBridgeLongRange - entities: - - uid: 31889 - components: - - type: Transform - pos: -55.5,27.5 - parent: 12 -- proto: HolopadCommandCaptain - entities: - - uid: 31880 - components: - - type: Transform - pos: -51.5,19.5 - parent: 12 -- proto: HolopadCommandCe - entities: - - uid: 31883 - components: - - type: Transform - pos: 26.5,-22.5 - parent: 12 -- proto: HolopadCommandCmo - entities: - - uid: 31884 - components: - - type: Transform - pos: -10.5,-38.5 - parent: 12 -- proto: HolopadCommandHop - entities: - - uid: 31881 - components: - - type: Transform - pos: -34.5,22.5 - parent: 12 -- proto: HolopadCommandHos - entities: - - uid: 31882 - components: - - type: Transform - pos: -42.5,34.5 - parent: 12 -- proto: HolopadCommandQm - entities: - - uid: 31885 - components: - - type: Transform - pos: 46.5,-7.5 - parent: 12 -- proto: HolopadCommandRd - entities: - - uid: 31886 - components: - - type: Transform - pos: -38.5,-20.5 - parent: 12 -- proto: HolopadCommandVault - entities: - - uid: 31887 - components: - - type: Transform - pos: -29.5,9.5 - parent: 12 -- proto: HolopadEngineeringAtmosMain - entities: - - uid: 31906 - components: - - type: Transform - pos: 15.5,-4.5 - parent: 12 -- proto: HolopadEngineeringAtmosTeg - entities: - - uid: 31908 - components: - - type: Transform - pos: 11.5,17.5 - parent: 12 -- proto: HolopadEngineeringBreakroom - entities: - - uid: 32019 - components: - - type: Transform - pos: 22.5,-17.5 - parent: 12 -- proto: HolopadEngineeringFront - entities: - - uid: 31907 - components: - - type: Transform - pos: 14.5,-21.5 - parent: 12 -- proto: HolopadEngineeringStorage - entities: - - uid: 31911 - components: - - type: Transform - pos: 59.5,10.5 - parent: 12 -- proto: HolopadEngineeringTechVault - entities: - - uid: 32020 - components: - - type: Transform - pos: 40.5,-38.5 - parent: 12 -- proto: HolopadEngineeringTelecoms - entities: - - uid: 31909 - components: - - type: Transform - pos: 34.5,-5.5 - parent: 12 -- proto: HolopadGeneralArcade - entities: - - uid: 32121 - components: - - type: Transform - pos: 3.5,51.5 - parent: 12 -- proto: HolopadGeneralArrivals - entities: - - uid: 32129 - components: - - type: Transform - pos: 18.5,66.5 - parent: 12 -- proto: HolopadGeneralCryosleep - entities: - - uid: 32122 - components: - - type: Transform - pos: -7.5,48.5 - parent: 12 -- proto: HolopadGeneralDisposals - entities: - - uid: 32123 - components: - - type: Transform - pos: 38.5,18.5 - parent: 12 -- proto: HolopadGeneralEVAStorage - entities: - - uid: 32124 - components: - - type: Transform - pos: -10.5,9.5 - parent: 12 -- proto: HolopadGeneralLounge - entities: - - uid: 32125 - components: - - type: Transform - pos: 13.5,58.5 - parent: 12 -- proto: HolopadGeneralTools - entities: - - uid: 32126 - components: - - type: Transform - pos: 34.5,-21.5 - parent: 12 -- proto: HolopadMedicalChemistry - entities: - - uid: 31895 - components: - - type: Transform - pos: -30.5,-43.5 - parent: 12 -- proto: HolopadMedicalCryopods - entities: - - uid: 31896 - components: - - type: Transform - pos: -11.5,-55.5 - parent: 12 -- proto: HolopadMedicalFront - entities: - - uid: 31897 - components: - - type: Transform - pos: -21.5,-39.5 - parent: 12 -- proto: HolopadMedicalMedbay - entities: - - uid: 31898 - components: - - type: Transform - pos: -9.5,-46.5 - parent: 12 -- proto: HolopadMedicalMorgue - entities: - - uid: 31899 - components: - - type: Transform - pos: 5.5,-42.5 - parent: 12 -- proto: HolopadMedicalSurgery - entities: - - uid: 31900 - components: - - type: Transform - pos: -0.5,-36.5 - parent: 12 -- proto: HolopadMedicalVirology - entities: - - uid: 31901 - components: - - type: Transform - pos: -11.5,-59.5 - parent: 12 -- proto: HolopadScienceAnomaly - entities: - - uid: 31893 - components: - - type: Transform - pos: -42.5,-36.5 - parent: 12 -- proto: HolopadScienceArtifact - entities: - - uid: 31892 - components: - - type: Transform - pos: -46.5,-24.5 - parent: 12 -- proto: HolopadScienceFront - entities: - - uid: 31894 - components: - - type: Transform - pos: -20.5,-20.5 - parent: 12 -- proto: HolopadScienceRobotics - entities: - - uid: 31890 - components: - - type: Transform - pos: -24.5,-29.5 - parent: 12 -- proto: HolopadSecurityArmory - entities: - - uid: 32021 - components: - - type: Transform - pos: -35.5,66.5 - parent: 12 -- proto: HolopadSecurityBreakroom - entities: - - uid: 32022 - components: - - type: Transform - pos: -33.5,39.5 - parent: 12 -- proto: HolopadSecurityBrig - entities: - - uid: 32026 - components: - - type: Transform - pos: -43.5,57.5 - parent: 12 -- proto: HolopadSecurityCourtroom - entities: - - uid: 32023 - components: - - type: Transform - pos: -34.5,30.5 - parent: 12 -- proto: HolopadSecurityDetective - entities: - - uid: 32030 - components: - - type: Transform - pos: 29.5,29.5 - parent: 12 -- proto: HolopadSecurityFront - entities: - - uid: 32029 - components: - - type: Transform - pos: -21.5,39.5 - parent: 12 -- proto: HolopadSecurityInterrogation - entities: - - uid: 32024 - components: - - type: Transform - pos: -40.5,44.5 - parent: 12 -- proto: HolopadSecurityLawyer - entities: - - uid: 32025 - components: - - type: Transform - pos: -23.5,0.5 - parent: 12 -- proto: HolopadSecurityPerma - entities: - - uid: 32028 - components: - - type: Transform - pos: -29.5,46.5 - parent: 12 -- proto: HolopadSecurityWarden - entities: - - uid: 32027 - components: - - type: Transform - pos: -39.5,53.5 - parent: 12 -- proto: HolopadServiceBar - entities: - - uid: 32057 - components: - - type: Transform - pos: 30.5,50.5 - parent: 12 -- proto: HolopadServiceBotany - entities: - - uid: 32073 - components: - - type: Transform - pos: 68.5,48.5 - parent: 12 -- proto: HolopadServiceBoxer - entities: - - uid: 32105 - components: - - type: Transform - pos: 13.5,49.5 - parent: 12 -- proto: HolopadServiceChapel - entities: - - uid: 32107 - components: - - type: Transform - pos: 53.5,37.5 - parent: 12 -- proto: HolopadServiceClownMime - entities: - - uid: 32109 - components: - - type: Transform - pos: 4.5,56.5 - parent: 12 -- proto: HolopadServiceJanitor - entities: - - uid: 32112 - components: - - type: Transform - pos: 45.5,17.5 - parent: 12 -- proto: HolopadServiceKitchen - entities: - - uid: 32116 - components: - - type: Transform - pos: 29.5,57.5 - parent: 12 -- proto: HolopadServiceLibrary - entities: - - uid: 32117 - components: - - type: Transform - pos: -6.5,76.5 - parent: 12 -- proto: HolopadServiceMusician - entities: - - uid: 32113 - components: - - type: Transform - pos: 21.5,29.5 - parent: 12 -- proto: HolopadServiceNewsroom - entities: - - uid: 32114 - components: - - type: Transform - pos: 11.5,36.5 - parent: 12 -- proto: HolopadServiceZookeeper - entities: - - uid: 32128 - components: - - type: Transform - pos: 12.5,-33.5 - parent: 12 -- proto: HospitalCurtainsOpen - entities: - - uid: 2637 - components: - - type: Transform - pos: -3.5,-40.5 - parent: 12 - - uid: 9733 - components: - - type: Transform - pos: -5.5,-40.5 - parent: 12 - - uid: 17579 - components: - - type: Transform - pos: -2.5,-35.5 - parent: 12 - - uid: 17582 - components: - - type: Transform - pos: -2.5,-33.5 - parent: 12 - - uid: 17585 - components: - - 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 - pos: -4.5,-40.5 - parent: 12 -- proto: HydrogenChemistryBottle - entities: - - uid: 13012 - components: - - type: Transform - pos: 38.364483,63.67461 - parent: 12 -- proto: hydroponicsSoil - entities: - - uid: 9725 - components: - - type: Transform - pos: -0.5,26.5 - parent: 12 - - uid: 22161 - components: - - type: Transform - pos: -1.5,29.5 - parent: 12 - - uid: 23523 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,52.5 - parent: 12 - - uid: 23524 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,52.5 - parent: 12 - - uid: 23528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,57.5 - parent: 12 - - uid: 23529 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,57.5 - parent: 12 - - uid: 29071 - components: - - type: Transform - pos: 6.5,-59.5 - parent: 12 - - uid: 29477 - components: - - type: Transform - pos: 5.5,-62.5 - parent: 12 -- proto: HydroponicsToolClippers - entities: - - uid: 4211 - components: - - type: Transform - pos: 6.46257,-60.240547 - parent: 12 - - uid: 21230 - components: - - type: Transform - pos: -29.455093,53.423588 - parent: 12 - - uid: 24098 - components: - - type: Transform - pos: 66.52244,54.36522 - parent: 12 -- proto: HydroponicsToolHatchet - entities: - - uid: 24096 - components: - - type: Transform - pos: 66.403076,43.52201 - parent: 12 -- proto: HydroponicsToolMiniHoe - entities: - - uid: 503 - components: - - type: Transform - pos: 4.365348,-59.534256 - parent: 12 - - uid: 21358 - components: - - type: Transform - pos: -29.455309,52.314983 - parent: 12 - - uid: 23538 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 57.729115,58.67161 - parent: 12 - - uid: 24099 - components: - - type: Transform - pos: 66.41306,54.630844 - parent: 12 -- proto: HydroponicsToolScythe - entities: - - uid: 24097 - components: - - type: Transform - pos: 66.54204,43.506386 - parent: 12 -- proto: HydroponicsToolSpade - entities: - - uid: 24100 - components: - - type: Transform - pos: 76.57687,54.52147 - parent: 12 -- proto: hydroponicsTray - entities: - - uid: 10334 - components: - - type: Transform - pos: 66.5,52.5 - parent: 12 - - uid: 12038 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,42.5 - parent: 12 - - uid: 12039 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,55.5 - parent: 12 - - uid: 21359 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,52.5 - parent: 12 - - uid: 21361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,54.5 - parent: 12 - - uid: 23725 - components: - - type: Transform - pos: 73.5,42.5 - parent: 12 - - uid: 23726 - components: - - type: Transform - pos: 72.5,42.5 - parent: 12 - - uid: 23727 - components: - - type: Transform - pos: 69.5,42.5 - parent: 12 - - uid: 23728 - components: - - type: Transform - pos: 70.5,42.5 - parent: 12 - - uid: 23729 - components: - - type: Transform - pos: 76.5,44.5 - parent: 12 - - uid: 23730 - components: - - type: Transform - pos: 75.5,43.5 - parent: 12 - - uid: 23731 - components: - - type: Transform - pos: 75.5,54.5 - parent: 12 - - uid: 23732 - components: - - type: Transform - pos: 76.5,53.5 - parent: 12 - - uid: 23733 - components: - - type: Transform - pos: 73.5,55.5 - parent: 12 - - uid: 23734 - components: - - type: Transform - pos: 72.5,55.5 - parent: 12 - - uid: 23735 - components: - - type: Transform - pos: 70.5,55.5 - parent: 12 - - uid: 23736 - components: - - type: Transform - pos: 69.5,55.5 - parent: 12 - - uid: 23737 - components: - - type: Transform - pos: 72.5,48.5 - parent: 12 - - uid: 23738 - components: - - type: Transform - pos: 72.5,49.5 - parent: 12 - - uid: 23739 - components: - - type: Transform - pos: 74.5,48.5 - parent: 12 - - uid: 23740 - components: - - type: Transform - pos: 74.5,49.5 - parent: 12 - - uid: 24450 - components: - - type: Transform - pos: 66.5,45.5 - parent: 12 - - uid: 26215 - components: - - type: Transform - pos: -29.5,53.5 - parent: 12 -- proto: HydroponicsTrayMachineCircuitboard - entities: - - uid: 12053 - components: - - type: Transform - pos: 35.53809,45.733753 - parent: 12 -- proto: IDComputerCircuitboard - entities: - - uid: 14923 - components: - - type: Transform - pos: 35.56522,-39.427387 - parent: 12 -- proto: IngotGold - entities: - - uid: 17438 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -29.448883,11.559898 - parent: 12 -- proto: IngotGold1 - entities: - - uid: 22669 - components: - - type: Transform - pos: 12.461315,57.754185 - parent: 12 - - uid: 22670 - components: - - type: Transform - pos: 10.640143,56.97594 - parent: 12 - - uid: 22671 - components: - - type: Transform - pos: 12.524115,56.285564 - parent: 12 - - uid: 22672 - components: - - type: Transform - pos: 10.815981,56.91318 - parent: 12 -- proto: IngotSilver - entities: - - uid: 15842 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: -28.558372,7.517247 - parent: 12 -- proto: IngotSilver1 - entities: - - uid: 22673 - components: - - type: Transform - pos: 12.448756,57.327408 - parent: 12 - - uid: 22674 - components: - - type: Transform - pos: 10.552224,57.264645 - parent: 12 - - uid: 22675 - components: - - type: Transform - pos: 12.6497135,57.214436 - parent: 12 -- proto: IntercomAll - entities: - - uid: 31057 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,1.5 - 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 - components: - - type: Transform - 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 - rot: 1.5707963267948966 rad - pos: -28.5,-9.5 - parent: 12 - - uid: 21452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,29.5 - parent: 12 - - uid: 23622 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,66.5 - parent: 12 - - uid: 27832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,35.5 - parent: 12 - - uid: 27987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,29.5 - parent: 12 - - uid: 28524 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-44.5 - parent: 12 - - uid: 31078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,17.5 - parent: 12 -- proto: IntercomEngineering - entities: - - uid: 1484 - components: - - type: Transform - pos: 40.5,0.5 - parent: 12 - - uid: 5594 - components: - - type: Transform - pos: 21.5,-19.5 - parent: 12 - - uid: 8833 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-2.5 - parent: 12 - - uid: 9247 - components: - - type: Transform - pos: 15.5,-24.5 - parent: 12 - - uid: 21558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,23.5 - parent: 12 - - uid: 21678 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-37.5 - parent: 12 - - uid: 22254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-8.5 - parent: 12 - - uid: 24142 - components: - - type: Transform - pos: 43.5,46.5 - parent: 12 - - uid: 26436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,1.5 - parent: 12 - - uid: 27352 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,3.5 - parent: 12 -- proto: IntercomMedical - entities: - - uid: 12061 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-46.5 - parent: 12 - - uid: 13916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,40.5 - parent: 12 - - uid: 17659 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,23.5 - parent: 12 - - uid: 25525 - components: - - type: Transform - pos: -12.5,-32.5 - parent: 12 - - uid: 27300 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-38.5 - parent: 12 - - uid: 28525 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-48.5 - parent: 12 -- proto: IntercomScience - entities: - - uid: 4041 - components: - - type: Transform - pos: -19.5,-18.5 - parent: 12 - - uid: 12062 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: -35.5,-36.5 - parent: 12 - - uid: 25524 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-23.5 - parent: 12 - - uid: 27988 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-28.5 - parent: 12 -- proto: IntercomSecurity - entities: - - uid: 13647 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,29.5 - parent: 12 - - uid: 17660 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,23.5 - parent: 12 - - uid: 21017 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,37.5 - parent: 12 - - uid: 21239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,46.5 - parent: 12 - - uid: 22333 - components: - - type: Transform - pos: -31.5,42.5 - parent: 12 - - uid: 22334 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,37.5 - parent: 12 - - uid: 22335 - components: - - type: Transform - 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 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,31.5 - parent: 12 - - uid: 18895 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: 38.5,54.5 - parent: 12 - - uid: 23591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,53.5 - parent: 12 - - uid: 23593 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,49.5 - parent: 12 - - uid: 24115 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,52.5 - parent: 12 - - uid: 24140 - components: - - type: Transform - pos: 65.5,51.5 - parent: 12 - - uid: 24141 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,46.5 - parent: 12 - - uid: 27990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,37.5 - parent: 12 - - uid: 30395 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,70.5 - parent: 12 -- proto: IntercomSupply - entities: - - uid: 8791 - components: - - type: Transform - pos: 56.5,-9.5 - parent: 12 - - uid: 9246 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-25.5 - parent: 12 - - uid: 23807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-29.5 - parent: 12 -- proto: JanitorialTrolley - entities: - - uid: 7443 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,17.5 - parent: 12 -- proto: JetpackBlueFilled - entities: - - uid: 28698 - components: - - type: Transform - pos: 57.502148,-4.3210883 - parent: 12 - - type: GasTank - toggleActionEntity: 28700 - - type: Jetpack - toggleActionEntity: 28699 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 28699 - - 28700 -- proto: JetpackMiniFilled - entities: - - uid: 16458 - components: - - type: Transform - pos: -10.5,8.5 - parent: 12 - - uid: 16460 - components: - - type: Transform - pos: -10.5,11.5 - 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: 29655 - components: - - type: Transform - pos: 26.5,43.5 - parent: 12 -- proto: KitchenElectricGrill - entities: - - uid: 22829 - components: - - type: Transform - pos: 25.5,58.5 - parent: 12 - - uid: 22838 - components: - - type: Transform - pos: 28.5,60.5 - parent: 12 - - uid: 31130 - components: - - type: Transform - pos: -33.5,-59.5 - parent: 12 -- proto: KitchenKnife - entities: - - uid: 9104 - components: - - type: Transform - pos: 43.2629,-32.274185 - parent: 12 - - uid: 22880 - components: - - type: Transform - pos: 26.740038,60.54189 - parent: 12 - - uid: 23550 - components: - - type: Transform - pos: 37.53166,52.526382 - parent: 12 - - uid: 25858 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 58.192078,58.51409 - parent: 12 - - uid: 31131 - components: - - type: Transform - rot: -31.415926535897945 rad - pos: -37.056793,-58.403534 - parent: 12 - - uid: 31590 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 30.518942,25.530973 - parent: 12 -- proto: KitchenMicrowave - entities: - - uid: 268 - components: - - type: Transform - pos: 28.5,22.5 - parent: 12 - - uid: 3808 - components: - - type: Transform - pos: -19.5,-56.5 - parent: 12 - - uid: 4209 - components: - - type: Transform - pos: 46.5,63.5 - parent: 12 - - uid: 15078 - components: - - type: Transform - pos: 24.5,50.5 - parent: 12 - - uid: 15795 - components: - - type: Transform - pos: 63.5,-25.5 - parent: 12 - - uid: 21365 - components: - - type: Transform - pos: -31.5,43.5 - parent: 12 - - uid: 22834 - components: - - type: Transform - pos: 29.5,60.5 - parent: 12 - - uid: 24272 - components: - - type: Transform - pos: -10.5,66.5 - parent: 12 - - uid: 24449 - components: - - type: Transform - pos: 55.5,4.5 - parent: 12 - - uid: 27963 - components: - - type: Transform - pos: 27.5,60.5 - parent: 12 - - uid: 31129 - components: - - type: Transform - pos: -34.5,-59.5 - parent: 12 - - uid: 32097 - components: - - type: Transform - pos: 54.5,60.5 - parent: 12 -- proto: KitchenReagentGrinder - entities: - - uid: 215 - components: - - type: Transform - pos: 38.5,-30.5 - parent: 12 - - uid: 1949 - components: - - type: Transform - pos: -42.5,-22.5 - parent: 12 - - uid: 2307 - components: - - type: Transform - pos: -35.5,-44.5 - parent: 12 - - uid: 2308 - components: - - type: Transform - pos: -27.5,-41.5 - parent: 12 - - uid: 3060 - components: - - type: Transform - pos: 40.5,63.5 - parent: 12 - - uid: 21366 - components: - - type: Transform - pos: -31.5,44.5 - parent: 12 - - uid: 22830 - components: - - type: Transform - pos: 25.5,57.5 - parent: 12 - - uid: 22836 - components: - - type: Transform - pos: 32.5,57.5 - parent: 12 - - uid: 24031 - components: - - type: Transform - pos: 77.5,49.5 - parent: 12 -- proto: KitchenSpike - entities: - - uid: 15444 - components: - - type: Transform - pos: 40.5,53.5 - parent: 12 - - uid: 15445 - components: - - type: Transform - pos: 41.5,53.5 - parent: 12 - - uid: 31145 - components: - - type: Transform - pos: -38.5,-56.5 - parent: 12 -- proto: KnifePlastic - entities: - - uid: 21386 - components: - - type: Transform - pos: -26.417187,48.59222 - parent: 12 -- proto: Lamp - entities: - - uid: 17378 - components: - - type: Transform - pos: -49.362267,22.009987 - parent: 12 - - uid: 18677 - components: - - type: Transform - pos: -32.52334,20.661283 - parent: 12 - - type: HandheldLight - toggleActionEntity: 18678 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 18678 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 18679 - components: - - type: Transform - pos: -32.535576,24.70961 - parent: 12 - - type: HandheldLight - toggleActionEntity: 18680 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 18680 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 18837 - components: - - type: Transform - pos: -44.623947,21.771826 - parent: 12 - - uid: 23584 - components: - - type: Transform - pos: 20.532017,58.71145 - parent: 12 -- proto: LampBanana - entities: - - uid: 22720 - components: - - type: Transform - pos: 4.51527,59.777863 - parent: 12 -- proto: LampGold - entities: - - uid: 13138 - components: - - type: Transform - pos: 55.5908,28.703695 - parent: 12 - - uid: 13617 - components: - - type: Transform - pos: 30.523207,31.82968 - parent: 12 - - uid: 16708 - components: - - type: Transform - pos: -22.459707,1.9281484 - parent: 12 - - type: HandheldLight - toggleActionEntity: 19657 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 19657 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 21453 - components: - - type: Transform - 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 - pos: -6.858248,78.86622 - parent: 12 - - type: HandheldLight - toggleActionEntity: 30348 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 30348 - - type: Physics - canCollide: True - - type: ActionsContainer -- proto: LampInterrogator - entities: - - uid: 21291 - components: - - type: Transform - pos: -41.525627,45.737713 - parent: 12 - - type: HandheldLight - toggleActionEntity: 21292 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 21292 - - type: Physics - canCollide: True - - type: ActionsContainer -- proto: Lantern - entities: - - uid: 22202 - components: - - type: Transform - pos: -1.1887476,29.520283 - parent: 12 - - type: HandheldLight - toggleActionEntity: 22203 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 22203 - - type: ActionsContainer -- proto: LeavesTobaccoDried - entities: - - uid: 24158 - components: - - type: Transform - pos: 61.627953,47.602016 - parent: 12 -- proto: LGBTQHandyFlag - entities: - - uid: 11014 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -0.6024373,17.635342 - parent: 12 -- proto: LightBulbOld - entities: - - uid: 31338 - components: - - type: Transform - parent: 31337 - - type: Physics - canCollide: False -- proto: Lighter - entities: - - uid: 3789 - components: - - type: Transform - parent: 3794 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 16761 - components: - - type: Transform - pos: -19.24069,2.5948265 - parent: 12 -- proto: LiveLetLiveCircuitBoard - entities: - - uid: 28853 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 2.6437569,-15.31712 - parent: 12 -- proto: LockerAtmosphericsFilledHardsuit - entities: - - uid: 3021 - components: - - type: Transform - pos: 31.5,4.5 - parent: 12 - - uid: 7831 - components: - - type: Transform - pos: 31.5,2.5 - parent: 12 - - uid: 28844 - components: - - type: Transform - pos: 31.5,3.5 - parent: 12 -- proto: LockerBooze - entities: - - uid: 22505 - components: - - type: MetaData - desc: This is where the bartender keeps the booze for the pool. - name: pool booze storage - - type: Transform - pos: 2.5,33.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: - - 22518 - - 22517 - - 22516 - - 22515 - - 22514 - - 22513 - - 22512 - - 22506 - - 22507 - - 22508 - - 22509 - - 22510 - - 22511 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerBoozeFilled - entities: - - uid: 15092 - components: - - type: Transform - pos: 32.5,49.5 - parent: 12 - - uid: 23442 - components: - - 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 - components: - - type: Transform - pos: 59.5,42.5 - parent: 12 - - uid: 24087 - components: - - type: Transform - pos: 60.5,42.5 - parent: 12 - - uid: 24088 - components: - - type: Transform - pos: 61.5,42.5 - parent: 12 -- proto: LockerCaptainFilledNoLaser - entities: - - uid: 17405 - components: - - type: Transform - pos: -53.5,21.5 - parent: 12 -- proto: LockerChemistryFilled - entities: - - uid: 2292 - components: - - type: Transform - pos: -35.5,-41.5 - parent: 12 - - uid: 3125 - components: - - type: Transform - pos: -28.5,-44.5 - parent: 12 -- proto: LockerChiefEngineerFilledHardsuit - entities: - - uid: 5466 - components: - - type: Transform - pos: 27.5,-21.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: - - 5490 - - 5489 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerChiefMedicalOfficerFilledHardsuit - entities: - - uid: 2579 - components: - - type: Transform - pos: -9.5,-39.5 - parent: 12 -- proto: LockerClown - entities: - - uid: 22692 - components: - - type: Transform - pos: 2.5,59.5 - parent: 12 -- proto: LockerDetectiveFilled - entities: - - uid: 13596 - components: - - type: Transform - pos: 28.5,33.5 - parent: 12 -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 4174 - components: - - type: Transform - pos: 18.5,-17.5 - parent: 12 - - uid: 5949 - components: - - type: Transform - pos: -10.5,-21.5 - parent: 12 - - uid: 8881 - components: - - type: Transform - pos: -24.5,-7.5 - parent: 12 - - uid: 9145 - components: - - type: Transform - pos: 51.5,-42.5 - parent: 12 - - uid: 9181 - components: - - type: Transform - pos: 52.5,0.5 - parent: 12 - - uid: 14230 - components: - - 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 - pos: 48.5,63.5 - parent: 12 - - uid: 26159 - components: - - 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 - pos: 40.5,-15.5 - parent: 12 -- proto: LockerEngineerFilled - entities: - - uid: 5569 - components: - - type: Transform - pos: 32.5,-19.5 - parent: 12 - - uid: 5570 - components: - - type: Transform - pos: 32.5,-20.5 - parent: 12 - - uid: 5571 - components: - - type: Transform - pos: 32.5,-21.5 - parent: 12 - - uid: 17599 - components: - - type: Transform - pos: 29.5,-23.5 - parent: 12 - - uid: 17773 - components: - - type: Transform - pos: 29.5,-21.5 - parent: 12 - - uid: 18267 - components: - - type: Transform - pos: 29.5,-22.5 - parent: 12 -- proto: LockerEvidence - entities: - - uid: 1831 - components: - - type: Transform - pos: -31.5,60.5 - parent: 12 - - uid: 1832 - components: - - type: Transform - pos: -32.5,60.5 - parent: 12 - - uid: 7345 - components: - - type: Transform - pos: -43.5,59.5 - parent: 12 - - uid: 7346 - components: - - type: Transform - pos: -46.5,59.5 - parent: 12 - - uid: 12241 - components: - - type: Transform - pos: -40.5,59.5 - parent: 12 - - uid: 21423 - components: - - type: Transform - pos: -30.5,60.5 - parent: 12 - - uid: 23580 - components: - - type: Transform - pos: 23.5,59.5 - parent: 12 - - uid: 23842 - components: - - type: Transform - pos: -38.5,44.5 - parent: 12 -- proto: LockerFreezer - entities: - - uid: 15404 - components: - - type: Transform - pos: 32.5,55.5 - parent: 12 - - uid: 23567 - components: - - type: Transform - pos: 42.5,51.5 - parent: 12 -- proto: LockerFreezerVaultFilled - entities: - - uid: 10078 - components: - - type: Transform - pos: -28.5,11.5 - parent: 12 -- proto: LockerHeadOfPersonnelFilled - entities: - - uid: 18838 - components: - - type: Transform - pos: -43.5,25.5 - parent: 12 -- proto: LockerHeadOfSecurityFilledHardsuit - entities: - - uid: 20813 - components: - - type: Transform - pos: -41.5,36.5 - parent: 12 -- proto: LockerMedicalFilled - entities: - - uid: 2502 - components: - - type: Transform - pos: -19.5,-44.5 - parent: 12 - - uid: 2503 - components: - - type: Transform - pos: -19.5,-43.5 - parent: 12 - - uid: 9581 - components: - - type: Transform - pos: -3.5,-46.5 - parent: 12 - - uid: 9598 - components: - - type: Transform - pos: 1.5,-47.5 - parent: 12 - - uid: 13798 - components: - - type: Transform - pos: 28.5,35.5 - parent: 12 -- proto: LockerMedicineFilled - entities: - - uid: 2826 - components: - - type: Transform - pos: -11.5,-45.5 - parent: 12 - - uid: 9600 - components: - - type: Transform - pos: 1.5,-46.5 - parent: 12 - - uid: 10661 - components: - - type: Transform - pos: -6.5,-52.5 - parent: 12 - - uid: 13797 - components: - - type: Transform - pos: 27.5,35.5 - parent: 12 -- proto: LockerMime - entities: - - uid: 22702 - components: - - type: Transform - pos: 2.5,58.5 - parent: 12 -- proto: LockerParamedicFilled - entities: - - uid: 2492 - components: - - type: Transform - pos: -19.5,-45.5 - parent: 12 -- proto: LockerQuarterMasterFilled - entities: - - uid: 24426 - components: - - type: Transform - pos: 45.5,-7.5 - parent: 12 -- proto: LockerResearchDirectorFilled - entities: - - uid: 786 - components: - - type: Transform - pos: -35.5,-23.5 - parent: 12 -- proto: LockerSalvageSpecialistFilled - entities: - - uid: 8025 - components: - - type: Transform - pos: 61.5,-28.5 - parent: 12 - - uid: 8026 - components: - - type: Transform - pos: 61.5,-29.5 - parent: 12 - - uid: 8027 - components: - - type: Transform - pos: 61.5,-30.5 - parent: 12 -- proto: LockerScienceFilled - entities: - - uid: 1730 - components: - - type: Transform - pos: -46.5,-36.5 - parent: 12 - - uid: 1731 - components: - - type: Transform - pos: -46.5,-35.5 - parent: 12 - - uid: 1732 - components: - - type: Transform - pos: -46.5,-34.5 - parent: 12 - - uid: 1733 - components: - - type: Transform - pos: -42.5,-30.5 - parent: 12 -- proto: LockerScientist - entities: - - uid: 9298 - components: - - type: Transform - 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 - pos: -44.5,38.5 - parent: 12 - - uid: 20846 - components: - - type: Transform - pos: -44.5,39.5 - parent: 12 - - uid: 20847 - components: - - type: Transform - pos: -44.5,41.5 - parent: 12 - - uid: 20848 - components: - - type: Transform - pos: -44.5,42.5 - parent: 12 - - uid: 23574 - components: - - 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 - components: - - type: Transform - pos: -22.5,-58.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: - - 3788 - - 3789 - - 3787 - - 3786 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 3958 - components: - - type: Transform - pos: -8.5,-57.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: - - 31735 - - 31734 - - 31733 - - 31732 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 3959 - components: - - type: Transform - pos: -8.5,-56.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: - - 2750 - - 31736 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 12625 - components: - - type: Transform - pos: 58.5,38.5 - parent: 12 - - uid: 15356 - components: - - type: Transform - pos: 32.5,53.5 - parent: 12 - - uid: 22473 - components: - - type: Transform - pos: 1.5,33.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: - - 22477 - - 22476 - - 22474 - - 22475 - - 22478 - - 22479 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 22480 - components: - - type: Transform - pos: 0.5,33.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: - - 22484 - - 22483 - - 22481 - - 22482 - - 22485 - - 22486 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerSyndicatePersonal - entities: - - uid: 28254 - components: - - type: Transform - pos: -50.5,-14.5 - parent: 12 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6284 - - 6295 - - 28257 - - 28256 - - 28255 - - 6285 - - 6286 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerWallMedicalDoctorFilled - entities: - - uid: 2504 - components: - - type: Transform - pos: -21.5,-40.5 - parent: 12 -- proto: LockerWallMedicalFilled - entities: - - uid: 19284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,54.5 - parent: 12 -- proto: LockerWardenFilled - entities: - - uid: 7349 - components: - - type: Transform - pos: -40.5,50.5 - 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: 6196 - components: - - type: Transform - pos: 17.5,-17.5 - parent: 12 - - uid: 26203 - components: - - type: Transform - pos: 4.5,-14.5 - parent: 12 - - uid: 26712 - components: - - type: Transform - 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: 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 - - uid: 28770 - components: - - type: Transform - pos: 61.5,-2.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 28279: - - Output: DoorBolt - 19811: - - Output: DoorBolt - - uid: 28883 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-1.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 26518: - - Output: DoorBolt - 3596: - - Output: DoorBolt -- proto: LootSpawnerCableCoil - entities: - - uid: 9665 - components: - - type: Transform - pos: 2.5,65.5 - parent: 12 -- proto: LootSpawnerIndustrial - entities: - - uid: 1166 - components: - - type: Transform - pos: 45.5,5.5 - parent: 12 - - uid: 21945 - components: - - type: Transform - pos: -20.5,16.5 - parent: 12 - - uid: 23419 - components: - - type: Transform - pos: 49.5,47.5 - parent: 12 - - uid: 23571 - components: - - type: Transform - pos: -2.5,38.5 - parent: 12 - - uid: 25706 - components: - - type: Transform - pos: -5.5,-25.5 - parent: 12 -- proto: LootSpawnerIndustrialFluff - entities: - - uid: 2514 - components: - - type: Transform - pos: 39.5,-19.5 - parent: 12 - - uid: 4302 - components: - - type: Transform - pos: -11.5,-21.5 - parent: 12 - - uid: 9396 - components: - - type: Transform - pos: 36.5,6.5 - parent: 12 - - uid: 9608 - components: - - type: Transform - pos: -11.5,-24.5 - parent: 12 - - uid: 19547 - components: - - type: Transform - pos: 49.5,14.5 - parent: 12 - - uid: 19551 - components: - - type: Transform - pos: -12.5,60.5 - parent: 12 - - uid: 25688 - components: - - type: Transform - pos: 35.5,-25.5 - parent: 12 - - uid: 25705 - components: - - type: Transform - pos: -6.5,-25.5 - parent: 12 - - uid: 25724 - components: - - type: Transform - pos: -23.5,14.5 - parent: 12 - - uid: 25754 - components: - - type: Transform - pos: -12.5,68.5 - parent: 12 - - uid: 27004 - components: - - type: Transform - pos: 31.5,0.5 - parent: 12 -- proto: LootSpawnerMaterialsSupplementary - entities: - - uid: 5980 - components: - - type: Transform - pos: 39.5,-19.5 - parent: 12 - - uid: 25951 - components: - - type: Transform - pos: -7.5,64.5 - parent: 12 -- proto: LootSpawnerMaterialsSurplus - entities: - - uid: 25723 - components: - - type: Transform - pos: -22.5,14.5 - parent: 12 -- proto: LootSpawnerMedicalClassy - entities: - - uid: 26302 - components: - - type: Transform - pos: -35.5,-48.5 - parent: 12 - - uid: 26310 - components: - - type: Transform - pos: -34.5,-48.5 - parent: 12 -- proto: LootSpawnerMedicalMinor - entities: - - uid: 5037 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-43.5 - parent: 12 - - uid: 25752 - components: - - type: Transform - pos: 4.5,61.5 - parent: 12 - - uid: 25757 - components: - - type: Transform - pos: -23.5,50.5 - parent: 12 - - uid: 25952 - components: - - type: Transform - pos: -6.5,63.5 - parent: 12 - - uid: 26066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-45.5 - parent: 12 - - uid: 26443 - components: - - type: Transform - pos: -5.5,-51.5 - parent: 12 - - uid: 28465 - components: - - type: Transform - pos: -9.5,-45.5 - parent: 12 -- proto: MachineAnomalyGenerator - entities: - - uid: 824 - components: - - type: Transform - pos: -43.5,-33.5 - parent: 12 -- proto: MachineAnomalyVessel - entities: - - uid: 1799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-32.5 - parent: 12 - - uid: 1800 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-32.5 - parent: 12 - - uid: 1801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-32.5 - parent: 12 -- proto: MachineAPE - entities: - - uid: 1803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-40.5 - parent: 12 - - uid: 1804 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-40.5 - parent: 12 - - uid: 1805 - components: - - 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 - components: - - type: Transform - pos: -52.5,-26.5 - parent: 12 - - uid: 1697 - components: - - type: Transform - pos: -52.5,-22.5 - parent: 12 -- proto: MachineCentrifuge - entities: - - uid: 12069 - components: - - type: Transform - pos: -30.5,-44.5 - parent: 12 -- proto: MachineElectrolysisUnit - entities: - - uid: 26090 - components: - - type: Transform - pos: -31.5,-44.5 - parent: 12 -- proto: MachineFrame - entities: - - uid: 1807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-32.5 - parent: 12 - - type: ContainerContainer - containers: - machine_board: !type:Container - showEnts: False - occludes: True - ents: - - 1808 - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 3020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,19.5 - parent: 12 - - uid: 5395 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-53.5 - parent: 12 - - uid: 15384 - components: - - type: Transform - pos: 41.5,48.5 - parent: 12 - - uid: 24028 - components: - - type: Transform - pos: 77.5,47.5 - parent: 12 - - uid: 26200 - components: - - type: Transform - pos: 39.5,6.5 - parent: 12 - - uid: 30951 - components: - - type: Transform - pos: 42.5,64.5 - parent: 12 - - type: ContainerContainer - containers: - machine_board: !type:Container - showEnts: False - occludes: True - ents: - - 30957 - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] -- proto: MachineFrameDestroyed - entities: - - uid: 13522 - components: - - type: Transform - pos: 53.5,25.5 - parent: 12 -- proto: MagazinePistolSubMachineGunTopMounted - entities: - - uid: 27841 - components: - - type: Transform - pos: -42.45185,36.7307 - parent: 12 - - uid: 27842 - components: - - type: Transform - pos: -42.535183,36.7932 - parent: 12 -- proto: MailingUnit - entities: - - uid: 5171 - components: - - type: Transform - pos: -21.5,-21.5 - parent: 12 - - type: MailingUnit - tag: Science - target: Science - - uid: 5979 - components: - - type: Transform - pos: 39.5,53.5 - parent: 12 - - type: MailingUnit - tag: Freezer - target: Freezer - - uid: 6209 - components: - - type: MetaData - name: mailing unit - - type: Transform - pos: 67.5,50.5 - parent: 12 - - type: MailingUnit - tag: Botany - target: Botany - - uid: 9062 - components: - - type: Transform - pos: -29.5,-44.5 - parent: 12 - - type: MailingUnit - tag: Chemistry - target: Chemistry - - uid: 11061 - components: - - type: Transform - pos: 10.5,-18.5 - parent: 12 - - type: MailingUnit - tag: Engineering - target: Engineering - - uid: 24041 - components: - - type: Transform - pos: 59.5,52.5 - parent: 12 - - type: MailingUnit - tag: Ranch - target: Ranch - - uid: 25944 - components: - - type: Transform - pos: 46.5,-17.5 - parent: 12 - - type: MailingUnit - tag: Cargo - target: Cargo - - uid: 27002 - components: - - type: Transform - pos: 25.5,56.5 - parent: 12 - - type: MailingUnit - tag: Kitchen - target: Kitchen - - uid: 28827 - components: - - type: Transform - pos: -33.5,50.5 - parent: 12 - - type: MailingUnit - tag: Security - target: Security -- proto: MailingUnitElectronics - entities: - - uid: 26865 - components: - - type: Transform - pos: 13.299763,-19.62316 - parent: 12 - - uid: 26898 - components: - - type: Transform - pos: 13.706013,-19.320866 - parent: 12 -- proto: MaintenanceFluffSpawner - entities: - - uid: 1079 - components: - - type: Transform - pos: -43.5,-16.5 - parent: 12 - - uid: 2057 - components: - - type: Transform - pos: -6.5,-23.5 - parent: 12 - - uid: 4071 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,68.5 - parent: 12 - - uid: 11490 - components: - - type: Transform - pos: 37.5,21.5 - parent: 12 - - uid: 19550 - components: - - type: Transform - pos: -6.5,66.5 - parent: 12 - - uid: 21517 - components: - - type: Transform - pos: -20.5,31.5 - parent: 12 - - uid: 24511 - components: - - type: Transform - pos: 3.5,66.5 - parent: 12 - - uid: 24687 - components: - - type: Transform - pos: -1.5,56.5 - parent: 12 - - uid: 25725 - components: - - type: Transform - pos: -21.5,6.5 - parent: 12 - - uid: 25751 - components: - - type: Transform - pos: 6.5,61.5 - parent: 12 - - uid: 25842 - components: - - type: Transform - pos: 52.5,14.5 - parent: 12 - - uid: 25843 - components: - - type: Transform - pos: 46.5,12.5 - parent: 12 - - uid: 25844 - components: - - type: Transform - pos: 35.5,19.5 - parent: 12 - - uid: 25897 - components: - - type: Transform - pos: 36.5,59.5 - parent: 12 - - uid: 25970 - components: - - type: Transform - pos: -7.5,22.5 - parent: 12 - - uid: 27829 - components: - - 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: 31359 - components: - - type: Transform - pos: -11.5,-68.5 - parent: 12 - - uid: 31676 - components: - - type: Transform - pos: -62.5,-24.5 - parent: 12 - - uid: 32074 - components: - - type: Transform - pos: 41.5,-15.5 - parent: 12 -- proto: MaintenancePlantSpawner - entities: - - 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: 10923 - components: - - type: Transform - 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 - pos: 42.5,58.5 - parent: 12 - - uid: 24659 - components: - - type: Transform - pos: 40.5,19.5 - parent: 12 - - uid: 24684 - components: - - type: Transform - pos: 23.5,61.5 - parent: 12 - - uid: 25058 - components: - - type: Transform - pos: 46.5,13.5 - parent: 12 - - uid: 25809 - components: - - type: Transform - pos: 51.5,17.5 - parent: 12 - - uid: 25968 - components: - - 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: 28826 - components: - - type: Transform - 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: - - type: Transform - pos: -26.5,-57.5 - parent: 12 - - uid: 30528 - components: - - type: Transform - pos: -39.5,-50.5 - parent: 12 - - uid: 31355 - components: - - type: Transform - pos: -11.5,-66.5 - parent: 12 - - uid: 31372 - components: - - type: Transform - pos: -52.5,-43.5 - parent: 12 - - uid: 31679 - components: - - type: Transform - pos: -61.5,-21.5 - parent: 12 -- proto: MaintenanceToolSpawner - entities: - - uid: 689 - components: - - type: Transform - pos: 37.5,25.5 - parent: 12 - - uid: 6296 - components: - - type: Transform - pos: 33.5,67.5 - parent: 12 - - uid: 9711 - components: - - type: Transform - pos: 48.5,1.5 - parent: 12 - - uid: 13004 - components: - - type: Transform - pos: 38.5,-23.5 - parent: 12 - - uid: 17182 - components: - - type: Transform - pos: -5.5,17.5 - parent: 12 - - uid: 19165 - components: - - type: Transform - pos: 49.5,48.5 - parent: 12 - - uid: 19821 - components: - - type: Transform - pos: 56.5,-7.5 - parent: 12 - - uid: 21509 - components: - - type: Transform - pos: -29.5,23.5 - parent: 12 - - uid: 21521 - components: - - type: Transform - pos: -19.5,31.5 - parent: 12 - - uid: 22077 - components: - - type: Transform - pos: 42.5,56.5 - parent: 12 - - uid: 22529 - components: - - type: Transform - pos: -5.5,36.5 - parent: 12 - - uid: 24489 - components: - - type: Transform - pos: 28.5,65.5 - parent: 12 - - uid: 24490 - components: - - type: Transform - pos: 29.5,68.5 - parent: 12 - - uid: 24503 - components: - - type: Transform - pos: 33.5,61.5 - parent: 12 - - uid: 24510 - components: - - type: Transform - pos: 2.5,64.5 - parent: 12 - - uid: 24685 - components: - - type: Transform - pos: -2.5,56.5 - parent: 12 - - uid: 24686 - components: - - type: Transform - pos: -2.5,54.5 - parent: 12 - - uid: 25848 - components: - - type: Transform - pos: 38.5,21.5 - parent: 12 - - uid: 25898 - components: - - type: Transform - pos: 38.5,59.5 - parent: 12 - - uid: 25950 - components: - - type: Transform - pos: -11.5,61.5 - parent: 12 - - uid: 25969 - components: - - type: Transform - pos: -7.5,21.5 - parent: 12 - - uid: 26584 - components: - - 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: 28886 - components: - - type: Transform - pos: 42.5,-42.5 - parent: 12 - - uid: 29324 - components: - - type: Transform - pos: -10.5,-66.5 - parent: 12 - - uid: 29620 - components: - - type: Transform - 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: - - type: Transform - pos: -13.5,-0.5 - parent: 12 - - uid: 31570 - components: - - type: Transform - pos: -13.5,0.5 - parent: 12 -- proto: MaintenanceWeaponSpawner - entities: - - uid: 25849 - components: - - 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 - pos: -28.5,-56.5 - parent: 12 -- proto: MakeshiftShield - entities: - - uid: 4565 - components: - - type: Transform - 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 - components: - - type: Transform - pos: 24.426016,-38.434826 - parent: 12 - - uid: 13508 - components: - - type: Transform - pos: 50.690456,19.586184 - parent: 12 - - uid: 16782 - components: - - type: Transform - pos: -27.484266,15.574583 - parent: 12 - - uid: 24161 - components: - - type: Transform - pos: 61.456078,47.789516 - parent: 12 -- proto: MaterialCloth - entities: - - uid: 20771 - components: - - type: Transform - pos: -33.53433,24.543144 - parent: 12 -- proto: MaterialDurathread - entities: - - uid: 20770 - components: - - type: Transform - pos: -33.443954,20.520542 - parent: 12 -- proto: MatterBinStockPart - entities: - - uid: 31576 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -13.621389,-0.07474756 - parent: 12 -- proto: Mattress - entities: - - uid: 29146 - components: - - type: Transform - pos: -53.5,57.5 - parent: 12 -- proto: MechEquipmentGrabberSmall - entities: - - uid: 30401 - components: - - type: Transform - pos: 61.574314,-18.49609 - parent: 12 -- proto: MedicalBed - entities: - - uid: 2323 - components: - - type: Transform - pos: -46.5,55.5 - parent: 12 - - uid: 2841 - components: - - type: Transform - pos: -10.5,-47.5 - parent: 12 - - uid: 9448 - components: - - type: Transform - pos: -8.5,-48.5 - parent: 12 - - uid: 9604 - components: - - type: Transform - pos: -8.5,-50.5 - parent: 12 - - uid: 10659 - components: - - type: Transform - pos: -10.5,-49.5 - parent: 12 - - uid: 13867 - components: - - type: Transform - pos: 26.5,37.5 - parent: 12 -- proto: MedicalTechFab - entities: - - uid: 9042 - components: - - type: Transform - pos: -2.5,-44.5 - parent: 12 -- proto: MedkitAdvancedFilled - entities: - - uid: 9573 - components: - - type: Transform - pos: 3.7151575,-32.62288 - parent: 12 -- proto: MedkitBruteFilled - entities: - - uid: 6686 - components: - - type: Transform - pos: -5.650505,-52.217426 - parent: 12 - - uid: 7097 - components: - - type: Transform - pos: 11.492401,54.473515 - parent: 12 - - uid: 9265 - components: - - type: Transform - pos: 81.21269,-37.591766 - parent: 12 - - uid: 26220 - components: - - type: Transform - rot: 6.283185307179586 rad - pos: 3.696774,-34.64928 - parent: 12 -- proto: MedkitBurnFilled - entities: - - uid: 26221 - components: - - type: Transform - rot: 6.283185307179586 rad - pos: 3.435855,-34.37186 - parent: 12 - - uid: 28805 - components: - - type: Transform - pos: -9.482759,-47.75731 - parent: 12 -- proto: MedkitCombatFilled - entities: - - uid: 9304 - components: - - type: Transform - pos: -10.5,-37.5 - parent: 12 -- proto: MedkitFilled - entities: - - uid: 2914 - components: - - type: Transform - pos: -5.3651247,-52.535645 - parent: 12 - - uid: 9264 - components: - - type: Transform - pos: 81.68144,-37.623016 - parent: 12 - - uid: 9266 - components: - - type: Transform - pos: 55.495014,-33.44814 - parent: 12 - - uid: 9267 - components: - - type: Transform - pos: 58.67667,-11.65547 - parent: 12 - - uid: 10384 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -24.677053,-2.3467226 - parent: 12 - - uid: 11142 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 11.305514,-35.494328 - parent: 12 - - uid: 17605 - components: - - type: Transform - pos: -53.509552,34.53883 - parent: 12 - - uid: 18991 - components: - - type: Transform - pos: -44.528492,21.940958 - parent: 12 - - uid: 19273 - components: - - type: Transform - pos: -47.168957,54.529835 - parent: 12 - - uid: 20794 - components: - - type: Transform - pos: -37.450832,52.543354 - parent: 12 - - uid: 23435 - components: - - type: Transform - pos: 30.665386,45.27058 - parent: 12 - - uid: 26224 - components: - - type: Transform - pos: -15.4830065,-51.40754 - parent: 12 - - uid: 26225 - components: - - type: Transform - pos: -11.468502,-43.455402 - parent: 12 - - uid: 31161 - components: - - type: Transform - pos: -11.5,-71.5 - parent: 12 - - uid: 31323 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 2.5265818,-66.41522 - parent: 12 -- proto: MedkitOxygenFilled - entities: - - uid: 26222 - components: - - type: Transform - rot: 6.283185307179586 rad - pos: 2.7264805,-34.64928 - parent: 12 - - uid: 30494 - components: - - type: Transform - pos: -19.515518,-47.45431 - parent: 12 -- proto: MedkitRadiationFilled - entities: - - uid: 2915 - components: - - type: Transform - pos: 3.3725653,-32.354176 - parent: 12 -- proto: MedkitToxinFilled - entities: - - uid: 8893 - components: - - type: Transform - pos: -15.556114,-50.51143 - parent: 12 - - uid: 23443 - components: - - type: Transform - pos: 32.672935,51.370567 - parent: 12 - - uid: 26223 - components: - - type: Transform - rot: 6.283185307179586 rad - pos: 2.3631797,-34.325096 - parent: 12 -- proto: MicroManipulatorStockPart - entities: - - uid: 31569 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -13.329722,0.44644773 - parent: 12 -- proto: MicrophoneInstrument - entities: - - uid: 9383 - components: - - type: Transform - pos: 13.551129,36.621197 - parent: 12 - - uid: 22636 - components: - - type: Transform - pos: 13.5,52.5 - parent: 12 -- proto: MicrowaveMachineCircuitboard - entities: - - uid: 12035 - components: - - 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 - components: - - type: Transform - pos: -50.514328,-53.502277 - parent: 12 -- proto: Mirror - entities: - - uid: 60 - components: - - type: Transform - pos: -13.5,52.5 - parent: 12 - - uid: 13485 - components: - - type: Transform - pos: -16.5,52.5 - parent: 12 - - uid: 22706 - components: - - type: Transform - pos: -3.5,54.5 - parent: 12 - - uid: 25518 - components: - - type: Transform - pos: -12.5,52.5 - parent: 12 -- proto: MonkeyCubeWrapped - entities: - - uid: 21391 - components: - - type: Transform - pos: -27.83515,48.63738 - parent: 12 - - uid: 31137 - components: - - type: Transform - pos: -38.52509,-57.482796 - parent: 12 -- proto: MopBucket - entities: - - uid: 28404 - components: - - type: Transform - pos: -27.5,-16.5 - parent: 12 -- proto: MopBucketFull - entities: - - uid: 16564 - components: - - type: Transform - pos: -9.5,25.5 - parent: 12 -- proto: MopItem - entities: - - uid: 12262 - components: - - type: Transform - pos: 46.33525,18.586746 - parent: 12 - - uid: 12263 - components: - - type: Transform - pos: 46.57171,18.661657 - parent: 12 - - uid: 16565 - components: - - type: Transform - pos: -9.5,25.5 - parent: 12 - - uid: 28407 - components: - - type: Transform - pos: -27.546703,-16.535044 - parent: 12 -- proto: Morgue - entities: - - uid: 1364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-40.5 - parent: 12 - - uid: 9395 - components: - - type: Transform - pos: -21.5,-27.5 - parent: 12 - - uid: 10736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-41.5 - parent: 12 - - uid: 10737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-40.5 - parent: 12 - - uid: 10738 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-40.5 - parent: 12 - - uid: 10939 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-44.5 - parent: 12 - - uid: 11000 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-43.5 - parent: 12 - - uid: 11001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-43.5 - parent: 12 - - uid: 11220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-41.5 - parent: 12 - - uid: 12394 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,31.5 - parent: 12 - - uid: 12395 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,30.5 - parent: 12 - - uid: 19216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,54.5 - parent: 12 - - uid: 24437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-39.5 - parent: 12 - - uid: 24472 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-45.5 - parent: 12 - - uid: 26144 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-44.5 - parent: 12 - - uid: 26145 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-41.5 - parent: 12 - - uid: 26148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-43.5 - parent: 12 - - uid: 31077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-44.5 - parent: 12 -- proto: MouseTimedSpawner - entities: - - uid: 890 - components: - - type: Transform - pos: 45.5,25.5 - parent: 12 - - uid: 4200 - components: - - type: Transform - pos: -50.5,-50.5 - parent: 12 - - uid: 13833 - components: - - type: Transform - pos: 38.5,-18.5 - parent: 12 - - uid: 20606 - components: - - type: Transform - pos: 44.5,10.5 - parent: 12 -- proto: Multitool - entities: - - uid: 1941 - components: - - type: Transform - pos: -32.59243,-21.422949 - parent: 12 - - uid: 5915 - components: - - type: Transform - pos: 33.791794,-17.257181 - parent: 12 - - uid: 9105 - components: - - type: Transform - pos: 43.0754,-32.38356 - parent: 12 - - uid: 17609 - components: - - type: Transform - pos: -51.23872,29.37216 - parent: 12 - - uid: 23674 - components: - - type: Transform - pos: 44.380753,51.801037 - parent: 12 - - uid: 23675 - components: - - type: Transform - pos: 44.648354,51.858257 - parent: 12 - - uid: 29744 - components: - - type: Transform - pos: 19.76947,-18.21868 - parent: 12 -- proto: MysteryFigureBox - entities: - - uid: 30384 - components: - - type: Transform - pos: -6.4033923,78.519 - parent: 12 - - uid: 30385 - components: - - type: Transform - pos: -6.424226,78.769 - parent: 12 - - uid: 30386 - components: - - type: Transform - pos: -6.49367,78.421776 - parent: 12 - - uid: 30391 - components: - - type: Transform - pos: -6.5214477,78.65094 - parent: 12 -- proto: NetworkConfigurator - entities: - - uid: 4916 - components: - - type: Transform - parent: 6162 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: NewsReaderCartridge - entities: - - uid: 15798 - components: - - type: Transform - pos: 12.5,36.5 - parent: 12 -- proto: NitrogenCanister - entities: - - uid: 104 - components: - - type: Transform - pos: 55.5,9.5 - parent: 12 - - uid: 2684 - components: - - type: Transform - 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: 8862 - components: - - type: Transform - pos: 81.5,-31.5 - parent: 12 - - uid: 9319 - components: - - 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 - pos: 39.5,25.5 - parent: 12 - - uid: 18104 - components: - - type: Transform - pos: -47.5,40.5 - parent: 12 - - uid: 21501 - components: - - type: Transform - pos: -24.5,18.5 - parent: 12 - - uid: 21507 - components: - - type: Transform - pos: -3.5,11.5 - parent: 12 - - uid: 21616 - components: - - type: Transform - pos: 25.5,11.5 - parent: 12 - - uid: 23132 - components: - - type: Transform - pos: 24.5,-8.5 - parent: 12 - - uid: 23699 - components: - - type: Transform - pos: 30.5,47.5 - parent: 12 - - uid: 23900 - components: - - type: Transform - pos: -3.5,67.5 - parent: 12 - - uid: 25349 - components: - - type: Transform - pos: -20.5,63.5 - parent: 12 - - uid: 26386 - components: - - type: Transform - pos: -2.5,36.5 - parent: 12 - - uid: 26423 - components: - - type: Transform - pos: 3.5,-20.5 - parent: 12 - - uid: 26429 - components: - - 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 -- proto: NitrogenTankFilled - entities: - - uid: 23718 - components: - - type: Transform - pos: 29.894995,45.5396 - parent: 12 - - uid: 30711 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: -17.254229,-61.604137 - parent: 12 - - type: GasTank - toggleActionEntity: 30712 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 30712 -- proto: NitrousOxideCanister - entities: - - uid: 26685 - components: - - type: Transform - pos: 24.5,8.5 - parent: 12 -- proto: NitrousOxideTankFilled - entities: - - uid: 2921 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 2.3387485,-32.616352 - parent: 12 - - type: GasTank - toggleActionEntity: 9757 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 9757 - - uid: 2922 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 2.6443043,-32.630253 - parent: 12 - - type: GasTank - toggleActionEntity: 9827 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 9827 - - uid: 11126 - components: - - type: Transform - rot: -119.380520836412 rad - pos: -19.35744,-30.595646 - parent: 12 - - type: GasTank - toggleActionEntity: 11199 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 11199 - - uid: 30710 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: -17.735298,-61.636753 - parent: 12 - - type: GasTank - toggleActionEntity: 31737 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 31737 -- proto: NodeScanner - entities: - - uid: 9567 - components: - - type: Transform - parent: 9298 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 32092 - components: - - type: Transform - pos: -40.4218,-39.469913 - parent: 12 -- proto: NoticeBoard - entities: - - uid: 13304 - components: - - type: Transform - pos: 43.5,40.5 - parent: 12 - - uid: 13966 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,30.5 - parent: 12 - - uid: 15179 - components: - - type: Transform - pos: 27.5,52.5 - parent: 12 - - uid: 15180 - components: - - type: Transform - pos: 29.5,61.5 - parent: 12 - - uid: 18879 - components: - - type: Transform - pos: -35.5,20.5 - parent: 12 - - uid: 24177 - components: - - type: Transform - pos: 57.5,46.5 - parent: 12 -- proto: NTDefaultCircuitBoard - entities: - - uid: 28854 - components: - - type: Transform - pos: -2.6434512,-0.42511737 - parent: 12 -- proto: NuclearBomb - entities: - - uid: 21066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,9.5 - parent: 12 -- proto: NuclearBombKeg - entities: - - uid: 29046 - components: - - type: Transform - pos: -54.5,70.5 - parent: 12 -- proto: NutimovCircuitBoard - entities: - - uid: 28855 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 2.6622753,-15.619799 - parent: 12 -- proto: OperatingTable - entities: - - uid: 1825 - components: - - type: Transform - pos: -43.5,-47.5 - parent: 12 - - uid: 2783 - components: - - 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 - pos: 5.5,-38.5 - parent: 12 - - uid: 9553 - components: - - type: Transform - pos: -19.5,-29.5 - parent: 12 - - uid: 9661 - components: - - type: Transform - pos: -3.5,-38.5 - parent: 12 - - uid: 30292 - components: - - type: Transform - pos: -4.5,-34.5 - parent: 12 -- proto: OreBox - entities: - - uid: 4712 - components: - - type: Transform - pos: 75.5,-37.5 - parent: 12 -- proto: OreProcessor - entities: - - uid: 1981 - components: - - type: Transform - pos: 56.5,-25.5 - parent: 12 -- proto: OxygenCanister - entities: - - uid: 94 - components: - - 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 - pos: -54.5,-29.5 - parent: 12 - - uid: 3690 - components: - - type: Transform - pos: 27.5,11.5 - parent: 12 - - uid: 5404 - components: - - type: Transform - pos: -30.5,-13.5 - parent: 12 - - uid: 7125 - components: - - type: Transform - pos: 55.5,8.5 - parent: 12 - - uid: 7236 - components: - - type: Transform - pos: 26.5,12.5 - parent: 12 - - uid: 7334 - components: - - type: Transform - pos: 39.5,-17.5 - parent: 12 - - uid: 8861 - components: - - type: Transform - pos: 81.5,-32.5 - parent: 12 - - uid: 16456 - components: - - type: Transform - pos: -8.5,6.5 - parent: 12 - - uid: 18103 - components: - - type: Transform - pos: -49.5,44.5 - parent: 12 - - uid: 21500 - components: - - type: Transform - pos: -24.5,19.5 - parent: 12 - - uid: 21520 - components: - - type: Transform - pos: -2.5,11.5 - parent: 12 - - uid: 23361 - components: - - type: Transform - pos: 24.5,-10.5 - parent: 12 - - uid: 23698 - components: - - type: Transform - pos: 29.5,47.5 - parent: 12 - - uid: 23901 - components: - - type: Transform - pos: -2.5,67.5 - parent: 12 - - uid: 25348 - components: - - type: Transform - pos: -20.5,62.5 - parent: 12 - - uid: 26385 - components: - - type: Transform - pos: -2.5,37.5 - parent: 12 - - uid: 26424 - components: - - type: Transform - pos: 2.5,-20.5 - parent: 12 - - uid: 26431 - components: - - type: Transform - pos: 1.5,-20.5 - parent: 12 - - uid: 26623 - components: - - type: Transform - pos: 27.5,12.5 - parent: 12 - - uid: 26960 - components: - - type: Transform - 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 -- proto: OxygenTankFilled - entities: - - uid: 23717 - components: - - type: Transform - pos: 30.165138,45.510162 - parent: 12 - - type: GasTank - toggleActionEntity: 12128 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 12128 - - uid: 30713 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: -17.246075,-61.22907 - parent: 12 - - type: GasTank - toggleActionEntity: 31738 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 31738 -- proto: PackPaperRollingFilters - entities: - - uid: 21235 - components: - - type: Transform - pos: -25.637772,44.41958 - parent: 12 -- proto: PaintingAmogusTriptych - entities: - - uid: 6210 - components: - - type: Transform - pos: -35.5,-16.5 - parent: 12 -- proto: PaintingCafeTerraceAtNight - entities: - - uid: 5951 - components: - - type: Transform - pos: 45.5,-38.5 - parent: 12 -- proto: PaintingMonkey - entities: - - uid: 8482 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,52.5 - parent: 12 -- proto: PaintingSadClown - entities: - - uid: 22891 - components: - - type: Transform - pos: 3.5,60.5 - parent: 12 -- proto: PaintingSkeletonBoof - entities: - - uid: 9146 - components: - - type: Transform - pos: 47.5,-40.5 - parent: 12 - - uid: 12938 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,21.5 - parent: 12 -- proto: PaintingTheSonOfMan - entities: - - uid: 26944 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-12.5 - parent: 12 -- proto: Paper - entities: - - uid: 3493 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: -16.463318,-61.498142 - parent: 12 - - type: Paper - content: >+ - [head=2]Standard output pressures for different tanks:[/head] - - ───────────────────────────────────────── - - [color=blue]Oxygen tank[/color] - 21.3 kPA - - [color=red]Nitrogen tank[/color] - 21.3 kPA - - Air tank - 101.3 kPA - - Nitrous oxide tank - 30.4 kPA - - [color=orange]Plasma tank[/color] - 101.3 kPA - - [color=red]Fun[/color][color=orange]ny e[/color][color=yellow]merg[/color][color=green]ency[/color][color=blue] oxy[/color][color=purple]gen [/color][color=pink]tank[/color] - 22.4 kPA - - - - [color=#AAAAAA]Note: The output pressures for the emergency, double, and extended-capacity versions of tanks are the same as their counterparts, with the exception of the funny emergency oxygen tank.[/color] - - - - - - - - uid: 13513 - components: - - type: Transform - pos: 54.333927,24.618994 - parent: 12 - - uid: 26645 - components: - - type: Transform - pos: 58.5,6.5 - parent: 12 - - type: Paper - content: >- - Notes to self: - - - - [bold]BUILD METEOR DEFENCE FOR TESLA!!![/bold] - - - Don't put tesla coils or grounding rods near the emitters - - - Tesla coils need to be hooked up to HV to generate power, emitters need to be hooked up to MV to work - - - Make sure [bold]ALL[/bold] the emitters and containment field generators are turned on and locked before starting the tesla - - - Turn off the PA after the tesla starts - - - Remember to repair tesla coils and grounding rods using welding fuel - - - Don't put the emitters too close to the tesla, don't put the tesla coils too far from the tesla - - - 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 - pos: 29.532839,4.411601 - parent: 12 - - type: Paper - content: >+ - [head=2]Standard output pressures for different tanks:[/head] - - ───────────────────────────────────────── - - [color=blue]Oxygen tank[/color] - 21.3 kPA - - [color=red]Nitrogen tank[/color] - 21.3 kPA - - Air tank - 101.3 kPA - - Nitrous oxide tank - 30.4 kPA - - [color=orange]Plasma tank[/color] - 101.3 kPA - - [color=red]Fun[/color][color=orange]ny e[/color][color=yellow]merg[/color][color=green]ency[/color][color=blue] oxy[/color][color=purple]gen [/color][color=pink]tank[/color] - 22.4 kPA - - - - [color=#AAAAAA]Note: The output pressures for the emergency, double, and extended-capacity versions of tanks are the same as their counterparts, with the exception of the funny emergency oxygen tank.[/color] - - - - - - - - - - - - - - - - - - - - - - - - - - - - uid: 31763 - components: - - type: Transform - pos: 33.828316,-23.429617 - parent: 12 - - type: Paper - content: >+ - [head=2]Standard output pressures for different tanks:[/head] - - ───────────────────────────────────────── - - [color=blue]Oxygen tank[/color] - 21.3 kPA - - [color=red]Nitrogen tank[/color] - 21.3 kPA - - Air tank - 101.3 kPA - - Nitrous oxide tank - 30.4 kPA - - [color=orange]Plasma tank[/color] - 101.3 kPA - - [color=red]Fun[/color][color=orange]ny e[/color][color=yellow]merg[/color][color=green]ency[/color][color=blue] oxy[/color][color=purple]gen [/color][color=pink]tank[/color] - 22.4 kPA - - - - [color=#AAAAAA]Note: The output pressures for the emergency, double, and extended-capacity versions of tanks are the same as their counterparts, with the exception of the funny emergency oxygen tank.[/color] - - - - - - - - uid: 31769 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: 8.424925,-10.727966 - parent: 12 - - type: Paper - content: >+ - [head=2]Standard output pressures for different tanks:[/head] - - ───────────────────────────────────────── - - [color=blue]Oxygen tank[/color] - 21.3 kPA - - [color=red]Nitrogen tank[/color] - 21.3 kPA - - Air tank - 101.3 kPA - - Nitrous oxide tank - 30.4 kPA - - [color=orange]Plasma tank[/color] - 101.3 kPA - - [color=red]Fun[/color][color=orange]ny e[/color][color=yellow]merg[/color][color=green]ency[/color][color=blue] oxy[/color][color=purple]gen [/color][color=pink]tank[/color] - 22.4 kPA - - - - [color=#AAAAAA]Note: The output pressures for the emergency, double, and extended-capacity versions of tanks are the same as their counterparts, with the exception of the funny emergency oxygen tank.[/color] - - - - - - - - - - - - - - - - - - - - - - - - - - -- proto: PaperBin10 - entities: - - uid: 6827 - components: - - type: Transform - pos: 21.5,-38.5 - parent: 12 - - uid: 11471 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,56.5 - parent: 12 - - uid: 12408 - components: - - type: Transform - pos: 37.5,27.5 - parent: 12 - - uid: 13180 - components: - - type: Transform - pos: 37.5,38.5 - parent: 12 - - uid: 13314 - components: - - type: Transform - pos: 45.5,28.5 - parent: 12 - - uid: 13315 - components: - - type: Transform - pos: 56.5,36.5 - parent: 12 - - uid: 13316 - components: - - type: Transform - pos: 55.5,29.5 - parent: 12 - - uid: 13621 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,30.5 - parent: 12 - - uid: 13709 - components: - - type: Transform - pos: 18.5,27.5 - parent: 12 - - uid: 16659 - components: - - type: Transform - pos: 29.5,40.5 - parent: 12 - - uid: 23583 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,56.5 - parent: 12 - - uid: 23617 - components: - - type: Transform - pos: 18.5,68.5 - parent: 12 - - uid: 25865 - components: - - type: Transform - pos: 52.5,48.5 - parent: 12 - - uid: 25941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,39.5 - parent: 12 - - uid: 26278 - components: - - type: Transform - pos: 7.5,56.5 - parent: 12 -- proto: PaperBin20 - entities: - - uid: 2111 - components: - - type: Transform - pos: -44.5,22.5 - parent: 12 - - uid: 3783 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-60.5 - parent: 12 - - uid: 4067 - components: - - type: Transform - pos: -21.5,-37.5 - parent: 12 - - uid: 5317 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-11.5 - parent: 12 - - uid: 8733 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-23.5 - parent: 12 - - uid: 17796 - components: - - type: Transform - pos: -54.5,28.5 - parent: 12 - - uid: 18683 - components: - - type: Transform - pos: -34.5,24.5 - parent: 12 - - uid: 30280 - components: - - type: Transform - pos: -14.5,73.5 - parent: 12 -- proto: PaperBin5 - entities: - - uid: 2104 - components: - - type: Transform - pos: -28.5,-29.5 - parent: 12 - - uid: 6793 - components: - - type: Transform - pos: -38.5,-24.5 - parent: 12 - - uid: 9103 - components: - - type: Transform - pos: 42.5,-32.5 - parent: 12 - - uid: 16704 - components: - - type: Transform - pos: -21.5,1.5 - parent: 12 - - uid: 16778 - components: - - type: Transform - pos: -44.5,17.5 - parent: 12 - - uid: 16780 - components: - - type: Transform - pos: -27.5,14.5 - parent: 12 - - uid: 21284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,43.5 - parent: 12 - - uid: 21367 - components: - - type: Transform - pos: -28.5,48.5 - parent: 12 - - uid: 21416 - components: - - type: Transform - pos: -34.5,37.5 - parent: 12 - - uid: 21447 - components: - - type: Transform - pos: -34.5,29.5 - parent: 12 - - uid: 21448 - components: - - type: Transform - pos: -38.5,32.5 - parent: 12 - - uid: 21609 - components: - - type: Transform - pos: -22.5,41.5 - parent: 12 - - uid: 30477 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,25.5 - parent: 12 - - uid: 31565 - components: - - type: Transform - pos: -13.5,-1.5 - parent: 12 -- proto: PaperCaptainsThoughts - entities: - - uid: 17410 - components: - - type: Transform - pos: -49.34249,21.364584 - parent: 12 - - uid: 17411 - components: - - type: Transform - pos: -49.46749,21.489584 - parent: 12 - - uid: 17412 - components: - - type: Transform - pos: -49.62374,21.614584 - parent: 12 -- proto: PaperCNCSheet - entities: - - uid: 30388 - components: - - type: Transform - pos: -6.8374147,78.039825 - parent: 12 - - uid: 30389 - components: - - type: Transform - pos: -6.684637,77.921776 - parent: 12 - - uid: 30390 - components: - - type: Transform - pos: -6.8304706,77.74122 - parent: 12 - - uid: 30392 - components: - - type: Transform - pos: -6.698526,77.58844 - parent: 12 -- proto: ParticleAcceleratorControlBoxUnfinished - entities: - - uid: 26740 - components: - - type: Transform - pos: 59.5,3.5 - parent: 12 -- proto: ParticleAcceleratorEmitterForeUnfinished - entities: - - uid: 24689 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,4.5 - parent: 12 -- proto: ParticleAcceleratorEmitterPortUnfinished - entities: - - uid: 26074 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,5.5 - parent: 12 -- proto: ParticleAcceleratorEmitterStarboardUnfinished - entities: - - uid: 26491 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,3.5 - parent: 12 -- proto: ParticleAcceleratorEndCapUnfinished - entities: - - uid: 9680 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,4.5 - parent: 12 -- proto: ParticleAcceleratorFuelChamberUnfinished - entities: - - uid: 9703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,4.5 - parent: 12 -- proto: ParticleAcceleratorPowerBoxUnfinished - entities: - - uid: 26487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,4.5 - parent: 12 -- proto: PartRodMetal - entities: - - uid: 4993 - components: - - type: Transform - pos: -26.494234,-9.407438 - parent: 12 - - uid: 5907 - components: - - type: Transform - pos: 35.5,-17.5 - parent: 12 - - uid: 8436 - components: - - type: Transform - pos: 62.479317,0.5426928 - parent: 12 - - uid: 16482 - components: - - type: Transform - pos: -8.548462,5.6872296 - parent: 12 - - uid: 24321 - components: - - type: Transform - pos: 61.511738,0.5318135 - parent: 12 - - uid: 25200 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 59.62378,12.4487915 - parent: 12 - - uid: 27059 - components: - - type: Transform - pos: 61.65307,0.4937364 - parent: 12 -- proto: Pen - entities: - - uid: 1841 - components: - - type: Transform - pos: -46.402626,-48.51872 - parent: 12 - - uid: 3784 - components: - - type: Transform - pos: -19.997763,-60.648838 - parent: 12 - - uid: 3785 - components: - - type: Transform - pos: -20.034454,-60.336956 - parent: 12 - - uid: 4068 - components: - - type: Transform - pos: -21.362625,-37.47085 - parent: 12 - - uid: 6791 - components: - - type: Transform - pos: -38.647415,-23.440395 - parent: 12 - - uid: 6792 - components: - - type: Transform - pos: -38.334915,-23.409145 - parent: 12 - - uid: 6883 - components: - - type: Transform - pos: 21.56664,-38.216076 - parent: 12 - - uid: 6884 - components: - - type: Transform - pos: 22.957266,-38.38795 - parent: 12 - - uid: 7347 - components: - - type: Transform - pos: -38.533905,56.632656 - parent: 12 - - uid: 8736 - components: - - type: Transform - rot: -87.96459430051418 rad - pos: 53.339428,-23.336298 - parent: 12 - - uid: 12409 - components: - - type: Transform - pos: 37.61414,27.559998 - parent: 12 - - uid: 13091 - components: - - type: Transform - pos: 37.715664,38.27915 - parent: 12 - - uid: 13326 - components: - - type: Transform - pos: 45.537434,28.732935 - parent: 12 - - uid: 13327 - components: - - type: Transform - pos: 54.353508,27.618351 - parent: 12 - - uid: 13328 - components: - - type: Transform - pos: 54.603508,27.607935 - parent: 12 - - uid: 13329 - components: - - type: Transform - pos: 54.822258,27.618351 - parent: 12 - - uid: 13330 - components: - - type: Transform - pos: 55.259758,29.805851 - parent: 12 - - uid: 13331 - components: - - type: Transform - pos: 55.353508,29.535017 - parent: 12 - - uid: 13332 - components: - - type: Transform - pos: 55.686844,29.774601 - parent: 12 - - uid: 13333 - components: - - type: Transform - pos: 55.718094,29.524601 - parent: 12 - - uid: 13335 - components: - - type: Transform - pos: 56.98374,36.64035 - parent: 12 - - uid: 13622 - components: - - type: Transform - pos: 30.593468,30.619232 - parent: 12 - - uid: 13710 - components: - - type: Transform - pos: 18.464907,27.638622 - parent: 12 - - uid: 13835 - components: - - type: Transform - pos: 29.67214,40.62013 - parent: 12 - - uid: 16706 - components: - - type: Transform - pos: -21.566206,1.5531726 - parent: 12 - - uid: 16707 - components: - - type: Transform - pos: -21.517284,1.7366314 - parent: 12 - - uid: 16779 - components: - - type: Transform - pos: -44.358448,17.56817 - parent: 12 - - uid: 18872 - components: - - type: Transform - pos: -43.378246,21.468042 - parent: 12 - - uid: 18882 - components: - - type: Transform - pos: -44.512817,22.602764 - parent: 12 - - uid: 21285 - components: - - type: Transform - pos: -19.5,43.5 - parent: 12 - - uid: 21368 - components: - - type: Transform - pos: -28.436113,48.60343 - parent: 12 - - uid: 21417 - components: - - type: Transform - pos: -34.525772,37.60193 - parent: 12 - - uid: 21449 - components: - - type: Transform - pos: -29.492504,30.512491 - parent: 12 - - uid: 21450 - components: - - type: Transform - pos: -36.673607,32.662098 - parent: 12 - - uid: 21451 - components: - - type: Transform - pos: -36.307465,32.614857 - parent: 12 - - uid: 21610 - components: - - type: Transform - pos: -22.35333,41.503937 - parent: 12 - - uid: 23585 - components: - - type: Transform - pos: 22.733524,56.550713 - parent: 12 - - uid: 23616 - components: - - type: Transform - pos: 18.49877,68.51163 - parent: 12 - - uid: 25866 - components: - - type: Transform - pos: 52.62176,48.15189 - parent: 12 - - uid: 26839 - components: - - type: Transform - pos: 47.53334,-11.330042 - parent: 12 - - uid: 30422 - components: - - type: Transform - pos: -7.091517,77.40156 - parent: 12 - - uid: 30423 - components: - - type: Transform - pos: -7.30448,77.364525 - parent: 12 - - uid: 30424 - components: - - type: Transform - pos: -6.4109616,78.03119 - parent: 12 - - uid: 30425 - components: - - type: Transform - pos: -6.30448,78.15156 - parent: 12 - - uid: 31566 - components: - - type: Transform - pos: -13.491534,-1.3459735 - parent: 12 -- proto: PersonalAI - entities: - - uid: 30420 - components: - - type: Transform - pos: -13.388701,73.01164 - parent: 12 -- proto: PetCarrier - entities: - - uid: 31484 - components: - - type: Transform - pos: 13.5,-33.5 - parent: 12 - - uid: 31485 - components: - - type: Transform - pos: 13.5,-33.5 - parent: 12 -- proto: PhoneInstrument - entities: - - uid: 17615 - components: - - type: Transform - pos: -53.353302,28.767994 - parent: 12 -- proto: Pickaxe - entities: - - uid: 5757 - components: - - type: Transform - pos: 80.48963,-27.540907 - parent: 12 - - uid: 28459 - components: - - type: Transform - pos: 80.58136,-27.706018 - parent: 12 -- proto: PillBicaridine - entities: - - uid: 13842 - components: - - type: Transform - pos: 29.977695,40.521294 - parent: 12 -- proto: PillCanister - entities: - - uid: 4084 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -20.999166,-37.583794 - parent: 12 - - uid: 25904 - components: - - type: Transform - pos: -13.744402,56.749714 - parent: 12 -- proto: PillCanisterBicaridine - entities: - - uid: 4083 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -20.684351,-37.412376 - parent: 12 -- proto: PillCanisterDylovene - entities: - - uid: 7003 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 39.69049,63.733433 - parent: 12 -- proto: PillCanisterKelotane - entities: - - uid: 4082 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -20.309351,-37.44481 - parent: 12 -- proto: PillCanisterTricordrazine - entities: - - uid: 3790 - components: - - type: Transform - pos: -21.667892,-60.327053 - parent: 12 - - uid: 4081 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -20.503796,-37.630123 - parent: 12 - - uid: 13839 - components: - - type: Transform - pos: 30.486954,40.50585 - parent: 12 -- proto: PillDexalin - entities: - - uid: 3538 - components: - - type: Transform - pos: 30.19683,40.749847 - parent: 12 -- proto: PillDylovene - entities: - - uid: 267 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 40.08187,63.78239 - parent: 12 - - uid: 1884 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 39.82095,63.456013 - parent: 12 - - uid: 13841 - components: - - type: Transform - rot: -62.83185307179591 rad - pos: 29.933493,40.707184 - parent: 12 -- proto: PillKelotane - entities: - - uid: 13840 - components: - - type: Transform - pos: 30.579548,40.74367 - parent: 12 -- proto: PillPotassiumIodide - entities: - - uid: 2871 - components: - - type: Transform - pos: 30.236954,40.57689 - parent: 12 -- proto: PillSpaceDrugs - entities: - - uid: 527 - components: - - type: Transform - pos: -23.52328,-58.4375 - parent: 12 - - uid: 3791 - components: - - type: Transform - pos: -23.435516,-58.41262 - parent: 12 - - uid: 9803 - components: - - type: Transform - pos: -23.476404,-58.359375 - parent: 12 - - uid: 9804 - components: - - 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 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 40.21233,63.36626 - parent: 12 -- proto: PinpointerNuclear - entities: - - uid: 17379 - components: - - type: Transform - pos: -52.184612,16.428455 - parent: 12 -- proto: PlantBag - entities: - - uid: 24132 - components: - - type: Transform - pos: 61.46681,50.381474 - parent: 12 - - uid: 24133 - components: - - type: Transform - pos: 61.68556,50.74085 - parent: 12 - - uid: 25869 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 59.580013,58.541615 - parent: 12 -- proto: PlaqueAtmos - entities: - - uid: 26842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,6.5 - parent: 12 -- proto: PlasmaCanister - entities: - - uid: 729 - components: - - type: Transform - pos: -48.5,-35.5 - parent: 12 - - uid: 2028 - components: - - type: Transform - pos: 12.5,12.5 - parent: 12 - - uid: 4973 - components: - - type: Transform - pos: -50.5,-34.5 - parent: 12 - - uid: 5636 - components: - - 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 - pos: 27.5,7.5 - parent: 12 - - uid: 26426 - components: - - type: Transform - pos: 27.5,6.5 - parent: 12 - - uid: 31158 - components: - - type: Transform - pos: 27.5,8.5 - parent: 12 -- proto: PlasticFlapsAirtightClear - entities: - - uid: 7764 - components: - - type: Transform - pos: 59.5,-15.5 - parent: 12 - - uid: 7765 - components: - - type: Transform - pos: 59.5,-13.5 - parent: 12 - - uid: 7769 - components: - - type: Transform - pos: 64.5,-16.5 - parent: 12 - - uid: 7770 - components: - - type: Transform - pos: 64.5,-12.5 - parent: 12 - - uid: 9122 - components: - - type: Transform - pos: 60.5,-37.5 - parent: 12 - - uid: 12084 - components: - - type: Transform - pos: 55.5,17.5 - parent: 12 - - uid: 12250 - components: - - type: Transform - pos: 53.5,17.5 - parent: 12 - - uid: 12609 - components: - - type: Transform - pos: 59.5,40.5 - parent: 12 -- proto: PlasticFlapsClear - entities: - - uid: 7810 - components: - - type: Transform - pos: 46.5,-21.5 - parent: 12 - - uid: 7816 - components: - - type: Transform - pos: 47.5,-21.5 - parent: 12 - - uid: 11511 - components: - - type: Transform - pos: 39.5,15.5 - parent: 12 - - uid: 22293 - components: - - type: Transform - pos: 35.5,6.5 - parent: 12 -- proto: PlasticFlapsOpaque - entities: - - uid: 12141 - components: - - 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 - components: - - type: Transform - pos: -0.5,2.5 - parent: 12 -- proto: Plunger - entities: - - uid: 22413 - components: - - type: Transform - pos: -4.562684,53.551655 - parent: 12 -- proto: PlushieArachind - entities: - - uid: 9469 - components: - - type: Transform - pos: 58.5,62.5 - parent: 12 -- proto: PlushieAtmosian - entities: - - uid: 25661 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 10.447776,2.5438957 - parent: 12 - - uid: 27187 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 27.557964,19.49243 - parent: 12 - - uid: 32094 - components: - - type: Transform - pos: 57.5,64.5 - parent: 12 -- proto: PlushieBee - entities: - - uid: 4061 - components: - - type: Transform - pos: -11.497921,-39.532074 - parent: 12 - - uid: 4062 - components: - - type: Transform - pos: -42.47864,-19.642271 - parent: 12 - - uid: 22198 - components: - - type: Transform - pos: -0.7321365,28.633253 - parent: 12 -- proto: PlushieCarp - entities: - - uid: 13016 - components: - - type: Transform - pos: 12.093465,-31.011778 - parent: 12 -- proto: PlushieDiona - entities: - - uid: 32102 - components: - - 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 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -14.535929,64.77337 - parent: 12 - - uid: 14935 - components: - - type: Transform - pos: -19.654827,23.422731 - parent: 12 - - uid: 32103 - components: - - type: Transform - pos: 56.5,64.5 - parent: 12 -- proto: PlushiePenguin - entities: - - uid: 16578 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -11.731569,-12.627775 - parent: 12 -- proto: PlushieSharkBlue - entities: - - uid: 4060 - components: - - type: Transform - pos: -20.670073,-59.710148 - parent: 12 - - uid: 30222 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -2.5359287,58.81089 - parent: 12 -- proto: PlushieSpaceLizard - entities: - - uid: 26670 - components: - - type: Transform - pos: -3.4178286,7.476963 - parent: 12 -- proto: PlushieVox - entities: - - uid: 32098 - components: - - type: Transform - pos: 55.5,63.5 - parent: 12 -- proto: PortableFlasher - entities: - - uid: 21069 - components: - - type: Transform - pos: -42.5,38.5 - parent: 12 - - uid: 21070 - components: - - type: Transform - pos: -41.5,38.5 - parent: 12 -- proto: PortableGeneratorJrPacman - entities: - - uid: 2978 - components: - - type: Transform - pos: 40.5,59.5 - parent: 12 - - uid: 4707 - components: - - type: Transform - pos: 37.5,-18.5 - parent: 12 - - uid: 6970 - components: - - type: Transform - pos: -55.5,-37.5 - parent: 12 - - uid: 11324 - components: - - type: Transform - pos: -48.5,50.5 - parent: 12 - - uid: 12025 - components: - - 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 - pos: 40.5,25.5 - parent: 12 - - uid: 17964 - components: - - type: Transform - pos: -19.5,73.5 - parent: 12 - - uid: 26163 - components: - - type: Transform - pos: 15.5,-19.5 - parent: 12 - - uid: 26506 - components: - - type: Transform - pos: -35.5,-10.5 - parent: 12 - - uid: 28278 - components: - - type: Transform - anchored: True - pos: -27.5,-14.5 - parent: 12 - - type: Physics - bodyType: Static - - uid: 29345 - components: - - type: Transform - pos: 3.5,-47.5 - parent: 12 -- proto: PortableGeneratorJrPacmanMachineCircuitboard - entities: - - uid: 5347 - components: - - type: Transform - pos: 48.452156,51.136806 - parent: 12 -- proto: PortableGeneratorPacman - entities: - - uid: 2116 - components: - - type: Transform - anchored: True - pos: -2.5,-2.5 - parent: 12 - - type: Physics - bodyType: Static - - uid: 2419 - components: - - type: Transform - anchored: True - 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 - components: - - type: Transform - anchored: True - pos: 8.5,-13.5 - parent: 12 - - type: Physics - bodyType: Static -- proto: PortableScrubber - entities: - - uid: 1760 - components: - - type: Transform - pos: -37.5,-41.5 - parent: 12 - - uid: 1768 - components: - - type: Transform - pos: -20.5,-23.5 - parent: 12 - - uid: 1773 - components: - - type: Transform - pos: -39.5,-30.5 - parent: 12 - - uid: 5274 - components: - - type: Transform - pos: 4.5,-18.5 - parent: 12 - - uid: 11929 - components: - - type: Transform - pos: 21.5,7.5 - parent: 12 - - uid: 12631 - components: - - type: Transform - pos: 33.5,47.5 - parent: 12 - - uid: 16570 - components: - - type: Transform - pos: -11.5,24.5 - parent: 12 - - uid: 18161 - components: - - type: Transform - pos: -47.5,47.5 - parent: 12 - - uid: 21499 - components: - - type: Transform - pos: -24.5,20.5 - parent: 12 - - uid: 23702 - components: - - type: Transform - pos: 32.5,47.5 - parent: 12 - - uid: 24995 - components: - - type: Transform - pos: -18.5,59.5 - parent: 12 - - uid: 25480 - components: - - type: Transform - pos: 22.5,7.5 - parent: 12 - - uid: 26548 - components: - - type: Transform - pos: 25.5,-14.5 - parent: 12 - - uid: 26635 - components: - - type: Transform - pos: 24.5,-14.5 - parent: 12 -- proto: PosterBroken - entities: - - uid: 12228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,18.5 - parent: 12 - - uid: 12229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,11.5 - parent: 12 - - uid: 14218 - components: - - type: Transform - pos: 37.5,61.5 - parent: 12 - - uid: 27888 - components: - - type: Transform - pos: 31.5,25.5 - parent: 12 - - uid: 30999 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-50.5 - parent: 12 - - uid: 31344 - components: - - type: Transform - pos: -3.5,-64.5 - parent: 12 -- proto: PosterContrabandAtmosiaDeclarationIndependence - entities: - - uid: 23 - components: - - 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 - components: - - type: Transform - pos: -47.5,-13.5 - parent: 12 -- proto: PosterContrabandClown - entities: - - uid: 22704 - components: - - type: Transform - pos: 6.5,55.5 - parent: 12 -- proto: PosterContrabandCommunistState - entities: - - uid: 31373 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-62.5 - parent: 12 - - uid: 31378 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-58.5 - parent: 12 -- proto: PosterContrabandEAT - entities: - - uid: 8766 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,59.5 - parent: 12 -- proto: PosterContrabandEnlistGorlex - entities: - - uid: 28268 - components: - - 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: 2907 - components: - - type: Transform - pos: 61.5,-0.5 - parent: 12 - - uid: 29139 - components: - - type: Transform - pos: -35.5,79.5 - parent: 12 -- proto: PosterContrabandHighEffectEngineering - entities: - - uid: 16356 - components: - - type: Transform - pos: 61.5,13.5 - parent: 12 -- proto: PosterContrabandInterdyne - entities: - - uid: 6802 - components: - - type: Transform - pos: 46.5,65.5 - parent: 12 -- proto: PosterContrabandLamarr - entities: - - uid: 21975 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-25.5 - parent: 12 -- proto: PosterContrabandMissingGloves - entities: - - uid: 10404 - components: - - 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 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-7.5 - parent: 12 -- proto: PosterContrabandPunchShit - entities: - - uid: 31343 - components: - - type: Transform - pos: -7.5,-65.5 - parent: 12 -- proto: PosterContrabandRevolt - entities: - - uid: 31341 - components: - - type: Transform - pos: -5.5,-67.5 - parent: 12 -- proto: PosterContrabandRevolver - entities: - - uid: 31342 - components: - - 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 - components: - - 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 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-36.5 - parent: 12 - - uid: 24136 - components: - - type: Transform - 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 - components: - - type: Transform - pos: -13.5,64.5 - parent: 12 -- proto: PosterLegitCleanliness - entities: - - uid: 23569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,61.5 - 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 - components: - - type: Transform - pos: -2.5,57.5 - parent: 12 -- proto: PosterLegitFruitBowl - entities: - - uid: 28712 - components: - - type: Transform - pos: 51.5,7.5 - parent: 12 -- proto: PosterLegitHelpOthers - entities: - - uid: 8299 - components: - - type: Transform - 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 - components: - - type: Transform - pos: -5.5,59.5 - parent: 12 -- proto: PosterLegitMime - entities: - - uid: 22722 - components: - - type: Transform - pos: 2.5,57.5 - parent: 12 -- proto: PosterLegitNTTGC - entities: - - uid: 30227 - components: - - type: Transform - pos: -1.5,64.5 - parent: 12 -- proto: PosterLegitObey - entities: - - uid: 20834 - components: - - type: Transform - pos: -42.5,37.5 - parent: 12 -- proto: PosterLegitPeriodicTable - entities: - - uid: 4186 - components: - - type: Transform - pos: 41.5,63.5 - parent: 12 - - uid: 11336 - components: - - type: Transform - pos: -33.5,-40.5 - parent: 12 -- proto: PosterLegitSafetyEyeProtection - entities: - - uid: 11334 - components: - - type: Transform - pos: 28.5,1.5 - parent: 12 - - uid: 31910 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-3.5 - parent: 12 -- proto: PosterLegitSafetyInternals - entities: - - uid: 11337 - components: - - type: Transform - pos: -20.5,-1.5 - parent: 12 - - uid: 22149 - components: - - type: Transform - pos: 63.5,-3.5 - parent: 12 -- proto: PosterLegitSafetyMothHardhat - entities: - - uid: 898 - components: - - type: Transform - pos: -25.5,-10.5 - parent: 12 - - uid: 11304 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-14.5 - parent: 12 - - uid: 22542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-5.5 - parent: 12 -- proto: PosterLegitSafetyMothMeth - entities: - - uid: 30887 - components: - - type: Transform - pos: 45.5,61.5 - parent: 12 -- proto: PosterLegitSafetyMothPiping - entities: - - uid: 26648 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-14.5 - parent: 12 -- proto: PosterLegitScience - entities: - - uid: 1956 - components: - - type: Transform - pos: -35.5,-25.5 - parent: 12 - - uid: 1957 - components: - - 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 - components: - - type: Transform - pos: -24.5,1.5 - parent: 12 -- proto: PosterLegitStateLaws - entities: - - uid: 31350 - components: - - type: Transform - pos: 3.5,-4.5 - parent: 12 -- proto: PotatoSeeds - entities: - - uid: 31468 - components: - - type: Transform - pos: 6.5320144,-61.325264 - parent: 12 - - uid: 31469 - components: - - type: Transform - pos: 5.5015607,-62.495205 - parent: 12 - - uid: 31470 - components: - - type: Transform - rot: 4.440892098500626E-16 rad - pos: 6.508507,-59.615746 - parent: 12 -- proto: PottedPlant1 - entities: - - uid: 30419 - components: - - type: Transform - pos: -6.5,71.5 - parent: 12 -- proto: PottedPlant2 - entities: - - uid: 4059 - components: - - type: Transform - pos: -23.5,-58.5 - parent: 12 - - uid: 5864 - components: - - type: Transform - pos: 22.5,-23.5 - parent: 12 - - uid: 17420 - components: - - type: Transform - pos: -50.5,18.5 - parent: 12 - - uid: 18880 - components: - - type: Transform - pos: -41.5,25.5 - parent: 12 -- proto: PottedPlant27 - entities: - - uid: 2530 - components: - - type: Transform - pos: -23.5,-33.5 - parent: 12 - - uid: 21333 - components: - - type: Transform - pos: -10.5,-33.5 - parent: 12 -- proto: PottedPlant28 - entities: - - uid: 21334 - components: - - type: Transform - pos: -10.5,-35.5 - parent: 12 -- proto: PottedPlant6 - entities: - - uid: 2001 - components: - - type: Transform - pos: -35.5,-28.5 - parent: 12 -- proto: PottedPlantBioluminscent - entities: - - uid: 26275 - components: - - type: Transform - pos: -12.5,-54.5 - parent: 12 - - uid: 26616 - components: - - type: Transform - pos: -23.5,-49.5 - parent: 12 -- proto: PottedPlantRandom - entities: - - uid: 8484 - components: - - type: Transform - pos: 17.5,43.5 - parent: 12 - - uid: 9109 - components: - - type: Transform - pos: 40.5,-29.5 - parent: 12 - - uid: 11558 - components: - - type: Transform - pos: 41.5,-26.5 - parent: 12 - - uid: 12626 - components: - - type: Transform - pos: 58.5,35.5 - parent: 12 - - uid: 13726 - components: - - type: Transform - pos: 24.5,30.5 - parent: 12 - - uid: 13938 - components: - - type: Transform - pos: 33.5,39.5 - parent: 12 - - uid: 16757 - components: - - type: Transform - pos: -27.5,5.5 - parent: 12 - - uid: 16758 - components: - - type: Transform - pos: -27.5,13.5 - parent: 12 - - uid: 18992 - components: - - type: Transform - pos: -43.5,27.5 - parent: 12 - - uid: 18993 - components: - - type: Transform - pos: -41.5,27.5 - parent: 12 - - uid: 18994 - components: - - type: Transform - pos: -41.5,30.5 - parent: 12 - - uid: 18995 - components: - - type: Transform - pos: -43.5,30.5 - parent: 12 - - uid: 21337 - components: - - type: Transform - pos: -27.5,41.5 - parent: 12 - - uid: 21338 - components: - - type: Transform - pos: -20.5,43.5 - parent: 12 - - uid: 21339 - components: - - type: Transform - pos: -18.5,38.5 - parent: 12 - - uid: 21340 - components: - - type: Transform - pos: -17.5,45.5 - parent: 12 - - uid: 21341 - components: - - type: Transform - pos: -16.5,47.5 - parent: 12 - - uid: 21408 - components: - - type: Transform - pos: -36.5,44.5 - parent: 12 - - uid: 21476 - components: - - type: Transform - pos: -27.5,25.5 - parent: 12 - - uid: 21617 - components: - - type: Transform - pos: -20.5,41.5 - parent: 12 - - uid: 22367 - components: - - type: Transform - pos: -12.5,47.5 - parent: 12 - - uid: 22370 - components: - - type: Transform - pos: -12.5,64.5 - parent: 12 - - uid: 22371 - components: - - type: Transform - pos: -6.5,47.5 - parent: 12 - - uid: 22502 - components: - - type: Transform - pos: 7.5,47.5 - parent: 12 - - uid: 22503 - components: - - type: Transform - pos: 6.5,41.5 - parent: 12 - - uid: 22504 - components: - - type: Transform - pos: 9.5,34.5 - parent: 12 - - uid: 22652 - components: - - type: Transform - pos: 15.5,59.5 - parent: 12 - - uid: 23402 - components: - - type: Transform - pos: 14.5,69.5 - parent: 12 - - uid: 23403 - components: - - type: Transform - pos: 22.5,69.5 - parent: 12 - - uid: 23646 - components: - - type: Transform - pos: 37.5,50.5 - parent: 12 - - uid: 23647 - components: - - type: Transform - pos: 43.5,41.5 - parent: 12 - - uid: 23843 - components: - - type: Transform - pos: -33.5,55.5 - parent: 12 - - uid: 24022 - components: - - type: Transform - pos: 73.5,51.5 - parent: 12 - - uid: 24023 - components: - - type: Transform - pos: 75.5,51.5 - parent: 12 - - uid: 24024 - components: - - type: Transform - pos: 77.5,51.5 - parent: 12 - - uid: 24025 - components: - - type: Transform - pos: 73.5,46.5 - parent: 12 - - uid: 24026 - components: - - type: Transform - pos: 75.5,46.5 - parent: 12 - - uid: 24027 - components: - - type: Transform - pos: 77.5,46.5 - parent: 12 - - uid: 24084 - components: - - type: Transform - pos: 52.5,59.5 - parent: 12 - - uid: 24114 - components: - - type: Transform - pos: 64.5,52.5 - parent: 12 - - uid: 24130 - components: - - type: Transform - pos: 62.5,58.5 - parent: 12 - - uid: 24131 - components: - - type: Transform - pos: 55.5,58.5 - parent: 12 - - uid: 25887 - components: - - type: Transform - pos: 3.5,43.5 - parent: 12 - - uid: 26219 - components: - - type: Transform - pos: -22.5,29.5 - parent: 12 - - uid: 26280 - components: - - type: Transform - pos: -17.5,18.5 - parent: 12 - - uid: 26281 - components: - - type: Transform - pos: -14.5,13.5 - parent: 12 - - uid: 26282 - components: - - type: Transform - pos: -17.5,-6.5 - parent: 12 - - uid: 26283 - components: - - type: Transform - pos: -17.5,-26.5 - parent: 12 - - uid: 26284 - components: - - type: Transform - pos: -1.5,-28.5 - parent: 12 - - uid: 26285 - components: - - type: Transform - pos: 15.5,-25.5 - parent: 12 - - uid: 26286 - components: - - type: Transform - pos: 29.5,-28.5 - parent: 12 - - uid: 26287 - components: - - type: Transform - pos: 53.5,-29.5 - parent: 12 -- proto: PottedPlantRandomPlastic - entities: - - uid: 26226 - components: - - type: Transform - pos: -13.5,-43.5 - parent: 12 - - uid: 26227 - components: - - type: Transform - pos: -17.5,-51.5 - parent: 12 -- proto: PottedPlantRD - entities: - - uid: 2000 - components: - - type: Transform - pos: -35.5,-19.5 - parent: 12 -- proto: PowerCellMedium - entities: - - uid: 16465 - components: - - type: Transform - parent: 16464 - - type: Physics - canCollide: False - - uid: 16572 - components: - - type: Transform - parent: 16571 - - type: Physics - canCollide: False - - uid: 17940 - components: - - type: Transform - parent: 17939 - - type: Physics - canCollide: False - - uid: 17941 - components: - - type: Transform - pos: -49.26369,36.47051 - parent: 12 - - uid: 17942 - components: - - type: Transform - pos: -49.054604,36.777367 - parent: 12 - - uid: 23666 - components: - - type: Transform - parent: 23665 - - type: Physics - canCollide: False - - uid: 23667 - components: - - type: Transform - pos: 49.463097,47.95464 - parent: 12 - - uid: 27238 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: 8.632845,-11.119617 - parent: 12 - - uid: 28864 - components: - - type: Transform - pos: 2.6072974,-0.46769977 - parent: 12 -- proto: PowerCellRecharger - entities: - - uid: 358 - components: - - type: Transform - pos: -18.5,-19.5 - parent: 12 - - uid: 1953 - components: - - type: Transform - pos: -42.5,-25.5 - parent: 12 - - uid: 1954 - components: - - type: Transform - pos: -31.5,-21.5 - parent: 12 - - uid: 3951 - components: - - type: Transform - pos: -23.5,-50.5 - parent: 12 - - uid: 3952 - components: - - type: Transform - pos: -5.5,-48.5 - parent: 12 - - uid: 4668 - components: - - type: Transform - pos: 3.5,11.5 - parent: 12 - - uid: 5492 - components: - - type: Transform - pos: 25.5,-22.5 - parent: 12 - - uid: 5861 - components: - - type: Transform - pos: 18.5,-21.5 - parent: 12 - - uid: 7788 - components: - - type: Transform - pos: 22.5,-18.5 - parent: 12 - - uid: 8931 - components: - - type: Transform - pos: 49.5,-30.5 - parent: 12 - - uid: 9106 - components: - - type: Transform - pos: 44.5,-32.5 - parent: 12 - - uid: 9814 - components: - - type: Transform - pos: 34.5,-23.5 - parent: 12 - - uid: 13876 - components: - - type: Transform - pos: 27.5,37.5 - parent: 12 - - uid: 14908 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,65.5 - parent: 12 - - uid: 16464 - components: - - type: Transform - pos: -12.5,8.5 - parent: 12 - - type: ContainerContainer - containers: - charger_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 16465 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 16571 - components: - - type: Transform - pos: -11.5,23.5 - parent: 12 - - type: ContainerContainer - containers: - charger_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 16572 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 17939 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,36.5 - parent: 12 - - type: ContainerContainer - containers: - charger_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 17940 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 23665 - components: - - type: Transform - pos: 48.5,50.5 - parent: 12 - - type: ContainerContainer - containers: - charger_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 23666 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 24092 - components: - - type: Transform - pos: 64.5,45.5 - parent: 12 - - uid: 26119 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-49.5 - parent: 12 - - uid: 28833 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-11.5 - parent: 12 - - uid: 28863 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 12 -- proto: PowerCellSmall - entities: - - uid: 4196 - components: - - type: Transform - rot: -56.54866776461632 rad - pos: -9.513435,-49.592167 - parent: 12 - - uid: 31574 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -13.378334,-0.67933416 - parent: 12 -- proto: PowerComputerCircuitboard - entities: - - uid: 6684 - components: - - type: Transform - pos: 39.611763,-39.60002 - parent: 12 -- proto: PowerDrill - entities: - - uid: 2017 - components: - - type: Transform - pos: -35.5364,-21.362114 - parent: 12 -- proto: PoweredDimSmallLight - entities: - - uid: 2424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-16.5 - parent: 12 - - uid: 2855 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-47.5 - parent: 12 - - uid: 4980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,62.5 - parent: 12 - - uid: 5881 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-23.5 - parent: 12 - - uid: 8827 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,24.5 - parent: 12 - - uid: 12078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-24.5 - parent: 12 - - uid: 12163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,23.5 - parent: 12 - - uid: 12922 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,61.5 - parent: 12 - - uid: 12923 - components: - - type: Transform - pos: -28.5,75.5 - parent: 12 - - uid: 12925 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,6.5 - parent: 12 - - uid: 12944 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,16.5 - parent: 12 - - uid: 14912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-59.5 - parent: 12 - - uid: 16796 - components: - - type: Transform - pos: -13.5,-68.5 - parent: 12 - - uid: 16843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-15.5 - parent: 12 - - uid: 21083 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,57.5 - parent: 12 -- proto: Poweredlight - entities: - - uid: 17 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-30.5 - parent: 12 - - uid: 111 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,26.5 - parent: 12 - - uid: 373 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-11.5 - parent: 12 - - uid: 387 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-10.5 - parent: 12 - - uid: 570 - components: - - type: Transform - pos: 12.5,18.5 - parent: 12 - - uid: 1961 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-48.5 - parent: 12 - - uid: 1964 - components: - - type: Transform - pos: -39.5,-41.5 - parent: 12 - - uid: 1967 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-39.5 - parent: 12 - - uid: 1969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-31.5 - parent: 12 - - uid: 1970 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-27.5 - parent: 12 - - uid: 1971 - components: - - type: Transform - pos: -52.5,-21.5 - parent: 12 - - uid: 1972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-21.5 - parent: 12 - - uid: 1973 - components: - - type: Transform - pos: -42.5,-19.5 - parent: 12 - - uid: 1974 - components: - - type: Transform - pos: -36.5,-19.5 - parent: 12 - - uid: 1976 - components: - - type: Transform - pos: -40.5,-28.5 - parent: 12 - - uid: 1977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-28.5 - parent: 12 - - uid: 1978 - components: - - type: Transform - pos: -35.5,-34.5 - parent: 12 - - uid: 1979 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-33.5 - parent: 12 - - uid: 1980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-26.5 - parent: 12 - - uid: 1982 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-38.5 - parent: 12 - - uid: 1985 - components: - - type: Transform - pos: -26.5,-23.5 - parent: 12 - - uid: 1986 - components: - - type: Transform - pos: -20.5,-23.5 - parent: 12 - - uid: 1988 - components: - - type: Transform - pos: -25.5,-18.5 - parent: 12 - - uid: 1989 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-21.5 - parent: 12 - - uid: 1990 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-23.5 - parent: 12 - - uid: 2264 - components: - - type: Transform - pos: 54.5,58.5 - parent: 12 - - uid: 2326 - components: - - type: Transform - pos: -26.5,-41.5 - parent: 12 - - uid: 2460 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,21.5 - parent: 12 - - uid: 2479 - components: - - type: Transform - pos: -19.5,-41.5 - parent: 12 - - uid: 2480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-36.5 - parent: 12 - - uid: 2481 - components: - - type: Transform - pos: -19.5,-32.5 - parent: 12 - - uid: 2535 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-35.5 - parent: 12 - - uid: 2606 - components: - - type: Transform - pos: -4.5,-32.5 - parent: 12 - - uid: 2667 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,14.5 - parent: 12 - - uid: 2763 - components: - - type: Transform - pos: -12.5,-58.5 - parent: 12 - - uid: 2764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-56.5 - parent: 12 - - uid: 2765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-57.5 - parent: 12 - - uid: 2766 - components: - - type: Transform - pos: -3.5,-55.5 - parent: 12 - - uid: 2768 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-61.5 - parent: 12 - - uid: 2769 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-54.5 - parent: 12 - - uid: 2770 - components: - - type: Transform - pos: -19.5,-49.5 - parent: 12 - - uid: 2771 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-55.5 - parent: 12 - - uid: 2772 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-45.5 - parent: 12 - - uid: 2856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-21.5 - parent: 12 - - uid: 3050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,12.5 - parent: 12 - - uid: 3478 - components: - - type: Transform - pos: -11.5,-33.5 - parent: 12 - - uid: 3479 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-39.5 - parent: 12 - - uid: 3481 - components: - - type: Transform - pos: -8.5,-41.5 - parent: 12 - - uid: 3482 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-43.5 - parent: 12 - - uid: 3483 - components: - - type: Transform - pos: -1.5,-41.5 - parent: 12 - - uid: 3484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-47.5 - parent: 12 - - uid: 3487 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-53.5 - parent: 12 - - uid: 3489 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-48.5 - parent: 12 - - uid: 3628 - components: - - type: Transform - pos: 13.5,-2.5 - parent: 12 - - uid: 3629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-1.5 - parent: 12 - - uid: 3776 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-39.5 - parent: 12 - - uid: 3893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,21.5 - parent: 12 - - uid: 4021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-25.5 - parent: 12 - - uid: 4022 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-30.5 - parent: 12 - - uid: 4315 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-25.5 - parent: 12 - - uid: 4320 - components: - - type: Transform - pos: 1.5,-25.5 - parent: 12 - - uid: 4562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,4.5 - parent: 12 - - uid: 4982 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,26.5 - parent: 12 - - uid: 5117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-15.5 - parent: 12 - - uid: 5216 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-35.5 - parent: 12 - - uid: 5227 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,27.5 - parent: 12 - - uid: 5228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,22.5 - parent: 12 - - uid: 5325 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-20.5 - parent: 12 - - uid: 5326 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-19.5 - parent: 12 - - uid: 5327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-28.5 - parent: 12 - - uid: 5414 - components: - - type: Transform - pos: -11.5,-21.5 - parent: 12 - - uid: 5539 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-17.5 - parent: 12 - - uid: 5540 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-17.5 - parent: 12 - - uid: 5853 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,2.5 - parent: 12 - - uid: 5928 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-22.5 - parent: 12 - - uid: 5929 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-19.5 - parent: 12 - - uid: 5930 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-23.5 - parent: 12 - - uid: 5931 - components: - - type: Transform - pos: 22.5,-20.5 - parent: 12 - - uid: 5932 - components: - - type: Transform - pos: 17.5,-25.5 - parent: 12 - - uid: 5933 - components: - - type: Transform - pos: 7.5,-25.5 - parent: 12 - - uid: 6094 - components: - - type: Transform - pos: 28.5,-30.5 - parent: 12 - - uid: 6310 - components: - - type: Transform - 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 - pos: -50.5,-37.5 - parent: 12 - - uid: 6699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-44.5 - parent: 12 - - uid: 6702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-32.5 - parent: 12 - - uid: 6710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-41.5 - parent: 12 - - uid: 6713 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-53.5 - parent: 12 - - uid: 6716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-41.5 - parent: 12 - - uid: 6718 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-38.5 - parent: 12 - - uid: 6720 - components: - - type: Transform - pos: -2.5,-10.5 - parent: 12 - - uid: 6721 - components: - - type: Transform - pos: 1.5,-10.5 - parent: 12 - - uid: 6722 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-15.5 - parent: 12 - - uid: 6723 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-15.5 - parent: 12 - - uid: 6724 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-14.5 - parent: 12 - - uid: 6725 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-14.5 - parent: 12 - - uid: 6726 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 12 - - uid: 6727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-7.5 - parent: 12 - - uid: 6729 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-3.5 - parent: 12 - - uid: 6730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 12 - - uid: 6731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 12 - - uid: 6734 - components: - - type: Transform - pos: -15.5,-10.5 - parent: 12 - - uid: 6736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-6.5 - parent: 12 - - uid: 6740 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-2.5 - parent: 12 - - uid: 6746 - components: - - type: Transform - 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 - pos: 27.5,-25.5 - parent: 12 - - uid: 6809 - components: - - type: Transform - pos: 36.5,-25.5 - parent: 12 - - uid: 7319 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-17.5 - parent: 12 - - uid: 8744 - components: - - type: Transform - pos: 57.5,-39.5 - parent: 12 - - uid: 8807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-34.5 - parent: 12 - - uid: 8808 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-33.5 - parent: 12 - - uid: 8811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-43.5 - parent: 12 - - uid: 8813 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-29.5 - parent: 12 - - uid: 8814 - components: - - type: Transform - pos: 62.5,-18.5 - parent: 12 - - uid: 8815 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-24.5 - parent: 12 - - uid: 8816 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-10.5 - parent: 12 - - uid: 8821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-22.5 - parent: 12 - - uid: 8822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-24.5 - parent: 12 - - uid: 8828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-30.5 - parent: 12 - - uid: 8830 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-15.5 - parent: 12 - - uid: 9086 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-47.5 - parent: 12 - - uid: 9183 - components: - - type: Transform - pos: 5.5,18.5 - parent: 12 - - uid: 9299 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,21.5 - parent: 12 - - uid: 9307 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 12 - - uid: 9309 - components: - - type: Transform - pos: -12.5,2.5 - parent: 12 - - uid: 9323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,6.5 - parent: 12 - - uid: 9335 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-6.5 - parent: 12 - - uid: 9369 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,23.5 - parent: 12 - - uid: 9370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,26.5 - parent: 12 - - uid: 9371 - components: - - type: Transform - pos: -37.5,23.5 - parent: 12 - - uid: 9372 - components: - - type: Transform - pos: -42.5,30.5 - parent: 12 - - uid: 9377 - components: - - type: Transform - pos: -43.5,25.5 - parent: 12 - - uid: 9397 - components: - - type: Transform - pos: -27.5,34.5 - parent: 12 - - uid: 9398 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-7.5 - parent: 12 - - uid: 9413 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-11.5 - parent: 12 - - uid: 9544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,12.5 - parent: 12 - - uid: 9549 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,43.5 - parent: 12 - - uid: 9554 - components: - - type: Transform - pos: -13.5,51.5 - parent: 12 - - uid: 9574 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-59.5 - parent: 12 - - uid: 9610 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,7.5 - parent: 12 - - uid: 9714 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,42.5 - parent: 12 - - uid: 9728 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,64.5 - parent: 12 - - uid: 9730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,69.5 - parent: 12 - - uid: 9758 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,16.5 - parent: 12 - - uid: 9768 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,1.5 - parent: 12 - - uid: 9769 - components: - - type: Transform - pos: -39.5,2.5 - parent: 12 - - uid: 9770 - components: - - type: Transform - pos: -43.5,2.5 - parent: 12 - - uid: 9771 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,16.5 - parent: 12 - - uid: 9772 - components: - - type: Transform - pos: -31.5,2.5 - parent: 12 - - uid: 9788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,16.5 - parent: 12 - - uid: 9850 - components: - - type: Transform - pos: -22.5,-2.5 - parent: 12 - - uid: 9906 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-38.5 - parent: 12 - - uid: 10048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-38.5 - parent: 12 - - uid: 10250 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,7.5 - parent: 12 - - uid: 10251 - components: - - type: Transform - pos: -24.5,11.5 - parent: 12 - - uid: 10252 - components: - - type: Transform - pos: -18.5,11.5 - parent: 12 - - uid: 10261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,7.5 - parent: 12 - - uid: 10262 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,11.5 - parent: 12 - - uid: 10263 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,11.5 - parent: 12 - - uid: 10372 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-5.5 - parent: 12 - - uid: 10541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,7.5 - parent: 12 - - uid: 10544 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,5.5 - parent: 12 - - uid: 10565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,13.5 - parent: 12 - - uid: 10718 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,18.5 - parent: 12 - - uid: 10719 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,32.5 - parent: 12 - - uid: 10721 - components: - - type: Transform - pos: -33.5,30.5 - parent: 12 - - uid: 10722 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,33.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: 11221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,47.5 - parent: 12 - - uid: 11223 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,8.5 - parent: 12 - - uid: 11241 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-50.5 - parent: 12 - - uid: 11796 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,57.5 - parent: 12 - - uid: 12016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,18.5 - parent: 12 - - uid: 12148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-45.5 - parent: 12 - - uid: 12151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,55.5 - parent: 12 - - uid: 12152 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,42.5 - parent: 12 - - uid: 12154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,55.5 - parent: 12 - - uid: 12243 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,29.5 - parent: 12 - - uid: 12261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-12.5 - parent: 12 - - uid: 12276 - components: - - type: Transform - pos: 62.5,7.5 - parent: 12 - - uid: 12312 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-12.5 - parent: 12 - - uid: 12715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-29.5 - parent: 12 - - uid: 12716 - components: - - type: Transform - pos: -8.5,-26.5 - parent: 12 - - uid: 12903 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,40.5 - parent: 12 - - uid: 12905 - components: - - type: Transform - pos: 43.5,39.5 - parent: 12 - - uid: 12906 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,37.5 - parent: 12 - - uid: 12907 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,33.5 - parent: 12 - - uid: 12908 - components: - - type: Transform - pos: -15.5,-17.5 - parent: 12 - - uid: 12909 - components: - - type: Transform - pos: 42.5,31.5 - parent: 12 - - uid: 12914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,27.5 - parent: 12 - - uid: 12918 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,42.5 - parent: 12 - - uid: 12927 - components: - - type: Transform - pos: 26.5,37.5 - parent: 12 - - uid: 12930 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,28.5 - parent: 12 - - uid: 12932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,35.5 - parent: 12 - - uid: 13128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,35.5 - parent: 12 - - uid: 13848 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,40.5 - parent: 12 - - uid: 14229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-29.5 - parent: 12 - - uid: 14528 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,49.5 - parent: 12 - - uid: 14530 - components: - - type: Transform - pos: 39.5,57.5 - parent: 12 - - uid: 14531 - components: - - type: Transform - pos: 36.5,57.5 - parent: 12 - - uid: 14532 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,56.5 - parent: 12 - - uid: 14655 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,83.5 - parent: 12 - - uid: 14657 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,83.5 - parent: 12 - - uid: 14678 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,79.5 - parent: 12 - - uid: 14693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,76.5 - parent: 12 - - uid: 14695 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,76.5 - parent: 12 - - uid: 14716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,70.5 - parent: 12 - - uid: 14718 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,79.5 - parent: 12 - - uid: 14793 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,70.5 - parent: 12 - - uid: 14809 - components: - - type: Transform - pos: 18.5,68.5 - parent: 12 - - uid: 14941 - components: - - type: Transform - pos: 15.5,-30.5 - parent: 12 - - uid: 14974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,39.5 - parent: 12 - - uid: 14975 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,51.5 - parent: 12 - - uid: 14976 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,52.5 - parent: 12 - - uid: 14977 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,34.5 - parent: 12 - - uid: 14978 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,46.5 - parent: 12 - - uid: 14980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,41.5 - parent: 12 - - uid: 15079 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,55.5 - parent: 12 - - uid: 15080 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,53.5 - parent: 12 - - uid: 15081 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,59.5 - parent: 12 - - uid: 15082 - components: - - type: Transform - pos: 28.5,60.5 - parent: 12 - - uid: 15083 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,59.5 - parent: 12 - - uid: 15085 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,58.5 - parent: 12 - - uid: 15097 - components: - - type: Transform - pos: 23.5,47.5 - parent: 12 - - uid: 15488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,26.5 - parent: 12 - - uid: 15489 - components: - - type: Transform - pos: -23.5,29.5 - parent: 12 - - uid: 15508 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,27.5 - parent: 12 - - uid: 15509 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,30.5 - parent: 12 - - uid: 15522 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,36.5 - parent: 12 - - uid: 15523 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,35.5 - parent: 12 - - uid: 15524 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,37.5 - parent: 12 - - uid: 15525 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,37.5 - parent: 12 - - uid: 15535 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,38.5 - parent: 12 - - uid: 15537 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,23.5 - parent: 12 - - uid: 15538 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,26.5 - parent: 12 - - uid: 15546 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,18.5 - parent: 12 - - uid: 15548 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,29.5 - parent: 12 - - uid: 15689 - components: - - type: Transform - pos: -8.5,28.5 - parent: 12 - - uid: 15697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,27.5 - parent: 12 - - uid: 16406 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,5.5 - parent: 12 - - uid: 16407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,13.5 - parent: 12 - - uid: 16512 - components: - - type: Transform - pos: -21.5,14.5 - parent: 12 - - uid: 16581 - components: - - type: Transform - pos: 61.5,-28.5 - parent: 12 - - uid: 16638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,53.5 - parent: 12 - - uid: 16649 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,29.5 - parent: 12 - - uid: 16650 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,29.5 - parent: 12 - - uid: 16651 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,26.5 - parent: 12 - - uid: 16658 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,3.5 - parent: 12 - - uid: 16816 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,32.5 - parent: 12 - - uid: 16817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,37.5 - parent: 12 - - uid: 16818 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,37.5 - parent: 12 - - uid: 16819 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,43.5 - parent: 12 - - uid: 16820 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,42.5 - parent: 12 - - uid: 16821 - components: - - type: Transform - pos: -8.5,45.5 - parent: 12 - - uid: 16824 - components: - - type: Transform - pos: 1.5,45.5 - parent: 12 - - uid: 16825 - components: - - type: Transform - pos: 5.5,41.5 - parent: 12 - - uid: 16826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,35.5 - parent: 12 - - uid: 16827 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,36.5 - parent: 12 - - uid: 16828 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,43.5 - parent: 12 - - uid: 16829 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,47.5 - parent: 12 - - uid: 16830 - components: - - type: Transform - pos: 5.5,45.5 - parent: 12 - - uid: 16831 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,40.5 - parent: 12 - - uid: 16833 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,49.5 - parent: 12 - - uid: 16835 - components: - - type: Transform - pos: 11.5,54.5 - parent: 12 - - uid: 16837 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,65.5 - parent: 12 - - uid: 16839 - components: - - type: Transform - pos: 33.5,47.5 - parent: 12 - - uid: 16840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,61.5 - parent: 12 - - uid: 16841 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,51.5 - parent: 12 - - uid: 16845 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,47.5 - parent: 12 - - uid: 16848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,47.5 - parent: 12 - - uid: 16849 - components: - - type: Transform - pos: 54.5,50.5 - parent: 12 - - uid: 16850 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,47.5 - parent: 12 - - uid: 16851 - components: - - type: Transform - pos: 65.5,50.5 - parent: 12 - - uid: 16853 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,43.5 - parent: 12 - - uid: 16855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,46.5 - parent: 12 - - uid: 16856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,51.5 - parent: 12 - - uid: 16859 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,50.5 - parent: 12 - - uid: 16860 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,47.5 - parent: 12 - - uid: 16861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,47.5 - parent: 12 - - uid: 16862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,50.5 - parent: 12 - - uid: 16863 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,52.5 - parent: 12 - - uid: 16864 - components: - - type: Transform - pos: 72.5,45.5 - parent: 12 - - uid: 16866 - components: - - type: Transform - pos: 60.5,58.5 - parent: 12 - - uid: 16867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,52.5 - parent: 12 - - uid: 16868 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,53.5 - parent: 12 - - uid: 16871 - components: - - type: Transform - pos: 45.5,53.5 - parent: 12 - - uid: 16873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-23.5 - parent: 12 - - uid: 16891 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,50.5 - parent: 12 - - uid: 16899 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,49.5 - parent: 12 - - uid: 16901 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,57.5 - parent: 12 - - uid: 16902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,57.5 - parent: 12 - - uid: 16914 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,50.5 - parent: 12 - - uid: 17162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,65.5 - parent: 12 - - uid: 17333 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,24.5 - parent: 12 - - uid: 17334 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,27.5 - parent: 12 - - uid: 17335 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,30.5 - parent: 12 - - uid: 17336 - components: - - type: Transform - pos: -50.5,33.5 - parent: 12 - - uid: 17406 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,46.5 - parent: 12 - - uid: 17422 - components: - - type: Transform - pos: 46.5,41.5 - parent: 12 - - uid: 17751 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,32.5 - parent: 12 - - uid: 17752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,25.5 - parent: 12 - - uid: 17753 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,38.5 - parent: 12 - - uid: 17770 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,38.5 - parent: 12 - - uid: 17802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,38.5 - parent: 12 - - uid: 17833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,42.5 - parent: 12 - - uid: 18725 - components: - - type: Transform - pos: -28.5,29.5 - parent: 12 - - uid: 18726 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,32.5 - parent: 12 - - uid: 18883 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,21.5 - parent: 12 - - uid: 19028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,42.5 - parent: 12 - - uid: 19052 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,46.5 - parent: 12 - - uid: 19053 - components: - - type: Transform - pos: -22.5,41.5 - parent: 12 - - uid: 19064 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,46.5 - parent: 12 - - uid: 19078 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,48.5 - parent: 12 - - uid: 19103 - components: - - type: Transform - pos: -29.5,41.5 - parent: 12 - - uid: 19104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,48.5 - parent: 12 - - uid: 19105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,43.5 - parent: 12 - - uid: 19215 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,56.5 - parent: 12 - - uid: 19217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,50.5 - parent: 12 - - uid: 19220 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,58.5 - parent: 12 - - uid: 19340 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,58.5 - parent: 12 - - uid: 19354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,50.5 - parent: 12 - - uid: 19356 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,52.5 - parent: 12 - - uid: 19364 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,56.5 - parent: 12 - - uid: 19365 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,50.5 - parent: 12 - - uid: 19366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,50.5 - parent: 12 - - uid: 19367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,53.5 - parent: 12 - - uid: 19662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,71.5 - parent: 12 - - uid: 19870 - components: - - type: Transform - pos: -34.5,68.5 - parent: 12 - - uid: 20143 - components: - - type: Transform - pos: 52.5,-13.5 - parent: 12 - - uid: 20161 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,5.5 - parent: 12 - - uid: 20906 - components: - - type: Transform - pos: -0.5,4.5 - parent: 12 - - uid: 21331 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,54.5 - parent: 12 - - uid: 21566 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,39.5 - parent: 12 - - uid: 21666 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,47.5 - parent: 12 - - uid: 21669 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,52.5 - parent: 12 - - uid: 21670 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,55.5 - parent: 12 - - uid: 21672 - components: - - type: Transform - pos: -5.5,56.5 - parent: 12 - - uid: 21919 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-24.5 - parent: 12 - - uid: 21967 - components: - - type: Transform - pos: -10.5,-37.5 - parent: 12 - - uid: 22329 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,42.5 - parent: 12 - - uid: 22499 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,40.5 - parent: 12 - - uid: 22500 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,40.5 - parent: 12 - - uid: 22501 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,33.5 - parent: 12 - - uid: 22525 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,39.5 - parent: 12 - - uid: 24103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,44.5 - parent: 12 - - uid: 24104 - components: - - type: Transform - pos: 59.5,50.5 - parent: 12 - - uid: 24105 - components: - - type: Transform - pos: 61.5,45.5 - parent: 12 - - uid: 25278 - components: - - type: Transform - pos: -3.5,-25.5 - parent: 12 - - uid: 25855 - components: - - type: Transform - pos: 44.5,45.5 - parent: 12 - - uid: 25909 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,49.5 - parent: 12 - - uid: 26298 - components: - - type: Transform - pos: 45.5,-44.5 - parent: 12 - - uid: 26377 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-49.5 - parent: 12 - - uid: 26378 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-66.5 - parent: 12 - - uid: 26408 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-35.5 - parent: 12 - - uid: 26437 - components: - - type: Transform - pos: 27.5,12.5 - parent: 12 - - uid: 26577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,0.5 - parent: 12 - - uid: 26579 - components: - - type: Transform - 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: 26976 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,0.5 - parent: 12 - - uid: 28650 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-2.5 - parent: 12 - - uid: 28668 - components: - - type: Transform - pos: 53.5,2.5 - parent: 12 - - uid: 28669 - components: - - type: Transform - pos: 29.5,0.5 - parent: 12 - - uid: 28670 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-4.5 - parent: 12 - - uid: 28671 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-7.5 - parent: 12 - - uid: 28825 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,47.5 - parent: 12 - - uid: 28881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,1.5 - parent: 12 - - uid: 29008 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,69.5 - parent: 12 - - uid: 29077 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-8.5 - parent: 12 - - uid: 29078 - components: - - type: Transform - pos: -5.5,-4.5 - parent: 12 - - uid: 29640 - components: - - type: Transform - pos: -33.5,-41.5 - parent: 12 - - uid: 30290 - components: - - type: Transform - pos: -5.5,78.5 - parent: 12 - - uid: 30291 - components: - - type: Transform - pos: -10.5,78.5 - parent: 12 - - uid: 31027 - components: - - type: Transform - pos: -50.5,22.5 - parent: 12 - - uid: 31050 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,44.5 - parent: 12 - - uid: 31472 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-47.5 - parent: 12 - - uid: 31577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-34.5 - parent: 12 - - uid: 31578 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-34.5 - parent: 12 - - uid: 31579 - components: - - type: Transform - pos: 24.5,-34.5 - parent: 12 - - uid: 31739 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-48.5 - parent: 12 - - uid: 32043 - components: - - type: Transform - pos: 36.5,-9.5 - parent: 12 - - uid: 32104 - components: - - type: Transform - pos: 56.5,64.5 - parent: 12 -- proto: PoweredlightBlue - entities: - - uid: 9232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,60.5 - parent: 12 - - uid: 31340 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-67.5 - parent: 12 -- proto: PoweredlightCyan - entities: - - uid: 28985 - components: - - type: Transform - pos: -47.5,75.5 - parent: 12 -- proto: PoweredlightEmpty - entities: - - uid: 16515 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,4.5 - parent: 12 -- proto: PoweredlightGreen - entities: - - uid: 9241 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,62.5 - parent: 12 - - uid: 20049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,68.5 - parent: 12 -- proto: PoweredlightPink - entities: - - uid: 19378 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,74.5 - parent: 12 -- proto: PoweredLightPostSmall - entities: - - uid: 8845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-36.5 - parent: 12 - - uid: 14750 - components: - - type: Transform - pos: 10.5,90.5 - parent: 12 - - uid: 14800 - components: - - type: Transform - pos: 26.5,90.5 - parent: 12 - - uid: 30029 - components: - - type: Transform - pos: -20.5,76.5 - parent: 12 - - uid: 32186 - components: - - type: Transform - pos: 65.5,-3.5 - parent: 12 - - uid: 32187 - components: - - type: Transform - pos: 76.5,-3.5 - parent: 12 - - uid: 32189 - components: - - type: Transform - pos: 76.5,4.5 - parent: 12 - - uid: 32286 - components: - - type: Transform - pos: 76.5,12.5 - parent: 12 - - uid: 32287 - components: - - type: Transform - pos: 65.5,12.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: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-67.5 - parent: 12 -- proto: PoweredSmallLight - entities: - - uid: 26 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,66.5 - parent: 12 - - uid: 646 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,65.5 - parent: 12 - - uid: 935 - components: - - type: Transform - 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 - pos: -26.5,-33.5 - parent: 12 - - uid: 2138 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-6.5 - parent: 12 - - uid: 2265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-39.5 - parent: 12 - - uid: 2291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,11.5 - parent: 12 - - uid: 3471 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-33.5 - parent: 12 - - uid: 4210 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-34.5 - parent: 12 - - uid: 4296 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-33.5 - parent: 12 - - uid: 4645 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,1.5 - parent: 12 - - uid: 4677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,4.5 - parent: 12 - - uid: 4792 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-0.5 - parent: 12 - - uid: 5045 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-8.5 - parent: 12 - - uid: 5124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-47.5 - parent: 12 - - uid: 5137 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-40.5 - parent: 12 - - uid: 5138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-38.5 - parent: 12 - - uid: 5140 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-60.5 - parent: 12 - - uid: 5143 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-51.5 - parent: 12 - - uid: 5183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-2.5 - parent: 12 - - uid: 5185 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: 25.5,-10.5 - parent: 12 - - uid: 6183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-28.5 - parent: 12 - - uid: 6266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-3.5 - parent: 12 - - uid: 6759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,29.5 - parent: 12 - - uid: 6834 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-26.5 - parent: 12 - - uid: 7240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-16.5 - parent: 12 - - uid: 7279 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,56.5 - parent: 12 - - uid: 7285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,7.5 - parent: 12 - - uid: 7431 - components: - - type: Transform - pos: 50.5,19.5 - parent: 12 - - uid: 8420 - components: - - type: Transform - pos: 62.5,-1.5 - parent: 12 - - uid: 8809 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-35.5 - parent: 12 - - uid: 8812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-32.5 - parent: 12 - - uid: 8824 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,19.5 - parent: 12 - - uid: 8825 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-8.5 - parent: 12 - - uid: 8829 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,36.5 - parent: 12 - - uid: 8838 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-38.5 - parent: 12 - - uid: 8839 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-32.5 - parent: 12 - - uid: 8840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-33.5 - parent: 12 - - uid: 8841 - components: - - type: Transform - pos: 79.5,-27.5 - parent: 12 - - uid: 8842 - components: - - type: Transform - pos: 86.5,-36.5 - parent: 12 - - uid: 8844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-37.5 - parent: 12 - - uid: 8850 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,62.5 - parent: 12 - - uid: 8925 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-32.5 - parent: 12 - - uid: 8926 - components: - - type: Transform - pos: 59.5,-34.5 - parent: 12 - - uid: 8927 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-30.5 - parent: 12 - - uid: 8956 - components: - - type: Transform - pos: 5.5,-38.5 - parent: 12 - - uid: 9085 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-45.5 - parent: 12 - - uid: 9139 - components: - - type: Transform - pos: -50.5,-42.5 - parent: 12 - - uid: 9231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-38.5 - parent: 12 - - uid: 9234 - components: - - type: Transform - pos: -3.5,65.5 - parent: 12 - - uid: 9242 - components: - - type: Transform - pos: -15.5,65.5 - parent: 12 - - uid: 9437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-30.5 - parent: 12 - - uid: 9441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,68.5 - parent: 12 - - uid: 9452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-7.5 - parent: 12 - - uid: 9473 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-7.5 - parent: 12 - - uid: 9853 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-19.5 - parent: 12 - - uid: 9907 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,65.5 - parent: 12 - - uid: 10403 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-10.5 - parent: 12 - - uid: 10886 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,38.5 - parent: 12 - - uid: 11062 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,35.5 - parent: 12 - - uid: 11231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,11.5 - parent: 12 - - uid: 11802 - components: - - type: Transform - pos: -31.5,60.5 - parent: 12 - - uid: 12005 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,52.5 - parent: 12 - - uid: 12291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-14.5 - parent: 12 - - uid: 12710 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-13.5 - parent: 12 - - uid: 12711 - components: - - type: Transform - pos: 38.5,-4.5 - parent: 12 - - uid: 12928 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,27.5 - parent: 12 - - uid: 14911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,65.5 - parent: 12 - - uid: 14938 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,51.5 - parent: 12 - - uid: 14940 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,51.5 - parent: 12 - - uid: 15357 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: -10.5,23.5 - parent: 12 - - uid: 16887 - components: - - type: Transform - pos: 4.5,59.5 - parent: 12 - - uid: 16913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,56.5 - parent: 12 - - uid: 17774 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,29.5 - parent: 12 - - uid: 17923 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,37.5 - parent: 12 - - uid: 17971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,29.5 - parent: 12 - - uid: 19280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,58.5 - parent: 12 - - uid: 19341 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,62.5 - parent: 12 - - uid: 19342 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,62.5 - parent: 12 - - uid: 19343 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,62.5 - parent: 12 - - uid: 19344 - components: - - type: Transform - pos: -39.5,60.5 - parent: 12 - - uid: 19369 - components: - - 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 - rot: 3.141592653589793 rad - pos: -23.5,-0.5 - parent: 12 - - uid: 19833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,61.5 - parent: 12 - - uid: 19863 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,44.5 - parent: 12 - - uid: 19866 - components: - - type: Transform - pos: 62.5,-12.5 - parent: 12 - - uid: 19869 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,64.5 - parent: 12 - - uid: 21082 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,32.5 - parent: 12 - - uid: 21274 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,67.5 - parent: 12 - - uid: 21481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,21.5 - parent: 12 - - uid: 21710 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,58.5 - parent: 12 - - uid: 21749 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,58.5 - parent: 12 - - uid: 21850 - components: - - type: Transform - pos: -15.5,56.5 - parent: 12 - - uid: 21857 - components: - - type: Transform - pos: 5.5,32.5 - parent: 12 - - uid: 21858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,32.5 - parent: 12 - - uid: 22061 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,54.5 - parent: 12 - - uid: 22163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-14.5 - parent: 12 - - uid: 22336 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-32.5 - parent: 12 - - uid: 22716 - components: - - type: Transform - pos: 27.5,68.5 - parent: 12 - - uid: 22717 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,65.5 - parent: 12 - - uid: 23172 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-30.5 - parent: 12 - - uid: 23560 - components: - - type: Transform - pos: 40.5,49.5 - parent: 12 - - uid: 25090 - components: - - type: Transform - 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 - pos: -34.5,62.5 - parent: 12 - - uid: 25383 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,47.5 - parent: 12 - - uid: 26109 - components: - - type: Transform - pos: 57.5,-26.5 - parent: 12 - - uid: 26125 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-38.5 - parent: 12 - - uid: 26407 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-49.5 - parent: 12 - - uid: 26520 - components: - - type: Transform - pos: 33.5,-9.5 - parent: 12 - - uid: 26560 - components: - - type: Transform - pos: 53.5,6.5 - parent: 12 - - uid: 26852 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-3.5 - parent: 12 - - uid: 27067 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-11.5 - parent: 12 - - uid: 27170 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: -9.5,21.5 - parent: 12 - - uid: 27315 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,0.5 - parent: 12 - - uid: 27852 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-50.5 - parent: 12 - - uid: 28298 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-67.5 - parent: 12 - - uid: 28458 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-4.5 - parent: 12 - - uid: 28745 - components: - - type: Transform - pos: 19.5,7.5 - parent: 12 - - uid: 28753 - components: - - type: Transform - pos: 16.5,5.5 - parent: 12 - - uid: 29285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,64.5 - parent: 12 - - uid: 29643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,65.5 - parent: 12 - - uid: 29836 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,68.5 - parent: 12 - - uid: 29839 - components: - - type: Transform - pos: -22.5,59.5 - parent: 12 - - uid: 29866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-39.5 - parent: 12 - - uid: 30269 - components: - - type: Transform - pos: -19.5,2.5 - parent: 12 - - uid: 30296 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,71.5 - parent: 12 - - uid: 31025 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,17.5 - parent: 12 - - uid: 31185 - components: - - type: Transform - pos: 5.5,-59.5 - parent: 12 - - uid: 31508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-13.5 - parent: 12 - - uid: 31509 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-13.5 - parent: 12 -- proto: PoweredSmallLightEmpty - entities: - - uid: 31337 - components: - - type: Transform - pos: -37.5,-56.5 - parent: 12 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 31338 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - - uid: 31363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-22.5 - parent: 12 -- proto: Protolathe - entities: - - uid: 2321 - components: - - type: Transform - pos: -23.5,-21.5 - parent: 12 - - uid: 7312 - components: - - type: Transform - pos: 18.5,-22.5 - parent: 12 -- proto: ProtolatheMachineCircuitboard - entities: - - uid: 31352 - components: - - type: Transform - pos: 37.375404,-39.43202 - parent: 12 -- proto: PsychBed - entities: - - uid: 31204 - components: - - type: Transform - pos: -23.5,-59.5 - parent: 12 -- proto: PuddleVomit - entities: - - uid: 4232 - components: - - type: Transform - pos: 9.5,-32.5 - parent: 12 -- proto: Rack - entities: - - uid: 1069 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-30.5 - parent: 12 - - uid: 1769 - components: - - type: Transform - pos: -30.5,-18.5 - parent: 12 - - uid: 1770 - components: - - type: Transform - pos: -31.5,-18.5 - parent: 12 - - uid: 1771 - components: - - type: Transform - pos: -35.5,-37.5 - parent: 12 - - uid: 2171 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,5.5 - parent: 12 - - uid: 2645 - components: - - type: Transform - 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: 3619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-33.5 - parent: 12 - - uid: 4187 - components: - - type: Transform - pos: 42.5,63.5 - parent: 12 - - uid: 4246 - components: - - type: Transform - pos: 3.5,-29.5 - parent: 12 - - uid: 4304 - components: - - type: Transform - pos: -11.5,-21.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 - pos: 5.5,61.5 - parent: 12 - - uid: 5027 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-13.5 - parent: 12 - - uid: 5817 - components: - - type: Transform - pos: -45.5,73.5 - parent: 12 - - uid: 5890 - components: - - type: Transform - pos: 31.5,0.5 - parent: 12 - - uid: 5893 - components: - - type: Transform - pos: 31.5,-0.5 - parent: 12 - - uid: 6204 - components: - - 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 - pos: 39.5,-19.5 - parent: 12 - - uid: 8040 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-49.5 - parent: 12 - - uid: 8868 - components: - - type: Transform - pos: -12.5,-45.5 - parent: 12 - - uid: 8905 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,65.5 - parent: 12 - - uid: 9182 - components: - - type: Transform - pos: 52.5,1.5 - parent: 12 - - uid: 9219 - components: - - type: Transform - pos: 40.5,-39.5 - parent: 12 - - uid: 9220 - components: - - type: Transform - pos: 41.5,-39.5 - parent: 12 - - uid: 9260 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,55.5 - parent: 12 - - uid: 9472 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-15.5 - parent: 12 - - uid: 9475 - components: - - type: Transform - 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 - pos: -11.5,-24.5 - parent: 12 - - uid: 9722 - components: - - type: Transform - pos: 1.5,11.5 - parent: 12 - - uid: 9746 - components: - - type: Transform - pos: -0.5,17.5 - parent: 12 - - uid: 9761 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-25.5 - parent: 12 - - uid: 10373 - components: - - type: Transform - pos: -21.5,-7.5 - parent: 12 - - uid: 10374 - components: - - type: Transform - pos: -20.5,-7.5 - parent: 12 - - uid: 10405 - components: - - type: Transform - 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 - pos: -31.5,7.5 - parent: 12 - - uid: 11015 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-11.5 - parent: 12 - - uid: 11452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,0.5 - parent: 12 - - uid: 11476 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-6.5 - parent: 12 - - uid: 12265 - components: - - type: Transform - pos: 9.5,12.5 - parent: 12 - - uid: 12318 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,64.5 - parent: 12 - - uid: 14574 - components: - - type: Transform - pos: 35.5,-9.5 - parent: 12 - - uid: 16373 - components: - - type: Transform - pos: -59.5,-16.5 - parent: 12 - - uid: 16451 - components: - - type: Transform - pos: -10.5,11.5 - parent: 12 - - uid: 16452 - components: - - type: Transform - pos: -10.5,10.5 - parent: 12 - - uid: 16453 - components: - - type: Transform - pos: -10.5,8.5 - parent: 12 - - uid: 16454 - components: - - type: Transform - pos: -10.5,7.5 - parent: 12 - - uid: 16504 - components: - - type: Transform - pos: -22.5,14.5 - parent: 12 - - uid: 16508 - components: - - type: Transform - pos: -23.5,14.5 - parent: 12 - - uid: 16566 - components: - - type: Transform - pos: -9.5,23.5 - parent: 12 - - uid: 16567 - components: - - type: Transform - pos: -9.5,24.5 - parent: 12 - - uid: 16836 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,38.5 - parent: 12 - - uid: 18159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,44.5 - parent: 12 - - uid: 18160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,44.5 - parent: 12 - - uid: 20836 - components: - - type: Transform - pos: -39.5,36.5 - parent: 12 - - uid: 20837 - components: - - type: Transform - pos: -42.5,42.5 - parent: 12 - - uid: 21502 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,23.5 - parent: 12 - - uid: 21503 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,23.5 - parent: 12 - - uid: 21505 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,31.5 - parent: 12 - - uid: 21506 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,31.5 - parent: 12 - - uid: 21510 - components: - - type: Transform - pos: -5.5,17.5 - parent: 12 - - uid: 21893 - components: - - type: Transform - pos: 13.5,-19.5 - parent: 12 - - uid: 21933 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 12 - - uid: 21976 - components: - - type: Transform - pos: 2.5,-15.5 - parent: 12 - - uid: 22018 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-7.5 - parent: 12 - - uid: 22406 - components: - - type: Transform - pos: -6.5,55.5 - parent: 12 - - uid: 22443 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-34.5 - parent: 12 - - uid: 22624 - components: - - type: Transform - pos: 56.5,-7.5 - parent: 12 - - uid: 23652 - components: - - type: Transform - pos: 37.5,57.5 - parent: 12 - - uid: 23653 - components: - - type: Transform - pos: 36.5,57.5 - parent: 12 - - uid: 23658 - components: - - type: Transform - pos: 48.5,53.5 - parent: 12 - - uid: 23705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,46.5 - parent: 12 - - uid: 24477 - components: - - type: Transform - 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 - pos: 6.5,64.5 - parent: 12 - - uid: 25098 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-34.5 - parent: 12 - - uid: 25327 - components: - - type: Transform - 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 - pos: -20.5,16.5 - parent: 12 - - uid: 25700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-25.5 - parent: 12 - - uid: 25701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 12 - - uid: 25748 - components: - - type: Transform - pos: 6.5,61.5 - parent: 12 - - uid: 25750 - components: - - type: Transform - pos: 4.5,61.5 - parent: 12 - - uid: 25753 - components: - - type: Transform - pos: -12.5,68.5 - parent: 12 - - uid: 25755 - components: - - type: Transform - pos: -20.5,49.5 - parent: 12 - - uid: 25756 - components: - - type: Transform - pos: -23.5,50.5 - parent: 12 - - uid: 25845 - components: - - type: Transform - pos: 38.5,21.5 - parent: 12 - - uid: 25846 - components: - - type: Transform - pos: 37.5,21.5 - parent: 12 - - uid: 25847 - components: - - type: Transform - pos: 37.5,25.5 - parent: 12 - - uid: 25854 - components: - - type: Transform - pos: 59.5,58.5 - parent: 12 - - uid: 25895 - components: - - type: Transform - pos: 38.5,59.5 - parent: 12 - - uid: 25896 - components: - - type: Transform - pos: 39.5,59.5 - parent: 12 - - uid: 25899 - components: - - type: Transform - pos: -6.5,68.5 - parent: 12 - - uid: 25907 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,50.5 - parent: 12 - - uid: 25908 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,51.5 - parent: 12 - - uid: 25928 - components: - - type: Transform - pos: 33.5,67.5 - parent: 12 - - uid: 25929 - components: - - type: Transform - pos: 42.5,56.5 - parent: 12 - - uid: 25962 - components: - - type: Transform - pos: -33.5,51.5 - parent: 12 - - uid: 25966 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,21.5 - parent: 12 - - uid: 25967 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,22.5 - parent: 12 - - uid: 25971 - components: - - type: Transform - pos: -22.5,20.5 - parent: 12 - - uid: 25988 - components: - - type: Transform - pos: -44.5,-45.5 - parent: 12 - - uid: 25989 - components: - - type: Transform - pos: -42.5,-45.5 - parent: 12 - - uid: 25991 - components: - - type: Transform - pos: -43.5,-45.5 - parent: 12 - - uid: 26000 - components: - - type: Transform - pos: -34.5,-34.5 - parent: 12 - - uid: 26007 - components: - - type: Transform - pos: 55.5,-5.5 - parent: 12 - - uid: 26301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-48.5 - parent: 12 - - uid: 26309 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-48.5 - parent: 12 - - uid: 26384 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,38.5 - parent: 12 - - uid: 26419 - components: - - type: Transform - pos: 28.5,14.5 - parent: 12 - - uid: 26571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,65.5 - parent: 12 - - uid: 26837 - components: - - type: Transform - 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 - rot: 1.5707963267948966 rad - pos: -40.5,-51.5 - parent: 12 - - uid: 28074 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,0.5 - parent: 12 - - uid: 28213 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-48.5 - parent: 12 - - uid: 28273 - components: - - type: Transform - 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 - pos: 53.5,-3.5 - parent: 12 - - uid: 28760 - components: - - type: Transform - pos: 53.5,-2.5 - parent: 12 - - uid: 28871 - components: - - type: Transform - 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: 30708 - components: - - type: Transform - pos: -17.5,-61.5 - parent: 12 - - uid: 31017 - components: - - type: Transform - pos: -53.5,-47.5 - parent: 12 - - uid: 31086 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-66.5 - parent: 12 - - uid: 31114 - components: - - type: Transform - pos: -11.5,-71.5 - parent: 12 - - uid: 31261 - components: - - type: Transform - pos: 0.5,-64.5 - parent: 12 - - uid: 31269 - components: - - type: Transform - pos: -12.5,-51.5 - parent: 12 - - uid: 31336 - components: - - type: Transform - pos: -8.5,-66.5 - parent: 12 - - uid: 31660 - components: - - type: Transform - pos: -41.5,40.5 - parent: 12 - - uid: 31661 - components: - - type: Transform - pos: -31.5,38.5 - parent: 12 - - uid: 32108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,64.5 - parent: 12 -- proto: RadioHandheld - entities: - - uid: 9805 - components: - - type: Transform - pos: 12.226846,-19.550192 - parent: 12 - - uid: 9807 - components: - - type: Transform - pos: 12.581013,-19.393833 - parent: 12 - - uid: 10410 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -22.80233,-4.2552257 - parent: 12 - - uid: 10411 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -22.638622,-4.51018 - parent: 12 - - uid: 16468 - components: - - type: Transform - pos: -12.3447275,10.371946 - parent: 12 - - uid: 16469 - components: - - type: Transform - pos: -12.4697275,10.528196 - parent: 12 - - uid: 16470 - components: - - type: Transform - pos: -12.605144,10.684446 - parent: 12 - - uid: 17794 - components: - - type: Transform - pos: -52.68128,16.57458 - parent: 12 - - uid: 17943 - components: - - type: Transform - pos: -50.602604,36.47051 - parent: 12 - - uid: 17944 - components: - - type: Transform - pos: -50.27624,36.738293 - parent: 12 - - uid: 18962 - components: - - type: Transform - pos: -45.477386,26.516344 - parent: 12 - - uid: 21071 - components: - - type: Transform - pos: -44.390804,44.56394 - parent: 12 - - uid: 22168 - components: - - type: Transform - pos: -50.73859,36.80472 - parent: 12 - - uid: 23614 - components: - - type: Transform - pos: 17.95533,68.717445 - parent: 12 - - uid: 31482 - components: - - type: Transform - pos: 13.338511,-34.279495 - parent: 12 - - uid: 31483 - components: - - type: Transform - pos: 13.6402,-34.18158 - parent: 12 -- proto: RagItem - entities: - - uid: 2853 - components: - - 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 - components: - - type: Transform - pos: -29.5,-5.5 - parent: 12 - - uid: 380 - components: - - type: Transform - pos: -31.5,-9.5 - parent: 12 - - uid: 4065 - components: - - type: Transform - pos: -14.5,-45.5 - parent: 12 - - uid: 6079 - components: - - type: Transform - pos: -10.5,-15.5 - parent: 12 - - uid: 6185 - components: - - type: Transform - rot: -1.5707963267948966 rad - 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: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-10.5 - parent: 12 - - uid: 10302 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-9.5 - parent: 12 - - uid: 11362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-5.5 - parent: 12 - - uid: 12017 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,13.5 - parent: 12 - - uid: 12096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,58.5 - parent: 12 - - uid: 12294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,16.5 - parent: 12 - - uid: 14194 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: 51.5,13.5 - parent: 12 - - uid: 22594 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,48.5 - parent: 12 - - uid: 22595 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,50.5 - parent: 12 - - uid: 22596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,49.5 - parent: 12 - - uid: 22597 - components: - - type: Transform - pos: 14.5,47.5 - parent: 12 - - uid: 22598 - components: - - type: Transform - pos: 13.5,47.5 - parent: 12 - - uid: 22599 - components: - - type: Transform - pos: 12.5,47.5 - parent: 12 - - uid: 22600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,48.5 - parent: 12 - - uid: 22602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,49.5 - parent: 12 - - uid: 22607 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,51.5 - parent: 12 - - uid: 22608 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,51.5 - parent: 12 - - uid: 22609 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,51.5 - parent: 12 - - uid: 23520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,52.5 - parent: 12 - - uid: 23521 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,52.5 - parent: 12 - - uid: 23522 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,53.5 - parent: 12 - - uid: 23525 - components: - - type: Transform - pos: 54.5,56.5 - parent: 12 - - uid: 23526 - components: - - type: Transform - pos: 55.5,56.5 - parent: 12 - - uid: 23527 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,57.5 - parent: 12 - - uid: 23541 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,53.5 - parent: 12 - - uid: 23542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,58.5 - parent: 12 - - uid: 23544 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,57.5 - parent: 12 - - uid: 24491 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,65.5 - parent: 12 - - uid: 24492 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,68.5 - parent: 12 - - uid: 28140 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,74.5 - parent: 12 - - uid: 28146 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,74.5 - parent: 12 - - uid: 28163 - components: - - type: Transform - 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: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,53.5 - parent: 12 - - uid: 28615 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,52.5 - parent: 12 - - uid: 28616 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,52.5 - parent: 12 - - uid: 28618 - components: - - type: Transform - pos: 61.5,56.5 - parent: 12 - - uid: 28619 - components: - - type: Transform - pos: 62.5,56.5 - parent: 12 - - uid: 28620 - components: - - type: Transform - pos: 63.5,56.5 - parent: 12 - - uid: 28695 - components: - - type: Transform - pos: 52.5,0.5 - parent: 12 - - uid: 28756 - components: - - type: Transform - pos: 55.5,1.5 - parent: 12 - - uid: 28765 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-2.5 - parent: 12 - - uid: 28872 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-43.5 - parent: 12 - - uid: 29010 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,70.5 - parent: 12 - - uid: 29044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,74.5 - parent: 12 - - uid: 29045 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,73.5 - parent: 12 - - uid: 29052 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,70.5 - parent: 12 - - uid: 29058 - components: - - type: Transform - pos: -50.5,69.5 - parent: 12 - - uid: 30544 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,23.5 - parent: 12 - - uid: 31487 - components: - - type: Transform - pos: 12.5,-31.5 - parent: 12 - - uid: 31490 - components: - - type: Transform - pos: 30.5,-33.5 - parent: 12 - - uid: 31495 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,20.5 - parent: 12 - - uid: 31610 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-20.5 - parent: 12 - - uid: 31617 - components: - - type: Transform - pos: -64.5,-28.5 - parent: 12 - - uid: 31619 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-28.5 - parent: 12 - - uid: 31631 - components: - - type: Transform - pos: -64.5,-20.5 - parent: 12 - - uid: 31703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-25.5 - parent: 12 - - uid: 31704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-24.5 - parent: 12 - - uid: 31705 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-23.5 - parent: 12 -- proto: RailingCorner - entities: - - uid: 6211 - components: - - type: Transform - rot: -1.5707963267948966 rad - 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: - - type: Transform - pos: 15.5,47.5 - parent: 12 - - uid: 22604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,47.5 - parent: 12 - - uid: 22605 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,51.5 - parent: 12 - - uid: 22606 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,51.5 - parent: 12 - - uid: 23514 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,53.5 - parent: 12 - - uid: 23516 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,53.5 - parent: 12 - - uid: 23517 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,53.5 - parent: 12 - - uid: 23519 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,56.5 - parent: 12 - - uid: 23540 - components: - - type: Transform - pos: 56.5,56.5 - parent: 12 -- proto: RailingCornerSmall - entities: - - uid: 6053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-15.5 - parent: 12 - - uid: 11421 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-13.5 - parent: 12 - - uid: 23518 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,52.5 - parent: 12 - - uid: 31488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-31.5 - parent: 12 - - uid: 31489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-31.5 - parent: 12 - - uid: 31491 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-33.5 - parent: 12 - - uid: 31496 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,19.5 - parent: 12 - - uid: 31497 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,21.5 - parent: 12 - - uid: 31498 - components: - - type: Transform - pos: -20.5,22.5 - parent: 12 - - uid: 31499 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,24.5 - parent: 12 -- proto: RandomArcade - entities: - - uid: 16926 - components: - - type: Transform - pos: 5.5,53.5 - parent: 12 - - uid: 16932 - components: - - type: Transform - pos: 4.5,53.5 - parent: 12 - - uid: 16933 - components: - - type: Transform - pos: 3.5,53.5 - parent: 12 - - uid: 17110 - components: - - type: Transform - pos: 2.5,50.5 - parent: 12 - - uid: 17111 - components: - - type: Transform - pos: 3.5,50.5 - parent: 12 -- proto: RandomArtifactSpawner - entities: - - 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 - components: - - type: Transform - pos: 20.5,50.5 - parent: 12 - - uid: 15071 - components: - - type: Transform - pos: 20.5,53.5 - parent: 12 - - uid: 15072 - components: - - 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 - pos: -2.5,-25.5 - parent: 12 - - uid: 25715 - components: - - type: Transform - pos: 16.5,-28.5 - parent: 12 - - uid: 28253 - components: - - type: Transform - pos: -55.5,-14.5 - parent: 12 - - uid: 29107 - components: - - type: Transform - pos: -45.5,71.5 - parent: 12 -- proto: RandomFoodMeal - entities: - - uid: 23547 - components: - - type: Transform - pos: 34.5,53.5 - parent: 12 - - uid: 25953 - components: - - type: Transform - pos: -11.5,60.5 - parent: 12 - - uid: 29862 - components: - - type: Transform - pos: -30.5,-39.5 - parent: 12 -- proto: RandomFoodSingle - entities: - - uid: 2944 - components: - - type: Transform - pos: 5.5,69.5 - parent: 12 - - uid: 15419 - components: - - type: Transform - pos: 20.5,52.5 - parent: 12 - - uid: 23504 - components: - - type: Transform - pos: 21.5,53.5 - parent: 12 - - uid: 23505 - components: - - 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 - components: - - type: Transform - pos: 47.5,-38.5 - parent: 12 - - uid: 8837 - components: - - type: Transform - pos: 45.5,-40.5 - parent: 12 -- proto: RandomPosterAny - entities: - - uid: 7795 - components: - - type: Transform - pos: 36.5,9.5 - parent: 12 - - uid: 8990 - components: - - type: Transform - pos: 38.5,-16.5 - parent: 12 - - uid: 19860 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,5.5 - parent: 12 - - uid: 23535 - components: - - type: Transform - pos: 31.5,17.5 - parent: 12 - - uid: 24324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-36.5 - parent: 12 - - uid: 24326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,13.5 - parent: 12 - - uid: 24328 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,25.5 - parent: 12 - - uid: 24330 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,15.5 - parent: 12 - - uid: 24331 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,18.5 - parent: 12 - - uid: 24335 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,34.5 - parent: 12 - - uid: 24336 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,10.5 - parent: 12 - - uid: 24338 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,66.5 - parent: 12 - - uid: 25722 - components: - - type: Transform - pos: -21.5,15.5 - parent: 12 - - uid: 29366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,23.5 - parent: 12 - - uid: 29392 - components: - - type: Transform - pos: 41.5,-23.5 - parent: 12 - - uid: 30438 - components: - - type: Transform - pos: 34.5,21.5 - parent: 12 - - uid: 31888 - components: - - type: Transform - pos: 41.5,4.5 - parent: 12 -- proto: RandomPosterContraband - entities: - - uid: 1350 - components: - - type: Transform - pos: 33.5,-33.5 - parent: 12 - - uid: 5245 - components: - - type: Transform - pos: 46.5,-2.5 - parent: 12 - - uid: 6008 - components: - - type: Transform - pos: 50.5,-4.5 - parent: 12 - - uid: 8902 - components: - - type: Transform - pos: 45.5,6.5 - parent: 12 - - uid: 9391 - components: - - type: Transform - pos: -12.5,-71.5 - parent: 12 - - uid: 13556 - components: - - type: Transform - pos: 34.5,14.5 - parent: 12 - - uid: 15181 - components: - - 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 - pos: -25.5,52.5 - parent: 12 - - uid: 21407 - components: - - type: Transform - pos: -3.5,36.5 - parent: 12 - - uid: 22860 - components: - - type: Transform - pos: -17.5,69.5 - parent: 12 - - uid: 24323 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-36.5 - parent: 12 - - uid: 24327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,21.5 - parent: 12 - - uid: 24329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,23.5 - parent: 12 - - uid: 24334 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,18.5 - parent: 12 - - uid: 24688 - components: - - type: Transform - pos: 54.5,-7.5 - parent: 12 - - uid: 25387 - components: - - type: Transform - pos: 34.5,9.5 - parent: 12 - - uid: 25394 - components: - - type: Transform - pos: 49.5,13.5 - parent: 12 - - uid: 25395 - components: - - type: Transform - pos: 36.5,19.5 - parent: 12 - - uid: 25660 - components: - - type: Transform - pos: 40.5,9.5 - parent: 12 - - uid: 25713 - components: - - type: Transform - pos: -10.5,-31.5 - parent: 12 - - uid: 26824 - components: - - type: Transform - 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: 31098 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-66.5 - parent: 12 - - uid: 31717 - components: - - type: Transform - pos: 5.5,-52.5 - parent: 12 - - uid: 31718 - components: - - type: Transform - pos: -4.5,-64.5 - parent: 12 - - uid: 31720 - components: - - type: Transform - pos: -35.5,-56.5 - parent: 12 - - uid: 31721 - components: - - type: Transform - pos: -30.5,-60.5 - parent: 12 - - uid: 31722 - components: - - type: Transform - pos: -46.5,-54.5 - parent: 12 - - uid: 31723 - components: - - type: Transform - pos: -51.5,-48.5 - parent: 12 - - uid: 31726 - components: - - type: Transform - pos: -59.5,-19.5 - parent: 12 - - uid: 31727 - components: - - type: Transform - pos: -45.5,-15.5 - parent: 12 - - uid: 31728 - components: - - type: Transform - pos: -34.5,-13.5 - parent: 12 - - uid: 31729 - components: - - type: Transform - pos: -22.5,-17.5 - parent: 12 - - uid: 32040 - components: - - type: Transform - pos: 41.5,-10.5 - parent: 12 -- proto: RandomPosterLegit - entities: - - uid: 726 - components: - - type: Transform - pos: -18.5,-29.5 - parent: 12 - - uid: 2131 - components: - - type: Transform - pos: -47.5,-34.5 - parent: 12 - - uid: 2306 - components: - - type: Transform - pos: -37.5,-37.5 - parent: 12 - - uid: 4884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-29.5 - parent: 12 - - uid: 5141 - components: - - type: Transform - pos: 39.5,-24.5 - parent: 12 - - uid: 8993 - components: - - type: Transform - pos: 24.5,-33.5 - parent: 12 - - uid: 8994 - components: - - type: Transform - pos: 9.5,-28.5 - parent: 12 - - uid: 10375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-29.5 - parent: 12 - - uid: 12628 - components: - - type: Transform - pos: 16.5,54.5 - parent: 12 - - uid: 18633 - components: - - type: Transform - pos: -27.5,24.5 - parent: 12 - - uid: 21400 - components: - - type: Transform - pos: -30.5,57.5 - parent: 12 - - uid: 21402 - components: - - type: Transform - pos: -27.5,42.5 - parent: 12 - - uid: 21403 - components: - - type: Transform - pos: -31.5,46.5 - parent: 12 - - uid: 21404 - components: - - type: Transform - pos: -24.5,47.5 - parent: 12 - - uid: 21405 - components: - - type: Transform - pos: -43.5,61.5 - parent: 12 - - uid: 21406 - components: - - type: Transform - pos: -46.5,63.5 - parent: 12 - - uid: 24290 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,42.5 - parent: 12 - - uid: 24291 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,46.5 - parent: 12 - - uid: 24292 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,40.5 - parent: 12 - - uid: 24293 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,44.5 - parent: 12 - - uid: 24294 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,30.5 - parent: 12 - - uid: 24296 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,42.5 - parent: 12 - - uid: 24298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,57.5 - parent: 12 - - uid: 24299 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,52.5 - parent: 12 - - uid: 24301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,60.5 - parent: 12 - - uid: 24304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,54.5 - parent: 12 - - uid: 24305 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,56.5 - parent: 12 - - uid: 24306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,47.5 - parent: 12 - - uid: 24308 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,5.5 - parent: 12 - - uid: 24310 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-24.5 - parent: 12 - - uid: 24311 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-29.5 - parent: 12 - - uid: 24312 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-24.5 - parent: 12 - - uid: 24313 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-24.5 - parent: 12 - - uid: 24314 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-30.5 - parent: 12 - - uid: 24315 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-16.5 - parent: 12 - - uid: 24316 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-16.5 - parent: 12 - - uid: 24317 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-18.5 - parent: 12 - - uid: 24318 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-12.5 - parent: 12 - - uid: 24319 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-5.5 - parent: 12 - - uid: 24320 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-18.5 - parent: 12 - - uid: 24339 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,43.5 - parent: 12 - - uid: 24341 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,18.5 - parent: 12 - - uid: 24342 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,23.5 - parent: 12 - - uid: 24343 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,26.5 - parent: 12 - - uid: 24344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,15.5 - parent: 12 - - uid: 26231 - components: - - type: Transform - pos: -46.5,-42.5 - parent: 12 - - uid: 26232 - components: - - type: Transform - pos: -36.5,-47.5 - parent: 12 - - uid: 26233 - components: - - type: Transform - pos: -24.5,-50.5 - parent: 12 - - uid: 26565 - components: - - type: Transform - pos: -24.5,-8.5 - parent: 12 - - uid: 27026 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-33.5 - parent: 12 - - uid: 28333 - components: - - type: Transform - pos: -12.5,23.5 - parent: 12 - - uid: 29357 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,3.5 - parent: 12 - - uid: 29358 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,15.5 - parent: 12 - - uid: 29359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,29.5 - parent: 12 - - uid: 29360 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,38.5 - parent: 12 - - uid: 29361 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,25.5 - parent: 12 - - uid: 29362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,33.5 - parent: 12 - - uid: 29363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,39.5 - parent: 12 - - uid: 29364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,52.5 - parent: 12 - - uid: 29365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,41.5 - parent: 12 - - uid: 32018 - components: - - type: Transform - pos: 52.5,50.5 - parent: 12 -- proto: RandomSoap - entities: - - uid: 22405 - components: - - type: Transform - pos: -6.5,55.5 - parent: 12 -- proto: RandomSpawner - entities: - - uid: 757 - components: - - type: Transform - pos: 57.5,-40.5 - parent: 12 - - uid: 5858 - components: - - type: Transform - pos: 36.5,14.5 - parent: 12 - - uid: 6153 - components: - - type: Transform - pos: 48.5,25.5 - parent: 12 - - uid: 6154 - components: - - type: Transform - pos: 35.5,17.5 - parent: 12 - - uid: 6156 - components: - - type: Transform - pos: 37.5,22.5 - parent: 12 - - uid: 6173 - components: - - type: Transform - pos: 40.5,16.5 - parent: 12 - - uid: 9306 - components: - - 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 - pos: 42.5,-12.5 - parent: 12 - - uid: 12070 - components: - - type: Transform - pos: 32.5,21.5 - parent: 12 - - uid: 12225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-16.5 - parent: 12 - - uid: 13005 - components: - - type: Transform - pos: 33.5,15.5 - parent: 12 - - uid: 13971 - components: - - type: Transform - pos: 40.5,12.5 - parent: 12 - - uid: 23706 - components: - - type: Transform - pos: -44.5,58.5 - parent: 12 - - uid: 24221 - components: - - type: Transform - pos: 32.5,42.5 - parent: 12 - - uid: 24345 - components: - - type: Transform - pos: 31.5,-40.5 - parent: 12 - - uid: 24347 - components: - - type: Transform - pos: 35.5,23.5 - parent: 12 - - uid: 24348 - components: - - type: Transform - pos: 34.5,35.5 - parent: 12 - - uid: 24349 - components: - - type: Transform - pos: 40.5,42.5 - parent: 12 - - uid: 24350 - components: - - type: Transform - pos: 43.5,45.5 - parent: 12 - - uid: 24352 - components: - - type: Transform - pos: 43.5,48.5 - parent: 12 - - uid: 24353 - components: - - type: Transform - pos: 48.5,45.5 - parent: 12 - - uid: 24354 - components: - - type: Transform - pos: 39.5,46.5 - parent: 12 - - uid: 24355 - components: - - type: Transform - pos: 31.5,46.5 - parent: 12 - - uid: 24356 - components: - - type: Transform - pos: 36.5,51.5 - parent: 12 - - uid: 24357 - components: - - type: Transform - pos: 40.5,52.5 - parent: 12 - - uid: 24358 - components: - - type: Transform - pos: 45.5,55.5 - parent: 12 - - uid: 24359 - components: - - type: Transform - pos: 39.5,59.5 - parent: 12 - - uid: 24360 - components: - - type: Transform - pos: 31.5,55.5 - parent: 12 - - uid: 24361 - components: - - type: Transform - pos: 19.5,59.5 - parent: 12 - - uid: 24362 - components: - - type: Transform - pos: 17.5,51.5 - parent: 12 - - uid: 24363 - components: - - type: Transform - pos: 13.5,48.5 - parent: 12 - - uid: 24364 - components: - - type: Transform - pos: 9.5,52.5 - parent: 12 - - uid: 24365 - components: - - type: Transform - pos: 9.5,58.5 - parent: 12 - - uid: 24366 - components: - - type: Transform - pos: 3.5,61.5 - parent: 12 - - uid: 24367 - components: - - type: Transform - pos: 0.5,55.5 - parent: 12 - - uid: 24368 - components: - - type: Transform - pos: -2.5,52.5 - parent: 12 - - uid: 24369 - components: - - type: Transform - pos: 3.5,65.5 - parent: 12 - - uid: 24370 - components: - - type: Transform - pos: 7.5,66.5 - parent: 12 - - uid: 24372 - components: - - type: Transform - pos: 9.5,65.5 - parent: 12 - - uid: 24373 - components: - - type: Transform - pos: -1.5,68.5 - parent: 12 - - uid: 24374 - components: - - type: Transform - pos: -9.5,69.5 - parent: 12 - - uid: 24376 - components: - - type: Transform - pos: -15.5,68.5 - parent: 12 - - uid: 24377 - components: - - type: Transform - pos: -19.5,63.5 - parent: 12 - - uid: 24378 - components: - - type: Transform - pos: -18.5,60.5 - parent: 12 - - uid: 24380 - components: - - type: Transform - pos: -19.5,50.5 - parent: 12 - - uid: 24381 - components: - - type: Transform - pos: -20.5,49.5 - parent: 12 - - uid: 24382 - components: - - type: Transform - pos: -20.5,32.5 - parent: 12 - - uid: 24383 - components: - - type: Transform - pos: -25.5,36.5 - parent: 12 - - uid: 24384 - components: - - type: Transform - pos: -22.5,20.5 - parent: 12 - - uid: 24385 - components: - - type: Transform - pos: -26.5,22.5 - parent: 12 - - uid: 24386 - components: - - type: Transform - pos: -10.5,17.5 - parent: 12 - - uid: 24387 - components: - - type: Transform - pos: -6.5,15.5 - parent: 12 - - uid: 24389 - components: - - type: Transform - pos: -0.5,9.5 - parent: 12 - - uid: 24390 - components: - - type: Transform - pos: -7.5,24.5 - parent: 12 - - uid: 24391 - components: - - type: Transform - pos: -6.5,32.5 - parent: 12 - - uid: 24392 - components: - - type: Transform - pos: -1.5,35.5 - parent: 12 - - uid: 24393 - components: - - type: Transform - pos: -2.5,40.5 - parent: 12 - - uid: 24394 - components: - - type: Transform - pos: -14.5,-0.5 - parent: 12 - - uid: 24395 - components: - - type: Transform - pos: -16.5,-5.5 - parent: 12 - - uid: 24396 - components: - - type: Transform - pos: -20.5,-5.5 - parent: 12 - - uid: 24397 - components: - - type: Transform - pos: -14.5,-13.5 - parent: 12 - - uid: 24398 - components: - - type: Transform - pos: -16.5,-22.5 - parent: 12 - - uid: 24399 - components: - - type: Transform - pos: -11.5,-28.5 - parent: 12 - - uid: 24400 - components: - - type: Transform - pos: -3.5,-26.5 - parent: 12 - - uid: 24401 - components: - - type: Transform - pos: 6.5,-27.5 - parent: 12 - - uid: 24402 - components: - - type: Transform - pos: 13.5,-48.5 - parent: 12 - - uid: 24403 - components: - - type: Transform - pos: 19.5,-28.5 - parent: 12 - - uid: 24404 - components: - - type: Transform - pos: 34.5,-42.5 - parent: 12 - - uid: 24405 - components: - - type: Transform - pos: -33.5,1.5 - parent: 12 - - uid: 24406 - components: - - type: Transform - pos: 40.5,-38.5 - parent: 12 - - uid: 24407 - components: - - type: Transform - pos: 35.5,-35.5 - parent: 12 - - uid: 24408 - components: - - type: Transform - pos: 39.5,-34.5 - parent: 12 - - uid: 24410 - components: - - type: Transform - pos: 48.5,-33.5 - parent: 12 - - uid: 24411 - components: - - type: Transform - pos: 51.5,-40.5 - parent: 12 - - uid: 24412 - components: - - type: Transform - pos: 50.5,-43.5 - parent: 12 - - uid: 24414 - components: - - type: Transform - pos: 55.5,-46.5 - parent: 12 - - uid: 24415 - components: - - type: Transform - pos: 78.5,-37.5 - parent: 12 - - uid: 24416 - components: - - type: Transform - pos: 79.5,-31.5 - parent: 12 - - uid: 24417 - components: - - type: Transform - pos: 58.5,-31.5 - parent: 12 - - uid: 24418 - components: - - type: Transform - pos: 56.5,-28.5 - parent: 12 - - uid: 24420 - components: - - type: Transform - pos: 57.5,-19.5 - parent: 12 - - uid: 24421 - components: - - type: Transform - pos: 50.5,-19.5 - parent: 12 - - uid: 24422 - components: - - type: Transform - pos: 48.5,-16.5 - parent: 12 - - uid: 24423 - components: - - type: Transform - pos: 58.5,-13.5 - parent: 12 - - uid: 24424 - components: - - type: Transform - pos: 51.5,-12.5 - parent: 12 - - uid: 24425 - components: - - type: Transform - pos: 51.5,-12.5 - parent: 12 - - uid: 24429 - components: - - type: Transform - pos: 42.5,-21.5 - parent: 12 - - uid: 24430 - components: - - type: Transform - pos: 40.5,-22.5 - parent: 12 - - uid: 24431 - components: - - type: Transform - pos: 26.5,-17.5 - parent: 12 - - uid: 24433 - components: - - type: Transform - pos: 16.5,-22.5 - parent: 12 - - uid: 24435 - components: - - type: Transform - pos: 31.5,-13.5 - parent: 12 - - uid: 24436 - components: - - type: Transform - pos: 20.5,5.5 - parent: 12 - - uid: 24439 - components: - - type: Transform - pos: -16.5,7.5 - parent: 12 - - uid: 24440 - components: - - type: Transform - pos: -21.5,10.5 - parent: 12 - - uid: 24441 - components: - - type: Transform - pos: -27.5,2.5 - parent: 12 - - uid: 24442 - components: - - type: Transform - pos: -42.5,17.5 - parent: 12 - - uid: 24443 - components: - - type: Transform - pos: -27.5,17.5 - parent: 12 - - uid: 24444 - components: - - type: Transform - pos: -25.5,-19.5 - parent: 12 - - uid: 24447 - components: - - type: Transform - pos: -26.5,-6.5 - parent: 12 - - uid: 24448 - components: - - type: Transform - pos: -26.5,-6.5 - parent: 12 - - uid: 24457 - components: - - type: Transform - pos: -29.5,-25.5 - parent: 12 - - uid: 24458 - components: - - type: Transform - pos: -36.5,-32.5 - parent: 12 - - uid: 24459 - components: - - type: Transform - pos: -31.5,-34.5 - parent: 12 - - uid: 24461 - components: - - type: Transform - pos: -45.5,-26.5 - parent: 12 - - uid: 24462 - components: - - type: Transform - pos: -44.5,-28.5 - parent: 12 - - uid: 24463 - components: - - type: Transform - pos: -16.5,-37.5 - parent: 12 - - uid: 24464 - components: - - type: Transform - pos: -17.5,-47.5 - parent: 12 - - uid: 24465 - components: - - type: Transform - pos: -21.5,-51.5 - parent: 12 - - uid: 24466 - components: - - type: Transform - pos: -21.5,-54.5 - parent: 12 - - uid: 24467 - components: - - type: Transform - pos: -16.5,-55.5 - parent: 12 - - uid: 24468 - components: - - type: Transform - pos: -7.5,-43.5 - parent: 12 - - uid: 24470 - components: - - type: Transform - pos: 6.5,-48.5 - parent: 12 - - uid: 24473 - components: - - type: Transform - pos: 9.5,-35.5 - parent: 12 - - uid: 24474 - components: - - type: Transform - pos: 6.5,-35.5 - parent: 12 - - uid: 24475 - components: - - type: Transform - pos: 9.5,-30.5 - parent: 12 - - uid: 24476 - components: - - type: Transform - pos: -0.5,-30.5 - parent: 12 - - uid: 24479 - components: - - type: Transform - pos: 37.5,-35.5 - parent: 12 - - uid: 24480 - components: - - type: Transform - pos: 43.5,-14.5 - parent: 12 - - uid: 25733 - components: - - type: Transform - pos: -17.5,20.5 - parent: 12 - - uid: 25734 - components: - - type: Transform - pos: -15.5,27.5 - parent: 12 - - uid: 25735 - components: - - type: Transform - pos: -28.5,26.5 - parent: 12 - - uid: 25736 - components: - - 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 - pos: -31.5,-59.5 - parent: 12 - - uid: 31153 - components: - - type: Transform - pos: -34.5,-57.5 - parent: 12 - - uid: 31154 - components: - - type: Transform - pos: -27.5,-59.5 - parent: 12 - - uid: 31155 - components: - - type: Transform - pos: -30.5,-56.5 - parent: 12 - - uid: 31156 - components: - - type: Transform - pos: -31.5,-54.5 - parent: 12 - - uid: 31157 - components: - - type: Transform - pos: -38.5,-54.5 - parent: 12 - - uid: 31356 - components: - - type: Transform - pos: -10.5,-70.5 - parent: 12 - - uid: 31562 - components: - - type: Transform - pos: 61.5,-25.5 - parent: 12 - - uid: 31582 - components: - - type: Transform - pos: 0.5,-61.5 - parent: 12 - - uid: 31583 - components: - - type: Transform - pos: -5.5,-66.5 - parent: 12 - - uid: 31584 - components: - - type: Transform - pos: -16.5,-64.5 - parent: 12 - - uid: 31585 - components: - - type: Transform - pos: -23.5,-63.5 - parent: 12 - - uid: 31586 - components: - - type: Transform - pos: 4.5,-56.5 - parent: 12 - - uid: 31587 - components: - - type: Transform - pos: 3.5,-50.5 - parent: 12 - - uid: 31588 - components: - - type: Transform - pos: -25.5,-53.5 - parent: 12 - - uid: 31589 - components: - - type: Transform - pos: -47.5,-52.5 - parent: 12 - - uid: 31600 - components: - - type: Transform - pos: 39.5,62.5 - parent: 12 - - uid: 31601 - components: - - type: Transform - pos: 43.5,64.5 - parent: 12 - - uid: 31602 - components: - - type: Transform - pos: 45.5,62.5 - parent: 12 -- proto: RandomVending - entities: - - uid: 9099 - components: - - type: Transform - pos: 40.5,-31.5 - parent: 12 - - uid: 9100 - components: - - type: Transform - pos: 40.5,-30.5 - parent: 12 - - uid: 9539 - components: - - type: Transform - pos: -13.5,23.5 - parent: 12 - - uid: 22401 - components: - - type: Transform - pos: -4.5,46.5 - parent: 12 - - uid: 24173 - components: - - type: Transform - pos: 46.5,43.5 - parent: 12 - - uid: 24351 - components: - - type: Transform - pos: 28.5,43.5 - parent: 12 - - uid: 25689 - components: - - type: Transform - pos: 34.5,-25.5 - parent: 12 - - uid: 25690 - components: - - type: Transform - pos: 33.5,-25.5 - parent: 12 - - uid: 25691 - components: - - type: Transform - pos: 27.5,-25.5 - parent: 12 - - uid: 25841 - components: - - type: Transform - pos: -14.5,35.5 - parent: 12 - - uid: 25958 - components: - - type: Transform - pos: -6.5,43.5 - parent: 12 -- proto: RandomVendingDrinks - entities: - - uid: 4172 - components: - - type: Transform - pos: 0.5,-28.5 - parent: 12 - - uid: 6976 - components: - - type: Transform - pos: 33.5,-39.5 - parent: 12 - - uid: 9102 - components: - - type: Transform - pos: 40.5,-26.5 - parent: 12 - - uid: 16785 - components: - - type: Transform - pos: -10.5,2.5 - parent: 12 - - uid: 16786 - components: - - type: Transform - pos: -13.5,3.5 - parent: 12 - - uid: 22403 - components: - - type: Transform - pos: 15.5,44.5 - parent: 12 - - uid: 22489 - components: - - type: Transform - pos: 1.5,41.5 - parent: 12 - - uid: 24170 - components: - - type: Transform - pos: 42.5,45.5 - parent: 12 - - uid: 25488 - components: - - type: Transform - pos: 16.5,68.5 - parent: 12 - - uid: 25504 - components: - - type: Transform - pos: 10.5,77.5 - parent: 12 - - uid: 25505 - components: - - type: Transform - pos: 26.5,78.5 - parent: 12 - - uid: 25957 - components: - - type: Transform - pos: 10.5,59.5 - parent: 12 - - uid: 25960 - components: - - type: Transform - pos: -33.5,56.5 - parent: 12 -- proto: RandomVendingSnacks - entities: - - uid: 4173 - components: - - type: Transform - pos: 1.5,-28.5 - parent: 12 - - uid: 8912 - components: - - type: Transform - pos: 46.5,-26.5 - parent: 12 - - uid: 22498 - components: - - type: Transform - pos: 0.5,41.5 - parent: 12 - - uid: 24171 - components: - - type: Transform - pos: 45.5,43.5 - parent: 12 - - uid: 24172 - components: - - type: Transform - pos: 47.5,43.5 - parent: 12 - - uid: 25501 - components: - - type: Transform - pos: 20.5,68.5 - parent: 12 - - uid: 25502 - components: - - type: Transform - pos: 26.5,77.5 - parent: 12 - - uid: 25503 - components: - - type: Transform - pos: 10.5,78.5 - parent: 12 - - uid: 25954 - components: - - type: Transform - pos: 11.5,59.5 - parent: 12 - - uid: 25961 - components: - - type: Transform - pos: -33.5,57.5 - parent: 12 -- proto: RCD - entities: - - uid: 5484 - components: - - type: Transform - pos: 25.628305,-22.194756 - parent: 12 -- proto: RCDAmmo - entities: - - uid: 5489 - components: - - type: Transform - parent: 5466 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 5490 - components: - - type: Transform - parent: 5466 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26775 - components: - - type: Transform - rot: -43.98229715025713 rad - pos: 33.26136,-18.774406 - parent: 12 -- proto: ReagentContainerFlour - entities: - - uid: 21398 - components: - - type: Transform - pos: -31.532892,44.28764 - parent: 12 - - uid: 27971 - components: - - type: Transform - pos: 25.355482,55.431313 - parent: 12 -- proto: ReagentContainerRice - entities: - - uid: 3075 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 28.702114,25.374302 - parent: 12 - - uid: 3154 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 28.310734,25.545649 - parent: 12 - - uid: 31595 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 28.604269,25.749634 - parent: 12 -- proto: ReagentContainerSugar - entities: - - uid: 11793 - components: - - type: Transform - pos: 25.441526,55.614902 - parent: 12 -- proto: Recycler - entities: - - uid: 4231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-37.5 - parent: 12 - - uid: 4241 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,14.5 - parent: 12 -- proto: ReinforcedGirder - entities: - - uid: 32292 - components: - - type: Transform - pos: 71.5,14.5 - parent: 12 - - uid: 32293 - components: - - type: Transform - pos: 76.5,14.5 - parent: 12 - - uid: 32294 - components: - - type: Transform - pos: 79.5,12.5 - parent: 12 - - uid: 32295 - components: - - type: Transform - pos: 79.5,6.5 - parent: 12 - - uid: 32296 - components: - - type: Transform - pos: 79.5,-1.5 - parent: 12 - - uid: 32297 - components: - - type: Transform - pos: 73.5,-5.5 - parent: 12 - - uid: 32298 - components: - - type: Transform - pos: 66.5,-5.5 - parent: 12 -- proto: ReinforcedPlasmaWindow - entities: - - uid: 501 - components: - - type: Transform - pos: 7.5,19.5 - parent: 12 - - uid: 525 - components: - - type: Transform - pos: 15.5,19.5 - parent: 12 - - uid: 728 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-25.5 - parent: 12 - - uid: 753 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-27.5 - parent: 12 - - uid: 768 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-23.5 - parent: 12 - - uid: 769 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-21.5 - parent: 12 - - uid: 1915 - components: - - type: Transform - pos: 14.5,19.5 - parent: 12 - - uid: 2266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-0.5 - parent: 12 - - uid: 2573 - components: - - type: Transform - pos: 11.5,1.5 - parent: 12 - - uid: 3976 - components: - - type: Transform - pos: 6.5,19.5 - parent: 12 - - uid: 4606 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-4.5 - parent: 12 - - uid: 4647 - components: - - type: Transform - pos: 11.5,3.5 - parent: 12 - - uid: 4653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,1.5 - parent: 12 - - uid: 4672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-2.5 - parent: 12 - - uid: 4795 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-10.5 - parent: 12 - - uid: 7086 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-8.5 - parent: 12 - - uid: 7158 - components: - - type: Transform - pos: 16.5,19.5 - parent: 12 - - uid: 7203 - components: - - type: Transform - pos: 11.5,2.5 - parent: 12 - - uid: 7225 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-6.5 - parent: 12 - - uid: 7269 - components: - - type: Transform - pos: 13.5,19.5 - parent: 12 - - uid: 11365 - components: - - type: Transform - pos: 8.5,19.5 - parent: 12 - - uid: 15671 - components: - - type: Transform - pos: 9.5,19.5 - parent: 12 - - uid: 26622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,20.5 - parent: 12 - - uid: 26637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,20.5 - parent: 12 - - uid: 26638 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,22.5 - parent: 12 - - uid: 26639 - components: - - type: Transform - pos: 9.5,0.5 - parent: 12 - - uid: 26640 - components: - - type: Transform - pos: 10.5,0.5 - parent: 12 - - uid: 26642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,22.5 - parent: 12 - - uid: 26672 - components: - - type: Transform - pos: 11.5,0.5 - parent: 12 -- proto: ReinforcedWindow - entities: - - uid: 2 - components: - - type: Transform - pos: 0.5,2.5 - parent: 12 - - uid: 4 - components: - - type: Transform - pos: -1.5,3.5 - parent: 12 - - uid: 9 - components: - - 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 - pos: -41.5,56.5 - parent: 12 - - uid: 79 - components: - - type: Transform - pos: 15.5,-18.5 - parent: 12 - - uid: 174 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-13.5 - parent: 12 - - uid: 175 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-13.5 - parent: 12 - - uid: 178 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-15.5 - parent: 12 - - uid: 179 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-15.5 - parent: 12 - - uid: 248 - components: - - type: Transform - pos: -6.5,-5.5 - parent: 12 - - uid: 251 - components: - - 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 - rot: -1.5707963267948966 rad - pos: -28.5,5.5 - parent: 12 - - uid: 285 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-9.5 - parent: 12 - - uid: 305 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-15.5 - parent: 12 - - uid: 306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-14.5 - parent: 12 - - uid: 307 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-13.5 - parent: 12 - - uid: 308 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-12.5 - parent: 12 - - uid: 309 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-11.5 - parent: 12 - - uid: 310 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-10.5 - parent: 12 - - uid: 311 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-10.5 - parent: 12 - - uid: 312 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-11.5 - parent: 12 - - uid: 313 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-12.5 - parent: 12 - - uid: 314 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-13.5 - parent: 12 - - uid: 315 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-14.5 - parent: 12 - - uid: 316 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-15.5 - parent: 12 - - uid: 338 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-16.5 - parent: 12 - - uid: 455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-40.5 - parent: 12 - - uid: 475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,0.5 - parent: 12 - - uid: 476 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,0.5 - parent: 12 - - uid: 477 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,0.5 - parent: 12 - - uid: 519 - components: - - type: Transform - pos: -32.5,-17.5 - parent: 12 - - uid: 522 - components: - - type: Transform - pos: -31.5,-17.5 - parent: 12 - - uid: 523 - components: - - type: Transform - pos: -30.5,-17.5 - parent: 12 - - uid: 541 - components: - - type: Transform - pos: -27.5,-30.5 - parent: 12 - - uid: 542 - components: - - type: Transform - pos: -27.5,-29.5 - parent: 12 - - uid: 582 - components: - - type: Transform - pos: -1.5,-24.5 - parent: 12 - - uid: 583 - components: - - type: Transform - pos: -0.5,-24.5 - parent: 12 - - uid: 584 - components: - - type: Transform - pos: 0.5,-24.5 - parent: 12 - - uid: 596 - components: - - type: Transform - pos: -34.5,-21.5 - parent: 12 - - uid: 597 - components: - - type: Transform - pos: -34.5,-20.5 - parent: 12 - - uid: 623 - components: - - type: Transform - pos: -37.5,-25.5 - parent: 12 - - uid: 624 - components: - - type: Transform - pos: -36.5,-25.5 - parent: 12 - - uid: 625 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-23.5 - parent: 12 - - uid: 643 - components: - - type: Transform - pos: -38.5,-28.5 - parent: 12 - - uid: 664 - components: - - type: Transform - pos: -35.5,-32.5 - parent: 12 - - uid: 665 - components: - - type: Transform - pos: -35.5,-31.5 - parent: 12 - - uid: 666 - components: - - type: Transform - pos: -35.5,-30.5 - parent: 12 - - uid: 667 - components: - - type: Transform - pos: -34.5,-29.5 - parent: 12 - - uid: 668 - components: - - type: Transform - pos: -33.5,-29.5 - parent: 12 - - uid: 669 - components: - - type: Transform - pos: -32.5,-29.5 - parent: 12 - - uid: 670 - components: - - type: Transform - pos: -31.5,-30.5 - parent: 12 - - uid: 671 - components: - - type: Transform - pos: -31.5,-31.5 - parent: 12 - - uid: 672 - components: - - type: Transform - pos: -31.5,-32.5 - parent: 12 - - uid: 673 - components: - - type: Transform - pos: -32.5,-33.5 - parent: 12 - - uid: 674 - components: - - type: Transform - pos: -33.5,-33.5 - parent: 12 - - uid: 675 - components: - - type: Transform - pos: -34.5,-33.5 - parent: 12 - - uid: 692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-7.5 - parent: 12 - - uid: 698 - components: - - type: Transform - pos: -50.5,-33.5 - parent: 12 - - uid: 701 - components: - - type: Transform - pos: -28.5,-2.5 - parent: 12 - - uid: 710 - components: - - type: Transform - pos: -48.5,-33.5 - parent: 12 - - uid: 749 - components: - - type: Transform - pos: -56.5,21.5 - parent: 12 - - uid: 780 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-20.5 - parent: 12 - - uid: 781 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-20.5 - parent: 12 - - uid: 826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-35.5 - parent: 12 - - uid: 835 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-44.5 - parent: 12 - - uid: 839 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-44.5 - parent: 12 - - uid: 874 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-38.5 - parent: 12 - - uid: 875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-37.5 - parent: 12 - - uid: 876 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-36.5 - parent: 12 - - uid: 877 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-35.5 - parent: 12 - - uid: 878 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-34.5 - parent: 12 - - uid: 900 - components: - - type: Transform - pos: -29.5,-7.5 - parent: 12 - - uid: 905 - components: - - type: Transform - pos: -29.5,-3.5 - parent: 12 - - uid: 953 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-27.5 - parent: 12 - - uid: 958 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-26.5 - parent: 12 - - uid: 959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-25.5 - parent: 12 - - uid: 962 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-22.5 - parent: 12 - - uid: 971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-44.5 - parent: 12 - - uid: 982 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-41.5 - parent: 12 - - uid: 983 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-42.5 - parent: 12 - - uid: 997 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-23.5 - parent: 12 - - uid: 1011 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-48.5 - parent: 12 - - uid: 1012 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-48.5 - parent: 12 - - uid: 1025 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-39.5 - parent: 12 - - uid: 1026 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-38.5 - parent: 12 - - uid: 1027 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-36.5 - parent: 12 - - uid: 1028 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-35.5 - parent: 12 - - uid: 1029 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-34.5 - parent: 12 - - uid: 1030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-33.5 - parent: 12 - - uid: 1040 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-47.5 - parent: 12 - - uid: 1064 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-45.5 - parent: 12 - - uid: 1066 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-45.5 - parent: 12 - - uid: 1067 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-45.5 - parent: 12 - - uid: 1085 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,6.5 - parent: 12 - - uid: 1962 - components: - - type: Transform - pos: -22.5,63.5 - parent: 12 - - uid: 2029 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,11.5 - parent: 12 - - uid: 2056 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,11.5 - parent: 12 - - uid: 2242 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,6.5 - parent: 12 - - uid: 2368 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-13.5 - parent: 12 - - uid: 2454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-40.5 - parent: 12 - - uid: 2455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-37.5 - parent: 12 - - uid: 2456 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-37.5 - parent: 12 - - uid: 2457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-40.5 - parent: 12 - - uid: 2541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-40.5 - parent: 12 - - uid: 2542 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-40.5 - parent: 12 - - uid: 2558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-38.5 - parent: 12 - - uid: 2559 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-37.5 - parent: 12 - - uid: 2560 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-36.5 - parent: 12 - - uid: 2561 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-36.5 - parent: 12 - - uid: 2563 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-36.5 - parent: 12 - - uid: 2627 - components: - - type: Transform - pos: 31.5,-24.5 - parent: 12 - - uid: 2628 - components: - - type: Transform - pos: 30.5,-24.5 - parent: 12 - - uid: 2668 - components: - - type: Transform - pos: -8.5,-58.5 - parent: 12 - - uid: 2716 - components: - - type: Transform - pos: -9.5,-55.5 - parent: 12 - - uid: 2717 - components: - - type: Transform - pos: -9.5,-56.5 - parent: 12 - - uid: 2718 - components: - - type: Transform - pos: -7.5,-53.5 - parent: 12 - - uid: 2719 - components: - - type: Transform - pos: -6.5,-53.5 - parent: 12 - - uid: 2722 - components: - - type: Transform - pos: -3.5,-54.5 - parent: 12 - - uid: 2723 - components: - - type: Transform - pos: -2.5,-54.5 - parent: 12 - - uid: 2724 - components: - - type: Transform - pos: -1.5,-54.5 - parent: 12 - - uid: 2731 - components: - - type: Transform - pos: -4.5,-58.5 - parent: 12 - - uid: 2738 - components: - - type: Transform - pos: -0.5,-54.5 - parent: 12 - - uid: 2896 - components: - - type: Transform - pos: 34.5,-24.5 - parent: 12 - - uid: 2977 - components: - - type: Transform - pos: 17.5,14.5 - parent: 12 - - uid: 2979 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,11.5 - parent: 12 - - uid: 2981 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-6.5 - parent: 12 - - uid: 2992 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,11.5 - parent: 12 - - uid: 3068 - components: - - type: Transform - pos: -0.5,-28.5 - parent: 12 - - uid: 3069 - components: - - type: Transform - pos: -0.5,-25.5 - parent: 12 - - uid: 3601 - components: - - type: Transform - pos: 20.5,-33.5 - parent: 12 - - uid: 3948 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,24.5 - parent: 12 - - uid: 4175 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-10.5 - parent: 12 - - uid: 4314 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-3.5 - parent: 12 - - uid: 4399 - components: - - type: Transform - pos: -0.5,-17.5 - parent: 12 - - uid: 4400 - components: - - type: Transform - pos: -0.5,-18.5 - parent: 12 - - uid: 4428 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-29.5 - parent: 12 - - uid: 4429 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-29.5 - parent: 12 - - uid: 4430 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-28.5 - parent: 12 - - uid: 4431 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-25.5 - parent: 12 - - uid: 4432 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 12 - - uid: 4433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-24.5 - parent: 12 - - uid: 4449 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-20.5 - parent: 12 - - uid: 4450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-21.5 - parent: 12 - - uid: 4451 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-22.5 - parent: 12 - - uid: 4468 - components: - - type: Transform - pos: 8.5,-17.5 - parent: 12 - - uid: 4471 - components: - - type: Transform - pos: 13.5,-18.5 - parent: 12 - - uid: 4581 - components: - - type: Transform - pos: 21.5,-11.5 - parent: 12 - - uid: 4582 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-5.5 - parent: 12 - - uid: 4693 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,11.5 - parent: 12 - - uid: 4965 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-11.5 - parent: 12 - - uid: 4971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-13.5 - parent: 12 - - uid: 5049 - components: - - type: Transform - pos: 10.5,-1.5 - parent: 12 - - uid: 5084 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,61.5 - parent: 12 - - uid: 5087 - components: - - type: Transform - pos: 29.5,-5.5 - parent: 12 - - uid: 5088 - components: - - type: Transform - pos: 31.5,-5.5 - parent: 12 - - uid: 5120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,3.5 - parent: 12 - - uid: 5135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-6.5 - parent: 12 - - uid: 5148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-38.5 - parent: 12 - - uid: 5223 - components: - - type: Transform - pos: 12.5,-1.5 - parent: 12 - - uid: 5224 - components: - - type: Transform - pos: 13.5,2.5 - parent: 12 - - uid: 5225 - components: - - type: Transform - pos: 13.5,0.5 - parent: 12 - - uid: 5321 - components: - - type: Transform - pos: -31.5,-45.5 - parent: 12 - - uid: 5324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,2.5 - parent: 12 - - uid: 5364 - components: - - type: Transform - pos: 3.5,71.5 - parent: 12 - - uid: 5367 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-7.5 - parent: 12 - - uid: 5406 - components: - - type: Transform - pos: 35.5,-3.5 - parent: 12 - - uid: 5439 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-24.5 - parent: 12 - - uid: 5440 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-24.5 - parent: 12 - - uid: 5462 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-22.5 - parent: 12 - - uid: 5463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-21.5 - parent: 12 - - uid: 5464 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-20.5 - parent: 12 - - uid: 5465 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-19.5 - parent: 12 - - uid: 5477 - components: - - type: Transform - pos: 36.5,-3.5 - parent: 12 - - uid: 5479 - components: - - type: Transform - pos: 34.5,-3.5 - parent: 12 - - uid: 5546 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-2.5 - parent: 12 - - uid: 5547 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-1.5 - parent: 12 - - uid: 5548 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-9.5 - parent: 12 - - uid: 5665 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-4.5 - parent: 12 - - uid: 5666 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-8.5 - parent: 12 - - uid: 5713 - components: - - type: Transform - pos: 28.5,-7.5 - parent: 12 - - uid: 5714 - components: - - type: Transform - pos: 28.5,-8.5 - parent: 12 - - uid: 5719 - components: - - type: Transform - pos: 28.5,-0.5 - parent: 12 - - uid: 5797 - components: - - type: Transform - pos: 28.5,-9.5 - parent: 12 - - uid: 5799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,1.5 - parent: 12 - - uid: 5841 - components: - - type: Transform - pos: 9.5,-1.5 - parent: 12 - - uid: 5851 - components: - - type: Transform - pos: 13.5,3.5 - parent: 12 - - uid: 5856 - components: - - 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 - rot: -1.5707963267948966 rad - pos: 33.5,-21.5 - parent: 12 - - uid: 5977 - components: - - 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 - pos: 28.5,-1.5 - parent: 12 - - uid: 5996 - components: - - type: Transform - pos: 28.5,-3.5 - parent: 12 - - uid: 5998 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-8.5 - parent: 12 - - uid: 6000 - components: - - type: Transform - pos: 28.5,-28.5 - parent: 12 - - uid: 6001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-3.5 - parent: 12 - - uid: 6010 - components: - - type: Transform - pos: 28.5,-10.5 - parent: 12 - - uid: 6011 - components: - - type: Transform - pos: 28.5,-2.5 - parent: 12 - - uid: 6018 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-0.5 - parent: 12 - - uid: 6028 - components: - - type: Transform - pos: 21.5,3.5 - parent: 12 - - uid: 6030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,0.5 - parent: 12 - - uid: 6052 - components: - - type: Transform - pos: 17.5,-39.5 - parent: 12 - - uid: 6067 - components: - - type: Transform - pos: 19.5,-32.5 - parent: 12 - - uid: 6068 - components: - - type: Transform - pos: 19.5,-31.5 - parent: 12 - - uid: 6069 - components: - - type: Transform - pos: 19.5,-30.5 - parent: 12 - - uid: 6070 - components: - - type: Transform - pos: 18.5,-29.5 - parent: 12 - - uid: 6071 - components: - - type: Transform - pos: 17.5,-29.5 - parent: 12 - - uid: 6072 - components: - - type: Transform - pos: 16.5,-29.5 - parent: 12 - - uid: 6073 - components: - - type: Transform - pos: 24.5,-32.5 - parent: 12 - - uid: 6074 - components: - - type: Transform - pos: 24.5,-31.5 - parent: 12 - - uid: 6075 - components: - - type: Transform - pos: 24.5,-30.5 - parent: 12 - - uid: 6076 - components: - - type: Transform - pos: 25.5,-29.5 - parent: 12 - - uid: 6077 - components: - - type: Transform - pos: 26.5,-29.5 - parent: 12 - - uid: 6078 - components: - - type: Transform - pos: 23.5,-33.5 - parent: 12 - - uid: 6102 - components: - - type: Transform - pos: 25.5,-34.5 - parent: 12 - - uid: 6103 - components: - - type: Transform - pos: 25.5,-35.5 - parent: 12 - - uid: 6106 - components: - - type: Transform - pos: 31.5,-33.5 - parent: 12 - - uid: 6112 - components: - - type: Transform - pos: 18.5,-34.5 - parent: 12 - - uid: 6113 - components: - - type: Transform - pos: 18.5,-35.5 - parent: 12 - - uid: 6130 - components: - - type: Transform - pos: 18.5,-39.5 - parent: 12 - - uid: 6132 - components: - - type: Transform - pos: 20.5,-39.5 - parent: 12 - - uid: 6133 - components: - - type: Transform - pos: 21.5,-39.5 - parent: 12 - - uid: 6134 - components: - - type: Transform - pos: 22.5,-39.5 - parent: 12 - - uid: 6135 - components: - - type: Transform - pos: 23.5,-39.5 - parent: 12 - - uid: 6137 - components: - - type: Transform - pos: 25.5,-39.5 - parent: 12 - - uid: 6138 - components: - - type: Transform - pos: 26.5,-39.5 - parent: 12 - - uid: 6213 - components: - - type: Transform - pos: 14.5,-52.5 - parent: 12 - - uid: 6215 - components: - - type: Transform - pos: 14.5,-50.5 - parent: 12 - - uid: 6216 - components: - - type: Transform - pos: 14.5,-49.5 - parent: 12 - - uid: 6217 - components: - - type: Transform - pos: 14.5,-48.5 - parent: 12 - - uid: 6218 - components: - - type: Transform - pos: 14.5,-47.5 - parent: 12 - - uid: 6219 - components: - - type: Transform - pos: 14.5,-46.5 - parent: 12 - - uid: 6221 - components: - - type: Transform - pos: 14.5,-44.5 - parent: 12 - - uid: 6223 - components: - - type: Transform - pos: 14.5,-42.5 - parent: 12 - - uid: 6224 - components: - - type: Transform - pos: 14.5,-41.5 - parent: 12 - - uid: 6225 - components: - - type: Transform - pos: 14.5,-40.5 - parent: 12 - - uid: 6226 - components: - - type: Transform - pos: 15.5,-40.5 - parent: 12 - - uid: 6227 - components: - - type: Transform - pos: 16.5,-40.5 - parent: 12 - - uid: 6228 - components: - - type: Transform - pos: 17.5,-40.5 - parent: 12 - - uid: 6229 - components: - - type: Transform - pos: 26.5,-40.5 - parent: 12 - - uid: 6230 - components: - - type: Transform - pos: 27.5,-40.5 - parent: 12 - - uid: 6231 - components: - - type: Transform - pos: 28.5,-40.5 - parent: 12 - - uid: 6232 - components: - - type: Transform - pos: 29.5,-40.5 - parent: 12 - - uid: 6233 - components: - - type: Transform - pos: 29.5,-41.5 - parent: 12 - - uid: 6234 - components: - - type: Transform - pos: 29.5,-42.5 - parent: 12 - - uid: 6236 - components: - - type: Transform - pos: 29.5,-44.5 - parent: 12 - - uid: 6238 - components: - - type: Transform - pos: 29.5,-46.5 - parent: 12 - - uid: 6239 - components: - - type: Transform - pos: 29.5,-47.5 - parent: 12 - - uid: 6240 - components: - - type: Transform - pos: 29.5,-48.5 - parent: 12 - - uid: 6241 - components: - - type: Transform - pos: 29.5,-49.5 - parent: 12 - - uid: 6242 - components: - - type: Transform - pos: 29.5,-50.5 - parent: 12 - - uid: 6244 - components: - - type: Transform - pos: 29.5,-52.5 - parent: 12 - - uid: 6343 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-44.5 - parent: 12 - - uid: 6344 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-45.5 - parent: 12 - - uid: 6345 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-45.5 - parent: 12 - - uid: 6346 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-45.5 - parent: 12 - - uid: 6347 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-45.5 - parent: 12 - - uid: 6803 - components: - - type: Transform - pos: 30.5,-29.5 - parent: 12 - - uid: 6805 - components: - - type: Transform - pos: 28.5,-25.5 - parent: 12 - - uid: 6835 - components: - - type: Transform - pos: -46.5,3.5 - parent: 12 - - uid: 7201 - components: - - type: Transform - pos: 13.5,4.5 - parent: 12 - - uid: 7244 - components: - - type: Transform - pos: 13.5,1.5 - parent: 12 - - uid: 7246 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 12 - - uid: 7313 - components: - - type: Transform - pos: 33.5,-24.5 - parent: 12 - - uid: 7451 - components: - - type: Transform - pos: 48.5,-21.5 - parent: 12 - - uid: 7452 - components: - - type: Transform - pos: 48.5,-22.5 - parent: 12 - - uid: 7453 - components: - - type: Transform - pos: 50.5,-22.5 - parent: 12 - - uid: 7454 - components: - - type: Transform - pos: 51.5,-22.5 - parent: 12 - - uid: 7455 - components: - - type: Transform - pos: 51.5,-23.5 - parent: 12 - - uid: 7464 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-30.5 - parent: 12 - - uid: 7498 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-47.5 - parent: 12 - - uid: 7499 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-46.5 - parent: 12 - - uid: 7505 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-43.5 - parent: 12 - - uid: 7506 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-42.5 - parent: 12 - - uid: 7512 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-16.5 - parent: 12 - - uid: 7514 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-10.5 - parent: 12 - - uid: 7570 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-11.5 - parent: 12 - - uid: 7573 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-20.5 - parent: 12 - - uid: 7612 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-41.5 - parent: 12 - - uid: 7613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-41.5 - parent: 12 - - uid: 7619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-11.5 - parent: 12 - - uid: 7697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-26.5 - parent: 12 - - uid: 7704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-32.5 - parent: 12 - - uid: 7705 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-31.5 - parent: 12 - - uid: 7706 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-28.5 - parent: 12 - - uid: 7707 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-27.5 - parent: 12 - - uid: 7708 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-26.5 - parent: 12 - - uid: 7709 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-26.5 - parent: 12 - - uid: 7711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-26.5 - parent: 12 - - uid: 7712 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-28.5 - parent: 12 - - uid: 7713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-27.5 - parent: 12 - - uid: 7714 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-31.5 - parent: 12 - - uid: 7715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-32.5 - parent: 12 - - uid: 7721 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-21.5 - parent: 12 - - uid: 7722 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-11.5 - parent: 12 - - uid: 7727 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-19.5 - parent: 12 - - uid: 7774 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-14.5 - parent: 12 - - uid: 8017 - components: - - type: Transform - pos: 76.5,-39.5 - parent: 12 - - uid: 8018 - components: - - type: Transform - pos: 77.5,-39.5 - parent: 12 - - uid: 8019 - components: - - type: Transform - pos: 78.5,-39.5 - parent: 12 - - uid: 8020 - components: - - type: Transform - pos: 79.5,-39.5 - parent: 12 - - uid: 8021 - components: - - type: Transform - pos: 80.5,-39.5 - parent: 12 - - uid: 8022 - components: - - type: Transform - pos: 81.5,-39.5 - parent: 12 - - uid: 8023 - components: - - type: Transform - pos: 82.5,-38.5 - parent: 12 - - uid: 8024 - components: - - type: Transform - pos: 82.5,-37.5 - parent: 12 - - uid: 8031 - components: - - type: Transform - pos: 62.5,-30.5 - parent: 12 - - uid: 8032 - components: - - type: Transform - pos: 62.5,-29.5 - parent: 12 - - uid: 8033 - components: - - type: Transform - pos: 62.5,-28.5 - parent: 12 - - uid: 8239 - components: - - type: Transform - pos: 35.5,-21.5 - parent: 12 - - uid: 8295 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,13.5 - parent: 12 - - uid: 8313 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,62.5 - parent: 12 - - uid: 8314 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,64.5 - parent: 12 - - uid: 8334 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,63.5 - parent: 12 - - uid: 8430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-9.5 - parent: 12 - - uid: 8432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-9.5 - parent: 12 - - uid: 8480 - components: - - type: Transform - pos: 55.5,-24.5 - parent: 12 - - uid: 8727 - components: - - type: Transform - pos: 52.5,-35.5 - parent: 12 - - uid: 8867 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-51.5 - parent: 12 - - uid: 8915 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-50.5 - parent: 12 - - uid: 9049 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,4.5 - parent: 12 - - uid: 9050 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,4.5 - parent: 12 - - uid: 9051 - components: - - type: Transform - 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: 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 - rot: 1.5707963267948966 rad - pos: -14.5,-48.5 - parent: 12 - - uid: 9301 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-48.5 - parent: 12 - - uid: 9312 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-44.5 - parent: 12 - - uid: 9313 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-44.5 - parent: 12 - - uid: 9331 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-44.5 - parent: 12 - - uid: 9415 - components: - - type: Transform - pos: 21.5,8.5 - parent: 12 - - uid: 9522 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: 1.5,-32.5 - parent: 12 - - uid: 9572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-34.5 - parent: 12 - - uid: 9667 - components: - - type: Transform - pos: 17.5,17.5 - parent: 12 - - uid: 9678 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-44.5 - parent: 12 - - uid: 9681 - components: - - type: Transform - pos: 17.5,15.5 - parent: 12 - - uid: 9773 - components: - - type: Transform - pos: 29.5,-29.5 - parent: 12 - - uid: 9868 - components: - - type: Transform - pos: 5.5,26.5 - parent: 12 - - uid: 9870 - components: - - type: Transform - pos: 5.5,25.5 - parent: 12 - - uid: 9908 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,10.5 - parent: 12 - - uid: 9978 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,10.5 - parent: 12 - - uid: 10014 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-44.5 - parent: 12 - - uid: 10016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-44.5 - parent: 12 - - uid: 10130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,0.5 - parent: 12 - - uid: 10141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-9.5 - parent: 12 - - uid: 10157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,0.5 - parent: 12 - - uid: 10158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,0.5 - parent: 12 - - uid: 10159 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,0.5 - parent: 12 - - uid: 10160 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,0.5 - parent: 12 - - uid: 10161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,0.5 - parent: 12 - - uid: 10162 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,0.5 - parent: 12 - - uid: 10163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,0.5 - parent: 12 - - uid: 10164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,0.5 - parent: 12 - - uid: 10167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,3.5 - parent: 12 - - uid: 10168 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,3.5 - parent: 12 - - uid: 10169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,3.5 - parent: 12 - - uid: 10170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,4.5 - parent: 12 - - uid: 10171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,5.5 - parent: 12 - - uid: 10172 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,5.5 - parent: 12 - - uid: 10173 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,4.5 - parent: 12 - - uid: 10174 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,3.5 - parent: 12 - - uid: 10175 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,3.5 - parent: 12 - - uid: 10176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,3.5 - parent: 12 - - uid: 10177 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,3.5 - parent: 12 - - uid: 10178 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,3.5 - parent: 12 - - uid: 10179 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,4.5 - parent: 12 - - uid: 10180 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,5.5 - parent: 12 - - uid: 10181 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,5.5 - parent: 12 - - uid: 10182 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,4.5 - parent: 12 - - uid: 10183 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,3.5 - parent: 12 - - uid: 10184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,3.5 - parent: 12 - - uid: 10185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,4.5 - parent: 12 - - uid: 10186 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,4.5 - parent: 12 - - uid: 10202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,14.5 - parent: 12 - - uid: 10203 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,15.5 - parent: 12 - - uid: 10204 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,15.5 - parent: 12 - - uid: 10205 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,14.5 - parent: 12 - - uid: 10206 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,15.5 - parent: 12 - - uid: 10207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,14.5 - parent: 12 - - uid: 10208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,13.5 - parent: 12 - - uid: 10209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,13.5 - parent: 12 - - uid: 10210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,14.5 - parent: 12 - - uid: 10211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,15.5 - parent: 12 - - uid: 10212 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,15.5 - parent: 12 - - uid: 10213 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,15.5 - parent: 12 - - uid: 10214 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,15.5 - parent: 12 - - uid: 10215 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,15.5 - parent: 12 - - uid: 10216 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,14.5 - parent: 12 - - uid: 10217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,13.5 - parent: 12 - - uid: 10218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,13.5 - parent: 12 - - uid: 10219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,14.5 - parent: 12 - - uid: 10220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,15.5 - parent: 12 - - uid: 10221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,15.5 - parent: 12 - - uid: 10222 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,15.5 - parent: 12 - - uid: 10235 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,16.5 - parent: 12 - - uid: 10236 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,17.5 - parent: 12 - - uid: 10237 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,18.5 - parent: 12 - - uid: 10238 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,18.5 - parent: 12 - - uid: 10239 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,18.5 - parent: 12 - - uid: 10240 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,18.5 - parent: 12 - - uid: 10241 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,18.5 - parent: 12 - - uid: 10242 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,18.5 - parent: 12 - - uid: 10243 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,18.5 - parent: 12 - - uid: 10244 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,18.5 - parent: 12 - - uid: 10245 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,18.5 - parent: 12 - - uid: 10246 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,18.5 - parent: 12 - - uid: 10247 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,19.5 - parent: 12 - - uid: 10295 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-21.5 - parent: 12 - - uid: 10312 - components: - - type: Transform - 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 - pos: -60.5,-35.5 - parent: 12 - - uid: 10325 - components: - - type: Transform - pos: -59.5,-36.5 - parent: 12 - - uid: 10340 - components: - - type: Transform - pos: -32.5,-15.5 - parent: 12 - - uid: 10341 - components: - - type: Transform - pos: -58.5,-37.5 - parent: 12 - - uid: 10572 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,8.5 - parent: 12 - - uid: 10573 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,9.5 - parent: 12 - - uid: 10574 - components: - - type: Transform - 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 - rot: 1.5707963267948966 rad - pos: -45.5,20.5 - parent: 12 - - uid: 10683 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,21.5 - parent: 12 - - uid: 10684 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,22.5 - parent: 12 - - uid: 10685 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,20.5 - parent: 12 - - uid: 10686 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,20.5 - parent: 12 - - uid: 10687 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,20.5 - parent: 12 - - uid: 10688 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,20.5 - parent: 12 - - uid: 10740 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,19.5 - parent: 12 - - uid: 10741 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,20.5 - parent: 12 - - uid: 10742 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,21.5 - parent: 12 - - uid: 10788 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,8.5 - parent: 12 - - uid: 10789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,8.5 - parent: 12 - - uid: 10792 - components: - - type: Transform - pos: 17.5,16.5 - parent: 12 - - uid: 10793 - components: - - type: Transform - pos: 17.5,18.5 - parent: 12 - - uid: 10810 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,1.5 - parent: 12 - - uid: 10896 - components: - - 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 - rot: 1.5707963267948966 rad - pos: -8.5,-44.5 - parent: 12 - - uid: 11117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,40.5 - parent: 12 - - uid: 11135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,18.5 - parent: 12 - - uid: 11136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,19.5 - parent: 12 - - uid: 11143 - components: - - type: Transform - pos: 31.5,-32.5 - parent: 12 - - uid: 11156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,25.5 - parent: 12 - - uid: 11157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,25.5 - parent: 12 - - uid: 11158 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,24.5 - parent: 12 - - uid: 11159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,23.5 - parent: 12 - - uid: 11160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,22.5 - parent: 12 - - uid: 11161 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,21.5 - parent: 12 - - uid: 11162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,20.5 - parent: 12 - - uid: 11163 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,19.5 - parent: 12 - - uid: 11184 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,27.5 - parent: 12 - - uid: 11185 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,30.5 - parent: 12 - - uid: 11251 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,26.5 - parent: 12 - - uid: 11252 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,25.5 - parent: 12 - - uid: 11253 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,25.5 - parent: 12 - - uid: 11256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,25.5 - parent: 12 - - uid: 11257 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,25.5 - parent: 12 - - uid: 11258 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,26.5 - parent: 12 - - uid: 11290 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,3.5 - parent: 12 - - uid: 11291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,2.5 - parent: 12 - - uid: 11298 - components: - - type: Transform - pos: -25.5,69.5 - parent: 12 - - uid: 11306 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,6.5 - parent: 12 - - uid: 11307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,1.5 - parent: 12 - - uid: 11339 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-8.5 - parent: 12 - - uid: 11355 - components: - - type: Transform - pos: -22.5,-28.5 - parent: 12 - - uid: 11376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,4.5 - parent: 12 - - uid: 11379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,5.5 - parent: 12 - - uid: 11390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,4.5 - parent: 12 - - uid: 11444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-44.5 - parent: 12 - - uid: 11516 - components: - - type: Transform - pos: 45.5,15.5 - parent: 12 - - uid: 11584 - components: - - type: Transform - pos: 53.5,19.5 - parent: 12 - - uid: 11585 - components: - - type: Transform - pos: 53.5,20.5 - parent: 12 - - uid: 11586 - components: - - 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 - pos: 56.5,26.5 - parent: 12 - - uid: 11625 - components: - - type: Transform - pos: 57.5,26.5 - parent: 12 - - uid: 11626 - components: - - type: Transform - pos: 57.5,27.5 - parent: 12 - - uid: 11627 - components: - - type: Transform - pos: 57.5,28.5 - parent: 12 - - uid: 11628 - components: - - type: Transform - pos: 57.5,29.5 - parent: 12 - - uid: 11629 - components: - - type: Transform - pos: 57.5,30.5 - parent: 12 - - uid: 11630 - components: - - type: Transform - pos: 57.5,31.5 - parent: 12 - - uid: 11631 - components: - - type: Transform - pos: 57.5,32.5 - parent: 12 - - uid: 11632 - components: - - type: Transform - pos: 57.5,33.5 - parent: 12 - - uid: 11633 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,5.5 - parent: 12 - - uid: 11716 - components: - - type: Transform - pos: 27.5,31.5 - parent: 12 - - uid: 11717 - components: - - type: Transform - pos: 27.5,32.5 - parent: 12 - - uid: 11718 - components: - - type: Transform - pos: 28.5,34.5 - parent: 12 - - uid: 11719 - components: - - type: Transform - pos: 29.5,34.5 - parent: 12 - - uid: 11720 - components: - - type: Transform - pos: 33.5,31.5 - parent: 12 - - uid: 11721 - components: - - type: Transform - pos: 33.5,32.5 - parent: 12 - - uid: 11749 - components: - - type: Transform - pos: 17.5,30.5 - parent: 12 - - uid: 11750 - components: - - type: Transform - pos: 17.5,31.5 - parent: 12 - - uid: 11751 - components: - - type: Transform - pos: 18.5,31.5 - parent: 12 - - uid: 11752 - components: - - type: Transform - pos: 18.5,32.5 - parent: 12 - - uid: 11753 - components: - - type: Transform - pos: 19.5,32.5 - parent: 12 - - uid: 11754 - components: - - type: Transform - pos: 20.5,33.5 - parent: 12 - - uid: 11755 - components: - - type: Transform - pos: 20.5,34.5 - parent: 12 - - uid: 11756 - components: - - type: Transform - pos: 20.5,35.5 - parent: 12 - - uid: 11757 - components: - - type: Transform - pos: 20.5,36.5 - parent: 12 - - uid: 11758 - components: - - type: Transform - pos: 20.5,37.5 - parent: 12 - - uid: 11759 - components: - - type: Transform - pos: 22.5,33.5 - parent: 12 - - uid: 11760 - components: - - type: Transform - pos: 22.5,34.5 - parent: 12 - - uid: 11761 - components: - - type: Transform - pos: 22.5,35.5 - parent: 12 - - uid: 11762 - components: - - type: Transform - pos: 22.5,36.5 - parent: 12 - - uid: 11763 - components: - - type: Transform - pos: 22.5,37.5 - parent: 12 - - uid: 11764 - components: - - type: Transform - pos: 23.5,32.5 - parent: 12 - - uid: 11765 - components: - - type: Transform - pos: 24.5,31.5 - parent: 12 - - uid: 11766 - components: - - type: Transform - pos: 24.5,32.5 - parent: 12 - - uid: 11767 - components: - - type: Transform - pos: 25.5,31.5 - parent: 12 - - uid: 11768 - components: - - type: Transform - pos: 25.5,30.5 - parent: 12 - - uid: 11770 - components: - - type: Transform - pos: 25.5,35.5 - parent: 12 - - uid: 11771 - components: - - type: Transform - pos: 25.5,36.5 - parent: 12 - - uid: 11772 - components: - - type: Transform - pos: 25.5,37.5 - parent: 12 - - uid: 11773 - components: - - type: Transform - pos: 24.5,38.5 - parent: 12 - - uid: 11774 - components: - - type: Transform - pos: 23.5,38.5 - parent: 12 - - uid: 11775 - components: - - type: Transform - pos: 26.5,34.5 - parent: 12 - - uid: 11809 - components: - - type: Transform - pos: 18.5,38.5 - parent: 12 - - uid: 11810 - components: - - type: Transform - pos: 19.5,38.5 - parent: 12 - - uid: 11917 - components: - - type: Transform - pos: 58.5,34.5 - parent: 12 - - uid: 11918 - components: - - type: Transform - pos: 59.5,34.5 - parent: 12 - - uid: 11919 - components: - - type: Transform - pos: 59.5,35.5 - parent: 12 - - uid: 11920 - components: - - type: Transform - pos: 59.5,36.5 - parent: 12 - - uid: 11921 - components: - - 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 - pos: -30.5,-48.5 - parent: 12 - - uid: 11949 - components: - - type: Transform - pos: 1.5,-70.5 - parent: 12 - - uid: 11963 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-47.5 - parent: 12 - - uid: 11964 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-46.5 - parent: 12 - - uid: 12015 - components: - - type: Transform - pos: 46.5,15.5 - parent: 12 - - uid: 12031 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,61.5 - parent: 12 - - uid: 12117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-40.5 - parent: 12 - - uid: 12191 - components: - - type: Transform - pos: -14.5,-70.5 - parent: 12 - - uid: 12252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-44.5 - parent: 12 - - uid: 12313 - components: - - type: Transform - pos: 27.5,14.5 - parent: 12 - - uid: 12323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-43.5 - parent: 12 - - uid: 12324 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-45.5 - parent: 12 - - uid: 12441 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,41.5 - parent: 12 - - uid: 12442 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,41.5 - parent: 12 - - uid: 12443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,41.5 - parent: 12 - - uid: 12444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,41.5 - parent: 12 - - uid: 12445 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,42.5 - parent: 12 - - uid: 12446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,42.5 - parent: 12 - - uid: 12447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,42.5 - parent: 12 - - uid: 12448 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,41.5 - parent: 12 - - uid: 12449 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,41.5 - parent: 12 - - uid: 12450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,41.5 - parent: 12 - - uid: 12451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,41.5 - parent: 12 - - uid: 12452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,41.5 - parent: 12 - - uid: 12468 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,47.5 - parent: 12 - - uid: 12469 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,48.5 - parent: 12 - - uid: 12470 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,49.5 - parent: 12 - - uid: 12471 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,50.5 - parent: 12 - - uid: 12472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,45.5 - parent: 12 - - uid: 12473 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,44.5 - parent: 12 - - uid: 12474 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,44.5 - parent: 12 - - uid: 12475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,43.5 - parent: 12 - - uid: 12476 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,42.5 - parent: 12 - - uid: 12477 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,42.5 - parent: 12 - - uid: 12478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,42.5 - parent: 12 - - uid: 12479 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,41.5 - parent: 12 - - uid: 12480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,41.5 - parent: 12 - - uid: 12481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,53.5 - parent: 12 - - uid: 12483 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,54.5 - parent: 12 - - uid: 12491 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,55.5 - parent: 12 - - uid: 12492 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,55.5 - parent: 12 - - uid: 12493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,55.5 - parent: 12 - - uid: 12494 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,56.5 - parent: 12 - - uid: 12495 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,53.5 - parent: 12 - - uid: 12496 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,52.5 - parent: 12 - - uid: 12501 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,56.5 - parent: 12 - - uid: 12502 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,56.5 - parent: 12 - - uid: 12503 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,56.5 - parent: 12 - - uid: 12505 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,56.5 - parent: 12 - - uid: 12507 - components: - - type: Transform - pos: -46.5,0.5 - parent: 12 - - uid: 12515 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,56.5 - parent: 12 - - uid: 12516 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,55.5 - parent: 12 - - uid: 12517 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,55.5 - parent: 12 - - uid: 12518 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,55.5 - parent: 12 - - uid: 12519 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,55.5 - parent: 12 - - uid: 12520 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,56.5 - parent: 12 - - uid: 12521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,56.5 - parent: 12 - - uid: 12523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,52.5 - parent: 12 - - uid: 12574 - components: - - type: Transform - pos: 64.5,57.5 - parent: 12 - - uid: 12575 - components: - - type: Transform - pos: 64.5,58.5 - parent: 12 - - uid: 12576 - components: - - type: Transform - pos: 64.5,59.5 - parent: 12 - - uid: 13049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,61.5 - parent: 12 - - uid: 14025 - components: - - type: Transform - pos: 62.5,59.5 - parent: 12 - - uid: 14026 - components: - - type: Transform - pos: 63.5,59.5 - parent: 12 - - uid: 14207 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,65.5 - parent: 12 - - uid: 14208 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,65.5 - parent: 12 - - uid: 14209 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,65.5 - parent: 12 - - uid: 14242 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,68.5 - parent: 12 - - uid: 14243 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,68.5 - parent: 12 - - uid: 14244 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,68.5 - parent: 12 - - uid: 14245 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,68.5 - parent: 12 - - uid: 14246 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,67.5 - parent: 12 - - uid: 14507 - components: - - type: Transform - pos: 24.5,58.5 - parent: 12 - - uid: 14519 - components: - - type: Transform - pos: 20.5,56.5 - parent: 12 - - uid: 14523 - components: - - type: Transform - pos: 20.5,59.5 - parent: 12 - - uid: 14539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,69.5 - parent: 12 - - uid: 14540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,69.5 - parent: 12 - - uid: 14644 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,69.5 - parent: 12 - - uid: 14645 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,69.5 - parent: 12 - - uid: 14687 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,70.5 - parent: 12 - - uid: 14688 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,71.5 - parent: 12 - - uid: 14689 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,71.5 - parent: 12 - - uid: 14690 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,72.5 - parent: 12 - - uid: 14691 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,73.5 - parent: 12 - - uid: 14692 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,74.5 - parent: 12 - - uid: 14698 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,75.5 - parent: 12 - - uid: 14699 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,74.5 - parent: 12 - - uid: 14700 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,73.5 - parent: 12 - - uid: 14701 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,72.5 - parent: 12 - - uid: 14702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,71.5 - parent: 12 - - uid: 14704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,70.5 - parent: 12 - - uid: 14705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,69.5 - parent: 12 - - uid: 14706 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,69.5 - parent: 12 - - uid: 14707 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,69.5 - parent: 12 - - uid: 14708 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,69.5 - parent: 12 - - uid: 14709 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,70.5 - parent: 12 - - uid: 14710 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,70.5 - parent: 12 - - uid: 14711 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,71.5 - parent: 12 - - uid: 14712 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,71.5 - parent: 12 - - uid: 14713 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,72.5 - parent: 12 - - uid: 14714 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,73.5 - parent: 12 - - uid: 14715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,74.5 - parent: 12 - - uid: 14721 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,75.5 - parent: 12 - - uid: 14722 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,74.5 - parent: 12 - - uid: 14723 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,73.5 - parent: 12 - - uid: 14724 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,72.5 - parent: 12 - - uid: 14725 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,71.5 - parent: 12 - - uid: 14735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,78.5 - parent: 12 - - uid: 14736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,79.5 - parent: 12 - - uid: 14737 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,80.5 - parent: 12 - - uid: 14738 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,81.5 - parent: 12 - - uid: 14741 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,81.5 - parent: 12 - - uid: 14742 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,80.5 - parent: 12 - - uid: 14743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,79.5 - parent: 12 - - uid: 14744 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,78.5 - parent: 12 - - uid: 14775 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,84.5 - parent: 12 - - uid: 14777 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,85.5 - parent: 12 - - uid: 14778 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,85.5 - parent: 12 - - uid: 14783 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,85.5 - parent: 12 - - uid: 14784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,85.5 - parent: 12 - - uid: 14786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,84.5 - parent: 12 - - uid: 14810 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,77.5 - parent: 12 - - uid: 14811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,78.5 - parent: 12 - - uid: 14812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,79.5 - parent: 12 - - uid: 14813 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,80.5 - parent: 12 - - uid: 14814 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,81.5 - parent: 12 - - uid: 14815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,82.5 - parent: 12 - - uid: 14818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,82.5 - parent: 12 - - uid: 14819 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,81.5 - parent: 12 - - uid: 14820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,80.5 - parent: 12 - - uid: 14821 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,79.5 - parent: 12 - - uid: 14822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,78.5 - parent: 12 - - uid: 14823 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,77.5 - parent: 12 - - uid: 15084 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,55.5 - parent: 12 - - uid: 15466 - components: - - type: Transform - pos: -31.5,33.5 - parent: 12 - - uid: 15474 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,31.5 - parent: 12 - - uid: 15475 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,32.5 - parent: 12 - - uid: 15476 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,31.5 - parent: 12 - - uid: 15477 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,31.5 - parent: 12 - - uid: 15497 - components: - - type: Transform - pos: -31.5,31.5 - parent: 12 - - uid: 15499 - components: - - type: Transform - pos: -32.5,31.5 - parent: 12 - - uid: 15502 - components: - - type: Transform - pos: -31.5,32.5 - parent: 12 - - uid: 15531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,33.5 - parent: 12 - - uid: 15532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,33.5 - parent: 12 - - uid: 15533 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,35.5 - parent: 12 - - uid: 15534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,37.5 - parent: 12 - - uid: 15561 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,29.5 - parent: 12 - - uid: 15562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,29.5 - parent: 12 - - uid: 15563 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,29.5 - parent: 12 - - uid: 15588 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,37.5 - parent: 12 - - uid: 15589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,37.5 - parent: 12 - - uid: 15599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,33.5 - parent: 12 - - uid: 15601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,32.5 - parent: 12 - - uid: 15612 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,34.5 - parent: 12 - - uid: 15613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,35.5 - parent: 12 - - uid: 15614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,36.5 - parent: 12 - - uid: 15615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,37.5 - parent: 12 - - uid: 15616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,38.5 - parent: 12 - - uid: 15617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,39.5 - parent: 12 - - uid: 15618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,40.5 - parent: 12 - - uid: 15619 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,40.5 - parent: 12 - - uid: 15620 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,41.5 - parent: 12 - - uid: 15621 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,41.5 - parent: 12 - - uid: 15622 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,42.5 - parent: 12 - - uid: 15623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,42.5 - parent: 12 - - uid: 15624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,42.5 - parent: 12 - - uid: 15625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,42.5 - parent: 12 - - uid: 15626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,42.5 - parent: 12 - - uid: 15627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,42.5 - parent: 12 - - uid: 15628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,42.5 - parent: 12 - - uid: 15629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,42.5 - parent: 12 - - uid: 16498 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-45.5 - parent: 12 - - uid: 16522 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,79.5 - parent: 12 - - uid: 17273 - components: - - type: Transform - pos: -50.5,27.5 - parent: 12 - - uid: 17274 - components: - - type: Transform - pos: -50.5,30.5 - parent: 12 - - uid: 17302 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,19.5 - parent: 12 - - uid: 17307 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,16.5 - parent: 12 - - uid: 17308 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,15.5 - parent: 12 - - uid: 17309 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,15.5 - parent: 12 - - uid: 17310 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,15.5 - parent: 12 - - uid: 17311 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,15.5 - parent: 12 - - uid: 17312 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,15.5 - parent: 12 - - uid: 17313 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,16.5 - parent: 12 - - uid: 17314 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,19.5 - parent: 12 - - uid: 17315 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,20.5 - parent: 12 - - uid: 17316 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,21.5 - parent: 12 - - uid: 17317 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,22.5 - parent: 12 - - uid: 17354 - components: - - type: Transform - pos: -55.5,35.5 - parent: 12 - - uid: 17355 - components: - - type: Transform - pos: -55.5,34.5 - parent: 12 - - uid: 17356 - components: - - type: Transform - pos: -56.5,34.5 - parent: 12 - - uid: 17357 - components: - - type: Transform - pos: -57.5,34.5 - parent: 12 - - uid: 17358 - components: - - type: Transform - pos: -57.5,33.5 - parent: 12 - - uid: 17359 - components: - - type: Transform - pos: -57.5,32.5 - parent: 12 - - uid: 17360 - components: - - type: Transform - pos: -58.5,32.5 - parent: 12 - - uid: 17361 - components: - - type: Transform - pos: -58.5,31.5 - parent: 12 - - uid: 17362 - components: - - type: Transform - pos: -58.5,30.5 - parent: 12 - - uid: 17363 - components: - - type: Transform - pos: -58.5,29.5 - parent: 12 - - uid: 17364 - components: - - type: Transform - pos: -58.5,28.5 - parent: 12 - - uid: 17365 - components: - - type: Transform - pos: -58.5,27.5 - parent: 12 - - uid: 17366 - components: - - type: Transform - pos: -58.5,26.5 - parent: 12 - - uid: 17367 - components: - - type: Transform - pos: -58.5,25.5 - parent: 12 - - uid: 17368 - components: - - type: Transform - pos: -57.5,25.5 - parent: 12 - - uid: 17369 - components: - - type: Transform - pos: -57.5,24.5 - parent: 12 - - uid: 17370 - components: - - type: Transform - pos: -57.5,23.5 - parent: 12 - - uid: 17839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,45.5 - parent: 12 - - uid: 17840 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: -40.5,38.5 - parent: 12 - - uid: 18651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,40.5 - parent: 12 - - uid: 18652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,42.5 - parent: 12 - - uid: 19037 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,43.5 - parent: 12 - - uid: 19038 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,43.5 - parent: 12 - - uid: 19088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,39.5 - parent: 12 - - uid: 19089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,41.5 - parent: 12 - - uid: 19090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,42.5 - parent: 12 - - uid: 19091 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,42.5 - parent: 12 - - uid: 19092 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,42.5 - parent: 12 - - uid: 19093 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,43.5 - parent: 12 - - uid: 19094 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,41.5 - parent: 12 - - uid: 19109 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,42.5 - parent: 12 - - uid: 19110 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,42.5 - parent: 12 - - uid: 19111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,42.5 - parent: 12 - - uid: 19137 - components: - - type: Transform - pos: -32.5,50.5 - parent: 12 - - uid: 19160 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,50.5 - parent: 12 - - uid: 19194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,57.5 - parent: 12 - - uid: 19201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,51.5 - parent: 12 - - uid: 19211 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,57.5 - parent: 12 - - uid: 19212 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,57.5 - parent: 12 - - uid: 19213 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,56.5 - parent: 12 - - uid: 19214 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,55.5 - parent: 12 - - uid: 19218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,51.5 - parent: 12 - - uid: 19246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,60.5 - parent: 12 - - uid: 19253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,60.5 - parent: 12 - - uid: 19254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,60.5 - parent: 12 - - uid: 19281 - components: - - type: Transform - pos: -42.5,54.5 - parent: 12 - - uid: 19306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,54.5 - parent: 12 - - uid: 19331 - components: - - type: Transform - pos: -32.5,51.5 - parent: 12 - - uid: 19332 - components: - - type: Transform - pos: -32.5,52.5 - parent: 12 - - uid: 19334 - components: - - type: Transform - pos: -32.5,54.5 - parent: 12 - - uid: 19335 - components: - - type: Transform - pos: -32.5,55.5 - parent: 12 - - uid: 19336 - components: - - type: Transform - pos: -32.5,56.5 - parent: 12 - - uid: 19337 - components: - - type: Transform - pos: -27.5,57.5 - parent: 12 - - uid: 19629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-49.5 - parent: 12 - - uid: 19650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,79.5 - parent: 12 - - uid: 19654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,79.5 - parent: 12 - - uid: 19667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,79.5 - parent: 12 - - uid: 19668 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,79.5 - parent: 12 - - uid: 19672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,79.5 - parent: 12 - - uid: 19676 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,78.5 - parent: 12 - - uid: 19678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,78.5 - parent: 12 - - uid: 19810 - components: - - type: Transform - pos: 5.5,71.5 - parent: 12 - - uid: 19841 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,58.5 - parent: 12 - - uid: 19884 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-50.5 - parent: 12 - - uid: 20089 - components: - - type: Transform - pos: -25.5,70.5 - parent: 12 - - uid: 20528 - components: - - type: Transform - pos: -50.5,47.5 - parent: 12 - - uid: 20778 - components: - - type: Transform - pos: -40.5,57.5 - parent: 12 - - uid: 21063 - components: - - 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 - pos: 37.5,-6.5 - parent: 12 - - uid: 21888 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 12 - - uid: 21900 - components: - - type: Transform - pos: -5.5,-7.5 - parent: 12 - - uid: 21908 - components: - - type: Transform - pos: -3.5,-7.5 - parent: 12 - - uid: 21938 - components: - - type: Transform - pos: -1.5,2.5 - parent: 12 - - uid: 21939 - components: - - type: Transform - pos: -3.5,-5.5 - parent: 12 - - uid: 21952 - components: - - type: Transform - pos: -54.5,37.5 - parent: 12 - - uid: 21964 - components: - - type: Transform - pos: -5.5,-5.5 - parent: 12 - - uid: 21991 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 12 - - uid: 22014 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-7.5 - parent: 12 - - uid: 22015 - components: - - type: Transform - pos: -0.5,1.5 - parent: 12 - - uid: 22017 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-5.5 - parent: 12 - - uid: 22019 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-5.5 - parent: 12 - - uid: 22023 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-7.5 - parent: 12 - - uid: 22106 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,10.5 - parent: 12 - - uid: 22314 - components: - - type: Transform - pos: 44.5,15.5 - parent: 12 - - uid: 22315 - components: - - 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 - pos: -36.5,80.5 - parent: 12 - - uid: 22400 - components: - - type: Transform - pos: -14.5,74.5 - parent: 12 - - uid: 22856 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-51.5 - parent: 12 - - uid: 23121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-46.5 - parent: 12 - - uid: 23134 - components: - - type: Transform - pos: -0.5,-48.5 - parent: 12 - - uid: 23164 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,8.5 - parent: 12 - - uid: 23170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-9.5 - parent: 12 - - uid: 23601 - components: - - type: Transform - pos: 57.5,-8.5 - parent: 12 - - uid: 23664 - components: - - type: Transform - pos: 57.5,-7.5 - parent: 12 - - uid: 24192 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-46.5 - parent: 12 - - uid: 24197 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-47.5 - parent: 12 - - uid: 24201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-44.5 - parent: 12 - - uid: 24203 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-48.5 - parent: 12 - - uid: 24205 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-48.5 - parent: 12 - - uid: 24211 - components: - - type: Transform - pos: -3.5,-29.5 - parent: 12 - - uid: 24212 - components: - - type: Transform - pos: -0.5,-31.5 - parent: 12 - - uid: 24213 - components: - - type: Transform - pos: -1.5,-31.5 - parent: 12 - - uid: 24214 - components: - - type: Transform - pos: 1.5,-29.5 - parent: 12 - - uid: 24307 - components: - - type: Transform - pos: -1.5,-29.5 - parent: 12 - - uid: 24340 - components: - - type: Transform - pos: -54.5,75.5 - parent: 12 - - uid: 24655 - components: - - type: Transform - pos: 22.5,8.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 - rot: 1.5707963267948966 rad - pos: 57.5,-47.5 - parent: 12 - - uid: 26258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-44.5 - parent: 12 - - uid: 26259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-46.5 - parent: 12 - - uid: 26299 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-49.5 - parent: 12 - - uid: 26300 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-48.5 - parent: 12 - - uid: 26390 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-47.5 - parent: 12 - - uid: 26391 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-47.5 - parent: 12 - - uid: 26395 - components: - - type: Transform - pos: -2.5,73.5 - parent: 12 - - uid: 26397 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-49.5 - parent: 12 - - uid: 26398 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-48.5 - parent: 12 - - uid: 26463 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,12.5 - parent: 12 - - uid: 26484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,7.5 - parent: 12 - - uid: 26504 - components: - - type: Transform - pos: 33.5,-3.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: 27289 - components: - - type: Transform - pos: -0.5,-29.5 - parent: 12 - - uid: 27380 - components: - - type: Transform - pos: 14.5,-18.5 - parent: 12 - - uid: 27381 - components: - - type: Transform - pos: 12.5,-18.5 - parent: 12 - - uid: 27396 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-11.5 - parent: 12 - - uid: 27399 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-11.5 - parent: 12 - - uid: 27402 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-11.5 - parent: 12 - - uid: 27405 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-11.5 - parent: 12 - - uid: 27409 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-11.5 - parent: 12 - - uid: 27597 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-27.5 - parent: 12 - - uid: 27599 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-27.5 - parent: 12 - - uid: 27713 - components: - - type: Transform - pos: -26.5,74.5 - parent: 12 - - uid: 27854 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-54.5 - parent: 12 - - uid: 27855 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-54.5 - parent: 12 - - uid: 27856 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-54.5 - parent: 12 - - uid: 28172 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-11.5 - parent: 12 - - uid: 28173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-11.5 - parent: 12 - - uid: 28174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-11.5 - parent: 12 - - uid: 28175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-11.5 - parent: 12 - - uid: 28176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-11.5 - parent: 12 - - uid: 28178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-11.5 - parent: 12 - - uid: 28179 - components: - - type: Transform - 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 - pos: -2.5,-29.5 - parent: 12 - - uid: 28295 - components: - - type: Transform - pos: -49.5,-19.5 - parent: 12 - - uid: 28296 - components: - - type: Transform - pos: -49.5,-18.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 - rot: 1.5707963267948966 rad - pos: -25.5,68.5 - parent: 12 - - uid: 29231 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,34.5 - parent: 12 - - uid: 29249 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,34.5 - parent: 12 - - uid: 29250 - components: - - type: Transform - pos: -27.5,62.5 - parent: 12 - - uid: 29251 - components: - - type: Transform - pos: -25.5,62.5 - parent: 12 - - uid: 29256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,66.5 - parent: 12 - - uid: 29313 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,74.5 - parent: 12 - - uid: 29510 - components: - - type: Transform - pos: -34.5,78.5 - parent: 12 - - uid: 29610 - components: - - type: Transform - pos: -25.5,77.5 - parent: 12 - - uid: 29614 - components: - - type: Transform - pos: -25.5,78.5 - parent: 12 - - uid: 29615 - components: - - type: Transform - pos: -27.5,80.5 - parent: 12 - - uid: 29616 - components: - - type: Transform - pos: -28.5,80.5 - parent: 12 - - uid: 29617 - components: - - type: Transform - pos: -29.5,80.5 - parent: 12 - - uid: 29722 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-14.5 - parent: 12 - - uid: 29863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-40.5 - parent: 12 - - uid: 29864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-40.5 - parent: 12 - - uid: 29865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-40.5 - parent: 12 - - uid: 30005 - components: - - type: Transform - pos: -21.5,-12.5 - parent: 12 - - uid: 30006 - components: - - type: Transform - pos: -21.5,-11.5 - parent: 12 - - uid: 30007 - components: - - type: Transform - pos: -21.5,-10.5 - parent: 12 - - uid: 30274 - components: - - type: Transform - pos: -13.5,76.5 - parent: 12 - - uid: 30275 - components: - - type: Transform - pos: -13.5,75.5 - parent: 12 - - uid: 30303 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,76.5 - parent: 12 - - uid: 30304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,75.5 - parent: 12 - - uid: 30307 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,72.5 - parent: 12 - - uid: 30421 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-57.5 - parent: 12 - - uid: 30501 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-55.5 - parent: 12 - - uid: 30519 - components: - - type: Transform - pos: 3.5,-65.5 - parent: 12 - - uid: 30521 - components: - - type: Transform - pos: -26.5,-63.5 - parent: 12 - - uid: 30522 - components: - - type: Transform - pos: -26.5,-62.5 - parent: 12 - - uid: 30523 - components: - - type: Transform - pos: -26.5,-61.5 - parent: 12 - - uid: 30524 - components: - - type: Transform - pos: -25.5,-63.5 - parent: 12 - - uid: 30525 - components: - - type: Transform - pos: -25.5,-64.5 - parent: 12 - - uid: 30526 - components: - - type: Transform - pos: -24.5,-64.5 - parent: 12 - - uid: 30527 - components: - - type: Transform - pos: -23.5,-64.5 - parent: 12 - - uid: 30561 - components: - - type: Transform - pos: -29.5,-52.5 - parent: 12 - - uid: 30562 - components: - - type: Transform - pos: -30.5,-52.5 - parent: 12 - - uid: 30563 - components: - - type: Transform - pos: -31.5,-52.5 - parent: 12 - - uid: 30564 - components: - - type: Transform - pos: -32.5,-52.5 - parent: 12 - - uid: 30565 - components: - - type: Transform - pos: -33.5,-52.5 - parent: 12 - - uid: 30566 - components: - - type: Transform - pos: -34.5,-52.5 - parent: 12 - - uid: 30569 - components: - - type: Transform - pos: -33.5,-60.5 - parent: 12 - - uid: 30570 - components: - - type: Transform - pos: -32.5,-60.5 - parent: 12 - - uid: 30571 - components: - - type: Transform - pos: -31.5,-60.5 - parent: 12 - - uid: 30980 - components: - - type: Transform - pos: -54.5,-48.5 - parent: 12 - - uid: 30981 - components: - - type: Transform - pos: -54.5,-47.5 - parent: 12 - - uid: 30982 - components: - - type: Transform - pos: -54.5,-46.5 - parent: 12 - - uid: 31105 - components: - - type: Transform - pos: -9.5,-70.5 - parent: 12 - - uid: 31141 - components: - - type: Transform - pos: -29.5,-60.5 - parent: 12 - - uid: 31142 - components: - - type: Transform - pos: -28.5,-60.5 - parent: 12 - - uid: 31167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-64.5 - parent: 12 - - uid: 31168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-64.5 - parent: 12 - - uid: 31176 - components: - - type: Transform - pos: 0.5,-70.5 - parent: 12 - - uid: 31177 - components: - - type: Transform - pos: 3.5,-68.5 - parent: 12 - - uid: 31178 - components: - - type: Transform - pos: 3.5,-67.5 - parent: 12 - - uid: 31179 - components: - - type: Transform - pos: 3.5,-66.5 - parent: 12 - - uid: 31182 - components: - - type: Transform - pos: 3.5,-64.5 - parent: 12 - - uid: 31193 - components: - - type: Transform - pos: -3.5,-70.5 - parent: 12 - - uid: 31194 - components: - - type: Transform - pos: -1.5,-70.5 - parent: 12 - - uid: 31206 - components: - - type: Transform - pos: -0.5,-70.5 - parent: 12 - - uid: 31207 - components: - - type: Transform - pos: -2.5,-70.5 - parent: 12 - - uid: 31457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-59.5 - parent: 12 - - uid: 31458 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-60.5 - parent: 12 - - uid: 31459 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-61.5 - parent: 12 - - uid: 31460 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-62.5 - parent: 12 - - uid: 31628 - components: - - type: Transform - pos: -63.5,-25.5 - parent: 12 - - uid: 31629 - components: - - type: Transform - pos: -63.5,-24.5 - parent: 12 - - uid: 31630 - components: - - type: Transform - pos: -63.5,-23.5 - parent: 12 - - uid: 31692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-31.5 - parent: 12 - - uid: 31693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-30.5 - parent: 12 - - uid: 31697 - components: - - type: Transform - pos: -63.5,-28.5 - parent: 12 - - uid: 31699 - components: - - type: Transform - pos: -63.5,-20.5 - parent: 12 - - uid: 31872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-13.5 - parent: 12 - - uid: 32038 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-13.5 - parent: 12 -- proto: ReinforcedWindowDiagonal - entities: - - uid: 19673 - components: - - type: Transform - pos: -12.5,79.5 - parent: 12 - - uid: 30302 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,79.5 - parent: 12 -- proto: RemoteSignaller - entities: - - uid: 4914 - components: - - type: Transform - parent: 6162 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ResearchAndDevelopmentServer - entities: - - uid: 785 - components: - - type: Transform - pos: -43.5,-20.5 - parent: 12 -- proto: Retractor - entities: - - uid: 4248 - components: - - type: Transform - pos: -5.3810987,-32.282246 - parent: 12 - - uid: 26049 - components: - - type: Transform - pos: -43.5,-45.5 - parent: 12 - - uid: 27301 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -5.4957952,-39.66237 - parent: 12 -- proto: RevolverCapGun - entities: - - uid: 23437 - components: - - type: Transform - pos: 31.551949,51.708954 - parent: 12 -- proto: RifleStock - entities: - - uid: 22820 - components: - - type: Transform - pos: 33.5,6.5 - parent: 12 -- proto: RiotBulletShield - entities: - - uid: 20873 - components: - - type: Transform - pos: -37.44216,65.286 - parent: 12 - - type: Blocking - blockingToggleActionEntity: 20777 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 20777 -- proto: RiotLaserShield - entities: - - uid: 20850 - components: - - type: Transform - pos: -37.846073,65.249306 - parent: 12 - - type: Blocking - blockingToggleActionEntity: 19882 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 19882 -- proto: RobocopCircuitBoard - entities: - - uid: 28858 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 2.3752384,-15.493168 - parent: 12 -- proto: RollerBedSpawnFolded - entities: - - uid: 3815 - components: - - type: Transform - pos: -15.558056,-54.46627 - parent: 12 - - uid: 3816 - components: - - type: Transform - pos: -15.53971,-53.475594 - parent: 12 - - uid: 3817 - components: - - type: Transform - pos: -15.466327,-56.319206 - parent: 12 -- proto: RubberStampApproved - entities: - - uid: 8458 - components: - - type: Transform - pos: 49.571793,-11.179373 - parent: 12 - - uid: 18681 - components: - - type: Transform - pos: -34.664757,20.759129 - parent: 12 - - uid: 23586 - components: - - type: Transform - pos: 23.312439,57.2927 - parent: 12 -- proto: RubberStampDenied - entities: - - uid: 8459 - components: - - type: Transform - pos: 49.26195,-11.187527 - parent: 12 - - uid: 18682 - components: - - type: Transform - pos: -34.383312,20.477823 - parent: 12 - - uid: 23587 - components: - - type: Transform - pos: 23.760895,57.46393 - parent: 12 -- proto: RubberStampTrader - entities: - - uid: 27150 - components: - - type: Transform - pos: 48.488125,-11.420795 - parent: 12 -- proto: SalvageMagnet - entities: - - uid: 19809 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-35.5 - parent: 12 -- proto: SandBattlemap - entities: - - uid: 30319 - components: - - type: Transform - pos: -7.427693,78.07455 - parent: 12 -- proto: Saw - entities: - - uid: 2834 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -5.4749618,-39.297535 - parent: 12 - - uid: 9964 - components: - - type: Transform - 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 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -19.510698,-27.229607 - parent: 12 - - uid: 13828 - components: - - type: Transform - pos: 31.441093,37.523373 - parent: 12 -- proto: SawImprov - entities: - - uid: 31348 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 0.49880433,-64.52029 - parent: 12 -- proto: SaxophoneInstrument - entities: - - uid: 13707 - components: - - type: Transform - pos: 18.557981,28.544872 - parent: 12 -- proto: Scalpel - entities: - - uid: 2700 - components: - - type: Transform - pos: -5.4853783,-38.80761 - parent: 12 - - uid: 2833 - components: - - type: Transform - rot: -43.98229715025713 rad - pos: -5.4690247,-32.76203 - parent: 12 - - uid: 3120 - components: - - type: Transform - pos: 6.4121404,-38.844658 - parent: 12 - - uid: 5125 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -19.458616,-27.615292 - parent: 12 - - uid: 13829 - components: - - type: Transform - pos: 31.58693,37.266426 - parent: 12 - - uid: 26048 - components: - - type: Transform - pos: -44.5,-45.5 - parent: 12 -- proto: ScalpelShiv - entities: - - uid: 3079 - components: - - type: Transform - pos: -22.51911,53.492798 - parent: 12 - - uid: 11945 - components: - - type: Transform - pos: 51.47579,10.254078 - parent: 12 - - uid: 20881 - components: - - type: Transform - parent: 19875 - - type: Physics - canCollide: False -- proto: Screen - entities: - - uid: 2248 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-26.5 - parent: 12 - - uid: 2605 - components: - - type: Transform - pos: -20.5,-48.5 - parent: 12 - - uid: 2928 - components: - - type: Transform - pos: 25.5,-13.5 - parent: 12 - - uid: 3223 - components: - - type: Transform - pos: -39.5,-32.5 - parent: 12 - - uid: 3518 - components: - - type: Transform - pos: 35.5,-24.5 - parent: 12 - - uid: 5152 - components: - - type: Transform - pos: -53.5,23.5 - parent: 12 - - uid: 5586 - components: - - type: Transform - pos: -36.5,-43.5 - parent: 12 - - uid: 5814 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-14.5 - parent: 12 - - uid: 8444 - components: - - type: Transform - pos: -2.5,-7.5 - parent: 12 - - uid: 9874 - components: - - type: Transform - pos: 2.5,-41.5 - parent: 12 - - uid: 9875 - components: - - type: Transform - pos: -11.5,-57.5 - parent: 12 - - uid: 16494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-39.5 - parent: 12 - - uid: 16535 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,6.5 - parent: 12 - - uid: 16537 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-32.5 - parent: 12 - - uid: 16538 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-40.5 - parent: 12 - - uid: 16540 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-39.5 - parent: 12 - - uid: 16541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-54.5 - parent: 12 - - uid: 16542 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-40.5 - parent: 12 - - uid: 16543 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-40.5 - parent: 12 - - uid: 16544 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-54.5 - parent: 12 - - uid: 16549 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-27.5 - parent: 12 - - uid: 16550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-33.5 - parent: 12 - - uid: 17945 - components: - - type: Transform - pos: -50.5,34.5 - parent: 12 - - uid: 17947 - components: - - type: Transform - pos: -30.5,25.5 - parent: 12 - - uid: 21394 - components: - - type: Transform - pos: -42.5,31.5 - parent: 12 - - uid: 21395 - components: - - type: Transform - pos: -23.5,42.5 - parent: 12 - - uid: 21396 - components: - - type: Transform - pos: -19.5,30.5 - parent: 12 - - uid: 21397 - components: - - type: Transform - pos: -42.5,43.5 - parent: 12 - - uid: 21424 - components: - - type: Transform - pos: -31.5,54.5 - parent: 12 - - uid: 21909 - components: - - type: Transform - pos: -17.5,-16.5 - parent: 12 - - uid: 24167 - components: - - type: Transform - pos: 66.5,51.5 - parent: 12 - - uid: 24168 - components: - - type: Transform - pos: 52.5,60.5 - parent: 12 - - uid: 25289 - components: - - type: Transform - pos: -41.5,-24.5 - parent: 12 - - uid: 25290 - components: - - type: Transform - pos: -18.5,-22.5 - parent: 12 - - uid: 25291 - components: - - type: Transform - pos: -18.5,-1.5 - parent: 12 - - uid: 25292 - components: - - type: Transform - pos: 6.5,42.5 - parent: 12 - - uid: 25293 - components: - - type: Transform - pos: 16.5,51.5 - parent: 12 - - uid: 25294 - components: - - type: Transform - pos: 39.5,44.5 - parent: 12 - - uid: 25295 - components: - - type: Transform - pos: 33.5,28.5 - parent: 12 - - uid: 26835 - components: - - type: Transform - pos: -37.5,57.5 - parent: 12 - - uid: 30470 - components: - - type: Transform - pos: 35.5,10.5 - parent: 12 - - uid: 32032 - components: - - type: Transform - pos: 41.5,-20.5 - parent: 12 -- proto: Screwdriver - entities: - - uid: 13323 - components: - - type: Transform - pos: 43.473324,29.66118 - parent: 12 - - uid: 23679 - components: - - type: Transform - pos: 44.300182,53.097622 - parent: 12 -- proto: SecurityTechFab - entities: - - uid: 7348 - components: - - type: Transform - pos: -34.5,64.5 - parent: 12 -- proto: SeedExtractor - entities: - - uid: 23757 - components: - - type: Transform - pos: 71.5,47.5 - parent: 12 - - uid: 23758 - components: - - type: Transform - pos: 71.5,50.5 - parent: 12 -- proto: ShardGlass - entities: - - uid: 3520 - components: - - 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 - pos: 45.673317,62.58458 - parent: 12 - - uid: 26800 - components: - - type: Transform - pos: 42.401203,-19.637478 - parent: 12 - - uid: 30486 - components: - - type: Transform - pos: 44.40208,-16.478321 - parent: 12 - - uid: 31322 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: -0.033465624,-67.55059 - parent: 12 - - uid: 31345 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: -1.9570773,-68.467896 - parent: 12 -- proto: SheetGlass - entities: - - uid: 1948 - components: - - type: Transform - pos: -30.633316,-21.3671 - parent: 12 - - uid: 5926 - components: - - type: Transform - pos: 35.506718,-18.458506 - parent: 12 - - uid: 8495 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 50.779865,-21.446379 - parent: 12 - - uid: 16560 - components: - - type: Transform - pos: -9.761456,24.692194 - parent: 12 - - uid: 21863 - components: - - type: Transform - pos: -19.500294,-2.4607296 - parent: 12 - - uid: 24176 - components: - - type: Transform - pos: 49.57303,47.439972 - parent: 12 -- proto: SheetPlasma - entities: - - uid: 2420 - components: - - type: Transform - pos: 40.4387,2.501758 - parent: 12 -- proto: SheetPlasma1 - entities: - - uid: 22020 - components: - - type: Transform - pos: 3.534666,-7.464702 - parent: 12 - - type: Stack - count: 5 -- proto: SheetPlasma10 - entities: - - uid: 24434 - components: - - type: Transform - pos: 62.5,10.5 - parent: 12 - - uid: 28215 - components: - - type: Transform - pos: -35.41417,-37.542362 - parent: 12 -- proto: SheetPlasteel - entities: - - uid: 7311 - components: - - type: Transform - pos: 35.4963,-20.343922 - parent: 12 - - uid: 16558 - components: - - type: Transform - pos: -9.260001,24.655502 - parent: 12 - - uid: 23173 - components: - - type: Transform - pos: 53.588356,-3.5323467 - parent: 12 - - uid: 26101 - components: - - type: Transform - pos: 57.385647,-5.3932357 - parent: 12 - - uid: 31043 - components: - - type: Transform - pos: 59.707104,12.565823 - parent: 12 -- proto: SheetPlastic - entities: - - uid: 1947 - components: - - type: Transform - pos: -30.505203,-18.449919 - parent: 12 - - uid: 8895 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 50.35577,-21.519083 - parent: 12 -- proto: SheetRGlass - entities: - - uid: 7766 - components: - - type: Transform - pos: 62.5,0.5 - parent: 12 - - uid: 16481 - components: - - type: Transform - pos: -8.308878,5.3747296 - parent: 12 -- proto: SheetSteel - entities: - - uid: 366 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: 9.414267,12.413563 - parent: 12 - - uid: 1802 - components: - - type: Transform - pos: -31.493483,-18.463594 - parent: 12 - - uid: 1946 - components: - - type: Transform - pos: -31.500504,-18.592041 - parent: 12 - - uid: 4475 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 29.48155,2.7698662 - parent: 12 - - uid: 4725 - components: - - type: Transform - pos: -31.512808,58.52297 - parent: 12 - - uid: 5925 - components: - - type: Transform - pos: 35.454636,-19.489756 - parent: 12 - - uid: 6318 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: 9.685101,12.736704 - parent: 12 - - uid: 8439 - components: - - type: Transform - pos: 58.464287,-3.4888296 - parent: 12 - - uid: 8898 - components: - - type: Transform - rot: -37.69911184307754 rad - pos: 50.40397,-21.229546 - parent: 12 - - uid: 10380 - components: - - type: Transform - pos: -26.496197,-8.588259 - parent: 12 - - uid: 16480 - components: - - type: Transform - pos: -8.694296,5.3851466 - parent: 12 - - uid: 16559 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -9.512375,24.439787 - parent: 12 - - uid: 17547 - components: - - type: Transform - pos: 33.336582,45.529766 - parent: 12 - - uid: 24481 - components: - - type: Transform - 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 - pos: 11.470082,-2.5260608 - parent: 12 - - uid: 29969 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: 8.49831,-9.553013 - parent: 12 -- proto: SheetUranium1 - entities: - - uid: 26534 - components: - - type: Transform - rot: -56.54866776461632 rad - pos: 9.501114,-13.461607 - parent: 12 - - type: Stack - count: 15 -- proto: ShelfBar - entities: - - uid: 22816 - components: - - type: Transform - pos: 24.5,48.5 - parent: 12 -- proto: ShelfChemistryChemistrySecure - entities: - - uid: 32015 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-45.5 - parent: 12 -- proto: ShelfKitchen - entities: - - uid: 32014 - components: - - type: Transform - pos: 31.5,60.5 - parent: 12 -- proto: Shiv - entities: - - uid: 30493 - components: - - type: Transform - rot: -75.39822368615505 rad - pos: 34.429405,8.474968 - parent: 12 - - uid: 31210 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: -3.0126321,-67.73822 - parent: 12 -- proto: Shovel - entities: - - uid: 504 - components: - - type: Transform - pos: 5.886181,-62.15094 - parent: 12 - - uid: 12121 - components: - - type: Transform - pos: 81.46926,-38.476837 - parent: 12 - - uid: 22201 - components: - - type: Transform - pos: -1.2850466,28.907166 - parent: 12 -- proto: ShowcaseRobot - entities: - - uid: 29860 - components: - - type: Transform - pos: -31.5,-39.5 - parent: 12 -- proto: ShowcaseRobotAntique - entities: - - uid: 8503 - components: - - type: Transform - pos: 62.5,-14.5 - parent: 12 -- proto: ShowcaseRobotWhite - entities: - - uid: 5906 - components: - - type: Transform - pos: -28.5,-23.5 - parent: 12 -- proto: ShuttersNormal - entities: - - uid: 9763 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-23.5 - parent: 12 - - uid: 9764 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-22.5 - parent: 12 - - uid: 11491 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-26.5 - parent: 12 - - uid: 22278 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-26.5 - parent: 12 - - uid: 29667 - components: - - type: Transform - pos: -21.5,71.5 - parent: 12 - - uid: 29825 - components: - - type: Transform - pos: -22.5,71.5 - parent: 12 - - uid: 29828 - components: - - type: Transform - pos: -23.5,71.5 - parent: 12 - - uid: 29829 - components: - - type: Transform - pos: -24.5,71.5 - parent: 12 - - uid: 29830 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,73.5 - parent: 12 - - uid: 29831 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,73.5 - parent: 12 - - uid: 29832 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,73.5 - parent: 12 - - uid: 29833 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,73.5 - parent: 12 - - uid: 31116 - components: - - type: Transform - pos: -35.5,-58.5 - parent: 12 -- proto: ShuttersNormalOpen - entities: - - uid: 2721 - components: - - type: Transform - pos: 13.5,-13.5 - parent: 12 - - uid: 5476 - components: - - type: Transform - pos: 15.5,-18.5 - parent: 12 - - uid: 8470 - components: - - type: Transform - pos: 47.5,-9.5 - parent: 12 - - uid: 8471 - components: - - 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 - rot: -1.5707963267948966 rad - pos: -13.5,-38.5 - parent: 12 - - uid: 12915 - components: - - type: Transform - pos: -32.5,20.5 - parent: 12 - - uid: 13637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,31.5 - parent: 12 - - uid: 13638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,32.5 - parent: 12 - - uid: 13639 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,34.5 - parent: 12 - - uid: 13640 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,34.5 - parent: 12 - - uid: 13641 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,31.5 - parent: 12 - - uid: 13642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,32.5 - parent: 12 - - uid: 16484 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,10.5 - parent: 12 - - uid: 16485 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,9.5 - parent: 12 - - uid: 16486 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: -33.5,24.5 - parent: 12 - - uid: 18666 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,24.5 - parent: 12 - - uid: 18667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,24.5 - parent: 12 - - uid: 18669 - components: - - type: Transform - pos: -33.5,20.5 - parent: 12 - - uid: 18670 - components: - - type: Transform - pos: -34.5,20.5 - parent: 12 - - uid: 18854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,23.5 - parent: 12 - - uid: 18855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,34.5 - parent: 12 - - uid: 18856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,34.5 - parent: 12 - - uid: 18857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,35.5 - parent: 12 - - uid: 18858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,32.5 - parent: 12 - - uid: 18859 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,32.5 - parent: 12 - - uid: 18860 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,30.5 - parent: 12 - - uid: 18861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,31.5 - parent: 12 - - uid: 18862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,26.5 - parent: 12 - - uid: 18863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,27.5 - parent: 12 - - uid: 18864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,25.5 - parent: 12 - - uid: 18865 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: -11.5,-36.5 - parent: 12 - - uid: 21927 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-36.5 - parent: 12 - - uid: 21931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-37.5 - parent: 12 - - uid: 24009 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-36.5 - parent: 12 - - uid: 24086 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-19.5 - parent: 12 - - uid: 24089 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-20.5 - parent: 12 - - uid: 24118 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-21.5 - parent: 12 - - uid: 24309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-22.5 - parent: 12 - - uid: 31873 - components: - - type: Transform - pos: 15.5,-13.5 - parent: 12 -- proto: ShuttersWindow - entities: - - uid: 7800 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-24.5 - parent: 12 - - uid: 7801 - components: - - type: Transform - 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 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,34.5 - parent: 12 - - uid: 18850 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,29.5 - parent: 12 - - uid: 18851 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,28.5 - parent: 12 - - uid: 18852 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,24.5 - parent: 12 - - uid: 18853 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,33.5 - parent: 12 - - uid: 23444 - components: - - type: Transform - pos: 30.5,52.5 - parent: 12 - - uid: 23445 - components: - - type: Transform - pos: 27.5,53.5 - parent: 12 -- proto: ShuttleConsoleCircuitboard - entities: - - uid: 5854 - components: - - type: Transform - pos: -22.46642,-11.435001 - parent: 12 -- proto: SignAi - entities: - - uid: 21323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 12 -- proto: SignAiUpload - entities: - - uid: 17754 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-8.5 - parent: 12 -- proto: SignalButton - entities: - - uid: 16488 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,8.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 16486: - - Pressed: Toggle - 16485: - - Pressed: Toggle - 16484: - - Pressed: Toggle - - uid: 16511 - components: - - type: Transform - pos: -20.5,15.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 16503: - - Pressed: Toggle - - uid: 28739 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,0.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 5199: - - Pressed: Toggle - 7554: - - Pressed: Toggle - 26580: - - Pressed: Toggle -- proto: SignalButtonDirectional - entities: - - uid: 574 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-28.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 730: - - Pressed: Toggle - 731: - - Pressed: Toggle - 732: - - Pressed: Toggle - - uid: 754 - components: - - type: Transform - pos: -49.5,-20.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 735: - - Pressed: Toggle - 734: - - Pressed: Toggle - 733: - - Pressed: Toggle - - uid: 2930 - components: - - type: Transform - pos: -10.5,-36.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 10382: - - Pressed: Toggle - 21931: - - Pressed: Toggle - 24009: - - Pressed: Toggle - 21927: - - Pressed: Toggle - 21916: - - Pressed: Toggle - - uid: 4085 - components: - - type: Transform - pos: -19.5,-37.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 2548: - - Pressed: Open - 2550: - - Pressed: Open - - uid: 5541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-13.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 529: - - Pressed: Toggle - - uid: 5599 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-24.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 24086: - - Pressed: Toggle - 24089: - - Pressed: Toggle - 24118: - - Pressed: Toggle - 24309: - - Pressed: Toggle - - uid: 5629 - components: - - type: Transform - pos: 14.5,6.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 5199: - - Pressed: Toggle - 7554: - - Pressed: Toggle - 26580: - - Pressed: Toggle - - uid: 5976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-13.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 528: - - Pressed: Toggle - - uid: 7259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,53.5 - parent: 12 - - uid: 7799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-19.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 7801: - - Pressed: Toggle - 7800: - - Pressed: Toggle - - uid: 8475 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-7.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 8471: - - Pressed: Toggle - 8470: - - Pressed: Toggle - - uid: 8826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-14.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 7778: - - Pressed: Toggle - 7779: - - Pressed: Toggle - 20780: - - Pressed: Toggle - 20781: - - Pressed: Toggle - - uid: 9124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-38.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 9123: - - Pressed: Toggle - - uid: 11216 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,9.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 8974: - - Pressed: Toggle - 9003: - - Pressed: Toggle - 8976: - - Pressed: Toggle - 8992: - - Pressed: Toggle - - uid: 11450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,7.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 8974: - - Pressed: Toggle - 9003: - - Pressed: Toggle - 8976: - - Pressed: Toggle - 8992: - - Pressed: Toggle - - uid: 13643 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,29.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 13641: - - Pressed: Toggle - 13642: - - Pressed: Toggle - 13640: - - Pressed: Toggle - 13639: - - Pressed: Toggle - 13638: - - Pressed: Toggle - 13637: - - Pressed: Toggle - - uid: 17548 - components: - - type: Transform - pos: -52.5,23.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 17553: - - Pressed: Toggle - 17554: - - Pressed: Toggle - 17555: - - Pressed: Toggle - 17556: - - Pressed: Toggle - 17557: - - Pressed: Toggle - 17558: - - Pressed: Toggle - 17560: - - Pressed: Toggle - 17559: - - Pressed: Toggle - 17561: - - Pressed: Toggle - 17562: - - Pressed: Toggle - 17563: - - Pressed: Toggle - 17564: - - Pressed: Toggle - 748: - - Pressed: Toggle - - uid: 17573 - components: - - type: Transform - pos: -44.5,25.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 17566: - - Pressed: Toggle - 17565: - - Pressed: Toggle - 17567: - - Pressed: Toggle - 17568: - - Pressed: Toggle - 17570: - - Pressed: Toggle - 17571: - - Pressed: Toggle - 17569: - - Pressed: Toggle - - uid: 19011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,29.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 18854: - - Pressed: Toggle - 18852: - - Pressed: Toggle - 18865: - - Pressed: Toggle - 18864: - - Pressed: Toggle - 18862: - - Pressed: Toggle - 18863: - - Pressed: Toggle - 18851: - - Pressed: Toggle - 18850: - - Pressed: Toggle - 18860: - - Pressed: Toggle - 18861: - - Pressed: Toggle - 18859: - - Pressed: Toggle - 18858: - - Pressed: Toggle - 18853: - - Pressed: Toggle - 18855: - - Pressed: Toggle - 18849: - - Pressed: Toggle - 18856: - - 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 - 5476: - - 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 - 31873: - - Pressed: Toggle - - uid: 23446 - components: - - type: Transform - pos: 31.5,52.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 23444: - - Pressed: Toggle - 23445: - - Pressed: Toggle - - uid: 23447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,54.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 23445: - - Pressed: Toggle - 23444: - - Pressed: Toggle - - uid: 23782 - components: - - type: Transform - pos: -40.5,49.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 20057: - - Pressed: Toggle - - uid: 23783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,49.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 20058: - - Pressed: Toggle - 20059: - - Pressed: Toggle - - uid: 25362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,21.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 18670: - - Pressed: Toggle - 18669: - - Pressed: Toggle - 12915: - - Pressed: Toggle - 18666: - - Pressed: Toggle - 18665: - - Pressed: Toggle - 18667: - - Pressed: Toggle - - uid: 26381 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,57.5 - parent: 12 - - uid: 27247 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-28.5 - parent: 12 - - uid: 28346 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-48.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 2638: - - Pressed: Open - 2639: - - Pressed: Open - - uid: 28350 - components: - - type: Transform - pos: -14.5,-40.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 2550: - - 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 - rot: -1.5707963267948966 rad - pos: -20.5,69.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 29667: - - Pressed: Toggle - 29825: - - Pressed: Toggle - 29828: - - Pressed: Toggle - 29829: - - Pressed: Toggle - 29832: - - Pressed: Toggle - 29833: - - Pressed: Toggle - 29831: - - Pressed: Toggle - 29830: - - Pressed: Toggle - - uid: 31136 - components: - - type: Transform - pos: -33.5,-57.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 31116: - - Pressed: Toggle - - uid: 31260 - components: - - type: Transform - pos: -2.5,-64.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 31258: - - Pressed: DoorBolt - - uid: 31374 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-24.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 9763: - - Pressed: Toggle - 9764: - - Pressed: Toggle - - uid: 31383 - components: - - type: Transform - pos: 12.5,19.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 12674: - - Pressed: Toggle - 1850: - - Pressed: Toggle - 4384: - - Pressed: Toggle - 12675: - - Pressed: Toggle - - uid: 31385 - components: - - type: Transform - pos: 10.5,19.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 9407: - - Pressed: Toggle - 15681: - - Pressed: Toggle - 10993: - - Pressed: Toggle - 11326: - - Pressed: Toggle -- proto: SignAnomaly - entities: - - uid: 32031 - components: - - type: Transform - pos: -38.5,-30.5 - parent: 12 -- proto: SignAnomaly2 - entities: - - uid: 2042 - components: - - type: Transform - pos: -39.5,-33.5 - parent: 12 -- proto: SignArcade - entities: - - uid: 16925 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,46.5 - parent: 12 -- proto: SignArmory - entities: - - uid: 20856 - components: - - type: Transform - pos: -34.5,63.5 - parent: 12 -- proto: SignAtmos - entities: - - uid: 16661 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,8.5 - parent: 12 - - uid: 26433 - components: - - type: Transform - pos: 7.5,-7.5 - parent: 12 - - uid: 26465 - components: - - type: Transform - pos: 21.5,-15.5 - parent: 12 -- proto: SignBar - entities: - - uid: 21320 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,44.5 - parent: 12 - - uid: 21322 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,38.5 - parent: 12 -- proto: SignBarbershop - entities: - - uid: 21321 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,47.5 - parent: 12 -- proto: SignBio - entities: - - uid: 1753 - components: - - type: Transform - pos: -41.5,-44.5 - parent: 12 - - uid: 2126 - components: - - type: Transform - pos: -39.5,-46.5 - parent: 12 - - uid: 4053 - components: - - type: Transform - pos: -9.5,-58.5 - parent: 12 - - uid: 13531 - components: - - type: Transform - pos: 39.5,26.5 - parent: 12 - - uid: 13532 - components: - - type: Transform - pos: 41.5,30.5 - parent: 12 -- proto: SignBridge - entities: - - uid: 21303 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,27.5 - parent: 12 - - uid: 21304 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,30.5 - parent: 12 -- proto: SignCans - entities: - - uid: 7234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,9.5 - parent: 12 - - uid: 26631 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,7.5 - parent: 12 -- proto: SignCansScience - entities: - - uid: 26971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-30.5 - parent: 12 - - uid: 28806 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-33.5 - parent: 12 -- proto: SignCargo - entities: - - uid: 21316 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-23.5 - parent: 12 -- proto: SignCargoDock - entities: - - uid: 21318 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-17.5 - parent: 12 - - uid: 21319 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-11.5 - parent: 12 -- proto: SignChapel - entities: - - uid: 21317 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,40.5 - parent: 12 -- proto: SignChem - entities: - - uid: 2297 - components: - - type: Transform - pos: -27.5,-45.5 - parent: 12 - - uid: 29855 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-40.5 - parent: 12 -- proto: SignCryo - entities: - - uid: 21647 - components: - - type: Transform - pos: -5.5,46.5 - parent: 12 -- proto: SignCryogenics - entities: - - uid: 2800 - components: - - type: Transform - pos: -14.5,-54.5 - parent: 12 -- proto: SignDanger - entities: - - uid: 2045 - components: - - type: Transform - pos: -49.5,-36.5 - parent: 12 -- proto: SignDangerMed - entities: - - uid: 32312 - components: - - type: Transform - pos: 71.5,-4.5 - parent: 12 - - uid: 32322 - components: - - type: Transform - pos: 71.5,13.5 - parent: 12 - - uid: 32325 - components: - - type: Transform - pos: 78.5,5.5 - parent: 12 -- proto: SignDirectionalAtmos - entities: - - uid: 29965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,4.5 - parent: 12 -- proto: SignDirectionalBar - entities: - - uid: 7503 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.501035,26.381912 - parent: 12 -- proto: SignDirectionalBridge - entities: - - uid: 25881 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.497457,-25.11705 - parent: 12 - - uid: 25883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.451471,25.575481 - parent: 12 -- proto: SignDirectionalDorms - entities: - - uid: 3073 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5034685,26.79992 - parent: 12 -- proto: SignDirectionalEng - entities: - - uid: 25880 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.499981,-25.319437 - parent: 12 -- proto: SignDirectionalEvac - entities: - - uid: 851 - components: - - type: Transform - pos: -14.500178,26.17821 - parent: 12 - - uid: 852 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.545398,42.779217 - parent: 12 - - uid: 7265 - components: - - type: Transform - pos: 19.5,-29.5 - parent: 12 - - uid: 7266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-25.5 - parent: 12 - - uid: 7267 - components: - - type: Transform - pos: -17.5,-7.5 - parent: 12 - - uid: 7268 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-25.5 - parent: 12 - - uid: 26270 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.505836,39.29639 - parent: 12 -- proto: SignDirectionalGravity - entities: - - uid: 26266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.547713,42.16463 - parent: 12 - - uid: 26268 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.502098,39.713055 - parent: 12 -- proto: SignDirectionalHop - entities: - - uid: 25882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.451471,25.790758 - parent: 12 -- proto: SignDirectionalHydro - entities: - - uid: 26265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.547713,42.372967 - parent: 12 - - uid: 26269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.508522,39.90287 - parent: 12 -- proto: SignDirectionalJanitor - entities: - - uid: 12620 - components: - - type: Transform - pos: 36.5,39.5 - parent: 12 - - uid: 12621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,24.5 - parent: 12 - - uid: 26267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.547713,41.9563 - parent: 12 -- proto: SignDirectionalMed - entities: - - uid: 25885 - components: - - type: Transform - pos: -18.458416,25.144926 - parent: 12 - - uid: 26272 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.504099,-29.698256 - parent: 12 -- proto: SignDirectionalSci - entities: - - uid: 25884 - components: - - type: Transform - pos: -18.458416,25.353258 - parent: 12 - - uid: 26273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.504099,-29.8927 - parent: 12 -- proto: SignDirectionalSec - entities: - - uid: 854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.543083,42.56741 - parent: 12 - - uid: 7494 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.501035,26.59179 - parent: 12 - - uid: 25879 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.500544,-25.697298 - 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 - rot: -1.5707963267948966 rad - pos: -40.5,-54.5 - parent: 12 - - uid: 31020 - components: - - type: Transform - pos: -54.5,-35.5 - parent: 12 -- proto: SignDirectionalSupply - entities: - - uid: 26271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.50873,-29.295479 - parent: 12 -- proto: SignElectrical - entities: - - uid: 31267 - components: - - type: Transform - pos: -4.5,-69.5 - parent: 12 - - uid: 31268 - components: - - type: Transform - pos: 2.5,-69.5 - parent: 12 -- proto: SignElectricalMed - entities: - - uid: 7522 - components: - - type: Transform - pos: 63.5,7.5 - parent: 12 - - uid: 8977 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,0.5 - parent: 12 - - uid: 11451 - components: - - type: Transform - pos: -55.5,39.5 - parent: 12 - - uid: 19829 - components: - - type: Transform - pos: -60.5,23.5 - parent: 12 - - uid: 20072 - components: - - type: Transform - pos: -55.5,13.5 - parent: 12 - - uid: 22153 - components: - - type: Transform - pos: 63.5,1.5 - parent: 12 - - uid: 27155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,13.5 - parent: 12 - - uid: 32321 - components: - - type: Transform - pos: 78.5,13.5 - parent: 12 - - uid: 32323 - components: - - type: Transform - pos: 65.5,-4.5 - parent: 12 - - uid: 32324 - components: - - type: Transform - pos: 65.5,13.5 - parent: 12 - - uid: 32326 - components: - - type: Transform - pos: 78.5,-4.5 - parent: 12 - - uid: 32327 - components: - - type: Transform - pos: 78.5,3.5 - parent: 12 -- proto: SignEngine - entities: - - uid: 27242 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-0.5 - parent: 12 -- proto: SignEngineering - entities: - - uid: 500 - components: - - type: Transform - pos: 41.5,-2.5 - parent: 12 - - uid: 21084 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-25.5 - parent: 12 - - uid: 28649 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-2.5 - parent: 12 -- proto: SignEscapePods - entities: - - uid: 29003 - components: - - type: Transform - pos: -17.5,-65.5 - parent: 12 -- proto: SignEVA - entities: - - uid: 16411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,13.5 - parent: 12 -- proto: SignExamroom - entities: - - uid: 23976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-45.5 - parent: 12 -- proto: SignFire - entities: - - uid: 2046 - components: - - type: Transform - pos: -54.5,-24.5 - parent: 12 - - uid: 30506 - components: - - type: Transform - pos: -27.5,-51.5 - parent: 12 -- proto: SignFlammable - entities: - - uid: 26428 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-2.5 - parent: 12 - - uid: 26430 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,4.5 - parent: 12 -- proto: SignGravity - entities: - - uid: 322 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-13.5 - parent: 12 - - uid: 32065 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-15.5 - parent: 12 -- proto: SignHead - entities: - - uid: 2054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-40.5 - parent: 12 - - uid: 5147 - components: - - type: Transform - pos: -50.5,23.5 - parent: 12 - - uid: 17267 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,24.5 - parent: 12 - - uid: 21305 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-23.5 - parent: 12 - - uid: 21308 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-19.5 - parent: 12 - - uid: 21961 - components: - - type: Transform - pos: -40.5,35.5 - parent: 12 - - uid: 26570 - components: - - type: Transform - pos: 46.5,-9.5 - parent: 12 -- proto: SignHydro1 - entities: - - uid: 1833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,46.5 - parent: 12 -- proto: SignInterrogation - entities: - - uid: 21302 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,43.5 - parent: 12 -- proto: SignJanitor - entities: - - uid: 231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,22.5 - parent: 12 - - uid: 4114 - components: - - type: Transform - pos: 8.5,-49.5 - parent: 12 -- proto: SignKitchen - entities: - - uid: 21311 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,54.5 - parent: 12 - - uid: 21312 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,55.5 - parent: 12 -- proto: SignLawyer - entities: - - uid: 18903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,30.5 - parent: 12 - - uid: 19665 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 12 - - uid: 20056 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,34.5 - parent: 12 -- proto: SignLibrary - entities: - - uid: 415 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,70.5 - parent: 12 -- proto: SignMagnetics - entities: - - uid: 4164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 86.5,-35.5 - parent: 12 -- proto: SignMail - entities: - - uid: 31528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-17.5 - parent: 12 -- proto: SignMaterials - entities: - - uid: 16551 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,26.5 - parent: 12 -- proto: SignMedical - entities: - - uid: 21309 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-31.5 - parent: 12 - - uid: 21310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-31.5 - parent: 12 -- proto: SignMorgue - entities: - - uid: 3110 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-43.5 - parent: 12 -- proto: SignNews - entities: - - uid: 15797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,39.5 - parent: 12 -- proto: SignPrison - entities: - - uid: 19301 - components: - - type: Transform - pos: -37.5,60.5 - parent: 12 -- proto: SignPsychology - entities: - - uid: 2430 - components: - - type: Transform - pos: -20.5,-57.5 - parent: 12 -- proto: SignReception - entities: - - uid: 4057 - components: - - type: Transform - pos: -18.5,-37.5 - parent: 12 -- proto: SignRedOne - entities: - - uid: 29247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,60.5 - parent: 12 -- proto: SignRedThree - entities: - - uid: 29284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,60.5 - parent: 12 -- proto: SignRedTwo - entities: - - uid: 29283 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,60.5 - parent: 12 -- proto: SignRestroom - entities: - - uid: 26554 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-28.5 - parent: 12 - - uid: 26651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,52.5 - parent: 12 -- proto: SignRND - entities: - - uid: 2049 - components: - - type: Transform - pos: -26.5,-22.5 - parent: 12 -- proto: SignRobo - entities: - - uid: 12638 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-26.5 - parent: 12 -- proto: SignSalvage - entities: - - uid: 8787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 86.5,-34.5 - parent: 12 - - uid: 18641 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-25.5 - parent: 12 - - uid: 18691 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-29.5 - parent: 12 - - uid: 20905 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-33.5 - parent: 12 -- proto: SignScience - entities: - - uid: 2050 - components: - - type: Transform - pos: -18.5,-25.5 - parent: 12 -- proto: SignSecurearea - entities: - - uid: 13533 - components: - - type: Transform - pos: 53.5,18.5 - parent: 12 - - uid: 13534 - components: - - type: Transform - pos: 53.5,16.5 - parent: 12 - - uid: 13535 - components: - - type: Transform - pos: 42.5,15.5 - parent: 12 - - uid: 13536 - components: - - type: Transform - pos: 47.5,20.5 - parent: 12 - - uid: 13537 - components: - - type: Transform - pos: 48.5,23.5 - parent: 12 - - uid: 16501 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,7.5 - parent: 12 - - uid: 16502 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,11.5 - parent: 12 - - uid: 25665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,16.5 - parent: 12 -- proto: SignServer - entities: - - uid: 18694 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-20.5 - parent: 12 -- proto: SignShock - entities: - - uid: 568 - components: - - type: Transform - 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 - components: - - type: Transform - pos: -29.5,-22.5 - parent: 12 -- proto: SignSomethingOld - entities: - - uid: 5380 - components: - - type: Transform - pos: 3.5,23.5 - parent: 12 -- proto: SignSomethingOld2 - entities: - - uid: 5370 - components: - - type: Transform - pos: -5.5,21.5 - parent: 12 -- proto: SignSpace - entities: - - uid: 29292 - components: - - type: Transform - pos: -24.5,62.5 - parent: 12 -- proto: SignSurgery - entities: - - uid: 5165 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-40.5 - parent: 12 - - uid: 28359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-35.5 - parent: 12 -- proto: SignTelecomms - entities: - - uid: 21800 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-8.5 - parent: 12 -- proto: SignToolStorage - entities: - - uid: 24138 - components: - - type: Transform - pos: 44.5,46.5 - parent: 12 -- proto: SignVault - entities: - - uid: 22165 - components: - - type: Transform - pos: -27.5,8.5 - parent: 12 -- proto: SignVirology - entities: - - uid: 2689 - components: - - type: Transform - pos: -14.5,-57.5 - parent: 12 -- proto: Sink - entities: - - uid: 19874 - components: - - type: Transform - 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 -- proto: SinkEmpty - entities: - - uid: 4233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-30.5 - parent: 12 - - uid: 4234 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-29.5 - parent: 12 -- proto: SinkWide - entities: - - uid: 936 - components: - - type: Transform - pos: -55.5,22.5 - parent: 12 - - uid: 2822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,24.5 - parent: 12 - - uid: 3809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-55.5 - parent: 12 - - uid: 3810 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-55.5 - parent: 12 - - uid: 6683 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-44.5 - parent: 12 - - uid: 9225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,62.5 - parent: 12 - - uid: 9759 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-25.5 - parent: 12 - - uid: 15099 - components: - - type: Transform - pos: 22.5,47.5 - parent: 12 - - uid: 17581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-39.5 - parent: 12 - - uid: 17583 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-35.5 - parent: 12 - - uid: 22375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,54.5 - parent: 12 - - uid: 22412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,54.5 - parent: 12 - - uid: 22883 - components: - - type: Transform - pos: 30.5,60.5 - parent: 12 - - uid: 26064 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-10.5 - parent: 12 - - uid: 28212 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-52.5 - parent: 12 -- proto: Skub - entities: - - uid: 26065 - components: - - type: Transform - pos: 54.49004,14.54105 - parent: 12 -- proto: SmartFridge - entities: - - uid: 8300 - components: - - type: Transform - pos: -34.5,-45.5 - parent: 12 -- proto: SMESAdvanced - entities: - - uid: 2682 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 12 - - uid: 4521 - components: - - type: Transform - pos: 14.5,-14.5 - parent: 12 - - uid: 4522 - components: - - type: Transform - pos: 12.5,-14.5 - parent: 12 - - uid: 4667 - components: - - type: Transform - pos: 12.5,-17.5 - parent: 12 - - uid: 5020 - components: - - type: Transform - pos: 13.5,-17.5 - parent: 12 - - uid: 8972 - components: - - type: Transform - pos: 14.5,-17.5 - parent: 12 - - uid: 25094 - components: - - type: Transform - pos: 15.5,-17.5 - parent: 12 - - uid: 25567 - components: - - type: Transform - pos: 15.5,-14.5 - parent: 12 -- proto: SMESBasic - entities: - - uid: 2127 - components: - - type: Transform - pos: 2.5,-2.5 - parent: 12 - - uid: 2147 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 12 - - uid: 7889 - components: - - type: Transform - pos: 62.5,-3.5 - parent: 12 - - uid: 7947 - components: - - type: Transform - pos: 50.5,-44.5 - parent: 12 - - uid: 14279 - components: - - type: Transform - pos: 36.5,67.5 - parent: 12 - - uid: 17837 - components: - - type: Transform - pos: -52.5,45.5 - parent: 12 - - uid: 21864 - components: - - type: Transform - pos: 38.5,-6.5 - parent: 12 - - uid: 27222 - components: - - type: Transform - pos: -19.5,-66.5 - parent: 12 - - uid: 32042 - components: - - type: Transform - pos: 36.5,-15.5 - parent: 12 -- proto: SMESBasicEmpty - entities: - - uid: 14920 - components: - - type: Transform - pos: -53.5,-46.5 - 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 - pos: -49.685184,19.864155 - parent: 12 - - uid: 24159 - components: - - type: Transform - pos: 62.393578,47.49264 - parent: 12 -- proto: SmokingPipeFilledCannabis - entities: - - uid: 13972 - components: - - type: Transform - pos: 50.53882,20.213259 - parent: 12 -- proto: SnowBattlemap - entities: - - uid: 30320 - components: - - type: Transform - pos: -7.608248,78.005104 - parent: 12 -- proto: SoapNT - entities: - - uid: 13625 - components: - - type: Transform - pos: 43.38873,16.572454 - parent: 12 - - uid: 26524 - components: - - type: Transform - pos: 33.465336,-10.465965 - parent: 12 -- proto: SodaDispenser - entities: - - uid: 15086 - components: - - type: Transform - pos: 24.5,47.5 - parent: 12 - - uid: 15095 - components: - - type: Transform - 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 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,49.5 - parent: 12 -- proto: SolarControlComputerCircuitboard - entities: - - uid: 8834 - components: - - type: Transform - pos: 39.42695,-39.38244 - 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 - rot: -1.5707963267948966 rad - pos: 44.5,-53.5 - parent: 12 - - uid: 6357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-55.5 - parent: 12 - - uid: 6358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-55.5 - parent: 12 - - uid: 6359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-55.5 - parent: 12 - - uid: 6360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-55.5 - parent: 12 - - uid: 6361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-55.5 - parent: 12 - - uid: 6362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-53.5 - parent: 12 - - uid: 6363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-53.5 - parent: 12 - - uid: 6364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-53.5 - parent: 12 - - uid: 6365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-53.5 - parent: 12 - - uid: 6366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-53.5 - parent: 12 - - uid: 6367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-53.5 - parent: 12 - - uid: 6368 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-53.5 - parent: 12 - - uid: 6369 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-53.5 - parent: 12 - - uid: 6370 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-53.5 - parent: 12 - - uid: 6371 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-53.5 - parent: 12 - - uid: 6372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-55.5 - parent: 12 - - uid: 6373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-55.5 - parent: 12 - - uid: 6374 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-55.5 - parent: 12 - - uid: 6375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-55.5 - parent: 12 - - uid: 6376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-55.5 - parent: 12 - - uid: 6377 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-55.5 - parent: 12 - - uid: 6378 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-51.5 - parent: 12 - - uid: 6379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-51.5 - parent: 12 - - uid: 6380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-51.5 - parent: 12 - - uid: 6381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-51.5 - parent: 12 - - uid: 6382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-51.5 - parent: 12 - - uid: 6383 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-51.5 - parent: 12 - - uid: 6384 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-49.5 - parent: 12 - - uid: 6385 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-49.5 - parent: 12 - - uid: 6386 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-49.5 - parent: 12 - - uid: 6387 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-49.5 - parent: 12 - - uid: 6388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-49.5 - parent: 12 - - uid: 6389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-49.5 - parent: 12 - - uid: 6390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-47.5 - parent: 12 - - uid: 6391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-47.5 - parent: 12 - - uid: 6392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-47.5 - parent: 12 - - uid: 6393 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-47.5 - parent: 12 - - uid: 6394 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-47.5 - parent: 12 - - uid: 6395 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-47.5 - parent: 12 - - uid: 6396 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-45.5 - parent: 12 - - uid: 6397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-45.5 - parent: 12 - - uid: 6398 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-45.5 - parent: 12 - - uid: 6399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-45.5 - parent: 12 - - uid: 6400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-45.5 - parent: 12 - - uid: 6401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-45.5 - parent: 12 - - uid: 6402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-57.5 - parent: 12 - - uid: 6403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-57.5 - parent: 12 - - uid: 6404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-57.5 - parent: 12 - - uid: 6405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-57.5 - parent: 12 - - uid: 6406 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-57.5 - parent: 12 - - uid: 6407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-57.5 - parent: 12 - - uid: 6408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-59.5 - parent: 12 - - uid: 6409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-59.5 - parent: 12 - - uid: 6410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-59.5 - parent: 12 - - uid: 6411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-59.5 - parent: 12 - - uid: 6412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-59.5 - parent: 12 - - uid: 6413 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-59.5 - parent: 12 - - uid: 6415 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-57.5 - parent: 12 - - uid: 6416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-59.5 - parent: 12 - - uid: 6417 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-57.5 - parent: 12 - - uid: 6418 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-59.5 - parent: 12 - - uid: 6419 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-59.5 - parent: 12 - - uid: 6420 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-59.5 - parent: 12 - - uid: 6421 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-57.5 - parent: 12 - - uid: 6422 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-59.5 - parent: 12 - - uid: 6423 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-57.5 - parent: 12 - - uid: 6424 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-57.5 - parent: 12 - - uid: 6425 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-57.5 - parent: 12 - - uid: 6426 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-57.5 - parent: 12 - - uid: 6427 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-57.5 - parent: 12 - - uid: 6428 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-57.5 - parent: 12 - - uid: 6429 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-57.5 - parent: 12 - - uid: 6430 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-59.5 - parent: 12 - - uid: 6431 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-59.5 - parent: 12 - - uid: 6432 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-59.5 - parent: 12 - - uid: 6433 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-59.5 - parent: 12 - - uid: 6434 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-59.5 - parent: 12 - - uid: 6435 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-59.5 - parent: 12 - - uid: 6436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-57.5 - parent: 12 - - uid: 6437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-57.5 - parent: 12 - - uid: 6438 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-57.5 - parent: 12 - - uid: 6439 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-57.5 - parent: 12 - - uid: 6440 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-57.5 - parent: 12 - - uid: 6441 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-57.5 - parent: 12 - - uid: 6442 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-59.5 - parent: 12 - - uid: 6443 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-57.5 - parent: 12 - - uid: 6444 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-59.5 - parent: 12 - - uid: 6445 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-59.5 - parent: 12 - - uid: 6446 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-59.5 - parent: 12 - - uid: 6447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-59.5 - parent: 12 - - uid: 6448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-59.5 - parent: 12 - - uid: 6449 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-57.5 - parent: 12 - - uid: 6450 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-57.5 - parent: 12 - - uid: 6451 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-57.5 - parent: 12 - - uid: 6452 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-57.5 - parent: 12 - - uid: 6453 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-57.5 - parent: 12 - - uid: 6454 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-59.5 - parent: 12 - - uid: 6455 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-59.5 - parent: 12 - - uid: 6456 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-59.5 - parent: 12 - - uid: 6457 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-59.5 - parent: 12 - - uid: 6461 - components: - - type: Transform - 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: 10953 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-68.5 - parent: 12 - - uid: 13967 - components: - - type: Transform - pos: 41.5,71.5 - parent: 12 - - uid: 14281 - components: - - type: Transform - pos: 40.5,71.5 - parent: 12 - - uid: 14282 - components: - - type: Transform - pos: 39.5,71.5 - parent: 12 - - uid: 14283 - components: - - type: Transform - pos: 38.5,71.5 - parent: 12 - - uid: 14284 - components: - - type: Transform - pos: 37.5,71.5 - parent: 12 - - uid: 14285 - components: - - type: Transform - pos: 37.5,73.5 - parent: 12 - - uid: 14286 - components: - - type: Transform - pos: 38.5,73.5 - parent: 12 - - uid: 14287 - components: - - type: Transform - pos: 39.5,73.5 - parent: 12 - - uid: 14288 - components: - - type: Transform - pos: 40.5,73.5 - parent: 12 - - uid: 14289 - components: - - type: Transform - pos: 41.5,73.5 - parent: 12 - - uid: 14290 - components: - - type: Transform - pos: 43.5,73.5 - parent: 12 - - uid: 14292 - components: - - type: Transform - pos: 43.5,71.5 - parent: 12 - - uid: 14293 - components: - - type: Transform - pos: 44.5,73.5 - parent: 12 - - uid: 14295 - components: - - type: Transform - pos: 44.5,71.5 - parent: 12 - - uid: 14296 - components: - - type: Transform - pos: 45.5,73.5 - parent: 12 - - uid: 14298 - components: - - type: Transform - pos: 45.5,71.5 - parent: 12 - - uid: 14299 - components: - - type: Transform - pos: 46.5,73.5 - parent: 12 - - uid: 14301 - components: - - type: Transform - pos: 46.5,71.5 - parent: 12 - - uid: 14302 - components: - - type: Transform - pos: 47.5,73.5 - parent: 12 - - uid: 14304 - components: - - type: Transform - pos: 47.5,71.5 - parent: 12 - - uid: 14353 - components: - - type: Transform - pos: 53.5,73.5 - parent: 12 - - uid: 14354 - components: - - type: Transform - pos: 54.5,73.5 - parent: 12 - - uid: 14355 - components: - - type: Transform - pos: 55.5,73.5 - parent: 12 - - uid: 14356 - components: - - type: Transform - pos: 56.5,73.5 - parent: 12 - - uid: 14357 - components: - - type: Transform - pos: 57.5,73.5 - parent: 12 - - uid: 14358 - components: - - type: Transform - pos: 58.5,73.5 - parent: 12 - - uid: 14359 - components: - - type: Transform - pos: 58.5,71.5 - parent: 12 - - uid: 14360 - components: - - type: Transform - pos: 57.5,71.5 - parent: 12 - - uid: 14361 - components: - - type: Transform - pos: 56.5,71.5 - parent: 12 - - uid: 14362 - components: - - type: Transform - pos: 55.5,71.5 - parent: 12 - - uid: 14363 - components: - - type: Transform - pos: 54.5,71.5 - parent: 12 - - uid: 14364 - components: - - type: Transform - pos: 53.5,71.5 - parent: 12 - - uid: 14413 - components: - - type: Transform - pos: 53.5,76.5 - parent: 12 - - uid: 14414 - components: - - type: Transform - pos: 54.5,76.5 - parent: 12 - - uid: 14415 - components: - - type: Transform - pos: 55.5,76.5 - parent: 12 - - uid: 14416 - components: - - type: Transform - pos: 56.5,76.5 - parent: 12 - - uid: 14417 - components: - - type: Transform - pos: 57.5,76.5 - parent: 12 - - uid: 14418 - components: - - type: Transform - pos: 58.5,76.5 - parent: 12 - - uid: 14419 - components: - - type: Transform - pos: 58.5,78.5 - parent: 12 - - uid: 14420 - components: - - type: Transform - pos: 57.5,78.5 - parent: 12 - - uid: 14421 - components: - - type: Transform - pos: 56.5,78.5 - parent: 12 - - uid: 14422 - components: - - type: Transform - pos: 55.5,78.5 - parent: 12 - - uid: 14423 - components: - - type: Transform - pos: 54.5,78.5 - parent: 12 - - uid: 14424 - components: - - type: Transform - pos: 53.5,78.5 - parent: 12 - - uid: 14425 - components: - - type: Transform - pos: 49.5,76.5 - parent: 12 - - uid: 14426 - components: - - type: Transform - pos: 48.5,76.5 - parent: 12 - - uid: 14427 - components: - - type: Transform - pos: 47.5,76.5 - parent: 12 - - uid: 14428 - components: - - type: Transform - pos: 46.5,76.5 - parent: 12 - - uid: 14429 - components: - - type: Transform - pos: 45.5,76.5 - parent: 12 - - uid: 14430 - components: - - type: Transform - pos: 44.5,76.5 - parent: 12 - - uid: 14431 - components: - - type: Transform - pos: 44.5,78.5 - parent: 12 - - uid: 14432 - components: - - type: Transform - pos: 45.5,78.5 - parent: 12 - - uid: 14433 - components: - - type: Transform - pos: 46.5,78.5 - parent: 12 - - uid: 14434 - components: - - type: Transform - pos: 47.5,78.5 - parent: 12 - - uid: 14435 - components: - - type: Transform - pos: 48.5,78.5 - parent: 12 - - uid: 14436 - components: - - type: Transform - pos: 49.5,78.5 - parent: 12 - - uid: 18001 - components: - - type: Transform - pos: -67.5,42.5 - parent: 12 - - uid: 18002 - components: - - type: Transform - pos: -66.5,42.5 - parent: 12 - - uid: 18003 - components: - - type: Transform - pos: -65.5,42.5 - parent: 12 - - uid: 18004 - components: - - type: Transform - pos: -64.5,42.5 - parent: 12 - - uid: 18005 - components: - - type: Transform - pos: -63.5,42.5 - parent: 12 - - uid: 18006 - components: - - type: Transform - pos: -62.5,42.5 - parent: 12 - - uid: 18007 - components: - - type: Transform - pos: -61.5,42.5 - parent: 12 - - uid: 18008 - components: - - type: Transform - pos: -60.5,42.5 - parent: 12 - - uid: 18009 - components: - - type: Transform - pos: -59.5,42.5 - parent: 12 - - uid: 18010 - components: - - type: Transform - pos: -58.5,42.5 - parent: 12 - - uid: 18011 - components: - - type: Transform - pos: -58.5,44.5 - parent: 12 - - uid: 18012 - components: - - type: Transform - pos: -59.5,44.5 - parent: 12 - - uid: 18013 - components: - - type: Transform - pos: -60.5,44.5 - parent: 12 - - uid: 18014 - components: - - type: Transform - pos: -61.5,44.5 - parent: 12 - - uid: 18015 - components: - - type: Transform - pos: -62.5,44.5 - parent: 12 - - uid: 18016 - components: - - type: Transform - pos: -63.5,44.5 - parent: 12 - - uid: 18017 - components: - - type: Transform - pos: -64.5,44.5 - parent: 12 - - uid: 18018 - components: - - type: Transform - pos: -65.5,44.5 - parent: 12 - - uid: 18019 - components: - - type: Transform - pos: -66.5,44.5 - parent: 12 - - uid: 18020 - components: - - type: Transform - pos: -67.5,44.5 - parent: 12 - - uid: 18021 - components: - - type: Transform - pos: -58.5,47.5 - parent: 12 - - uid: 18022 - components: - - type: Transform - pos: -59.5,47.5 - parent: 12 - - uid: 18023 - components: - - type: Transform - pos: -60.5,47.5 - parent: 12 - - uid: 18024 - components: - - type: Transform - pos: -61.5,47.5 - parent: 12 - - uid: 18025 - components: - - type: Transform - pos: -62.5,47.5 - parent: 12 - - uid: 18026 - components: - - type: Transform - pos: -63.5,47.5 - parent: 12 - - uid: 18027 - components: - - type: Transform - pos: -64.5,47.5 - parent: 12 - - uid: 18028 - components: - - type: Transform - pos: -65.5,47.5 - parent: 12 - - uid: 18029 - components: - - type: Transform - pos: -66.5,47.5 - parent: 12 - - uid: 18030 - components: - - type: Transform - pos: -67.5,47.5 - parent: 12 - - uid: 18031 - components: - - type: Transform - pos: -67.5,49.5 - parent: 12 - - uid: 18032 - components: - - type: Transform - pos: -66.5,49.5 - parent: 12 - - uid: 18033 - components: - - type: Transform - pos: -65.5,49.5 - parent: 12 - - uid: 18034 - components: - - type: Transform - pos: -64.5,49.5 - parent: 12 - - uid: 18035 - components: - - type: Transform - pos: -63.5,49.5 - parent: 12 - - uid: 18036 - components: - - type: Transform - pos: -62.5,49.5 - parent: 12 - - uid: 18037 - components: - - type: Transform - pos: -61.5,49.5 - parent: 12 - - uid: 18038 - components: - - type: Transform - pos: -60.5,49.5 - parent: 12 - - uid: 18039 - components: - - type: Transform - pos: -59.5,49.5 - parent: 12 - - uid: 18040 - components: - - type: Transform - pos: -58.5,49.5 - parent: 12 - - uid: 18131 - components: - - type: Transform - pos: -58.5,54.5 - parent: 12 - - uid: 18132 - components: - - type: Transform - pos: -67.5,52.5 - parent: 12 - - uid: 18133 - components: - - type: Transform - pos: -66.5,52.5 - parent: 12 - - uid: 18134 - components: - - type: Transform - pos: -65.5,52.5 - parent: 12 - - uid: 18135 - components: - - type: Transform - pos: -64.5,52.5 - parent: 12 - - uid: 18136 - components: - - type: Transform - pos: -63.5,52.5 - parent: 12 - - uid: 18137 - components: - - type: Transform - pos: -62.5,52.5 - parent: 12 - - uid: 18138 - components: - - type: Transform - pos: -61.5,52.5 - parent: 12 - - uid: 18139 - components: - - type: Transform - pos: -60.5,52.5 - parent: 12 - - uid: 18140 - components: - - type: Transform - pos: -59.5,52.5 - parent: 12 - - uid: 18141 - components: - - type: Transform - pos: -58.5,52.5 - parent: 12 - - uid: 18142 - components: - - type: Transform - pos: -59.5,54.5 - parent: 12 - - uid: 18143 - components: - - type: Transform - pos: -60.5,54.5 - parent: 12 - - uid: 18144 - components: - - type: Transform - pos: -61.5,54.5 - parent: 12 - - uid: 18145 - components: - - type: Transform - pos: -62.5,54.5 - parent: 12 - - uid: 18146 - components: - - type: Transform - pos: -63.5,54.5 - parent: 12 - - uid: 18147 - components: - - type: Transform - pos: -64.5,54.5 - parent: 12 - - uid: 18148 - components: - - type: Transform - pos: -65.5,54.5 - parent: 12 - - uid: 18149 - components: - - type: Transform - pos: -66.5,54.5 - parent: 12 - - uid: 18150 - components: - - 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: 25581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-52.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: 30181 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-54.5 - parent: 12 - - uid: 31009 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-47.5 - parent: 12 - - uid: 31010 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-45.5 - parent: 12 - - uid: 31011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-44.5 - parent: 12 - - uid: 31012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-45.5 - parent: 12 - - uid: 31014 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-43.5 - parent: 12 - - uid: 31040 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-43.5 - parent: 12 -- proto: SolarPanelBroken - entities: - - uid: 2401 - components: - - type: Transform - pos: -38.5,-66.5 - parent: 12 - - uid: 10821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-53.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: 30306 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-44.5 - parent: 12 - - uid: 30437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-54.5 - parent: 12 - - uid: 31003 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-48.5 - parent: 12 - - uid: 31004 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-48.5 - parent: 12 - - uid: 31005 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-46.5 - parent: 12 - - uid: 31006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-47.5 - parent: 12 - - uid: 31007 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-46.5 - parent: 12 - - uid: 31037 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-52.5 - parent: 12 -- proto: SolarTracker - entities: - - uid: 6356 - components: - - type: Transform - pos: 58.5,-54.5 - parent: 12 - - uid: 14352 - components: - - type: Transform - pos: 63.5,72.5 - parent: 12 - - uid: 18068 - components: - - type: Transform - pos: -71.5,48.5 - parent: 12 - - uid: 28242 - components: - - type: Transform - pos: -25.5,-69.5 - parent: 12 -- proto: SolarTrackerElectronics - entities: - - uid: 13308 - components: - - type: Transform - pos: -53.441116,-47.48533 - parent: 12 -- proto: SolidSecretDoor - entities: - - uid: 3147 - components: - - type: Transform - pos: -53.5,55.5 - parent: 12 - - uid: 28266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-12.5 - parent: 12 - - uid: 30884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,61.5 - parent: 12 -- proto: SpaceCash - entities: - - uid: 22668 - components: - - type: Transform - pos: 11.845884,57.5659 - parent: 12 - - uid: 22678 - components: - - type: Transform - pos: 11.196043,57.39868 - parent: 12 - - uid: 31329 - components: - - type: Transform - pos: 2.4447455,-65.324905 - parent: 12 -- proto: SpaceCash10 - entities: - - uid: 22663 - components: - - type: Transform - pos: 12.260074,56.624477 - parent: 12 - - uid: 22664 - components: - - type: Transform - pos: 11.142535,56.4864 - parent: 12 - - uid: 22665 - components: - - type: Transform - pos: 10.778301,56.649582 - parent: 12 - - uid: 22666 - components: - - type: Transform - pos: 11.557009,57.754185 - parent: 12 - - type: Stack - count: 110 - - uid: 31327 - components: - - type: Transform - pos: 2.3795156,-65.65128 - parent: 12 - - uid: 31328 - components: - - type: Transform - pos: 2.6893578,-65.50442 - parent: 12 -- proto: SpaceCash100 - entities: - - uid: 31330 - components: - - type: Transform - pos: 2.5752048,-65.120926 - parent: 12 -- proto: SpacemenFigureSpawner - entities: - - uid: 30383 - components: - - type: Transform - pos: -13.5,72.5 - parent: 12 -- proto: SpaceVillainArcadeFilled - entities: - - uid: 12223 - components: - - type: Transform - pos: 49.5,16.5 - parent: 12 - - uid: 14995 - components: - - type: Transform - pos: 19.5,40.5 - parent: 12 - - uid: 14996 - components: - - type: Transform - pos: 24.5,40.5 - parent: 12 - - uid: 16934 - components: - - type: Transform - pos: 0.5,49.5 - parent: 12 - - uid: 16935 - components: - - type: Transform - pos: 5.5,50.5 - parent: 12 - - uid: 16936 - components: - - type: Transform - pos: 0.5,51.5 - parent: 12 - - uid: 25004 - components: - - type: Transform - pos: 8.5,68.5 - parent: 12 -- proto: SpawnMechRipley - entities: - - uid: 30400 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-21.5 - parent: 12 -- proto: SpawnMobAlexander - entities: - - uid: 23511 - components: - - type: Transform - pos: 36.5,53.5 - parent: 12 -- proto: SpawnMobBandito - entities: - - uid: 21962 - components: - - type: Transform - pos: -39.5,-20.5 - parent: 12 -- proto: SpawnMobBee - entities: - - uid: 22195 - components: - - type: Transform - pos: -2.5,28.5 - parent: 12 - - uid: 22196 - components: - - type: Transform - pos: -0.5,26.5 - parent: 12 - - uid: 22197 - components: - - type: Transform - pos: 0.5,28.5 - parent: 12 -- proto: SpawnMobButterfly - entities: - - uid: 25963 - components: - - type: Transform - pos: 69.5,54.5 - parent: 12 - - uid: 25964 - components: - - type: Transform - pos: 76.5,51.5 - parent: 12 - - uid: 25965 - components: - - type: Transform - pos: 71.5,44.5 - parent: 12 -- proto: SpawnMobCat - entities: - - uid: 8483 - components: - - type: Transform - pos: -10.5,-39.5 - parent: 12 -- proto: SpawnMobCatGeneric - entities: - - uid: 31493 - components: - - type: Transform - pos: 14.5,-31.5 - parent: 12 - - uid: 31494 - components: - - type: Transform - pos: 17.5,-30.5 - parent: 12 -- proto: SpawnMobCatKitten - entities: - - uid: 31492 - components: - - type: Transform - pos: 16.5,-32.5 - parent: 12 -- proto: SpawnMobCleanBot - entities: - - uid: 4295 - components: - - type: Transform - pos: 6.5,-42.5 - parent: 12 -- proto: SpawnMobCorgi - entities: - - uid: 18867 - components: - - type: Transform - pos: -40.5,23.5 - parent: 12 -- proto: SpawnMobCow - entities: - - uid: 23513 - components: - - type: Transform - pos: 55.5,57.5 - parent: 12 -- proto: SpawnMobCrabAtmos - entities: - - uid: 25674 - components: - - type: Transform - pos: 16.5,-6.5 - parent: 12 -- proto: SpawnMobFoxRenault - entities: - - uid: 5159 - components: - - type: Transform - pos: -50.5,21.5 - parent: 12 -- proto: SpawnMobGoat - entities: - - uid: 23176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,52.5 - parent: 12 -- proto: SpawnMobGorilla - entities: - - uid: 6105 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-13.5 - parent: 12 - - uid: 12980 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-12.5 - parent: 12 -- proto: SpawnMobLizard - entities: - - uid: 4170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,20.5 - parent: 12 - - uid: 6714 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,22.5 - parent: 12 -- proto: SpawnMobMcGriff - entities: - - uid: 20839 - components: - - type: Transform - pos: -39.5,50.5 - parent: 12 -- proto: SpawnMobMedibot - entities: - - uid: 4242 - components: - - type: Transform - pos: -1.5,-42.5 - parent: 12 - - uid: 24264 - components: - - type: Transform - pos: 0.5,-46.5 - parent: 12 -- proto: SpawnMobMonkey - entities: - - uid: 2982 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-56.5 - parent: 12 - - uid: 9656 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-58.5 - parent: 12 - - uid: 9990 - components: - - type: Transform - pos: -11.5,20.5 - parent: 12 -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 23510 - components: - - type: Transform - pos: 26.5,50.5 - parent: 12 -- proto: SpawnMobMouse - entities: - - uid: 7533 - components: - - type: Transform - pos: 55.5,-7.5 - parent: 12 - - uid: 9748 - components: - - type: Transform - pos: 46.5,24.5 - parent: 12 - - uid: 12317 - components: - - type: Transform - pos: 49.5,-33.5 - parent: 12 - - uid: 23530 - components: - - type: Transform - pos: -19.5,49.5 - parent: 12 - - uid: 23533 - components: - - type: Transform - pos: 12.5,61.5 - parent: 12 - - uid: 24012 - components: - - type: Transform - pos: 6.5,-36.5 - parent: 12 - - uid: 26607 - components: - - type: Transform - pos: 30.5,11.5 - parent: 12 - - uid: 28557 - components: - - type: Transform - pos: -44.5,-15.5 - parent: 12 - - uid: 31106 - components: - - type: Transform - pos: -14.5,-68.5 - parent: 12 -- proto: SpawnMobParrot - entities: - - uid: 6237 - components: - - type: Transform - pos: 26.5,-23.5 - parent: 12 - - uid: 25584 - components: - - type: Transform - pos: 28.5,-32.5 - parent: 12 - - uid: 25607 - components: - - type: Transform - pos: 26.5,-31.5 - parent: 12 -- proto: SpawnMobPenguin - entities: - - uid: 27110 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-14.5 - parent: 12 -- proto: SpawnMobPossumMorty - entities: - - uid: 8913 - components: - - type: Transform - pos: 7.5,-39.5 - parent: 12 -- proto: SpawnMobRaccoonMorticia - entities: - - uid: 22004 - components: - - type: Transform - pos: 49.5,-7.5 - parent: 12 -- proto: SpawnMobShiva - entities: - - uid: 24258 - components: - - type: Transform - pos: -42.5,35.5 - parent: 12 -- proto: SpawnMobSlothPaperwork - entities: - - uid: 30398 - components: - - type: Transform - pos: -15.5,72.5 - parent: 12 -- proto: SpawnMobSmile - entities: - - uid: 1950 - components: - - type: Transform - pos: -31.5,-26.5 - parent: 12 -- proto: SpawnMobWalter - entities: - - uid: 1861 - components: - - type: Transform - pos: -30.5,-41.5 - parent: 12 -- proto: SpawnPointAtmos - entities: - - uid: 22226 - components: - - type: Transform - pos: 30.5,2.5 - parent: 12 - - uid: 29819 - components: - - type: Transform - pos: 30.5,3.5 - parent: 12 - - uid: 29868 - components: - - type: Transform - pos: 30.5,4.5 - parent: 12 -- proto: SpawnPointBartender - entities: - - uid: 22817 - components: - - type: Transform - pos: 23.5,46.5 - parent: 12 - - uid: 22818 - components: - - type: Transform - pos: 31.5,50.5 - parent: 12 -- proto: SpawnPointBorg - entities: - - uid: 9662 - components: - - type: Transform - pos: -23.5,-30.5 - parent: 12 - - uid: 12110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-28.5 - parent: 12 - - uid: 12138 - components: - - type: Transform - pos: -24.5,-30.5 - parent: 12 -- proto: SpawnPointBotanist - entities: - - uid: 24119 - components: - - type: Transform - pos: 69.5,47.5 - parent: 12 - - uid: 24120 - components: - - type: Transform - pos: 69.5,50.5 - parent: 12 - - uid: 24121 - components: - - type: Transform - pos: 69.5,50.5 - parent: 12 - - uid: 24122 - components: - - type: Transform - pos: 55.5,48.5 - parent: 12 - - uid: 24123 - components: - - type: Transform - pos: 76.5,48.5 - parent: 12 - - uid: 24139 - components: - - type: Transform - pos: 59.5,43.5 - parent: 12 - - uid: 24297 - components: - - type: Transform - pos: 60.5,43.5 - parent: 12 - - uid: 25867 - components: - - type: Transform - pos: 61.5,43.5 - parent: 12 -- proto: SpawnPointBoxer - entities: - - uid: 24260 - components: - - type: Transform - pos: 11.5,47.5 - parent: 12 - - uid: 24261 - components: - - type: Transform - pos: 15.5,51.5 - parent: 12 -- proto: SpawnPointCaptain - entities: - - uid: 27323 - components: - - type: Transform - pos: -51.5,20.5 - parent: 12 -- proto: SpawnPointCargoTechnician - entities: - - uid: 4256 - components: - - type: Transform - pos: 61.5,-24.5 - parent: 12 - - uid: 8510 - components: - - type: Transform - pos: 53.5,-19.5 - parent: 12 - - uid: 8511 - components: - - type: Transform - pos: 49.5,-19.5 - parent: 12 - - uid: 8512 - components: - - type: Transform - pos: 49.5,-15.5 - parent: 12 - - uid: 26092 - components: - - type: Transform - pos: 63.5,-24.5 - parent: 12 - - uid: 26166 - components: - - type: Transform - pos: 62.5,-24.5 - parent: 12 -- proto: SpawnPointChaplain - entities: - - uid: 13086 - components: - - type: Transform - pos: 44.5,28.5 - parent: 12 -- proto: SpawnPointChef - entities: - - uid: 24262 - components: - - type: Transform - pos: 29.5,55.5 - parent: 12 - - uid: 24263 - components: - - type: Transform - pos: 26.5,58.5 - parent: 12 -- proto: SpawnPointChemist - entities: - - uid: 2295 - components: - - type: Transform - pos: -27.5,-42.5 - parent: 12 - - uid: 2532 - components: - - type: Transform - pos: -34.5,-44.5 - parent: 12 - - uid: 5924 - components: - - type: Transform - pos: -32.5,-42.5 - parent: 12 -- proto: SpawnPointChiefEngineer - entities: - - uid: 5494 - components: - - type: Transform - pos: 26.5,-22.5 - parent: 12 -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 2578 - components: - - type: Transform - pos: -11.5,-38.5 - parent: 12 -- proto: SpawnPointClown - entities: - - uid: 22697 - components: - - type: Transform - pos: 3.5,59.5 - parent: 12 -- proto: SpawnPointDetective - entities: - - uid: 13646 - components: - - type: Transform - pos: 29.5,30.5 - parent: 12 -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 27324 - components: - - type: Transform - pos: -43.5,22.5 - parent: 12 -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 20840 - components: - - type: Transform - pos: -43.5,34.5 - parent: 12 -- proto: SpawnPointJanitor - entities: - - uid: 4117 - components: - - type: Transform - pos: 7.5,-51.5 - parent: 12 - - uid: 12254 - components: - - type: Transform - pos: 45.5,17.5 - parent: 12 - - uid: 12255 - components: - - type: Transform - pos: 45.5,20.5 - parent: 12 -- proto: SpawnPointLawyer - entities: - - uid: 30266 - components: - - type: Transform - pos: -25.5,-0.5 - parent: 12 - - uid: 30268 - components: - - type: Transform - pos: -22.5,0.5 - parent: 12 -- proto: SpawnPointLibrarian - entities: - - uid: 19795 - components: - - type: Transform - pos: -14.5,72.5 - parent: 12 -- proto: SpawnPointMedicalDoctor - entities: - - uid: 2838 - components: - - type: Transform - pos: -6.5,-51.5 - parent: 12 - - uid: 4048 - components: - - type: Transform - pos: -1.5,-46.5 - parent: 12 - - uid: 4049 - components: - - type: Transform - pos: -5.5,-42.5 - parent: 12 - - uid: 4050 - components: - - type: Transform - pos: -9.5,-42.5 - parent: 12 - - uid: 4051 - components: - - type: Transform - pos: -15.5,-42.5 - parent: 12 - - uid: 4052 - components: - - type: Transform - pos: -21.5,-38.5 - parent: 12 -- proto: SpawnPointMedicalIntern - entities: - - uid: 2505 - components: - - type: Transform - pos: -22.5,-42.5 - parent: 12 - - uid: 2506 - components: - - type: Transform - pos: -20.5,-42.5 - parent: 12 -- proto: SpawnPointMime - entities: - - uid: 22705 - components: - - type: Transform - pos: 3.5,58.5 - parent: 12 -- proto: SpawnPointMusician - entities: - - uid: 23902 - components: - - type: Transform - pos: 21.5,27.5 - parent: 12 -- proto: SpawnPointObserver - entities: - - uid: 22206 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 12 -- proto: SpawnPointParamedic - entities: - - uid: 2493 - components: - - type: Transform - pos: -20.5,-46.5 - parent: 12 -- proto: SpawnPointPassenger - entities: - - uid: 21631 - components: - - type: Transform - pos: 30.5,46.5 - parent: 12 - - uid: 21632 - components: - - type: Transform - pos: 33.5,46.5 - parent: 12 - - uid: 21633 - components: - - type: Transform - pos: 45.5,48.5 - parent: 12 - - uid: 21634 - components: - - type: Transform - pos: 47.5,48.5 - parent: 12 - - uid: 21635 - components: - - type: Transform - pos: 47.5,50.5 - parent: 12 - - uid: 21636 - components: - - type: Transform - pos: 45.5,50.5 - parent: 12 - - uid: 21637 - components: - - type: Transform - pos: 45.5,52.5 - parent: 12 - - uid: 21638 - components: - - type: Transform - pos: 47.5,52.5 - parent: 12 -- proto: SpawnPointPsychologist - entities: - - uid: 2329 - components: - - type: Transform - pos: -21.5,-61.5 - parent: 12 -- proto: SpawnPointQuartermaster - entities: - - uid: 8478 - components: - - type: Transform - pos: 48.5,-7.5 - parent: 12 -- proto: SpawnPointReporter - entities: - - uid: 17106 - components: - - type: Transform - pos: 12.5,35.5 - parent: 12 - - uid: 21639 - components: - - type: Transform - pos: 13.5,37.5 - parent: 12 -- proto: SpawnPointResearchAssistant - entities: - - uid: 2069 - components: - - type: Transform - pos: -43.5,-38.5 - parent: 12 - - uid: 2070 - components: - - type: Transform - pos: -45.5,-36.5 - parent: 12 -- proto: SpawnPointResearchDirector - entities: - - uid: 1759 - components: - - type: Transform - pos: -37.5,-22.5 - parent: 12 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 8418 - components: - - type: Transform - pos: 60.5,-30.5 - parent: 12 - - uid: 8742 - components: - - type: Transform - pos: 60.5,-29.5 - parent: 12 - - uid: 8743 - components: - - type: Transform - pos: 60.5,-28.5 - parent: 12 -- proto: SpawnPointScientist - entities: - - uid: 2058 - components: - - type: Transform - pos: -25.5,-20.5 - parent: 12 - - uid: 2059 - components: - - type: Transform - pos: -31.5,-20.5 - parent: 12 - - uid: 2060 - components: - - type: Transform - pos: -45.5,-24.5 - parent: 12 - - uid: 2061 - components: - - type: Transform - pos: -45.5,-28.5 - parent: 12 - - uid: 2062 - components: - - type: Transform - pos: -43.5,-36.5 - parent: 12 - - uid: 2063 - components: - - type: Transform - pos: -41.5,-35.5 - parent: 12 - - uid: 2064 - components: - - type: Transform - pos: -45.5,-34.5 - parent: 12 - - uid: 12353 - components: - - type: Transform - pos: -24.5,-28.5 - parent: 12 -- proto: SpawnPointSecurityCadet - entities: - - uid: 11302 - components: - - type: Transform - pos: -33.5,41.5 - parent: 12 - - uid: 21618 - components: - - type: Transform - pos: -37.5,36.5 - parent: 12 - - uid: 21619 - components: - - type: Transform - pos: -33.5,37.5 - parent: 12 - - uid: 21620 - components: - - type: Transform - pos: -36.5,39.5 - parent: 12 -- proto: SpawnPointSecurityOfficer - entities: - - uid: 21622 - components: - - type: Transform - pos: -43.5,39.5 - parent: 12 - - uid: 21623 - components: - - type: Transform - pos: -43.5,41.5 - parent: 12 - - uid: 21624 - components: - - type: Transform - pos: -43.5,42.5 - parent: 12 - - uid: 21625 - components: - - type: Transform - pos: -37.5,37.5 - parent: 12 - - uid: 21626 - components: - - type: Transform - pos: -33.5,38.5 - parent: 12 - - uid: 25536 - components: - - type: Transform - pos: -43.5,38.5 - parent: 12 -- proto: SpawnPointServiceWorker - entities: - - uid: 21627 - components: - - type: Transform - pos: 19.5,42.5 - parent: 12 - - uid: 21628 - components: - - type: Transform - pos: 24.5,42.5 - parent: 12 - - uid: 21629 - components: - - type: Transform - pos: 36.5,50.5 - parent: 12 - - uid: 21630 - components: - - type: Transform - pos: 36.5,56.5 - parent: 12 -- proto: SpawnPointStationEngineer - entities: - - uid: 5501 - components: - - type: Transform - pos: 15.5,-21.5 - parent: 12 - - uid: 6795 - components: - - type: Transform - pos: 31.5,-20.5 - parent: 12 - - uid: 6796 - components: - - type: Transform - pos: 31.5,-21.5 - parent: 12 - - uid: 6797 - components: - - type: Transform - pos: 31.5,-19.5 - parent: 12 - - uid: 19270 - components: - - type: Transform - pos: 13.5,-23.5 - parent: 12 -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 4856 - components: - - type: Transform - pos: 30.5,-22.5 - parent: 12 - - uid: 9074 - components: - - type: Transform - pos: 30.5,-23.5 - parent: 12 - - uid: 9075 - components: - - type: Transform - pos: 30.5,-21.5 - parent: 12 -- proto: SpawnPointWarden - entities: - - uid: 27027 - components: - - type: Transform - pos: -39.5,55.5 - parent: 12 -- proto: SpawnPointZookeeper - entities: - - uid: 31581 - components: - - type: Transform - pos: 12.5,-34.5 - parent: 12 -- proto: SpawnVendingMachineRestockFoodDrink - entities: - - uid: 23659 - components: - - type: Transform - pos: 36.5,57.5 - parent: 12 - - uid: 23805 - components: - - type: Transform - pos: -7.5,-23.5 - parent: 12 -- proto: Spear - entities: - - uid: 31256 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -8.433574,-66.54101 - parent: 12 -- proto: Spoon - entities: - - uid: 23545 - components: - - type: Transform - pos: 37.743656,53.472214 - parent: 12 - - uid: 23548 - components: - - type: Transform - pos: 37.262585,53.09714 - parent: 12 - - uid: 23552 - components: - - type: Transform - pos: 37.5072,53.260216 - parent: 12 -- proto: SpoonPlastic - entities: - - uid: 3076 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 30.459148,25.541853 - parent: 12 - - uid: 21387 - components: - - type: Transform - pos: -26.28964,48.59712 - parent: 12 -- proto: SprayBottle - entities: - - uid: 12269 - components: - - type: Transform - pos: 43.738167,16.609013 - parent: 12 -- proto: SprayBottleSpaceCleaner - entities: - - uid: 12267 - components: - - type: Transform - pos: 43.261173,16.33994 - parent: 12 - - uid: 12268 - components: - - type: Transform - pos: 43.530247,16.3644 - parent: 12 -- proto: SprayBottleWater - entities: - - uid: 13269 - components: - - type: Transform - pos: 37.766838,27.726664 - parent: 12 - - uid: 23562 - components: - - type: Transform - pos: 42.576344,53.246014 - parent: 12 - - uid: 31143 - components: - - type: Transform - rot: -31.415926535897945 rad - pos: -38.508156,-58.411694 - parent: 12 - - uid: 31736 - components: - - type: Transform - parent: 3959 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SprayPainter - entities: - - uid: 5169 - components: - - type: Transform - pos: 8.473848,-10.14049 - parent: 12 - - uid: 30003 - components: - - type: Transform - pos: 11.581013,-19.352137 - parent: 12 -- proto: StairDark - entities: - - uid: 4306 - components: - - type: Transform - pos: -16.5,-18.5 - parent: 12 - - uid: 4307 - components: - - type: Transform - pos: -15.5,-18.5 - parent: 12 - - uid: 4308 - components: - - type: Transform - pos: -14.5,-18.5 - parent: 12 - - uid: 6817 - components: - - type: Transform - pos: 31.5,-49.5 - parent: 12 - - uid: 6818 - components: - - type: Transform - pos: 30.5,-49.5 - parent: 12 - - uid: 6820 - components: - - type: Transform - pos: 13.5,-49.5 - parent: 12 - - uid: 6821 - components: - - type: Transform - pos: 12.5,-49.5 - parent: 12 - - uid: 9500 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,62.5 - parent: 12 - - uid: 11270 - components: - - type: Transform - pos: -35.5,45.5 - parent: 12 - - uid: 11521 - components: - - type: Transform - pos: -34.5,45.5 - parent: 12 - - uid: 13050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,62.5 - parent: 12 - - uid: 15894 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-7.5 - parent: 12 - - uid: 16768 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-7.5 - parent: 12 - - uid: 16811 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-7.5 - parent: 12 - - uid: 16812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 12 - - uid: 16813 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-6.5 - parent: 12 - - uid: 17589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,24.5 - parent: 12 - - uid: 17590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,25.5 - parent: 12 - - uid: 17591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,26.5 - parent: 12 - - uid: 17592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,31.5 - parent: 12 - - uid: 17593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,32.5 - parent: 12 - - uid: 17594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,33.5 - parent: 12 - - uid: 17838 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,59.5 - parent: 12 - - uid: 21969 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-7.5 - parent: 12 - - uid: 23180 - components: - - type: Transform - pos: 20.5,63.5 - parent: 12 - - uid: 23181 - components: - - type: Transform - pos: 19.5,63.5 - parent: 12 - - uid: 23182 - components: - - type: Transform - pos: 18.5,63.5 - parent: 12 - - uid: 23183 - components: - - type: Transform - pos: 17.5,63.5 - parent: 12 - - uid: 23184 - components: - - type: Transform - pos: 16.5,63.5 - parent: 12 - - uid: 23499 - components: - - type: Transform - pos: 25.5,40.5 - parent: 12 - - uid: 23500 - components: - - type: Transform - pos: 22.5,40.5 - parent: 12 - - uid: 23501 - components: - - type: Transform - pos: 20.5,40.5 - parent: 12 - - uid: 23502 - components: - - type: Transform - pos: 21.5,40.5 - parent: 12 - - uid: 23503 - components: - - type: Transform - pos: 17.5,40.5 - parent: 12 - - uid: 26481 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-10.5 - parent: 12 - - uid: 28766 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-1.5 - parent: 12 - - uid: 28767 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-0.5 - parent: 12 -- proto: Stairs - entities: - - uid: 1785 - components: - - type: Transform - pos: -31.5,-36.5 - parent: 12 - - uid: 1786 - components: - - type: Transform - pos: -30.5,-36.5 - parent: 12 - - uid: 1787 - components: - - type: Transform - pos: -29.5,-36.5 - parent: 12 - - uid: 1789 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-20.5 - parent: 12 - - uid: 1790 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-21.5 - parent: 12 - - uid: 4734 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-20.5 - parent: 12 - - uid: 19537 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-19.5 - parent: 12 - - uid: 24178 - components: - - type: Transform - pos: 68.5,46.5 - parent: 12 - - uid: 24179 - components: - - type: Transform - pos: 69.5,46.5 - parent: 12 - - uid: 24180 - components: - - type: Transform - pos: 70.5,46.5 - parent: 12 - - uid: 24181 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,51.5 - parent: 12 - - uid: 24182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,51.5 - parent: 12 - - uid: 24183 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,51.5 - parent: 12 -- proto: StairStage - entities: - - uid: 1788 - components: - - type: Transform - pos: -38.5,-36.5 - parent: 12 - - uid: 1791 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-39.5 - parent: 12 - - uid: 9745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-55.5 - parent: 12 -- proto: StairStageDark - entities: - - uid: 3142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-59.5 - parent: 12 - - uid: 10400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-3.5 - parent: 12 - - uid: 10401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-6.5 - parent: 12 - - uid: 12257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,21.5 - parent: 12 - - uid: 12286 - components: - - type: Transform - pos: 49.5,23.5 - parent: 12 - - uid: 22610 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,50.5 - parent: 12 - - uid: 23179 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,49.5 - parent: 12 -- proto: StairStageWhite - entities: - - uid: 2469 - components: - - type: Transform - pos: -22.5,-40.5 - parent: 12 - - uid: 2470 - components: - - type: Transform - pos: -20.5,-40.5 - parent: 12 - - uid: 3138 - components: - - type: Transform - pos: -3.5,-44.5 - parent: 12 - - uid: 3139 - components: - - type: Transform - pos: 0.5,-44.5 - parent: 12 -- proto: StairWhite - entities: - - uid: 3140 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-46.5 - parent: 12 - - uid: 3141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-47.5 - parent: 12 -- proto: StairWood - entities: - - uid: 3779 - components: - - type: Transform - pos: -20.5,-53.5 - parent: 12 - - uid: 3780 - components: - - type: Transform - pos: -19.5,-53.5 - parent: 12 -- proto: StasisBed - entities: - - uid: 28809 - components: - - type: Transform - pos: -13.5,-51.5 - parent: 12 -- proto: StationAiUploadComputer - entities: - - uid: 2244 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-13.5 - parent: 12 - - uid: 4262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-13.5 - parent: 12 -- proto: StationAnchor - entities: - - uid: 25417 - components: - - type: Transform - pos: 48.5,5.5 - parent: 12 -- proto: StationEfficiencyCircuitBoard - entities: - - uid: 28857 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 3.511601,-12.378527 - parent: 12 -- proto: StationMap - entities: - - uid: 372 - components: - - type: Transform - pos: 29.5,-24.5 - parent: 12 - - uid: 2820 - components: - - type: Transform - pos: -18.5,6.5 - parent: 12 - - uid: 2835 - components: - - type: Transform - pos: -13.5,-8.5 - parent: 12 - - uid: 2840 - components: - - type: Transform - pos: 50.5,64.5 - parent: 12 - - uid: 2877 - components: - - type: Transform - pos: -11.5,-25.5 - parent: 12 - - uid: 2884 - components: - - type: Transform - pos: 36.5,44.5 - parent: 12 - - uid: 3521 - components: - - type: Transform - pos: 6.5,-24.5 - parent: 12 - - uid: 4316 - components: - - type: Transform - pos: 41.5,20.5 - parent: 12 - - uid: 4318 - components: - - type: Transform - pos: 0.5,46.5 - parent: 12 - - uid: 4373 - components: - - type: Transform - pos: -26.5,35.5 - parent: 12 - - uid: 4568 - components: - - type: Transform - pos: -21.5,-1.5 - parent: 12 - - uid: 4731 - components: - - type: Transform - pos: -14.5,29.5 - parent: 12 - - uid: 7569 - components: - - type: Transform - pos: -2.5,-5.5 - parent: 12 - - uid: 9393 - components: - - type: Transform - pos: 10.5,76.5 - parent: 12 - - uid: 16345 - components: - - type: Transform - pos: 56.5,2.5 - parent: 12 - - uid: 17608 - components: - - type: Transform - pos: 26.5,76.5 - parent: 12 - - uid: 19460 - components: - - 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 - pos: 41.5,-25.5 - parent: 12 - - uid: 30465 - components: - - type: Transform - pos: 42.5,9.5 - parent: 12 -- proto: StationMapBroken - entities: - - uid: 30466 - components: - - type: Transform - pos: 41.5,-6.5 - parent: 12 -- proto: SteelBench - entities: - - uid: 3135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-47.5 - parent: 12 - - uid: 3136 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-47.5 - parent: 12 - - uid: 3137 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-47.5 - parent: 12 -- proto: Stool - entities: - - uid: 1081 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.443993,16.6724 - parent: 12 - - uid: 2240 - components: - - type: Transform - pos: 2.510712,-12.435207 - parent: 12 - - uid: 2241 - components: - - type: Transform - pos: -3.517066,-12.428263 - parent: 12 - - uid: 9097 - components: - - type: Transform - pos: 42.48165,-31.537077 - parent: 12 - - uid: 9098 - components: - - type: Transform - pos: 44.528526,-31.458952 - parent: 12 - - uid: 9435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.449959,2.68897 - parent: 12 - - uid: 11438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,38.5 - parent: 12 - - uid: 11498 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.550139,2.7052777 - parent: 12 - - uid: 12652 - components: - - type: Transform - anchored: True - rot: -1.5707963267948966 rad - pos: 50.5,30.5 - parent: 12 - - type: Physics - bodyType: Static - - uid: 12653 - components: - - type: Transform - anchored: True - rot: 1.5707963267948966 rad - pos: 48.5,30.5 - parent: 12 - - type: Physics - bodyType: Static - - uid: 12654 - components: - - type: Transform - anchored: True - pos: 44.5,30.5 - parent: 12 - - type: Physics - bodyType: Static - - uid: 12656 - components: - - type: Transform - pos: 47.5,33.5 - parent: 12 - - uid: 13264 - components: - - type: Transform - pos: 43.618725,30.520502 - parent: 12 - - uid: 13970 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,38.5 - parent: 12 - - uid: 15790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,31.5 - parent: 12 - - uid: 15791 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,31.5 - parent: 12 - - uid: 15792 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,31.5 - parent: 12 - - uid: 16374 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,35.5 - parent: 12 - - uid: 16513 - components: - - type: Transform - pos: -21.5,13.5 - parent: 12 - - uid: 16514 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,5.5 - parent: 12 - - uid: 16852 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,34.5 - parent: 12 - - uid: 16854 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,33.5 - parent: 12 - - uid: 16857 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,36.5 - parent: 12 - - uid: 16865 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,39.5 - parent: 12 - - uid: 17114 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,49.5 - parent: 12 - - uid: 17115 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,49.5 - parent: 12 - - uid: 17116 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,52.5 - parent: 12 - - uid: 17117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,52.5 - parent: 12 - - uid: 17118 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,52.5 - parent: 12 - - uid: 17437 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,40.5 - parent: 12 - - uid: 21348 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,43.5 - parent: 12 - - uid: 21349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,44.5 - parent: 12 - - uid: 21350 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,45.5 - parent: 12 - - uid: 21351 - components: - - type: Transform - pos: -28.5,45.5 - parent: 12 - - uid: 21352 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,43.5 - parent: 12 - - uid: 21353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,43.5 - parent: 12 - - uid: 21354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,44.5 - parent: 12 - - uid: 21355 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,55.5 - parent: 12 - - uid: 22025 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,39.5 - parent: 12 - - uid: 22255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,41.5 - parent: 12 - - uid: 22256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,40.5 - parent: 12 - - uid: 22257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,39.5 - parent: 12 - - uid: 22258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,33.5 - parent: 12 - - uid: 22259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,38.5 - parent: 12 - - uid: 22260 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,34.5 - parent: 12 - - uid: 22263 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,36.5 - parent: 12 - - uid: 22264 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,35.5 - parent: 12 - - uid: 22265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,41.5 - parent: 12 - - uid: 22601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.353546,51.532234 - parent: 12 - - uid: 22612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.774001,47.829304 - parent: 12 - - uid: 22683 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.296523,55.766884 - parent: 12 - - uid: 22684 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.525589,57.637177 - parent: 12 - - uid: 23650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.45024,56.670662 - parent: 12 - - uid: 23668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.527832,51.667393 - parent: 12 - - uid: 23669 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.459324,50.635876 - parent: 12 - - uid: 23670 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.483803,51.68771 - parent: 12 - - uid: 24487 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.454576,67.71494 - parent: 12 - - uid: 25012 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: 36.5,7.5 - parent: 12 - - uid: 26070 - components: - - type: Transform - pos: 34.5,7.5 - parent: 12 - - uid: 26091 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,36.5 - parent: 12 - - uid: 26095 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: -29.5,-59.5 - parent: 12 - - uid: 31118 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-57.5 - parent: 12 - - uid: 31119 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-58.5 - 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 - rot: 3.141592653589793 rad - pos: 18.5,39.5 - parent: 12 - - uid: 14998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,39.5 - parent: 12 - - uid: 14999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,39.5 - parent: 12 - - uid: 15000 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,39.5 - parent: 12 - - uid: 15001 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,43.5 - parent: 12 - - uid: 15002 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,43.5 - parent: 12 - - uid: 15003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,45.5 - parent: 12 - - uid: 15004 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,46.5 - parent: 12 - - uid: 15005 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,47.5 - parent: 12 - - uid: 15006 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: -54.5,-14.5 - parent: 12 - - uid: 28190 - components: - - type: Transform - 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: 4854 - components: - - type: Transform - pos: 24.5,1.5 - parent: 12 - - uid: 17303 - components: - - type: Transform - 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 - pos: 20.5,7.5 - parent: 12 -- proto: StrangePill - entities: - - uid: 13506 - components: - - type: Transform - pos: 54.346703,23.382965 - parent: 12 - - uid: 13507 - components: - - type: Transform - pos: 51.11754,19.9091 - parent: 12 - - uid: 14914 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 39.48771,63.34897 - parent: 12 - - uid: 19877 - components: - - type: Transform - pos: -26.393188,50.61937 - parent: 12 -- proto: SubstationBasic - entities: - - uid: 1268 - components: - - type: Transform - pos: 61.5,-3.5 - parent: 12 - - uid: 2121 - components: - - type: Transform - pos: -3.5,-2.5 - parent: 12 - - uid: 2187 - components: - - type: Transform - pos: 2.5,-7.5 - parent: 12 - - uid: 3225 - components: - - type: Transform - pos: -11.5,-31.5 - parent: 12 - - uid: 4267 - components: - - type: Transform - pos: 38.5,-15.5 - parent: 12 - - uid: 4720 - components: - - type: Transform - pos: -11.5,-19.5 - parent: 12 - - uid: 4761 - components: - - type: Transform - pos: 4.5,-16.5 - parent: 12 - - uid: 7904 - components: - - type: Transform - pos: 51.5,-44.5 - parent: 12 - - uid: 8901 - components: - - type: Transform - pos: 40.5,-8.5 - parent: 12 - - uid: 9806 - components: - - type: Transform - pos: -22.5,57.5 - parent: 12 - - uid: 10663 - components: - - type: Transform - pos: -3.5,13.5 - parent: 12 - - uid: 11347 - components: - - type: Transform - pos: 21.5,24.5 - parent: 12 - - uid: 12670 - components: - - type: Transform - pos: 51.5,27.5 - parent: 12 - - uid: 14907 - components: - - type: Transform - pos: 36.5,66.5 - parent: 12 - - uid: 15734 - components: - - type: Transform - pos: -20.5,36.5 - parent: 12 - - uid: 16306 - components: - - type: Transform - pos: -4.5,36.5 - parent: 12 - - uid: 17859 - components: - - type: Transform - pos: -51.5,45.5 - parent: 12 - - uid: 19168 - components: - - type: Transform - pos: 17.5,7.5 - parent: 12 - - uid: 21910 - components: - - type: Transform - pos: 39.5,-6.5 - parent: 12 - - uid: 24704 - components: - - type: Transform - pos: 12.5,65.5 - parent: 12 - - uid: 27458 - components: - - 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 - pos: -36.5,-50.5 - parent: 12 -- proto: SuitStorageCaptain - entities: - - uid: 18757 - components: - - type: Transform - pos: -50.5,16.5 - parent: 12 -- proto: SuitStorageEngi - entities: - - uid: 214 - components: - - type: Transform - pos: 33.5,-15.5 - parent: 12 - - uid: 4525 - components: - - type: Transform - pos: 29.5,-6.5 - parent: 12 - - uid: 4553 - components: - - type: Transform - pos: 29.5,-11.5 - parent: 12 - - uid: 4554 - components: - - type: Transform - pos: 29.5,-12.5 - parent: 12 - - uid: 4555 - components: - - type: Transform - pos: 29.5,-13.5 - parent: 12 - - uid: 4708 - components: - - type: Transform - pos: 29.5,-7.5 - parent: 12 - - uid: 26851 - components: - - type: Transform - pos: 32.5,-15.5 - parent: 12 -- proto: SuitStorageEVA - entities: - - uid: 22129 - components: - - type: Transform - pos: -10.5,14.5 - parent: 12 - - uid: 22130 - components: - - type: Transform - pos: -11.5,14.5 - parent: 12 - - uid: 22132 - components: - - type: Transform - pos: -9.5,14.5 - parent: 12 - - uid: 27084 - components: - - type: Transform - pos: -10.5,4.5 - parent: 12 - - uid: 27085 - components: - - type: Transform - pos: -11.5,4.5 - parent: 12 - - uid: 27086 - components: - - type: Transform - pos: -9.5,4.5 - parent: 12 -- proto: SuitStorageEVAPrisoner - entities: - - uid: 19835 - components: - - type: Transform - pos: -25.5,58.5 - parent: 12 - - uid: 20788 - components: - - type: Transform - pos: -26.5,58.5 - parent: 12 - - uid: 22127 - components: - - type: Transform - pos: -27.5,58.5 - parent: 12 -- proto: SuitStorageRD - entities: - - uid: 498 - components: - - type: Transform - pos: -40.5,-22.5 - parent: 12 -- proto: SuitStorageSalv - entities: - - uid: 4748 - components: - - type: Transform - pos: 59.5,-32.5 - parent: 12 - - uid: 6761 - components: - - type: Transform - pos: 60.5,-32.5 - parent: 12 - - uid: 28461 - components: - - type: Transform - pos: 58.5,-32.5 - parent: 12 -- proto: SuitStorageSec - entities: - - uid: 3973 - components: - - type: Transform - pos: -43.5,50.5 - parent: 12 - - uid: 3981 - components: - - type: Transform - pos: -45.5,50.5 - parent: 12 - - uid: 7351 - components: - - type: Transform - pos: -46.5,50.5 - parent: 12 - - uid: 10395 - components: - - type: Transform - pos: -42.5,50.5 - parent: 12 -- proto: SuitStorageWarden - entities: - - uid: 3236 - components: - - type: MetaData - name: warden's suit storage unit - - type: Transform - pos: -46.5,52.5 - parent: 12 -- proto: SurveillanceCameraCommand - entities: - - uid: 2278 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI entrance - - uid: 3065 - components: - - type: Transform - pos: -35.5,21.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HOP front desk - - uid: 4765 - components: - - type: Transform - pos: 38.5,-6.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Telecomms - - uid: 5146 - components: - - type: Transform - pos: -10.5,23.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Command materials room - - uid: 5166 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,27.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - 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 - rot: 3.141592653589793 rad - pos: -10.5,-37.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: CMO's room - - uid: 9822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-22.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: CE's room - - uid: 16483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,8.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: EVA - - uid: 17586 - components: - - type: Transform - pos: -55.5,24.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge south - - uid: 17587 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,34.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge north - - uid: 17588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,30.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge entrance - - uid: 18839 - components: - - type: Transform - pos: -43.5,21.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HOP's room - - uid: 18897 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,22.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's room - - uid: 21289 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,35.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Hos' office - - uid: 22055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-10.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI upload - - uid: 24206 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,9.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault - - uid: 24207 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,8.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault entrance - - uid: 24210 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,0.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI core - - uid: 26204 - components: - - type: Transform - pos: 4.5,7.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI exterior - - uid: 31447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,38.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Command camera room - - uid: 31512 - components: - - type: Transform - pos: -42.5,-20.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: RD server room - - uid: 31519 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-19.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: RD's room - - uid: 31748 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-4.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI core entrance hall - - uid: 32075 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-12.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Gravity Gen - - uid: 32214 - components: - - type: Transform - pos: -10.5,-6.5 - parent: 12 - - type: SurveillanceCamera - id: AI core entrance - - uid: 32215 - components: - - type: Transform - pos: 3.5,-7.5 - parent: 12 - - type: SurveillanceCamera - id: AI core power room -- proto: SurveillanceCameraEngineering - entities: - - uid: 7716 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,18.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG North - - uid: 9766 - components: - - type: Transform - pos: 56.5,66.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Northeast airlock exterior - - uid: 9821 - components: - - type: Transform - pos: 33.5,-23.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineer locker room - - uid: 9823 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-19.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering front - - uid: 19166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,10.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Tesla Storage - - uid: 19311 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,7.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: PA - - uid: 21894 - components: - - type: Transform - pos: 32.5,-15.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engi hallway southeast - - uid: 24215 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-21.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering entrance - - uid: 26102 - components: - - type: Transform - pos: 52.5,4.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Break room - - uid: 26139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,8.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Tesla North - - uid: 26533 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,4.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Station anchor - - uid: 26553 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,16.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG East - - uid: 27001 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-16.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos entrance - - uid: 28795 - components: - - type: Transform - pos: 17.5,-13.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos south - - uid: 28796 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,5.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos north - - uid: 28797 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-4.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos east - - uid: 28798 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,2.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Burn chamber - - uid: 28799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-5.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos west - - uid: 28800 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,9.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos canister storage - - uid: 28808 - components: - - type: Transform - pos: 32.5,69.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Northwest solars - - uid: 28822 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-44.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Southeast solars - - uid: 28823 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-51.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Southeast solars 2 - - uid: 31448 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,47.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Northwest solars - - uid: 31471 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,28.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG exterior - - uid: 31511 - components: - - type: Transform - pos: -36.5,-10.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Shuttle constuction dock - - uid: 31529 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-51.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Southwest Solars 1 - - uid: 31530 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-68.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Southwest Solars 2 - - uid: 31865 - components: - - type: Transform - pos: 58.5,-3.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Tesla control -- proto: SurveillanceCameraGeneral - entities: - - uid: 3 - components: - - type: Transform - pos: -8.5,58.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorms - - uid: 113 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,82.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals west - - uid: 2901 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,43.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Hallway north B - - uid: 2948 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,45.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Hallway north A - - uid: 3061 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,45.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Hallway northwest B - - uid: 3062 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,37.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Hallway northwest A - - uid: 3063 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,12.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Hallway west B - - uid: 5664 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-25.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Medical-engineering hallway - - uid: 6752 - components: - - type: Transform - pos: 49.5,55.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Hallway Northeast - - uid: 7059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-37.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - 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: 8442 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-43.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Southeast dock - - uid: 9836 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-46.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Evac west - - uid: 9837 - components: - - type: Transform - pos: 19.5,-38.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Evac north - - uid: 12400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,34.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Pool south - - uid: 12672 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,49.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Hallway Northeast - - uid: 17130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,48.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arcade - - uid: 17271 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,17.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: North docking arm - - uid: 18840 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,82.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals east - - uid: 21455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,30.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Court - - uid: 21514 - components: - - type: Transform - pos: -21.5,-0.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Lawyer's office - - uid: 21921 - components: - - type: Transform - pos: -15.5,58.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Green dorm - - uid: 21928 - components: - - type: Transform - pos: -3.5,58.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Blue dorm - - uid: 21930 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,49.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Salon - - uid: 24135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,47.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Toolshed - - uid: 24200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,68.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals - - uid: 24209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-2.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Ship construction tool room - - 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 - rot: -1.5707963267948966 rad - pos: -30.5,31.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Court - - uid: 28802 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-26.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Tri-department hallway - - uid: 28815 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-30.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Cat zoo - - uid: 28821 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,51.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - 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: 31047 - components: - - type: Transform - pos: 18.5,70.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals shuttle dock - - uid: 31394 - components: - - type: Transform - pos: 44.5,43.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Tools exterior - - uid: 31449 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,28.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bee room - - uid: 31473 - components: - - type: Transform - pos: 21.5,26.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Observitory - - uid: 31500 - components: - - type: Transform - pos: -41.5,1.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Docking arm port - - uid: 31501 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,24.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Crossroad - - uid: 31557 - components: - - type: Transform - pos: 41.5,-32.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Vending machine room - - uid: 31749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Law office exterior - - uid: 31750 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-12.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Gorilla and penguin enclosures -- proto: SurveillanceCameraMedical - entities: - - uid: 3961 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-58.5 - parent: 12 - - uid: 3963 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-49.5 - parent: 12 - - uid: 3964 - components: - - type: Transform - pos: -21.5,-39.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medical front desk - - uid: 3965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-41.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Morgue - - uid: 3966 - components: - - type: Transform - pos: -9.5,-43.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Central medical - - uid: 3968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-41.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - - uid: 9841 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-52.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medical breakroom - - uid: 9842 - components: - - type: Transform - pos: -11.5,-56.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cyrogenics - - uid: 9843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-45.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medical locker room - - uid: 9845 - components: - - type: Transform - pos: -43.5,-50.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Biohazard surgery room - - uid: 21924 - components: - - type: Transform - pos: 30.5,35.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Med checkpoint - - uid: 26129 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-35.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery - - uid: 31531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-53.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Genetics - - uid: 31556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-43.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Morgue and Surgery entrance - - uid: 31761 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-58.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Psych office -- proto: SurveillanceCameraMonitorCircuitboard - entities: - - uid: 21948 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: -49.832508,36.850792 - parent: 12 -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 22057 - components: - - type: Transform - pos: -53.5,38.5 - parent: 12 -- proto: SurveillanceCameraRouterConstructed - entities: - - uid: 8740 - components: - - type: Transform - pos: 0.5,-15.5 - parent: 12 -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 21974 - components: - - type: Transform - pos: 25.5,-23.5 - parent: 12 -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 5678 - components: - - type: Transform - pos: -1.5,-15.5 - parent: 12 -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 21973 - components: - - type: Transform - pos: -12.5,-39.5 - parent: 12 -- proto: SurveillanceCameraRouterScience - entities: - - uid: 3077 - components: - - type: Transform - pos: -39.5,-21.5 - parent: 12 -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 21314 - components: - - type: Transform - pos: -44.5,36.5 - parent: 12 -- proto: SurveillanceCameraRouterService - entities: - - uid: 21978 - components: - - type: Transform - pos: -41.5,21.5 - parent: 12 -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 21067 - components: - - type: Transform - pos: 47.5,-8.5 - parent: 12 -- proto: SurveillanceCameraScience - entities: - - uid: 3969 - components: - - type: Transform - pos: -43.5,-43.5 - parent: 12 - - uid: 3970 - components: - - type: Transform - pos: -47.5,-40.5 - parent: 12 - - uid: 3971 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-33.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Anomaly generator - - uid: 3972 - components: - - type: Transform - pos: -33.5,-28.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Central science - - uid: 3975 - components: - - type: Transform - pos: -28.5,-21.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science front desk - - uid: 4129 - components: - - type: Transform - pos: -47.5,-27.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Artifact room south - - uid: 9846 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-28.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - 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 - rot: 3.141592653589793 rad - pos: -25.5,-23.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science entrance and robotics -- proto: SurveillanceCameraSecurity - entities: - - uid: 2165 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,62.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory entrance - - uid: 8717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-33.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cargo checkpoint - - uid: 21286 - components: - - type: Transform - pos: -22.5,43.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Visitation - - uid: 21287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,41.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Front desk - - uid: 21288 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,40.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Locker room - - uid: 21290 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,48.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Interrorgation - - uid: 23582 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,59.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Arrivals security checkpoint - - uid: 23774 - components: - - type: Transform - pos: -35.5,38.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: South security - - uid: 23775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,52.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma - - uid: 23776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,45.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma visitation wing - - uid: 23777 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,59.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brig - - uid: 23778 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,68.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - - uid: 23780 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,54.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: North security - - uid: 23781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,30.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - 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 - rot: -1.5707963267948966 rad - pos: -29.5,66.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Shooting range - - uid: 29289 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,64.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security evac pod and airlock -- proto: SurveillanceCameraService - entities: - - uid: 10 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,57.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - - uid: 2154 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,21.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Janitor closet - - uid: 5161 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,29.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Chapel meeting room - - uid: 5162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,55.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Botany north - - uid: 12287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,18.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Disposals - - uid: 12904 - components: - - type: Transform - pos: 42.5,27.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Chaplain's room - - uid: 13256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,39.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Chapel east - - uid: 13261 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,35.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Chapel west - - uid: 15166 - components: - - type: Transform - pos: 24.5,45.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bar - - uid: 15167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,47.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Dining room - - uid: 15168 - components: - - type: Transform - pos: 27.5,55.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - - uid: 17534 - components: - - type: Transform - pos: 11.5,35.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Reporter's room - - uid: 24194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,50.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Hydroponics front - - uid: 24195 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,45.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Hydroponics - - uid: 24198 - components: - - type: Transform - pos: 58.5,52.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Service animal pens - - uid: 24199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,44.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Hydroponics locker room - - uid: 25268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,59.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Clown and mime's room - - uid: 25269 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,59.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - - uid: 25270 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,52.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Service backroom - - uid: 25271 - components: - - type: Transform - pos: 40.5,51.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Freezer - - uid: 25272 - components: - - type: Transform - pos: 31.5,49.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bartender's room - - uid: 28814 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-30.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Parrot zoo - - uid: 28816 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-34.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Zookeeper's room - - uid: 28818 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-13.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Gorilla zoo - - uid: 28819 - components: - - type: Transform - pos: -10.5,19.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Monkey zoo - - uid: 28820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,21.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Lizard zoo - - uid: 30394 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,78.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Library -- proto: SurveillanceCameraSupply - entities: - - uid: 90 - components: - - type: Transform - pos: 78.5,-32.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvaging platform - - uid: 9829 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-34.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage rig dock - - uid: 9830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-30.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage locker room - - uid: 9833 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-16.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo bay - - uid: 9834 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-26.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo front - - uid: 12009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-14.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo dock - - uid: 12642 - components: - - type: Transform - pos: 61.5,-26.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo break room -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 21981 - components: - - type: Transform - pos: 11.5,38.5 - parent: 12 -- proto: SurveillanceWirelessCameraAnchoredEntertainment - entities: - - uid: 4907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,47.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEntertainment - nameSet: True - id: The Bar Channel - - uid: 29394 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-50.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEntertainment - nameSet: True - id: Dr Sturgeon, MD 24/7 -- proto: SurveillanceWirelessCameraMovableEntertainment - entities: - - uid: 15665 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,37.5 - parent: 12 - - uid: 15794 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,38.5 - parent: 12 - - uid: 31527 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-33.5 - parent: 12 -- proto: SyndieFlag - entities: - - uid: 28180 - components: - - type: Transform - pos: -50.5,-11.5 - parent: 12 -- proto: SyndieHandyFlag - entities: - - uid: 28263 - components: - - type: Transform - pos: -50.643856,-12.445543 - parent: 12 -- proto: SynthesizerInstrument - entities: - - uid: 29598 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -50.39034,76.4461 - parent: 12 -- proto: Syringe - entities: - - uid: 4198 - components: - - type: Transform - rot: -56.54866776461632 rad - pos: -9.492602,-48.549774 - parent: 12 - - uid: 12997 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 38.774746,63.592964 - parent: 12 - - uid: 13179 - components: - - type: Transform - pos: 40.454338,28.652046 - parent: 12 - - uid: 17612 - components: - - type: Transform - pos: -52.717888,28.43466 - parent: 12 - - uid: 19562 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 41.515606,-12.499336 - parent: 12 -- proto: SyringeInaprovaline - entities: - - uid: 1842 - components: - - type: Transform - pos: -46.519814,-47.346844 - 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 - pos: 33.5,45.5 - parent: 12 - - uid: 1196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-39.5 - parent: 12 - - uid: 1708 - components: - - type: Transform - pos: -42.5,-25.5 - parent: 12 - - uid: 1709 - components: - - type: Transform - pos: -42.5,-26.5 - parent: 12 - - uid: 1710 - components: - - type: Transform - pos: -42.5,-22.5 - parent: 12 - - uid: 1711 - components: - - type: Transform - pos: -33.5,-23.5 - parent: 12 - - uid: 1712 - components: - - type: Transform - pos: -32.5,-23.5 - parent: 12 - - uid: 1713 - components: - - type: Transform - pos: -30.5,-23.5 - parent: 12 - - uid: 1714 - components: - - type: Transform - pos: -32.5,-21.5 - parent: 12 - - uid: 1715 - components: - - type: Transform - pos: -31.5,-21.5 - parent: 12 - - uid: 1716 - components: - - type: Transform - pos: -30.5,-21.5 - parent: 12 - - uid: 1719 - components: - - type: Transform - pos: -28.5,-30.5 - parent: 12 - - uid: 1720 - components: - - type: Transform - pos: -28.5,-29.5 - parent: 12 - - uid: 1721 - components: - - type: Transform - pos: -28.5,-27.5 - parent: 12 - - uid: 1722 - components: - - type: Transform - pos: -38.5,-32.5 - parent: 12 - - uid: 1723 - components: - - type: Transform - pos: -41.5,-39.5 - parent: 12 - - uid: 1724 - components: - - type: Transform - pos: -40.5,-39.5 - parent: 12 - - uid: 1725 - components: - - type: Transform - pos: -40.5,-38.5 - parent: 12 - - uid: 1761 - components: - - type: Transform - pos: -45.5,-43.5 - parent: 12 - - uid: 1762 - components: - - type: Transform - pos: -45.5,-42.5 - parent: 12 - - uid: 1763 - components: - - type: Transform - pos: -42.5,-41.5 - parent: 12 - - uid: 2118 - components: - - type: Transform - pos: 2.5,-0.5 - parent: 12 - - uid: 2235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 12 - - uid: 2236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 12 - - uid: 2237 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 12 - - uid: 2238 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-11.5 - parent: 12 - - uid: 2247 - components: - - type: Transform - pos: 2.5,-1.5 - parent: 12 - - uid: 2272 - components: - - type: Transform - 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 - pos: -23.5,-39.5 - parent: 12 - - uid: 2495 - components: - - type: Transform - pos: -19.5,-46.5 - parent: 12 - - uid: 2496 - components: - - type: Transform - pos: -19.5,-47.5 - parent: 12 - - uid: 2582 - components: - - type: Transform - pos: -10.5,-37.5 - parent: 12 - - uid: 2791 - components: - - type: Transform - pos: -11.5,-60.5 - parent: 12 - - uid: 2818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-56.5 - parent: 12 - - uid: 2842 - components: - - type: Transform - pos: -13.5,-49.5 - parent: 12 - - uid: 2910 - components: - - type: Transform - pos: -5.5,-48.5 - parent: 12 - - uid: 2951 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-32.5 - parent: 12 - - uid: 3145 - components: - - type: Transform - pos: 54.5,61.5 - parent: 12 - - uid: 3462 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-39.5 - parent: 12 - - uid: 3463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-38.5 - parent: 12 - - uid: 3799 - components: - - type: Transform - pos: -23.5,-56.5 - parent: 12 - - uid: 3800 - components: - - type: Transform - pos: -19.5,-56.5 - parent: 12 - - uid: 3801 - components: - - type: Transform - pos: -20.5,-56.5 - parent: 12 - - uid: 3803 - components: - - type: Transform - pos: -21.5,-53.5 - parent: 12 - - uid: 3943 - components: - - type: Transform - pos: -23.5,-50.5 - parent: 12 - - uid: 3944 - components: - - type: Transform - pos: -23.5,-51.5 - parent: 12 - - uid: 3945 - components: - - type: Transform - pos: 5.5,69.5 - parent: 12 - - uid: 3946 - components: - - type: Transform - pos: -22.5,-51.5 - parent: 12 - - uid: 4033 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-28.5 - parent: 12 - - uid: 4127 - components: - - type: Transform - pos: 8.5,-51.5 - parent: 12 - - uid: 4128 - components: - - type: Transform - pos: 8.5,-50.5 - parent: 12 - - uid: 4189 - components: - - type: Transform - pos: 40.5,63.5 - parent: 12 - - uid: 4191 - components: - - type: Transform - pos: 39.5,63.5 - parent: 12 - - uid: 4213 - components: - - type: Transform - pos: 46.5,64.5 - parent: 12 - - uid: 4235 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-29.5 - parent: 12 - - uid: 4438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-24.5 - parent: 12 - - uid: 4439 - components: - - type: Transform - 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 - pos: 8.5,-23.5 - parent: 12 - - uid: 4557 - components: - - type: Transform - pos: 8.5,-22.5 - parent: 12 - - uid: 4558 - components: - - type: Transform - pos: 18.5,-20.5 - parent: 12 - - uid: 4559 - components: - - type: Transform - pos: 18.5,-21.5 - parent: 12 - - uid: 4670 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-23.5 - parent: 12 - - uid: 4705 - components: - - type: Transform - pos: 29.5,53.5 - parent: 12 - - uid: 4789 - components: - - type: Transform - pos: 8.5,-11.5 - parent: 12 - - uid: 4935 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,22.5 - parent: 12 - - uid: 4936 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,22.5 - parent: 12 - - uid: 5015 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-23.5 - parent: 12 - - uid: 5094 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-4.5 - parent: 12 - - uid: 5242 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-2.5 - parent: 12 - - uid: 5333 - components: - - type: Transform - pos: -38.5,51.5 - parent: 12 - - uid: 5470 - components: - - type: Transform - pos: 25.5,-22.5 - parent: 12 - - uid: 5508 - components: - - type: Transform - pos: 11.5,-19.5 - parent: 12 - - uid: 5509 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 12 - - uid: 5515 - components: - - type: Transform - pos: 21.5,-18.5 - parent: 12 - - uid: 5516 - components: - - type: Transform - pos: 22.5,-18.5 - parent: 12 - - uid: 5684 - components: - - type: Transform - pos: 33.5,-17.5 - parent: 12 - - uid: 5862 - components: - - 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: 5870 - components: - - type: Transform - pos: 2.5,68.5 - parent: 12 - - uid: 5897 - components: - - type: Transform - pos: 33.5,-18.5 - parent: 12 - - uid: 5898 - components: - - type: Transform - pos: 33.5,-19.5 - parent: 12 - - uid: 5899 - components: - - type: Transform - pos: 33.5,-20.5 - parent: 12 - - uid: 5900 - components: - - type: Transform - pos: 35.5,-20.5 - parent: 12 - - uid: 5901 - components: - - type: Transform - pos: 35.5,-19.5 - parent: 12 - - uid: 5902 - components: - - type: Transform - pos: 35.5,-18.5 - parent: 12 - - uid: 5903 - components: - - 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 - rot: 1.5707963267948966 rad - pos: 52.5,5.5 - parent: 12 - - uid: 6690 - components: - - type: Transform - pos: 16.5,-36.5 - parent: 12 - - uid: 6691 - components: - - type: Transform - pos: 27.5,-36.5 - parent: 12 - - uid: 6986 - components: - - 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 - pos: -15.5,-51.5 - parent: 12 - - uid: 8468 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,4.5 - parent: 12 - - uid: 8499 - components: - - type: Transform - pos: 58.5,-29.5 - parent: 12 - - uid: 8501 - components: - - type: Transform - pos: 55.5,-33.5 - parent: 12 - - uid: 8502 - components: - - type: Transform - pos: 55.5,-34.5 - parent: 12 - - uid: 8810 - components: - - type: Transform - pos: -24.5,29.5 - parent: 12 - - uid: 8900 - components: - - type: Transform - pos: -13.5,-50.5 - parent: 12 - - uid: 9056 - components: - - type: Transform - pos: 2.5,11.5 - parent: 12 - - uid: 9079 - components: - - type: Transform - pos: 41.5,-38.5 - parent: 12 - - uid: 9087 - components: - - type: Transform - pos: 5.5,70.5 - parent: 12 - - uid: 9405 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,3.5 - parent: 12 - - uid: 9524 - components: - - type: Transform - pos: -5.5,-52.5 - parent: 12 - - uid: 9679 - components: - - type: Transform - pos: 3.5,11.5 - parent: 12 - - uid: 9743 - components: - - type: Transform - pos: -17.5,-43.5 - parent: 12 - - uid: 9786 - components: - - type: Transform - pos: 8.5,-9.5 - parent: 12 - - uid: 9992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,2.5 - parent: 12 - - uid: 10076 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,64.5 - parent: 12 - - uid: 10306 - components: - - type: Transform - pos: 8.5,-10.5 - parent: 12 - - uid: 10330 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-3.5 - parent: 12 - - uid: 10332 - components: - - type: Transform - pos: -22.5,-10.5 - parent: 12 - - uid: 10335 - components: - - type: Transform - pos: 55.5,5.5 - parent: 12 - - uid: 10336 - components: - - type: Transform - pos: 55.5,4.5 - parent: 12 - - uid: 10367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-2.5 - parent: 12 - - uid: 10369 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-4.5 - parent: 12 - - uid: 10398 - components: - - type: Transform - pos: -26.5,-9.5 - parent: 12 - - uid: 10399 - components: - - type: Transform - pos: -26.5,-8.5 - parent: 12 - - uid: 10630 - components: - - type: Transform - pos: 52.5,46.5 - parent: 12 - - uid: 10726 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,52.5 - parent: 12 - - uid: 10888 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-10.5 - parent: 12 - - uid: 10905 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-2.5 - parent: 12 - - uid: 11040 - components: - - type: Transform - pos: 49.5,46.5 - parent: 12 - - uid: 11325 - components: - - type: Transform - pos: -19.5,-27.5 - parent: 12 - - uid: 11346 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,24.5 - parent: 12 - - uid: 11437 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-44.5 - parent: 12 - - uid: 11524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,54.5 - parent: 12 - - uid: 12076 - components: - - type: Transform - pos: -10.5,-45.5 - parent: 12 - - uid: 12120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-44.5 - parent: 12 - - uid: 12271 - components: - - type: Transform - pos: 43.5,16.5 - parent: 12 - - uid: 12272 - components: - - type: Transform - pos: 46.5,18.5 - parent: 12 - - uid: 12629 - components: - - type: Transform - pos: 34.5,45.5 - parent: 12 - - uid: 12643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-44.5 - parent: 12 - - uid: 12671 - components: - - type: Transform - pos: 48.5,46.5 - parent: 12 - - uid: 12673 - components: - - type: Transform - pos: 49.5,48.5 - parent: 12 - - uid: 12717 - components: - - type: Transform - pos: 29.5,49.5 - parent: 12 - - uid: 12981 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,23.5 - parent: 12 - - uid: 12995 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,22.5 - parent: 12 - - uid: 13026 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,27.5 - parent: 12 - - uid: 13027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,28.5 - parent: 12 - - uid: 13502 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,23.5 - parent: 12 - - uid: 13503 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,24.5 - parent: 12 - - uid: 13504 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,25.5 - parent: 12 - - uid: 13792 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,36.5 - parent: 12 - - uid: 13793 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,37.5 - parent: 12 - - uid: 13875 - components: - - type: Transform - pos: 27.5,37.5 - parent: 12 - - uid: 13978 - components: - - type: Transform - pos: 49.5,47.5 - parent: 12 - - uid: 13981 - components: - - type: Transform - pos: 52.5,47.5 - parent: 12 - - uid: 13982 - components: - - type: Transform - pos: 52.5,48.5 - parent: 12 - - uid: 14516 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,47.5 - parent: 12 - - uid: 14909 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,65.5 - parent: 12 - - uid: 14931 - components: - - type: Transform - pos: 46.5,63.5 - parent: 12 - - uid: 14950 - components: - - type: Transform - pos: 45.5,64.5 - parent: 12 - - uid: 14951 - components: - - type: Transform - pos: 2.5,-66.5 - parent: 12 - - uid: 15090 - components: - - type: Transform - pos: 29.5,45.5 - parent: 12 - - uid: 15091 - components: - - type: Transform - pos: 30.5,45.5 - parent: 12 - - uid: 15093 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,47.5 - parent: 12 - - uid: 15094 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,48.5 - parent: 12 - - uid: 15169 - components: - - type: Transform - pos: 25.5,59.5 - parent: 12 - - uid: 15170 - components: - - type: Transform - pos: 25.5,60.5 - parent: 12 - - uid: 15171 - components: - - type: Transform - pos: 26.5,60.5 - parent: 12 - - uid: 15172 - components: - - type: Transform - pos: 28.5,58.5 - parent: 12 - - uid: 15173 - components: - - type: Transform - pos: 28.5,57.5 - parent: 12 - - uid: 15176 - components: - - type: Transform - pos: 30.5,57.5 - parent: 12 - - uid: 15177 - components: - - type: Transform - pos: 30.5,58.5 - parent: 12 - - uid: 15385 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,47.5 - parent: 12 - - uid: 15447 - components: - - type: Transform - pos: 42.5,53.5 - parent: 12 - - uid: 15448 - components: - - type: Transform - pos: 37.5,52.5 - parent: 12 - - uid: 15449 - components: - - type: Transform - pos: 37.5,53.5 - parent: 12 - - uid: 15450 - components: - - type: Transform - pos: 37.5,54.5 - parent: 12 - - uid: 15451 - components: - - type: Transform - pos: 34.5,51.5 - parent: 12 - - uid: 15452 - components: - - type: Transform - pos: 34.5,52.5 - parent: 12 - - uid: 15453 - components: - - type: Transform - pos: 34.5,53.5 - parent: 12 - - uid: 16307 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,36.5 - parent: 12 - - uid: 16309 - components: - - type: Transform - pos: -5.5,36.5 - parent: 12 - - uid: 16437 - components: - - type: Transform - pos: -8.5,5.5 - parent: 12 - - uid: 16438 - components: - - type: Transform - pos: -7.5,10.5 - parent: 12 - - uid: 16439 - components: - - type: Transform - pos: -7.5,11.5 - parent: 12 - - uid: 16440 - components: - - type: Transform - pos: -12.5,10.5 - parent: 12 - - uid: 16441 - components: - - type: Transform - pos: -12.5,9.5 - parent: 12 - - uid: 16442 - components: - - type: Transform - pos: -12.5,8.5 - parent: 12 - - uid: 16443 - components: - - type: Transform - pos: -12.5,5.5 - parent: 12 - - uid: 16444 - components: - - type: Transform - pos: -12.5,13.5 - parent: 12 - - uid: 16664 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,6.5 - parent: 12 - - uid: 16690 - components: - - type: Transform - pos: 61.5,-18.5 - parent: 12 - - uid: 17383 - components: - - type: Transform - pos: -52.5,16.5 - parent: 12 - - uid: 17384 - components: - - type: Transform - pos: -51.5,16.5 - parent: 12 - - uid: 17385 - components: - - type: Transform - pos: -45.5,26.5 - parent: 12 - - uid: 17792 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,36.5 - parent: 12 - - uid: 17793 - components: - - type: Transform - 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 - pos: -39.5,23.5 - parent: 12 - - uid: 19148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,46.5 - parent: 12 - - uid: 19149 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,45.5 - parent: 12 - - uid: 19150 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,46.5 - parent: 12 - - uid: 19151 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,45.5 - parent: 12 - - uid: 19279 - components: - - type: Transform - pos: 53.5,46.5 - parent: 12 - - uid: 19398 - components: - - type: Transform - pos: -48.5,61.5 - parent: 12 - - uid: 19399 - components: - - type: Transform - pos: -45.5,61.5 - parent: 12 - - uid: 19400 - components: - - type: Transform - pos: -42.5,61.5 - parent: 12 - - uid: 19436 - components: - - type: Transform - pos: -34.5,68.5 - parent: 12 - - uid: 19872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,44.5 - parent: 12 - - uid: 20142 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,44.5 - parent: 12 - - uid: 20317 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,36.5 - parent: 12 - - uid: 20318 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,37.5 - parent: 12 - - uid: 20319 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,38.5 - parent: 12 - - uid: 20320 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,38.5 - parent: 12 - - uid: 20321 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,38.5 - parent: 12 - - uid: 20322 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,37.5 - parent: 12 - - uid: 20323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,36.5 - parent: 12 - - uid: 20324 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,36.5 - parent: 12 - - uid: 20325 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,42.5 - parent: 12 - - uid: 20326 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,38.5 - parent: 12 - - uid: 20327 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,41.5 - parent: 12 - - uid: 20328 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,41.5 - parent: 12 - - uid: 20329 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,38.5 - parent: 12 - - uid: 20330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,38.5 - parent: 12 - - uid: 20331 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,43.5 - parent: 12 - - uid: 20332 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,47.5 - parent: 12 - - uid: 20605 - components: - - 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 - rot: 3.141592653589793 rad - pos: -35.5,64.5 - parent: 12 - - uid: 21226 - components: - - type: Transform - pos: -29.5,56.5 - parent: 12 - - uid: 21231 - components: - - type: Transform - pos: -30.5,58.5 - parent: 12 - - uid: 21232 - components: - - type: Transform - pos: -29.5,58.5 - parent: 12 - - uid: 21393 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,54.5 - parent: 12 - - uid: 21441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,25.5 - parent: 12 - - uid: 21442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,25.5 - parent: 12 - - uid: 21467 - components: - - type: Transform - pos: -24.5,34.5 - parent: 12 - - uid: 21598 - components: - - type: Transform - pos: -29.5,21.5 - parent: 12 - - uid: 21675 - components: - - type: Transform - pos: 39.5,-39.5 - parent: 12 - - uid: 21750 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,61.5 - parent: 12 - - uid: 21751 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,60.5 - parent: 12 - - uid: 21752 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,61.5 - parent: 12 - - uid: 21753 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,60.5 - parent: 12 - - uid: 21754 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,64.5 - parent: 12 - - uid: 21755 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,63.5 - parent: 12 - - uid: 21756 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,64.5 - parent: 12 - - uid: 21757 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,63.5 - parent: 12 - - uid: 21758 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,66.5 - parent: 12 - - uid: 21759 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,66.5 - parent: 12 - - uid: 21761 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,56.5 - parent: 12 - - uid: 21762 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,56.5 - parent: 12 - - uid: 21763 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,51.5 - parent: 12 - - uid: 21977 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 12 - - uid: 22096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,56.5 - parent: 12 - - uid: 22166 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,36.5 - parent: 12 - - uid: 22269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-41.5 - parent: 12 - - uid: 22270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-44.5 - parent: 12 - - uid: 22271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-41.5 - parent: 12 - - uid: 22274 - components: - - type: Transform - pos: 35.5,45.5 - parent: 12 - - uid: 22364 - components: - - type: Transform - pos: -15.5,47.5 - parent: 12 - - uid: 22365 - components: - - type: Transform - pos: -14.5,47.5 - parent: 12 - - uid: 22492 - components: - - type: Transform - pos: 2.5,41.5 - parent: 12 - - uid: 22694 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,59.5 - parent: 12 - - uid: 22732 - components: - - type: Transform - pos: 5.5,57.5 - parent: 12 - - uid: 22827 - components: - - type: Transform - pos: 25.5,57.5 - parent: 12 - - uid: 22828 - components: - - type: Transform - pos: 25.5,58.5 - parent: 12 - - uid: 22831 - components: - - type: Transform - pos: 27.5,60.5 - parent: 12 - - uid: 22832 - components: - - type: Transform - pos: 28.5,60.5 - parent: 12 - - uid: 22833 - components: - - type: Transform - pos: 29.5,60.5 - parent: 12 - - uid: 22837 - components: - - type: Transform - pos: 32.5,57.5 - parent: 12 - - uid: 22892 - components: - - 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 - pos: 44.5,50.5 - parent: 12 - - uid: 23422 - components: - - type: Transform - pos: 44.5,51.5 - parent: 12 - - uid: 23424 - components: - - type: Transform - pos: 44.5,53.5 - parent: 12 - - uid: 23440 - components: - - type: Transform - pos: 40.5,45.5 - parent: 12 - - uid: 23656 - components: - - type: Transform - pos: 48.5,50.5 - parent: 12 - - uid: 23657 - components: - - type: Transform - pos: 48.5,51.5 - parent: 12 - - uid: 23761 - components: - - type: Transform - pos: 66.5,54.5 - parent: 12 - - uid: 23762 - components: - - type: Transform - pos: 68.5,55.5 - parent: 12 - - uid: 23763 - components: - - type: Transform - pos: 76.5,54.5 - parent: 12 - - uid: 23764 - components: - - type: Transform - pos: 77.5,48.5 - parent: 12 - - uid: 23765 - components: - - type: Transform - pos: 77.5,49.5 - parent: 12 - - uid: 23766 - components: - - type: Transform - pos: 76.5,43.5 - parent: 12 - - uid: 23767 - components: - - type: Transform - pos: 68.5,42.5 - parent: 12 - - uid: 23768 - components: - - type: Transform - pos: 66.5,43.5 - parent: 12 - - uid: 24011 - components: - - type: Transform - pos: 61.5,47.5 - parent: 12 - - uid: 24013 - components: - - type: Transform - pos: 62.5,47.5 - parent: 12 - - uid: 24014 - components: - - type: Transform - pos: 62.5,50.5 - parent: 12 - - uid: 24015 - components: - - type: Transform - pos: 61.5,50.5 - parent: 12 - - uid: 24016 - components: - - type: Transform - pos: 64.5,50.5 - parent: 12 - - uid: 24017 - components: - - type: Transform - pos: 65.5,50.5 - parent: 12 - - uid: 24090 - components: - - type: Transform - pos: 64.5,45.5 - parent: 12 - - uid: 24091 - components: - - type: Transform - pos: 63.5,45.5 - parent: 12 - - uid: 24143 - components: - - type: Transform - pos: 58.5,47.5 - parent: 12 - - uid: 24151 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,50.5 - parent: 12 - - uid: 24156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,50.5 - parent: 12 - - uid: 24485 - components: - - type: Transform - pos: 29.5,68.5 - parent: 12 - - uid: 24504 - components: - - type: Transform - pos: 33.5,61.5 - parent: 12 - - uid: 24690 - components: - - type: Transform - pos: -2.5,55.5 - parent: 12 - - uid: 24691 - components: - - type: Transform - pos: -2.5,54.5 - parent: 12 - - uid: 24693 - components: - - type: Transform - pos: -2.5,56.5 - parent: 12 - - uid: 24694 - components: - - type: Transform - pos: -1.5,56.5 - parent: 12 - - uid: 24695 - components: - - type: Transform - pos: 2.5,64.5 - parent: 12 - - uid: 24696 - components: - - type: Transform - pos: 2.5,65.5 - parent: 12 - - uid: 24981 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,50.5 - parent: 12 - - uid: 25005 - components: - - type: Transform - pos: 9.5,68.5 - parent: 12 - - uid: 25106 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,58.5 - parent: 12 - - uid: 25491 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,41.5 - parent: 12 - - uid: 25493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,33.5 - parent: 12 - - uid: 25494 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,37.5 - parent: 12 - - uid: 25506 - components: - - type: Transform - pos: 26.5,80.5 - parent: 12 - - uid: 25507 - components: - - type: Transform - pos: 10.5,80.5 - parent: 12 - - uid: 25515 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,47.5 - parent: 12 - - uid: 25576 - components: - - type: Transform - pos: 35.5,-25.5 - parent: 12 - - uid: 25668 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,23.5 - parent: 12 - - uid: 25692 - components: - - type: Transform - pos: 12.5,-28.5 - parent: 12 - - uid: 25699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-28.5 - parent: 12 - - uid: 25702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-25.5 - parent: 12 - - uid: 25726 - components: - - type: Transform - pos: -14.5,20.5 - parent: 12 - - uid: 25727 - components: - - type: Transform - pos: -17.5,20.5 - parent: 12 - - uid: 25740 - components: - - type: Transform - pos: -23.5,29.5 - parent: 12 - - uid: 25850 - components: - - type: Transform - pos: 57.5,56.5 - parent: 12 - - uid: 25851 - components: - - type: Transform - pos: 57.5,57.5 - parent: 12 - - uid: 25852 - components: - - type: Transform - pos: 57.5,58.5 - parent: 12 - - uid: 25853 - components: - - type: Transform - pos: 58.5,58.5 - parent: 12 - - uid: 25893 - components: - - type: Transform - pos: 36.5,59.5 - parent: 12 - - uid: 25894 - components: - - type: Transform - pos: 37.5,59.5 - parent: 12 - - uid: 25921 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,45.5 - parent: 12 - - uid: 25930 - components: - - type: Transform - pos: 45.5,56.5 - parent: 12 - - uid: 26060 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-43.5 - parent: 12 - - uid: 26061 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-46.5 - parent: 12 - - uid: 26062 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-45.5 - parent: 12 - - uid: 26063 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-44.5 - parent: 12 - - uid: 26151 - components: - - type: Transform - pos: 6.5,-38.5 - parent: 12 - - uid: 26454 - components: - - type: Transform - pos: -5.5,-51.5 - parent: 12 - - uid: 26558 - components: - - 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 - pos: -15.5,-50.5 - parent: 12 - - uid: 27956 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,56.5 - parent: 12 - - uid: 27964 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,56.5 - parent: 12 - - uid: 27994 - components: - - type: Transform - pos: 44.5,52.5 - parent: 12 - - uid: 28389 - components: - - type: Transform - pos: 19.5,-18.5 - parent: 12 - - uid: 28426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-32.5 - parent: 12 - - uid: 28499 - components: - - type: Transform - pos: -9.5,-45.5 - parent: 12 - - uid: 28859 - components: - - type: Transform - pos: -3.5,-0.5 - parent: 12 - - uid: 28860 - components: - - 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: 29425 - components: - - type: Transform - 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: 29968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,2.5 - parent: 12 - - uid: 30333 - components: - - type: Transform - pos: -9.5,-47.5 - parent: 12 - - uid: 30336 - components: - - type: Transform - pos: -9.5,-49.5 - parent: 12 - - uid: 30339 - components: - - type: Transform - pos: -9.5,-48.5 - parent: 12 - - uid: 30344 - components: - - type: Transform - pos: -9.5,-50.5 - parent: 12 - - uid: 30460 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,24.5 - parent: 12 - - uid: 31127 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-59.5 - parent: 12 - - uid: 31128 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-59.5 - parent: 12 - - uid: 31134 - components: - - type: Transform - pos: -38.5,-58.5 - parent: 12 - - uid: 31324 - components: - - type: Transform - pos: 38.5,63.5 - parent: 12 - - uid: 31325 - components: - - type: Transform - pos: 2.5,-65.5 - parent: 12 - - uid: 31326 - components: - - type: Transform - pos: 2.5,-64.5 - parent: 12 - - uid: 31555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,0.5 - parent: 12 - - uid: 31559 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-1.5 - parent: 12 - - uid: 31560 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-0.5 - parent: 12 - - uid: 31813 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,71.5 - parent: 12 - - uid: 32331 - components: - - type: Transform - pos: 53.5,54.5 - parent: 12 -- proto: TableCarpet - entities: - - uid: 19680 - components: - - type: Transform - pos: 36.5,-46.5 - parent: 12 - - uid: 22653 - components: - - type: Transform - pos: 10.5,56.5 - parent: 12 - - uid: 22654 - components: - - type: Transform - pos: 11.5,56.5 - parent: 12 - - uid: 22655 - components: - - type: Transform - pos: 11.5,57.5 - parent: 12 - - uid: 22656 - components: - - type: Transform - pos: 12.5,56.5 - parent: 12 - - uid: 22657 - components: - - type: Transform - pos: 10.5,57.5 - parent: 12 - - uid: 22658 - components: - - type: Transform - pos: 12.5,57.5 - parent: 12 -- proto: TableCounterMetal - entities: - - uid: 1726 - components: - - type: Transform - pos: -44.5,-50.5 - parent: 12 - - uid: 1727 - components: - - type: Transform - pos: -42.5,-50.5 - parent: 12 - - uid: 1728 - components: - - type: Transform - pos: -46.5,-48.5 - parent: 12 - - uid: 1729 - components: - - type: Transform - pos: -46.5,-47.5 - parent: 12 - - uid: 11041 - components: - - type: Transform - pos: -31.5,-57.5 - parent: 12 - - uid: 20927 - components: - - type: Transform - pos: -30.5,-57.5 - parent: 12 - - uid: 21059 - components: - - type: Transform - pos: -32.5,-57.5 - parent: 12 - - uid: 25987 - components: - - type: Transform - pos: -43.5,-50.5 - parent: 12 - - uid: 26089 - components: - - type: Transform - pos: -30.5,-58.5 - parent: 12 - - uid: 30583 - components: - - type: Transform - pos: -30.5,-59.5 - parent: 12 -- proto: TableCounterWood - entities: - - uid: 14147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,49.5 - parent: 12 - - uid: 14148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,50.5 - parent: 12 - - uid: 14149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,48.5 - parent: 12 - - uid: 14150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,48.5 - parent: 12 - - uid: 14151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,48.5 - parent: 12 - - uid: 14152 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,47.5 - parent: 12 - - uid: 14153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,46.5 - parent: 12 - - uid: 14154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,45.5 - parent: 12 - - uid: 14155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,44.5 - parent: 12 - - uid: 14156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,44.5 - parent: 12 - - uid: 14157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,44.5 - parent: 12 -- proto: TableFancyBlue - entities: - - uid: 30213 - components: - - type: Transform - pos: -2.5,60.5 - parent: 12 -- proto: TableFancyGreen - entities: - - uid: 30206 - components: - - type: Transform - pos: -16.5,62.5 - parent: 12 -- proto: TableFrame - entities: - - uid: 27003 - components: - - type: Transform - pos: -55.5,-13.5 - parent: 12 - - uid: 30485 - components: - - type: Transform - pos: 44.5,-16.5 - parent: 12 -- proto: TableGlass - entities: - - uid: 2524 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-36.5 - parent: 12 - - uid: 2525 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-36.5 - parent: 12 - - uid: 6692 - components: - - type: Transform - pos: 19.5,-38.5 - parent: 12 - - uid: 6693 - components: - - type: Transform - pos: 20.5,-38.5 - parent: 12 - - uid: 6694 - components: - - type: Transform - pos: 21.5,-38.5 - parent: 12 - - uid: 6695 - components: - - type: Transform - pos: 22.5,-38.5 - parent: 12 - - uid: 6696 - components: - - type: Transform - pos: 23.5,-38.5 - parent: 12 - - uid: 6697 - components: - - type: Transform - pos: 24.5,-38.5 - parent: 12 - - uid: 16770 - components: - - type: Transform - pos: -28.5,15.5 - parent: 12 - - uid: 16771 - components: - - type: Transform - pos: -27.5,15.5 - parent: 12 - - uid: 16772 - components: - - type: Transform - pos: -27.5,14.5 - parent: 12 - - uid: 16773 - components: - - type: Transform - pos: -44.5,16.5 - parent: 12 - - uid: 16774 - components: - - type: Transform - pos: -44.5,17.5 - parent: 12 - - uid: 21437 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,32.5 - parent: 12 - - uid: 21438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,32.5 - parent: 12 - - uid: 21439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,32.5 - parent: 12 - - uid: 21440 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,32.5 - parent: 12 - - uid: 21651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,42.5 - parent: 12 - - uid: 21654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,42.5 - parent: 12 - - uid: 21656 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,41.5 - parent: 12 - - uid: 23605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,68.5 - parent: 12 - - uid: 23606 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,68.5 - parent: 12 - - uid: 23607 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,68.5 - parent: 12 -- proto: TableReinforced - entities: - - uid: 88 - components: - - type: Transform - pos: -37.5,52.5 - parent: 12 - - uid: 92 - components: - - type: Transform - pos: -37.5,53.5 - parent: 12 - - uid: 106 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,65.5 - parent: 12 - - uid: 398 - components: - - type: Transform - pos: 63.5,-25.5 - parent: 12 - - uid: 645 - components: - - type: Transform - pos: 58.5,-3.5 - parent: 12 - - uid: 1071 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-43.5 - parent: 12 - - uid: 2473 - components: - - type: Transform - pos: -20.5,-37.5 - parent: 12 - - uid: 2474 - components: - - type: Transform - pos: -21.5,-37.5 - parent: 12 - - uid: 2475 - components: - - type: Transform - pos: -18.5,-39.5 - parent: 12 - - uid: 2476 - components: - - type: Transform - pos: -18.5,-38.5 - parent: 12 - - uid: 4946 - components: - - type: Transform - pos: -18.5,-20.5 - parent: 12 - - uid: 5234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-38.5 - parent: 12 - - uid: 8485 - components: - - type: Transform - pos: 54.5,-23.5 - parent: 12 - - uid: 8486 - components: - - type: Transform - pos: 53.5,-23.5 - parent: 12 - - uid: 8487 - components: - - type: Transform - pos: 52.5,-23.5 - parent: 12 - - uid: 8488 - components: - - type: Transform - pos: 52.5,-30.5 - parent: 12 - - uid: 8843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-28.5 - parent: 12 - - uid: 8848 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-27.5 - parent: 12 - - uid: 8849 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-27.5 - parent: 12 - - uid: 8851 - components: - - type: Transform - pos: 58.5,-11.5 - parent: 12 - - uid: 8869 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-37.5 - parent: 12 - - uid: 8870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-38.5 - parent: 12 - - uid: 8871 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-38.5 - parent: 12 - - uid: 8872 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-38.5 - parent: 12 - - uid: 8938 - components: - - type: Transform - pos: 46.5,-16.5 - parent: 12 - - uid: 9094 - components: - - type: Transform - pos: 42.5,-32.5 - parent: 12 - - uid: 9095 - components: - - type: Transform - pos: 43.5,-32.5 - parent: 12 - - uid: 9096 - components: - - type: Transform - pos: 44.5,-32.5 - parent: 12 - - uid: 9136 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-40.5 - parent: 12 - - uid: 9228 - components: - - type: Transform - pos: 35.5,-39.5 - parent: 12 - - uid: 9229 - components: - - type: Transform - pos: 36.5,-39.5 - parent: 12 - - uid: 9445 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-21.5 - parent: 12 - - uid: 9580 - components: - - type: Transform - pos: -18.5,-21.5 - parent: 12 - - uid: 11368 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,65.5 - parent: 12 - - uid: 12114 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-45.5 - parent: 12 - - uid: 13789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,40.5 - parent: 12 - - uid: 13790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,40.5 - parent: 12 - - uid: 13791 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,35.5 - parent: 12 - - uid: 14191 - components: - - type: Transform - pos: -31.5,11.5 - parent: 12 - - uid: 15182 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,53.5 - parent: 12 - - uid: 15183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,52.5 - parent: 12 - - uid: 15184 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,57.5 - parent: 12 - - uid: 15185 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,58.5 - parent: 12 - - uid: 15917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,12.5 - parent: 12 - - uid: 15918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,12.5 - parent: 12 - - uid: 15919 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,12.5 - parent: 12 - - uid: 15920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,12.5 - parent: 12 - - uid: 15921 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,6.5 - parent: 12 - - uid: 15922 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,6.5 - parent: 12 - - uid: 15923 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,6.5 - parent: 12 - - uid: 15924 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,6.5 - parent: 12 - - uid: 15925 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,6.5 - parent: 12 - - uid: 16390 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-21.5 - parent: 12 - - uid: 16568 - components: - - type: Transform - pos: -11.5,23.5 - parent: 12 - - uid: 16597 - components: - - type: Transform - pos: 63.5,-26.5 - parent: 12 - - uid: 16793 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,20.5 - parent: 12 - - uid: 16794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,20.5 - parent: 12 - - uid: 16795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,20.5 - parent: 12 - - uid: 16802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,24.5 - parent: 12 - - uid: 16803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,24.5 - parent: 12 - - uid: 16804 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,24.5 - parent: 12 - - uid: 17380 - components: - - type: Transform - pos: -49.5,21.5 - parent: 12 - - uid: 17381 - components: - - type: Transform - pos: -49.5,20.5 - parent: 12 - - uid: 17382 - components: - - type: Transform - pos: -49.5,19.5 - parent: 12 - - uid: 17388 - components: - - type: Transform - pos: -42.5,32.5 - parent: 12 - - uid: 17389 - components: - - type: Transform - pos: -41.5,32.5 - parent: 12 - - uid: 17436 - components: - - type: Transform - pos: -28.5,7.5 - parent: 12 - - uid: 19122 - components: - - type: Transform - pos: -25.5,43.5 - parent: 12 - - uid: 19123 - components: - - type: Transform - pos: -25.5,44.5 - parent: 12 - - uid: 19124 - components: - - type: Transform - pos: -25.5,45.5 - parent: 12 - - uid: 19125 - components: - - type: Transform - pos: -24.5,43.5 - parent: 12 - - uid: 19126 - components: - - type: Transform - pos: -24.5,44.5 - parent: 12 - - uid: 19127 - components: - - type: Transform - pos: -24.5,45.5 - parent: 12 - - uid: 19128 - components: - - type: Transform - pos: -31.5,43.5 - parent: 12 - - uid: 19129 - components: - - type: Transform - pos: -31.5,44.5 - parent: 12 - - uid: 19130 - components: - - type: Transform - pos: -26.5,48.5 - parent: 12 - - uid: 19131 - components: - - type: Transform - pos: -27.5,48.5 - parent: 12 - - uid: 19132 - components: - - type: Transform - pos: -28.5,48.5 - parent: 12 - - uid: 19145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,47.5 - parent: 12 - - uid: 19146 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,47.5 - parent: 12 - - uid: 19147 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,47.5 - parent: 12 - - uid: 19192 - components: - - type: Transform - pos: -47.5,57.5 - parent: 12 - - uid: 19368 - components: - - type: Transform - pos: -43.5,32.5 - parent: 12 - - uid: 19818 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-4.5 - parent: 12 - - uid: 19966 - components: - - type: Transform - pos: -19.5,39.5 - parent: 12 - - uid: 21676 - components: - - type: Transform - pos: 37.5,-39.5 - parent: 12 - - uid: 22192 - components: - - type: Transform - pos: -24.5,-42.5 - parent: 12 - - uid: 22536 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-5.5 - parent: 12 - - uid: 22613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,48.5 - parent: 12 - - uid: 22614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,49.5 - parent: 12 - - uid: 22615 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,52.5 - parent: 12 - - uid: 22616 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,54.5 - parent: 12 - - uid: 22617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,50.5 - parent: 12 - - uid: 22618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,53.5 - parent: 12 - - uid: 22619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,54.5 - parent: 12 - - uid: 23577 - components: - - type: Transform - pos: 22.5,56.5 - parent: 12 - - uid: 23578 - components: - - type: Transform - pos: 23.5,56.5 - parent: 12 - - uid: 23579 - components: - - type: Transform - pos: 23.5,57.5 - parent: 12 - - uid: 23620 - components: - - type: Transform - pos: 22.5,66.5 - parent: 12 - - uid: 23889 - components: - - type: Transform - pos: -18.5,-19.5 - parent: 12 - - uid: 25547 - components: - - type: Transform - pos: 57.5,-3.5 - parent: 12 - - uid: 28260 - components: - - type: Transform - pos: -50.5,-12.5 - parent: 12 - - uid: 29118 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-15.5 - parent: 12 - - uid: 29218 - components: - - type: Transform - pos: -26.5,65.5 - parent: 12 - - uid: 29223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,65.5 - parent: 12 - - uid: 29281 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,64.5 - parent: 12 - - uid: 31999 - components: - - type: Transform - pos: -30.5,7.5 - parent: 12 - - uid: 32000 - components: - - type: Transform - pos: -29.5,7.5 - parent: 12 - - uid: 32001 - components: - - type: Transform - pos: -30.5,11.5 - parent: 12 - - uid: 32002 - components: - - type: Transform - pos: -29.5,11.5 - 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 - pos: -35.5,-21.5 - parent: 12 - - uid: 1996 - components: - - type: Transform - pos: -35.5,-20.5 - parent: 12 - - uid: 2271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,27.5 - parent: 12 - - uid: 2373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-60.5 - parent: 12 - - uid: 2374 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-60.5 - parent: 12 - - uid: 2375 - components: - - type: Transform - 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 - pos: -23.5,-58.5 - parent: 12 - - uid: 4091 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,28.5 - parent: 12 - - uid: 4151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,28.5 - parent: 12 - - uid: 4154 - components: - - type: Transform - pos: 13.5,-35.5 - parent: 12 - - uid: 4260 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,29.5 - parent: 12 - - uid: 4481 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,27.5 - parent: 12 - - uid: 4570 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,29.5 - parent: 12 - - uid: 4891 - components: - - type: Transform - pos: 17.5,49.5 - parent: 12 - - uid: 5042 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,30.5 - parent: 12 - - uid: 5709 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,28.5 - parent: 12 - - uid: 5911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,30.5 - parent: 12 - - uid: 6189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-15.5 - parent: 12 - - uid: 6191 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-16.5 - parent: 12 - - uid: 6800 - components: - - type: Transform - pos: 12.5,-35.5 - parent: 12 - - uid: 6801 - components: - - type: Transform - pos: 11.5,-35.5 - parent: 12 - - uid: 7484 - components: - - type: Transform - pos: -55.5,-15.5 - parent: 12 - - uid: 8448 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-11.5 - parent: 12 - - uid: 8449 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-11.5 - parent: 12 - - uid: 8669 - components: - - type: Transform - pos: 13.5,-34.5 - parent: 12 - - uid: 10612 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,2.5 - parent: 12 - - uid: 11682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,0.5 - parent: 12 - - uid: 12396 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,28.5 - parent: 12 - - uid: 12397 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,29.5 - parent: 12 - - uid: 12398 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,29.5 - parent: 12 - - uid: 12399 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,29.5 - parent: 12 - - uid: 12657 - components: - - type: Transform - pos: 49.5,30.5 - parent: 12 - - uid: 12658 - components: - - type: Transform - pos: 47.5,32.5 - parent: 12 - - uid: 12803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,36.5 - parent: 12 - - uid: 12804 - components: - - type: Transform - pos: 56.5,37.5 - parent: 12 - - uid: 12805 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,38.5 - parent: 12 - - uid: 13214 - components: - - type: Transform - pos: 37.5,38.5 - parent: 12 - - uid: 13271 - components: - - type: Transform - pos: 37.5,37.5 - parent: 12 - - uid: 13285 - components: - - type: Transform - pos: 37.5,36.5 - parent: 12 - - uid: 13300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,36.5 - parent: 12 - - uid: 13610 - components: - - type: Transform - pos: 31.5,27.5 - parent: 12 - - uid: 13611 - components: - - type: Transform - pos: 32.5,27.5 - parent: 12 - - uid: 13612 - components: - - type: Transform - pos: 30.5,28.5 - parent: 12 - - uid: 13613 - components: - - type: Transform - pos: 30.5,29.5 - parent: 12 - - uid: 13614 - components: - - type: Transform - pos: 30.5,30.5 - parent: 12 - - uid: 13615 - components: - - type: Transform - pos: 30.5,31.5 - parent: 12 - - uid: 13616 - components: - - type: Transform - pos: 29.5,31.5 - parent: 12 - - uid: 13671 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,27.5 - parent: 12 - - uid: 13672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,28.5 - parent: 12 - - uid: 13673 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,29.5 - parent: 12 - - uid: 13734 - components: - - type: Transform - pos: -21.5,-0.5 - parent: 12 - - uid: 14159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,50.5 - parent: 12 - - uid: 14160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,51.5 - parent: 12 - - uid: 14161 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,52.5 - parent: 12 - - uid: 14162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,53.5 - parent: 12 - - uid: 14163 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,50.5 - parent: 12 - - uid: 14164 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,51.5 - parent: 12 - - uid: 14165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,52.5 - parent: 12 - - uid: 14166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,53.5 - parent: 12 - - uid: 14944 - components: - - type: Transform - pos: 30.5,25.5 - parent: 12 - - uid: 14947 - components: - - type: Transform - pos: 29.5,25.5 - parent: 12 - - uid: 14948 - components: - - type: Transform - pos: 28.5,25.5 - parent: 12 - - uid: 15087 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,51.5 - parent: 12 - - uid: 15089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,51.5 - parent: 12 - - uid: 15536 - components: - - type: Transform - pos: 12.5,36.5 - parent: 12 - - uid: 15658 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,36.5 - parent: 12 - - uid: 15799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,36.5 - parent: 12 - - uid: 16527 - components: - - type: Transform - pos: -19.5,-0.5 - parent: 12 - - uid: 16528 - components: - - type: Transform - pos: -22.5,1.5 - parent: 12 - - uid: 16529 - components: - - type: Transform - pos: -21.5,1.5 - parent: 12 - - uid: 16689 - components: - - type: Transform - pos: -25.5,0.5 - parent: 12 - - uid: 17391 - components: - - type: Transform - pos: -55.5,24.5 - parent: 12 - - uid: 17392 - components: - - type: Transform - pos: -54.5,24.5 - parent: 12 - - uid: 17393 - components: - - type: Transform - pos: -51.5,28.5 - parent: 12 - - uid: 17394 - components: - - type: Transform - pos: -51.5,29.5 - parent: 12 - - uid: 17395 - components: - - type: Transform - pos: -52.5,28.5 - parent: 12 - - uid: 17396 - components: - - type: Transform - pos: -52.5,29.5 - parent: 12 - - uid: 17397 - components: - - type: Transform - pos: -53.5,28.5 - parent: 12 - - uid: 17398 - components: - - type: Transform - pos: -53.5,29.5 - parent: 12 - - uid: 17399 - components: - - type: Transform - pos: -54.5,28.5 - parent: 12 - - uid: 17400 - components: - - type: Transform - pos: -54.5,29.5 - parent: 12 - - uid: 17401 - components: - - type: Transform - pos: -55.5,33.5 - parent: 12 - - uid: 17402 - components: - - type: Transform - pos: -53.5,34.5 - parent: 12 - - uid: 17403 - components: - - type: Transform - pos: -52.5,34.5 - parent: 12 - - uid: 17630 - components: - - type: Transform - pos: -49.5,34.5 - parent: 12 - - uid: 18841 - components: - - type: Transform - pos: -44.5,22.5 - parent: 12 - - uid: 18842 - components: - - type: Transform - pos: -44.5,21.5 - parent: 12 - - uid: 18843 - components: - - type: Transform - pos: -43.5,21.5 - parent: 12 - - uid: 18844 - components: - - type: Transform - pos: -42.5,21.5 - parent: 12 - - uid: 19666 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,73.5 - parent: 12 - - uid: 19674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,78.5 - parent: 12 - - uid: 19675 - components: - - type: Transform - pos: -7.5,78.5 - parent: 12 - - uid: 21432 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,30.5 - parent: 12 - - uid: 21433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,29.5 - parent: 12 - - uid: 21434 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,29.5 - parent: 12 - - uid: 21435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,29.5 - parent: 12 - - uid: 21436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,30.5 - parent: 12 - - uid: 21956 - components: - - type: Transform - pos: 7.5,56.5 - parent: 12 - - uid: 23362 - components: - - type: Transform - pos: 7.5,57.5 - parent: 12 - - uid: 24220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,57.5 - parent: 12 - - uid: 24222 - components: - - type: Transform - pos: 57.5,44.5 - parent: 12 - - uid: 25938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,36.5 - parent: 12 - - uid: 25939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,39.5 - parent: 12 - - uid: 25940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,39.5 - parent: 12 - - uid: 26228 - components: - - 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: 27502 - components: - - type: Transform - pos: -54.5,61.5 - parent: 12 - - uid: 28203 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: -13.5,72.5 - parent: 12 - - uid: 30308 - components: - - type: Transform - pos: -7.5,77.5 - parent: 12 - - uid: 30310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,77.5 - parent: 12 - - uid: 30312 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,78.5 - parent: 12 - - uid: 30313 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,77.5 - parent: 12 - - uid: 30321 - components: - - type: Transform - pos: -14.5,73.5 - parent: 12 - - uid: 31686 - components: - - type: Transform - pos: 24.5,-28.5 - parent: 12 -- proto: TargetClown - entities: - - uid: 22647 - components: - - type: Transform - pos: 7.5,55.5 - parent: 12 -- proto: TargetDarts - entities: - - uid: 15015 - components: - - type: Transform - pos: 23.5,54.5 - parent: 12 -- proto: TargetHuman - entities: - - uid: 22648 - components: - - type: Transform - pos: 15.5,55.5 - parent: 12 - - uid: 22649 - components: - - type: Transform - pos: 15.5,56.5 - parent: 12 - - uid: 22650 - components: - - type: Transform - pos: 15.5,57.5 - parent: 12 - - uid: 22651 - components: - - type: Transform - pos: 15.5,58.5 - parent: 12 -- proto: TargetStrange - entities: - - uid: 29213 - components: - - type: Transform - pos: -31.5,62.5 - parent: 12 -- proto: TargetSyndicate - entities: - - uid: 2327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,69.5 - parent: 12 -- proto: TearGasGrenade - entities: - - uid: 21420 - components: - - type: Transform - pos: -35.60724,36.500904 - parent: 12 - - uid: 23882 - components: - - type: Transform - pos: -38.73839,51.40591 - parent: 12 - - uid: 29279 - components: - - type: Transform - pos: -26.433537,65.77221 - parent: 12 -- proto: TechnologyDisk - entities: - - uid: 17617 - components: - - type: Transform - pos: -53.092888,29.632576 - parent: 12 - - uid: 17779 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: -49.624176,36.475533 - parent: 12 -- proto: TegCenter - entities: - - uid: 4969 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,15.5 - parent: 12 -- proto: TegCirculator - entities: - - 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 - pos: 10.5,15.5 - parent: 12 - - type: PointLight - color: '#FF3300FF' -- proto: TelecomServerCircuitboard - entities: - - uid: 15800 - components: - - type: Transform - pos: 33.433434,-6.6018057 - parent: 12 - - uid: 30021 - components: - - type: Transform - pos: 41.658985,-38.227173 - parent: 12 -- proto: TelecomServerFilledCargo - entities: - - uid: 21873 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 12 -- proto: TelecomServerFilledCommand - entities: - - uid: 21872 - components: - - type: Transform - pos: 39.5,-4.5 - parent: 12 -- proto: TelecomServerFilledCommon - entities: - - uid: 21883 - components: - - type: Transform - pos: 34.5,-4.5 - parent: 12 -- proto: TelecomServerFilledEngineering - entities: - - uid: 21941 - components: - - type: Transform - pos: 35.5,-7.5 - parent: 12 -- proto: TelecomServerFilledMedical - entities: - - uid: 21882 - components: - - type: Transform - pos: 35.5,-4.5 - parent: 12 -- proto: TelecomServerFilledScience - entities: - - uid: 21891 - components: - - type: Transform - pos: 36.5,-4.5 - parent: 12 -- proto: TelecomServerFilledSecurity - entities: - - uid: 21947 - components: - - type: Transform - pos: 38.5,-4.5 - parent: 12 -- proto: TelecomServerFilledService - entities: - - uid: 21892 - components: - - type: Transform - pos: 36.5,-7.5 - parent: 12 -- proto: TeslaCoilFlatpack - entities: - - uid: 24193 - components: - - type: Transform - parent: 24085 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 24218 - components: - - type: Transform - parent: 24085 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 24223 - components: - - type: Transform - parent: 24085 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 24224 - components: - - type: Transform - parent: 24085 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 24225 - components: - - type: Transform - parent: 24085 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: TeslaGenerator - entities: - - uid: 24322 - components: - - type: Transform - pos: 60.5,12.5 - parent: 12 -- proto: TeslaGroundingRodFlatpack - entities: - - uid: 25027 - components: - - type: Transform - parent: 24702 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25038 - components: - - type: Transform - parent: 24702 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25101 - components: - - type: Transform - parent: 24702 - - type: Physics - 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 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: 2.7921197,11.371174 - parent: 12 - - uid: 23708 - components: - - type: Transform - pos: 34.83687,45.725594 - parent: 12 -- proto: ThermomachineHeaterMachineCircuitBoard - entities: - - uid: 1917 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: 2.927537,11.631771 - parent: 12 - - uid: 23707 - components: - - type: Transform - pos: 34.119343,45.374737 - parent: 12 -- proto: Thruster - entities: - - uid: 30010 - components: - - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: -24.5,-12.5 - parent: 12 - - type: Physics - bodyType: Dynamic - - uid: 30011 - components: - - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: -24.5,-11.5 - parent: 12 - - type: Physics - bodyType: Dynamic - - uid: 30012 - components: - - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: -24.5,-10.5 - parent: 12 - - type: Physics - bodyType: Dynamic -- proto: ThrusterMachineCircuitboard - entities: - - uid: 6689 - components: - - type: Transform - pos: 40.402355,-39.235535 - parent: 12 -- proto: TobaccoSeeds - entities: - - uid: 12309 - components: - - type: Transform - pos: 28.44084,14.530041 - parent: 12 -- proto: ToiletDirtyWater - entities: - - uid: 4218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-31.5 - parent: 12 - - uid: 4219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-32.5 - parent: 12 - - uid: 18308 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,0.5 - parent: 12 - - uid: 19875 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,50.5 - parent: 12 - - type: DisposalUnit - nextFlush: 0 - recentlyEjected: - - 20881 - - type: Toilet - toggleSeat: True - - type: ContainerContainer - containers: - stash: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - disposals: !type:Container - showEnts: False - occludes: True - ents: - - 20881 - - uid: 22410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,53.5 - parent: 12 - - uid: 22411 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,54.5 - parent: 12 - - uid: 26160 - components: - - type: Transform - pos: 33.5,-9.5 - parent: 12 -- proto: ToiletEmpty - entities: - - uid: 4220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-32.5 - parent: 12 - - uid: 4221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-31.5 - parent: 12 -- proto: ToiletGoldenDirtyWater - entities: - - uid: 24697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,21.5 - parent: 12 -- proto: ToolboxArtistic - entities: - - uid: 30239 - components: - - type: MetaData - desc: A green box, stocked with artistic supplies. - name: green toolbox - - type: Transform - rot: -18.84955592153876 rad - pos: -10.490579,61.431656 - parent: 12 -- proto: ToolboxArtisticFilled - entities: - - uid: 9368 - components: - - type: Transform - pos: 45.5,-39.5 - parent: 12 - - uid: 23671 - components: - - type: Transform - pos: 44.476997,50.463966 - parent: 12 -- proto: ToolboxElectricalFilled - entities: - - uid: 2259 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: 1.41712,11.464989 - parent: 12 - - uid: 3586 - components: - - type: Transform - pos: 3.5046568,-11.922848 - parent: 12 - - uid: 5910 - components: - - type: Transform - pos: 33.354294,-17.272806 - parent: 12 - - uid: 8880 - components: - - type: Transform - pos: 60.595146,-18.256506 - parent: 12 - - uid: 9251 - components: - - type: Transform - pos: 18.534632,-20.51731 - parent: 12 - - uid: 16472 - components: - - type: Transform - pos: -7.5195446,10.430849 - parent: 12 - - uid: 22272 - components: - - type: Transform - pos: 35.611034,46.54325 - parent: 12 - - uid: 23672 - components: - - type: Transform - pos: 44.683693,53.537926 - parent: 12 - - uid: 28763 - components: - - type: Transform - rot: -56.54866776461632 rad - pos: 53.41125,-2.412424 - parent: 12 -- proto: ToolboxEmergencyFilled - entities: - - uid: 6826 - components: - - type: Transform - pos: 20.550642,-38.45991 - parent: 12 - - uid: 8804 - components: - - type: Transform - parent: 21468 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8874 - components: - - type: Transform - pos: 79.54402,-38.46053 - parent: 12 - - uid: 9250 - components: - - type: Transform - pos: 18.472132,-20.845434 - parent: 12 - - uid: 16473 - components: - - type: Transform - pos: -7.4882946,10.899599 - parent: 12 - - uid: 17620 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -52.066868,29.698263 - parent: 12 - - uid: 23615 - components: - - type: Transform - pos: 17.45795,68.52991 - parent: 12 - - uid: 23714 - components: - - type: Transform - pos: 35.34186,46.713737 - parent: 12 - - uid: 25006 - components: - - 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 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -31.455828,7.5626955 - parent: 12 -- proto: ToolboxMechanical - entities: - - uid: 30240 - components: - - type: MetaData - name: blue toolbox - - type: Transform - rot: -18.84955592153876 rad - pos: -7.5198565,62.42224 - parent: 12 -- proto: ToolboxMechanicalFilled - entities: - - uid: 1834 - components: - - type: Transform - pos: -46.53791,-40.44164 - parent: 12 - - uid: 2021 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: 1.6879535,11.527533 - parent: 12 - - uid: 5912 - components: - - type: Transform - rot: -43.98229715025713 rad - pos: 33.372475,-18.152294 - parent: 12 - - uid: 8875 - components: - - type: Transform - pos: 60.386814,-18.548174 - parent: 12 - - uid: 9252 - components: - - type: Transform - pos: 18.534632,-20.23606 - parent: 12 - - uid: 10378 - components: - - type: Transform - pos: -21.524883,-4.3788953 - parent: 12 - - uid: 11488 - components: - - type: Transform - pos: 35.4026,46.314083 - parent: 12 - - uid: 16474 - components: - - type: Transform - pos: -7.477878,11.357933 - parent: 12 - - uid: 23673 - components: - - type: Transform - pos: 44.414978,53.78571 - parent: 12 - - uid: 24488 - components: - - type: Transform - pos: 28.518238,66.46742 - parent: 12 - - uid: 25007 - components: - - type: Transform - pos: 6.466095,64.461784 - parent: 12 - - uid: 27261 - components: - - type: Transform - pos: -12.50413,2.5674837 - parent: 12 - - uid: 28764 - components: - - type: Transform - rot: -56.54866776461632 rad - pos: 53.68279,-2.6386967 - parent: 12 - - uid: 29211 - components: - - type: Transform - pos: -35.649364,-37.429424 - parent: 12 -- proto: ToyAi - entities: - - uid: 2245 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: -0.5161767,-20.22085 - parent: 12 -- proto: ToyAmongPequeno - entities: - - uid: 21968 - components: - - type: Transform - pos: -35.497643,-17.508585 - parent: 12 -- proto: ToyFigurineAtmosTech - entities: - - uid: 20884 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 29.576431,3.8167615 - parent: 12 -- proto: ToyFigurineBartender - entities: - - uid: 23405 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 32.037792,51.57379 - parent: 12 -- proto: ToyFigurineBotanist - entities: - - uid: 24128 - components: - - type: Transform - pos: 58.407543,47.57981 - parent: 12 -- proto: ToyFigurineBoxer - entities: - - uid: 23406 - components: - - type: Transform - pos: 7.5589,50.673088 - parent: 12 -- proto: ToyFigurineCaptain - entities: - - uid: 17414 - components: - - type: Transform - pos: -51.457073,16.604168 - parent: 12 -- proto: ToyFigurineCargoTech - entities: - - uid: 8465 - components: - - type: Transform - pos: 55.42755,-10.459919 - parent: 12 -- proto: ToyFigurineChaplain - entities: - - uid: 12618 - components: - - type: Transform - pos: 57.535824,36.64035 - parent: 12 - - uid: 23411 - components: - - type: Transform - pos: 44.56461,30.560648 - parent: 12 -- proto: ToyFigurineChef - entities: - - uid: 23407 - components: - - type: Transform - pos: 30.490204,57.618847 - parent: 12 -- proto: ToyFigurineChemist - entities: - - uid: 2296 - components: - - type: Transform - pos: -27.955936,-41.470757 - parent: 12 -- proto: ToyFigurineChiefMedicalOfficer - entities: - - uid: 2580 - components: - - type: Transform - pos: -12.340767,-38.31962 - parent: 12 -- proto: ToyFigurineClown - entities: - - uid: 23404 - components: - - type: Transform - pos: 4.7258263,55.89063 - parent: 12 -- proto: ToyFigurineDetective - entities: - - uid: 13645 - components: - - type: Transform - pos: 30.744976,29.73289 - parent: 12 -- proto: ToyFigurineEngineer - entities: - - uid: 23410 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 33.349148,-23.356699 - parent: 12 -- proto: ToyFigurineFootsoldier - entities: - - uid: 28262 - components: - - type: Transform - pos: -50.37458,-12.641233 - parent: 12 -- proto: ToyFigurineGreytider - entities: - - uid: 23408 - components: - - type: Transform - pos: 51.45895,20.528276 - parent: 12 -- proto: ToyFigurineHeadOfPersonnel - entities: - - uid: 7 - components: - - type: Transform - pos: -42.99539,21.60738 - parent: 12 -- proto: ToyFigurineHeadOfSecurity - entities: - - uid: 23415 - components: - - type: Transform - pos: -43.042988,32.72761 - parent: 12 -- proto: ToyFigurineJanitor - entities: - - uid: 12619 - components: - - type: Transform - pos: 46.734783,18.325827 - parent: 12 -- proto: ToyFigurineLawyer - entities: - - uid: 21512 - components: - - type: Transform - pos: -22.049986,1.6989818 - parent: 12 -- proto: ToyFigurineLibrarian - entities: - - uid: 19651 - components: - - type: Transform - pos: -14.046109,73.55794 - parent: 12 -- proto: ToyFigurineMedicalDoctor - entities: - - uid: 2497 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: -19.476633,-39.26552 - parent: 12 -- proto: ToyFigurineMime - entities: - - uid: 22695 - components: - - type: Transform - pos: 4.221625,55.89063 - parent: 12 -- proto: ToyFigurineMouse - entities: - - uid: 23532 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 30.535233,18.578392 - parent: 12 -- proto: ToyFigurineParamedic - entities: - - uid: 23413 - components: - - type: Transform - pos: -19.34429,-46.24264 - parent: 12 -- proto: ToyFigurineQuartermaster - entities: - - uid: 20792 - components: - - type: Transform - pos: 48.020992,-11.095634 - parent: 12 -- proto: ToyFigurineSalvage - entities: - - uid: 8796 - components: - - type: Transform - pos: 58.499386,-29.362505 - parent: 12 -- proto: ToyFigurineScientist - entities: - - uid: 22713 - components: - - type: Transform - pos: -40.45849,-38.662132 - parent: 12 -- proto: ToyFigurineSecurity - entities: - - uid: 23414 - components: - - type: Transform - pos: -36.515564,37.74329 - parent: 12 -- proto: ToyFigurineSpaceDragon - entities: - - uid: 30387 - components: - - type: Transform - pos: -7.5318594,78.67872 - parent: 12 -- proto: ToyFigurineWarden - entities: - - uid: 23416 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -39.49372,55.609993 - parent: 12 -- proto: ToyFigurineWizardFake - entities: - - uid: 23409 - components: - - type: Transform - pos: 54.946606,29.060595 - parent: 12 -- proto: ToyHammer - entities: - - uid: 8949 - components: - - type: Transform - parent: 8948 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ToyIan - entities: - - uid: 18870 - components: - - type: Transform - pos: -42.788445,21.45383 - parent: 12 -- proto: ToyMouse - entities: - - uid: 11335 - components: - - type: Transform - pos: 16.91232,-34.916046 - parent: 12 -- proto: ToyRipley - entities: - - uid: 30399 - components: - - type: Transform - pos: -10.483892,77.98857 - parent: 12 -- proto: ToyRubberDuck - entities: - - uid: 5249 - components: - - type: Transform - pos: -39.435356,-15.409752 - parent: 12 - - uid: 22045 - components: - - type: Transform - pos: -4.8123198,56.303818 - parent: 12 - - uid: 22046 - components: - - type: Transform - pos: 9.564649,-29.475578 - parent: 12 -- proto: ToySpawner - entities: - - uid: 8489 - components: - - type: Transform - pos: -24.5,29.5 - parent: 12 - - uid: 25732 - components: - - type: Transform - pos: -14.5,20.5 - parent: 12 - - uid: 30314 - components: - - type: Transform - pos: -10.5,77.5 - parent: 12 -- proto: ToySword - entities: - - uid: 6295 - components: - - type: Transform - parent: 28254 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: TrashBag - entities: - - uid: 4162 - components: - - type: Transform - pos: 8.241522,-50.91528 - parent: 12 - - uid: 21371 - components: - - type: Transform - pos: -26.5,51.5 - parent: 12 -- proto: TrashBakedBananaPeel - entities: - - uid: 26132 - components: - - type: Transform - pos: -1.5,21.5 - parent: 12 - - uid: 31148 - components: - - type: Transform - pos: -29.534164,-55.470924 - parent: 12 -- proto: TrashBananaPeel - entities: - - uid: 9367 - components: - - type: MetaData - desc: You have no idea what masochist would make such a thing. - name: modern art - - type: Transform - pos: 46.452984,-40.49026 - parent: 12 - - uid: 9991 - components: - - type: Transform - pos: -10.732155,21.411549 - parent: 12 - - uid: 22690 - components: - - type: Transform - pos: 4.289193,59.401295 - parent: 12 - - uid: 31502 - components: - - type: Transform - pos: -18.454344,-11.28492 - parent: 12 - - uid: 31503 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -19.50675,-15.356455 - parent: 12 -- proto: trayScanner - entities: - - uid: 28715 - components: - - type: Transform - pos: 52.670685,1.6892309 - parent: 12 -- proto: TrumpetInstrument - entities: - - uid: 26216 - components: - - type: Transform - pos: -27.510485,56.533825 - parent: 12 -- proto: TwoWayLever - entities: - - uid: 7537 - components: - - type: Transform - pos: 57.5,-11.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 7748: - - Left: Forward - - Right: Reverse - - Middle: Off - 7749: - - Left: Forward - - Right: Reverse - - Middle: Off - 7750: - - Left: Forward - - Right: Reverse - - Middle: Off - 7751: - - Left: Forward - - Right: Reverse - - Middle: Off - 7752: - - Left: Forward - - Right: Reverse - - Middle: Off - 7753: - - Left: Forward - - Right: Reverse - - Middle: Off - 7754: - - Left: Forward - - Right: Reverse - - Middle: Off - 7755: - - Left: Forward - - Right: Reverse - - Middle: Off - 7756: - - Left: Forward - - Right: Reverse - - Middle: Off - 7757: - - Left: Forward - - Right: Reverse - - Middle: Off - 7758: - - Left: Forward - - Right: Reverse - - Middle: Off - 7759: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 7760 - components: - - type: Transform - pos: 56.5,-11.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 7723: - - Left: Forward - - Right: Reverse - - Middle: Off - 7574: - - Left: Forward - - Right: Reverse - - Middle: Off - 7736: - - Left: Forward - - Right: Reverse - - Middle: Off - 7738: - - Left: Forward - - Right: Reverse - - Middle: Off - 7737: - - Left: Forward - - Right: Reverse - - Middle: Off - 7726: - - Left: Forward - - Right: Reverse - - Middle: Off - 7744: - - Left: Forward - - Right: Reverse - - Middle: Off - 7743: - - Left: Forward - - Right: Reverse - - Middle: Off - 7725: - - Left: Forward - - Right: Reverse - - Middle: Off - 7740: - - Left: Forward - - Right: Reverse - - Middle: Off - 7741: - - Left: Forward - - Right: Reverse - - Middle: Off - 7742: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 7798 - components: - - type: Transform - pos: 48.5,-20.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 7813: - - Left: Forward - - Right: Reverse - - Middle: Off - 7814: - - Left: Forward - - Right: Reverse - - Middle: Off - 12199: - - Left: Forward - - Right: Reverse - - Middle: Off - 7815: - - Left: Forward - - Right: Reverse - - Middle: Off - 7812: - - Left: Forward - - Right: Reverse - - Middle: Off - 12227: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 8015 - components: - - type: Transform - pos: 57.5,-36.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 7502: - - Left: Forward - - Right: Reverse - - Middle: Off - 7955: - - Left: Forward - - Right: Reverse - - Middle: Off - 6186: - - Left: Forward - - Right: Reverse - - Middle: Off - 7989: - - Left: Forward - - Right: Reverse - - Middle: Off - 8001: - - Left: Forward - - Right: Reverse - - Middle: Off - 8002: - - Left: Forward - - Right: Reverse - - Middle: Off - 8003: - - Left: Forward - - Right: Reverse - - Middle: Off - 8004: - - Left: Forward - - Right: Reverse - - Middle: Off - 8005: - - Left: Forward - - Right: Reverse - - Middle: Off - 8006: - - Left: Forward - - Right: Reverse - - Middle: Off - 8007: - - Left: Forward - - Right: Reverse - - Middle: Off - 8008: - - Left: Forward - - Right: Reverse - - Middle: Off - 8009: - - Left: Forward - - Right: Reverse - - Middle: Off - 8010: - - Left: Forward - - Right: Reverse - - Middle: Off - 8011: - - Left: Forward - - Right: Reverse - - Middle: Off - 8012: - - Left: Forward - - Right: Reverse - - Middle: Off - 8013: - - Left: Forward - - Right: Reverse - - Middle: Off - 8014: - - Left: Forward - - Right: Reverse - - Middle: Off - 4231: - - Left: Reverse - - Right: Forward - - Middle: Off - - uid: 8016 - components: - - type: Transform - pos: 75.5,-36.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 8014: - - Left: Forward - - Right: Reverse - - Middle: Off - 8013: - - Left: Forward - - Right: Reverse - - Middle: Off - 8012: - - Left: Forward - - Right: Reverse - - Middle: Off - 8011: - - Left: Forward - - Right: Reverse - - Middle: Off - 8010: - - Left: Forward - - Right: Reverse - - Middle: Off - 8009: - - Left: Forward - - Right: Reverse - - Middle: Off - 8008: - - Left: Forward - - Right: Reverse - - Middle: Off - 8007: - - Left: Forward - - Right: Reverse - - Middle: Off - 8006: - - Left: Forward - - Right: Reverse - - Middle: Off - 8005: - - Left: Forward - - Right: Reverse - - Middle: Off - 8004: - - Left: Forward - - Right: Reverse - - Middle: Off - 8002: - - Left: Forward - - Right: Reverse - - Middle: Off - 7989: - - Left: Forward - - Right: Reverse - - Middle: Off - 6186: - - Left: Forward - - Right: Reverse - - Middle: Off - 7955: - - Left: Forward - - Right: Reverse - - Middle: Off - 7502: - - Left: Forward - - Right: Reverse - - Middle: Off - 8003: - - Left: Forward - - Right: Reverse - - Middle: Off - 8001: - - Left: Forward - - Right: Reverse - - Middle: Off - 4231: - - Left: Reverse - - Right: Forward - - Middle: Off - - uid: 11984 - components: - - type: Transform - pos: 37.5,16.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 11972: - - Left: Forward - - Middle: Off - - Right: Forward - 11973: - - Left: Forward - - Middle: Off - - Right: Forward - 11974: - - Left: Forward - - Middle: Off - - Right: Forward - 11975: - - Left: Forward - - Middle: Off - - Right: Forward - 11976: - - Left: Forward - - Middle: Off - - Right: Forward - 11959: - - Left: Forward - - Right: Reverse - - Middle: Off - 11960: - - Left: Forward - - Right: Reverse - - Middle: Off - 11977: - - Left: Forward - - Right: Reverse - - Middle: Off - 11518: - - Left: Forward - - Right: Reverse - - Middle: Off - 11519: - - Left: Forward - - Right: Reverse - - Middle: Off - 11531: - - Left: Forward - - Right: Reverse - - Middle: Off - 11529: - - Left: Forward - - Right: Reverse - - Middle: Off - 11532: - - Left: Forward - - Right: Reverse - - Middle: Off - 11533: - - Left: Forward - - Right: Reverse - - Middle: Off - 11534: - - Left: Forward - - Right: Reverse - - Middle: Off - 11497: - - Left: Forward - - Right: Reverse - - Middle: Off - 11958: - - Left: Forward - - Right: Reverse - - Middle: Off - 22312: - - Left: Forward - - Right: Reverse - - Middle: Off - 11507: - - Left: Forward - - Right: Reverse - - Middle: Off - 4241: - - Left: Reverse - - Right: Forward - - Middle: Off - 9556: - - Left: Forward - - Right: Reverse - - Middle: Off - 11528: - - Left: Forward - - Right: Reverse - - Middle: Off - 11499: - - Left: Forward - - Right: Reverse - - Middle: Off - 12123: - - Left: Forward - - Right: Reverse - - Middle: Off - 2489: - - Left: Forward - - Middle: Off - - Right: Forward - - uid: 12085 - components: - - type: Transform - pos: 51.5,16.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 12083: - - Left: Forward - - Right: Reverse - - Middle: Off - 12082: - - Left: Forward - - Right: Reverse - - Middle: Off - 12081: - - Left: Forward - - Right: Reverse - - Middle: Off - 12079: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 12127 - components: - - type: Transform - pos: 78.5,-38.5 - parent: 12 - - uid: 12615 - components: - - type: Transform - pos: 56.5,39.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 12614: - - Left: Open - - Right: Open - - Middle: Close - 12613: - - Left: Forward - - Right: Reverse - - Middle: Off - 12612: - - Left: Forward - - Right: Reverse - - Middle: Off - 12611: - - Left: Forward - - Right: Reverse - - Middle: Off - 12610: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 12924 - components: - - type: Transform - pos: -25.5,-28.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 11491: - - Left: Open - - Right: Open - - Middle: Close - 22278: - - Left: Open - - Right: Open - - Middle: Close - - uid: 13969 - components: - - type: Transform - pos: 33.5,7.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 12632: - - Left: Forward - - Right: Reverse - - Middle: Off - 12633: - - Left: Forward - - Right: Reverse - - Middle: Off - 12290: - - Left: Forward - - Right: Reverse - - Middle: Off - 22295: - - 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 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-53.5 - parent: 12 -- proto: UniformPrinter - entities: - - uid: 18661 - components: - - type: Transform - pos: -37.5,23.5 - parent: 12 -- proto: UniformShortsRed - entities: - - uid: 22475 - components: - - type: MetaData - desc: Warrenty void if product comes in contact with dihydrogen monoxide. - name: swimming shorts - - type: Transform - parent: 22473 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22485 - components: - - type: MetaData - desc: Warrenty void if product comes in contact with dihydrogen monoxide. - name: swimming shorts - - type: Transform - parent: 22480 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22627 - components: - - type: Transform - pos: 10.5,48.5 - parent: 12 - - uid: 22628 - components: - - type: Transform - pos: 7.5,53.5 - parent: 12 -- proto: UniformShortsRedWithTop - entities: - - uid: 22479 - components: - - type: MetaData - desc: Warrenty void if product comes in contact with dihydrogen monoxide. - name: swimming shorts with top - - type: Transform - parent: 22473 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22484 - components: - - type: MetaData - desc: Warrenty void if product comes in contact with dihydrogen monoxide. - name: swimming shorts with top - - type: Transform - parent: 22480 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22629 - components: - - type: Transform - pos: 7.5,54.5 - parent: 12 - - uid: 22630 - components: - - type: Transform - pos: 10.5,49.5 - parent: 12 -- proto: UprightPianoInstrument - entities: - - uid: 12617 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,42.5 - parent: 12 - - uid: 12624 - components: - - type: Transform - pos: 43.5,27.5 - parent: 12 -- proto: Vaccinator - entities: - - uid: 2777 - components: - - type: Transform - pos: -13.5,-60.5 - parent: 12 -- proto: VariantCubeBox - entities: - - uid: 2750 - components: - - type: Transform - parent: 3959 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11141 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 11.85181,-35.51286 - parent: 12 -- proto: VendingBarDrobe - entities: - - uid: 23509 - components: - - type: Transform - pos: 38.5,57.5 - parent: 12 -- proto: VendingMachineAtmosDrobe - entities: - - uid: 23887 - components: - - type: Transform - pos: 29.5,6.5 - parent: 12 -- proto: VendingMachineBooze - entities: - - uid: 14989 - components: - - 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 - components: - - type: Transform - pos: 63.5,-23.5 - parent: 12 -- proto: VendingMachineCart - entities: - - uid: 2109 - components: - - type: Transform - pos: -36.5,23.5 - parent: 12 -- proto: VendingMachineChapel - entities: - - uid: 13320 - components: - - type: Transform - pos: 42.5,27.5 - parent: 12 -- proto: VendingMachineChefDrobe - entities: - - uid: 23508 - components: - - type: Transform - pos: 39.5,57.5 - parent: 12 -- proto: VendingMachineChefvend - entities: - - uid: 23506 - components: - - type: Transform - pos: 32.5,58.5 - parent: 12 -- proto: VendingMachineChemDrobe - entities: - - uid: 2285 - components: - - type: Transform - pos: -25.5,-41.5 - parent: 12 -- proto: VendingMachineChemicals - entities: - - uid: 2289 - components: - - type: Transform - pos: -32.5,-41.5 - parent: 12 -- proto: VendingMachineCigs - entities: - - uid: 6831 - components: - - type: Transform - pos: 24.5,-34.5 - parent: 12 - - uid: 7793 - components: - - type: Transform - pos: 35.5,22.5 - parent: 12 - - uid: 13146 - components: - - type: Transform - pos: 47.5,1.5 - parent: 12 - - uid: 14992 - components: - - type: Transform - pos: 26.5,39.5 - parent: 12 - - uid: 16783 - components: - - type: Transform - pos: -27.5,19.5 - parent: 12 - - uid: 21614 - components: - - type: Transform - pos: -24.5,38.5 - parent: 12 - - uid: 22637 - components: - - type: Transform - pos: 15.5,54.5 - parent: 12 - - uid: 31561 - components: - - type: Transform - pos: 46.5,-32.5 - parent: 12 -- proto: VendingMachineClothing - entities: - - uid: 9091 - components: - - type: Transform - pos: 40.5,-32.5 - parent: 12 - - uid: 21765 - components: - - type: Transform - pos: -11.5,56.5 - parent: 12 - - uid: 22374 - components: - - type: Transform - pos: -14.5,56.5 - parent: 12 -- proto: VendingMachineCoffee - entities: - - uid: 3802 - components: - - type: Transform - pos: -23.5,-53.5 - parent: 12 - - uid: 4037 - components: - - type: Transform - pos: -34.5,-26.5 - parent: 12 - - uid: 5523 - components: - - type: Transform - pos: 31.5,-6.5 - parent: 12 - - uid: 6830 - components: - - type: Transform - pos: 19.5,-34.5 - parent: 12 - - uid: 14991 - components: - - type: Transform - pos: 17.5,45.5 - parent: 12 - - uid: 18876 - components: - - type: Transform - pos: -50.5,28.5 - parent: 12 - - uid: 21276 - components: - - type: Transform - pos: -23.5,47.5 - parent: 12 - - uid: 21615 - components: - - type: Transform - pos: -25.5,38.5 - parent: 12 - - uid: 31814 - components: - - type: Transform - pos: -8.5,68.5 - parent: 12 -- proto: VendingMachineCola - entities: - - uid: 6292 - components: - - type: Transform - pos: -7.5,66.5 - parent: 12 - - uid: 18878 - components: - - type: Transform - pos: -39.5,25.5 - parent: 12 - - uid: 25485 - components: - - type: Transform - pos: -30.5,38.5 - parent: 12 -- proto: VendingMachineCondiments - entities: - - uid: 15077 - components: - - type: Transform - pos: 24.5,49.5 - parent: 12 - - uid: 15178 - components: - - type: Transform - pos: 29.5,53.5 - parent: 12 -- proto: VendingMachineCuraDrobe - entities: - - uid: 30397 - components: - - type: Transform - pos: -15.5,71.5 - parent: 12 -- proto: VendingMachineDetDrobe - entities: - - uid: 13626 - components: - - type: Transform - pos: 32.5,33.5 - parent: 12 -- proto: VendingMachineDinnerware - entities: - - uid: 23507 - components: - - type: Transform - pos: 32.5,59.5 - parent: 12 -- proto: VendingMachineDiscount - entities: - - uid: 1827 - components: - - type: Transform - pos: -23.5,48.5 - parent: 12 - - uid: 2522 - components: - - type: Transform - pos: -19.5,-32.5 - parent: 12 - - uid: 4310 - components: - - type: Transform - pos: -17.5,-28.5 - parent: 12 - - uid: 6832 - components: - - type: Transform - pos: 25.5,-36.5 - parent: 12 - - uid: 17459 - components: - - type: Transform - pos: -15.5,45.5 - parent: 12 -- proto: VendingMachineDonut - entities: - - uid: 20930 - components: - - type: Transform - pos: -33.5,42.5 - parent: 12 -- proto: VendingMachineDrGibb - entities: - - uid: 2523 - components: - - type: Transform - pos: -18.5,-32.5 - parent: 12 - - uid: 4312 - components: - - type: Transform - pos: -17.5,-27.5 - parent: 12 - - uid: 18877 - components: - - type: Transform - pos: -38.5,25.5 - parent: 12 - - uid: 21275 - components: - - type: Transform - pos: -23.5,46.5 - parent: 12 - - uid: 21662 - components: - - type: Transform - pos: -16.5,45.5 - parent: 12 - - uid: 22402 - components: - - type: Transform - pos: 15.5,45.5 - parent: 12 -- proto: VendingMachineEngiDrobe - entities: - - uid: 5522 - components: - - type: Transform - pos: 8.5,-20.5 - parent: 12 - - uid: 5884 - components: - - type: Transform - pos: 29.5,-20.5 - parent: 12 -- proto: VendingMachineEngivend - entities: - - uid: 10144 - components: - - type: Transform - pos: 16.5,-19.5 - parent: 12 - - uid: 27006 - components: - - type: Transform - pos: 32.5,-23.5 - parent: 12 - - uid: 28697 - components: - - type: Transform - pos: 55.5,2.5 - parent: 12 -- proto: VendingMachineGames - entities: - - uid: 2035 - components: - - type: Transform - pos: 44.5,39.5 - parent: 12 - - uid: 19681 - components: - - type: Transform - pos: -4.5,78.5 - parent: 12 - - uid: 21392 - components: - - type: Transform - pos: -30.5,46.5 - parent: 12 - - uid: 25955 - components: - - type: Transform - pos: 12.5,59.5 - parent: 12 -- proto: VendingMachineGeneDrobe - entities: - - uid: 3947 - components: - - type: Transform - pos: -0.5,-44.5 - parent: 12 -- proto: VendingMachineHappyHonk - entities: - - uid: 32236 - components: - - type: Transform - pos: 39.5,45.5 - parent: 12 -- proto: VendingMachineHydrobe - entities: - - uid: 10333 - components: - - type: Transform - pos: 62.5,42.5 - parent: 12 -- proto: VendingMachineJaniDrobe - entities: - - uid: 12260 - components: - - type: Transform - pos: 45.5,21.5 - parent: 12 -- proto: VendingMachineLawDrobe - entities: - - uid: 30267 - components: - - type: Transform - pos: -24.5,0.5 - parent: 12 -- proto: VendingMachineMedical - entities: - - uid: 2471 - components: - - type: Transform - pos: -23.5,-38.5 - parent: 12 - - uid: 8876 - components: - - type: Transform - pos: -5.5,-47.5 - parent: 12 - - uid: 13799 - components: - - type: Transform - pos: 26.5,35.5 - parent: 12 - - uid: 21330 - components: - - type: Transform - pos: -13.5,-32.5 - parent: 12 - - uid: 26230 - components: - - type: Transform - pos: -23.5,-47.5 - parent: 12 -- proto: VendingMachineMediDrobe - entities: - - uid: 4090 - components: - - type: Transform - pos: -3.5,-47.5 - parent: 12 -- proto: VendingMachineNutri - entities: - - uid: 24020 - components: - - type: Transform - pos: 63.5,50.5 - parent: 12 - - uid: 24021 - components: - - type: Transform - pos: 77.5,45.5 - parent: 12 -- proto: VendingMachineRestockDiscountDans - entities: - - uid: 4311 - components: - - 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 - components: - - type: Transform - pos: 43.546677,16.572775 - parent: 12 -- proto: VendingMachineRoboDrobe - entities: - - uid: 12354 - components: - - type: Transform - pos: -23.5,-27.5 - parent: 12 -- proto: VendingMachineRobotics - entities: - - uid: 289 - components: - - type: Transform - pos: -26.5,-31.5 - parent: 12 -- proto: VendingMachineSalvage - entities: - - uid: 8738 - components: - - type: Transform - pos: 54.5,-35.5 - parent: 12 -- proto: VendingMachineSciDrobe - entities: - - uid: 1955 - components: - - type: Transform - pos: -46.5,-38.5 - parent: 12 - - uid: 2004 - components: - - type: Transform - pos: -28.5,-28.5 - parent: 12 -- proto: VendingMachineSec - entities: - - uid: 20883 - components: - - type: Transform - pos: -44.5,40.5 - parent: 12 -- proto: VendingMachineSecDrobe - entities: - - uid: 20886 - components: - - type: Transform - pos: -41.5,42.5 - parent: 12 -- proto: VendingMachineSeeds - entities: - - uid: 23723 - components: - - type: Transform - pos: 74.5,42.5 - parent: 12 - - uid: 23724 - components: - - type: Transform - pos: 74.5,55.5 - parent: 12 -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 21362 - components: - - 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 - components: - - type: Transform - pos: 17.5,44.5 - parent: 12 - - uid: 16784 - components: - - type: Transform - pos: -29.5,19.5 - parent: 12 - - uid: 17112 - components: - - type: Transform - pos: 0.5,47.5 - parent: 12 - - uid: 18871 - components: - - type: Transform - pos: -37.5,25.5 - parent: 12 - - uid: 18875 - components: - - type: Transform - pos: -50.5,29.5 - parent: 12 -- proto: VendingMachineSnackBlue - entities: - - uid: 14921 - components: - - type: Transform - pos: -7.5,58.5 - parent: 12 -- proto: VendingMachineSnackGreen - entities: - - uid: 1806 - components: - - type: Transform - pos: -28.5,-31.5 - parent: 12 - - uid: 21692 - components: - - type: Transform - pos: -12.5,66.5 - parent: 12 -- proto: VendingMachineSoda - entities: - - uid: 17113 - components: - - type: Transform - pos: 5.5,47.5 - parent: 12 -- proto: VendingMachineSovietSoda - entities: - - uid: 14953 - components: - - type: Transform - pos: 3.5,-59.5 - parent: 12 - - uid: 25011 - components: - - type: Transform - pos: 10.5,68.5 - parent: 12 -- proto: VendingMachineSpaceUp - entities: - - uid: 21691 - components: - - type: Transform - pos: -12.5,58.5 - parent: 12 -- proto: VendingMachineSustenance - entities: - - uid: 21229 - components: - - type: Transform - pos: -31.5,51.5 - parent: 12 -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 26870 - components: - - type: Transform - pos: 10.5,-13.5 - parent: 12 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 565 - components: - - type: Transform - pos: 24.5,7.5 - parent: 12 - - uid: 8454 - components: - - type: Transform - pos: 59.5,-3.5 - parent: 12 - - uid: 12059 - components: - - type: Transform - pos: 55.5,-31.5 - parent: 12 - - uid: 16412 - components: - - type: Transform - pos: -8.5,12.5 - parent: 12 - - uid: 20554 - components: - - type: Transform - pos: -44.5,50.5 - parent: 12 - - uid: 27024 - components: - - type: Transform - pos: 8.5,-8.5 - parent: 12 -- proto: VendingMachineTheater - entities: - - uid: 21770 - components: - - type: Transform - pos: -8.5,56.5 - parent: 12 - - uid: 22721 - components: - - type: Transform - pos: 5.5,59.5 - parent: 12 -- proto: VendingMachineVendomat - entities: - - uid: 1958 - components: - - type: Transform - pos: -33.5,-37.5 - parent: 12 - - uid: 5524 - components: - - type: Transform - pos: 8.5,-19.5 - parent: 12 - - uid: 9092 - components: - - type: Transform - pos: 46.5,-31.5 - parent: 12 - - uid: 12630 - components: - - type: Transform - pos: 35.5,47.5 - parent: 12 - - uid: 23651 - components: - - type: Transform - pos: 48.5,52.5 - parent: 12 -- proto: VendingMachineViroDrobe - entities: - - uid: 2788 - components: - - type: Transform - pos: -11.5,-58.5 - parent: 12 -- proto: VendingMachineWallMedical - entities: - - uid: 5244 - components: - - type: Transform - pos: 1.5,-35.5 - parent: 12 -- proto: VendingMachineWinter - entities: - - uid: 21769 - components: - - type: Transform - pos: -11.5,53.5 - parent: 12 -- proto: VendingMachineYouTool - entities: - - uid: 5525 - components: - - type: Transform - pos: 17.5,-19.5 - parent: 12 - - uid: 9093 - components: - - type: Transform - pos: 46.5,-30.5 - parent: 12 - - uid: 23660 - components: - - type: Transform - pos: 43.5,49.5 - parent: 12 - - uid: 28696 - components: - - type: Transform - pos: 55.5,1.5 - parent: 12 -- proto: ViolaInstrument - entities: - - uid: 30418 - components: - - type: Transform - pos: -6.552923,72.52522 - parent: 12 -- proto: WallmountTelescreen - entities: - - uid: 13618 - components: - - type: Transform - pos: 29.5,31.5 - parent: 12 -- proto: WallmountTelevision - entities: - - uid: 5134 - components: - - type: Transform - pos: 37.5,-24.5 - parent: 12 - - uid: 6297 - components: - - type: Transform - pos: -8.5,-25.5 - parent: 12 - - uid: 8885 - components: - - type: Transform - pos: 37.5,13.5 - parent: 12 - - uid: 17664 - components: - - type: Transform - pos: -48.5,35.5 - parent: 12 -- proto: WallReinforced - entities: - - uid: 13 - components: - - 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 - pos: 52.5,67.5 - parent: 12 - - uid: 29 - components: - - type: Transform - pos: -4.5,1.5 - parent: 12 - - uid: 30 - components: - - type: Transform - pos: -4.5,2.5 - parent: 12 - - uid: 31 - components: - - type: Transform - pos: -4.5,3.5 - parent: 12 - - uid: 32 - components: - - type: Transform - pos: -4.5,4.5 - parent: 12 - - uid: 33 - components: - - type: Transform - pos: -4.5,5.5 - parent: 12 - - uid: 34 - components: - - type: Transform - pos: -3.5,5.5 - parent: 12 - - uid: 35 - components: - - type: Transform - pos: -2.5,5.5 - parent: 12 - - uid: 36 - components: - - type: Transform - pos: -1.5,5.5 - parent: 12 - - uid: 37 - components: - - type: Transform - pos: -0.5,5.5 - parent: 12 - - uid: 38 - components: - - type: Transform - pos: 0.5,5.5 - parent: 12 - - uid: 39 - components: - - type: Transform - pos: 1.5,5.5 - parent: 12 - - uid: 40 - components: - - type: Transform - pos: 2.5,5.5 - parent: 12 - - uid: 41 - components: - - type: Transform - pos: 3.5,5.5 - parent: 12 - - uid: 42 - components: - - type: Transform - pos: 3.5,4.5 - parent: 12 - - uid: 43 - components: - - type: Transform - pos: 3.5,3.5 - parent: 12 - - uid: 44 - components: - - type: Transform - pos: 3.5,2.5 - parent: 12 - - uid: 45 - components: - - type: Transform - pos: 3.5,1.5 - parent: 12 - - uid: 46 - components: - - type: Transform - pos: 3.5,0.5 - parent: 12 - - uid: 48 - components: - - type: Transform - pos: -4.5,-2.5 - parent: 12 - - uid: 49 - components: - - type: Transform - pos: -4.5,-1.5 - parent: 12 - - uid: 50 - components: - - type: Transform - pos: -4.5,-0.5 - parent: 12 - - uid: 52 - components: - - type: Transform - pos: 3.5,-1.5 - parent: 12 - - uid: 53 - components: - - type: Transform - pos: 3.5,-2.5 - parent: 12 - - uid: 61 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,6.5 - parent: 12 - - uid: 76 - components: - - type: Transform - pos: -32.5,12.5 - parent: 12 - - uid: 77 - components: - - type: Transform - pos: -31.5,12.5 - parent: 12 - - uid: 95 - components: - - type: Transform - pos: 45.5,-9.5 - parent: 12 - - uid: 109 - components: - - type: Transform - pos: 7.5,-5.5 - parent: 12 - - uid: 116 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-4.5 - parent: 12 - - uid: 117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-3.5 - parent: 12 - - uid: 119 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-3.5 - parent: 12 - - uid: 121 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-3.5 - parent: 12 - - uid: 122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-4.5 - parent: 12 - - uid: 123 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-3.5 - parent: 12 - - uid: 124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-4.5 - parent: 12 - - uid: 125 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-3.5 - parent: 12 - - uid: 126 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-3.5 - parent: 12 - - uid: 127 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-3.5 - parent: 12 - - uid: 128 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-3.5 - parent: 12 - - uid: 130 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-4.5 - parent: 12 - - uid: 131 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-4.5 - parent: 12 - - uid: 133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-5.5 - parent: 12 - - uid: 134 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-5.5 - parent: 12 - - uid: 137 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-5.5 - parent: 12 - - uid: 139 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-7.5 - parent: 12 - - uid: 140 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-8.5 - parent: 12 - - uid: 141 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-8.5 - parent: 12 - - uid: 142 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-8.5 - parent: 12 - - uid: 143 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-8.5 - parent: 12 - - uid: 144 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-7.5 - parent: 12 - - uid: 150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-9.5 - parent: 12 - - uid: 151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 12 - - uid: 152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-9.5 - parent: 12 - - uid: 154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-9.5 - parent: 12 - - uid: 155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 12 - - uid: 156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 12 - - uid: 157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 12 - - uid: 158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-9.5 - parent: 12 - - uid: 160 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-9.5 - parent: 12 - - uid: 163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-10.5 - parent: 12 - - uid: 164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-10.5 - parent: 12 - - uid: 165 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-9.5 - parent: 12 - - uid: 166 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 12 - - uid: 167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-12.5 - parent: 12 - - uid: 168 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-12.5 - parent: 12 - - uid: 169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-11.5 - parent: 12 - - uid: 170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-13.5 - parent: 12 - - uid: 171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-13.5 - parent: 12 - - uid: 172 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-13.5 - parent: 12 - - uid: 173 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-13.5 - parent: 12 - - uid: 182 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-15.5 - parent: 12 - - uid: 183 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-14.5 - parent: 12 - - uid: 184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-16.5 - parent: 12 - - uid: 186 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-16.5 - parent: 12 - - uid: 187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-16.5 - parent: 12 - - uid: 188 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-15.5 - parent: 12 - - uid: 189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-14.5 - parent: 12 - - uid: 196 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-16.5 - parent: 12 - - uid: 197 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-16.5 - parent: 12 - - uid: 198 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-16.5 - parent: 12 - - uid: 200 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-16.5 - parent: 12 - - uid: 201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-16.5 - parent: 12 - - uid: 202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-16.5 - parent: 12 - - uid: 204 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-17.5 - parent: 12 - - uid: 205 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-17.5 - parent: 12 - - uid: 206 - components: - - type: Transform - pos: 7.5,27.5 - parent: 12 - - uid: 227 - components: - - type: Transform - pos: 6.5,27.5 - parent: 12 - - uid: 232 - components: - - type: Transform - pos: -55.5,13.5 - parent: 12 - - uid: 249 - components: - - type: Transform - pos: 56.5,12.5 - parent: 12 - - uid: 263 - components: - - type: Transform - pos: 62.5,-0.5 - parent: 12 - - uid: 282 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-13.5 - parent: 12 - - uid: 320 - components: - - 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 - pos: -30.5,-7.5 - parent: 12 - - uid: 382 - components: - - type: Transform - pos: -30.5,-9.5 - parent: 12 - - uid: 386 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-1.5 - parent: 12 - - uid: 388 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-11.5 - parent: 12 - - uid: 389 - components: - - type: Transform - pos: -30.5,-3.5 - parent: 12 - - uid: 394 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-11.5 - parent: 12 - - uid: 396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-11.5 - parent: 12 - - uid: 399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-11.5 - parent: 12 - - uid: 401 - components: - - type: Transform - pos: 23.5,-14.5 - parent: 12 - - uid: 403 - components: - - type: Transform - pos: 9.5,4.5 - parent: 12 - - uid: 406 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-7.5 - parent: 12 - - uid: 411 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-11.5 - parent: 12 - - uid: 412 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,0.5 - parent: 12 - - uid: 418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,0.5 - parent: 12 - - uid: 419 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,0.5 - parent: 12 - - uid: 438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,3.5 - parent: 12 - - uid: 439 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,4.5 - parent: 12 - - uid: 440 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,4.5 - parent: 12 - - uid: 457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-17.5 - parent: 12 - - uid: 469 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,0.5 - parent: 12 - - uid: 470 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,0.5 - parent: 12 - - uid: 471 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,0.5 - parent: 12 - - uid: 516 - components: - - type: Transform - pos: -33.5,-17.5 - parent: 12 - - uid: 517 - components: - - type: Transform - pos: -34.5,-17.5 - parent: 12 - - uid: 518 - components: - - type: Transform - pos: -34.5,-18.5 - parent: 12 - - uid: 532 - components: - - type: Transform - pos: -27.5,-32.5 - parent: 12 - - uid: 537 - components: - - type: Transform - pos: -26.5,-32.5 - parent: 12 - - uid: 538 - components: - - type: Transform - pos: -25.5,-32.5 - parent: 12 - - uid: 539 - components: - - type: Transform - pos: -24.5,-32.5 - parent: 12 - - uid: 551 - components: - - type: Transform - pos: -13.5,-25.5 - parent: 12 - - uid: 569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,6.5 - parent: 12 - - uid: 572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,6.5 - parent: 12 - - uid: 575 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,6.5 - parent: 12 - - uid: 576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,6.5 - parent: 12 - - uid: 580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,6.5 - parent: 12 - - uid: 581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,6.5 - parent: 12 - - uid: 585 - components: - - type: Transform - pos: -34.5,-19.5 - parent: 12 - - uid: 586 - components: - - type: Transform - pos: -36.5,-18.5 - parent: 12 - - uid: 587 - components: - - type: Transform - pos: -35.5,-18.5 - parent: 12 - - uid: 588 - components: - - type: Transform - pos: -34.5,-22.5 - parent: 12 - - uid: 598 - components: - - type: Transform - pos: -34.5,-23.5 - parent: 12 - - uid: 599 - components: - - type: Transform - pos: -34.5,-25.5 - parent: 12 - - uid: 600 - components: - - type: Transform - pos: -35.5,-25.5 - parent: 12 - - uid: 602 - components: - - type: Transform - pos: -39.5,-25.5 - parent: 12 - - uid: 603 - components: - - type: Transform - pos: -40.5,-25.5 - parent: 12 - - uid: 604 - components: - - type: Transform - pos: -41.5,-25.5 - parent: 12 - - uid: 605 - components: - - type: Transform - pos: -41.5,-24.5 - parent: 12 - - uid: 606 - components: - - type: Transform - pos: -41.5,-22.5 - parent: 12 - - uid: 607 - components: - - type: Transform - pos: -41.5,-21.5 - parent: 12 - - uid: 608 - components: - - type: Transform - pos: -42.5,-21.5 - parent: 12 - - uid: 612 - components: - - type: Transform - pos: -47.5,16.5 - parent: 12 - - uid: 613 - components: - - 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: 633 - components: - - type: Transform - pos: -40.5,-20.5 - parent: 12 - - uid: 635 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,60.5 - parent: 12 - - uid: 642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-11.5 - parent: 12 - - uid: 648 - components: - - type: Transform - pos: -35.5,-29.5 - parent: 12 - - uid: 649 - components: - - type: Transform - pos: -31.5,-29.5 - parent: 12 - - uid: 650 - components: - - type: Transform - pos: -35.5,-33.5 - parent: 12 - - uid: 651 - components: - - type: Transform - pos: -31.5,-33.5 - parent: 12 - - uid: 677 - components: - - type: Transform - pos: 67.5,-4.5 - parent: 12 - - uid: 685 - components: - - type: Transform - pos: -50.5,-24.5 - parent: 12 - - uid: 694 - components: - - type: Transform - pos: 39.5,-10.5 - parent: 12 - - uid: 709 - components: - - type: Transform - pos: -51.5,-24.5 - parent: 12 - - uid: 712 - components: - - type: Transform - pos: -53.5,-24.5 - parent: 12 - - uid: 713 - components: - - type: Transform - pos: -54.5,-24.5 - parent: 12 - - uid: 718 - components: - - type: Transform - pos: -51.5,-28.5 - parent: 12 - - uid: 719 - components: - - type: Transform - pos: -52.5,-28.5 - parent: 12 - - uid: 720 - components: - - type: Transform - pos: -53.5,-28.5 - parent: 12 - - uid: 721 - components: - - type: Transform - pos: -54.5,-28.5 - parent: 12 - - uid: 722 - components: - - type: Transform - pos: -55.5,-28.5 - parent: 12 - - uid: 723 - components: - - type: Transform - pos: 39.5,-8.5 - parent: 12 - - uid: 736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-20.5 - parent: 12 - - uid: 737 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-20.5 - parent: 12 - - uid: 738 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-20.5 - parent: 12 - - uid: 739 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-20.5 - parent: 12 - - uid: 740 - components: - - type: Transform - pos: -55.5,-20.5 - parent: 12 - - uid: 741 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-20.5 - parent: 12 - - uid: 743 - components: - - type: Transform - pos: -56.5,22.5 - parent: 12 - - uid: 747 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-31.5 - parent: 12 - - uid: 751 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-20.5 - parent: 12 - - uid: 775 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-18.5 - parent: 12 - - uid: 776 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-19.5 - parent: 12 - - uid: 777 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-20.5 - parent: 12 - - uid: 787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-20.5 - parent: 12 - - uid: 812 - components: - - type: Transform - pos: -44.5,-21.5 - parent: 12 - - uid: 813 - components: - - type: Transform - pos: -43.5,-21.5 - parent: 12 - - uid: 814 - components: - - type: Transform - pos: -43.5,-18.5 - parent: 12 - - uid: 837 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-49.5 - parent: 12 - - uid: 838 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-49.5 - parent: 12 - - uid: 865 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-32.5 - parent: 12 - - uid: 866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-33.5 - parent: 12 - - uid: 870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-39.5 - parent: 12 - - uid: 873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-40.5 - parent: 12 - - uid: 901 - components: - - type: Transform - pos: 26.5,-5.5 - parent: 12 - - uid: 903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,5.5 - parent: 12 - - uid: 923 - components: - - type: Transform - pos: 26.5,-4.5 - parent: 12 - - uid: 945 - components: - - type: Transform - pos: -46.5,-54.5 - parent: 12 - - uid: 949 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-11.5 - parent: 12 - - uid: 1001 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-48.5 - parent: 12 - - uid: 1002 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-48.5 - parent: 12 - - uid: 1003 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-45.5 - parent: 12 - - uid: 1004 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,8.5 - parent: 12 - - uid: 1017 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-40.5 - parent: 12 - - uid: 1018 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-37.5 - parent: 12 - - uid: 1034 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-45.5 - parent: 12 - - uid: 1035 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-45.5 - parent: 12 - - uid: 1036 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-45.5 - parent: 12 - - uid: 1045 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-49.5 - parent: 12 - - uid: 1046 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-50.5 - parent: 12 - - uid: 1047 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-51.5 - parent: 12 - - uid: 1057 - components: - - type: Transform - pos: -47.5,52.5 - parent: 12 - - uid: 1058 - components: - - type: Transform - pos: -47.5,51.5 - parent: 12 - - uid: 1075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,21.5 - parent: 12 - - uid: 1124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,50.5 - parent: 12 - - uid: 1167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-17.5 - parent: 12 - - uid: 1285 - components: - - type: Transform - pos: 52.5,-38.5 - parent: 12 - - uid: 1356 - components: - - type: Transform - pos: 25.5,-11.5 - parent: 12 - - uid: 1363 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-13.5 - parent: 12 - - uid: 1501 - components: - - type: Transform - pos: -54.5,-45.5 - parent: 12 - - uid: 1549 - components: - - 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 - pos: 26.5,-10.5 - parent: 12 - - uid: 1557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,0.5 - parent: 12 - - uid: 1612 - components: - - type: Transform - pos: -38.5,61.5 - parent: 12 - - uid: 1840 - components: - - type: Transform - pos: -54.5,-41.5 - parent: 12 - - uid: 1877 - components: - - type: Transform - 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 - pos: -54.5,-42.5 - parent: 12 - - uid: 2010 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,2.5 - parent: 12 - - uid: 2051 - components: - - type: Transform - pos: -54.5,-43.5 - parent: 12 - - uid: 2052 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,11.5 - parent: 12 - - uid: 2151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 12 - - uid: 2169 - components: - - type: Transform - pos: 26.5,1.5 - parent: 12 - - uid: 2173 - components: - - type: Transform - pos: 16.5,-14.5 - parent: 12 - - uid: 2184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,0.5 - parent: 12 - - uid: 2256 - components: - - type: Transform - pos: 24.5,-11.5 - parent: 12 - - uid: 2260 - components: - - type: Transform - 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 - pos: 26.5,-9.5 - parent: 12 - - uid: 2273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-1.5 - parent: 12 - - uid: 2275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 12 - - uid: 2328 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-40.5 - parent: 12 - - uid: 2372 - components: - - 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 - rot: 3.141592653589793 rad - pos: -18.5,-37.5 - parent: 12 - - uid: 2528 - components: - - type: Transform - pos: 17.5,-14.5 - parent: 12 - - uid: 2556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-40.5 - parent: 12 - - uid: 2557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-39.5 - parent: 12 - - uid: 2564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-36.5 - parent: 12 - - uid: 2565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-36.5 - parent: 12 - - uid: 2566 - components: - - type: Transform - pos: -47.5,-53.5 - parent: 12 - - uid: 2567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-37.5 - parent: 12 - - uid: 2568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-38.5 - parent: 12 - - uid: 2569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-39.5 - parent: 12 - - uid: 2570 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-40.5 - parent: 12 - - uid: 2571 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-40.5 - parent: 12 - - uid: 2648 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,60.5 - parent: 12 - - uid: 2781 - components: - - type: Transform - pos: 26.5,-1.5 - parent: 12 - - uid: 2797 - components: - - type: Transform - pos: 65.5,54.5 - parent: 12 - - uid: 2808 - components: - - type: Transform - pos: 26.5,0.5 - parent: 12 - - uid: 2875 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,1.5 - parent: 12 - - uid: 2878 - components: - - type: Transform - pos: 63.5,11.5 - parent: 12 - - uid: 2883 - components: - - type: Transform - 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 - pos: 4.5,-35.5 - parent: 12 - - uid: 2996 - components: - - type: Transform - pos: 4.5,-31.5 - parent: 12 - - uid: 2997 - components: - - type: Transform - pos: 2.5,-31.5 - parent: 12 - - uid: 2998 - components: - - type: Transform - pos: 0.5,-31.5 - parent: 12 - - uid: 3000 - components: - - type: Transform - pos: 1.5,-31.5 - parent: 12 - - uid: 3001 - components: - - type: Transform - pos: 3.5,-31.5 - parent: 12 - - uid: 3002 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,10.5 - parent: 12 - - uid: 3006 - components: - - type: Transform - pos: 3.5,-35.5 - parent: 12 - - uid: 3007 - components: - - type: Transform - pos: 4.5,-34.5 - parent: 12 - - uid: 3008 - components: - - type: Transform - pos: 2.5,-35.5 - parent: 12 - - uid: 3010 - components: - - type: Transform - pos: 4.5,-33.5 - parent: 12 - - uid: 3013 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,10.5 - parent: 12 - - uid: 3022 - components: - - type: Transform - pos: 18.5,-14.5 - parent: 12 - - uid: 3090 - components: - - 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 - rot: 3.141592653589793 rad - pos: 52.5,-4.5 - parent: 12 - - uid: 3631 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,9.5 - parent: 12 - - uid: 3778 - components: - - type: Transform - pos: -48.5,-52.5 - parent: 12 - - uid: 3823 - components: - - type: Transform - pos: 13.5,-1.5 - parent: 12 - - uid: 3824 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-7.5 - parent: 12 - - uid: 3941 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 - parent: 12 - - uid: 4109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-18.5 - parent: 12 - - uid: 4165 - components: - - type: Transform - pos: 70.5,-4.5 - parent: 12 - - uid: 4386 - components: - - type: Transform - pos: 57.5,8.5 - parent: 12 - - uid: 4389 - components: - - type: Transform - pos: 5.5,-17.5 - parent: 12 - - uid: 4392 - components: - - type: Transform - pos: -50.5,-51.5 - parent: 12 - - uid: 4403 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,7.5 - parent: 12 - - uid: 4405 - components: - - type: Transform - pos: 34.5,-9.5 - parent: 12 - - uid: 4407 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,7.5 - parent: 12 - - uid: 4408 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,7.5 - parent: 12 - - uid: 4416 - components: - - 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: 7.5,-16.5 - parent: 12 - - uid: 4526 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,48.5 - parent: 12 - - uid: 4529 - components: - - type: Transform - pos: -47.5,-54.5 - parent: 12 - - uid: 4533 - components: - - type: Transform - pos: 7.5,-12.5 - parent: 12 - - uid: 4534 - components: - - type: Transform - pos: 8.5,-12.5 - parent: 12 - - uid: 4535 - components: - - type: Transform - pos: 9.5,-12.5 - parent: 12 - - uid: 4536 - components: - - type: Transform - pos: 10.5,-12.5 - parent: 12 - - uid: 4573 - components: - - type: Transform - pos: 21.5,4.5 - parent: 12 - - uid: 4574 - components: - - type: Transform - pos: 21.5,-12.5 - parent: 12 - - uid: 4592 - components: - - type: Transform - pos: 7.5,-11.5 - parent: 12 - - uid: 4594 - components: - - type: Transform - pos: 7.5,-9.5 - parent: 12 - - uid: 4595 - components: - - type: Transform - pos: 7.5,-8.5 - parent: 12 - - uid: 4596 - components: - - type: Transform - pos: 7.5,-7.5 - parent: 12 - - uid: 4601 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-3.5 - parent: 12 - - uid: 4643 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-7.5 - parent: 12 - - uid: 4649 - components: - - type: Transform - pos: 26.5,-2.5 - parent: 12 - - uid: 4652 - components: - - type: Transform - pos: 24.5,-13.5 - parent: 12 - - uid: 4654 - components: - - type: Transform - pos: 8.5,4.5 - parent: 12 - - uid: 4664 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,21.5 - parent: 12 - - uid: 4680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-3.5 - parent: 12 - - uid: 4682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 12 - - uid: 4685 - components: - - type: Transform - pos: 10.5,4.5 - parent: 12 - - uid: 4714 - components: - - type: Transform - pos: -24.5,56.5 - parent: 12 - - uid: 4768 - components: - - type: Transform - pos: 6.5,-5.5 - parent: 12 - - uid: 4783 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-9.5 - parent: 12 - - uid: 4797 - components: - - type: Transform - pos: 28.5,3.5 - parent: 12 - - uid: 4882 - components: - - type: Transform - pos: -27.5,6.5 - parent: 12 - - uid: 4900 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,2.5 - parent: 12 - - uid: 4902 - components: - - type: Transform - pos: 26.5,-7.5 - parent: 12 - - uid: 4905 - components: - - type: Transform - pos: 37.5,-3.5 - parent: 12 - - uid: 4909 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,2.5 - parent: 12 - - uid: 4911 - components: - - type: Transform - pos: 26.5,-3.5 - parent: 12 - - uid: 4913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-17.5 - parent: 12 - - uid: 4930 - components: - - type: Transform - pos: 26.5,-8.5 - parent: 12 - - uid: 4949 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-9.5 - parent: 12 - - uid: 4955 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: 24.5,-1.5 - parent: 12 - - uid: 4992 - components: - - type: Transform - pos: 11.5,-12.5 - parent: 12 - - uid: 5005 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-9.5 - parent: 12 - - uid: 5007 - components: - - type: Transform - pos: 11.5,4.5 - parent: 12 - - uid: 5009 - components: - - type: Transform - pos: 8.5,-2.5 - parent: 12 - - uid: 5021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-5.5 - parent: 12 - - uid: 5025 - components: - - type: Transform - pos: 23.5,-11.5 - parent: 12 - - uid: 5040 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,53.5 - parent: 12 - - uid: 5044 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,13.5 - parent: 12 - - uid: 5056 - components: - - type: Transform - pos: -55.5,20.5 - parent: 12 - - uid: 5058 - components: - - type: Transform - pos: 28.5,0.5 - parent: 12 - - uid: 5062 - components: - - type: Transform - pos: 32.5,1.5 - parent: 12 - - uid: 5063 - components: - - type: Transform - pos: 32.5,0.5 - parent: 12 - - uid: 5065 - components: - - type: Transform - pos: 32.5,-3.5 - parent: 12 - - uid: 5066 - components: - - type: Transform - pos: 32.5,-4.5 - parent: 12 - - uid: 5068 - components: - - type: Transform - pos: 28.5,-5.5 - parent: 12 - - uid: 5069 - components: - - type: Transform - pos: 28.5,-4.5 - parent: 12 - - uid: 5073 - components: - - type: Transform - pos: 28.5,-11.5 - parent: 12 - - uid: 5074 - components: - - type: Transform - pos: 28.5,-12.5 - parent: 12 - - uid: 5075 - components: - - type: Transform - pos: 28.5,-13.5 - parent: 12 - - uid: 5076 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-0.5 - parent: 12 - - uid: 5099 - components: - - type: Transform - pos: 19.5,-14.5 - parent: 12 - - uid: 5100 - components: - - type: Transform - pos: 19.5,-15.5 - parent: 12 - - uid: 5107 - components: - - type: Transform - pos: 37.5,-4.5 - parent: 12 - - uid: 5112 - components: - - type: Transform - pos: 6.5,-3.5 - parent: 12 - - uid: 5122 - components: - - type: Transform - pos: -27.5,8.5 - parent: 12 - - uid: 5139 - components: - - type: Transform - pos: -45.5,-54.5 - parent: 12 - - uid: 5163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-7.5 - parent: 12 - - uid: 5164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-8.5 - parent: 12 - - uid: 5167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-10.5 - parent: 12 - - uid: 5172 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-12.5 - parent: 12 - - uid: 5189 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-5.5 - parent: 12 - - uid: 5220 - components: - - type: Transform - pos: 8.5,-5.5 - parent: 12 - - uid: 5238 - components: - - type: Transform - pos: 28.5,4.5 - parent: 12 - - uid: 5246 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-50.5 - parent: 12 - - uid: 5256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-17.5 - parent: 12 - - uid: 5257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-17.5 - parent: 12 - - uid: 5258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-17.5 - parent: 12 - - uid: 5259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-17.5 - parent: 12 - - uid: 5260 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-16.5 - parent: 12 - - uid: 5261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-16.5 - parent: 12 - - uid: 5262 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-16.5 - parent: 12 - - uid: 5391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,27.5 - parent: 12 - - uid: 5403 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-0.5 - parent: 12 - - uid: 5443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-19.5 - parent: 12 - - uid: 5445 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-24.5 - parent: 12 - - uid: 5446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-23.5 - parent: 12 - - uid: 5448 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-24.5 - parent: 12 - - uid: 5449 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-24.5 - parent: 12 - - uid: 5450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-24.5 - parent: 12 - - uid: 5451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-24.5 - parent: 12 - - uid: 5452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-23.5 - parent: 12 - - uid: 5453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-22.5 - parent: 12 - - uid: 5454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-21.5 - parent: 12 - - uid: 5455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-20.5 - parent: 12 - - uid: 5456 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-19.5 - parent: 12 - - uid: 5457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-19.5 - parent: 12 - - uid: 5485 - components: - - type: Transform - pos: 63.5,12.5 - parent: 12 - - uid: 5519 - components: - - type: Transform - pos: 34.5,-15.5 - parent: 12 - - uid: 5562 - components: - - type: Transform - pos: 36.5,-21.5 - parent: 12 - - uid: 5563 - components: - - type: Transform - pos: 36.5,-20.5 - parent: 12 - - uid: 5564 - components: - - type: Transform - pos: 36.5,-19.5 - parent: 12 - - uid: 5565 - components: - - type: Transform - pos: 36.5,-18.5 - parent: 12 - - uid: 5566 - components: - - type: Transform - pos: 36.5,-17.5 - parent: 12 - - uid: 5567 - components: - - type: Transform - pos: 36.5,-16.5 - parent: 12 - - uid: 5568 - components: - - type: Transform - pos: 35.5,-16.5 - parent: 12 - - uid: 5628 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-1.5 - parent: 12 - - uid: 5637 - components: - - type: Transform - pos: 28.5,2.5 - parent: 12 - - uid: 5641 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-5.5 - parent: 12 - - uid: 5668 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,7.5 - parent: 12 - - uid: 5680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,7.5 - parent: 12 - - uid: 5802 - components: - - type: Transform - pos: 13.5,6.5 - parent: 12 - - uid: 5830 - components: - - type: Transform - pos: 25.5,-13.5 - parent: 12 - - uid: 5838 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-1.5 - parent: 12 - - uid: 5839 - components: - - type: Transform - pos: 27.5,4.5 - parent: 12 - - uid: 5891 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,14.5 - parent: 12 - - uid: 5904 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,64.5 - parent: 12 - - uid: 5905 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-47.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 - rot: 1.5707963267948966 rad - pos: -41.5,64.5 - parent: 12 - - uid: 5971 - components: - - type: Transform - pos: -30.5,-11.5 - parent: 12 - - uid: 5972 - components: - - type: Transform - pos: -32.5,-11.5 - parent: 12 - - uid: 5973 - components: - - type: Transform - pos: -31.5,-11.5 - parent: 12 - - uid: 5975 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-15.5 - parent: 12 - - uid: 5978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-9.5 - parent: 12 - - uid: 5984 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,64.5 - parent: 12 - - uid: 6014 - components: - - type: Transform - pos: 21.5,-13.5 - parent: 12 - - uid: 6023 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,0.5 - parent: 12 - - uid: 6031 - components: - - type: Transform - pos: 8.5,-4.5 - parent: 12 - - uid: 6081 - components: - - type: Transform - pos: -33.5,-16.5 - parent: 12 - - uid: 6127 - components: - - type: Transform - pos: 19.5,-39.5 - parent: 12 - - uid: 6136 - components: - - type: Transform - pos: 24.5,-39.5 - parent: 12 - - uid: 6199 - components: - - 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: -61.5,-16.5 - parent: 12 - - uid: 6327 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-43.5 - parent: 12 - - uid: 6329 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-43.5 - parent: 12 - - uid: 6330 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-43.5 - parent: 12 - - uid: 6331 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-43.5 - parent: 12 - - uid: 6332 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-42.5 - parent: 12 - - uid: 6333 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-41.5 - parent: 12 - - uid: 6338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-43.5 - parent: 12 - - uid: 6762 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,1.5 - parent: 12 - - uid: 6763 - components: - - type: Transform - pos: 44.5,-9.5 - parent: 12 - - uid: 6766 - components: - - type: Transform - pos: 26.5,-0.5 - parent: 12 - - uid: 6889 - components: - - type: Transform - pos: 23.5,-15.5 - parent: 12 - - uid: 6893 - components: - - type: Transform - pos: 28.5,-6.5 - parent: 12 - - uid: 7200 - components: - - type: Transform - pos: 8.5,0.5 - parent: 12 - - uid: 7216 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,8.5 - parent: 12 - - uid: 7232 - components: - - type: Transform - pos: 23.5,-13.5 - parent: 12 - - uid: 7243 - components: - - type: Transform - pos: 8.5,-1.5 - parent: 12 - - uid: 7252 - components: - - type: Transform - pos: 26.5,-13.5 - parent: 12 - - uid: 7271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-10.5 - parent: 12 - - uid: 7278 - components: - - type: Transform - pos: 5.5,19.5 - parent: 12 - - uid: 7286 - components: - - type: Transform - pos: 44.5,2.5 - parent: 12 - - uid: 7308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,8.5 - parent: 12 - - uid: 7316 - components: - - type: Transform - pos: 38.5,-7.5 - parent: 12 - - uid: 7317 - components: - - type: Transform - pos: 39.5,-7.5 - parent: 12 - - uid: 7318 - components: - - type: Transform - pos: 40.5,-7.5 - parent: 12 - - uid: 7335 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,18.5 - parent: 12 - - uid: 7336 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,16.5 - parent: 12 - - uid: 7363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-9.5 - parent: 12 - - uid: 7414 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-30.5 - parent: 12 - - uid: 7415 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-31.5 - parent: 12 - - uid: 7416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-32.5 - parent: 12 - - uid: 7417 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-33.5 - parent: 12 - - uid: 7418 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-34.5 - parent: 12 - - uid: 7419 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-35.5 - parent: 12 - - uid: 7420 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-36.5 - parent: 12 - - uid: 7421 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-37.5 - parent: 12 - - uid: 7422 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-38.5 - parent: 12 - - uid: 7427 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-38.5 - parent: 12 - - uid: 7428 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-37.5 - parent: 12 - - uid: 7429 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-36.5 - parent: 12 - - uid: 7430 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-35.5 - parent: 12 - - uid: 7432 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-34.5 - parent: 12 - - uid: 7433 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-34.5 - parent: 12 - - uid: 7434 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-33.5 - parent: 12 - - uid: 7436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-31.5 - parent: 12 - - uid: 7437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-30.5 - parent: 12 - - uid: 7438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-21.5 - parent: 12 - - uid: 7478 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-41.5 - parent: 12 - - uid: 7479 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-41.5 - parent: 12 - - uid: 7487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-45.5 - parent: 12 - - uid: 7488 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-41.5 - parent: 12 - - uid: 7520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-27.5 - parent: 12 - - uid: 7525 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-7.5 - parent: 12 - - uid: 7526 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-8.5 - parent: 12 - - uid: 7527 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-9.5 - parent: 12 - - uid: 7532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-9.5 - parent: 12 - - uid: 7535 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-11.5 - parent: 12 - - uid: 7536 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-12.5 - parent: 12 - - uid: 7550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-11.5 - parent: 12 - - uid: 7559 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,55.5 - parent: 12 - - uid: 7565 - components: - - type: Transform - pos: -9.5,-4.5 - parent: 12 - - uid: 7571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-6.5 - parent: 12 - - uid: 7575 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-22.5 - parent: 12 - - uid: 7576 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-24.5 - parent: 12 - - uid: 7577 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-23.5 - parent: 12 - - uid: 7578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-25.5 - parent: 12 - - uid: 7583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-27.5 - parent: 12 - - uid: 7587 - components: - - type: Transform - pos: 39.5,-13.5 - parent: 12 - - uid: 7590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-31.5 - parent: 12 - - uid: 7591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-31.5 - parent: 12 - - uid: 7592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-32.5 - parent: 12 - - uid: 7593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-33.5 - parent: 12 - - uid: 7594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-33.5 - parent: 12 - - uid: 7595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-33.5 - parent: 12 - - uid: 7596 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-33.5 - parent: 12 - - uid: 7597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-36.5 - parent: 12 - - uid: 7598 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-36.5 - parent: 12 - - uid: 7599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-36.5 - parent: 12 - - uid: 7600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-36.5 - parent: 12 - - uid: 7601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-38.5 - parent: 12 - - uid: 7602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-38.5 - parent: 12 - - uid: 7606 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-41.5 - parent: 12 - - uid: 7607 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-40.5 - parent: 12 - - uid: 7608 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-39.5 - parent: 12 - - uid: 7667 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-30.5 - parent: 12 - - uid: 7668 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-29.5 - parent: 12 - - uid: 7669 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-29.5 - parent: 12 - - uid: 7670 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-26.5 - parent: 12 - - uid: 7671 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-26.5 - parent: 12 - - uid: 7672 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-29.5 - parent: 12 - - uid: 7673 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-29.5 - parent: 12 - - uid: 7674 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-30.5 - parent: 12 - - uid: 7675 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-33.5 - parent: 12 - - uid: 7676 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-33.5 - parent: 12 - - uid: 7677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-33.5 - parent: 12 - - uid: 7678 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-33.5 - parent: 12 - - uid: 7679 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-33.5 - parent: 12 - - uid: 7680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-33.5 - parent: 12 - - uid: 7681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-39.5 - parent: 12 - - uid: 7682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-39.5 - parent: 12 - - uid: 7683 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-36.5 - parent: 12 - - uid: 7728 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-17.5 - parent: 12 - - uid: 7729 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-17.5 - parent: 12 - - uid: 7730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-17.5 - parent: 12 - - uid: 7732 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-17.5 - parent: 12 - - uid: 7733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-17.5 - parent: 12 - - uid: 7734 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-18.5 - parent: 12 - - uid: 7739 - components: - - type: Transform - pos: -9.5,-5.5 - parent: 12 - - uid: 7746 - components: - - type: Transform - pos: -9.5,-7.5 - parent: 12 - - uid: 7780 - components: - - type: Transform - pos: -5.5,1.5 - parent: 12 - - uid: 7804 - components: - - type: Transform - pos: -35.5,-50.5 - parent: 12 - - uid: 7805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-8.5 - parent: 12 - - uid: 7843 - components: - - type: Transform - pos: 60.5,1.5 - parent: 12 - - uid: 7844 - components: - - type: Transform - pos: 60.5,0.5 - parent: 12 - - uid: 7845 - components: - - 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: 8435 - components: - - type: Transform - pos: 60.5,-0.5 - parent: 12 - - uid: 8438 - components: - - type: Transform - pos: -9.5,-8.5 - parent: 12 - - uid: 8450 - components: - - type: Transform - pos: -7.5,-13.5 - parent: 12 - - uid: 8455 - components: - - type: Transform - pos: -7.5,-11.5 - parent: 12 - - uid: 8767 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 86.5,-35.5 - parent: 12 - - uid: 8768 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 86.5,-34.5 - parent: 12 - - uid: 8769 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-31.5 - parent: 12 - - uid: 8770 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 86.5,-31.5 - parent: 12 - - uid: 8771 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-38.5 - parent: 12 - - uid: 8772 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-38.5 - parent: 12 - - uid: 8788 - components: - - type: Transform - pos: 66.5,-4.5 - parent: 12 - - uid: 8817 - components: - - 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 - rot: 3.141592653589793 rad - pos: 24.5,-3.5 - parent: 12 - - uid: 8959 - components: - - type: Transform - pos: 31.5,1.5 - parent: 12 - - uid: 8968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-15.5 - parent: 12 - - uid: 8979 - components: - - type: Transform - 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 - rot: 1.5707963267948966 rad - pos: 61.5,-4.5 - parent: 12 - - uid: 9015 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-4.5 - parent: 12 - - uid: 9041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-6.5 - parent: 12 - - uid: 9053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,23.5 - parent: 12 - - uid: 9054 - components: - - type: Transform - pos: 10.5,19.5 - parent: 12 - - uid: 9058 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,7.5 - parent: 12 - - uid: 9067 - components: - - type: Transform - pos: -59.5,36.5 - parent: 12 - - uid: 9072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.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: 9121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,0.5 - parent: 12 - - uid: 9135 - components: - - type: Transform - 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 - rot: 1.5707963267948966 rad - pos: 14.5,8.5 - parent: 12 - - uid: 9308 - components: - - 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 - rot: 3.141592653589793 rad - pos: -10.5,22.5 - parent: 12 - - uid: 9380 - components: - - type: Transform - pos: -8.5,24.5 - parent: 12 - - uid: 9381 - components: - - type: Transform - pos: -8.5,23.5 - parent: 12 - - uid: 9382 - components: - - type: Transform - pos: -12.5,23.5 - parent: 12 - - uid: 9401 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: 64.5,-26.5 - parent: 12 - - uid: 9506 - components: - - type: Transform - pos: -47.5,0.5 - parent: 12 - - uid: 9508 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,20.5 - parent: 12 - - uid: 9512 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,19.5 - parent: 12 - - uid: 9533 - components: - - type: Transform - pos: 62.5,8.5 - parent: 12 - - uid: 9552 - components: - - type: Transform - pos: 39.5,-15.5 - parent: 12 - - uid: 9562 - components: - - type: Transform - pos: 56.5,10.5 - parent: 12 - - uid: 9638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,13.5 - parent: 12 - - uid: 9642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,12.5 - parent: 12 - - uid: 9669 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,21.5 - parent: 12 - - uid: 9675 - components: - - type: Transform - pos: 48.5,7.5 - parent: 12 - - uid: 9704 - components: - - type: Transform - pos: 20.5,8.5 - parent: 12 - - uid: 9715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,23.5 - parent: 12 - - uid: 9729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,10.5 - parent: 12 - - uid: 9750 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-6.5 - parent: 12 - - uid: 9767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 12 - - uid: 9818 - components: - - type: Transform - 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 - pos: -12.5,-70.5 - parent: 12 - - uid: 10041 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,5.5 - parent: 12 - - uid: 10119 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,15.5 - parent: 12 - - uid: 10120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,15.5 - parent: 12 - - uid: 10121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,15.5 - parent: 12 - - uid: 10122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,15.5 - parent: 12 - - uid: 10134 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,3.5 - parent: 12 - - uid: 10135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,3.5 - parent: 12 - - uid: 10136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,3.5 - parent: 12 - - uid: 10137 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,3.5 - parent: 12 - - uid: 10139 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,12.5 - parent: 12 - - uid: 10140 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,12.5 - parent: 12 - - uid: 10142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,6.5 - parent: 12 - - uid: 10143 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,6.5 - parent: 12 - - uid: 10253 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,20.5 - parent: 12 - - uid: 10254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,20.5 - parent: 12 - - uid: 10256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,20.5 - parent: 12 - - uid: 10303 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-41.5 - parent: 12 - - uid: 10309 - components: - - type: Transform - pos: -47.5,-44.5 - parent: 12 - - uid: 10316 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-11.5 - parent: 12 - - uid: 10318 - components: - - type: Transform - pos: -37.5,-50.5 - parent: 12 - - uid: 10322 - components: - - type: Transform - pos: -55.5,-38.5 - parent: 12 - - uid: 10338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-28.5 - parent: 12 - - uid: 10344 - components: - - type: Transform - pos: -56.5,20.5 - parent: 12 - - uid: 10396 - components: - - type: Transform - pos: 50.5,3.5 - parent: 12 - - uid: 10564 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,5.5 - parent: 12 - - uid: 10566 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,7.5 - parent: 12 - - uid: 10567 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,11.5 - parent: 12 - - uid: 10568 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,13.5 - parent: 12 - - uid: 10575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,14.5 - parent: 12 - - uid: 10580 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 12 - - uid: 10581 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,3.5 - parent: 12 - - uid: 10582 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,4.5 - parent: 12 - - uid: 10583 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,4.5 - parent: 12 - - uid: 10584 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,5.5 - parent: 12 - - uid: 10585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,6.5 - parent: 12 - - uid: 10586 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,7.5 - parent: 12 - - uid: 10587 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,8.5 - parent: 12 - - uid: 10589 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,8.5 - parent: 12 - - uid: 10590 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,8.5 - parent: 12 - - uid: 10591 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,8.5 - parent: 12 - - uid: 10593 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,8.5 - parent: 12 - - uid: 10596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,11.5 - parent: 12 - - uid: 10597 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,10.5 - parent: 12 - - uid: 10599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,12.5 - parent: 12 - - uid: 10600 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,13.5 - parent: 12 - - uid: 10601 - components: - - type: Transform - 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 - rot: 1.5707963267948966 rad - pos: 0.5,17.5 - parent: 12 - - uid: 10609 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,18.5 - parent: 12 - - uid: 10614 - components: - - type: Transform - 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 - rot: 1.5707963267948966 rad - pos: 1.5,21.5 - parent: 12 - - uid: 10633 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-50.5 - parent: 12 - - uid: 10639 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,10.5 - parent: 12 - - uid: 10640 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,11.5 - parent: 12 - - uid: 10641 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,12.5 - parent: 12 - - uid: 10642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,12.5 - parent: 12 - - uid: 10643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,13.5 - parent: 12 - - uid: 10644 - components: - - type: Transform - pos: -33.5,-15.5 - parent: 12 - - uid: 10645 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,14.5 - parent: 12 - - uid: 10646 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,15.5 - parent: 12 - - uid: 10647 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,14.5 - parent: 12 - - uid: 10648 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,15.5 - parent: 12 - - uid: 10649 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,15.5 - parent: 12 - - uid: 10650 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,15.5 - parent: 12 - - uid: 10651 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,15.5 - parent: 12 - - uid: 10652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,15.5 - parent: 12 - - uid: 10669 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,20.5 - parent: 12 - - uid: 10670 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,21.5 - parent: 12 - - uid: 10671 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,21.5 - parent: 12 - - uid: 10672 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,21.5 - parent: 12 - - uid: 10673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,21.5 - parent: 12 - - uid: 10674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,21.5 - parent: 12 - - uid: 10689 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,23.5 - parent: 12 - - uid: 10690 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,23.5 - parent: 12 - - uid: 10697 - components: - - type: Transform - pos: -11.5,26.5 - parent: 12 - - uid: 10706 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,62.5 - parent: 12 - - uid: 10716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,22.5 - parent: 12 - - uid: 10720 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,26.5 - parent: 12 - - uid: 10723 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,26.5 - parent: 12 - - uid: 10729 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,22.5 - parent: 12 - - uid: 10730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,32.5 - parent: 12 - - uid: 10731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,24.5 - parent: 12 - - uid: 10732 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,25.5 - parent: 12 - - uid: 10733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,22.5 - parent: 12 - - uid: 10734 - components: - - type: Transform - pos: -9.5,26.5 - parent: 12 - - uid: 10735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,22.5 - parent: 12 - - uid: 10781 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: -3.5,-17.5 - parent: 12 - - uid: 10842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-4.5 - parent: 12 - - uid: 10867 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-5.5 - parent: 12 - - uid: 10890 - components: - - type: Transform - 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 - pos: 37.5,5.5 - parent: 12 - - uid: 10910 - components: - - type: Transform - pos: 38.5,5.5 - parent: 12 - - uid: 10951 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,4.5 - parent: 12 - - uid: 10980 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,11.5 - parent: 12 - - uid: 10984 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,22.5 - parent: 12 - - uid: 11017 - components: - - type: Transform - pos: -29.5,-9.5 - parent: 12 - - uid: 11038 - components: - - type: Transform - pos: 5.5,20.5 - parent: 12 - - uid: 11051 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-4.5 - parent: 12 - - uid: 11132 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,20.5 - parent: 12 - - uid: 11147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,25.5 - parent: 12 - - uid: 11168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,21.5 - parent: 12 - - uid: 11169 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,23.5 - parent: 12 - - uid: 11170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,24.5 - parent: 12 - - uid: 11171 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,25.5 - parent: 12 - - uid: 11172 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,24.5 - parent: 12 - - uid: 11173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,24.5 - parent: 12 - - uid: 11174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,24.5 - parent: 12 - - uid: 11175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,25.5 - parent: 12 - - uid: 11176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,24.5 - parent: 12 - - uid: 11177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,24.5 - parent: 12 - - uid: 11178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,24.5 - parent: 12 - - uid: 11179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,24.5 - parent: 12 - - uid: 11180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,25.5 - parent: 12 - - uid: 11181 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,26.5 - parent: 12 - - uid: 11186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,25.5 - parent: 12 - - uid: 11187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,25.5 - parent: 12 - - uid: 11188 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,26.5 - parent: 12 - - uid: 11189 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,26.5 - parent: 12 - - uid: 11190 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,26.5 - parent: 12 - - uid: 11191 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,26.5 - parent: 12 - - uid: 11192 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,31.5 - parent: 12 - - uid: 11193 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,31.5 - parent: 12 - - uid: 11194 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,31.5 - parent: 12 - - uid: 11195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,31.5 - parent: 12 - - uid: 11196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,31.5 - parent: 12 - - uid: 11197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,30.5 - parent: 12 - - uid: 11198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,27.5 - parent: 12 - - uid: 11217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,29.5 - parent: 12 - - uid: 11218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,29.5 - parent: 12 - - uid: 11219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,29.5 - parent: 12 - - uid: 11222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,29.5 - parent: 12 - - uid: 11225 - components: - - type: Transform - pos: 65.5,-4.5 - parent: 12 - - uid: 11235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,29.5 - parent: 12 - - uid: 11236 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,61.5 - parent: 12 - - uid: 11237 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,28.5 - parent: 12 - - uid: 11238 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: 19.5,23.5 - parent: 12 - - uid: 11262 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,25.5 - parent: 12 - - uid: 11263 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,25.5 - parent: 12 - - uid: 11264 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,25.5 - parent: 12 - - uid: 11265 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,25.5 - parent: 12 - - uid: 11266 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,25.5 - parent: 12 - - uid: 11267 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,24.5 - parent: 12 - - uid: 11269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,22.5 - parent: 12 - - uid: 11272 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,22.5 - parent: 12 - - uid: 11296 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,71.5 - parent: 12 - - uid: 11319 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,15.5 - parent: 12 - - uid: 11327 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,23.5 - parent: 12 - - uid: 11329 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,21.5 - parent: 12 - - uid: 11404 - components: - - type: Transform - pos: -34.5,-60.5 - parent: 12 - - uid: 11406 - components: - - type: Transform - pos: 28.5,18.5 - parent: 12 - - uid: 11408 - components: - - type: Transform - pos: 28.5,15.5 - parent: 12 - - uid: 11409 - components: - - type: Transform - pos: -30.5,-60.5 - parent: 12 - - uid: 11410 - components: - - type: Transform - pos: -35.5,-59.5 - parent: 12 - - uid: 11424 - components: - - type: Transform - pos: 28.5,20.5 - parent: 12 - - uid: 11425 - components: - - type: Transform - pos: 27.5,20.5 - parent: 12 - - uid: 11428 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,19.5 - parent: 12 - - uid: 11439 - components: - - type: Transform - pos: 36.5,21.5 - parent: 12 - - uid: 11440 - components: - - type: Transform - pos: 35.5,21.5 - parent: 12 - - uid: 11442 - components: - - type: Transform - pos: 34.5,20.5 - parent: 12 - - uid: 11443 - components: - - type: Transform - pos: 34.5,19.5 - parent: 12 - - uid: 11447 - components: - - type: Transform - pos: 46.5,7.5 - parent: 12 - - uid: 11449 - components: - - type: Transform - pos: 50.5,7.5 - parent: 12 - - uid: 11522 - components: - - type: Transform - pos: 50.5,15.5 - parent: 12 - - uid: 11570 - components: - - type: Transform - pos: 55.5,15.5 - parent: 12 - - uid: 11573 - components: - - type: Transform - pos: 54.5,18.5 - parent: 12 - - uid: 11576 - components: - - type: Transform - pos: 53.5,21.5 - parent: 12 - - uid: 11578 - components: - - type: Transform - pos: 54.5,22.5 - parent: 12 - - uid: 11582 - components: - - type: Transform - pos: 55.5,26.5 - parent: 12 - - uid: 11593 - components: - - type: Transform - pos: 30.5,26.5 - parent: 12 - - uid: 11594 - components: - - type: Transform - pos: 33.5,26.5 - parent: 12 - - uid: 11599 - components: - - type: Transform - pos: 29.5,26.5 - parent: 12 - - uid: 11600 - components: - - type: Transform - pos: 28.5,26.5 - parent: 12 - - uid: 11601 - components: - - type: Transform - pos: 27.5,26.5 - parent: 12 - - uid: 11602 - components: - - type: Transform - pos: 27.5,25.5 - parent: 12 - - uid: 11604 - components: - - type: Transform - pos: 27.5,23.5 - parent: 12 - - uid: 11606 - components: - - type: Transform - pos: 27.5,21.5 - parent: 12 - - uid: 11608 - components: - - type: Transform - pos: 1.5,-35.5 - parent: 12 - - uid: 11613 - components: - - type: Transform - pos: 30.5,27.5 - parent: 12 - - uid: 11634 - components: - - type: Transform - pos: 57.5,34.5 - parent: 12 - - uid: 11701 - components: - - type: Transform - pos: 26.5,27.5 - parent: 12 - - uid: 11702 - components: - - type: Transform - pos: 27.5,27.5 - parent: 12 - - uid: 11703 - components: - - type: Transform - pos: 26.5,29.5 - parent: 12 - - uid: 11704 - components: - - type: Transform - pos: 27.5,29.5 - parent: 12 - - uid: 11705 - components: - - type: Transform - pos: 27.5,30.5 - parent: 12 - - uid: 11706 - components: - - type: Transform - pos: 27.5,33.5 - parent: 12 - - uid: 11707 - components: - - type: Transform - pos: 27.5,34.5 - parent: 12 - - uid: 11708 - components: - - type: Transform - pos: 32.5,34.5 - parent: 12 - - uid: 11776 - components: - - type: Transform - pos: 25.5,34.5 - parent: 12 - - uid: 11777 - components: - - type: Transform - pos: 25.5,38.5 - parent: 12 - - uid: 11778 - components: - - type: Transform - pos: 22.5,38.5 - parent: 12 - - uid: 11779 - components: - - type: Transform - pos: 22.5,32.5 - parent: 12 - - uid: 11780 - components: - - type: Transform - pos: 20.5,32.5 - parent: 12 - - uid: 11781 - components: - - type: Transform - pos: 20.5,38.5 - parent: 12 - - uid: 11797 - components: - - type: Transform - pos: 11.5,31.5 - parent: 12 - - uid: 11798 - components: - - type: Transform - pos: 11.5,32.5 - parent: 12 - - uid: 11799 - components: - - type: Transform - pos: 11.5,33.5 - parent: 12 - - uid: 11803 - components: - - type: Transform - pos: 15.5,35.5 - parent: 12 - - uid: 11804 - components: - - type: Transform - pos: 15.5,36.5 - parent: 12 - - uid: 11805 - components: - - type: Transform - pos: 15.5,37.5 - parent: 12 - - uid: 11806 - components: - - type: Transform - pos: 15.5,38.5 - parent: 12 - - uid: 11811 - components: - - type: Transform - pos: 16.5,38.5 - parent: 12 - - uid: 11812 - components: - - type: Transform - pos: 17.5,38.5 - parent: 12 - - uid: 11813 - components: - - type: Transform - pos: 11.5,34.5 - parent: 12 - - uid: 11814 - components: - - type: Transform - pos: 14.5,34.5 - parent: 12 - - uid: 11856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-40.5 - parent: 12 - - uid: 11857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-40.5 - parent: 12 - - uid: 11859 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-40.5 - parent: 12 - - uid: 11860 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-40.5 - parent: 12 - - uid: 11862 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-27.5 - parent: 12 - - uid: 11864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-27.5 - parent: 12 - - uid: 11913 - components: - - type: Transform - pos: 57.5,39.5 - parent: 12 - - uid: 11914 - components: - - type: Transform - pos: 58.5,39.5 - parent: 12 - - uid: 11915 - components: - - type: Transform - pos: 59.5,39.5 - parent: 12 - - uid: 11916 - components: - - type: Transform - pos: 59.5,37.5 - parent: 12 - - uid: 11928 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,12.5 - parent: 12 - - uid: 11942 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,13.5 - parent: 12 - - uid: 12011 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-6.5 - parent: 12 - - uid: 12100 - components: - - type: Transform - pos: -47.5,3.5 - parent: 12 - - uid: 12217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,8.5 - parent: 12 - - uid: 12392 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,41.5 - parent: 12 - - uid: 12425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,41.5 - parent: 12 - - uid: 12426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,41.5 - parent: 12 - - uid: 12427 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,41.5 - parent: 12 - - uid: 12428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,41.5 - parent: 12 - - uid: 12454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,51.5 - parent: 12 - - uid: 12455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,46.5 - parent: 12 - - uid: 12504 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,56.5 - parent: 12 - - uid: 12506 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,56.5 - parent: 12 - - uid: 12554 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-45.5 - parent: 12 - - uid: 12562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-44.5 - parent: 12 - - uid: 12570 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-43.5 - parent: 12 - - uid: 12571 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-40.5 - parent: 12 - - uid: 12572 - components: - - type: Transform - 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 - pos: 35.5,5.5 - parent: 12 - - uid: 12714 - components: - - type: Transform - pos: 56.5,9.5 - parent: 12 - - uid: 12810 - components: - - type: Transform - pos: 32.5,26.5 - parent: 12 - - uid: 12811 - components: - - type: Transform - pos: 31.5,26.5 - parent: 12 - - uid: 12887 - components: - - type: Transform - pos: -35.5,-51.5 - parent: 12 - - uid: 13161 - components: - - type: Transform - pos: -17.5,-69.5 - parent: 12 - - uid: 13197 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,41.5 - parent: 12 - - uid: 14020 - components: - - type: Transform - pos: 59.5,59.5 - parent: 12 - - uid: 14021 - components: - - type: Transform - pos: 60.5,59.5 - parent: 12 - - uid: 14022 - components: - - type: Transform - pos: 61.5,59.5 - parent: 12 - - uid: 14158 - components: - - type: Transform - pos: 22.5,55.5 - parent: 12 - - uid: 14167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,65.5 - parent: 12 - - uid: 14168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,65.5 - parent: 12 - - uid: 14169 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,65.5 - parent: 12 - - uid: 14170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,65.5 - parent: 12 - - uid: 14171 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,65.5 - parent: 12 - - uid: 14172 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,65.5 - parent: 12 - - uid: 14187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,65.5 - parent: 12 - - uid: 14193 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: 37.5,64.5 - parent: 12 - - uid: 14233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,65.5 - parent: 12 - - uid: 14234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,66.5 - parent: 12 - - uid: 14235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,68.5 - parent: 12 - - uid: 14236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,68.5 - parent: 12 - - uid: 14254 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,64.5 - parent: 12 - - uid: 14256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,66.5 - parent: 12 - - uid: 14257 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,67.5 - parent: 12 - - uid: 14258 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,68.5 - parent: 12 - - uid: 14262 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,64.5 - parent: 12 - - uid: 14467 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,82.5 - parent: 12 - - uid: 14497 - components: - - type: Transform - pos: 24.5,57.5 - parent: 12 - - uid: 14498 - components: - - type: Transform - pos: 24.5,56.5 - parent: 12 - - uid: 14499 - components: - - type: Transform - pos: 24.5,55.5 - parent: 12 - - uid: 14500 - components: - - type: Transform - pos: 24.5,60.5 - parent: 12 - - uid: 14501 - components: - - type: Transform - pos: 24.5,59.5 - parent: 12 - - uid: 14508 - components: - - type: Transform - pos: 23.5,60.5 - parent: 12 - - uid: 14510 - components: - - type: Transform - pos: 21.5,60.5 - parent: 12 - - uid: 14514 - components: - - type: Transform - pos: 21.5,55.5 - parent: 12 - - uid: 14515 - components: - - type: Transform - pos: 20.5,55.5 - parent: 12 - - uid: 14521 - components: - - type: Transform - pos: 34.5,-11.5 - parent: 12 - - uid: 14533 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,69.5 - parent: 12 - - uid: 14535 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,69.5 - parent: 12 - - uid: 14536 - components: - - type: Transform - 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 - rot: 1.5707963267948966 rad - pos: 10.5,69.5 - parent: 12 - - uid: 14640 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,69.5 - parent: 12 - - uid: 14647 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,70.5 - parent: 12 - - uid: 14680 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,83.5 - parent: 12 - - uid: 14703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,70.5 - parent: 12 - - uid: 14719 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,83.5 - parent: 12 - - uid: 14727 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,69.5 - parent: 12 - - uid: 14728 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,69.5 - parent: 12 - - uid: 14729 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,69.5 - parent: 12 - - uid: 14734 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,82.5 - parent: 12 - - uid: 14739 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,84.5 - parent: 12 - - uid: 14740 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,84.5 - parent: 12 - - uid: 14752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,85.5 - parent: 12 - - uid: 14755 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,83.5 - parent: 12 - - uid: 14756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,75.5 - parent: 12 - - uid: 14757 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,75.5 - parent: 12 - - uid: 14758 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,76.5 - parent: 12 - - uid: 14761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,85.5 - parent: 12 - - uid: 14776 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,85.5 - parent: 12 - - uid: 14779 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,83.5 - parent: 12 - - uid: 14780 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,77.5 - parent: 12 - - uid: 14781 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,77.5 - parent: 12 - - uid: 14782 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,76.5 - parent: 12 - - uid: 14785 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,85.5 - parent: 12 - - uid: 14808 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,76.5 - parent: 12 - - uid: 14824 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,76.5 - parent: 12 - - uid: 15016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,4.5 - parent: 12 - - uid: 15454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,33.5 - parent: 12 - - uid: 15455 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,33.5 - parent: 12 - - uid: 15456 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,33.5 - parent: 12 - - uid: 15457 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,34.5 - parent: 12 - - uid: 15458 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,34.5 - parent: 12 - - uid: 15492 - components: - - type: Transform - pos: -31.5,35.5 - parent: 12 - - uid: 15494 - components: - - type: Transform - pos: -32.5,34.5 - parent: 12 - - uid: 15496 - components: - - type: Transform - pos: -31.5,34.5 - parent: 12 - - uid: 15510 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,32.5 - parent: 12 - - uid: 15511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,32.5 - parent: 12 - - uid: 15512 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,33.5 - parent: 12 - - uid: 15513 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,35.5 - parent: 12 - - uid: 15514 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,36.5 - parent: 12 - - uid: 15515 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,37.5 - parent: 12 - - uid: 15516 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,37.5 - parent: 12 - - uid: 15517 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,37.5 - parent: 12 - - uid: 15518 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,37.5 - parent: 12 - - uid: 15519 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,37.5 - parent: 12 - - uid: 15520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,37.5 - parent: 12 - - uid: 15521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,36.5 - parent: 12 - - uid: 15539 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,34.5 - parent: 12 - - uid: 15540 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,33.5 - parent: 12 - - uid: 15541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,32.5 - parent: 12 - - uid: 15542 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,31.5 - parent: 12 - - uid: 15544 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,29.5 - parent: 12 - - uid: 15545 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,35.5 - parent: 12 - - uid: 15551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,31.5 - parent: 12 - - uid: 15554 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,31.5 - parent: 12 - - uid: 15555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,29.5 - parent: 12 - - uid: 15556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,30.5 - parent: 12 - - uid: 15557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,31.5 - parent: 12 - - uid: 15564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,36.5 - parent: 12 - - uid: 15565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,37.5 - parent: 12 - - uid: 15566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,37.5 - parent: 12 - - uid: 15567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,37.5 - parent: 12 - - uid: 15576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,39.5 - parent: 12 - - uid: 15577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,40.5 - parent: 12 - - uid: 15578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,41.5 - parent: 12 - - uid: 15579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,42.5 - parent: 12 - - uid: 15659 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,71.5 - parent: 12 - - uid: 15661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,71.5 - parent: 12 - - uid: 15664 - components: - - type: Transform - pos: -8.5,25.5 - parent: 12 - - uid: 15708 - components: - - type: Transform - pos: -31.5,37.5 - parent: 12 - - uid: 15709 - components: - - type: Transform - pos: -30.5,37.5 - parent: 12 - - uid: 15710 - components: - - type: Transform - pos: -29.5,37.5 - parent: 12 - - uid: 15711 - components: - - type: Transform - pos: -28.5,37.5 - parent: 12 - - uid: 15712 - components: - - type: Transform - pos: -27.5,37.5 - parent: 12 - - uid: 15713 - components: - - type: Transform - pos: -26.5,37.5 - parent: 12 - - uid: 15714 - components: - - type: Transform - pos: -25.5,37.5 - parent: 12 - - uid: 15715 - components: - - type: Transform - pos: -24.5,37.5 - parent: 12 - - uid: 15716 - components: - - type: Transform - pos: -22.5,37.5 - parent: 12 - - uid: 15717 - components: - - type: Transform - pos: -21.5,37.5 - parent: 12 - - uid: 15718 - components: - - type: Transform - pos: -20.5,37.5 - parent: 12 - - uid: 15719 - components: - - type: Transform - pos: -19.5,37.5 - parent: 12 - - uid: 15720 - components: - - type: Transform - pos: -21.5,36.5 - parent: 12 - - uid: 15722 - components: - - type: Transform - pos: -19.5,36.5 - parent: 12 - - uid: 15723 - components: - - type: Transform - pos: -19.5,35.5 - parent: 12 - - uid: 15730 - components: - - type: Transform - pos: -19.5,38.5 - parent: 12 - - uid: 15731 - components: - - type: Transform - pos: -26.5,38.5 - parent: 12 - - uid: 15845 - components: - - type: Transform - pos: -27.5,12.5 - parent: 12 - - uid: 15846 - components: - - type: Transform - pos: -27.5,10.5 - parent: 12 - - uid: 15849 - components: - - type: Transform - pos: -32.5,7.5 - parent: 12 - - uid: 15850 - components: - - type: Transform - pos: -32.5,9.5 - parent: 12 - - uid: 15851 - components: - - type: Transform - pos: -32.5,11.5 - parent: 12 - - uid: 15890 - components: - - type: Transform - pos: -60.5,23.5 - parent: 12 - - uid: 15955 - components: - - type: Transform - pos: 50.5,5.5 - parent: 12 - - uid: 15999 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,0.5 - parent: 12 - - uid: 16001 - components: - - type: Transform - pos: 50.5,6.5 - parent: 12 - - uid: 16066 - components: - - type: Transform - pos: -58.5,18.5 - parent: 12 - - uid: 16355 - components: - - type: Transform - pos: 50.5,4.5 - parent: 12 - - uid: 16360 - components: - - type: Transform - pos: 56.5,11.5 - parent: 12 - - uid: 16646 - components: - - type: Transform - pos: -30.5,12.5 - parent: 12 - - uid: 17199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-43.5 - parent: 12 - - uid: 17270 - components: - - type: Transform - pos: -31.5,6.5 - parent: 12 - - uid: 17277 - components: - - type: Transform - pos: -46.5,35.5 - parent: 12 - - uid: 17278 - components: - - type: Transform - pos: -47.5,35.5 - parent: 12 - - uid: 17279 - components: - - type: Transform - pos: -48.5,35.5 - parent: 12 - - uid: 17280 - components: - - type: Transform - pos: -49.5,35.5 - parent: 12 - - uid: 17281 - components: - - type: Transform - pos: -50.5,35.5 - parent: 12 - - uid: 17282 - components: - - type: Transform - pos: -50.5,34.5 - parent: 12 - - uid: 17283 - components: - - type: Transform - pos: -50.5,23.5 - parent: 12 - - uid: 17284 - components: - - type: Transform - pos: -49.5,23.5 - parent: 12 - - uid: 17285 - components: - - type: Transform - pos: -48.5,23.5 - parent: 12 - - uid: 17286 - components: - - type: Transform - pos: -47.5,23.5 - parent: 12 - - uid: 17287 - components: - - type: Transform - pos: -46.5,23.5 - parent: 12 - - uid: 17304 - components: - - type: Transform - pos: -32.5,8.5 - parent: 12 - - uid: 17306 - components: - - type: Transform - pos: -32.5,10.5 - parent: 12 - - uid: 17318 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,18.5 - parent: 12 - - uid: 17319 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,18.5 - parent: 12 - - uid: 17320 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,17.5 - parent: 12 - - uid: 17321 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,17.5 - parent: 12 - - uid: 17322 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,18.5 - parent: 12 - - uid: 17323 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,18.5 - parent: 12 - - uid: 17326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,23.5 - parent: 12 - - uid: 17327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,23.5 - parent: 12 - - uid: 17328 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,23.5 - parent: 12 - - uid: 17329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,23.5 - parent: 12 - - uid: 17330 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,23.5 - parent: 12 - - uid: 17331 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,20.5 - parent: 12 - - uid: 17525 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,45.5 - parent: 12 - - uid: 17526 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,35.5 - parent: 12 - - uid: 17527 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,35.5 - parent: 12 - - uid: 17528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,35.5 - parent: 12 - - uid: 17530 - components: - - type: Transform - pos: -27.5,11.5 - parent: 12 - - uid: 17755 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,36.5 - parent: 12 - - uid: 17756 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,39.5 - parent: 12 - - uid: 17758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,39.5 - parent: 12 - - uid: 17759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,39.5 - parent: 12 - - uid: 17760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,39.5 - parent: 12 - - uid: 17761 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,39.5 - parent: 12 - - uid: 17762 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,39.5 - parent: 12 - - uid: 17763 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,39.5 - parent: 12 - - uid: 17764 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,39.5 - parent: 12 - - uid: 17765 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,38.5 - parent: 12 - - uid: 17766 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,39.5 - parent: 12 - - uid: 17767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,36.5 - parent: 12 - - uid: 17768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,38.5 - parent: 12 - - uid: 17769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,39.5 - parent: 12 - - uid: 17771 - components: - - type: Transform - pos: -30.5,6.5 - parent: 12 - - uid: 17775 - components: - - type: Transform - pos: -32.5,6.5 - parent: 12 - - uid: 17803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,47.5 - parent: 12 - - uid: 17804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,49.5 - parent: 12 - - uid: 17805 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,49.5 - parent: 12 - - uid: 17806 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,49.5 - parent: 12 - - uid: 17807 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,49.5 - parent: 12 - - uid: 17808 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,49.5 - parent: 12 - - uid: 17809 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,48.5 - parent: 12 - - uid: 17812 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,48.5 - parent: 12 - - uid: 17813 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,47.5 - parent: 12 - - uid: 17814 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,45.5 - parent: 12 - - uid: 17815 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,44.5 - parent: 12 - - uid: 17818 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,44.5 - parent: 12 - - uid: 17819 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,43.5 - parent: 12 - - uid: 17821 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,41.5 - parent: 12 - - uid: 17822 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,40.5 - parent: 12 - - uid: 17823 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,40.5 - parent: 12 - - uid: 17824 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,41.5 - parent: 12 - - uid: 17825 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,42.5 - parent: 12 - - uid: 17826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,43.5 - parent: 12 - - uid: 17827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,43.5 - parent: 12 - - uid: 17828 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,43.5 - parent: 12 - - uid: 17829 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,44.5 - parent: 12 - - uid: 17830 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,46.5 - parent: 12 - - uid: 17831 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,47.5 - parent: 12 - - uid: 17836 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,71.5 - parent: 12 - - uid: 17841 - components: - - type: Transform - pos: -52.5,76.5 - parent: 12 - - uid: 18558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-43.5 - parent: 12 - - uid: 18654 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,43.5 - parent: 12 - - uid: 18845 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-3.5 - parent: 12 - - uid: 19021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,43.5 - parent: 12 - - uid: 19022 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,43.5 - parent: 12 - - uid: 19023 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,44.5 - parent: 12 - - uid: 19024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,45.5 - parent: 12 - - uid: 19025 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,46.5 - parent: 12 - - uid: 19026 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,47.5 - parent: 12 - - uid: 19027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,45.5 - parent: 12 - - uid: 19029 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,47.5 - parent: 12 - - uid: 19030 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,45.5 - parent: 12 - - uid: 19031 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,46.5 - parent: 12 - - uid: 19032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,47.5 - parent: 12 - - uid: 19039 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,43.5 - parent: 12 - - uid: 19040 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,44.5 - parent: 12 - - uid: 19041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,45.5 - parent: 12 - - uid: 19042 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,45.5 - parent: 12 - - uid: 19043 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,46.5 - parent: 12 - - uid: 19044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,47.5 - parent: 12 - - uid: 19045 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,45.5 - parent: 12 - - uid: 19046 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,46.5 - parent: 12 - - uid: 19047 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,47.5 - parent: 12 - - uid: 19048 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,47.5 - parent: 12 - - uid: 19074 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,49.5 - parent: 12 - - uid: 19079 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,48.5 - parent: 12 - - uid: 19080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,47.5 - parent: 12 - - uid: 19081 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,46.5 - parent: 12 - - uid: 19082 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,46.5 - parent: 12 - - uid: 19083 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,48.5 - parent: 12 - - uid: 19084 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,49.5 - parent: 12 - - uid: 19085 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,49.5 - parent: 12 - - uid: 19086 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,49.5 - parent: 12 - - uid: 19097 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,42.5 - parent: 12 - - uid: 19098 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,42.5 - parent: 12 - - uid: 19099 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,42.5 - parent: 12 - - uid: 19100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,42.5 - parent: 12 - - uid: 19101 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,42.5 - parent: 12 - - uid: 19102 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,42.5 - parent: 12 - - uid: 19133 - components: - - type: Transform - pos: -28.5,49.5 - parent: 12 - - uid: 19134 - components: - - type: Transform - pos: -31.5,49.5 - parent: 12 - - uid: 19135 - components: - - type: Transform - pos: -32.5,49.5 - parent: 12 - - uid: 19152 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,49.5 - parent: 12 - - uid: 19153 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,49.5 - parent: 12 - - uid: 19154 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,49.5 - parent: 12 - - uid: 19155 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,49.5 - parent: 12 - - uid: 19156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,49.5 - parent: 12 - - uid: 19157 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,49.5 - parent: 12 - - uid: 19169 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,53.5 - parent: 12 - - uid: 19171 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,57.5 - parent: 12 - - uid: 19172 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,50.5 - parent: 12 - - uid: 19174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,54.5 - parent: 12 - - uid: 19176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,9.5 - parent: 12 - - uid: 19180 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,54.5 - parent: 12 - - uid: 19183 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,57.5 - parent: 12 - - uid: 19184 - components: - - type: Transform - pos: 51.5,0.5 - parent: 12 - - uid: 19186 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,60.5 - parent: 12 - - uid: 19187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,1.5 - parent: 12 - - uid: 19190 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,57.5 - parent: 12 - - uid: 19197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,3.5 - parent: 12 - - uid: 19206 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,57.5 - parent: 12 - - uid: 19224 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,60.5 - parent: 12 - - uid: 19225 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,60.5 - parent: 12 - - uid: 19226 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,60.5 - parent: 12 - - uid: 19227 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,61.5 - parent: 12 - - uid: 19228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,62.5 - parent: 12 - - uid: 19229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,63.5 - parent: 12 - - uid: 19230 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,64.5 - parent: 12 - - uid: 19231 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,64.5 - parent: 12 - - uid: 19233 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,64.5 - parent: 12 - - uid: 19234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,64.5 - parent: 12 - - uid: 19236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,64.5 - parent: 12 - - uid: 19237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,64.5 - parent: 12 - - uid: 19239 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,64.5 - parent: 12 - - uid: 19240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,61.5 - parent: 12 - - uid: 19241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,62.5 - parent: 12 - - uid: 19242 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,63.5 - parent: 12 - - uid: 19255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,61.5 - parent: 12 - - uid: 19256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,62.5 - parent: 12 - - uid: 19257 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,61.5 - parent: 12 - - uid: 19258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,60.5 - parent: 12 - - uid: 19260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,63.5 - parent: 12 - - uid: 19261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,63.5 - parent: 12 - - uid: 19262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,64.5 - parent: 12 - - uid: 19264 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,54.5 - parent: 12 - - uid: 19272 - components: - - type: Transform - pos: -45.5,53.5 - parent: 12 - - uid: 19298 - components: - - type: Transform - pos: -31.5,52.5 - parent: 12 - - uid: 19305 - components: - - type: Transform - pos: -31.5,54.5 - parent: 12 - - uid: 19307 - components: - - type: Transform - pos: -26.5,52.5 - parent: 12 - - uid: 19308 - components: - - type: Transform - pos: -25.5,52.5 - parent: 12 - - uid: 19309 - components: - - type: Transform - pos: -24.5,52.5 - parent: 12 - - uid: 19310 - components: - - type: Transform - pos: -24.5,51.5 - parent: 12 - - uid: 19312 - components: - - type: Transform - pos: -31.5,57.5 - parent: 12 - - uid: 19313 - components: - - type: Transform - pos: -32.5,57.5 - parent: 12 - - uid: 19314 - components: - - type: Transform - pos: -30.5,57.5 - parent: 12 - - uid: 19315 - components: - - type: Transform - pos: -29.5,57.5 - parent: 12 - - uid: 19316 - components: - - type: Transform - pos: -28.5,57.5 - parent: 12 - - uid: 19317 - components: - - type: Transform - pos: -26.5,57.5 - parent: 12 - - uid: 19318 - components: - - type: Transform - pos: -26.5,56.5 - parent: 12 - - uid: 19319 - components: - - type: Transform - pos: -26.5,55.5 - parent: 12 - - uid: 19320 - components: - - type: Transform - pos: -26.5,54.5 - parent: 12 - - uid: 19321 - components: - - type: Transform - pos: -26.5,53.5 - parent: 12 - - uid: 19322 - components: - - type: Transform - pos: -33.5,54.5 - parent: 12 - - uid: 19323 - components: - - type: Transform - pos: -33.5,52.5 - parent: 12 - - uid: 19345 - components: - - type: Transform - pos: -53.5,-51.5 - parent: 12 - - uid: 19346 - components: - - type: Transform - pos: -51.5,-51.5 - parent: 12 - - uid: 19347 - components: - - type: Transform - pos: 44.5,-7.5 - parent: 12 - - uid: 19348 - components: - - type: Transform - pos: 45.5,-6.5 - parent: 12 - - uid: 19359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,61.5 - parent: 12 - - uid: 19360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,62.5 - parent: 12 - - uid: 19361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,63.5 - parent: 12 - - uid: 19362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,63.5 - parent: 12 - - uid: 19363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,64.5 - parent: 12 - - uid: 19432 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,50.5 - parent: 12 - - uid: 19507 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,73.5 - parent: 12 - - uid: 19512 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,63.5 - parent: 12 - - uid: 19513 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,63.5 - parent: 12 - - uid: 19521 - components: - - type: Transform - pos: -38.5,65.5 - parent: 12 - - uid: 19522 - components: - - type: Transform - pos: -38.5,66.5 - parent: 12 - - uid: 19523 - components: - - type: Transform - pos: -38.5,67.5 - parent: 12 - - uid: 19524 - components: - - type: Transform - pos: -38.5,68.5 - parent: 12 - - uid: 19525 - components: - - type: Transform - pos: -38.5,69.5 - parent: 12 - - uid: 19526 - components: - - type: Transform - pos: -37.5,69.5 - parent: 12 - - uid: 19527 - components: - - type: Transform - pos: -36.5,69.5 - parent: 12 - - uid: 19528 - components: - - type: Transform - pos: -35.5,69.5 - parent: 12 - - uid: 19529 - components: - - type: Transform - pos: -34.5,69.5 - parent: 12 - - uid: 19530 - components: - - type: Transform - pos: -33.5,69.5 - parent: 12 - - uid: 19531 - components: - - type: Transform - pos: -32.5,69.5 - parent: 12 - - uid: 19532 - components: - - type: Transform - pos: -31.5,69.5 - parent: 12 - - uid: 19533 - components: - - type: Transform - pos: -31.5,68.5 - parent: 12 - - uid: 19534 - components: - - type: Transform - pos: -31.5,67.5 - parent: 12 - - uid: 19535 - components: - - type: Transform - pos: -31.5,66.5 - parent: 12 - - uid: 19536 - components: - - type: Transform - pos: -31.5,65.5 - parent: 12 - - uid: 19553 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-3.5 - parent: 12 - - uid: 19564 - components: - - type: Transform - pos: -25.5,57.5 - parent: 12 - - uid: 19565 - components: - - type: Transform - pos: -24.5,57.5 - parent: 12 - - uid: 19566 - components: - - type: Transform - pos: -24.5,58.5 - parent: 12 - - uid: 19570 - components: - - type: Transform - pos: -24.5,62.5 - parent: 12 - - uid: 19579 - components: - - type: Transform - pos: -21.5,56.5 - parent: 12 - - uid: 19580 - components: - - type: Transform - pos: -21.5,57.5 - parent: 12 - - uid: 19600 - components: - - type: Transform - pos: -21.5,58.5 - parent: 12 - - uid: 19602 - components: - - type: Transform - pos: -21.5,60.5 - parent: 12 - - uid: 19603 - components: - - type: Transform - pos: -21.5,62.5 - parent: 12 - - uid: 19605 - components: - - type: Transform - pos: -21.5,64.5 - parent: 12 - - uid: 19606 - components: - - type: Transform - pos: -20.5,64.5 - parent: 12 - - uid: 19624 - components: - - type: Transform - pos: -20.5,65.5 - parent: 12 - - uid: 19625 - components: - - type: Transform - pos: -20.5,66.5 - parent: 12 - - uid: 19627 - components: - - type: Transform - pos: -20.5,68.5 - parent: 12 - - uid: 19628 - components: - - 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 - pos: -13.5,74.5 - parent: 12 - - uid: 19648 - components: - - type: Transform - pos: -15.5,74.5 - parent: 12 - - uid: 19656 - components: - - type: Transform - pos: 4.5,71.5 - parent: 12 - - uid: 19785 - components: - - type: Transform - pos: -2.5,71.5 - parent: 12 - - uid: 19786 - components: - - type: Transform - pos: -1.5,71.5 - parent: 12 - - uid: 19787 - components: - - type: Transform - pos: -0.5,71.5 - parent: 12 - - uid: 19788 - components: - - type: Transform - pos: 0.5,71.5 - parent: 12 - - uid: 19790 - components: - - type: Transform - pos: 2.5,71.5 - parent: 12 - - uid: 19804 - components: - - type: Transform - pos: 7.5,70.5 - parent: 12 - - uid: 19805 - components: - - type: Transform - pos: 7.5,71.5 - parent: 12 - - uid: 19832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,52.5 - parent: 12 - - uid: 19845 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,65.5 - parent: 12 - - uid: 19862 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,1.5 - parent: 12 - - uid: 20268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,66.5 - parent: 12 - - uid: 20541 - components: - - type: Transform - pos: -46.5,53.5 - parent: 12 - - uid: 21060 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-8.5 - parent: 12 - - uid: 21527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,10.5 - parent: 12 - - uid: 21671 - components: - - 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 - rot: 3.141592653589793 rad - pos: 33.5,-8.5 - parent: 12 - - uid: 21877 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-4.5 - parent: 12 - - uid: 21878 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-6.5 - parent: 12 - - uid: 21879 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-5.5 - parent: 12 - - uid: 21880 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-8.5 - parent: 12 - - uid: 21881 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-8.5 - parent: 12 - - uid: 21934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-25.5 - parent: 12 - - uid: 21988 - components: - - type: Transform - pos: 2.5,-4.5 - parent: 12 - - uid: 21989 - components: - - type: Transform - pos: 3.5,-4.5 - parent: 12 - - uid: 22002 - components: - - type: Transform - pos: -42.5,-18.5 - parent: 12 - - uid: 22003 - components: - - type: Transform - pos: -41.5,-18.5 - parent: 12 - - uid: 22009 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-8.5 - parent: 12 - - uid: 22032 - components: - - 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 - pos: -30.5,70.5 - parent: 12 - - uid: 22036 - components: - - type: Transform - pos: -30.5,68.5 - parent: 12 - - uid: 22037 - components: - - type: Transform - pos: -30.5,67.5 - parent: 12 - - uid: 22038 - components: - - type: Transform - pos: -30.5,65.5 - parent: 12 - - uid: 22039 - components: - - type: Transform - pos: -30.5,64.5 - parent: 12 - - uid: 22040 - components: - - type: Transform - pos: -30.5,66.5 - parent: 12 - - uid: 22081 - components: - - type: Transform - pos: 61.5,13.5 - parent: 12 - - uid: 22082 - components: - - type: Transform - pos: 62.5,13.5 - parent: 12 - - uid: 22084 - components: - - type: Transform - pos: 58.5,13.5 - parent: 12 - - uid: 22085 - components: - - type: Transform - pos: 59.5,13.5 - parent: 12 - - uid: 22086 - components: - - type: Transform - pos: 63.5,13.5 - parent: 12 - - uid: 22087 - components: - - type: Transform - pos: 56.5,13.5 - parent: 12 - - uid: 22091 - components: - - 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 - pos: -30.5,62.5 - parent: 12 - - uid: 22183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-3.5 - parent: 12 - - uid: 22184 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-2.5 - parent: 12 - - uid: 22186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-10.5 - parent: 12 - - uid: 22190 - components: - - 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 - rot: -1.5707963267948966 rad - pos: 32.5,-5.5 - parent: 12 - - uid: 22279 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 12 - - uid: 22280 - components: - - type: Transform - pos: 29.5,-24.5 - parent: 12 - - uid: 22281 - components: - - type: Transform - pos: 32.5,-24.5 - parent: 12 - - uid: 22282 - components: - - type: Transform - pos: 36.5,-23.5 - parent: 12 - - uid: 22283 - components: - - type: Transform - pos: 36.5,-24.5 - parent: 12 - - uid: 22284 - components: - - type: Transform - pos: 35.5,-24.5 - parent: 12 - - uid: 22321 - components: - - type: Transform - 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: 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: - - type: Transform - pos: 34.5,-40.5 - parent: 12 - - uid: 22533 - components: - - 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 - rot: 1.5707963267948966 rad - pos: -29.5,-16.5 - parent: 12 - - uid: 22858 - components: - - type: Transform - pos: -35.5,-52.5 - parent: 12 - - uid: 22859 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-6.5 - parent: 12 - - uid: 23117 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-6.5 - parent: 12 - - uid: 23124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,74.5 - parent: 12 - - uid: 23129 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,2.5 - parent: 12 - - uid: 23144 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,74.5 - parent: 12 - - uid: 23162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-5.5 - parent: 12 - - uid: 23166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,8.5 - parent: 12 - - uid: 23171 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-3.5 - parent: 12 - - uid: 23598 - components: - - type: Transform - pos: 46.5,-6.5 - parent: 12 - - uid: 23701 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,79.5 - parent: 12 - - uid: 23709 - components: - - type: Transform - pos: -52.5,77.5 - parent: 12 - - uid: 23895 - components: - - type: Transform - pos: 48.5,66.5 - parent: 12 - - uid: 24226 - components: - - type: Transform - pos: 34.5,-39.5 - parent: 12 - - uid: 24259 - components: - - type: Transform - pos: 34.5,-38.5 - parent: 12 - - uid: 24274 - components: - - type: Transform - pos: 34.5,-37.5 - parent: 12 - - uid: 24275 - components: - - type: Transform - pos: 34.5,-36.5 - parent: 12 - - uid: 24276 - components: - - type: Transform - pos: 38.5,-39.5 - parent: 12 - - uid: 24279 - components: - - type: Transform - pos: 37.5,-36.5 - parent: 12 - - uid: 24280 - components: - - type: Transform - 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 - pos: 38.5,-36.5 - parent: 12 - - uid: 24303 - components: - - type: Transform - pos: 35.5,-36.5 - parent: 12 - - uid: 24451 - components: - - type: Transform - pos: -30.5,-5.5 - parent: 12 - - uid: 24460 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,71.5 - parent: 12 - - uid: 24493 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-57.5 - parent: 12 - - uid: 25019 - components: - - type: Transform - pos: 78.5,13.5 - parent: 12 - - uid: 25037 - components: - - type: Transform - pos: 38.5,-37.5 - parent: 12 - - uid: 25091 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-17.5 - parent: 12 - - uid: 25093 - components: - - type: Transform - pos: 63.5,7.5 - parent: 12 - - uid: 25095 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 12 - - uid: 25135 - components: - - type: Transform - pos: 63.5,8.5 - parent: 12 - - uid: 25275 - components: - - type: Transform - pos: -27.5,7.5 - parent: 12 - - uid: 25366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,61.5 - parent: 12 - - uid: 25374 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,48.5 - parent: 12 - - uid: 25381 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,56.5 - parent: 12 - - uid: 25418 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,65.5 - parent: 12 - - uid: 25420 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,71.5 - parent: 12 - - uid: 25421 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,71.5 - parent: 12 - - uid: 25422 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,71.5 - parent: 12 - - uid: 25423 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,71.5 - parent: 12 - - uid: 25424 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,71.5 - parent: 12 - - uid: 25425 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,71.5 - parent: 12 - - uid: 25426 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,71.5 - parent: 12 - - uid: 25427 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,71.5 - parent: 12 - - uid: 25428 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,71.5 - parent: 12 - - uid: 25429 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,71.5 - parent: 12 - - uid: 25430 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,70.5 - parent: 12 - - uid: 25431 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,69.5 - parent: 12 - - uid: 25432 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,68.5 - parent: 12 - - uid: 25433 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,67.5 - parent: 12 - - uid: 25434 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,66.5 - parent: 12 - - uid: 25435 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,65.5 - parent: 12 - - uid: 25436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,71.5 - parent: 12 - - uid: 25438 - components: - - 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 - rot: 1.5707963267948966 rad - pos: 54.5,-6.5 - parent: 12 - - uid: 25549 - components: - - type: Transform - pos: 74.5,-4.5 - parent: 12 - - uid: 25551 - components: - - type: Transform - pos: 36.5,-36.5 - parent: 12 - - uid: 25552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,65.5 - parent: 12 - - uid: 25553 - components: - - type: Transform - pos: 31.5,64.5 - parent: 12 - - uid: 25554 - components: - - type: Transform - pos: 32.5,64.5 - parent: 12 - - uid: 25556 - components: - - 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 - pos: -56.5,-38.5 - parent: 12 - - uid: 25565 - components: - - 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: 25597 - components: - - type: Transform - pos: 7.5,-13.5 - parent: 12 - - uid: 25599 - components: - - type: Transform - pos: 7.5,-15.5 - parent: 12 - - uid: 25600 - components: - - type: Transform - pos: 7.5,-17.5 - parent: 12 - - uid: 25609 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,66.5 - parent: 12 - - uid: 25870 - components: - - type: Transform - pos: 5.5,-16.5 - parent: 12 - - uid: 25889 - components: - - type: Transform - pos: 11.5,-13.5 - parent: 12 - - uid: 25902 - components: - - type: Transform - pos: -51.5,-34.5 - parent: 12 - - uid: 25948 - components: - - type: Transform - pos: -49.5,59.5 - parent: 12 - - uid: 25949 - components: - - type: Transform - pos: -49.5,58.5 - parent: 12 - - uid: 26067 - components: - - type: Transform - pos: 63.5,1.5 - parent: 12 - - uid: 26096 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-27.5 - parent: 12 - - uid: 26152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-12.5 - parent: 12 - - uid: 26167 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-27.5 - parent: 12 - - uid: 26197 - components: - - type: Transform - pos: -54.5,-44.5 - parent: 12 - - uid: 26239 - components: - - type: Transform - pos: -54.5,-38.5 - parent: 12 - - uid: 26240 - components: - - type: Transform - pos: -54.5,-40.5 - parent: 12 - - uid: 26251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-28.5 - parent: 12 - - uid: 26355 - components: - - type: Transform - 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 - rot: 1.5707963267948966 rad - pos: 24.5,9.5 - parent: 12 - - uid: 26427 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-17.5 - parent: 12 - - uid: 26435 - components: - - type: Transform - 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: 26475 - components: - - type: Transform - pos: 52.5,-2.5 - parent: 12 - - uid: 26476 - components: - - type: Transform - pos: 51.5,-2.5 - parent: 12 - - uid: 26482 - components: - - type: Transform - pos: 52.5,3.5 - parent: 12 - - uid: 26483 - components: - - type: Transform - pos: 53.5,3.5 - parent: 12 - - uid: 26485 - components: - - type: Transform - pos: 55.5,3.5 - parent: 12 - - uid: 26486 - components: - - type: Transform - pos: 56.5,3.5 - parent: 12 - - uid: 26510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,5.5 - parent: 12 - - uid: 26611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,6.5 - parent: 12 - - uid: 26653 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-50.5 - parent: 12 - - uid: 26822 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,7.5 - parent: 12 - - uid: 26823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,13.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: 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: 26943 - components: - - type: Transform - pos: 78.5,-3.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: 27050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-13.5 - parent: 12 - - uid: 27117 - components: - - type: Transform - pos: -17.5,-67.5 - parent: 12 - - uid: 27147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-20.5 - parent: 12 - - uid: 27229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,60.5 - parent: 12 - - uid: 27230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,61.5 - parent: 12 - - uid: 27231 - components: - - type: Transform - 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: 27410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-43.5 - parent: 12 - - uid: 27411 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-11.5 - parent: 12 - - uid: 27416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-26.5 - parent: 12 - - uid: 27447 - components: - - type: Transform - pos: 0.5,20.5 - parent: 12 - - uid: 27455 - components: - - type: Transform - pos: -48.5,-44.5 - parent: 12 - - uid: 27456 - components: - - type: Transform - pos: -48.5,-43.5 - parent: 12 - - uid: 27598 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-26.5 - parent: 12 - - uid: 27863 - components: - - type: Transform - pos: -36.5,-52.5 - parent: 12 - - uid: 27909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,61.5 - parent: 12 - - uid: 27978 - components: - - type: Transform - pos: -22.5,-68.5 - parent: 12 - - uid: 27985 - components: - - type: Transform - pos: -20.5,-68.5 - parent: 12 - - uid: 28049 - components: - - type: Transform - pos: -19.5,-70.5 - parent: 12 - - uid: 28050 - components: - - type: Transform - pos: -20.5,-70.5 - parent: 12 - - uid: 28088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-15.5 - parent: 12 - - uid: 28127 - components: - - type: Transform - pos: 33.5,27.5 - parent: 12 - - uid: 28128 - components: - - type: Transform - pos: 33.5,28.5 - parent: 12 - - uid: 28134 - components: - - type: Transform - pos: 31.5,34.5 - parent: 12 - - uid: 28135 - components: - - type: Transform - pos: 30.5,34.5 - parent: 12 - - uid: 28158 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-11.5 - parent: 12 - - uid: 28159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-11.5 - parent: 12 - - uid: 28169 - components: - - type: Transform - pos: -50.5,-11.5 - parent: 12 - - uid: 28201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-17.5 - parent: 12 - - uid: 28237 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,60.5 - parent: 12 - - uid: 28286 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-17.5 - parent: 12 - - uid: 28288 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-17.5 - parent: 12 - - uid: 28422 - components: - - type: Transform - pos: 44.5,6.5 - parent: 12 - - uid: 28521 - components: - - type: Transform - pos: -4.5,7.5 - parent: 12 - - uid: 28527 - components: - - 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 - rot: 1.5707963267948966 rad - pos: 56.5,8.5 - parent: 12 - - uid: 28834 - components: - - type: Transform - pos: 32.5,3.5 - parent: 12 - - uid: 28835 - components: - - type: Transform - pos: 32.5,4.5 - parent: 12 - - uid: 28836 - components: - - type: Transform - pos: 33.5,5.5 - parent: 12 - - uid: 28837 - components: - - type: Transform - pos: 32.5,7.5 - parent: 12 - - uid: 28838 - components: - - type: Transform - pos: 30.5,7.5 - parent: 12 - - uid: 28843 - components: - - type: Transform - pos: 34.5,5.5 - parent: 12 - - uid: 28849 - components: - - type: Transform - pos: 32.5,2.5 - parent: 12 - - uid: 28943 - components: - - 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 - rot: -1.5707963267948966 rad - pos: 50.5,2.5 - parent: 12 - - uid: 29164 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: -19.5,74.5 - parent: 12 - - uid: 29224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,66.5 - parent: 12 - - uid: 29227 - components: - - type: Transform - pos: -24.5,63.5 - parent: 12 - - uid: 29282 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: -17.5,74.5 - parent: 12 - - uid: 29842 - components: - - type: Transform - pos: -22.5,58.5 - parent: 12 - - uid: 29854 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-40.5 - parent: 12 - - uid: 30191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,64.5 - parent: 12 - - uid: 30192 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,64.5 - parent: 12 - - uid: 30507 - components: - - type: Transform - pos: -27.5,-60.5 - parent: 12 - - uid: 30554 - components: - - type: Transform - pos: -28.5,-52.5 - parent: 12 - - uid: 30573 - components: - - type: Transform - pos: -39.5,-56.5 - parent: 12 - - uid: 30574 - components: - - type: Transform - pos: -39.5,-58.5 - parent: 12 - - uid: 30575 - components: - - type: Transform - pos: -39.5,-59.5 - parent: 12 - - uid: 30576 - components: - - type: Transform - pos: -38.5,-59.5 - parent: 12 - - uid: 30577 - components: - - type: Transform - pos: -37.5,-59.5 - parent: 12 - - uid: 30578 - components: - - type: Transform - pos: -36.5,-59.5 - parent: 12 - - uid: 31066 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-49.5 - parent: 12 - - uid: 31083 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-71.5 - parent: 12 - - uid: 31085 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-72.5 - parent: 12 - - uid: 31097 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-72.5 - parent: 12 - - uid: 31100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-70.5 - parent: 12 - - uid: 31101 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-72.5 - parent: 12 - - uid: 31102 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-72.5 - parent: 12 - - uid: 31104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-69.5 - parent: 12 - - uid: 31187 - components: - - type: Transform - pos: 3.5,-63.5 - parent: 12 - - uid: 31212 - components: - - type: Transform - pos: -4.5,-70.5 - parent: 12 - - uid: 31215 - components: - - type: Transform - pos: -5.5,-69.5 - parent: 12 - - uid: 31217 - components: - - type: Transform - pos: 2.5,-69.5 - parent: 12 - - uid: 31218 - components: - - type: Transform - pos: 3.5,-69.5 - parent: 12 - - uid: 31236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-69.5 - parent: 12 - - uid: 31237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-69.5 - parent: 12 - - uid: 31376 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-58.5 - parent: 12 - - uid: 31392 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-58.5 - parent: 12 - - uid: 31455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-63.5 - parent: 12 - - uid: 31461 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-63.5 - parent: 12 - - uid: 31604 - components: - - type: Transform - pos: -65.5,-26.5 - parent: 12 - - uid: 31605 - components: - - type: Transform - pos: -64.5,-26.5 - parent: 12 - - uid: 31607 - components: - - type: Transform - pos: -65.5,-22.5 - parent: 12 - - uid: 31608 - components: - - type: Transform - pos: -64.5,-22.5 - parent: 12 - - uid: 31680 - components: - - type: Transform - pos: -65.5,-18.5 - parent: 12 - - uid: 31684 - components: - - type: Transform - pos: -64.5,-30.5 - parent: 12 - - uid: 31745 - components: - - type: Transform - pos: 78.5,0.5 - parent: 12 - - uid: 31747 - components: - - type: Transform - pos: 78.5,2.5 - parent: 12 - - uid: 31752 - components: - - type: Transform - pos: 78.5,5.5 - parent: 12 - - uid: 31753 - components: - - type: Transform - pos: 78.5,6.5 - parent: 12 - - uid: 31754 - components: - - type: Transform - pos: 78.5,8.5 - parent: 12 - - uid: 31756 - components: - - type: Transform - pos: 76.5,-4.5 - parent: 12 - - uid: 31757 - components: - - type: Transform - pos: 69.5,-4.5 - parent: 12 - - uid: 31762 - components: - - type: Transform - pos: 72.5,-4.5 - parent: 12 - - uid: 31840 - components: - - type: Transform - pos: 78.5,-4.5 - parent: 12 - - uid: 31841 - components: - - type: Transform - pos: 78.5,12.5 - parent: 12 - - uid: 31842 - components: - - type: Transform - pos: 78.5,9.5 - parent: 12 - - uid: 31891 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,22.5 - parent: 12 - - uid: 32132 - components: - - type: Transform - pos: 76.5,13.5 - parent: 12 - - uid: 32134 - components: - - type: Transform - pos: 73.5,13.5 - parent: 12 - - uid: 32135 - components: - - type: Transform - pos: 72.5,13.5 - parent: 12 - - uid: 32137 - components: - - type: Transform - pos: 70.5,13.5 - parent: 12 - - uid: 32140 - components: - - type: Transform - pos: 68.5,13.5 - parent: 12 - - uid: 32142 - components: - - type: Transform - pos: 66.5,13.5 - parent: 12 -- proto: WallReinforcedRust - entities: - - uid: 191 - components: - - type: Transform - pos: 63.5,10.5 - parent: 12 - - uid: 383 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-6.5 - parent: 12 - - uid: 676 - components: - - type: Transform - pos: 71.5,-4.5 - parent: 12 - - uid: 1061 - components: - - type: Transform - 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: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: 51.5,2.5 - parent: 12 - - uid: 4176 - components: - - type: Transform - pos: -40.5,-55.5 - parent: 12 - - uid: 4631 - components: - - type: Transform - pos: 49.5,2.5 - parent: 12 - - uid: 4757 - components: - - type: Transform - pos: 48.5,2.5 - parent: 12 - - uid: 4794 - components: - - type: Transform - pos: 47.5,2.5 - parent: 12 - - uid: 4956 - components: - - type: Transform - pos: -55.5,69.5 - parent: 12 - - uid: 5048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,0.5 - parent: 12 - - uid: 5064 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,1.5 - parent: 12 - - uid: 5214 - components: - - type: Transform - pos: 6.5,71.5 - parent: 12 - - uid: 5794 - components: - - 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: 8044 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-55.5 - parent: 12 - - uid: 8131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-57.5 - parent: 12 - - uid: 8254 - components: - - type: Transform - pos: 71.5,13.5 - parent: 12 - - uid: 8724 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-55.5 - parent: 12 - - uid: 8890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-54.5 - parent: 12 - - uid: 9240 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-53.5 - parent: 12 - - uid: 9243 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-55.5 - parent: 12 - - uid: 9579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-11.5 - parent: 12 - - uid: 9612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,21.5 - parent: 12 - - uid: 9632 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-54.5 - parent: 12 - - uid: 9672 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,3.5 - parent: 12 - - uid: 9673 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,7.5 - parent: 12 - - uid: 10042 - components: - - type: Transform - pos: -12.5,-71.5 - parent: 12 - - uid: 10279 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-36.5 - parent: 12 - - uid: 10598 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-32.5 - parent: 12 - - uid: 10636 - components: - - type: Transform - pos: 52.5,-6.5 - parent: 12 - - uid: 10666 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,10.5 - parent: 12 - - uid: 10692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,8.5 - parent: 12 - - uid: 10837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,11.5 - parent: 12 - - uid: 11024 - components: - - type: Transform - pos: -35.5,-49.5 - parent: 12 - - uid: 11026 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-49.5 - parent: 12 - - uid: 11131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,21.5 - parent: 12 - - uid: 11210 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,14.5 - parent: 12 - - uid: 11271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,29.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 - rot: -1.5707963267948966 rad - pos: 22.5,22.5 - parent: 12 - - uid: 11394 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,23.5 - parent: 12 - - uid: 11407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,16.5 - parent: 12 - - uid: 11430 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,15.5 - parent: 12 - - uid: 11441 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,20.5 - parent: 12 - - uid: 11445 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,21.5 - parent: 12 - - uid: 11463 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,6.5 - parent: 12 - - uid: 11474 - components: - - type: Transform - pos: 68.5,-4.5 - parent: 12 - - uid: 11479 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,18.5 - parent: 12 - - uid: 11489 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,23.5 - parent: 12 - - uid: 11494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,22.5 - parent: 12 - - uid: 11500 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,24.5 - parent: 12 - - uid: 11550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,65.5 - parent: 12 - - uid: 11551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,69.5 - parent: 12 - - uid: 11552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,69.5 - parent: 12 - - uid: 11563 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,37.5 - parent: 12 - - uid: 11572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,38.5 - parent: 12 - - uid: 11605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,44.5 - parent: 12 - - uid: 11642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,44.5 - parent: 12 - - uid: 11643 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,42.5 - parent: 12 - - uid: 11649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,50.5 - parent: 12 - - uid: 11684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,63.5 - parent: 12 - - uid: 11694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,56.5 - parent: 12 - - uid: 11695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,67.5 - parent: 12 - - uid: 11865 - components: - - type: Transform - pos: -50.5,-28.5 - parent: 12 - - uid: 12113 - components: - - type: Transform - pos: -44.5,74.5 - parent: 12 - - uid: 12308 - components: - - type: Transform - pos: 28.5,19.5 - parent: 12 - - uid: 12953 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-5.5 - parent: 12 - - uid: 12976 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-4.5 - parent: 12 - - uid: 13148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 12 - - uid: 13149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-7.5 - parent: 12 - - uid: 13150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,6.5 - parent: 12 - - uid: 13151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,6.5 - parent: 12 - - uid: 13153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-20.5 - parent: 12 - - uid: 13154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-17.5 - parent: 12 - - uid: 13155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,6.5 - parent: 12 - - uid: 13156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,4.5 - parent: 12 - - uid: 13157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 12 - - uid: 13158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,2.5 - parent: 12 - - uid: 13159 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,3.5 - parent: 12 - - uid: 13160 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-13.5 - parent: 12 - - uid: 13162 - components: - - type: Transform - pos: 27.5,18.5 - parent: 12 - - uid: 13163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-3.5 - parent: 12 - - uid: 13164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 12 - - uid: 13844 - components: - - type: Transform - pos: 73.5,-4.5 - parent: 12 - - uid: 13859 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,71.5 - parent: 12 - - uid: 14179 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 12 - - uid: 14180 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,2.5 - parent: 12 - - uid: 14182 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 12 - - uid: 14625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-31.5 - parent: 12 - - uid: 15008 - components: - - type: Transform - pos: 67.5,13.5 - parent: 12 - - uid: 15549 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-9.5 - parent: 12 - - uid: 15550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-11.5 - parent: 12 - - uid: 15552 - components: - - type: Transform - pos: 17.5,23.5 - parent: 12 - - uid: 15703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 12 - - uid: 16797 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,4.5 - parent: 12 - - uid: 16799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 12 - - uid: 17305 - components: - - type: Transform - pos: -52.5,-24.5 - parent: 12 - - uid: 17835 - components: - - type: Transform - pos: -47.5,76.5 - parent: 12 - - uid: 18572 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-14.5 - parent: 12 - - uid: 18585 - components: - - type: Transform - pos: 25.5,13.5 - parent: 12 - - uid: 19199 - components: - - type: Transform - pos: 9.5,29.5 - parent: 12 - - uid: 19295 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-51.5 - parent: 12 - - uid: 19355 - components: - - type: Transform - pos: 10.5,29.5 - parent: 12 - - uid: 19357 - components: - - type: Transform - pos: 19.5,24.5 - parent: 12 - - uid: 19358 - components: - - type: Transform - pos: 20.5,22.5 - parent: 12 - - uid: 19455 - components: - - type: Transform - pos: -19.5,-65.5 - parent: 12 - - uid: 19694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,64.5 - parent: 12 - - uid: 19847 - components: - - type: Transform - pos: 11.5,30.5 - parent: 12 - - uid: 19871 - components: - - type: Transform - pos: 15.5,34.5 - parent: 12 - - uid: 22034 - components: - - 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: 22185 - components: - - type: Transform - pos: 53.5,67.5 - parent: 12 - - uid: 22187 - components: - - type: Transform - pos: 51.5,67.5 - parent: 12 - - uid: 22277 - components: - - type: Transform - 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: 22714 - components: - - type: Transform - pos: 61.5,-0.5 - parent: 12 - - uid: 22878 - components: - - type: Transform - pos: -48.5,-53.5 - parent: 12 - - uid: 23139 - components: - - type: Transform - pos: -49.5,-51.5 - parent: 12 - - uid: 23599 - components: - - type: Transform - 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: 24237 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-11.5 - parent: 12 - - uid: 24254 - components: - - type: Transform - pos: -52.5,64.5 - parent: 12 - - uid: 25490 - components: - - type: Transform - pos: -26.5,73.5 - parent: 12 - - uid: 25537 - components: - - type: Transform - pos: 75.5,-4.5 - parent: 12 - - uid: 25555 - components: - - type: Transform - pos: 51.5,66.5 - parent: 12 - - uid: 25558 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,6.5 - parent: 12 - - uid: 25586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-3.5 - parent: 12 - - uid: 25596 - components: - - type: Transform - pos: -5.5,-67.5 - parent: 12 - - uid: 25671 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,34.5 - parent: 12 - - uid: 25739 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,35.5 - parent: 12 - - uid: 25903 - components: - - type: Transform - pos: -51.5,-35.5 - parent: 12 - - uid: 25935 - components: - - type: Transform - pos: -2.5,-17.5 - parent: 12 - - uid: 26133 - components: - - type: Transform - pos: 59.5,65.5 - parent: 12 - - uid: 26149 - components: - - type: Transform - pos: 59.5,60.5 - parent: 12 - - uid: 26150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 12 - - uid: 26241 - components: - - type: Transform - pos: -40.5,-54.5 - parent: 12 - - uid: 26290 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,71.5 - parent: 12 - - uid: 26292 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,70.5 - parent: 12 - - uid: 26480 - components: - - type: Transform - pos: -5.5,-17.5 - parent: 12 - - uid: 26492 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-1.5 - parent: 12 - - uid: 26530 - components: - - type: Transform - pos: -5.5,-14.5 - parent: 12 - - uid: 26538 - components: - - type: Transform - pos: 63.5,-0.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: 26836 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-9.5 - parent: 12 - - uid: 26907 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-57.5 - parent: 12 - - uid: 26909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-11.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: 26949 - components: - - type: Transform - pos: 47.5,66.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: 27019 - components: - - type: Transform - pos: 78.5,-1.5 - parent: 12 - - uid: 27035 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-3.5 - parent: 12 - - uid: 27043 - components: - - type: Transform - pos: 24.5,13.5 - parent: 12 - - uid: 27044 - components: - - type: Transform - 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: 27116 - components: - - type: Transform - pos: -17.5,-68.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: 27240 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-15.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: 27325 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,4.5 - parent: 12 - - uid: 27334 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-13.5 - parent: 12 - - uid: 27335 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-11.5 - parent: 12 - - uid: 27336 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,5.5 - parent: 12 - - uid: 27436 - components: - - type: Transform - pos: -37.5,-52.5 - parent: 12 - - uid: 27886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,15.5 - parent: 12 - - uid: 27952 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-11.5 - parent: 12 - - uid: 27973 - components: - - type: Transform - pos: -39.5,-60.5 - parent: 12 - - uid: 27974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-6.5 - parent: 12 - - uid: 27977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,7.5 - parent: 12 - - uid: 27981 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-17.5 - parent: 12 - - uid: 27982 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-17.5 - parent: 12 - - uid: 27983 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-9.5 - parent: 12 - - uid: 28048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-4.5 - parent: 12 - - uid: 28051 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 12 - - uid: 28052 - components: - - type: Transform - pos: -18.5,-70.5 - parent: 12 - - uid: 28053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,16.5 - parent: 12 - - uid: 28054 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,18.5 - parent: 12 - - uid: 28056 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,21.5 - parent: 12 - - uid: 28057 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,22.5 - parent: 12 - - uid: 28058 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,25.5 - parent: 12 - - uid: 28067 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,5.5 - parent: 12 - - uid: 28069 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 12 - - uid: 28070 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,13.5 - parent: 12 - - uid: 28072 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,7.5 - parent: 12 - - uid: 28132 - components: - - type: Transform - pos: 33.5,30.5 - parent: 12 - - uid: 28133 - components: - - 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 - rot: -1.5707963267948966 rad - pos: 44.5,3.5 - parent: 12 - - uid: 28303 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-10.5 - parent: 12 - - uid: 28310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-16.5 - parent: 12 - - uid: 28387 - components: - - type: Transform - pos: 41.5,64.5 - parent: 12 - - uid: 28388 - components: - - 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 - pos: 36.5,5.5 - parent: 12 - - uid: 28812 - components: - - type: Transform - pos: 32.5,5.5 - parent: 12 - - uid: 28845 - components: - - type: Transform - pos: 29.5,7.5 - parent: 12 - - uid: 28919 - components: - - 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: 29656 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-4.5 - parent: 12 - - uid: 30020 - components: - - type: Transform - pos: 38.5,64.5 - parent: 12 - - uid: 30517 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-51.5 - parent: 12 - - uid: 30531 - components: - - type: Transform - pos: -26.5,-60.5 - parent: 12 - - uid: 30534 - components: - - type: Transform - pos: -35.5,-60.5 - parent: 12 - - uid: 30548 - components: - - type: Transform - pos: -39.5,-55.5 - parent: 12 - - uid: 30568 - components: - - type: Transform - pos: -39.5,-57.5 - parent: 12 - - uid: 30880 - components: - - type: Transform - pos: 6.5,-58.5 - parent: 12 - - uid: 31082 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-72.5 - parent: 12 - - uid: 31084 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-72.5 - parent: 12 - - uid: 31183 - components: - - type: Transform - pos: 4.5,-63.5 - parent: 12 - - uid: 31211 - components: - - type: Transform - pos: -4.5,-69.5 - parent: 12 - - uid: 31214 - components: - - type: Transform - pos: 2.5,-70.5 - parent: 12 - - uid: 31239 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-69.5 - parent: 12 - - uid: 31454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-63.5 - parent: 12 - - uid: 31606 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-20.5 - parent: 12 - - uid: 31609 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,-22.5 - parent: 12 - - uid: 31612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,-26.5 - parent: 12 - - uid: 31681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-28.5 - parent: 12 - - uid: 31682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,-30.5 - parent: 12 - - uid: 31683 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-30.5 - parent: 12 - - uid: 31685 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,-18.5 - parent: 12 - - uid: 31700 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-18.5 - parent: 12 - - uid: 31744 - components: - - type: Transform - pos: 78.5,1.5 - parent: 12 - - uid: 31746 - components: - - type: Transform - pos: 78.5,3.5 - parent: 12 - - uid: 31764 - components: - - type: Transform - pos: 78.5,-0.5 - parent: 12 - - uid: 31838 - components: - - type: Transform - pos: 78.5,7.5 - parent: 12 - - uid: 31839 - components: - - type: Transform - pos: 78.5,-2.5 - parent: 12 - - uid: 32133 - components: - - type: Transform - pos: 78.5,10.5 - parent: 12 - - uid: 32136 - components: - - type: Transform - pos: 69.5,13.5 - parent: 12 - - uid: 32138 - components: - - type: Transform - pos: 74.5,13.5 - parent: 12 - - uid: 32139 - components: - - type: Transform - pos: 78.5,11.5 - parent: 12 - - uid: 32141 - components: - - type: Transform - pos: 75.5,13.5 - parent: 12 - - uid: 32191 - components: - - type: Transform - pos: 65.5,13.5 - parent: 12 -- proto: WallSolid - entities: - - uid: 47 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-6.5 - parent: 12 - - uid: 216 - components: - - type: Transform - 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: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-3.5 - parent: 12 - - uid: 344 - components: - - type: Transform - pos: -0.5,-19.5 - parent: 12 - - uid: 347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-2.5 - parent: 12 - - uid: 348 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-1.5 - parent: 12 - - uid: 349 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-1.5 - parent: 12 - - uid: 350 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-1.5 - parent: 12 - - uid: 351 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-1.5 - parent: 12 - - uid: 352 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-1.5 - parent: 12 - - uid: 360 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-18.5 - parent: 12 - - uid: 391 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-1.5 - parent: 12 - - uid: 410 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,1.5 - parent: 12 - - uid: 413 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,0.5 - parent: 12 - - uid: 416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-0.5 - parent: 12 - - uid: 420 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,1.5 - parent: 12 - - uid: 421 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,1.5 - parent: 12 - - uid: 422 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-0.5 - parent: 12 - - uid: 423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,3.5 - parent: 12 - - uid: 424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,3.5 - parent: 12 - - uid: 428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,3.5 - parent: 12 - - uid: 429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,3.5 - parent: 12 - - uid: 435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,4.5 - parent: 12 - - uid: 460 - components: - - type: Transform - pos: -20.5,-22.5 - parent: 12 - - uid: 461 - components: - - type: Transform - pos: -22.5,-22.5 - parent: 12 - - uid: 462 - components: - - type: Transform - pos: -21.5,-22.5 - parent: 12 - - uid: 466 - components: - - type: Transform - pos: -19.5,-22.5 - parent: 12 - - uid: 467 - components: - - type: Transform - pos: -18.5,-22.5 - parent: 12 - - uid: 480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-19.5 - parent: 12 - - uid: 481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-22.5 - parent: 12 - - uid: 482 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-22.5 - parent: 12 - - uid: 483 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-22.5 - parent: 12 - - uid: 484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-22.5 - parent: 12 - - uid: 485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-22.5 - parent: 12 - - uid: 489 - components: - - type: Transform - pos: -18.5,-25.5 - parent: 12 - - uid: 490 - components: - - type: Transform - pos: -22.5,-25.5 - parent: 12 - - uid: 491 - components: - - type: Transform - pos: -22.5,-26.5 - parent: 12 - - uid: 492 - components: - - type: Transform - pos: -21.5,-26.5 - parent: 12 - - uid: 496 - components: - - type: Transform - pos: -22.5,-23.5 - parent: 12 - - uid: 497 - components: - - type: Transform - pos: -18.5,-23.5 - parent: 12 - - uid: 511 - components: - - type: Transform - pos: -27.5,-26.5 - parent: 12 - - uid: 512 - components: - - type: Transform - pos: -28.5,-26.5 - parent: 12 - - uid: 513 - components: - - type: Transform - pos: -27.5,-27.5 - parent: 12 - - uid: 533 - components: - - type: Transform - pos: -27.5,-31.5 - parent: 12 - - uid: 536 - components: - - type: Transform - pos: -27.5,-28.5 - parent: 12 - - uid: 544 - components: - - type: Transform - pos: -13.5,-20.5 - parent: 12 - - uid: 556 - components: - - type: Transform - pos: -7.5,-25.5 - parent: 12 - - uid: 557 - components: - - type: Transform - pos: -12.5,-25.5 - parent: 12 - - uid: 558 - components: - - type: Transform - pos: -11.5,-25.5 - parent: 12 - - uid: 559 - components: - - type: Transform - pos: -10.5,-25.5 - parent: 12 - - uid: 560 - components: - - type: Transform - pos: -9.5,-25.5 - parent: 12 - - uid: 561 - components: - - type: Transform - pos: -8.5,-25.5 - parent: 12 - - uid: 562 - components: - - type: Transform - pos: -6.5,-24.5 - parent: 12 - - uid: 589 - components: - - type: Transform - pos: 42.5,50.5 - parent: 12 - - uid: 590 - components: - - type: Transform - pos: -32.5,-22.5 - parent: 12 - - uid: 591 - components: - - type: Transform - pos: -31.5,-22.5 - parent: 12 - - uid: 592 - components: - - type: Transform - pos: -30.5,-22.5 - parent: 12 - - uid: 593 - components: - - type: Transform - pos: -29.5,-22.5 - parent: 12 - - uid: 681 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-9.5 - parent: 12 - - uid: 683 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-11.5 - parent: 12 - - uid: 686 - components: - - type: Transform - pos: 49.5,53.5 - parent: 12 - - uid: 687 - components: - - type: Transform - pos: 42.5,49.5 - parent: 12 - - uid: 760 - components: - - type: Transform - pos: 49.5,50.5 - parent: 12 - - uid: 761 - components: - - type: Transform - pos: 43.5,50.5 - parent: 12 - - uid: 762 - components: - - type: Transform - pos: 49.5,52.5 - parent: 12 - - uid: 770 - components: - - type: Transform - pos: -39.5,-32.5 - parent: 12 - - uid: 815 - components: - - type: Transform - pos: -32.5,-36.5 - parent: 12 - - uid: 816 - components: - - type: Transform - pos: -33.5,-36.5 - parent: 12 - - uid: 817 - components: - - type: Transform - pos: -34.5,-36.5 - parent: 12 - - uid: 818 - components: - - type: Transform - pos: -35.5,-36.5 - parent: 12 - - uid: 819 - components: - - type: Transform - pos: -36.5,-36.5 - parent: 12 - - uid: 820 - components: - - type: Transform - pos: -37.5,-36.5 - parent: 12 - - uid: 821 - components: - - type: Transform - pos: -39.5,-33.5 - parent: 12 - - uid: 822 - components: - - type: Transform - pos: -39.5,-36.5 - parent: 12 - - uid: 845 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-40.5 - parent: 12 - - uid: 846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-40.5 - parent: 12 - - uid: 847 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-40.5 - parent: 12 - - uid: 848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-37.5 - parent: 12 - - uid: 849 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-40.5 - parent: 12 - - uid: 858 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-37.5 - parent: 12 - - uid: 859 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-38.5 - parent: 12 - - uid: 860 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-39.5 - parent: 12 - - uid: 861 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-39.5 - parent: 12 - - uid: 862 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-38.5 - parent: 12 - - uid: 863 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-37.5 - parent: 12 - - uid: 864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-39.5 - parent: 12 - - uid: 880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-22.5 - parent: 12 - - uid: 881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-34.5 - parent: 12 - - uid: 882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-33.5 - parent: 12 - - uid: 883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-32.5 - parent: 12 - - uid: 884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-35.5 - parent: 12 - - uid: 885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-36.5 - parent: 12 - - uid: 911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-36.5 - parent: 12 - - uid: 912 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-36.5 - parent: 12 - - uid: 930 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-36.5 - parent: 12 - - uid: 931 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-45.5 - parent: 12 - - uid: 932 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-40.5 - parent: 12 - - uid: 933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-46.5 - parent: 12 - - uid: 934 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-37.5 - parent: 12 - - uid: 939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-47.5 - parent: 12 - - uid: 940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-48.5 - parent: 12 - - uid: 941 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-37.5 - parent: 12 - - uid: 943 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-49.5 - parent: 12 - - uid: 944 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-37.5 - parent: 12 - - uid: 946 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-41.5 - parent: 12 - - uid: 947 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-50.5 - parent: 12 - - uid: 950 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-51.5 - parent: 12 - - uid: 952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-51.5 - parent: 12 - - uid: 954 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-51.5 - parent: 12 - - uid: 956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-41.5 - parent: 12 - - uid: 957 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-50.5 - parent: 12 - - uid: 960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-41.5 - parent: 12 - - uid: 963 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-49.5 - parent: 12 - - uid: 964 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-46.5 - parent: 12 - - uid: 966 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-42.5 - parent: 12 - - uid: 967 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-45.5 - parent: 12 - - uid: 968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-44.5 - parent: 12 - - uid: 969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-46.5 - parent: 12 - - uid: 970 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-45.5 - parent: 12 - - uid: 975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-45.5 - parent: 12 - - uid: 976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-44.5 - parent: 12 - - uid: 977 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-44.5 - parent: 12 - - uid: 978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-47.5 - parent: 12 - - uid: 1031 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,51.5 - parent: 12 - - uid: 1032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-48.5 - parent: 12 - - uid: 1037 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-47.5 - parent: 12 - - uid: 1038 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-50.5 - parent: 12 - - uid: 1051 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-49.5 - parent: 12 - - uid: 1052 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-40.5 - parent: 12 - - uid: 1068 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-26.5 - parent: 12 - - uid: 1173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-41.5 - parent: 12 - - uid: 1174 - components: - - 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: 2112 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,69.5 - parent: 12 - - uid: 2293 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-22.5 - parent: 12 - - uid: 2330 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,12.5 - parent: 12 - - uid: 2363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-57.5 - parent: 12 - - uid: 2364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-57.5 - parent: 12 - - uid: 2365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-57.5 - parent: 12 - - uid: 2366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-57.5 - parent: 12 - - uid: 2367 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: -18.5,-52.5 - parent: 12 - - uid: 2434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-53.5 - parent: 12 - - uid: 2435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-54.5 - parent: 12 - - uid: 2436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-55.5 - parent: 12 - - uid: 2437 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-56.5 - parent: 12 - - uid: 2439 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-48.5 - parent: 12 - - uid: 2440 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-48.5 - parent: 12 - - uid: 2441 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-48.5 - parent: 12 - - uid: 2442 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-48.5 - parent: 12 - - uid: 2443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-48.5 - parent: 12 - - uid: 2444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-48.5 - parent: 12 - - uid: 2450 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,49.5 - parent: 12 - - uid: 2459 - components: - - type: Transform - pos: 48.5,61.5 - parent: 12 - - uid: 2468 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-46.5 - parent: 12 - - uid: 2478 - components: - - type: Transform - 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 - pos: -6.5,-38.5 - parent: 12 - - uid: 2597 - components: - - type: Transform - pos: -6.5,-37.5 - parent: 12 - - uid: 2598 - components: - - type: Transform - pos: -6.5,-36.5 - parent: 12 - - uid: 2599 - components: - - type: Transform - pos: -6.5,-40.5 - parent: 12 - - uid: 2600 - components: - - type: Transform - pos: -6.5,-32.5 - parent: 12 - - uid: 2601 - components: - - type: Transform - pos: -6.5,-39.5 - parent: 12 - - uid: 2602 - components: - - type: Transform - pos: -3.5,-31.5 - parent: 12 - - uid: 2607 - components: - - type: Transform - pos: -9.5,-32.5 - parent: 12 - - uid: 2608 - components: - - type: Transform - pos: -9.5,-33.5 - parent: 12 - - uid: 2622 - components: - - type: Transform - pos: -14.5,-57.5 - parent: 12 - - uid: 2623 - components: - - type: Transform - pos: -14.5,-52.5 - parent: 12 - - uid: 2625 - components: - - type: Transform - pos: -14.5,-53.5 - parent: 12 - - uid: 2632 - components: - - type: Transform - pos: -14.5,-54.5 - parent: 12 - - uid: 2642 - components: - - type: Transform - pos: -23.5,-17.5 - parent: 12 - - uid: 2657 - components: - - type: Transform - pos: -9.5,-58.5 - parent: 12 - - uid: 2658 - components: - - type: Transform - pos: -9.5,-57.5 - parent: 12 - - uid: 2659 - components: - - type: Transform - pos: -10.5,-57.5 - parent: 12 - - uid: 2660 - components: - - type: Transform - pos: -11.5,-57.5 - parent: 12 - - uid: 2661 - components: - - type: Transform - pos: -12.5,-57.5 - parent: 12 - - uid: 2662 - components: - - type: Transform - pos: -13.5,-57.5 - parent: 12 - - uid: 2663 - components: - - 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 - pos: -9.5,-54.5 - parent: 12 - - uid: 2711 - components: - - type: Transform - pos: -9.5,-53.5 - parent: 12 - - uid: 2712 - components: - - type: Transform - pos: -8.5,-53.5 - parent: 12 - - uid: 2726 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-36.5 - parent: 12 - - uid: 2732 - components: - - type: Transform - pos: -1.5,-39.5 - parent: 12 - - uid: 2747 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-36.5 - parent: 12 - - uid: 2823 - components: - - type: Transform - pos: -1.5,-36.5 - parent: 12 - - uid: 2827 - components: - - type: Transform - pos: -4.5,-48.5 - parent: 12 - - uid: 2867 - components: - - type: Transform - pos: 2.5,-49.5 - parent: 12 - - uid: 2873 - components: - - type: Transform - pos: -2.5,-36.5 - parent: 12 - - uid: 2934 - components: - - type: Transform - pos: -2.5,-40.5 - parent: 12 - - uid: 2937 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-36.5 - parent: 12 - - uid: 2940 - components: - - type: Transform - pos: -6.5,-33.5 - parent: 12 - - uid: 2941 - components: - - type: Transform - pos: -5.5,-31.5 - parent: 12 - - uid: 2945 - components: - - type: Transform - pos: -4.5,-31.5 - parent: 12 - - uid: 2957 - components: - - type: Transform - pos: 2.5,-37.5 - parent: 12 - - uid: 2963 - components: - - 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 - pos: 7.5,-37.5 - parent: 12 - - uid: 2969 - components: - - type: Transform - pos: -1.5,-40.5 - parent: 12 - - uid: 2976 - components: - - type: Transform - pos: 6.5,-37.5 - parent: 12 - - uid: 2990 - components: - - type: Transform - pos: 3.5,-37.5 - parent: 12 - - uid: 2991 - components: - - type: Transform - pos: 2.5,-38.5 - parent: 12 - - uid: 2994 - components: - - type: Transform - pos: 4.5,-37.5 - parent: 12 - - uid: 3004 - components: - - type: Transform - pos: 7.5,-33.5 - parent: 12 - - uid: 3038 - components: - - type: Transform - pos: -8.5,-29.5 - parent: 12 - - uid: 3039 - components: - - type: Transform - pos: -7.5,-29.5 - parent: 12 - - uid: 3040 - components: - - type: Transform - pos: -6.5,-29.5 - parent: 12 - - uid: 3041 - components: - - type: Transform - pos: -5.5,-29.5 - parent: 12 - - uid: 3042 - components: - - type: Transform - pos: -4.5,-29.5 - parent: 12 - - uid: 3043 - components: - - type: Transform - pos: 2.5,-29.5 - parent: 12 - - uid: 3044 - components: - - type: Transform - pos: 2.5,-28.5 - parent: 12 - - uid: 3045 - components: - - type: Transform - pos: 3.5,-28.5 - parent: 12 - - uid: 3046 - components: - - type: Transform - pos: 4.5,-28.5 - parent: 12 - - uid: 3047 - components: - - type: Transform - pos: 5.5,-28.5 - parent: 12 - - uid: 3048 - components: - - type: Transform - pos: 6.5,-28.5 - parent: 12 - - uid: 3049 - components: - - type: Transform - pos: 6.5,-29.5 - parent: 12 - - uid: 3051 - components: - - type: Transform - pos: 6.5,-31.5 - parent: 12 - - uid: 3052 - components: - - type: Transform - pos: 6.5,-32.5 - parent: 12 - - uid: 3053 - components: - - type: Transform - pos: 6.5,-33.5 - parent: 12 - - uid: 3072 - components: - - type: Transform - pos: 2.5,-41.5 - parent: 12 - - uid: 3074 - components: - - type: Transform - pos: 10.5,-33.5 - parent: 12 - - uid: 3083 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-44.5 - parent: 12 - - uid: 3084 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-41.5 - parent: 12 - - uid: 3085 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-46.5 - parent: 12 - - uid: 3087 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-39.5 - parent: 12 - - uid: 3088 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-38.5 - parent: 12 - - uid: 3091 - components: - - type: Transform - pos: 6.5,-46.5 - parent: 12 - - uid: 3092 - components: - - type: Transform - pos: 5.5,-46.5 - parent: 12 - - uid: 3093 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-46.5 - parent: 12 - - uid: 3094 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-46.5 - parent: 12 - - uid: 3095 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-47.5 - parent: 12 - - uid: 3097 - components: - - type: Transform - pos: 2.5,-43.5 - parent: 12 - - uid: 3104 - components: - - type: Transform - pos: 59.5,-27.5 - parent: 12 - - uid: 3105 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-22.5 - parent: 12 - - uid: 3194 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-50.5 - parent: 12 - - uid: 3847 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-38.5 - parent: 12 - - uid: 3897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-46.5 - parent: 12 - - uid: 3898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-45.5 - parent: 12 - - uid: 3899 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-40.5 - parent: 12 - - uid: 4020 - components: - - type: Transform - pos: 59.5,-26.5 - parent: 12 - - uid: 4098 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-49.5 - parent: 12 - - uid: 4099 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-36.5 - parent: 12 - - uid: 4100 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-36.5 - parent: 12 - - uid: 4101 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-36.5 - parent: 12 - - uid: 4166 - components: - - type: Transform - pos: 63.5,-22.5 - parent: 12 - - uid: 4171 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-36.5 - parent: 12 - - uid: 4177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-14.5 - parent: 12 - - uid: 4178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-14.5 - parent: 12 - - uid: 4179 - components: - - type: Transform - pos: 10.5,-35.5 - parent: 12 - - uid: 4206 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-34.5 - parent: 12 - - uid: 4207 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-36.5 - parent: 12 - - uid: 4214 - components: - - type: Transform - pos: 7.5,-28.5 - parent: 12 - - uid: 4215 - components: - - type: Transform - pos: 9.5,-28.5 - parent: 12 - - uid: 4216 - components: - - type: Transform - pos: 10.5,-28.5 - parent: 12 - - uid: 4391 - components: - - type: Transform - pos: 4.5,-24.5 - parent: 12 - - uid: 4393 - components: - - type: Transform - pos: 6.5,-24.5 - parent: 12 - - uid: 4394 - components: - - type: Transform - pos: 7.5,-24.5 - parent: 12 - - uid: 4395 - components: - - type: Transform - pos: 7.5,-23.5 - parent: 12 - - uid: 4396 - components: - - type: Transform - pos: 7.5,-22.5 - parent: 12 - - uid: 4397 - components: - - type: Transform - pos: 7.5,-20.5 - parent: 12 - - uid: 4419 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-24.5 - parent: 12 - - uid: 4420 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-24.5 - parent: 12 - - uid: 4440 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-24.5 - parent: 12 - - uid: 4441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-24.5 - parent: 12 - - uid: 4442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-24.5 - parent: 12 - - uid: 4443 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-24.5 - parent: 12 - - uid: 4444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-25.5 - parent: 12 - - uid: 4445 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-23.5 - parent: 12 - - uid: 4452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-19.5 - parent: 12 - - uid: 4454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-18.5 - parent: 12 - - uid: 4455 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-19.5 - parent: 12 - - uid: 4520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-35.5 - parent: 12 - - uid: 4694 - components: - - type: Transform - 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: - - type: Transform - pos: 10.5,40.5 - parent: 12 - - uid: 5061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-40.5 - parent: 12 - - uid: 5126 - components: - - type: Transform - pos: -22.5,-30.5 - parent: 12 - - uid: 5129 - components: - - type: Transform - pos: -22.5,-31.5 - parent: 12 - - uid: 5178 - components: - - type: Transform - pos: -26.5,-17.5 - parent: 12 - - uid: 5207 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-9.5 - parent: 12 - - uid: 5248 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-40.5 - parent: 12 - - uid: 5251 - components: - - type: Transform - 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: 5441 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-19.5 - parent: 12 - - uid: 5442 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-19.5 - parent: 12 - - uid: 5444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-29.5 - parent: 12 - - uid: 5447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-25.5 - parent: 12 - - uid: 5498 - components: - - type: Transform - pos: -2.5,-31.5 - parent: 12 - - uid: 5499 - components: - - type: Transform - pos: 2.5,-40.5 - parent: 12 - - uid: 5531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-32.5 - parent: 12 - - uid: 5557 - components: - - type: Transform - pos: -24.5,-17.5 - parent: 12 - - uid: 5558 - components: - - type: Transform - pos: -22.5,-17.5 - parent: 12 - - uid: 5577 - components: - - type: Transform - pos: -22.5,-18.5 - parent: 12 - - uid: 5578 - components: - - type: Transform - pos: -25.5,-17.5 - parent: 12 - - uid: 5796 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,10.5 - parent: 12 - - uid: 5827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-31.5 - parent: 12 - - uid: 5828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-30.5 - parent: 12 - - uid: 5845 - components: - - type: Transform - pos: -49.5,50.5 - parent: 12 - - uid: 5867 - components: - - type: Transform - pos: -21.5,-18.5 - parent: 12 - - uid: 5968 - components: - - type: Transform - pos: -23.5,-1.5 - parent: 12 - - uid: 5969 - components: - - type: Transform - pos: -25.5,-1.5 - parent: 12 - - uid: 6004 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-29.5 - parent: 12 - - uid: 6054 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,0.5 - parent: 12 - - uid: 6099 - components: - - type: Transform - pos: 25.5,-33.5 - parent: 12 - - uid: 6107 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-15.5 - parent: 12 - - uid: 6108 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-13.5 - parent: 12 - - uid: 6109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-11.5 - parent: 12 - - uid: 6110 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: -17.5,-31.5 - parent: 12 - - uid: 6262 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-29.5 - parent: 12 - - uid: 6268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-31.5 - parent: 12 - - uid: 6269 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-31.5 - parent: 12 - - uid: 6274 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-29.5 - parent: 12 - - uid: 6275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-29.5 - parent: 12 - - uid: 6276 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-30.5 - parent: 12 - - uid: 6304 - components: - - type: Transform - pos: 32.5,-43.5 - parent: 12 - - uid: 6308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-36.5 - parent: 12 - - uid: 6311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-36.5 - parent: 12 - - uid: 6312 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-36.5 - parent: 12 - - uid: 6316 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-38.5 - parent: 12 - - uid: 6319 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-41.5 - parent: 12 - - uid: 6320 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-41.5 - parent: 12 - - uid: 6321 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-40.5 - parent: 12 - - uid: 6322 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-38.5 - parent: 12 - - uid: 6324 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-37.5 - parent: 12 - - uid: 6326 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-37.5 - parent: 12 - - uid: 6334 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-41.5 - parent: 12 - - uid: 6335 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-41.5 - parent: 12 - - uid: 6742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-31.5 - parent: 12 - - uid: 6750 - components: - - type: Transform - pos: 59.5,-18.5 - parent: 12 - - uid: 6760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-32.5 - parent: 12 - - uid: 6776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-33.5 - parent: 12 - - uid: 6782 - components: - - type: Transform - pos: -17.5,69.5 - parent: 12 - - uid: 6790 - components: - - type: Transform - pos: -42.5,-14.5 - parent: 12 - - uid: 7105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-24.5 - parent: 12 - - uid: 7106 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-24.5 - parent: 12 - - uid: 7107 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-24.5 - parent: 12 - - uid: 7108 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-25.5 - parent: 12 - - uid: 7113 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-29.5 - parent: 12 - - uid: 7122 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-11.5 - parent: 12 - - uid: 7123 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-12.5 - parent: 12 - - uid: 7126 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-14.5 - parent: 12 - - uid: 7127 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-16.5 - parent: 12 - - uid: 7323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-17.5 - parent: 12 - - uid: 7324 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-18.5 - parent: 12 - - uid: 7325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-19.5 - parent: 12 - - uid: 7358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-20.5 - parent: 12 - - uid: 7359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-21.5 - parent: 12 - - uid: 7365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-24.5 - parent: 12 - - uid: 7367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-25.5 - parent: 12 - - uid: 7368 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-30.5 - parent: 12 - - uid: 7369 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-29.5 - parent: 12 - - uid: 7370 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-27.5 - parent: 12 - - uid: 7371 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-26.5 - parent: 12 - - uid: 7372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-25.5 - parent: 12 - - uid: 7373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-23.5 - parent: 12 - - uid: 7376 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,1.5 - parent: 12 - - uid: 7377 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-25.5 - parent: 12 - - uid: 7378 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-25.5 - parent: 12 - - uid: 7402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-33.5 - parent: 12 - - uid: 7403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-33.5 - parent: 12 - - uid: 7404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-33.5 - parent: 12 - - uid: 7405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-33.5 - parent: 12 - - uid: 7406 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-33.5 - parent: 12 - - uid: 7407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-33.5 - parent: 12 - - uid: 7408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-33.5 - parent: 12 - - uid: 7409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-32.5 - parent: 12 - - uid: 7410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-31.5 - parent: 12 - - uid: 7411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-30.5 - parent: 12 - - uid: 7412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-31.5 - parent: 12 - - uid: 7413 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-31.5 - parent: 12 - - uid: 7439 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-12.5 - parent: 12 - - uid: 7440 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-12.5 - parent: 12 - - uid: 7441 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-12.5 - parent: 12 - - uid: 7445 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-25.5 - parent: 12 - - uid: 7541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-25.5 - parent: 12 - - uid: 7542 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-38.5 - parent: 12 - - uid: 7543 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-38.5 - parent: 12 - - uid: 7544 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-38.5 - parent: 12 - - uid: 7545 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-38.5 - parent: 12 - - uid: 7585 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-32.5 - parent: 12 - - uid: 7603 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,23.5 - parent: 12 - - uid: 7604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,23.5 - parent: 12 - - uid: 7605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,23.5 - parent: 12 - - uid: 7614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,24.5 - parent: 12 - - uid: 7809 - components: - - type: Transform - pos: 45.5,-22.5 - parent: 12 - - uid: 7823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,25.5 - parent: 12 - - uid: 7848 - components: - - type: Transform - pos: 45.5,-15.5 - parent: 12 - - uid: 8292 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,15.5 - parent: 12 - - uid: 8312 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,60.5 - parent: 12 - - uid: 8322 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-21.5 - parent: 12 - - uid: 8333 - components: - - type: Transform - pos: 9.5,-49.5 - parent: 12 - - uid: 8462 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-23.5 - parent: 12 - - uid: 8506 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-43.5 - parent: 12 - - uid: 8509 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-17.5 - parent: 12 - - uid: 8670 - components: - - 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 - pos: 45.5,-10.5 - parent: 12 - - uid: 8820 - components: - - type: Transform - pos: 24.5,-33.5 - parent: 12 - - uid: 8835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,26.5 - parent: 12 - - uid: 8884 - components: - - 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: 9120 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-67.5 - parent: 12 - - uid: 9133 - components: - - type: Transform - pos: -44.5,66.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 - pos: 45.5,-38.5 - parent: 12 - - uid: 9373 - components: - - type: Transform - pos: 47.5,-38.5 - parent: 12 - - uid: 9423 - components: - - type: Transform - pos: 46.5,9.5 - parent: 12 - - uid: 9594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,21.5 - parent: 12 - - uid: 9602 - components: - - type: Transform - pos: -2.5,-32.5 - parent: 12 - - uid: 9651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,24.5 - parent: 12 - - uid: 9663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-21.5 - parent: 12 - - uid: 9736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,19.5 - parent: 12 - - uid: 9737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,20.5 - parent: 12 - - uid: 9738 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,17.5 - parent: 12 - - uid: 9739 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,19.5 - parent: 12 - - uid: 9740 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,18.5 - parent: 12 - - uid: 9993 - components: - - type: Transform - pos: -9.5,0.5 - parent: 12 - - uid: 10055 - components: - - type: Transform - pos: 41.5,63.5 - parent: 12 - - uid: 10248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,20.5 - parent: 12 - - uid: 10257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,20.5 - parent: 12 - - uid: 10258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,20.5 - parent: 12 - - uid: 10264 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,17.5 - parent: 12 - - uid: 10266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,15.5 - parent: 12 - - uid: 10267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,14.5 - parent: 12 - - uid: 10268 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,13.5 - parent: 12 - - uid: 10269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,12.5 - parent: 12 - - uid: 10270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,4.5 - parent: 12 - - uid: 10272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,6.5 - parent: 12 - - uid: 10273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,5.5 - parent: 12 - - uid: 10274 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,6.5 - parent: 12 - - uid: 10275 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,12.5 - parent: 12 - - uid: 10276 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,13.5 - parent: 12 - - uid: 10277 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,14.5 - parent: 12 - - uid: 10278 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,15.5 - parent: 12 - - uid: 10280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,15.5 - parent: 12 - - uid: 10281 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,15.5 - parent: 12 - - uid: 10282 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,15.5 - parent: 12 - - uid: 10283 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,15.5 - parent: 12 - - uid: 10311 - components: - - type: Transform - pos: -48.5,-41.5 - parent: 12 - - uid: 10315 - components: - - type: Transform - pos: -52.5,-41.5 - parent: 12 - - uid: 10607 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,11.5 - parent: 12 - - uid: 10616 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,19.5 - parent: 12 - - uid: 10619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,21.5 - parent: 12 - - uid: 10665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,18.5 - parent: 12 - - uid: 10691 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,18.5 - parent: 12 - - uid: 10694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,18.5 - parent: 12 - - uid: 10695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,20.5 - parent: 12 - - uid: 10696 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,22.5 - parent: 12 - - uid: 10699 - components: - - type: Transform - pos: 46.5,-41.5 - parent: 12 - - uid: 10703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,18.5 - parent: 12 - - uid: 10714 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,22.5 - parent: 12 - - uid: 10887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-60.5 - parent: 12 - - uid: 10891 - components: - - type: Transform - pos: -18.5,-29.5 - parent: 12 - - uid: 10895 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,14.5 - parent: 12 - - uid: 10901 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-23.5 - parent: 12 - - uid: 10933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-17.5 - parent: 12 - - uid: 10957 - components: - - type: Transform - pos: 3.5,32.5 - parent: 12 - - uid: 10997 - components: - - type: Transform - 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 - pos: -24.5,-56.5 - parent: 12 - - uid: 11028 - components: - - type: Transform - pos: -24.5,-52.5 - parent: 12 - - uid: 11032 - components: - - type: Transform - pos: -24.5,-54.5 - parent: 12 - - uid: 11122 - components: - - type: Transform - pos: -33.5,-57.5 - parent: 12 - - uid: 11137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,25.5 - parent: 12 - - uid: 11138 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,25.5 - parent: 12 - - uid: 11139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,25.5 - parent: 12 - - uid: 11165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,24.5 - parent: 12 - - uid: 11166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,24.5 - parent: 12 - - uid: 11167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,24.5 - parent: 12 - - uid: 11208 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,32.5 - parent: 12 - - uid: 11308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-61.5 - parent: 12 - - uid: 11309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-60.5 - parent: 12 - - uid: 11313 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-27.5 - parent: 12 - - uid: 11317 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-60.5 - parent: 12 - - uid: 11333 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-20.5 - parent: 12 - - uid: 11363 - components: - - type: Transform - pos: 40.5,14.5 - parent: 12 - - uid: 11393 - components: - - 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 - pos: -36.5,-55.5 - parent: 12 - - uid: 11418 - components: - - type: Transform - pos: -35.5,-55.5 - parent: 12 - - uid: 11422 - components: - - type: Transform - pos: -38.5,-55.5 - parent: 12 - - uid: 11431 - components: - - type: Transform - pos: 34.5,16.5 - parent: 12 - - uid: 11432 - components: - - type: Transform - pos: 34.5,17.5 - parent: 12 - - uid: 11466 - components: - - type: Transform - pos: 48.5,13.5 - parent: 12 - - uid: 11475 - components: - - type: Transform - pos: 43.5,9.5 - parent: 12 - - uid: 11478 - components: - - type: Transform - pos: 34.5,9.5 - parent: 12 - - uid: 11480 - components: - - type: Transform - pos: 36.5,9.5 - parent: 12 - - uid: 11504 - components: - - type: Transform - pos: 34.5,13.5 - parent: 12 - - uid: 11506 - components: - - type: Transform - pos: 36.5,13.5 - parent: 12 - - uid: 11508 - components: - - type: Transform - pos: 38.5,13.5 - parent: 12 - - uid: 11540 - components: - - type: Transform - pos: 40.5,20.5 - parent: 12 - - uid: 11541 - components: - - type: Transform - pos: 41.5,20.5 - parent: 12 - - uid: 11542 - components: - - type: Transform - pos: 43.5,20.5 - parent: 12 - - uid: 11543 - components: - - type: Transform - pos: 42.5,19.5 - parent: 12 - - uid: 11544 - components: - - type: Transform - pos: 42.5,18.5 - parent: 12 - - uid: 11545 - components: - - type: Transform - pos: 42.5,17.5 - parent: 12 - - uid: 11546 - components: - - type: Transform - pos: 42.5,16.5 - parent: 12 - - uid: 11547 - components: - - type: Transform - pos: 48.5,16.5 - parent: 12 - - uid: 11549 - components: - - type: Transform - pos: 47.5,18.5 - parent: 12 - - uid: 11554 - components: - - type: Transform - pos: 45.5,22.5 - parent: 12 - - uid: 11555 - components: - - type: Transform - pos: 44.5,22.5 - parent: 12 - - uid: 11556 - components: - - type: Transform - pos: 43.5,22.5 - parent: 12 - - uid: 11557 - components: - - type: Transform - pos: 42.5,22.5 - parent: 12 - - uid: 11559 - components: - - type: Transform - pos: 44.5,23.5 - parent: 12 - - uid: 11560 - components: - - type: Transform - pos: 46.5,23.5 - parent: 12 - - uid: 11561 - components: - - type: Transform - pos: 48.5,23.5 - parent: 12 - - uid: 11562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,32.5 - parent: 12 - - uid: 11590 - components: - - type: Transform - pos: 31.5,20.5 - parent: 12 - - uid: 11595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,32.5 - parent: 12 - - uid: 11596 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,31.5 - parent: 12 - - uid: 11597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,30.5 - parent: 12 - - uid: 11598 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,29.5 - parent: 12 - - uid: 11635 - components: - - type: Transform - pos: 54.5,26.5 - parent: 12 - - uid: 11636 - components: - - type: Transform - pos: 53.5,26.5 - parent: 12 - - uid: 11637 - components: - - type: Transform - pos: 52.5,26.5 - parent: 12 - - uid: 11638 - components: - - type: Transform - pos: 52.5,27.5 - parent: 12 - - uid: 11639 - components: - - type: Transform - pos: 52.5,28.5 - parent: 12 - - uid: 11640 - components: - - type: Transform - pos: 51.5,28.5 - parent: 12 - - uid: 11641 - components: - - type: Transform - pos: 50.5,28.5 - parent: 12 - - uid: 11644 - components: - - type: Transform - pos: 50.5,24.5 - parent: 12 - - uid: 11645 - components: - - type: Transform - pos: 50.5,23.5 - parent: 12 - - uid: 11647 - components: - - type: Transform - pos: 50.5,21.5 - parent: 12 - - uid: 11648 - components: - - type: Transform - pos: 51.5,21.5 - parent: 12 - - uid: 11650 - components: - - type: Transform - pos: 52.5,29.5 - parent: 12 - - uid: 11651 - components: - - type: Transform - pos: 52.5,30.5 - parent: 12 - - uid: 11652 - components: - - type: Transform - pos: 52.5,31.5 - parent: 12 - - uid: 11653 - components: - - type: Transform - pos: 50.5,31.5 - parent: 12 - - uid: 11654 - components: - - type: Transform - pos: 49.5,31.5 - parent: 12 - - uid: 11655 - components: - - type: Transform - pos: 48.5,31.5 - parent: 12 - - uid: 11656 - components: - - type: Transform - pos: 47.5,31.5 - parent: 12 - - uid: 11657 - components: - - type: Transform - pos: 46.5,31.5 - parent: 12 - - uid: 11658 - components: - - type: Transform - pos: 46.5,27.5 - parent: 12 - - uid: 11660 - components: - - type: Transform - pos: 49.5,29.5 - parent: 12 - - uid: 11661 - components: - - type: Transform - pos: 48.5,28.5 - parent: 12 - - uid: 11662 - components: - - type: Transform - pos: 46.5,28.5 - parent: 12 - - uid: 11663 - components: - - type: Transform - pos: 47.5,28.5 - parent: 12 - - uid: 11664 - components: - - type: Transform - pos: 46.5,29.5 - parent: 12 - - uid: 11665 - components: - - type: Transform - pos: 45.5,26.5 - parent: 12 - - uid: 11666 - components: - - type: Transform - pos: 44.5,26.5 - parent: 12 - - uid: 11667 - components: - - type: Transform - pos: 43.5,26.5 - parent: 12 - - uid: 11668 - components: - - type: Transform - pos: 42.5,26.5 - parent: 12 - - uid: 11669 - components: - - type: Transform - pos: 40.5,26.5 - parent: 12 - - uid: 11670 - components: - - type: Transform - pos: 41.5,27.5 - parent: 12 - - uid: 11671 - components: - - type: Transform - pos: 41.5,30.5 - parent: 12 - - uid: 11672 - components: - - type: Transform - pos: 41.5,31.5 - parent: 12 - - uid: 11673 - components: - - type: Transform - pos: 42.5,32.5 - parent: 12 - - uid: 11674 - components: - - type: Transform - pos: 45.5,32.5 - parent: 12 - - uid: 11675 - components: - - type: Transform - pos: 46.5,32.5 - parent: 12 - - uid: 11676 - components: - - type: Transform - pos: 48.5,32.5 - parent: 12 - - uid: 11677 - components: - - type: Transform - pos: 40.5,32.5 - parent: 12 - - uid: 11678 - components: - - type: Transform - pos: 39.5,32.5 - parent: 12 - - uid: 11679 - components: - - type: Transform - pos: 38.5,32.5 - parent: 12 - - uid: 11680 - components: - - type: Transform - pos: 37.5,32.5 - parent: 12 - - uid: 11681 - components: - - type: Transform - pos: 39.5,26.5 - parent: 12 - - uid: 11685 - components: - - type: Transform - pos: 36.5,25.5 - parent: 12 - - uid: 11686 - components: - - type: Transform - pos: 37.5,26.5 - parent: 12 - - uid: 11687 - components: - - type: Transform - pos: 36.5,27.5 - parent: 12 - - uid: 11690 - components: - - type: Transform - pos: 36.5,30.5 - parent: 12 - - uid: 11691 - components: - - type: Transform - pos: 36.5,31.5 - parent: 12 - - uid: 11692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,32.5 - parent: 12 - - uid: 11693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,32.5 - parent: 12 - - uid: 11785 - components: - - type: Transform - pos: 26.5,40.5 - parent: 12 - - uid: 11786 - components: - - type: Transform - pos: 27.5,40.5 - parent: 12 - - uid: 11787 - components: - - type: Transform - pos: 32.5,35.5 - parent: 12 - - uid: 11788 - components: - - type: Transform - pos: 32.5,36.5 - parent: 12 - - uid: 11789 - components: - - type: Transform - pos: 32.5,37.5 - parent: 12 - - uid: 11800 - components: - - type: Transform - pos: 10.5,35.5 - parent: 12 - - uid: 11801 - components: - - type: Transform - pos: 10.5,34.5 - parent: 12 - - uid: 11815 - components: - - type: Transform - pos: 10.5,38.5 - parent: 12 - - uid: 11816 - components: - - type: Transform - pos: 10.5,39.5 - parent: 12 - - uid: 11817 - components: - - type: Transform - pos: 11.5,39.5 - parent: 12 - - uid: 11818 - components: - - type: Transform - pos: 14.5,39.5 - parent: 12 - - uid: 11819 - components: - - type: Transform - pos: 15.5,39.5 - parent: 12 - - uid: 11820 - components: - - type: Transform - pos: 16.5,39.5 - parent: 12 - - uid: 11821 - components: - - type: Transform - pos: 16.5,40.5 - parent: 12 - - uid: 11839 - components: - - type: Transform - pos: 5.5,33.5 - parent: 12 - - uid: 11840 - components: - - type: Transform - pos: 3.5,33.5 - parent: 12 - - uid: 11841 - components: - - type: Transform - pos: 3.5,30.5 - parent: 12 - - uid: 11843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,32.5 - parent: 12 - - uid: 11844 - components: - - type: Transform - pos: -0.5,33.5 - parent: 12 - - uid: 11845 - components: - - type: Transform - pos: -0.5,36.5 - parent: 12 - - uid: 11846 - components: - - type: Transform - pos: -0.5,34.5 - parent: 12 - - uid: 11847 - components: - - type: Transform - pos: -0.5,39.5 - parent: 12 - - uid: 11848 - components: - - type: Transform - pos: -0.5,40.5 - parent: 12 - - uid: 11853 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,32.5 - parent: 12 - - uid: 11854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,32.5 - parent: 12 - - uid: 11881 - components: - - type: Transform - pos: 36.5,33.5 - parent: 12 - - uid: 11882 - components: - - type: Transform - pos: 36.5,34.5 - parent: 12 - - uid: 11883 - components: - - type: Transform - pos: 36.5,35.5 - parent: 12 - - uid: 11884 - components: - - type: Transform - pos: 36.5,36.5 - parent: 12 - - uid: 11885 - components: - - type: Transform - pos: 36.5,37.5 - parent: 12 - - uid: 11886 - components: - - type: Transform - pos: 36.5,38.5 - parent: 12 - - uid: 11887 - components: - - type: Transform - pos: 37.5,39.5 - parent: 12 - - uid: 11888 - components: - - type: Transform - pos: 38.5,39.5 - parent: 12 - - uid: 11889 - components: - - type: Transform - pos: 38.5,40.5 - parent: 12 - - uid: 11907 - components: - - type: Transform - pos: 41.5,33.5 - parent: 12 - - uid: 12000 - components: - - type: Transform - pos: 40.5,15.5 - parent: 12 - - uid: 12030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-65.5 - parent: 12 - - uid: 12054 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-26.5 - parent: 12 - - uid: 12066 - components: - - type: Transform - pos: -51.5,-36.5 - parent: 12 - - uid: 12068 - components: - - type: Transform - pos: -51.5,-33.5 - parent: 12 - - uid: 12256 - components: - - type: Transform - pos: 47.5,20.5 - parent: 12 - - uid: 12526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,50.5 - parent: 12 - - uid: 12527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,50.5 - parent: 12 - - uid: 12528 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,51.5 - parent: 12 - - uid: 12529 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,47.5 - parent: 12 - - uid: 12530 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,47.5 - parent: 12 - - uid: 12531 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,46.5 - parent: 12 - - uid: 12541 - components: - - type: Transform - pos: 66.5,46.5 - parent: 12 - - uid: 12542 - components: - - type: Transform - pos: 65.5,43.5 - parent: 12 - - uid: 12543 - components: - - type: Transform - pos: 61.5,46.5 - parent: 12 - - uid: 12544 - components: - - type: Transform - pos: 60.5,46.5 - parent: 12 - - uid: 12548 - components: - - type: Transform - pos: 61.5,51.5 - parent: 12 - - uid: 12549 - components: - - type: Transform - pos: 60.5,51.5 - parent: 12 - - uid: 12550 - components: - - type: Transform - pos: 63.5,51.5 - parent: 12 - - uid: 12551 - components: - - type: Transform - pos: 66.5,51.5 - parent: 12 - - uid: 12557 - components: - - type: Transform - pos: 65.5,51.5 - parent: 12 - - uid: 12563 - components: - - type: Transform - pos: 64.5,51.5 - parent: 12 - - uid: 12565 - components: - - type: Transform - pos: 63.5,46.5 - parent: 12 - - uid: 12566 - components: - - type: Transform - pos: 64.5,46.5 - parent: 12 - - uid: 12567 - components: - - type: Transform - pos: 65.5,45.5 - parent: 12 - - uid: 12568 - components: - - type: Transform - pos: 65.5,46.5 - parent: 12 - - uid: 12579 - components: - - type: Transform - pos: 59.5,51.5 - parent: 12 - - uid: 12580 - components: - - type: Transform - pos: 58.5,46.5 - parent: 12 - - uid: 12581 - components: - - type: Transform - pos: 59.5,46.5 - parent: 12 - - uid: 12582 - components: - - type: Transform - pos: 58.5,42.5 - parent: 12 - - uid: 12583 - components: - - type: Transform - pos: 58.5,43.5 - parent: 12 - - uid: 12584 - components: - - type: Transform - pos: 58.5,44.5 - parent: 12 - - uid: 12585 - components: - - type: Transform - pos: 57.5,43.5 - parent: 12 - - uid: 12586 - components: - - type: Transform - pos: 56.5,43.5 - parent: 12 - - uid: 12587 - components: - - type: Transform - pos: 55.5,43.5 - parent: 12 - - uid: 12588 - components: - - type: Transform - pos: 54.5,43.5 - parent: 12 - - uid: 12595 - components: - - type: Transform - pos: 48.5,42.5 - parent: 12 - - uid: 12596 - components: - - type: Transform - pos: 47.5,42.5 - parent: 12 - - uid: 12597 - components: - - type: Transform - pos: 46.5,42.5 - parent: 12 - - uid: 12598 - components: - - type: Transform - pos: 45.5,42.5 - parent: 12 - - uid: 12599 - components: - - type: Transform - pos: 44.5,42.5 - parent: 12 - - uid: 12600 - components: - - type: Transform - pos: 44.5,41.5 - parent: 12 - - uid: 12601 - components: - - type: Transform - pos: 44.5,40.5 - parent: 12 - - uid: 12602 - components: - - type: Transform - pos: 43.5,40.5 - parent: 12 - - uid: 12685 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-31.5 - parent: 12 - - uid: 12686 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-30.5 - parent: 12 - - uid: 12687 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-26.5 - parent: 12 - - uid: 12688 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-26.5 - parent: 12 - - uid: 12689 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-31.5 - parent: 12 - - uid: 12690 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-31.5 - parent: 12 - - uid: 12691 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-32.5 - parent: 12 - - uid: 12694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-62.5 - parent: 12 - - uid: 12695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-61.5 - parent: 12 - - uid: 12696 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-60.5 - parent: 12 - - uid: 12701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-60.5 - parent: 12 - - uid: 12972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-14.5 - parent: 12 - - uid: 12974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-12.5 - parent: 12 - - uid: 12978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 12 - - uid: 12979 - components: - - type: Transform - 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: 13147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,46.5 - parent: 12 - - uid: 13152 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-67.5 - parent: 12 - - uid: 13487 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,10.5 - parent: 12 - - uid: 13834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-60.5 - parent: 12 - - uid: 13849 - components: - - type: Transform - pos: 41.5,44.5 - parent: 12 - - uid: 13850 - components: - - type: Transform - pos: 40.5,44.5 - parent: 12 - - uid: 13851 - components: - - type: Transform - pos: 39.5,44.5 - parent: 12 - - uid: 13852 - components: - - type: Transform - pos: 38.5,44.5 - parent: 12 - - uid: 13853 - components: - - type: Transform - pos: 37.5,44.5 - parent: 12 - - uid: 13854 - components: - - type: Transform - pos: 36.5,44.5 - parent: 12 - - uid: 13855 - components: - - type: Transform - pos: 35.5,44.5 - parent: 12 - - uid: 13856 - components: - - type: Transform - pos: 36.5,45.5 - parent: 12 - - uid: 13857 - components: - - type: Transform - pos: 36.5,46.5 - parent: 12 - - uid: 13858 - components: - - type: Transform - pos: 41.5,45.5 - parent: 12 - - uid: 13860 - components: - - type: Transform - pos: 42.5,46.5 - parent: 12 - - uid: 13861 - components: - - type: Transform - pos: 42.5,47.5 - parent: 12 - - uid: 13862 - components: - - type: Transform - pos: 43.5,46.5 - parent: 12 - - uid: 13968 - components: - - type: Transform - pos: 31.5,10.5 - parent: 12 - - uid: 13973 - components: - - type: Transform - pos: 44.5,46.5 - parent: 12 - - uid: 13974 - components: - - type: Transform - pos: 46.5,46.5 - parent: 12 - - uid: 13975 - components: - - type: Transform - pos: 47.5,46.5 - parent: 12 - - uid: 13976 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,23.5 - parent: 12 - - uid: 13979 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,23.5 - parent: 12 - - uid: 13980 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,23.5 - parent: 12 - - uid: 13983 - components: - - type: Transform - pos: 3.5,27.5 - parent: 12 - - uid: 13984 - components: - - type: Transform - pos: 55.5,46.5 - parent: 12 - - uid: 13985 - components: - - type: Transform - pos: 57.5,46.5 - parent: 12 - - uid: 13986 - components: - - type: Transform - pos: 55.5,51.5 - parent: 12 - - uid: 13987 - components: - - type: Transform - pos: 54.5,51.5 - parent: 12 - - uid: 13988 - components: - - type: Transform - pos: 53.5,51.5 - parent: 12 - - uid: 13989 - components: - - type: Transform - pos: 53.5,50.5 - parent: 12 - - uid: 13990 - components: - - type: Transform - pos: 52.5,50.5 - parent: 12 - - uid: 13999 - components: - - type: Transform - pos: 53.5,52.5 - parent: 12 - - uid: 14000 - components: - - type: Transform - pos: 53.5,53.5 - parent: 12 - - uid: 14001 - components: - - type: Transform - pos: 52.5,53.5 - parent: 12 - - uid: 14003 - components: - - type: Transform - pos: 49.5,51.5 - parent: 12 - - uid: 14006 - components: - - type: Transform - pos: 48.5,54.5 - parent: 12 - - uid: 14008 - components: - - type: Transform - pos: 42.5,48.5 - parent: 12 - - uid: 14009 - components: - - type: Transform - pos: 49.5,54.5 - parent: 12 - - uid: 14010 - components: - - type: Transform - pos: 45.5,54.5 - parent: 12 - - uid: 14027 - components: - - type: Transform - pos: 44.5,54.5 - parent: 12 - - uid: 14028 - components: - - type: Transform - pos: 43.5,54.5 - parent: 12 - - uid: 14029 - components: - - type: Transform - pos: 43.5,53.5 - parent: 12 - - uid: 14030 - components: - - type: Transform - pos: 43.5,52.5 - parent: 12 - - uid: 14031 - components: - - type: Transform - pos: 43.5,51.5 - parent: 12 - - uid: 14032 - components: - - type: Transform - pos: 42.5,54.5 - parent: 12 - - uid: 14033 - components: - - type: Transform - pos: 41.5,54.5 - parent: 12 - - uid: 14034 - components: - - type: Transform - pos: 40.5,54.5 - parent: 12 - - uid: 14035 - components: - - type: Transform - pos: 39.5,54.5 - parent: 12 - - uid: 14036 - components: - - type: Transform - pos: 38.5,54.5 - parent: 12 - - uid: 14037 - components: - - type: Transform - pos: 38.5,53.5 - parent: 12 - - uid: 14038 - components: - - type: Transform - pos: 38.5,52.5 - parent: 12 - - uid: 14039 - components: - - type: Transform - pos: 38.5,50.5 - parent: 12 - - uid: 14040 - components: - - type: Transform - pos: 39.5,50.5 - parent: 12 - - uid: 14041 - components: - - type: Transform - pos: 40.5,50.5 - parent: 12 - - uid: 14042 - components: - - type: Transform - pos: 41.5,50.5 - parent: 12 - - uid: 14043 - components: - - type: Transform - pos: 38.5,48.5 - parent: 12 - - uid: 14044 - components: - - type: Transform - pos: 37.5,48.5 - parent: 12 - - uid: 14045 - components: - - type: Transform - pos: 36.5,48.5 - parent: 12 - - uid: 14046 - components: - - type: Transform - pos: 36.5,47.5 - parent: 12 - - uid: 14115 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,48.5 - parent: 12 - - uid: 14116 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,48.5 - parent: 12 - - uid: 14117 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,48.5 - parent: 12 - - uid: 14118 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,48.5 - parent: 12 - - uid: 14119 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,48.5 - parent: 12 - - uid: 14120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,48.5 - parent: 12 - - uid: 14121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,47.5 - parent: 12 - - uid: 14122 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,46.5 - parent: 12 - - uid: 14123 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,45.5 - parent: 12 - - uid: 14124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,44.5 - parent: 12 - - uid: 14125 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,52.5 - parent: 12 - - uid: 14126 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,53.5 - parent: 12 - - uid: 14127 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,52.5 - parent: 12 - - uid: 14128 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,52.5 - parent: 12 - - uid: 14129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,52.5 - parent: 12 - - uid: 14130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,52.5 - parent: 12 - - uid: 14131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,51.5 - parent: 12 - - uid: 14132 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,49.5 - parent: 12 - - uid: 14133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,52.5 - parent: 12 - - uid: 14134 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,54.5 - parent: 12 - - uid: 14135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,54.5 - parent: 12 - - uid: 14136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,54.5 - parent: 12 - - uid: 14137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,51.5 - parent: 12 - - uid: 14138 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,48.5 - parent: 12 - - uid: 14139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,44.5 - parent: 12 - - uid: 14140 - components: - - type: Transform - 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 - pos: 3.5,25.5 - parent: 12 - - uid: 14199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,61.5 - parent: 12 - - uid: 14200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,61.5 - parent: 12 - - uid: 14201 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,61.5 - parent: 12 - - uid: 14203 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,61.5 - parent: 12 - - uid: 14212 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,57.5 - parent: 12 - - uid: 14213 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,57.5 - parent: 12 - - uid: 14214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,57.5 - parent: 12 - - uid: 14215 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,57.5 - parent: 12 - - uid: 14216 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,57.5 - parent: 12 - - uid: 14217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,57.5 - parent: 12 - - uid: 14221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,55.5 - parent: 12 - - uid: 14222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,58.5 - parent: 12 - - uid: 14223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,58.5 - parent: 12 - - uid: 14224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,58.5 - parent: 12 - - uid: 14225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,58.5 - parent: 12 - - uid: 14226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,58.5 - parent: 12 - - uid: 14227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,58.5 - parent: 12 - - uid: 14228 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,58.5 - parent: 12 - - uid: 14247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,66.5 - parent: 12 - - uid: 14248 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,67.5 - parent: 12 - - uid: 14489 - components: - - type: Transform - pos: 33.5,59.5 - parent: 12 - - uid: 14491 - components: - - type: Transform - pos: 32.5,60.5 - parent: 12 - - uid: 14492 - components: - - type: Transform - pos: 31.5,60.5 - parent: 12 - - uid: 14493 - components: - - type: Transform - pos: 31.5,61.5 - parent: 12 - - uid: 14494 - components: - - type: Transform - pos: 30.5,61.5 - parent: 12 - - uid: 14495 - components: - - type: Transform - pos: 29.5,61.5 - parent: 12 - - uid: 14496 - components: - - type: Transform - pos: 28.5,61.5 - parent: 12 - - uid: 14502 - components: - - type: Transform - pos: 24.5,61.5 - parent: 12 - - uid: 14541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,68.5 - parent: 12 - - uid: 14543 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,66.5 - parent: 12 - - uid: 14544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,66.5 - parent: 12 - - uid: 14545 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,65.5 - parent: 12 - - uid: 14546 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,64.5 - parent: 12 - - uid: 14547 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,64.5 - parent: 12 - - uid: 14548 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,64.5 - parent: 12 - - uid: 14549 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,64.5 - parent: 12 - - uid: 14551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,64.5 - parent: 12 - - uid: 14554 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,64.5 - parent: 12 - - uid: 14556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,63.5 - parent: 12 - - uid: 14560 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,60.5 - parent: 12 - - uid: 14562 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,63.5 - parent: 12 - - uid: 14563 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,63.5 - parent: 12 - - uid: 14564 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,64.5 - parent: 12 - - uid: 14565 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,64.5 - parent: 12 - - uid: 14566 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,65.5 - parent: 12 - - uid: 14567 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,66.5 - parent: 12 - - uid: 14568 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,66.5 - parent: 12 - - uid: 14569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,64.5 - parent: 12 - - uid: 14570 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,64.5 - parent: 12 - - uid: 14571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,66.5 - parent: 12 - - uid: 14572 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,60.5 - parent: 12 - - uid: 14573 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,60.5 - parent: 12 - - uid: 14584 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,55.5 - parent: 12 - - uid: 14589 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,54.5 - parent: 12 - - uid: 14590 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,53.5 - parent: 12 - - uid: 14591 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,52.5 - parent: 12 - - uid: 14592 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,51.5 - parent: 12 - - uid: 14599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,46.5 - parent: 12 - - uid: 14600 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,46.5 - parent: 12 - - uid: 14601 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,47.5 - parent: 12 - - uid: 14602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,45.5 - parent: 12 - - uid: 14603 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,44.5 - parent: 12 - - uid: 14610 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,46.5 - parent: 12 - - uid: 14611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,46.5 - parent: 12 - - uid: 14621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,68.5 - parent: 12 - - uid: 14624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,64.5 - parent: 12 - - uid: 14626 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,63.5 - parent: 12 - - uid: 14630 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,63.5 - parent: 12 - - uid: 14631 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,63.5 - parent: 12 - - uid: 14632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,64.5 - parent: 12 - - uid: 14633 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,65.5 - parent: 12 - - uid: 14634 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,66.5 - parent: 12 - - uid: 14635 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,67.5 - parent: 12 - - uid: 14636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,67.5 - parent: 12 - - uid: 14637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,67.5 - parent: 12 - - uid: 14638 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,68.5 - parent: 12 - - uid: 14915 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,61.5 - parent: 12 - - uid: 14916 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,63.5 - parent: 12 - - uid: 14917 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,62.5 - parent: 12 - - uid: 14919 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,61.5 - parent: 12 - - uid: 14934 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-11.5 - parent: 12 - - uid: 14942 - components: - - type: Transform - pos: 29.5,-34.5 - parent: 12 - - uid: 14956 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-7.5 - parent: 12 - - uid: 15459 - components: - - type: Transform - pos: -23.5,30.5 - parent: 12 - - uid: 15468 - components: - - type: Transform - pos: -29.5,35.5 - parent: 12 - - uid: 15470 - components: - - type: Transform - pos: -27.5,35.5 - parent: 12 - - uid: 15471 - components: - - type: Transform - pos: -28.5,35.5 - parent: 12 - - uid: 15472 - components: - - type: Transform - pos: -25.5,35.5 - parent: 12 - - uid: 15473 - components: - - type: Transform - pos: -23.5,35.5 - parent: 12 - - uid: 15485 - components: - - type: Transform - pos: -26.5,35.5 - parent: 12 - - uid: 15486 - components: - - type: Transform - pos: -24.5,35.5 - parent: 12 - - uid: 15487 - components: - - type: Transform - pos: -23.5,34.5 - parent: 12 - - uid: 15493 - components: - - type: Transform - pos: -30.5,35.5 - parent: 12 - - uid: 15498 - components: - - type: Transform - pos: -24.5,30.5 - parent: 12 - - uid: 15503 - components: - - type: Transform - pos: -21.5,34.5 - parent: 12 - - uid: 15504 - components: - - type: Transform - pos: -23.5,32.5 - parent: 12 - - uid: 15505 - components: - - type: Transform - pos: -23.5,31.5 - parent: 12 - - uid: 15568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,34.5 - parent: 12 - - uid: 15569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,34.5 - parent: 12 - - uid: 15571 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,34.5 - parent: 12 - - uid: 15572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,35.5 - parent: 12 - - uid: 15573 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,36.5 - parent: 12 - - uid: 15585 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,41.5 - parent: 12 - - uid: 15666 - components: - - type: Transform - pos: 3.5,24.5 - parent: 12 - - uid: 15667 - components: - - type: Transform - pos: 3.5,26.5 - parent: 12 - - uid: 15668 - components: - - type: Transform - pos: 3.5,28.5 - parent: 12 - - uid: 15669 - components: - - type: Transform - pos: 3.5,29.5 - parent: 12 - - uid: 15673 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,13.5 - parent: 12 - - uid: 15676 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,13.5 - parent: 12 - - uid: 15677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,15.5 - parent: 12 - - uid: 15704 - components: - - type: Transform - pos: -22.5,30.5 - parent: 12 - - uid: 15707 - components: - - type: Transform - pos: -18.5,34.5 - parent: 12 - - uid: 15724 - components: - - type: Transform - pos: -20.5,30.5 - parent: 12 - - uid: 15725 - components: - - type: Transform - pos: -19.5,30.5 - parent: 12 - - uid: 15726 - components: - - type: Transform - pos: -18.5,30.5 - parent: 12 - - uid: 15727 - components: - - type: Transform - pos: -18.5,31.5 - parent: 12 - - uid: 15728 - components: - - type: Transform - pos: -18.5,32.5 - parent: 12 - - uid: 15729 - components: - - type: Transform - pos: -18.5,37.5 - parent: 12 - - uid: 15769 - components: - - type: Transform - pos: 10.5,41.5 - parent: 12 - - uid: 15770 - components: - - type: Transform - pos: 10.5,42.5 - parent: 12 - - uid: 15771 - components: - - type: Transform - pos: 9.5,42.5 - parent: 12 - - uid: 15772 - components: - - type: Transform - pos: 6.5,42.5 - parent: 12 - - uid: 15773 - components: - - type: Transform - pos: 3.5,42.5 - parent: 12 - - uid: 15774 - components: - - type: Transform - pos: 0.5,42.5 - parent: 12 - - uid: 16342 - components: - - type: Transform - pos: -18.5,-28.5 - parent: 12 - - uid: 16348 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,13.5 - parent: 12 - - uid: 16362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-32.5 - parent: 12 - - uid: 16365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-32.5 - parent: 12 - - uid: 16367 - components: - - type: Transform - pos: -22.5,-27.5 - parent: 12 - - uid: 16637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,64.5 - parent: 12 - - uid: 16766 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 12 - - uid: 16800 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,26.5 - parent: 12 - - uid: 16872 - components: - - type: Transform - pos: -24.5,-55.5 - parent: 12 - - uid: 16874 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,46.5 - parent: 12 - - uid: 16875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,46.5 - parent: 12 - - uid: 16876 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,47.5 - parent: 12 - - uid: 16877 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,48.5 - parent: 12 - - uid: 16878 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,49.5 - parent: 12 - - uid: 16879 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,50.5 - parent: 12 - - uid: 16880 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,51.5 - parent: 12 - - uid: 16881 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,52.5 - parent: 12 - - uid: 16882 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,53.5 - parent: 12 - - uid: 16883 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,54.5 - parent: 12 - - uid: 16884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,55.5 - parent: 12 - - uid: 16885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,56.5 - parent: 12 - - uid: 16886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,57.5 - parent: 12 - - uid: 16888 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,59.5 - parent: 12 - - uid: 16889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,60.5 - parent: 12 - - uid: 16890 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,60.5 - parent: 12 - - uid: 16892 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,60.5 - parent: 12 - - uid: 16893 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,60.5 - parent: 12 - - uid: 16894 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,60.5 - parent: 12 - - uid: 16895 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,60.5 - parent: 12 - - uid: 16896 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,60.5 - parent: 12 - - uid: 16897 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,60.5 - parent: 12 - - uid: 16898 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,60.5 - parent: 12 - - uid: 16903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,57.5 - parent: 12 - - uid: 16904 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,55.5 - parent: 12 - - uid: 16905 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,57.5 - parent: 12 - - uid: 16906 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,56.5 - parent: 12 - - uid: 16907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,54.5 - parent: 12 - - uid: 16908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,54.5 - parent: 12 - - uid: 16909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,54.5 - parent: 12 - - uid: 16910 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,54.5 - parent: 12 - - uid: 16911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,58.5 - parent: 12 - - uid: 16912 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,59.5 - parent: 12 - - uid: 16915 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,46.5 - parent: 12 - - uid: 16916 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,46.5 - parent: 12 - - uid: 16917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,47.5 - parent: 12 - - uid: 16918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,48.5 - parent: 12 - - uid: 16919 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,49.5 - parent: 12 - - uid: 16920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,50.5 - parent: 12 - - uid: 16921 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,51.5 - parent: 12 - - uid: 16922 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,52.5 - parent: 12 - - uid: 16929 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,53.5 - parent: 12 - - uid: 16930 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,53.5 - parent: 12 - - uid: 16931 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,53.5 - parent: 12 - - uid: 17531 - components: - - type: Transform - pos: -24.5,-53.5 - parent: 12 - - uid: 17536 - components: - - type: Transform - pos: -11.5,-9.5 - parent: 12 - - uid: 17537 - components: - - type: Transform - pos: -13.5,-7.5 - parent: 12 - - uid: 17538 - components: - - type: Transform - pos: -13.5,-9.5 - parent: 12 - - uid: 17539 - components: - - type: Transform - pos: -12.5,-9.5 - parent: 12 - - uid: 17540 - components: - - type: Transform - pos: -13.5,-8.5 - parent: 12 - - uid: 17541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,24.5 - parent: 12 - - uid: 17542 - components: - - type: Transform - pos: -19.5,-9.5 - parent: 12 - - uid: 17543 - components: - - type: Transform - pos: -19.5,-8.5 - parent: 12 - - uid: 17546 - components: - - type: Transform - pos: -19.5,-7.5 - parent: 12 - - uid: 17551 - components: - - type: Transform - pos: -55.5,-32.5 - parent: 12 - - uid: 17624 - components: - - type: Transform - pos: -18.5,-7.5 - parent: 12 - - uid: 17696 - components: - - type: Transform - pos: -55.5,-31.5 - parent: 12 - - uid: 17972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,26.5 - parent: 12 - - uid: 17973 - components: - - type: Transform - pos: -4.5,-53.5 - parent: 12 - - uid: 17974 - components: - - type: Transform - pos: -4.5,-52.5 - parent: 12 - - uid: 17977 - components: - - type: Transform - pos: 0.5,-54.5 - parent: 12 - - uid: 18307 - components: - - type: Transform - pos: -4.5,-54.5 - parent: 12 - - uid: 18560 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,25.5 - parent: 12 - - uid: 18567 - components: - - type: Transform - pos: -17.5,-7.5 - parent: 12 - - uid: 18568 - components: - - type: Transform - pos: -17.5,-8.5 - parent: 12 - - uid: 18569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,24.5 - parent: 12 - - uid: 18570 - components: - - type: Transform - pos: -17.5,-9.5 - parent: 12 - - uid: 18571 - components: - - type: Transform - pos: -18.5,-9.5 - parent: 12 - - uid: 18573 - components: - - type: Transform - pos: -19.5,-18.5 - parent: 12 - - uid: 18575 - components: - - type: Transform - pos: -19.5,-16.5 - parent: 12 - - uid: 18576 - components: - - type: Transform - pos: -18.5,-16.5 - parent: 12 - - uid: 18578 - components: - - type: Transform - pos: -17.5,-16.5 - parent: 12 - - uid: 18579 - components: - - type: Transform - pos: -17.5,-17.5 - parent: 12 - - uid: 18580 - components: - - type: Transform - pos: -17.5,-18.5 - parent: 12 - - uid: 18581 - components: - - type: Transform - pos: -18.5,-18.5 - parent: 12 - - uid: 18583 - components: - - type: Transform - pos: -13.5,-18.5 - parent: 12 - - uid: 18584 - components: - - type: Transform - pos: -12.5,-18.5 - parent: 12 - - uid: 18586 - components: - - type: Transform - pos: -11.5,-16.5 - parent: 12 - - uid: 18587 - components: - - type: Transform - pos: -12.5,-16.5 - parent: 12 - - uid: 18588 - components: - - type: Transform - pos: -13.5,-16.5 - parent: 12 - - uid: 18590 - components: - - type: Transform - pos: -13.5,-17.5 - parent: 12 - - uid: 18591 - components: - - type: Transform - pos: -21.5,-8.5 - parent: 12 - - uid: 18592 - components: - - type: Transform - pos: -24.5,-8.5 - parent: 12 - - uid: 18593 - components: - - type: Transform - pos: -12.5,-20.5 - parent: 12 - - uid: 18594 - components: - - type: Transform - pos: -9.5,-20.5 - parent: 12 - - uid: 18595 - components: - - type: Transform - pos: -41.5,-31.5 - parent: 12 - - uid: 18597 - components: - - type: Transform - pos: -40.5,-31.5 - parent: 12 - - uid: 18598 - components: - - type: Transform - pos: -39.5,-31.5 - parent: 12 - - uid: 18599 - components: - - type: Transform - pos: -38.5,-31.5 - parent: 12 - - uid: 18600 - components: - - type: Transform - pos: -42.5,-31.5 - parent: 12 - - uid: 18601 - components: - - type: Transform - pos: -43.5,-31.5 - parent: 12 - - uid: 18602 - components: - - type: Transform - pos: -44.5,-31.5 - parent: 12 - - uid: 18603 - components: - - type: Transform - pos: -45.5,-31.5 - parent: 12 - - uid: 18604 - components: - - type: Transform - pos: -46.5,-31.5 - parent: 12 - - uid: 18605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-19.5 - parent: 12 - - uid: 18606 - components: - - type: Transform - pos: -47.5,-31.5 - parent: 12 - - uid: 18607 - components: - - type: Transform - pos: -47.5,-30.5 - parent: 12 - - uid: 18608 - components: - - type: Transform - pos: -47.5,-28.5 - parent: 12 - - uid: 18609 - components: - - type: Transform - pos: -49.5,-28.5 - parent: 12 - - uid: 18610 - components: - - type: Transform - pos: -48.5,-28.5 - parent: 12 - - uid: 18612 - components: - - type: Transform - pos: -41.5,-30.5 - parent: 12 - - uid: 18613 - components: - - type: Transform - pos: -36.5,-48.5 - parent: 12 - - uid: 18614 - components: - - type: Transform - pos: -38.5,-30.5 - parent: 12 - - uid: 18615 - components: - - type: Transform - pos: -27.5,-51.5 - parent: 12 - - uid: 18616 - components: - - type: Transform - pos: -25.5,-51.5 - parent: 12 - - uid: 18618 - components: - - type: Transform - pos: -51.5,-45.5 - parent: 12 - - uid: 18622 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,46.5 - parent: 12 - - uid: 18634 - components: - - type: Transform - pos: -14.5,-62.5 - parent: 12 - - uid: 18653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,43.5 - parent: 12 - - uid: 18655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,43.5 - parent: 12 - - uid: 19034 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,47.5 - parent: 12 - - uid: 19061 - components: - - type: Transform - pos: -18.5,45.5 - parent: 12 - - uid: 19062 - components: - - type: Transform - pos: -18.5,46.5 - parent: 12 - - uid: 19063 - components: - - type: Transform - pos: -18.5,47.5 - parent: 12 - - uid: 19065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,46.5 - parent: 12 - - uid: 19066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,47.5 - parent: 12 - - uid: 19067 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,48.5 - parent: 12 - - uid: 19069 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,48.5 - parent: 12 - - uid: 19070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,48.5 - parent: 12 - - uid: 19071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,48.5 - parent: 12 - - uid: 19072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,49.5 - parent: 12 - - uid: 19073 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,49.5 - parent: 12 - - uid: 19075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,49.5 - parent: 12 - - uid: 19076 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,50.5 - parent: 12 - - uid: 19077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,50.5 - parent: 12 - - uid: 19095 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,42.5 - parent: 12 - - uid: 19096 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: -5.5,-22.5 - parent: 12 - - uid: 19288 - components: - - type: Transform - pos: -14.5,-59.5 - parent: 12 - - uid: 19291 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-5.5 - parent: 12 - - uid: 19459 - components: - - type: Transform - pos: 1.5,-48.5 - parent: 12 - - uid: 19461 - components: - - type: Transform - pos: -5.5,-53.5 - parent: 12 - - uid: 19462 - components: - - type: Transform - pos: -4.5,-59.5 - parent: 12 - - uid: 19567 - components: - - type: Transform - pos: -54.5,-33.5 - parent: 12 - - uid: 19571 - components: - - type: Transform - pos: -14.5,-61.5 - parent: 12 - - uid: 19572 - components: - - type: Transform - pos: -14.5,-60.5 - parent: 12 - - uid: 19573 - components: - - type: Transform - pos: -14.5,-63.5 - parent: 12 - - uid: 19576 - components: - - type: Transform - pos: 2.5,-51.5 - parent: 12 - - uid: 19577 - components: - - type: Transform - pos: 2.5,-52.5 - parent: 12 - - uid: 19578 - components: - - type: Transform - pos: -23.5,-13.5 - parent: 12 - - uid: 19581 - components: - - type: Transform - pos: -20.5,56.5 - parent: 12 - - uid: 19587 - components: - - type: Transform - pos: -18.5,56.5 - parent: 12 - - uid: 19588 - components: - - type: Transform - pos: -18.5,54.5 - parent: 12 - - uid: 19590 - components: - - type: Transform - pos: -17.5,51.5 - parent: 12 - - uid: 19591 - components: - - type: Transform - pos: -17.5,52.5 - parent: 12 - - uid: 19592 - components: - - type: Transform - pos: -17.5,53.5 - parent: 12 - - uid: 19593 - components: - - type: Transform - pos: -17.5,54.5 - parent: 12 - - uid: 19595 - components: - - type: Transform - pos: -17.5,56.5 - parent: 12 - - uid: 19596 - components: - - type: Transform - pos: -17.5,57.5 - parent: 12 - - uid: 19597 - components: - - type: Transform - pos: -20.5,58.5 - parent: 12 - - uid: 19599 - components: - - type: Transform - pos: -17.5,58.5 - parent: 12 - - uid: 19601 - components: - - type: Transform - pos: -52.5,-33.5 - parent: 12 - - uid: 19607 - components: - - type: Transform - pos: -17.5,59.5 - parent: 12 - - uid: 19608 - components: - - type: Transform - pos: -17.5,60.5 - parent: 12 - - uid: 19609 - components: - - type: Transform - pos: -17.5,61.5 - parent: 12 - - uid: 19610 - components: - - type: Transform - pos: -17.5,62.5 - parent: 12 - - uid: 19611 - components: - - type: Transform - pos: -17.5,64.5 - parent: 12 - - uid: 19623 - components: - - type: Transform - pos: 11.5,-44.5 - parent: 12 - - uid: 19630 - components: - - type: Transform - pos: -19.5,69.5 - parent: 12 - - uid: 19637 - components: - - type: Transform - pos: -11.5,70.5 - parent: 12 - - uid: 19638 - components: - - type: Transform - pos: -12.5,70.5 - parent: 12 - - uid: 19639 - components: - - type: Transform - pos: -10.5,70.5 - parent: 12 - - uid: 19640 - components: - - type: Transform - pos: -8.5,70.5 - parent: 12 - - uid: 19641 - components: - - type: Transform - pos: -7.5,70.5 - parent: 12 - - uid: 19642 - components: - - 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 - pos: 11.5,-45.5 - parent: 12 - - uid: 19664 - components: - - type: Transform - pos: 11.5,-46.5 - parent: 12 - - uid: 19682 - components: - - type: Transform - pos: -11.5,67.5 - parent: 12 - - uid: 19683 - components: - - type: Transform - pos: -11.5,68.5 - parent: 12 - - uid: 19684 - components: - - type: Transform - pos: -7.5,68.5 - parent: 12 - - uid: 19685 - components: - - type: Transform - pos: -10.5,67.5 - parent: 12 - - uid: 19686 - components: - - type: Transform - pos: -8.5,67.5 - parent: 12 - - uid: 19687 - components: - - type: Transform - pos: -7.5,67.5 - parent: 12 - - uid: 19688 - components: - - type: Transform - pos: -12.5,67.5 - parent: 12 - - uid: 19689 - components: - - type: Transform - pos: -6.5,67.5 - parent: 12 - - uid: 19690 - components: - - type: Transform - pos: -5.5,66.5 - parent: 12 - - uid: 19691 - components: - - type: Transform - pos: -13.5,67.5 - parent: 12 - - uid: 19693 - components: - - type: Transform - pos: -5.5,65.5 - parent: 12 - - uid: 19695 - components: - - type: Transform - pos: -17.5,65.5 - parent: 12 - - uid: 19696 - components: - - type: Transform - pos: -16.5,66.5 - parent: 12 - - uid: 19697 - components: - - type: Transform - pos: -15.5,66.5 - parent: 12 - - uid: 19698 - components: - - type: Transform - pos: -14.5,66.5 - parent: 12 - - uid: 19699 - components: - - type: Transform - pos: -13.5,66.5 - parent: 12 - - uid: 19700 - components: - - type: Transform - pos: -5.5,64.5 - parent: 12 - - uid: 19701 - components: - - type: Transform - pos: -5.5,63.5 - parent: 12 - - uid: 19702 - components: - - type: Transform - pos: -5.5,62.5 - parent: 12 - - uid: 19703 - components: - - type: Transform - pos: -5.5,59.5 - parent: 12 - - uid: 19704 - components: - - type: Transform - pos: -5.5,58.5 - parent: 12 - - uid: 19705 - components: - - type: Transform - pos: -5.5,57.5 - parent: 12 - - uid: 19706 - components: - - type: Transform - pos: -6.5,57.5 - parent: 12 - - uid: 19707 - components: - - type: Transform - pos: -7.5,57.5 - parent: 12 - - uid: 19708 - components: - - type: Transform - pos: -8.5,57.5 - parent: 12 - - uid: 19709 - components: - - type: Transform - pos: -11.5,57.5 - parent: 12 - - uid: 19710 - components: - - type: Transform - pos: -12.5,57.5 - parent: 12 - - uid: 19711 - components: - - type: Transform - pos: -13.5,57.5 - parent: 12 - - uid: 19712 - components: - - type: Transform - pos: -14.5,57.5 - parent: 12 - - uid: 19713 - components: - - type: Transform - pos: -15.5,57.5 - parent: 12 - - uid: 19714 - components: - - type: Transform - pos: -16.5,57.5 - parent: 12 - - uid: 19715 - components: - - type: Transform - pos: -12.5,56.5 - parent: 12 - - uid: 19716 - components: - - type: Transform - pos: -12.5,55.5 - parent: 12 - - uid: 19717 - components: - - type: Transform - pos: -12.5,54.5 - parent: 12 - - uid: 19719 - components: - - type: Transform - pos: -12.5,53.5 - parent: 12 - - uid: 19722 - components: - - type: Transform - pos: -13.5,65.5 - parent: 12 - - uid: 19723 - components: - - type: Transform - pos: -13.5,64.5 - parent: 12 - - uid: 19724 - components: - - type: Transform - pos: -13.5,61.5 - parent: 12 - - uid: 19725 - components: - - type: Transform - pos: -13.5,60.5 - parent: 12 - - uid: 19726 - components: - - type: Transform - pos: -13.5,59.5 - parent: 12 - - uid: 19727 - components: - - type: Transform - pos: -13.5,58.5 - parent: 12 - - uid: 19729 - components: - - type: Transform - pos: -11.5,52.5 - parent: 12 - - uid: 19730 - components: - - type: Transform - pos: -16.5,52.5 - parent: 12 - - uid: 19731 - components: - - type: Transform - pos: -15.5,52.5 - parent: 12 - - uid: 19732 - components: - - type: Transform - pos: -13.5,52.5 - parent: 12 - - uid: 19733 - components: - - type: Transform - pos: -12.5,52.5 - parent: 12 - - uid: 19734 - components: - - type: Transform - pos: -11.5,51.5 - parent: 12 - - uid: 19748 - components: - - type: Transform - pos: -3.5,49.5 - parent: 12 - - uid: 19753 - components: - - type: Transform - pos: -3.5,50.5 - parent: 12 - - uid: 19754 - components: - - type: Transform - pos: -3.5,51.5 - parent: 12 - - uid: 19755 - components: - - type: Transform - pos: -3.5,52.5 - parent: 12 - - uid: 19756 - components: - - type: Transform - pos: -3.5,53.5 - parent: 12 - - uid: 19757 - components: - - type: Transform - pos: -3.5,54.5 - parent: 12 - - uid: 19758 - components: - - type: Transform - pos: -3.5,55.5 - parent: 12 - - uid: 19759 - components: - - type: Transform - pos: -3.5,56.5 - parent: 12 - - uid: 19760 - components: - - type: Transform - pos: -3.5,57.5 - parent: 12 - - uid: 19761 - components: - - type: Transform - pos: -4.5,57.5 - parent: 12 - - uid: 19762 - components: - - type: Transform - pos: -7.5,56.5 - parent: 12 - - uid: 19763 - components: - - type: Transform - pos: -7.5,55.5 - parent: 12 - - uid: 19764 - components: - - type: Transform - pos: -7.5,54.5 - parent: 12 - - uid: 19765 - components: - - type: Transform - pos: -7.5,53.5 - parent: 12 - - uid: 19766 - components: - - type: Transform - pos: -7.5,52.5 - parent: 12 - - uid: 19767 - components: - - type: Transform - pos: -6.5,52.5 - parent: 12 - - uid: 19768 - components: - - type: Transform - pos: -2.5,57.5 - parent: 12 - - uid: 19769 - components: - - type: Transform - pos: -4.5,52.5 - parent: 12 - - uid: 19771 - components: - - type: Transform - pos: -1.5,58.5 - parent: 12 - - uid: 19772 - components: - - type: Transform - pos: -1.5,59.5 - parent: 12 - - uid: 19773 - components: - - type: Transform - pos: -1.5,60.5 - parent: 12 - - uid: 19774 - components: - - type: Transform - pos: -1.5,62.5 - parent: 12 - - uid: 19775 - components: - - type: Transform - pos: -1.5,63.5 - parent: 12 - - uid: 19776 - components: - - type: Transform - pos: -1.5,64.5 - parent: 12 - - uid: 19777 - components: - - type: Transform - pos: -1.5,65.5 - parent: 12 - - uid: 19778 - components: - - type: Transform - pos: -1.5,66.5 - parent: 12 - - uid: 19780 - components: - - type: Transform - pos: -4.5,66.5 - parent: 12 - - uid: 19781 - components: - - type: Transform - pos: -3.5,66.5 - parent: 12 - - uid: 19782 - components: - - type: Transform - pos: -2.5,66.5 - parent: 12 - - uid: 19794 - components: - - type: Transform - pos: 3.5,67.5 - parent: 12 - - uid: 19796 - components: - - type: Transform - pos: 2.5,67.5 - parent: 12 - - uid: 19797 - components: - - type: Transform - pos: 1.5,67.5 - parent: 12 - - uid: 19798 - components: - - type: Transform - pos: 1.5,66.5 - parent: 12 - - uid: 19800 - components: - - type: Transform - pos: 1.5,64.5 - parent: 12 - - uid: 19801 - components: - - type: Transform - pos: 1.5,63.5 - parent: 12 - - uid: 19802 - components: - - type: Transform - pos: 2.5,63.5 - parent: 12 - - uid: 19803 - components: - - type: Transform - pos: 4.5,63.5 - parent: 12 - - uid: 19806 - components: - - type: Transform - pos: 11.5,-42.5 - parent: 12 - - uid: 19857 - components: - - type: Transform - pos: 11.5,-40.5 - parent: 12 - - uid: 19858 - components: - - type: Transform - pos: -51.5,-50.5 - parent: 12 - - uid: 19859 - components: - - type: Transform - pos: -51.5,-49.5 - parent: 12 - - uid: 19879 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,64.5 - parent: 12 - - uid: 20141 - components: - - type: Transform - pos: 11.5,-48.5 - parent: 12 - - uid: 21075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-48.5 - parent: 12 - - uid: 21189 - components: - - type: Transform - pos: -11.5,47.5 - parent: 12 - - uid: 21479 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,14.5 - parent: 12 - - uid: 21508 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,70.5 - parent: 12 - - uid: 21532 - components: - - type: Transform - pos: 11.5,-47.5 - parent: 12 - - uid: 21677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-8.5 - parent: 12 - - uid: 21694 - components: - - type: Transform - pos: 32.5,-42.5 - parent: 12 - - uid: 21790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,64.5 - parent: 12 - - uid: 21854 - components: - - type: Transform - pos: -8.5,19.5 - parent: 12 - - uid: 21855 - components: - - type: Transform - pos: -8.5,21.5 - parent: 12 - - uid: 21856 - components: - - type: Transform - pos: -11.5,18.5 - parent: 12 - - uid: 21897 - components: - - type: Transform - pos: -10.5,18.5 - parent: 12 - - uid: 21898 - components: - - type: Transform - pos: -12.5,18.5 - parent: 12 - - uid: 21905 - components: - - type: Transform - pos: 11.5,-49.5 - parent: 12 - - uid: 21946 - components: - - type: Transform - pos: 11.5,-41.5 - parent: 12 - - uid: 21949 - components: - - type: Transform - pos: 29.5,-36.5 - parent: 12 - - uid: 21957 - components: - - type: Transform - pos: -13.5,18.5 - parent: 12 - - uid: 21958 - components: - - type: Transform - pos: -13.5,22.5 - parent: 12 - - uid: 22010 - components: - - type: Transform - pos: 30.5,-36.5 - parent: 12 - - uid: 22021 - components: - - type: Transform - pos: -9.5,18.5 - parent: 12 - - uid: 22050 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-18.5 - parent: 12 - - uid: 22067 - components: - - type: Transform - pos: 31.5,-36.5 - parent: 12 - - uid: 22068 - components: - - type: Transform - pos: 31.5,-29.5 - parent: 12 - - uid: 22069 - components: - - type: Transform - pos: 14.5,-33.5 - parent: 12 - - uid: 22070 - components: - - type: Transform - pos: 14.5,-32.5 - parent: 12 - - uid: 22071 - components: - - type: Transform - pos: 13.5,-32.5 - parent: 12 - - uid: 22074 - components: - - type: Transform - pos: 15.5,-29.5 - parent: 12 - - uid: 22144 - components: - - type: Transform - pos: 11.5,-32.5 - parent: 12 - - uid: 22150 - components: - - type: Transform - pos: 18.5,-33.5 - parent: 12 - - uid: 22152 - components: - - type: Transform - pos: 14.5,-29.5 - parent: 12 - - uid: 22154 - components: - - type: Transform - pos: -51.5,-48.5 - parent: 12 - - uid: 22156 - components: - - type: Transform - pos: 13.5,-29.5 - parent: 12 - - uid: 22157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-9.5 - parent: 12 - - uid: 22159 - components: - - type: Transform - pos: -8.5,-21.5 - parent: 12 - - uid: 22162 - components: - - type: Transform - pos: -5.5,-24.5 - parent: 12 - - uid: 22169 - components: - - type: Transform - pos: 10.5,-29.5 - parent: 12 - - uid: 22181 - components: - - type: Transform - pos: -0.5,42.5 - parent: 12 - - uid: 22191 - components: - - type: Transform - pos: -4.5,-24.5 - parent: 12 - - uid: 22261 - components: - - type: Transform - pos: 11.5,-43.5 - parent: 12 - - uid: 22273 - components: - - type: Transform - pos: -0.5,-60.5 - parent: 12 - - uid: 22290 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,29.5 - parent: 12 - - uid: 22304 - components: - - type: Transform - pos: 0.5,-58.5 - parent: 12 - - uid: 22305 - components: - - 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 - rot: -1.5707963267948966 rad - pos: -15.5,70.5 - parent: 12 - - uid: 22530 - components: - - type: Transform - pos: 19.5,-33.5 - parent: 12 - - uid: 22538 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-9.5 - parent: 12 - - uid: 22710 - components: - - type: Transform - pos: -52.5,-37.5 - parent: 12 - - uid: 22711 - components: - - type: Transform - pos: 0.5,-57.5 - parent: 12 - - uid: 22849 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,63.5 - parent: 12 - - uid: 22853 - components: - - type: Transform - pos: -55.5,-29.5 - parent: 12 - - uid: 22861 - components: - - 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 - rot: 1.5707963267948966 rad - pos: 47.5,62.5 - parent: 12 - - uid: 23096 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,61.5 - parent: 12 - - uid: 23100 - components: - - type: Transform - pos: -12.5,-63.5 - parent: 12 - - uid: 23133 - components: - - type: Transform - pos: -3.5,-48.5 - parent: 12 - - uid: 23174 - components: - - type: Transform - pos: -10.5,-20.5 - parent: 12 - - uid: 23363 - components: - - type: Transform - pos: -10.5,-63.5 - parent: 12 - - uid: 23418 - components: - - type: Transform - pos: -11.5,-18.5 - parent: 12 - - uid: 23420 - components: - - type: Transform - pos: -12.5,-19.5 - parent: 12 - - uid: 23423 - components: - - type: Transform - pos: -3.5,-24.5 - parent: 12 - - uid: 23439 - components: - - type: Transform - pos: 19.5,-29.5 - parent: 12 - - uid: 23531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,70.5 - parent: 12 - - uid: 23558 - components: - - type: Transform - pos: 2.5,-54.5 - parent: 12 - - uid: 23595 - components: - - type: Transform - pos: -10.5,-18.5 - parent: 12 - - uid: 23600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-10.5 - parent: 12 - - uid: 23602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-10.5 - parent: 12 - - uid: 23654 - components: - - type: Transform - pos: -2.5,-24.5 - parent: 12 - - uid: 23681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,30.5 - parent: 12 - - uid: 23682 - components: - - 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 - rot: 1.5707963267948966 rad - pos: -13.5,29.5 - parent: 12 - - uid: 23797 - components: - - type: Transform - pos: 3.5,-24.5 - parent: 12 - - uid: 23802 - components: - - type: Transform - pos: -6.5,-21.5 - parent: 12 - - uid: 23806 - components: - - type: Transform - pos: -9.5,-21.5 - parent: 12 - - uid: 23885 - components: - - type: Transform - pos: 1.5,-24.5 - parent: 12 - - uid: 23894 - components: - - 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 - rot: 1.5707963267948966 rad - pos: -21.5,30.5 - parent: 12 - - uid: 23946 - components: - - type: Transform - pos: -1.5,14.5 - parent: 12 - - uid: 23947 - components: - - type: Transform - pos: -3.5,12.5 - parent: 12 - - uid: 23951 - components: - - type: Transform - pos: -2.5,12.5 - parent: 12 - - uid: 23984 - components: - - type: Transform - pos: -4.5,12.5 - parent: 12 - - uid: 23985 - components: - - type: Transform - pos: -4.5,14.5 - parent: 12 - - uid: 24079 - components: - - type: Transform - pos: 2.5,-55.5 - parent: 12 - - uid: 24080 - components: - - type: Transform - pos: 0.5,-56.5 - parent: 12 - - uid: 24208 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-9.5 - parent: 12 - - uid: 24227 - components: - - type: Transform - pos: 1.5,-56.5 - parent: 12 - - uid: 24228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,59.5 - parent: 12 - - uid: 24229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,59.5 - parent: 12 - - uid: 24230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,60.5 - parent: 12 - - uid: 24231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,59.5 - parent: 12 - - uid: 24232 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,59.5 - parent: 12 - - uid: 24249 - components: - - type: Transform - 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 - rot: 1.5707963267948966 rad - pos: 57.5,59.5 - parent: 12 - - uid: 24375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,70.5 - parent: 12 - - uid: 24379 - components: - - 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: 24419 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,47.5 - parent: 12 - - uid: 24428 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,60.5 - parent: 12 - - uid: 24454 - components: - - 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 - rot: 1.5707963267948966 rad - pos: 53.5,64.5 - parent: 12 - - uid: 24550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,71.5 - parent: 12 - - uid: 24636 - components: - - type: Transform - pos: -23.5,51.5 - parent: 12 - - uid: 24645 - components: - - type: Transform - pos: -24.5,-51.5 - parent: 12 - - uid: 24646 - components: - - type: Transform - pos: -24.5,-59.5 - parent: 12 - - uid: 24647 - components: - - type: Transform - pos: -24.5,-58.5 - parent: 12 - - uid: 24648 - components: - - type: Transform - pos: -18.5,-59.5 - parent: 12 - - uid: 24650 - components: - - type: Transform - pos: -18.5,-62.5 - parent: 12 - - uid: 24656 - components: - - type: Transform - pos: -18.5,-61.5 - parent: 12 - - uid: 24657 - components: - - type: Transform - pos: -18.5,-60.5 - parent: 12 - - uid: 24658 - components: - - 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 - pos: 10.5,-31.5 - parent: 12 - - uid: 24892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,72.5 - parent: 12 - - uid: 24980 - components: - - type: Transform - pos: -22.5,51.5 - parent: 12 - - uid: 24983 - components: - - type: Transform - pos: -21.5,52.5 - parent: 12 - - uid: 24984 - components: - - type: Transform - pos: -21.5,53.5 - parent: 12 - - uid: 24985 - components: - - type: Transform - pos: -21.5,54.5 - parent: 12 - - uid: 25023 - components: - - type: Transform - pos: -52.5,-36.5 - parent: 12 - - uid: 25050 - components: - - type: Transform - pos: -46.5,-43.5 - parent: 12 - - uid: 25052 - components: - - type: Transform - pos: -15.5,-59.5 - parent: 12 - - uid: 25243 - components: - - type: Transform - pos: -13.5,-63.5 - parent: 12 - - uid: 25313 - components: - - type: Transform - pos: -11.5,-63.5 - parent: 12 - - uid: 25328 - components: - - type: Transform - 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 - pos: -4.5,70.5 - parent: 12 - - uid: 25396 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,46.5 - parent: 12 - - uid: 25402 - components: - - type: Transform - 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: - - type: Transform - pos: 50.5,9.5 - parent: 12 - - uid: 25468 - components: - - type: Transform - pos: 52.5,9.5 - parent: 12 - - uid: 25492 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,63.5 - parent: 12 - - uid: 25566 - components: - - type: Transform - pos: 10.5,-32.5 - parent: 12 - - uid: 25574 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-20.5 - parent: 12 - - uid: 25578 - components: - - type: Transform - pos: 2.5,-53.5 - parent: 12 - - uid: 25579 - components: - - type: Transform - pos: -46.5,-45.5 - parent: 12 - - uid: 25580 - components: - - 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 - pos: -1.5,18.5 - parent: 12 - - uid: 25593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-45.5 - parent: 12 - - uid: 25594 - components: - - type: Transform - pos: -39.5,-49.5 - parent: 12 - - uid: 25601 - components: - - type: Transform - pos: -46.5,-44.5 - parent: 12 - - uid: 25602 - components: - - type: Transform - pos: -47.5,-46.5 - parent: 12 - - uid: 25603 - components: - - type: Transform - pos: -47.5,-49.5 - parent: 12 - - uid: 25604 - components: - - type: Transform - pos: -46.5,-50.5 - parent: 12 - - uid: 25605 - components: - - type: Transform - pos: -45.5,-51.5 - parent: 12 - - uid: 25606 - components: - - type: Transform - pos: -40.5,-50.5 - parent: 12 - - uid: 25608 - components: - - type: Transform - pos: -41.5,-51.5 - parent: 12 - - uid: 25611 - components: - - type: Transform - pos: -52.5,-38.5 - parent: 12 - - uid: 25612 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-41.5 - parent: 12 - - uid: 25664 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,15.5 - parent: 12 - - uid: 25667 - components: - - type: Transform - 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 - pos: -59.5,-19.5 - parent: 12 - - uid: 25719 - components: - - type: Transform - pos: -5.5,70.5 - parent: 12 - - uid: 25745 - components: - - type: Transform - pos: 47.5,15.5 - parent: 12 - - uid: 25834 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,62.5 - parent: 12 - - uid: 25840 - components: - - type: Transform - pos: -24.5,-57.5 - parent: 12 - - uid: 25900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,73.5 - parent: 12 - - uid: 25901 - components: - - 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 - pos: -25.5,-11.5 - parent: 12 - - uid: 26115 - components: - - type: Transform - pos: -25.5,-10.5 - parent: 12 - - uid: 26116 - components: - - type: Transform - pos: -25.5,-9.5 - parent: 12 - - uid: 26117 - components: - - type: Transform - pos: -41.5,-28.5 - parent: 12 - - uid: 26120 - components: - - type: Transform - pos: -25.5,-13.5 - parent: 12 - - uid: 26122 - components: - - type: Transform - pos: 11.5,-39.5 - parent: 12 - - uid: 26123 - components: - - type: Transform - pos: -21.5,-13.5 - parent: 12 - - uid: 26124 - components: - - 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 - rot: 3.141592653589793 rad - pos: 32.5,-12.5 - parent: 12 - - uid: 26162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-11.5 - parent: 12 - - uid: 26184 - components: - - type: Transform - pos: 29.5,87.5 - parent: 12 - - uid: 26188 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,61.5 - parent: 12 - - uid: 26189 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,63.5 - parent: 12 - - uid: 26196 - components: - - type: Transform - 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 - pos: -22.5,-13.5 - parent: 12 - - uid: 26254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,61.5 - parent: 12 - - uid: 26335 - components: - - type: Transform - 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: 26472 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-21.5 - parent: 12 - - uid: 26549 - components: - - type: Transform - pos: 1.5,68.5 - parent: 12 - - uid: 26618 - components: - - type: Transform - 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 - pos: 28.5,-29.5 - parent: 12 - - uid: 26856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-16.5 - parent: 12 - - uid: 26910 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,13.5 - parent: 12 - - uid: 26926 - components: - - type: Transform - 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 - rot: 1.5707963267948966 rad - pos: 45.5,-2.5 - parent: 12 - - uid: 27031 - components: - - type: Transform - pos: 29.5,-35.5 - parent: 12 - - uid: 27032 - components: - - type: Transform - pos: 31.5,-34.5 - parent: 12 - - uid: 27033 - components: - - type: Transform - pos: 31.5,-31.5 - parent: 12 - - uid: 27037 - components: - - 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 - rot: 1.5707963267948966 rad - pos: -13.5,-3.5 - parent: 12 - - uid: 27053 - components: - - type: Transform - 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 - pos: 25.5,90.5 - parent: 12 - - uid: 27112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-5.5 - parent: 12 - - uid: 27120 - components: - - type: Transform - 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: - - type: Transform - 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: 27326 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,58.5 - parent: 12 - - uid: 27353 - components: - - type: Transform - 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: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-15.5 - parent: 12 - - uid: 27437 - components: - - type: Transform - pos: -0.5,23.5 - parent: 12 - - uid: 27602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,0.5 - parent: 12 - - uid: 27662 - components: - - type: Transform - pos: -21.5,25.5 - parent: 12 - - uid: 27735 - components: - - type: Transform - pos: 7.5,87.5 - parent: 12 - - uid: 27828 - components: - - type: Transform - pos: -21.5,24.5 - parent: 12 - - uid: 27838 - components: - - type: Transform - pos: -20.5,18.5 - parent: 12 - - uid: 27858 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-43.5 - parent: 12 - - uid: 27901 - components: - - type: Transform - pos: -18.5,18.5 - parent: 12 - - uid: 27925 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,61.5 - parent: 12 - - uid: 27934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,42.5 - parent: 12 - - uid: 27935 - components: - - type: Transform - pos: 80.5,39.5 - parent: 12 - - uid: 27944 - components: - - type: Transform - pos: 80.5,58.5 - parent: 12 - - uid: 27997 - components: - - type: Transform - pos: 30.5,83.5 - parent: 12 - - uid: 28045 - components: - - type: Transform - pos: -19.5,18.5 - parent: 12 - - uid: 28059 - components: - - type: Transform - pos: 26.5,38.5 - parent: 12 - - uid: 28060 - components: - - type: Transform - pos: 27.5,38.5 - parent: 12 - - uid: 28061 - components: - - type: Transform - pos: 27.5,39.5 - parent: 12 - - uid: 28062 - components: - - type: Transform - pos: 32.5,38.5 - parent: 12 - - uid: 28063 - components: - - type: Transform - pos: 33.5,38.5 - parent: 12 - - uid: 28064 - components: - - type: Transform - pos: 32.5,39.5 - parent: 12 - - uid: 28065 - components: - - type: Transform - pos: 32.5,40.5 - parent: 12 - - uid: 28066 - components: - - type: Transform - pos: 36.5,39.5 - parent: 12 - - uid: 28073 - components: - - type: Transform - pos: -21.5,20.5 - parent: 12 - - uid: 28168 - components: - - type: Transform - pos: -51.5,-15.5 - parent: 12 - - uid: 28177 - components: - - type: Transform - pos: -51.5,-14.5 - parent: 12 - - uid: 28183 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-13.5 - parent: 12 - - uid: 28184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-14.5 - parent: 12 - - uid: 28185 - components: - - type: Transform - pos: -48.5,-15.5 - parent: 12 - - uid: 28205 - components: - - type: Transform - pos: -51.5,-12.5 - parent: 12 - - uid: 28265 - components: - - type: Transform - pos: -46.5,-13.5 - parent: 12 - - uid: 28275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-13.5 - parent: 12 - - uid: 28309 - components: - - type: Transform - pos: -21.5,22.5 - parent: 12 - - uid: 28311 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-13.5 - parent: 12 - - uid: 28312 - components: - - type: Transform - pos: -21.5,19.5 - parent: 12 - - uid: 28385 - components: - - type: Transform - pos: -21.5,21.5 - parent: 12 - - uid: 28429 - components: - - type: Transform - pos: 6.5,83.5 - parent: 12 - - uid: 28437 - components: - - type: Transform - rot: -1.5707963267948966 rad - 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 - pos: 44.5,9.5 - parent: 12 - - uid: 28928 - components: - - type: Transform - 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: 29182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-67.5 - parent: 12 - - uid: 29185 - components: - - type: Transform - pos: -9.5,-66.5 - parent: 12 - - uid: 29208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,48.5 - parent: 12 - - uid: 29303 - components: - - type: Transform - pos: -52.5,63.5 - parent: 12 - - uid: 29307 - components: - - type: Transform - pos: -9.5,-65.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: 29323 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-66.5 - parent: 12 - - uid: 29340 - components: - - type: Transform - pos: -8.5,-67.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: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-15.5 - parent: 12 - - uid: 30516 - components: - - type: Transform - pos: -26.5,-59.5 - parent: 12 - - uid: 30567 - components: - - type: Transform - pos: -34.5,-55.5 - parent: 12 - - uid: 30703 - components: - - type: Transform - pos: -17.5,-62.5 - parent: 12 - - uid: 30704 - components: - - type: Transform - pos: -15.5,-62.5 - parent: 12 - - uid: 30895 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-55.5 - parent: 12 - - uid: 31180 - components: - - type: Transform - pos: -41.5,-53.5 - parent: 12 - - uid: 31189 - components: - - type: Transform - pos: -0.5,-63.5 - parent: 12 - - uid: 31223 - components: - - type: Transform - pos: -1.5,-64.5 - parent: 12 - - uid: 31225 - components: - - type: Transform - pos: -3.5,-64.5 - parent: 12 - - uid: 31228 - components: - - type: Transform - pos: -5.5,-65.5 - parent: 12 - - uid: 31357 - components: - - type: Transform - pos: -34.5,-13.5 - parent: 12 - - uid: 31387 - components: - - type: Transform - pos: 2.5,-61.5 - parent: 12 - - uid: 31388 - components: - - type: Transform - pos: 2.5,-60.5 - parent: 12 - - uid: 31390 - components: - - type: Transform - pos: 2.5,-58.5 - parent: 12 - - uid: 31391 - components: - - type: Transform - pos: 3.5,-58.5 - parent: 12 - - uid: 31563 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 12 - - uid: 31573 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-2.5 - parent: 12 - - uid: 32359 - components: - - type: Transform - pos: 82.5,55.5 - parent: 12 - - uid: 32362 - components: - - type: Transform - pos: 84.5,42.5 - parent: 12 - - uid: 32363 - components: - - type: Transform - pos: 84.5,46.5 - parent: 12 - - uid: 32364 - components: - - type: Transform - pos: 84.5,51.5 - parent: 12 - - uid: 32365 - components: - - type: Transform - pos: 84.5,55.5 - parent: 12 - - uid: 32366 - components: - - type: Transform - pos: 84.5,58.5 - parent: 12 - - uid: 32367 - components: - - type: Transform - pos: 84.5,39.5 - parent: 12 - - uid: 32402 - components: - - type: Transform - pos: 66.5,38.5 - parent: 12 - - uid: 32410 - components: - - type: Transform - pos: 66.5,36.5 - parent: 12 - - uid: 32443 - components: - - type: Transform - pos: 69.5,61.5 - parent: 12 -- proto: WallSolidDiagonal - entities: - - uid: 27255 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,24.5 - parent: 12 - - uid: 27260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,31.5 - parent: 12 - - uid: 28550 - components: - - type: Transform - pos: 2.5,24.5 - parent: 12 - - uid: 29273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,31.5 - parent: 12 -- proto: WallSolidRust - entities: - - uid: 750 - components: - - type: Transform - pos: -35.5,-13.5 - parent: 12 - - uid: 1359 - components: - - type: Transform - pos: 42.5,-40.5 - parent: 12 - - uid: 1965 - components: - - type: Transform - pos: -43.5,66.5 - parent: 12 - - uid: 2030 - components: - - type: Transform - pos: -49.5,-15.5 - parent: 12 - - uid: 2161 - components: - - type: Transform - 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 - pos: 41.5,-20.5 - parent: 12 - - uid: 2672 - components: - - type: Transform - 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: 4167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-13.5 - parent: 12 - - uid: 4701 - components: - - type: Transform - pos: -6.5,-16.5 - parent: 12 - - uid: 5095 - components: - - type: Transform - pos: -44.5,73.5 - parent: 12 - - uid: 5829 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,67.5 - parent: 12 - - uid: 6256 - components: - - type: Transform - pos: 47.5,-36.5 - parent: 12 - - uid: 7322 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,18.5 - parent: 12 - - uid: 7794 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-4.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: 9671 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-47.5 - parent: 12 - - uid: 10717 - components: - - type: Transform - pos: 46.5,-37.5 - parent: 12 - - uid: 11332 - components: - - type: Transform - pos: 45.5,9.5 - parent: 12 - - uid: 11364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,10.5 - parent: 12 - - uid: 11580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,34.5 - parent: 12 - - uid: 11936 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-67.5 - parent: 12 - - uid: 12018 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,11.5 - parent: 12 - - uid: 12060 - components: - - type: Transform - pos: -56.5,-17.5 - parent: 12 - - uid: 13794 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-61.5 - parent: 12 - - uid: 14490 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-31.5 - parent: 12 - - uid: 14534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-38.5 - parent: 12 - - uid: 14542 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-30.5 - parent: 12 - - uid: 14550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-33.5 - parent: 12 - - uid: 14623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-46.5 - parent: 12 - - uid: 14641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-49.5 - parent: 12 - - uid: 14918 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,22.5 - parent: 12 - - uid: 15433 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,24.5 - parent: 12 - - uid: 15543 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,21.5 - parent: 12 - - uid: 15570 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,15.5 - parent: 12 - - uid: 15574 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,23.5 - parent: 12 - - uid: 15575 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,18.5 - parent: 12 - - uid: 15672 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-61.5 - parent: 12 - - uid: 15706 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,18.5 - parent: 12 - - uid: 15721 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,11.5 - parent: 12 - - uid: 16340 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,9.5 - parent: 12 - - uid: 16341 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,9.5 - parent: 12 - - uid: 16343 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,9.5 - parent: 12 - - uid: 16354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,16.5 - parent: 12 - - uid: 16358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,14.5 - parent: 12 - - uid: 16359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,15.5 - parent: 12 - - uid: 16372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-63.5 - parent: 12 - - uid: 16923 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,13.5 - parent: 12 - - uid: 17578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-35.5 - parent: 12 - - uid: 17810 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,11.5 - parent: 12 - - uid: 17816 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,13.5 - parent: 12 - - uid: 17817 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,22.5 - parent: 12 - - uid: 17820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,21.5 - parent: 12 - - uid: 18574 - components: - - type: Transform - pos: -19.5,-17.5 - parent: 12 - - uid: 18625 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: -5.5,32.5 - parent: 12 - - uid: 19051 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,47.5 - parent: 12 - - uid: 19068 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,26.5 - parent: 12 - - uid: 19087 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: 52.5,21.5 - parent: 12 - - uid: 19574 - components: - - type: Transform - pos: 5.5,-51.5 - parent: 12 - - uid: 19575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,52.5 - parent: 12 - - uid: 19589 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,52.5 - parent: 12 - - uid: 19598 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,24.5 - parent: 12 - - uid: 19604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,32.5 - parent: 12 - - uid: 19618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,46.5 - parent: 12 - - uid: 19622 - components: - - type: Transform - pos: -55.5,-30.5 - parent: 12 - - uid: 19626 - components: - - type: Transform - 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 - rot: -1.5707963267948966 rad - pos: 45.5,61.5 - parent: 12 - - uid: 19692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,58.5 - parent: 12 - - uid: 19770 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,60.5 - parent: 12 - - uid: 19779 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,64.5 - parent: 12 - - uid: 19789 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,66.5 - parent: 12 - - uid: 19793 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,63.5 - parent: 12 - - uid: 19799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,63.5 - parent: 12 - - uid: 19844 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,15.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: 21922 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,13.5 - parent: 12 - - uid: 22145 - components: - - type: Transform - pos: 44.5,-4.5 - parent: 12 - - uid: 22285 - components: - - type: Transform - pos: 37.5,13.5 - parent: 12 - - uid: 22301 - components: - - 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: 22715 - components: - - type: Transform - pos: 1.5,69.5 - parent: 12 - - uid: 22855 - components: - - type: Transform - pos: 9.5,-52.5 - parent: 12 - - uid: 23536 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,25.5 - parent: 12 - - uid: 23603 - components: - - type: Transform - 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 - pos: -9.5,-18.5 - parent: 12 - - uid: 24409 - components: - - type: Transform - pos: -3.5,14.5 - parent: 12 - - uid: 24445 - components: - - type: Transform - pos: -4.5,13.5 - parent: 12 - - uid: 24452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,13.5 - parent: 12 - - uid: 24453 - components: - - type: Transform - pos: -11.5,-20.5 - parent: 12 - - uid: 24635 - components: - - 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: 24982 - components: - - type: Transform - pos: -21.5,51.5 - parent: 12 - - uid: 25035 - components: - - type: Transform - pos: -22.5,54.5 - parent: 12 - - uid: 25061 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-33.5 - parent: 12 - - uid: 25142 - components: - - type: Transform - pos: -4.5,17.5 - parent: 12 - - uid: 25191 - components: - - type: Transform - pos: -3.5,-60.5 - parent: 12 - - uid: 25192 - components: - - type: Transform - pos: 3.5,23.5 - parent: 12 - - uid: 25193 - components: - - type: Transform - pos: 0.5,-60.5 - parent: 12 - - uid: 25199 - components: - - type: Transform - pos: 2.5,-56.5 - parent: 12 - - uid: 25585 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-45.5 - parent: 12 - - uid: 25591 - components: - - type: Transform - pos: -1.5,23.5 - parent: 12 - - uid: 25614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,34.5 - parent: 12 - - uid: 25662 - components: - - type: Transform - pos: 42.5,-39.5 - parent: 12 - - uid: 25670 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,14.5 - parent: 12 - - uid: 25741 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,53.5 - parent: 12 - - uid: 25836 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,48.5 - parent: 12 - - uid: 25873 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,48.5 - parent: 12 - - uid: 25874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,58.5 - parent: 12 - - uid: 25875 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,67.5 - parent: 12 - - uid: 25876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,66.5 - parent: 12 - - uid: 25877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,57.5 - parent: 12 - - uid: 25878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,67.5 - parent: 12 - - uid: 25886 - components: - - type: Transform - 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: 26247 - components: - - type: Transform - pos: -25.5,-7.5 - parent: 12 - - uid: 26313 - components: - - type: Transform - pos: -52.5,-45.5 - parent: 12 - - uid: 26387 - components: - - type: Transform - pos: -53.5,-45.5 - parent: 12 - - uid: 26388 - components: - - 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 - pos: -59.5,-18.5 - parent: 12 - - uid: 26568 - components: - - 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 - rot: 3.141592653589793 rad - pos: 32.5,8.5 - parent: 12 - - uid: 26834 - components: - - type: Transform - pos: 5.5,-50.5 - parent: 12 - - uid: 26841 - components: - - 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 - rot: -1.5707963267948966 rad - pos: -55.5,-33.5 - parent: 12 - - uid: 26965 - components: - - 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: 27297 - components: - - type: Transform - pos: -9.5,-35.5 - parent: 12 - - uid: 27304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,32.5 - parent: 12 - - uid: 27316 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,13.5 - parent: 12 - - uid: 27385 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,13.5 - parent: 12 - - uid: 27413 - components: - - type: Transform - pos: -47.5,-14.5 - parent: 12 - - uid: 27861 - components: - - type: Transform - pos: -20.5,-16.5 - parent: 12 - - uid: 27890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,9.5 - parent: 12 - - uid: 27979 - components: - - type: Transform - pos: -29.5,20.5 - parent: 12 - - uid: 28038 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-16.5 - parent: 12 - - uid: 28068 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-10.5 - parent: 12 - - uid: 28085 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,26.5 - parent: 12 - - uid: 28123 - components: - - type: Transform - pos: 41.5,26.5 - parent: 12 - - uid: 28124 - components: - - type: Transform - pos: 46.5,26.5 - parent: 12 - - uid: 28125 - components: - - type: Transform - pos: 39.5,13.5 - parent: 12 - - uid: 28126 - components: - - type: Transform - pos: 48.5,18.5 - parent: 12 - - uid: 28129 - components: - - type: Transform - pos: 49.5,28.5 - parent: 12 - - uid: 28130 - components: - - type: Transform - pos: 36.5,28.5 - parent: 12 - - uid: 28131 - components: - - type: Transform - pos: 36.5,29.5 - parent: 12 - - uid: 28136 - components: - - type: Transform - pos: -21.5,18.5 - parent: 12 - - uid: 28137 - components: - - type: Transform - pos: -8.5,18.5 - parent: 12 - - uid: 28141 - components: - - type: Transform - pos: 53.5,9.5 - parent: 12 - - uid: 28204 - components: - - type: Transform - pos: -51.5,-13.5 - parent: 12 - - uid: 28214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-31.5 - parent: 12 - - uid: 28239 - components: - - type: Transform - 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 - rot: 3.141592653589793 rad - pos: 31.5,21.5 - parent: 12 - - uid: 28702 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,22.5 - parent: 12 - - uid: 28703 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,9.5 - parent: 12 - - uid: 28933 - components: - - type: Transform - pos: -13.5,-67.5 - parent: 12 - - uid: 28942 - components: - - type: Transform - pos: 49.5,9.5 - parent: 12 - - 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: -53.5,53.5 - parent: 12 - - uid: 29177 - components: - - type: Transform - pos: -52.5,57.5 - parent: 12 - - uid: 29183 - components: - - type: Transform - pos: -9.5,-67.5 - parent: 12 - - uid: 29184 - components: - - type: Transform - pos: -10.5,-65.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: 29339 - components: - - type: Transform - pos: -8.5,-68.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: 30017 - components: - - type: Transform - pos: -7.5,-24.5 - parent: 12 - - uid: 30018 - components: - - type: Transform - pos: -9.5,-24.5 - parent: 12 - - uid: 30200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-59.5 - parent: 12 - - uid: 30459 - components: - - type: Transform - pos: 29.5,20.5 - parent: 12 - - uid: 30540 - components: - - type: Transform - pos: -0.5,14.5 - parent: 12 - - uid: 30542 - components: - - type: Transform - pos: 3.5,31.5 - parent: 12 - - uid: 30543 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-17.5 - parent: 12 - - uid: 30545 - components: - - type: Transform - pos: -5.5,-21.5 - parent: 12 - - uid: 30700 - components: - - type: Transform - pos: -1.5,12.5 - parent: 12 - - uid: 30781 - components: - - type: Transform - pos: -32.5,-55.5 - parent: 12 - - uid: 30890 - components: - - type: Transform - pos: -27.5,-58.5 - parent: 12 - - uid: 30970 - components: - - type: Transform - pos: -1.5,13.5 - parent: 12 - - uid: 31044 - components: - - type: Transform - pos: -37.5,-55.5 - parent: 12 - - uid: 31045 - components: - - type: Transform - pos: -35.5,-57.5 - parent: 12 - - uid: 31096 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-66.5 - parent: 12 - - uid: 31175 - components: - - type: Transform - pos: -6.5,-67.5 - parent: 12 - - uid: 31188 - components: - - type: Transform - pos: -5.5,-64.5 - parent: 12 - - uid: 31190 - components: - - type: Transform - pos: -2.5,-64.5 - parent: 12 - - uid: 31216 - components: - - type: Transform - pos: -8.5,-65.5 - parent: 12 - - uid: 31222 - components: - - type: Transform - pos: -4.5,-64.5 - parent: 12 - - uid: 31224 - components: - - type: Transform - pos: -0.5,-64.5 - parent: 12 - - uid: 31226 - components: - - type: Transform - pos: 0.5,-63.5 - parent: 12 - - uid: 31227 - components: - - type: Transform - pos: 2.5,-63.5 - parent: 12 - - uid: 31386 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-61.5 - parent: 12 - - uid: 31389 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-62.5 - parent: 12 -- proto: WallWood - entities: - - uid: 11826 - components: - - type: Transform - pos: 10.5,30.5 - parent: 12 - - uid: 11827 - components: - - type: Transform - pos: 10.5,31.5 - parent: 12 - - uid: 11828 - components: - - type: Transform - pos: 10.5,32.5 - parent: 12 - - uid: 11829 - components: - - type: Transform - pos: 10.5,33.5 - parent: 12 - - uid: 11830 - components: - - type: Transform - pos: 9.5,33.5 - parent: 12 - - uid: 11831 - components: - - type: Transform - pos: 9.5,30.5 - parent: 12 - - uid: 11832 - components: - - type: Transform - pos: 8.5,30.5 - parent: 12 - - uid: 11833 - components: - - type: Transform - pos: 7.5,30.5 - parent: 12 - - uid: 11834 - components: - - type: Transform - pos: 6.5,30.5 - parent: 12 - - uid: 11835 - components: - - type: Transform - pos: 6.5,31.5 - parent: 12 - - uid: 11836 - components: - - type: Transform - pos: 6.5,32.5 - parent: 12 - - uid: 11837 - components: - - type: Transform - pos: 6.5,33.5 - parent: 12 - - uid: 11838 - components: - - type: Transform - pos: 7.5,33.5 - parent: 12 -- proto: WardrobeBlueFilled - entities: - - uid: 21713 - components: - - type: Transform - pos: -2.5,59.5 - parent: 12 - - uid: 21714 - components: - - type: Transform - pos: -4.5,59.5 - parent: 12 - - uid: 21715 - components: - - type: Transform - pos: -2.5,63.5 - parent: 12 - - uid: 21716 - components: - - type: Transform - pos: -2.5,65.5 - parent: 12 -- proto: WardrobeBotanistFilled - entities: - - uid: 24126 - components: - - type: Transform - pos: 62.5,45.5 - parent: 12 - - uid: 24127 - components: - - type: Transform - pos: 61.5,45.5 - parent: 12 -- proto: WardrobeCargoFilled - entities: - - uid: 25616 - components: - - type: Transform - pos: 61.5,-23.5 - parent: 12 - - uid: 25618 - components: - - type: Transform - pos: 62.5,-23.5 - parent: 12 -- proto: WardrobeChapelFilled - entities: - - uid: 12622 - components: - - type: Transform - pos: 45.5,27.5 - parent: 12 -- proto: WardrobeFormal - entities: - - uid: 8818 - components: - - type: Transform - pos: -24.5,32.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: - - 8947 - - 8940 - - 8939 - - 8865 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: WardrobeGeneticsFilled - entities: - - uid: 9839 - components: - - type: Transform - pos: 0.5,-53.5 - parent: 12 -- proto: WardrobeGreenFilled - entities: - - uid: 21704 - components: - - type: Transform - pos: -14.5,65.5 - parent: 12 - - uid: 21707 - components: - - type: Transform - pos: -14.5,61.5 - parent: 12 - - uid: 21708 - components: - - type: Transform - pos: -16.5,61.5 - parent: 12 - - uid: 21709 - components: - - type: Transform - pos: -16.5,59.5 - parent: 12 -- proto: WardrobeMedicalDoctorFilled - entities: - - uid: 3949 - components: - - type: Transform - pos: -20.5,-49.5 - parent: 12 -- proto: WardrobeMixedFilled - entities: - - uid: 21764 - components: - - type: Transform - pos: -8.5,55.5 - parent: 12 -- proto: WardrobePinkFilled - entities: - - uid: 21768 - components: - - type: Transform - pos: -8.5,52.5 - parent: 12 -- proto: WardrobePrisonFilled - entities: - - uid: 19371 - components: - - type: Transform - pos: -36.5,50.5 - parent: 12 - - uid: 19372 - components: - - type: Transform - pos: -36.5,51.5 - parent: 12 - - uid: 19401 - components: - - type: Transform - pos: -42.5,63.5 - parent: 12 - - uid: 19402 - components: - - type: Transform - pos: -45.5,63.5 - parent: 12 - - uid: 19403 - components: - - type: Transform - pos: -48.5,63.5 - parent: 12 - - uid: 21357 - components: - - type: Transform - pos: -30.5,56.5 - parent: 12 - - uid: 21364 - components: - - type: Transform - pos: -27.5,53.5 - parent: 12 - - uid: 30243 - components: - - type: Transform - pos: 52.5,-36.5 - parent: 12 -- proto: WardrobeScienceFilled - entities: - - uid: 2005 - components: - - type: Transform - pos: -48.5,-37.5 - parent: 12 -- proto: WardrobeWhiteFilled - entities: - - uid: 21767 - components: - - type: Transform - pos: -8.5,53.5 - parent: 12 -- proto: WardrobeYellowFilled - entities: - - uid: 21766 - components: - - type: Transform - pos: -8.5,54.5 - parent: 12 -- proto: WarningAir - entities: - - uid: 27566 - components: - - type: Transform - pos: -55.5,-31.5 - parent: 12 -- proto: WarningCO2 - entities: - - uid: 26826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-3.5 - parent: 12 -- proto: WarningN2 - entities: - - uid: 26827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-7.5 - parent: 12 -- proto: WarningO2 - entities: - - uid: 26828 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-9.5 - parent: 12 -- proto: WarningPlasma - entities: - - uid: 26832 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-5.5 - parent: 12 -- proto: WarningTritium - entities: - - uid: 26840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,0.5 - parent: 12 -- proto: WarningWaste - entities: - - uid: 26764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,2.5 - parent: 12 - - uid: 26765 - components: - - type: MetaData - desc: WARNING! Water vapor flow tube. Ensure the flow is disengaged before working. - name: water vapor warning sign - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-1.5 - parent: 12 -- proto: WaterCooler - entities: - - uid: 2438 - components: - - type: Transform - pos: -38.5,-33.5 - parent: 12 - - uid: 2536 - components: - - type: Transform - pos: -23.5,-34.5 - parent: 12 - - uid: 3795 - components: - - type: Transform - pos: -19.5,-59.5 - parent: 12 - - uid: 4066 - components: - - type: Transform - pos: -19.5,-49.5 - parent: 12 - - uid: 5593 - components: - - type: Transform - pos: 22.5,-20.5 - parent: 12 - - uid: 8987 - components: - - type: Transform - pos: 54.5,-26.5 - parent: 12 - - uid: 8988 - components: - - type: Transform - pos: 53.5,-10.5 - parent: 12 - - uid: 9429 - components: - - type: Transform - pos: 58.5,60.5 - parent: 12 - - uid: 16645 - components: - - type: Transform - pos: -28.5,3.5 - parent: 12 - - uid: 17795 - components: - - type: Transform - pos: -53.5,24.5 - parent: 12 - - uid: 21227 - components: - - type: Transform - pos: -28.5,56.5 - parent: 12 - - uid: 21342 - components: - - type: Transform - pos: -29.5,41.5 - parent: 12 - - uid: 21731 - components: - - type: Transform - pos: -6.5,58.5 - parent: 12 - - uid: 22306 - components: - - type: Transform - pos: 49.5,32.5 - parent: 12 - - uid: 24169 - components: - - type: Transform - pos: 42.5,44.5 - parent: 12 - - uid: 26105 - components: - - type: Transform - pos: 61.5,-26.5 - parent: 12 -- proto: WaterTankFull - entities: - - uid: 1766 - components: - - type: Transform - pos: -35.5,-39.5 - parent: 12 - - uid: 1767 - components: - - type: Transform - pos: -33.5,-21.5 - parent: 12 - - uid: 1772 - components: - - type: Transform - pos: -40.5,-30.5 - parent: 12 - - uid: 4130 - components: - - type: Transform - pos: 6.5,-51.5 - parent: 12 - - uid: 4247 - components: - - type: Transform - pos: 5.5,-29.5 - parent: 12 - - uid: 4663 - components: - - type: Transform - pos: 55.5,11.5 - parent: 12 - - uid: 9652 - components: - - type: Transform - pos: -51.5,50.5 - parent: 12 - - uid: 10397 - components: - - type: Transform - pos: -26.5,-10.5 - parent: 12 - - uid: 16569 - components: - - type: Transform - pos: -11.5,25.5 - parent: 12 - - uid: 21602 - components: - - 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: 25047 - components: - - type: Transform - pos: -2.5,50.5 - parent: 12 - - uid: 25048 - components: - - type: Transform - pos: -1.5,70.5 - parent: 12 - - uid: 25049 - components: - - type: Transform - pos: -20.5,51.5 - parent: 12 - - uid: 25856 - components: - - 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: 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 - pos: -38.5,-54.5 - parent: 12 - - uid: 31371 - components: - - type: Transform - pos: -53.5,-44.5 - parent: 12 -- proto: WaterTankHighCapacity - entities: - - uid: 23153 - components: - - type: Transform - pos: 46.5,21.5 - parent: 12 - - uid: 23769 - components: - - type: Transform - pos: 72.5,45.5 - parent: 12 - - uid: 23770 - components: - - type: Transform - pos: 72.5,52.5 - parent: 12 -- proto: WaterVaporCanister - entities: - - uid: 5034 - components: - - type: Transform - pos: 25.5,8.5 - parent: 12 - - uid: 5675 - components: - - type: Transform - pos: 24.5,-2.5 - parent: 12 - - uid: 9727 - components: - - type: Transform - pos: 11.5,12.5 - parent: 12 - - uid: 15785 - components: - - type: Transform - pos: 9.5,32.5 - parent: 12 -- proto: WeaponCapacitorRecharger - entities: - - uid: 17416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,19.5 - parent: 12 - - uid: 17604 - components: - - type: Transform - pos: -52.5,34.5 - parent: 12 - - uid: 19456 - components: - - type: Transform - pos: -34.5,68.5 - parent: 12 - - uid: 20825 - components: - - type: Transform - pos: -43.5,32.5 - parent: 12 - - uid: 20828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,36.5 - parent: 12 - - uid: 20894 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,64.5 - parent: 12 - - uid: 21611 - components: - - type: Transform - pos: -23.5,41.5 - parent: 12 - - uid: 21979 - components: - - type: Transform - pos: -42.5,21.5 - parent: 12 - - uid: 22042 - components: - - type: Transform - pos: -42.5,56.5 - parent: 12 - - uid: 27912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,65.5 - parent: 12 -- proto: WeaponDisablerPractice - entities: - - uid: 29226 - components: - - type: Transform - pos: -27.03895,65.44198 - parent: 12 -- proto: WeaponLaserCarbinePractice - entities: - - uid: 29225 - components: - - type: Transform - pos: -28.088718,65.63953 - parent: 12 -- proto: WeaponShotgunDoubleBarreledRubber - entities: - - uid: 31467 - components: - - type: Transform - rot: -18.84955592153876 rad - pos: 12.486576,-35.1766 - parent: 12 -- proto: WeaponShotgunEnforcer - entities: - - uid: 20862 - components: - - type: Transform - pos: -32.44064,64.22636 - parent: 12 -- proto: WeaponShotgunKammerer - entities: - - uid: 20860 - components: - - type: Transform - pos: -32.46512,64.40981 - parent: 12 - - uid: 20861 - components: - - type: Transform - pos: -32.48508,64.66224 - parent: 12 -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 27840 - components: - - type: Transform - pos: -42.5456,32.834866 - parent: 12 -- proto: WeaponTurretSyndicateBroken - entities: - - uid: 2281 - components: - - type: Transform - pos: -3.5,4.5 - parent: 12 - - uid: 2282 - components: - - type: Transform - pos: 2.5,4.5 - parent: 12 - - uid: 2283 - components: - - type: Transform - pos: 2.5,0.5 - parent: 12 - - uid: 2284 - components: - - type: Transform - pos: -3.5,0.5 - parent: 12 - - uid: 22205 - components: - - type: Transform - pos: -3.5,-8.5 - parent: 12 - - uid: 22207 - components: - - type: Transform - pos: -3.5,-4.5 - parent: 12 - - uid: 28259 - components: - - type: Transform - pos: -50.5,-13.5 - parent: 12 -- proto: WeaponWaterPistol - entities: - - uid: 22476 - components: - - type: Transform - parent: 22473 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22483 - components: - - type: Transform - parent: 22480 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Welder - entities: - - uid: 4197 - components: - - type: Transform - pos: -45.354244,44.583572 - parent: 12 - - uid: 4245 - components: - - type: Transform - pos: 3.3635778,-29.388664 - parent: 12 - - uid: 8879 - components: - - type: Transform - pos: 61.386814,-18.329424 - parent: 12 - - uid: 16476 - components: - - type: Transform - pos: -12.577723,5.67312 - parent: 12 - - uid: 23683 - components: - - type: Transform - pos: 44.3954,51.140728 - parent: 12 -- proto: WelderIndustrial - entities: - - uid: 9394 - components: - - type: Transform - pos: 8.648524,-10.372427 - parent: 12 - - uid: 10394 - components: - - type: Transform - pos: -34.661064,-10.37479 - parent: 12 - - uid: 23597 - components: - - type: Transform - pos: 55.47354,5.5168424 - parent: 12 -- proto: WelderIndustrialAdvanced - entities: - - uid: 3015 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: 2.3754535,11.683891 - parent: 12 - - uid: 9249 - components: - - 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 - components: - - 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 - pos: 4.5,-29.5 - parent: 12 - - uid: 5215 - components: - - type: Transform - pos: -1.5,33.5 - parent: 12 - - uid: 5920 - components: - - type: Transform - pos: 34.5,-17.5 - parent: 12 - - uid: 8311 - components: - - type: Transform - pos: 40.5,-17.5 - parent: 12 - - uid: 8878 - components: - - 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 - pos: -33.5,-10.5 - parent: 12 - - uid: 11254 - components: - - type: Transform - pos: 4.5,11.5 - parent: 12 - - uid: 11526 - components: - - type: Transform - pos: 43.5,47.5 - parent: 12 - - uid: 12026 - components: - - type: Transform - pos: 46.5,10.5 - parent: 12 - - uid: 16463 - components: - - type: Transform - pos: -12.5,11.5 - parent: 12 - - uid: 16775 - components: - - type: Transform - pos: -7.5,18.5 - parent: 12 - - uid: 18272 - components: - - type: Transform - pos: -36.5,-39.5 - parent: 12 - - uid: 21596 - components: - - type: Transform - pos: -26.5,21.5 - parent: 12 - - uid: 23596 - components: - - type: Transform - pos: 46.5,-3.5 - parent: 12 - - uid: 25044 - components: - - type: Transform - pos: 2.5,66.5 - parent: 12 - - uid: 25045 - components: - - type: Transform - pos: -0.5,70.5 - parent: 12 - - uid: 25046 - components: - - type: Transform - pos: -2.5,51.5 - parent: 12 - - uid: 25051 - components: - - type: Transform - pos: -9.5,-31.5 - parent: 12 - - uid: 25053 - components: - - type: Transform - pos: 48.5,-32.5 - parent: 12 - - uid: 25386 - components: - - 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: 28750 - components: - - type: Transform - pos: 8.5,-7.5 - parent: 12 - - uid: 28841 - components: - - 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 - pos: 62.5,-18.5 - parent: 12 - - uid: 31368 - components: - - type: Transform - pos: -52.5,-44.5 - parent: 12 - - uid: 31369 - components: - - type: Transform - pos: -39.5,-54.5 - parent: 12 -- proto: WetFloorSign - entities: - - uid: 12247 - components: - - type: Transform - pos: 51.51907,15.617485 - parent: 12 - - uid: 12248 - components: - - type: Transform - pos: 48.600037,20.622837 - 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 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 57.642513,57.478374 - parent: 12 -- proto: Windoor - entities: - - uid: 2520 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-35.5 - parent: 12 - - uid: 2521 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-34.5 - parent: 12 - - uid: 4222 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-32.5 - parent: 12 - - uid: 4223 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-31.5 - parent: 12 - - uid: 4224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-31.5 - parent: 12 - - uid: 4225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-32.5 - parent: 12 - - uid: 5876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-18.5 - parent: 12 - - uid: 6788 - components: - - type: Transform - pos: -38.5,-21.5 - parent: 12 - - uid: 12577 - components: - - type: Transform - pos: 53.5,46.5 - parent: 12 - - uid: 12650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,31.5 - parent: 12 - - uid: 12651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,31.5 - parent: 12 - - uid: 12729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,40.5 - parent: 12 - - uid: 16449 - components: - - type: Transform - pos: 48.5,46.5 - parent: 12 - - uid: 16450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,47.5 - parent: 12 - - uid: 17272 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,0.5 - parent: 12 - - uid: 19271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,47.5 - parent: 12 - - uid: 22611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,50.5 - parent: 12 - - uid: 22699 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,53.5 - parent: 12 - - uid: 22700 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,54.5 - parent: 12 - - uid: 22701 - components: - - type: Transform - pos: -5.5,55.5 - parent: 12 - - uid: 30332 - components: - - type: Transform - pos: -25.5,-49.5 - parent: 12 - - uid: 30431 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-52.5 - parent: 12 - - uid: 30461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,23.5 - parent: 12 - - uid: 30891 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-57.5 - parent: 12 - - uid: 30976 - components: - - type: Transform - pos: 48.5,-12.5 - parent: 12 - - uid: 30977 - components: - - type: Transform - pos: 47.5,-12.5 - parent: 12 -- proto: WindoorBarKitchenLocked - entities: - - uid: 11203 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,53.5 - parent: 12 -- proto: WindoorChapelLocked - entities: - - uid: 13030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,32.5 - parent: 12 - - uid: 13031 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,32.5 - parent: 12 -- proto: WindoorSecure - entities: - - uid: 14181 - components: - - type: Transform - pos: -51.5,18.5 - parent: 12 - - uid: 21655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,49.5 - parent: 12 - - uid: 22645 - components: - - type: Transform - pos: 8.5,55.5 - parent: 12 - - uid: 22646 - components: - - type: Transform - pos: 14.5,55.5 - parent: 12 - - uid: 27233 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,65.5 - parent: 12 -- proto: WindoorSecureArmoryLocked - entities: - - uid: 16521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,53.5 - parent: 12 - - uid: 16699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,52.5 - parent: 12 - - uid: 20340 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,64.5 - parent: 12 - - uid: 20849 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,65.5 - parent: 12 - - uid: 20852 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,64.5 - parent: 12 - - uid: 20854 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,65.5 - parent: 12 -- proto: WindoorSecureBrigLocked - entities: - - uid: 19175 - components: - - type: Transform - pos: -47.5,57.5 - parent: 12 -- proto: WindoorSecureCargoLocked - entities: - - uid: 11373 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-23.5 - parent: 12 -- proto: WindoorSecureChemistryLocked - entities: - - uid: 9065 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-45.5 - parent: 12 - - uid: 11233 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-45.5 - parent: 12 - - uid: 32095 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-43.5 - parent: 12 - - uid: 32096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-42.5 - parent: 12 -- proto: WindoorSecureCommandLocked - entities: - - uid: 6 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-0.5 - parent: 12 - - uid: 5289 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-13.5 - parent: 12 - - uid: 19830 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,38.5 - parent: 12 - - uid: 21887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,3.5 - parent: 12 - - uid: 22056 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 12 -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 8429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-24.5 - parent: 12 - - uid: 8472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-24.5 - parent: 12 -- proto: WindoorSecureHeadOfPersonnelLocked - entities: - - uid: 28646 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,24.5 - parent: 12 - - uid: 28931 - components: - - type: Transform - pos: -33.5,20.5 - parent: 12 -- proto: WindoorSecureMedicalLocked - entities: - - uid: 1718 - components: - - type: Transform - pos: 30.5,40.5 - parent: 12 - - uid: 1775 - components: - - type: Transform - pos: 29.5,40.5 - parent: 12 - - uid: 2458 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-37.5 - parent: 12 - - uid: 9557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-39.5 - parent: 12 - - uid: 21667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-44.5 - parent: 12 - - uid: 26099 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-60.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 26100: - - DoorStatus: DoorBolt - - uid: 26100 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-61.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 26099: - - DoorStatus: DoorBolt - - uid: 27251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-44.5 - parent: 12 -- proto: WindoorSecureSalvageLocked - entities: - - uid: 8823 - components: - - type: Transform - pos: 56.5,-25.5 - parent: 12 -- proto: WindoorSecureScienceLocked - entities: - - uid: 11280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-20.5 - parent: 12 -- proto: WindoorSecureSecurityLawyerLocked - entities: - - uid: 30270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,1.5 - parent: 12 -- proto: WindoorSecureSecurityLocked - entities: - - uid: 8730 - components: - - type: Transform - pos: 52.5,-30.5 - parent: 12 - - uid: 19185 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,39.5 - parent: 12 - - uid: 23846 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,50.5 - parent: 12 - - uid: 29067 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,58.5 - parent: 12 -- proto: WindoorServiceLocked - entities: - - uid: 4893 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-40.5 - parent: 12 - - uid: 7104 - components: - - type: Transform - pos: 46.5,-38.5 - parent: 12 - - uid: 15802 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,36.5 - parent: 12 - - uid: 16777 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,54.5 - parent: 12 - - uid: 30396 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,71.5 - 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 - rot: 3.141592653589793 rad - pos: -18.5,-4.5 - parent: 12 - - uid: 371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-5.5 - parent: 12 - - uid: 374 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-4.5 - parent: 12 - - uid: 375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-2.5 - parent: 12 - - uid: 425 - components: - - type: Transform - pos: -20.5,3.5 - parent: 12 - - uid: 427 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,3.5 - parent: 12 - - uid: 432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,1.5 - parent: 12 - - uid: 433 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,2.5 - parent: 12 - - uid: 443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,4.5 - parent: 12 - - uid: 444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,4.5 - parent: 12 - - uid: 547 - components: - - type: Transform - pos: -13.5,-22.5 - parent: 12 - - uid: 548 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 12 - - uid: 855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-40.5 - parent: 12 - - uid: 856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-40.5 - parent: 12 - - uid: 857 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-40.5 - parent: 12 - - uid: 2334 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-52.5 - parent: 12 - - uid: 2335 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-52.5 - parent: 12 - - uid: 2336 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-52.5 - parent: 12 - - uid: 2624 - components: - - type: Transform - pos: -14.5,-56.5 - parent: 12 - - uid: 2737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-40.5 - parent: 12 - - uid: 2744 - components: - - type: Transform - pos: -11.5,-53.5 - parent: 12 - - uid: 2745 - components: - - type: Transform - pos: -12.5,-53.5 - parent: 12 - - uid: 2746 - components: - - type: Transform - pos: -13.5,-53.5 - parent: 12 - - uid: 2936 - components: - - type: Transform - pos: -2.5,-33.5 - parent: 12 - - uid: 2959 - components: - - type: Transform - pos: 1.5,-40.5 - parent: 12 - - uid: 2987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-40.5 - parent: 12 - - uid: 3101 - components: - - type: Transform - pos: 2.5,-44.5 - parent: 12 - - uid: 3375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,20.5 - parent: 12 - - uid: 3472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,19.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 - rot: 3.141592653589793 rad - pos: 48.5,-2.5 - parent: 12 - - uid: 7382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-28.5 - parent: 12 - - uid: 7384 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-26.5 - parent: 12 - - uid: 7446 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-29.5 - parent: 12 - - uid: 7447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-26.5 - parent: 12 - - uid: 7448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-25.5 - parent: 12 - - uid: 7449 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-25.5 - parent: 12 - - uid: 7450 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-25.5 - parent: 12 - - uid: 8507 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-17.5 - parent: 12 - - uid: 8508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-17.5 - parent: 12 - - uid: 9637 - components: - - type: Transform - 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 - rot: 1.5707963267948966 rad - pos: -17.5,14.5 - parent: 12 - - uid: 10579 - components: - - type: Transform - 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 - pos: -17.5,-52.5 - parent: 12 - - uid: 10662 - components: - - type: Transform - pos: -15.5,-52.5 - parent: 12 - - uid: 11283 - components: - - type: Transform - pos: -18.5,-49.5 - parent: 12 - - uid: 11284 - components: - - type: Transform - pos: -18.5,-51.5 - parent: 12 - - uid: 11515 - components: - - type: Transform - pos: 37.5,15.5 - parent: 12 - - uid: 11538 - components: - - type: Transform - pos: 37.5,20.5 - parent: 12 - - uid: 11539 - components: - - type: Transform - pos: 38.5,20.5 - parent: 12 - - uid: 11565 - components: - - type: Transform - pos: 48.5,17.5 - parent: 12 - - uid: 11824 - components: - - type: Transform - pos: 10.5,36.5 - parent: 12 - - uid: 11825 - components: - - type: Transform - pos: 10.5,37.5 - parent: 12 - - uid: 11851 - components: - - type: Transform - pos: -0.5,38.5 - parent: 12 - - uid: 11852 - components: - - type: Transform - pos: -0.5,37.5 - parent: 12 - - uid: 11855 - components: - - type: Transform - pos: -22.5,3.5 - parent: 12 - - uid: 11893 - components: - - type: Transform - pos: 40.5,40.5 - parent: 12 - - uid: 11894 - components: - - type: Transform - pos: 41.5,40.5 - parent: 12 - - uid: 11895 - components: - - type: Transform - pos: 41.5,34.5 - parent: 12 - - uid: 11896 - components: - - type: Transform - pos: 40.5,35.5 - parent: 12 - - uid: 11897 - components: - - type: Transform - pos: 39.5,35.5 - parent: 12 - - uid: 11898 - components: - - type: Transform - pos: 38.5,35.5 - parent: 12 - - uid: 11899 - components: - - type: Transform - pos: 37.5,35.5 - parent: 12 - - uid: 11906 - components: - - type: Transform - pos: 41.5,35.5 - parent: 12 - - uid: 11997 - components: - - type: Transform - pos: 38.5,15.5 - parent: 12 - - uid: 12028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,61.5 - parent: 12 - - uid: 12118 - components: - - type: Transform - pos: -24.5,-61.5 - parent: 12 - - uid: 12524 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,48.5 - parent: 12 - - uid: 12525 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,49.5 - parent: 12 - - uid: 12538 - components: - - type: Transform - pos: 71.5,46.5 - parent: 12 - - uid: 12545 - components: - - type: Transform - pos: 71.5,51.5 - parent: 12 - - uid: 12546 - components: - - type: Transform - pos: 62.5,51.5 - parent: 12 - - uid: 12555 - components: - - type: Transform - pos: 60.5,47.5 - parent: 12 - - uid: 12560 - components: - - type: Transform - pos: 60.5,50.5 - parent: 12 - - uid: 12561 - components: - - type: Transform - pos: 62.5,46.5 - parent: 12 - - uid: 12564 - components: - - type: Transform - pos: 67.5,46.5 - parent: 12 - - uid: 12569 - components: - - type: Transform - pos: 67.5,51.5 - parent: 12 - - uid: 12603 - components: - - type: Transform - pos: 49.5,42.5 - parent: 12 - - uid: 12604 - components: - - type: Transform - pos: 49.5,43.5 - parent: 12 - - uid: 12605 - components: - - type: Transform - pos: 50.5,43.5 - parent: 12 - - uid: 12606 - components: - - type: Transform - pos: 51.5,43.5 - parent: 12 - - uid: 12607 - components: - - type: Transform - pos: 52.5,43.5 - parent: 12 - - uid: 12608 - components: - - type: Transform - pos: 53.5,43.5 - parent: 12 - - uid: 12977 - components: - - type: Transform - pos: -24.5,-60.5 - parent: 12 - - uid: 13029 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,28.5 - parent: 12 - - uid: 13739 - components: - - type: Transform - pos: 60.5,-22.5 - parent: 12 - - uid: 13832 - components: - - type: Transform - pos: 41.5,-17.5 - parent: 12 - - uid: 13994 - components: - - type: Transform - pos: 49.5,49.5 - parent: 12 - - uid: 13995 - components: - - type: Transform - pos: 52.5,49.5 - parent: 12 - - uid: 13996 - components: - - type: Transform - pos: 54.5,46.5 - parent: 12 - - uid: 13997 - components: - - type: Transform - pos: 56.5,51.5 - parent: 12 - - uid: 14002 - components: - - type: Transform - pos: 53.5,58.5 - parent: 12 - - uid: 14004 - components: - - type: Transform - pos: 53.5,56.5 - parent: 12 - - uid: 14005 - components: - - type: Transform - pos: 53.5,57.5 - parent: 12 - - uid: 14049 - components: - - type: Transform - pos: 46.5,54.5 - parent: 12 - - uid: 14050 - components: - - type: Transform - pos: 47.5,54.5 - parent: 12 - - uid: 14108 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,44.5 - parent: 12 - - uid: 14109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,44.5 - parent: 12 - - uid: 14110 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,44.5 - parent: 12 - - uid: 14111 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,44.5 - parent: 12 - - uid: 14114 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,48.5 - parent: 12 - - uid: 14142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,43.5 - parent: 12 - - uid: 14145 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,44.5 - parent: 12 - - uid: 14146 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,53.5 - parent: 12 - - uid: 14220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,56.5 - parent: 12 - - uid: 14487 - components: - - type: Transform - pos: 33.5,56.5 - parent: 12 - - uid: 14488 - components: - - type: Transform - pos: 33.5,57.5 - parent: 12 - - uid: 14509 - components: - - type: Transform - pos: 25.5,61.5 - parent: 12 - - uid: 14511 - components: - - type: Transform - pos: 26.5,61.5 - parent: 12 - - uid: 14513 - components: - - type: Transform - pos: 27.5,61.5 - parent: 12 - - uid: 14579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,56.5 - parent: 12 - - uid: 14580 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,57.5 - parent: 12 - - uid: 14581 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,58.5 - parent: 12 - - uid: 14582 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,59.5 - parent: 12 - - uid: 14586 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,55.5 - parent: 12 - - uid: 14596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,48.5 - parent: 12 - - uid: 14597 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,49.5 - parent: 12 - - uid: 14598 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,50.5 - parent: 12 - - uid: 14612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,46.5 - parent: 12 - - uid: 14613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,46.5 - parent: 12 - - uid: 14614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,46.5 - parent: 12 - - uid: 14615 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,46.5 - parent: 12 - - uid: 14616 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,46.5 - parent: 12 - - uid: 14617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,43.5 - parent: 12 - - uid: 15467 - components: - - type: Transform - pos: -28.5,32.5 - parent: 12 - - uid: 15478 - components: - - type: Transform - pos: -29.5,32.5 - parent: 12 - - uid: 15479 - components: - - type: Transform - pos: -28.5,30.5 - parent: 12 - - uid: 15481 - components: - - type: Transform - pos: -28.5,31.5 - parent: 12 - - uid: 15482 - components: - - type: Transform - pos: -30.5,32.5 - parent: 12 - - uid: 15491 - components: - - type: Transform - pos: -27.5,30.5 - parent: 12 - - uid: 15495 - components: - - type: Transform - pos: -26.5,30.5 - parent: 12 - - uid: 15692 - components: - - type: Transform - pos: -21.5,26.5 - parent: 12 - - uid: 15698 - components: - - type: Transform - pos: -21.5,29.5 - parent: 12 - - uid: 15779 - components: - - type: Transform - pos: 1.5,42.5 - parent: 12 - - uid: 15780 - components: - - type: Transform - pos: 2.5,42.5 - parent: 12 - - uid: 15781 - components: - - type: Transform - pos: 4.5,42.5 - parent: 12 - - uid: 15782 - components: - - type: Transform - pos: 5.5,42.5 - parent: 12 - - uid: 16210 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-12.5 - parent: 12 - - uid: 17108 - components: - - type: Transform - pos: 1.5,46.5 - parent: 12 - - uid: 17109 - components: - - type: Transform - pos: 4.5,46.5 - parent: 12 - - uid: 18619 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,46.5 - parent: 12 - - uid: 18620 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,46.5 - parent: 12 - - uid: 18621 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,46.5 - parent: 12 - - uid: 19447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,46.5 - parent: 12 - - uid: 19448 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,46.5 - parent: 12 - - uid: 19449 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,46.5 - parent: 12 - - uid: 19450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,46.5 - parent: 12 - - uid: 19451 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,46.5 - parent: 12 - - uid: 19718 - components: - - type: Transform - pos: -11.5,49.5 - parent: 12 - - uid: 19720 - components: - - type: Transform - pos: -11.5,48.5 - parent: 12 - - uid: 19736 - components: - - type: Transform - pos: -13.5,62.5 - parent: 12 - - uid: 19737 - components: - - type: Transform - pos: -5.5,60.5 - parent: 12 - - uid: 20148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-12.5 - parent: 12 - - uid: 20276 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-12.5 - parent: 12 - - uid: 20313 - components: - - type: Transform - 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 - pos: 35.5,7.5 - parent: 12 - - uid: 22297 - components: - - type: Transform - pos: 35.5,8.5 - parent: 12 - - uid: 22688 - components: - - type: Transform - pos: 11.5,60.5 - parent: 12 - - uid: 22689 - components: - - type: Transform - pos: 12.5,60.5 - parent: 12 - - uid: 24189 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,51.5 - parent: 12 - - uid: 25197 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-17.5 - parent: 12 - - uid: 26032 - components: - - type: Transform - pos: 61.5,-22.5 - parent: 12 - - uid: 26173 - components: - - type: Transform - pos: 59.5,-24.5 - parent: 12 - - uid: 26174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-22.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: 29075 - components: - - type: Transform - pos: -0.5,-40.5 - parent: 12 - - uid: 30335 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-21.5 - parent: 12 - - uid: 30539 - components: - - type: Transform - pos: -23.5,-61.5 - parent: 12 - - uid: 30541 - components: - - type: Transform - pos: -23.5,-62.5 - parent: 12 - - uid: 30550 - components: - - type: Transform - pos: -22.5,-62.5 - parent: 12 - - uid: 30551 - components: - - type: Transform - pos: -21.5,-62.5 - parent: 12 - - uid: 30552 - components: - - type: Transform - pos: -20.5,-62.5 - parent: 12 - - uid: 30553 - components: - - type: Transform - pos: -19.5,-62.5 - parent: 12 - - uid: 30893 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-55.5 - parent: 12 - - uid: 30894 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-56.5 - parent: 12 - - uid: 32035 - components: - - type: Transform - pos: 41.5,-18.5 - parent: 12 -- proto: WindowDirectional - entities: - - uid: 7837 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-51.5 - parent: 12 - - uid: 9559 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,46.5 - parent: 12 - - uid: 9597 - components: - - type: Transform - pos: 52.5,46.5 - parent: 12 - - uid: 11048 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,48.5 - parent: 12 - - uid: 11053 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,48.5 - parent: 12 - - uid: 12289 - components: - - type: Transform - pos: 49.5,46.5 - parent: 12 - - uid: 14518 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-51.5 - parent: 12 - - uid: 16832 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,0.5 - parent: 12 - - uid: 16847 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-47.5 - parent: 12 - - uid: 16900 - components: - - type: Transform - pos: -10.5,-50.5 - parent: 12 - - uid: 17456 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-47.5 - parent: 12 - - uid: 17535 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-47.5 - parent: 12 - - uid: 19188 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,46.5 - parent: 12 - - uid: 19292 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,54.5 - parent: 12 - - 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: -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: - - type: Transform - pos: -13.5,72.5 - parent: 12 - - uid: 30334 - components: - - type: Transform - pos: -8.5,-50.5 - parent: 12 - - uid: 30337 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-49.5 - parent: 12 - - uid: 30338 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-49.5 - parent: 12 - - uid: 30346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-51.5 - parent: 12 - - uid: 30430 - components: - - type: Transform - pos: -9.5,-50.5 - parent: 12 - - uid: 30432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-49.5 - parent: 12 - - uid: 30462 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,24.5 - parent: 12 - - uid: 30463 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,22.5 - parent: 12 - - uid: 30971 - components: - - type: Transform - pos: 49.5,-12.5 - parent: 12 - - uid: 30972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-12.5 - parent: 12 - - uid: 30973 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-11.5 - parent: 12 - - uid: 30974 - components: - - type: Transform - pos: 46.5,-12.5 - parent: 12 - - uid: 30975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-11.5 - parent: 12 -- proto: WindowFrostedDirectional - entities: - - uid: 4236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-32.5 - parent: 12 - - uid: 4237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-31.5 - parent: 12 - - uid: 4238 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-31.5 - parent: 12 - - uid: 4239 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-32.5 - parent: 12 - - uid: 6784 - components: - - type: Transform - pos: -39.5,-21.5 - parent: 12 - - uid: 6785 - components: - - type: Transform - pos: -36.5,-21.5 - parent: 12 - - uid: 6786 - components: - - type: Transform - pos: -35.5,-21.5 - parent: 12 - - uid: 6787 - components: - - type: Transform - pos: -37.5,-21.5 - parent: 12 - - uid: 15657 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,36.5 - parent: 12 - - uid: 19118 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,43.5 - parent: 12 - - uid: 19119 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,43.5 - parent: 12 - - uid: 19120 - components: - - type: Transform - pos: -24.5,45.5 - parent: 12 - - uid: 19121 - components: - - type: Transform - pos: -25.5,45.5 - parent: 12 - - uid: 19285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,54.5 - parent: 12 - - uid: 21679 - components: - - type: Transform - pos: -4.5,60.5 - parent: 12 - - uid: 21680 - components: - - type: Transform - pos: -2.5,60.5 - parent: 12 - - uid: 21681 - components: - - type: Transform - pos: -4.5,62.5 - parent: 12 - - uid: 21682 - components: - - type: Transform - pos: -2.5,62.5 - parent: 12 - - uid: 21683 - components: - - type: Transform - pos: -2.5,64.5 - parent: 12 - - uid: 21684 - components: - - type: Transform - pos: -4.5,64.5 - parent: 12 - - uid: 21686 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,63.5 - parent: 12 - - uid: 21687 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,59.5 - parent: 12 - - uid: 21688 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,65.5 - parent: 12 - - uid: 21689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,63.5 - parent: 12 - - uid: 21690 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,59.5 - parent: 12 - - uid: 21697 - components: - - type: Transform - pos: -16.5,64.5 - parent: 12 - - uid: 21698 - components: - - type: Transform - pos: -14.5,64.5 - parent: 12 - - uid: 21699 - components: - - type: Transform - pos: -16.5,62.5 - parent: 12 - - uid: 21700 - components: - - type: Transform - pos: -14.5,62.5 - parent: 12 - - uid: 21701 - components: - - type: Transform - pos: -16.5,60.5 - parent: 12 - - uid: 21702 - components: - - type: Transform - pos: -14.5,60.5 - parent: 12 - - uid: 22407 - components: - - type: Transform - pos: -4.5,55.5 - parent: 12 - - uid: 22408 - components: - - type: Transform - pos: -6.5,55.5 - parent: 12 - - uid: 22409 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,53.5 - parent: 12 - - uid: 26375 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,65.5 - parent: 12 - - uid: 26376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,61.5 - parent: 12 - - uid: 28216 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,59.5 - parent: 12 - - uid: 28428 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,61.5 - parent: 12 - - uid: 30013 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,65.5 - parent: 12 - - uid: 30014 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,59.5 - parent: 12 - - uid: 30015 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,65.5 - parent: 12 -- proto: WindowReinforcedDirectional - entities: - - uid: 54 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-0.5 - parent: 12 - - uid: 55 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-0.5 - parent: 12 - - uid: 56 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-0.5 - parent: 12 - - uid: 58 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 12 - - uid: 59 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-0.5 - parent: 12 - - uid: 220 - components: - - type: Transform - pos: -3.5,-13.5 - parent: 12 - - uid: 221 - components: - - type: Transform - pos: 2.5,-13.5 - parent: 12 - - uid: 705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-29.5 - parent: 12 - - uid: 758 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-32.5 - parent: 12 - - uid: 827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-32.5 - parent: 12 - - uid: 828 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-33.5 - parent: 12 - - uid: 833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-32.5 - parent: 12 - - uid: 834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-33.5 - parent: 12 - - uid: 2461 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-37.5 - parent: 12 - - uid: 2462 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-37.5 - parent: 12 - - uid: 2517 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-36.5 - parent: 12 - - uid: 2518 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-32.5 - parent: 12 - - uid: 2519 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-33.5 - parent: 12 - - uid: 2776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-62.5 - parent: 12 - - uid: 2778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-61.5 - parent: 12 - - uid: 2780 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-60.5 - parent: 12 - - uid: 3005 - components: - - type: Transform - pos: -57.5,30.5 - parent: 12 - - uid: 3023 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-13.5 - parent: 12 - - uid: 4898 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-23.5 - parent: 12 - - uid: 5572 - components: - - type: Transform - pos: 32.5,-18.5 - parent: 12 - - uid: 5573 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-18.5 - parent: 12 - - uid: 5574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-19.5 - parent: 12 - - uid: 5575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-20.5 - parent: 12 - - uid: 5576 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-21.5 - parent: 12 - - uid: 5953 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-50.5 - parent: 12 - - uid: 6114 - components: - - type: Transform - pos: 15.5,-35.5 - parent: 12 - - uid: 6115 - components: - - type: Transform - pos: 16.5,-35.5 - parent: 12 - - uid: 6116 - components: - - type: Transform - pos: 17.5,-35.5 - parent: 12 - - uid: 6117 - components: - - type: Transform - pos: 26.5,-35.5 - parent: 12 - - uid: 6118 - components: - - type: Transform - pos: 27.5,-35.5 - parent: 12 - - uid: 6119 - components: - - type: Transform - pos: 28.5,-35.5 - parent: 12 - - uid: 7581 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-61.5 - parent: 12 - - uid: 8323 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-20.5 - parent: 12 - - uid: 8731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-30.5 - parent: 12 - - uid: 9659 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-44.5 - parent: 12 - - uid: 9744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-44.5 - parent: 12 - - uid: 9817 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-44.5 - parent: 12 - - uid: 12326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,64.5 - parent: 12 - - uid: 12648 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,31.5 - parent: 12 - - uid: 12649 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,31.5 - parent: 12 - - uid: 12726 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,39.5 - parent: 12 - - uid: 12807 - components: - - type: Transform - pos: 56.5,41.5 - parent: 12 - - uid: 13195 - components: - - type: Transform - pos: 57.5,41.5 - parent: 12 - - uid: 13787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,40.5 - parent: 12 - - uid: 14981 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,40.5 - parent: 12 - - uid: 14982 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,40.5 - parent: 12 - - uid: 14983 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,64.5 - parent: 12 - - uid: 14984 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,40.5 - parent: 12 - - uid: 14985 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,40.5 - parent: 12 - - uid: 14986 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,40.5 - parent: 12 - - uid: 14987 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,40.5 - parent: 12 - - uid: 14988 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,40.5 - parent: 12 - - uid: 15098 - components: - - type: Transform - pos: 23.5,48.5 - parent: 12 - - uid: 15490 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-0.5 - parent: 12 - - uid: 16493 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-19.5 - parent: 12 - - uid: 16547 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-23.5 - parent: 12 - - uid: 16643 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,40.5 - parent: 12 - - uid: 16663 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-38.5 - parent: 12 - - uid: 16822 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-44.5 - parent: 12 - - uid: 16823 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-44.5 - parent: 12 - - uid: 17204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-21.5 - parent: 12 - - uid: 17371 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,28.5 - parent: 12 - - uid: 17372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,29.5 - parent: 12 - - uid: 17373 - components: - - type: Transform - pos: -52.5,18.5 - parent: 12 - - uid: 17374 - components: - - type: Transform - pos: -50.5,18.5 - parent: 12 - - uid: 19112 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,43.5 - parent: 12 - - uid: 19113 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,44.5 - parent: 12 - - uid: 19114 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,45.5 - parent: 12 - - uid: 19115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,45.5 - parent: 12 - - uid: 19116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,44.5 - parent: 12 - - uid: 19117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,43.5 - parent: 12 - - uid: 19138 - components: - - type: Transform - pos: -39.5,47.5 - parent: 12 - - uid: 19139 - components: - - type: Transform - pos: -40.5,47.5 - parent: 12 - - uid: 19140 - components: - - type: Transform - pos: -41.5,47.5 - parent: 12 - - uid: 19141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,47.5 - parent: 12 - - uid: 19142 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,46.5 - parent: 12 - - uid: 19143 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,46.5 - parent: 12 - - uid: 19144 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,46.5 - parent: 12 - - uid: 19193 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,57.5 - parent: 12 - - uid: 19969 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,39.5 - parent: 12 - - uid: 20075 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-13.5 - parent: 12 - - uid: 20853 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,65.5 - parent: 12 - - uid: 21504 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,1.5 - parent: 12 - - uid: 21649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,50.5 - parent: 12 - - uid: 21650 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,51.5 - parent: 12 - - uid: 21652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,51.5 - parent: 12 - - uid: 21653 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,50.5 - parent: 12 - - uid: 21657 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,49.5 - parent: 12 - - uid: 21658 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,49.5 - parent: 12 - - uid: 21659 - components: - - type: Transform - pos: -8.5,52.5 - parent: 12 - - uid: 21929 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,37.5 - parent: 12 - - uid: 21965 - components: - - type: Transform - pos: -1.5,-9.5 - parent: 12 - - uid: 21972 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,37.5 - parent: 12 - - uid: 22053 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 12 - - uid: 22638 - components: - - type: Transform - pos: 7.5,55.5 - parent: 12 - - uid: 22639 - components: - - type: Transform - pos: 13.5,55.5 - parent: 12 - - uid: 22640 - components: - - type: Transform - pos: 12.5,55.5 - parent: 12 - - uid: 22641 - components: - - type: Transform - pos: 11.5,55.5 - parent: 12 - - uid: 22642 - components: - - type: Transform - pos: 10.5,55.5 - parent: 12 - - uid: 22643 - components: - - type: Transform - pos: 9.5,55.5 - parent: 12 - - uid: 22644 - components: - - type: Transform - pos: 15.5,55.5 - parent: 12 - - uid: 23844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,50.5 - parent: 12 - - uid: 23845 - components: - - type: Transform - pos: -33.5,50.5 - parent: 12 - - uid: 26588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,65.5 - parent: 12 - - uid: 28932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,53.5 - parent: 12 - - uid: 29220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,65.5 - parent: 12 - - uid: 30324 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,57.5 - parent: 12 - - uid: 30474 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,24.5 - parent: 12 - - uid: 30475 - components: - - type: Transform - pos: -32.5,20.5 - parent: 12 - - uid: 30476 - components: - - type: Transform - pos: -34.5,20.5 - parent: 12 - - uid: 30478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,24.5 - parent: 12 - - uid: 31181 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-67.5 - parent: 12 - - uid: 31229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-67.5 - parent: 12 - - uid: 31230 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-67.5 - parent: 12 - - uid: 31231 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-67.5 - parent: 12 - - uid: 31232 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-67.5 - parent: 12 - - uid: 31233 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-67.5 - parent: 12 - - uid: 31234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-67.5 - parent: 12 - - uid: 31235 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-67.5 - parent: 12 - - uid: 31770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,27.5 - parent: 12 -- proto: Wirecutter - entities: - - uid: 8737 - components: - - type: Transform - pos: 52.592125,-23.373646 - parent: 12 - - uid: 17621 - components: - - type: Transform - pos: -54.053448,29.577581 - 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 - pos: 51.5,31.5 - parent: 12 - - uid: 15793 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,33.5 - parent: 12 - - uid: 21061 - components: - - type: Transform - pos: -5.5,27.5 - parent: 12 - - uid: 21062 - components: - - type: Transform - pos: -5.5,28.5 - parent: 12 - - uid: 22357 - components: - - type: Transform - pos: -14.5,52.5 - parent: 12 - - uid: 22358 - components: - - type: Transform - pos: -11.5,50.5 - parent: 12 -- proto: WoodenBuckler - entities: - - uid: 31201 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: -3.3112438,-68.32195 - parent: 12 - - type: Blocking - blockingToggleActionEntity: 31202 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 31202 -- proto: Wrench - entities: - - uid: 5917 - components: - - type: Transform - rot: -43.98229715025713 rad - pos: 33.474327,-18.568962 - parent: 12 - - uid: 7197 - components: - - type: Transform - pos: -3.5080347,-0.46681333 - parent: 12 - - uid: 9080 - components: - - type: Transform - 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 - pos: 54.54462,23.7788 - parent: 12 - - uid: 16471 - components: - - type: Transform - pos: -12.698894,10.215696 - parent: 12 - - uid: 21072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.375736,44.624203 - parent: 12 - - uid: 23680 - components: - - type: Transform - pos: 44.512337,53.244392 - parent: 12 - - uid: 28277 - components: - - type: Transform - pos: -23.775642,-15.327034 - parent: 12 - - uid: 30137 - components: - - type: Transform - pos: -42.562584,42.448437 - parent: 12 -- proto: Zipties - entities: - - uid: 13512 - components: - - type: Transform - pos: 54.32351,25.56691 - parent: 12 -... diff --git a/Resources/Prototypes/Maps/Pools/default.yml b/Resources/Prototypes/Maps/Pools/default.yml index 3dec140bbd..ff4e57a7b2 100644 --- a/Resources/Prototypes/Maps/Pools/default.yml +++ b/Resources/Prototypes/Maps/Pools/default.yml @@ -4,7 +4,6 @@ - Amber - Bagel - Box - - Cog - Convex - Core - Elkridge diff --git a/Resources/Prototypes/Maps/cog.yml b/Resources/Prototypes/Maps/cog.yml deleted file mode 100644 index 2f45631bba..0000000000 --- a/Resources/Prototypes/Maps/cog.yml +++ /dev/null @@ -1,67 +0,0 @@ -- type: gameMap - id: Cog - mapName: 'Cog' - mapPath: /Maps/cog.yml - minPlayers: 40 - maxPlayers: 80 #big map - stations: - Cog: - stationProto: StandardNanotrasenStation - components: - - type: StationNameSetup - mapNameTemplate: '{0} Cog {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: 'R4' # R4407/Goon. GS isn't as cool sounding. - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_wode.yml - - type: StationJobs - availableJobs: - #service - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - Bartender: [ 2, 2 ] - Botanist: [ 3, 3 ] - Chef: [ 2, 2 ] - Janitor: [ 3, 3 ] - Chaplain: [ 1, 1 ] - Reporter: [ 2, 2 ] - Librarian: [ 1, 1 ] - ServiceWorker: [ 3, 3 ] - Zookeeper: [ 1, 1 ] - #engineering - ChiefEngineer: [ 1, 1 ] - AtmosphericTechnician: [ 3, 3 ] - StationEngineer: [ 4, 4 ] - TechnicalAssistant: [ 3, 3 ] - #medical - ChiefMedicalOfficer: [ 1, 1 ] - Chemist: [ 3, 3 ] - MedicalDoctor: [ 4, 4 ] - MedicalIntern: [ 3, 3 ] - Psychologist: [ 1, 1 ] - Paramedic: [ 1, 1 ] - #science - ResearchDirector: [ 1, 1 ] - Scientist: [ 5, 5 ] - ResearchAssistant: [ 3, 3 ] - #security - HeadOfSecurity: [ 1, 1 ] - Warden: [ 1, 1 ] - SecurityOfficer: [ 4, 4 ] - Detective: [ 1, 1 ] - SecurityCadet: [ 4, 4 ] - Lawyer: [ 2, 2 ] - #supply - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] - CargoTechnician: [ 4, 4 ] - #civilian - Passenger: [ -1, -1 ] - Clown: [ 1, 1 ] - Mime: [ 1, 1 ] - Musician: [ 1, 1 ] - Boxer: [ 2, 2] - #silicon - StationAi: [ 1, 1 ] - Borg: [ 3, 3 ] From c1f64c591d97092b4425fde6e78603cd9f604281 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 9 Feb 2025 21:02:38 +0000 Subject: [PATCH 157/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index fdb2e19845..e660a09b07 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: ElectroJr - changes: - - message: Entities within the same container as the player only appear in the context - menu when clicking near the container. - type: Fix - id: 7422 - time: '2024-09-23T07:28:42.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32395 - author: Errant changes: - message: Computers now have a maintenance panel with a Power and AI wire (if AI-connected). @@ -3900,3 +3892,10 @@ id: 7921 time: '2025-02-09T15:10:11.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34950 +- author: Spacemann + changes: + - message: Removed Cog station + type: Remove + id: 7922 + time: '2025-02-09T21:01:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34996 From 0024f3fa0d130fa7ca3819d803ac87ef4a06421e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B6=D0=B5=D0=BA=D1=81=D0=BE=D0=BD=20=D0=9C=D0=B8?= =?UTF-8?q?=D1=81=D1=81=D0=B8=D1=81=D1=81=D0=B8=D0=BF=D0=BF=D0=B8?= Date: Sun, 9 Feb 2025 16:16:17 -0600 Subject: [PATCH 158/313] Add loungewear to uniform printer (#35008) * Update clothing.yml * Update clothing.yml --- Resources/Prototypes/Recipes/Lathes/Packs/clothing.yml | 1 + Resources/Prototypes/Recipes/Lathes/clothing.yml | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/clothing.yml b/Resources/Prototypes/Recipes/Lathes/Packs/clothing.yml index 15ba04b88c..728082036e 100644 --- a/Resources/Prototypes/Recipes/Lathes/Packs/clothing.yml +++ b/Resources/Prototypes/Recipes/Lathes/Packs/clothing.yml @@ -5,6 +5,7 @@ recipes: - ClothingUniformJumpsuitColorGrey - ClothingUniformJumpskirtColorGrey + - ClothingUniformJumpsuitLoungewear - type: latheRecipePack id: ClothingCargo diff --git a/Resources/Prototypes/Recipes/Lathes/clothing.yml b/Resources/Prototypes/Recipes/Lathes/clothing.yml index 62e2982e5c..6279cc2156 100644 --- a/Resources/Prototypes/Recipes/Lathes/clothing.yml +++ b/Resources/Prototypes/Recipes/Lathes/clothing.yml @@ -65,6 +65,11 @@ parent: BaseJumpsuitRecipe id: ClothingUniformJumpskirtColorGrey result: ClothingUniformJumpskirtColorGrey + +- type: latheRecipe + parent: BaseJumpsuitRecipe + id: ClothingUniformJumpsuitLoungewear + result: ClothingUniformJumpsuitLoungewear - type: latheRecipe parent: BaseJumpsuitRecipe From cb723b0cdb6a387ec1c2674b78bdceae53dc4507 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 9 Feb 2025 22:17:23 +0000 Subject: [PATCH 159/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e660a09b07..a4ca6e43d7 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,13 +1,4 @@ Entries: -- author: Errant - changes: - - message: Computers now have a maintenance panel with a Power and AI wire (if AI-connected). - type: Tweak - - message: Computer deconstruction now begins with the crowbar, not the screwdriver. - type: Tweak - id: 7423 - time: '2024-09-23T10:51:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32273 - author: lzk228 changes: - message: Guidebook books now do damage like default writeable books. @@ -3899,3 +3890,10 @@ id: 7922 time: '2025-02-09T21:01:31.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34996 +- author: notquitehadouken + changes: + - message: Added loungewear to uniform printer + type: Add + id: 7923 + time: '2025-02-09T22:16:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35008 From 6cb30b309215a751b192cc80c4061f0bbe0abfbd Mon Sep 17 00:00:00 2001 From: Zachary Higgs Date: Sun, 9 Feb 2025 19:16:21 -0400 Subject: [PATCH 160/313] Make UnrevivableComponent shared, give the component reason messages and if it shows up on the analyzer (#35013) * Make UnrevivableComponent shared - Move UnrevivableComponent to shared - add reason messages and if the status shows up in a health analyzer * Update Content.Shared/Traits/Assorted/UnrevivableComponent.cs Co-authored-by: Tayrtahn * Make UnrevivableComponent networked * Update Content.Shared/Traits/Assorted/UnrevivableComponent.cs Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --------- Co-authored-by: Tayrtahn Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Content.Server/Medical/DefibrillatorSystem.cs | 6 ++--- .../Medical/HealthAnalyzerSystem.cs | 4 ++-- .../Traits/Assorted/UnrevivableComponent.cs | 10 --------- .../Traits/Assorted/UnrevivableComponent.cs | 22 +++++++++++++++++++ 4 files changed, 27 insertions(+), 15 deletions(-) delete mode 100644 Content.Server/Traits/Assorted/UnrevivableComponent.cs create mode 100644 Content.Shared/Traits/Assorted/UnrevivableComponent.cs diff --git a/Content.Server/Medical/DefibrillatorSystem.cs b/Content.Server/Medical/DefibrillatorSystem.cs index 6bd563101b..ba272c92f5 100644 --- a/Content.Server/Medical/DefibrillatorSystem.cs +++ b/Content.Server/Medical/DefibrillatorSystem.cs @@ -6,7 +6,7 @@ using Content.Server.EUI; using Content.Server.Ghost; using Content.Server.Popups; using Content.Server.PowerCell; -using Content.Server.Traits.Assorted; +using Content.Shared.Traits.Assorted; using Content.Shared.Damage; using Content.Shared.DoAfter; using Content.Shared.Interaction; @@ -193,9 +193,9 @@ public sealed class DefibrillatorSystem : EntitySystem _chatManager.TrySendInGameICMessage(uid, Loc.GetString("defibrillator-rotten"), InGameICChatType.Speak, true); } - else if (HasComp(target)) + else if (TryComp(target, out var unrevivable)) { - _chatManager.TrySendInGameICMessage(uid, Loc.GetString("defibrillator-unrevivable"), + _chatManager.TrySendInGameICMessage(uid, Loc.GetString(unrevivable.ReasonMessage), InGameICChatType.Speak, true); } else diff --git a/Content.Server/Medical/HealthAnalyzerSystem.cs b/Content.Server/Medical/HealthAnalyzerSystem.cs index 90646725bb..9f8ee92e3d 100644 --- a/Content.Server/Medical/HealthAnalyzerSystem.cs +++ b/Content.Server/Medical/HealthAnalyzerSystem.cs @@ -2,7 +2,7 @@ using Content.Server.Body.Components; using Content.Server.Medical.Components; using Content.Server.PowerCell; using Content.Server.Temperature.Components; -using Content.Server.Traits.Assorted; +using Content.Shared.Traits.Assorted; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Damage; using Content.Shared.DoAfter; @@ -207,7 +207,7 @@ public sealed class HealthAnalyzerSystem : EntitySystem bleeding = bloodstream.BleedAmount > 0; } - if (HasComp(target)) + if (TryComp(target, out var unrevivableComp) && unrevivableComp.Analyzable) unrevivable = true; _uiSystem.ServerSendUiMessage(healthAnalyzer, HealthAnalyzerUiKey.Key, new HealthAnalyzerScannedUserMessage( diff --git a/Content.Server/Traits/Assorted/UnrevivableComponent.cs b/Content.Server/Traits/Assorted/UnrevivableComponent.cs deleted file mode 100644 index b95c922d54..0000000000 --- a/Content.Server/Traits/Assorted/UnrevivableComponent.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace Content.Server.Traits.Assorted; - -/// -/// This is used for the urevivable trait. -/// -[RegisterComponent] -public sealed partial class UnrevivableComponent : Component -{ - -} diff --git a/Content.Shared/Traits/Assorted/UnrevivableComponent.cs b/Content.Shared/Traits/Assorted/UnrevivableComponent.cs new file mode 100644 index 0000000000..19b4cac5e0 --- /dev/null +++ b/Content.Shared/Traits/Assorted/UnrevivableComponent.cs @@ -0,0 +1,22 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Traits.Assorted; + +/// +/// This is used for the unrevivable trait as well as generally preventing revival. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class UnrevivableComponent : Component +{ + /// + /// A field to define if we should display the "Genetic incompatibility" warning on health analysers + /// + [DataField, AutoNetworkedField] + public bool Analyzable = true; + + /// + /// The loc string used to provide a reason for being unrevivable + /// + [DataField, AutoNetworkedField] + public LocId ReasonMessage = "defibrillator-unrevivable"; +} From 3ab1db99c153863a0ff0e606d78751667a0134b3 Mon Sep 17 00:00:00 2001 From: Vortebo <64214314+Vortebo@users.noreply.github.com> Date: Sun, 9 Feb 2025 17:24:13 -0600 Subject: [PATCH 161/313] Relic station (#34988) * General structure mostly complete. * I thiiiiiink I am done with air alarms. And pipes. Maybe. * Decals, shuttle, rust. * Small fixes. * Shuttle more or less where I want it. * Security is prettier, spawns are more fun. * Shuttle done. Almost done with one checklist. * Map renders now. * Checklists done. * Adjusted min player count. * Should pass the Build & Test Debug check now. --- .../Tests/PostMapInitTest.cs | 4 +- Resources/Maps/Relic.yml | 48215 ++++++++++++++++ Resources/Maps/Shuttles/emergency_relic.yml | 1329 + Resources/Prototypes/Maps/Relic.yml | 61 + 4 files changed, 49607 insertions(+), 2 deletions(-) create mode 100644 Resources/Maps/Relic.yml create mode 100644 Resources/Maps/Shuttles/emergency_relic.yml create mode 100644 Resources/Prototypes/Maps/Relic.yml diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index f520fd968b..4a22092e70 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -65,8 +65,8 @@ namespace Content.IntegrationTests.Tests "Loop", "Plasma", "Elkridge", - "Convex" - + "Convex", + "Relic" }; /// diff --git a/Resources/Maps/Relic.yml b/Resources/Maps/Relic.yml new file mode 100644 index 0000000000..eacdbe4049 --- /dev/null +++ b/Resources/Maps/Relic.yml @@ -0,0 +1,48215 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 15: FloorBar + 10: FloorBlueCircuit + 5: FloorCarpetClown + 9: FloorCarpetOffice + 2: FloorDark + 6: FloorElevatorShaft + 47: FloorFreezer + 1: FloorHydro + 64: FloorKitchen + 98: FloorSteel + 13: FloorSteelCheckerDark + 12: FloorSteelCheckerLight + 101: FloorSteelDamaged + 11: FloorSteelDirty + 4: FloorTechMaint + 3: FloorWhite + 126: FloorWood + 14: FloorWoodLarge + 8: Lattice + 7: Plating + 16: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - uid: 2 + components: + - type: MetaData + name: grid + - type: Transform + pos: -2.6405587,0.6332514 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: YgAAAAADYgAAAAABYgAAAAADYgAAAAAAYgAAAAACYgAAAAAAZQAAAAABYgAAAAADYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAAAYgAAAAAAZQAAAAACfgAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAAAYgAAAAAAYgAAAAADZQAAAAAEZQAAAAADZQAAAAABYgAAAAABZQAAAAAEZQAAAAADZQAAAAAAYgAAAAAAZQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAEYgAAAAABYgAAAAACZQAAAAACYgAAAAADYgAAAAADYgAAAAAAZQAAAAAAYgAAAAACYgAAAAADYgAAAAADZQAAAAABfgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADYgAAAAADYgAAAAADZQAAAAAAYgAAAAACYgAAAAABYgAAAAABZQAAAAABYgAAAAABYgAAAAADYgAAAAADZQAAAAABYgAAAAAAZQAAAAACZQAAAAAEZQAAAAADZQAAAAABYgAAAAACYgAAAAAAZQAAAAADZQAAAAACZQAAAAABZQAAAAACZQAAAAAEZQAAAAACZQAAAAAAZQAAAAABZQAAAAACYgAAAAADAQAAAAAAAQAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAAAYgAAAAADAQAAAAAAAQAAAAAAYgAAAAAAYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAADAQAAAAAAAQAAAAAAYgAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAABYgAAAAADYgAAAAACYgAAAAABYgAAAAACZQAAAAADZQAAAAABZQAAAAACZQAAAAADZQAAAAABYgAAAAACZQAAAAAAZQAAAAABZQAAAAAAZQAAAAACZQAAAAACZQAAAAAAZQAAAAABZQAAAAACZQAAAAAEZQAAAAAAAgAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAZQAAAAAEAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAABYgAAAAADYgAAAAADYgAAAAACYgAAAAABYgAAAAADZQAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAABYgAAAAAAYgAAAAACYgAAAAADAgAAAAAAYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAADZQAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADYgAAAAABYgAAAAABYgAAAAABAgAAAAABYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAADZQAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACYgAAAAADYgAAAAABYgAAAAAAAgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAAAZQAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADZQAAAAACZQAAAAADZQAAAAABAgAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAAAYgAAAAACZQAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAABYgAAAAADYgAAAAAAYgAAAAACAgAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAZQAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: BwAAAAAABwAAAAAABAAAAAAAZQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAAEZQAAAAAEYgAAAAABYgAAAAADYgAAAAACZQAAAAADZQAAAAABZQAAAAACBwAAAAAABwAAAAAABwAAAAAAZQAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAADYgAAAAABYgAAAAAAYgAAAAADYgAAAAABYgAAAAADZQAAAAAABQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAYgAAAAAAYgAAAAABYgAAAAACYgAAAAABYgAAAAAAYgAAAAADZQAAAAAEBQAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAYgAAAAADYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAABZQAAAAAABQAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAACZQAAAAAEZQAAAAADZQAAAAAEZQAAAAACZQAAAAADZQAAAAACYgAAAAAAZQAAAAAEZQAAAAAEZQAAAAADZQAAAAACZQAAAAACBwAAAAAABwAAAAAABwAAAAAAZQAAAAABYgAAAAABYgAAAAABDwAAAAAADwAAAAADDwAAAAAADwAAAAABDwAAAAABDwAAAAABDwAAAAADDwAAAAACDwAAAAADDwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAABYgAAAAACYgAAAAADDwAAAAAADwAAAAACDwAAAAADDwAAAAABDwAAAAADDwAAAAAADwAAAAABDwAAAAACDwAAAAADDwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAYgAAAAAAYgAAAAACZQAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAADDwAAAAADDwAAAAAADwAAAAABDwAAAAACDwAAAAADBwAAAAAABwAAAAAABwAAAAAAZQAAAAABYgAAAAABYgAAAAABZQAAAAAAYgAAAAAAZQAAAAAEZQAAAAAEZQAAAAABYgAAAAABYgAAAAACZQAAAAAEYgAAAAACQAAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAABYgAAAAADYgAAAAAAZQAAAAABYgAAAAAAYgAAAAAAZQAAAAACYgAAAAADYgAAAAABYgAAAAACYgAAAAABZQAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAEYgAAAAABYgAAAAACZQAAAAAEYgAAAAADYgAAAAAAYgAAAAACYgAAAAABYgAAAAABYgAAAAAAYgAAAAABZQAAAAACQAAAAAAAYgAAAAACYgAAAAADYgAAAAAAYgAAAAABYgAAAAADYgAAAAABZQAAAAAAYgAAAAADYgAAAAABZQAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAADZQAAAAACYgAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAABYgAAAAAAYgAAAAADZQAAAAAEYgAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAABYgAAAAADYgAAAAADZQAAAAABLwAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAACYgAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAAAZQAAAAAELwAAAAAAYgAAAAADYgAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAABYgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAADYgAAAAACYgAAAAADZQAAAAABYgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAABYgAAAAACYgAAAAADYgAAAAACYgAAAAABfgAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAACZQAAAAABZQAAAAABZQAAAAADZQAAAAAEZQAAAAADZQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAZQAAAAADZQAAAAAAZQAAAAABZQAAAAADZQAAAAADZQAAAAADZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACAgAAAAABAgAAAAAAAgAAAAACAgAAAAAAAgAAAAACAgAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAABAgAAAAAAAgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAABAgAAAAADAgAAAAACAgAAAAABAgAAAAAAAgAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABAgAAAAACAgAAAAADAgAAAAACAgAAAAAAAgAAAAABAgAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABYgAAAAAAAgAAAAADAgAAAAAAAgAAAAAAAgAAAAADAgAAAAACAgAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAgAAAAAAAgAAAAABAgAAAAAAAgAAAAABAgAAAAABAgAAAAACAgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAgAAAAABAgAAAAACAgAAAAABAgAAAAACAgAAAAACAgAAAAABAgAAAAAD + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAD + version: 6 + 1,-1: + ind: 1,-1 + tiles: ZQAAAAAEZQAAAAABZQAAAAADZQAAAAAEZQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABQAAAAAABQAAAAAABQAAAAAAZQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABQAAAAAABQAAAAAABQAAAAAAZQAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAAEZQAAAAAAZQAAAAACYgAAAAAAZQAAAAAAZQAAAAAEZQAAAAACZQAAAAAABQAAAAAABQAAAAAABQAAAAAAZQAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAYgAAAAABYgAAAAADYgAAAAAADgAAAAADDgAAAAABDgAAAAADDgAAAAADBwAAAAAAZQAAAAAEZQAAAAADYgAAAAAAZQAAAAABBwAAAAAAZQAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAABDgAAAAAADgAAAAADDgAAAAABDgAAAAABZQAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAADZQAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADDgAAAAABYgAAAAACYgAAAAACYgAAAAAAYgAAAAADDwAAAAACDwAAAAACDwAAAAACDwAAAAACDwAAAAADZQAAAAAEYgAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAADYgAAAAACYgAAAAACYgAAAAADYgAAAAAADwAAAAADDwAAAAAADwAAAAAADwAAAAABDwAAAAADZQAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAABYgAAAAACYgAAAAABYgAAAAACYgAAAAADYgAAAAABYgAAAAADQAAAAAAAZQAAAAACYgAAAAABZQAAAAACZQAAAAABZQAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAZQAAAAACYgAAAAABYgAAAAABYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAADYgAAAAACYgAAAAAAYgAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAZQAAAAABYgAAAAACYgAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAADYgAAAAADYgAAAAAAYgAAAAABYgAAAAADYgAAAAAAYgAAAAACLwAAAAAAYgAAAAABYgAAAAADYgAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAABYgAAAAADYgAAAAAAYgAAAAAAYgAAAAADYgAAAAACLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAADYgAAAAACYgAAAAACLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAADYgAAAAADYgAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAADYgAAAAAAYgAAAAADYgAAAAABYgAAAAACYgAAAAABYgAAAAABYgAAAAAAYgAAAAADfgAAAAAAfgAAAAACfgAAAAAAfgAAAAABfgAAAAABZQAAAAABYgAAAAADYgAAAAABYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAADYgAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: fgAAAAADfgAAAAACfgAAAAADfgAAAAADfgAAAAACZQAAAAAAYgAAAAADYgAAAAAAYgAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAABYgAAAAADYgAAAAABYgAAAAADfgAAAAACfgAAAAABfgAAAAABfgAAAAAAfgAAAAADZQAAAAADYgAAAAACYgAAAAACYgAAAAABYgAAAAABYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAABYgAAAAADfgAAAAADfgAAAAACfgAAAAACfgAAAAABfgAAAAAAZQAAAAAEYgAAAAACYgAAAAABYgAAAAABYgAAAAABYgAAAAADYgAAAAADYgAAAAABYgAAAAADYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAADYgAAAAAAZQAAAAACZQAAAAAAZQAAAAAEZQAAAAAEZQAAAAADZQAAAAABZQAAAAABZQAAAAADZQAAAAAAZQAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAADYgAAAAACYgAAAAADCwAAAAAACwAAAAAACwAAAAAAYgAAAAACYgAAAAADYgAAAAAAYgAAAAABYgAAAAACYgAAAAADYgAAAAADYgAAAAADYgAAAAADYgAAAAACYgAAAAADYgAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAADYgAAAAACYgAAAAABYgAAAAADYgAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAADYgAAAAADYgAAAAADYgAAAAADYgAAAAADYgAAAAADYgAAAAADYgAAAAADYgAAAAABYgAAAAABDAAAAAABYgAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAABYgAAAAACZQAAAAADAwAAAAADAwAAAAAAZQAAAAABZQAAAAABZQAAAAADZQAAAAADZQAAAAADYgAAAAACYgAAAAAAYgAAAAADZQAAAAAAZQAAAAAAZQAAAAACZQAAAAABZQAAAAADYgAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADYgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAACZQAAAAABAwAAAAADYgAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAYgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAZQAAAAAAAwAAAAABZQAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADZQAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABZQAAAAACAwAAAAACZQAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAAAZQAAAAABYgAAAAADYgAAAAADYgAAAAACAwAAAAABZQAAAAACZQAAAAAAZQAAAAABAwAAAAABZQAAAAAAYgAAAAACAwAAAAADZQAAAAACAwAAAAACAwAAAAACAwAAAAADZQAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABYgAAAAADYgAAAAAAAwAAAAABZQAAAAABYgAAAAABAwAAAAACAwAAAAADZQAAAAADAwAAAAABAwAAAAABYgAAAAAAYgAAAAAAYgAAAAACAwAAAAACAwAAAAABZQAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAYgAAAAACYgAAAAABYgAAAAADAwAAAAAAAwAAAAAAYgAAAAAC + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADAgAAAAABAgAAAAAAAgAAAAADAgAAAAACAgAAAAABAgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAEAgAAAAAAAgAAAAADAgAAAAABAgAAAAABAgAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAACZQAAAAADZQAAAAAEZQAAAAABZQAAAAAAZQAAAAAAZQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: AgAAAAABYgAAAAADYgAAAAACYgAAAAADYgAAAAABYgAAAAABYgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABAgAAAAACZQAAAAADZQAAAAACYgAAAAAAZQAAAAABZQAAAAADZQAAAAACZQAAAAADZQAAAAAAZQAAAAAEZQAAAAACZQAAAAACYgAAAAADZQAAAAACZQAAAAACZQAAAAAEAgAAAAADAgAAAAACAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAADZQAAAAADZQAAAAABZQAAAAAAZQAAAAACZQAAAAACZQAAAAACZQAAAAABZQAAAAADZQAAAAAABwAAAAAAZQAAAAAEZQAAAAAEZQAAAAACZQAAAAABZQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAEYgAAAAABYgAAAAABYgAAAAADYgAAAAADBwAAAAAAYgAAAAABYgAAAAACYgAAAAABYgAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAACYgAAAAABYgAAAAACYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAEDQAAAAACDQAAAAADDQAAAAABYgAAAAACYgAAAAADYgAAAAADYgAAAAADYgAAAAACYgAAAAADYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADDQAAAAACYgAAAAACYgAAAAADYgAAAAABYgAAAAABYgAAAAACYgAAAAADYgAAAAACYgAAAAACYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABYgAAAAADYgAAAAAADQAAAAADDAAAAAACDAAAAAACYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAAAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAACYgAAAAACYgAAAAABYgAAAAADYgAAAAADYgAAAAADYgAAAAADYgAAAAACYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAYgAAAAADDAAAAAABYgAAAAADYgAAAAABYgAAAAACYgAAAAAAYgAAAAAAYgAAAAABYgAAAAADZQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAABYgAAAAACYgAAAAACDAAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAABZQAAAAABAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAYgAAAAACDAAAAAAAZQAAAAABYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACYgAAAAABYgAAAAACZQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAADZQAAAAADYgAAAAABYgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAADZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACYgAAAAABZQAAAAADYgAAAAACYgAAAAABZQAAAAACYgAAAAADYgAAAAABYgAAAAABYgAAAAABYgAAAAAAYgAAAAABZQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAEZQAAAAAAZQAAAAABZQAAAAACYgAAAAACYgAAAAACYgAAAAABYgAAAAADYgAAAAAAYgAAAAACZQAAAAAC + version: 6 + 1,1: + ind: 1,1 + tiles: AwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAADYgAAAAACYgAAAAADYgAAAAADAwAAAAABAwAAAAACYgAAAAADZQAAAAABZQAAAAAEZQAAAAACZQAAAAADZQAAAAABZQAAAAAAZQAAAAACZQAAAAAEZQAAAAAEZQAAAAACZQAAAAAAZQAAAAACZQAAAAAEZQAAAAAAZQAAAAACZQAAAAABBwAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAACYgAAAAADYgAAAAACYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAABYgAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAAAYgAAAAADYgAAAAAAYgAAAAAADAAAAAABYgAAAAACYgAAAAABZQAAAAACZQAAAAACZQAAAAAEZQAAAAAAZQAAAAABZQAAAAAEZQAAAAADYgAAAAACZQAAAAAAZQAAAAADZQAAAAACZQAAAAAEYgAAAAACDAAAAAADYgAAAAACYgAAAAAAZQAAAAAEEAAAAAAAEAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAAAYgAAAAADDAAAAAACYgAAAAACYgAAAAACZQAAAAAEEAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAABYgAAAAABYgAAAAADYgAAAAABYgAAAAACZQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAAEYgAAAAABYgAAAAABYgAAAAABYgAAAAAAZQAAAAAABwAAAAAAEAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAACYgAAAAABYgAAAAACYgAAAAABYgAAAAABZQAAAAAEBwAAAAAAEAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAAEZQAAAAAAZQAAAAAEZQAAAAACZQAAAAACZQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAAAZQAAAAABBwAAAAAAEAAAAAACEAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAAAZQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAAEZQAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAEAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAADZQAAAAACBwAAAAAAEAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAYgAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAYgAAAAADZQAAAAABEAAAAAACEAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAAE + version: 6 + 2,0: + ind: 2,0 + tiles: ZQAAAAAEYgAAAAADYgAAAAAAYgAAAAAAYgAAAAACZQAAAAAAYgAAAAABYgAAAAAAYgAAAAAAZQAAAAADYgAAAAADYgAAAAABYgAAAAABYgAAAAACYgAAAAABZQAAAAAAZQAAAAABYgAAAAADYgAAAAABYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAABZQAAAAAEYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADZQAAAAAAZQAAAAABYgAAAAABYgAAAAABYgAAAAABYgAAAAADYgAAAAADYgAAAAAAZQAAAAABBwAAAAAAZQAAAAABZQAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAABZQAAAAACZQAAAAABZQAAAAACZQAAAAADZQAAAAAEZQAAAAAAZQAAAAAAYgAAAAAAZQAAAAACBwAAAAAABwAAAAAAZQAAAAADYgAAAAACYgAAAAACYgAAAAABYgAAAAAAZQAAAAACYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAADYgAAAAACZQAAAAADZQAAAAABZQAAAAAAZQAAAAABYgAAAAADYgAAAAABYgAAAAACYgAAAAACZQAAAAACYgAAAAADYgAAAAADYgAAAAADYgAAAAABYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAZQAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAADYgAAAAABYgAAAAACZQAAAAAEYgAAAAADYgAAAAACYgAAAAAAYgAAAAAAYgAAAAACYgAAAAABYgAAAAABYgAAAAADZQAAAAACYgAAAAAAYgAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAADYgAAAAACYgAAAAACYgAAAAADYgAAAAACYgAAAAADYgAAAAABYgAAAAADYgAAAAAAYgAAAAAAZQAAAAADYgAAAAAAYgAAAAAAYgAAAAADYgAAAAABYgAAAAADYgAAAAADYgAAAAAAZQAAAAADZQAAAAACZQAAAAAEZQAAAAAEYgAAAAAAYgAAAAABYgAAAAABYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAACYgAAAAABYgAAAAACYgAAAAACYgAAAAAAAwAAAAAAAwAAAAADAwAAAAABZQAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAABZQAAAAABYgAAAAABYgAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAADZQAAAAACAwAAAAADAwAAAAAAAwAAAAADZQAAAAACYgAAAAADYgAAAAABYgAAAAADCwAAAAAAZQAAAAACYgAAAAADYgAAAAABYgAAAAADYgAAAAAAZQAAAAADZQAAAAAAZQAAAAABAwAAAAABAwAAAAABAwAAAAACZQAAAAACCwAAAAAAYgAAAAABYgAAAAAACwAAAAAAZQAAAAABYgAAAAACYgAAAAACYgAAAAABYgAAAAADZQAAAAABYgAAAAABYgAAAAADZQAAAAAEZQAAAAAAZQAAAAAEZQAAAAAEZQAAAAAAYgAAAAADYgAAAAACZQAAAAAAZQAAAAADYgAAAAABYgAAAAADYgAAAAAAYgAAAAABZQAAAAACYgAAAAADYgAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAZQAAAAADYgAAAAACYgAAAAABYgAAAAAAZQAAAAACYgAAAAABYgAAAAACYgAAAAADYgAAAAAAZQAAAAACYgAAAAABYgAAAAABZQAAAAADAwAAAAACAwAAAAADAwAAAAABZQAAAAAAYgAAAAACYgAAAAABYgAAAAADZQAAAAAAZQAAAAAEZQAAAAADZQAAAAACYgAAAAABZQAAAAADYgAAAAADYgAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACZQAAAAAEYgAAAAADYgAAAAABYgAAAAABZQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAAZQAAAAAAZQAAAAADZQAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: AwAAAAABAwAAAAABAwAAAAABAwAAAAACZQAAAAABYgAAAAABYgAAAAAAYgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAZQAAAAABZQAAAAADZQAAAAACZQAAAAABZQAAAAACYgAAAAADYgAAAAABYgAAAAAAZQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAZQAAAAADCwAAAAAACwAAAAAAYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAADYgAAAAADYgAAAAAAYgAAAAADZQAAAAAAZQAAAAAAZQAAAAAEYgAAAAAAZQAAAAABZQAAAAABZQAAAAACZQAAAAACYgAAAAADYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAACYgAAAAADZQAAAAADYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAACZQAAAAABZQAAAAACZQAAAAABYgAAAAACYgAAAAADYgAAAAADZQAAAAAEYgAAAAADYgAAAAACYgAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAAAYgAAAAADZQAAAAAEZQAAAAADYgAAAAABYgAAAAAAYgAAAAABZQAAAAADZQAAAAACZQAAAAACYgAAAAADZQAAAAACYgAAAAACYgAAAAACYgAAAAABYgAAAAACYgAAAAABYgAAAAACZQAAAAAEZQAAAAAEYgAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAABZQAAAAACZQAAAAACZQAAAAABZQAAAAADYgAAAAADYgAAAAAAYgAAAAAAZQAAAAABZQAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAADYgAAAAADYgAAAAACYgAAAAACZQAAAAADZQAAAAAEZQAAAAAAZQAAAAACZQAAAAAEZQAAAAABYgAAAAAAYgAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAADYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAADZQAAAAAEZQAAAAADZQAAAAABZQAAAAAEZQAAAAABZQAAAAACYgAAAAAAYgAAAAABYgAAAAABYgAAAAABDAAAAAADYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAACYgAAAAABYgAAAAABYgAAAAACYgAAAAABZQAAAAAAZQAAAAACZQAAAAACYgAAAAACZQAAAAAAYgAAAAABYgAAAAADYgAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAAAYgAAAAABYgAAAAABYgAAAAAAYgAAAAABZQAAAAAEZQAAAAADYgAAAAABYgAAAAACYgAAAAADYgAAAAADYgAAAAAAYgAAAAAAYgAAAAADYgAAAAADYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAABZQAAAAACZQAAAAACYgAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAADYgAAAAADYgAAAAABYgAAAAABYgAAAAACYgAAAAABZQAAAAAAZQAAAAADYgAAAAABYgAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAADYgAAAAADYgAAAAACYgAAAAACZQAAAAAAZQAAAAACZQAAAAABZQAAAAACZQAAAAAAZQAAAAAEZQAAAAADZQAAAAAAZQAAAAADYgAAAAACYgAAAAACYgAAAAACYgAAAAACYgAAAAABYgAAAAADYgAAAAABZQAAAAACAAAAAAAAZQAAAAAEYgAAAAADYgAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABYgAAAAAAYgAAAAADYgAAAAACYgAAAAADZQAAAAABZQAAAAAEZQAAAAABZQAAAAAEZQAAAAAEZQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABYgAAAAADYgAAAAAAYgAAAAABYgAAAAADZQAAAAABZQAAAAABZQAAAAAAZQAAAAACZQAAAAABZQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAACYgAAAAAAYgAAAAACYgAAAAABYgAAAAACZQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAEZQAAAAADZQAAAAACZQAAAAACBwAAAAAAZQAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAEBwAAAAAAZQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZQAAAAACZQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAZQAAAAAEBwAAAAAAYgAAAAACYgAAAAADZQAAAAABZQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: ZQAAAAAEYgAAAAABYgAAAAAAYgAAAAADYgAAAAABZQAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAADZQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAYgAAAAAAYgAAAAABZQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAYgAAAAABYgAAAAABZQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAADZQAAAAACYgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAYgAAAAAAYgAAAAAAZQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAAEYgAAAAAABwAAAAAAYgAAAAABZQAAAAAEZQAAAAACZQAAAAADZQAAAAADZQAAAAADZQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAADYgAAAAACBwAAAAAAYgAAAAADZQAAAAADYgAAAAABYgAAAAACYgAAAAADYgAAAAACYgAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAYgAAAAADZQAAAAAEYgAAAAACYgAAAAACYgAAAAADYgAAAAABYgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAABYgAAAAACYgAAAAACYgAAAAADZQAAAAACYgAAAAADYgAAAAAAYgAAAAABYgAAAAADYgAAAAABZQAAAAACZQAAAAACZQAAAAAEZQAAAAACZQAAAAABZQAAAAAAZQAAAAADYgAAAAADYgAAAAAAYgAAAAAAZQAAAAABYgAAAAADYgAAAAACYgAAAAADYgAAAAABYgAAAAABZQAAAAADYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAABYgAAAAADZQAAAAACYgAAAAACYgAAAAADYgAAAAACYgAAAAADYgAAAAABZQAAAAAAYgAAAAACYgAAAAADYgAAAAACYgAAAAACYgAAAAADYgAAAAABYgAAAAABYgAAAAAAYgAAAAAAZQAAAAACYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAADZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAABZQAAAAABZQAAAAACZQAAAAABZQAAAAACZQAAAAAEZQAAAAAEZQAAAAADZQAAAAAEZQAAAAADZQAAAAACZQAAAAACZQAAAAAECAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAZQAAAAACZQAAAAADZQAAAAAEZQAAAAABZQAAAAADZQAAAAAAZQAAAAADZQAAAAACZQAAAAAEZQAAAAAEZQAAAAAAZQAAAAAAZQAAAAABZQAAAAABCAAAAAAACAAAAAAAZQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADZQAAAAABZQAAAAADZQAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: YgAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAABYgAAAAACYgAAAAABZQAAAAAEZQAAAAADZQAAAAADYgAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAADYgAAAAABYgAAAAADYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAADYgAAAAAAYgAAAAAAZQAAAAADZQAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAADYgAAAAACYgAAAAADYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAACYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAZQAAAAACZQAAAAAAYgAAAAAAYgAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAABZQAAAAAAYgAAAAAAZQAAAAAEZQAAAAADZQAAAAABZQAAAAABZQAAAAABZQAAAAABZQAAAAACZQAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAACYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAABYgAAAAAAYgAAAAADYgAAAAABYgAAAAADZQAAAAABZQAAAAABYgAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAADZQAAAAAEZQAAAAADYgAAAAACYgAAAAADYgAAAAABYgAAAAADYgAAAAACYgAAAAADYgAAAAADYgAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAADZQAAAAACZQAAAAADYgAAAAABYgAAAAABYgAAAAABYgAAAAABYgAAAAABYgAAAAACYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAZQAAAAADZQAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAADYgAAAAADYgAAAAABYgAAAAACYgAAAAABYgAAAAABYgAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAACZQAAAAABZQAAAAABYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAACZQAAAAAEZQAAAAABYgAAAAABYgAAAAADYgAAAAAAYgAAAAADYgAAAAAAYgAAAAACZQAAAAAAZQAAAAAAZQAAAAABZQAAAAAEZQAAAAACZQAAAAAEZQAAAAAAZQAAAAABZQAAAAADZQAAAAAEZQAAAAADZQAAAAAEZQAAAAACYgAAAAACYgAAAAAAYgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAZQAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZQAAAAAEZQAAAAABZQAAAAACZQAAAAAACAAAAAAACAAAAAAACAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAABZQAAAAAEZQAAAAABZQAAAAAAZQAAAAADZQAAAAADZQAAAAAEZQAAAAABZQAAAAAAZQAAAAABCAAAAAAACAAAAAAACAAAAAAAZQAAAAAAZQAAAAACYgAAAAADCgAAAAAAYgAAAAAACgAAAAAAYgAAAAACCgAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: CwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAZQAAAAAECwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAZQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAZQAAAAACZQAAAAABBwAAAAAAZQAAAAAAZQAAAAACZQAAAAABZQAAAAABZQAAAAACZQAAAAAECQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAZQAAAAAEYgAAAAACBwAAAAAAAgAAAAABAgAAAAABAgAAAAADAgAAAAADAgAAAAABZQAAAAAEZQAAAAACZQAAAAACZQAAAAAAZQAAAAAEZQAAAAAABwAAAAAAZQAAAAADZQAAAAADBwAAAAAABwAAAAAAAgAAAAAAAgAAAAADAgAAAAADAgAAAAACAgAAAAADZQAAAAACAgAAAAACAgAAAAABAgAAAAADAgAAAAACZQAAAAABBwAAAAAABwAAAAAAZQAAAAACYgAAAAADBwAAAAAAAgAAAAAAAgAAAAABAgAAAAABAgAAAAACAgAAAAACZQAAAAACAgAAAAABAgAAAAABAgAAAAACAgAAAAADZQAAAAAEBwAAAAAABwAAAAAAZQAAAAABZQAAAAABBwAAAAAAYgAAAAACYgAAAAACYgAAAAADAgAAAAADAgAAAAACZQAAAAABAgAAAAADAgAAAAADAgAAAAACAgAAAAADZQAAAAAABwAAAAAABwAAAAAAZQAAAAAEZQAAAAAEYgAAAAABYgAAAAACCwAAAAAACwAAAAAAAgAAAAACAgAAAAABZQAAAAAEAgAAAAABAgAAAAAAAgAAAAADAgAAAAACZQAAAAABBwAAAAAABwAAAAAAZQAAAAABYgAAAAABYgAAAAADYgAAAAABCwAAAAAACwAAAAAAAgAAAAADAgAAAAADZQAAAAAAAgAAAAADAgAAAAADAgAAAAACAgAAAAACZQAAAAAEZQAAAAAEBwAAAAAAZQAAAAAEYgAAAAAAYgAAAAABYgAAAAADYgAAAAAACwAAAAAAAgAAAAAAAgAAAAADZQAAAAABAgAAAAAAAgAAAAABAgAAAAADAgAAAAAAAgAAAAADZQAAAAABBwAAAAAAZQAAAAAAZQAAAAAAYgAAAAABYgAAAAABYgAAAAAACwAAAAAAAgAAAAADAgAAAAACZQAAAAADZQAAAAADAgAAAAACZQAAAAACAgAAAAABZQAAAAABZQAAAAADBwAAAAAAZQAAAAADZQAAAAAEZQAAAAABYgAAAAAAYgAAAAACZQAAAAADAgAAAAAAAgAAAAABZQAAAAABZQAAAAAEAgAAAAADZQAAAAACZQAAAAABZQAAAAAEZQAAAAABBwAAAAAAZQAAAAABYgAAAAAAYgAAAAABYgAAAAACYgAAAAACZQAAAAADAgAAAAACAgAAAAAAAgAAAAADAgAAAAAAAgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAABAgAAAAABAgAAAAADZQAAAAADYgAAAAACYgAAAAACYgAAAAADYgAAAAADAgAAAAAAAgAAAAADAgAAAAACAgAAAAAAAgAAAAABAgAAAAAAAgAAAAAAAgAAAAACAgAAAAABAgAAAAABAgAAAAAAZQAAAAADYgAAAAAAYgAAAAADYgAAAAABYgAAAAABAgAAAAACAgAAAAADAgAAAAAAAgAAAAAAAgAAAAABAgAAAAAAAgAAAAADAgAAAAADAgAAAAADAgAAAAABAgAAAAACZQAAAAADYgAAAAAAYgAAAAACYgAAAAACAgAAAAAAAgAAAAACAgAAAAAAAgAAAAAAAgAAAAACAgAAAAAAAgAAAAABAgAAAAACAgAAAAACAgAAAAADAgAAAAABAgAAAAAC + version: 6 + 3,2: + ind: 3,2 + tiles: ZQAAAAAAYgAAAAAAYgAAAAAAYgAAAAACAgAAAAADAgAAAAACAgAAAAACAgAAAAACAgAAAAAAAgAAAAACAgAAAAAAAgAAAAACAgAAAAADAgAAAAABAgAAAAACAgAAAAAAZQAAAAACYgAAAAABYgAAAAACYgAAAAACYgAAAAACAgAAAAADAgAAAAADAgAAAAACAgAAAAADAgAAAAABAgAAAAAAAgAAAAACAgAAAAABAgAAAAACAgAAAAABAgAAAAABZQAAAAACYgAAAAAAYgAAAAABYgAAAAAAYgAAAAABAgAAAAACAgAAAAACAgAAAAACAgAAAAABAgAAAAACAgAAAAACAgAAAAADAgAAAAADAgAAAAABAgAAAAADAgAAAAABZQAAAAACYgAAAAAAYgAAAAADYgAAAAABZQAAAAADZQAAAAAAZQAAAAAEZQAAAAABZQAAAAAEZQAAAAAAZQAAAAADZQAAAAAAZQAAAAADZQAAAAACZQAAAAAAZQAAAAADZQAAAAADYgAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAADYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAAACwAAAAAAYgAAAAADYgAAAAABZQAAAAAECAAAAAAAZQAAAAAEYgAAAAABYgAAAAABYgAAAAABYgAAAAADYgAAAAABYgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYgAAAAAAYgAAAAACZQAAAAAECAAAAAAAZQAAAAAAZQAAAAACZQAAAAABZQAAAAAEZQAAAAABBwAAAAAAZQAAAAACZQAAAAABCwAAAAAACwAAAAAACwAAAAAAZQAAAAACYgAAAAAAYgAAAAAAZQAAAAADCAAAAAAAZQAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAAACwAAAAAACwAAAAAACwAAAAAAZQAAAAACYgAAAAABYgAAAAABZQAAAAAECAAAAAAAZQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAAECwAAAAAACwAAAAAACwAAAAAAZQAAAAAEYgAAAAABYgAAAAACZQAAAAABCAAAAAAAZQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAAEZQAAAAACZQAAAAABZQAAAAAAZQAAAAAEYgAAAAABYgAAAAADZQAAAAABCAAAAAAAZQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAAEZQAAAAAAZQAAAAABZQAAAAAAZQAAAAAAYgAAAAACYgAAAAADZQAAAAAACAAAAAAAZQAAAAADZQAAAAACZQAAAAABZQAAAAABZQAAAAACZQAAAAABZQAAAAABZQAAAAADCAAAAAAAZQAAAAACZQAAAAABYgAAAAAAYgAAAAAAYgAAAAABZQAAAAACCAAAAAAAZQAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAZQAAAAAEYgAAAAACYgAAAAABYgAAAAACYgAAAAAAZQAAAAABBwAAAAAAZQAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAZQAAAAAAYgAAAAABYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAADBwAAAAAAZQAAAAAEZQAAAAACZQAAAAAEZQAAAAACZQAAAAAECAAAAAAACAAAAAAACAAAAAAACAAAAAAAZQAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAACYgAAAAADBwAAAAAAYgAAAAABCgAAAAAAYgAAAAAAZQAAAAAEZQAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAZQAAAAACYgAAAAACYgAAAAABYgAAAAABYgAAAAABYgAAAAABZQAAAAAB + version: 6 + 2,-1: + ind: 2,-1 + tiles: ZQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAABYgAAAAAAYgAAAAAAYgAAAAABYgAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAAYgAAAAABYgAAAAAAYgAAAAAAYgAAAAABZQAAAAABBAAAAAAAZQAAAAAEZQAAAAABZQAAAAADZQAAAAAEZQAAAAAAZQAAAAAEZQAAAAAAZQAAAAACZQAAAAADZQAAAAADYgAAAAABZQAAAAABYgAAAAACYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAADgAAAAADDgAAAAAADgAAAAABDgAAAAAAYgAAAAABYgAAAAACYgAAAAABYgAAAAAAYgAAAAADZQAAAAAAYgAAAAABYgAAAAAAZQAAAAAEBAAAAAAAZQAAAAADZQAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAACYgAAAAACZQAAAAAEYgAAAAADZQAAAAAEYgAAAAABYgAAAAAAYgAAAAAAYgAAAAADYgAAAAADYgAAAAABDgAAAAADYgAAAAABYgAAAAAAYgAAAAADDgAAAAAADgAAAAADDgAAAAACZQAAAAAACwAAAAAAZQAAAAABYgAAAAABYgAAAAACYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAABYgAAAAAAYgAAAAAADgAAAAABDgAAAAABDgAAAAABZQAAAAACCwAAAAAAZQAAAAADYgAAAAACYgAAAAADYgAAAAACYgAAAAACZQAAAAACZQAAAAACZQAAAAACZQAAAAACZQAAAAADZQAAAAADZQAAAAAEZQAAAAACZQAAAAABZQAAAAADCwAAAAAAZQAAAAACYgAAAAAAYgAAAAABYgAAAAAAYgAAAAADZQAAAAABYgAAAAADYgAAAAACYgAAAAADYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAABZQAAAAAACwAAAAAAZQAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAABZQAAAAAECwAAAAAAZQAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAADZQAAAAAEYgAAAAABYgAAAAABYgAAAAAAYgAAAAABYgAAAAADYgAAAAAAYgAAAAACYgAAAAACZQAAAAACCwAAAAAAZQAAAAABYgAAAAAAYgAAAAADYgAAAAAAYgAAAAAAZQAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAAAZQAAAAABCwAAAAAAZQAAAAACZQAAAAADZQAAAAAEYgAAAAADZQAAAAACZQAAAAAAZQAAAAABZQAAAAACZQAAAAAAZQAAAAADZQAAAAAAZQAAAAADZQAAAAABZQAAAAAEZQAAAAAECwAAAAAAZQAAAAAEZQAAAAAEYgAAAAADYgAAAAAAYgAAAAADYgAAAAAAZQAAAAAEYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAACZQAAAAAAZQAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAABYgAAAAACZQAAAAAAZQAAAAABZQAAAAACZQAAAAADZQAAAAACZQAAAAAAZQAAAAACZQAAAAAEYgAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAACZQAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAABYgAAAAADZQAAAAAD + version: 6 + 2,-2: + ind: 2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADYgAAAAABYgAAAAADYgAAAAABYgAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAZQAAAAACZQAAAAAEZQAAAAAAZQAAAAADZQAAAAABZQAAAAAEYgAAAAABYgAAAAADCwAAAAAAYgAAAAAD + version: 6 + 3,-1: + ind: 3,-1 + tiles: YgAAAAABCwAAAAAABwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACwAAAAAACAAAAAAACwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAYgAAAAAACwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAACAAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAYgAAAAAAYgAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAACAAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAYgAAAAACYgAAAAAAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAACAAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAYgAAAAAAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAACZQAAAAABZQAAAAAEYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAZQAAAAAEBwAAAAAAZQAAAAADBwAAAAAAZQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAEYgAAAAACYgAAAAAAZQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAADBwAAAAAAYgAAAAACBwAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAAAZQAAAAAEYgAAAAACYgAAAAAAZQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAADBwAAAAAAYgAAAAACBwAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAAAYgAAAAAB + version: 6 + 3,-2: + ind: 3,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAACYgAAAAACZQAAAAADCAAAAAAAZQAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAYgAAAAACYgAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: YgAAAAAAYgAAAAAAYgAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAAEYgAAAAABYgAAAAACYgAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYgAAAAAAYgAAAAACZQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAAEYgAAAAABCwAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAABYgAAAAACCwAAAAAAYgAAAAABYgAAAAABZQAAAAACYgAAAAABYgAAAAADYgAAAAABYgAAAAAAZQAAAAACYgAAAAAAYgAAAAADCwAAAAAAYgAAAAABYgAAAAAAYgAAAAABCwAAAAAACwAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAABYgAAAAACYgAAAAAAYgAAAAABZQAAAAACZQAAAAACZQAAAAACCwAAAAAAZQAAAAABZQAAAAABZQAAAAAEZQAAAAADZQAAAAADYgAAAAADYgAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAZQAAAAACZQAAAAAECwAAAAAAZQAAAAADYgAAAAADYgAAAAACYgAAAAABZQAAAAABYgAAAAACYgAAAAABYgAAAAADYgAAAAABYgAAAAACYgAAAAABYgAAAAABYgAAAAACZQAAAAAEZQAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAACZQAAAAABYgAAAAADYgAAAAABYgAAAAABYgAAAAADYgAAAAABYgAAAAADYgAAAAABYgAAAAAAYgAAAAADYgAAAAADYgAAAAADYgAAAAACYgAAAAABYgAAAAABYgAAAAAAZQAAAAADYgAAAAAAYgAAAAADYgAAAAADYgAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAZQAAAAABZQAAAAABYgAAAAADYgAAAAAAYgAAAAACYgAAAAACYgAAAAACZQAAAAACYgAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAACYgAAAAADYgAAAAACYgAAAAABZQAAAAABYgAAAAADYgAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAADZQAAAAACYgAAAAACYgAAAAAAYgAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAAAYgAAAAADZQAAAAAEYgAAAAACYgAAAAACCwAAAAAAYgAAAAACYgAAAAADYgAAAAACZQAAAAAAZQAAAAAEZQAAAAACYgAAAAAAZQAAAAAEZQAAAAAAZQAAAAADZQAAAAAAZQAAAAACZQAAAAABYgAAAAABYgAAAAACZQAAAAACYgAAAAAAYgAAAAACYgAAAAABZQAAAAAEYgAAAAABYgAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAABYgAAAAAAZQAAAAABZQAAAAACYgAAAAACYgAAAAACZQAAAAACZQAAAAAEZQAAAAADZQAAAAAEZQAAAAAAYgAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAADYgAAAAABYgAAAAAAZQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAZQAAAAACYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAAAYgAAAAACYgAAAAACZQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAZQAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAABYgAAAAABYgAAAAADYgAAAAABZQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAZQAAAAACZQAAAAAAZQAAAAACZQAAAAACZQAAAAADZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAZQAAAAAD + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAACAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAACZQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAEYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAACYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: CAAAAAAACAAAAAAAZQAAAAAEZQAAAAADZQAAAAAAZQAAAAAAZQAAAAABZQAAAAABZQAAAAAAZQAAAAABZQAAAAAEZQAAAAAEZQAAAAACZQAAAAABCwAAAAAAZQAAAAAECAAAAAAACAAAAAAAZQAAAAABYgAAAAABZQAAAAAEZQAAAAABZQAAAAADYgAAAAACZQAAAAACZQAAAAADZQAAAAAAYgAAAAAACwAAAAAAZQAAAAABCwAAAAAAZQAAAAADCAAAAAAACAAAAAAAZQAAAAABYgAAAAAAYgAAAAACCwAAAAAAZQAAAAADYgAAAAAAYgAAAAAAYgAAAAAAZQAAAAAAYgAAAAABYgAAAAAAYgAAAAAACwAAAAAACwAAAAAACAAAAAAACAAAAAAAZQAAAAACYgAAAAADZQAAAAACCwAAAAAAZQAAAAADYgAAAAADZQAAAAADYgAAAAACZQAAAAAEYgAAAAAAZQAAAAABZQAAAAACCwAAAAAACwAAAAAACAAAAAAACAAAAAAAZQAAAAACYgAAAAADZQAAAAABCwAAAAAAZQAAAAACYgAAAAACZQAAAAABYgAAAAAAZQAAAAAACwAAAAAAZQAAAAADZQAAAAAACwAAAAAACwAAAAAACAAAAAAACAAAAAAAZQAAAAAEYgAAAAABZQAAAAABYgAAAAABZQAAAAACYgAAAAAAZQAAAAACYgAAAAADZQAAAAAECwAAAAAAZQAAAAACZQAAAAADCwAAAAAACwAAAAAACAAAAAAACAAAAAAAZQAAAAAAYgAAAAAAZQAAAAACCwAAAAAAZQAAAAAAYgAAAAABZQAAAAAAYgAAAAACZQAAAAABCwAAAAAAZQAAAAAAZQAAAAADCwAAAAAACwAAAAAACAAAAAAACAAAAAAAZQAAAAAAYgAAAAABZQAAAAAEYgAAAAADZQAAAAAAYgAAAAAAZQAAAAADYgAAAAACZQAAAAADCwAAAAAAZQAAAAAAZQAAAAAAZQAAAAABYgAAAAAAZQAAAAADZQAAAAADZQAAAAAAYgAAAAACZQAAAAABYgAAAAADCwAAAAAACwAAAAAAZQAAAAAEYgAAAAACYgAAAAADYgAAAAACZQAAAAACZQAAAAAEZQAAAAADZQAAAAABYgAAAAAAYgAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAADZQAAAAAAZQAAAAADZQAAAAABYgAAAAACZQAAAAAEZQAAAAAAZQAAAAAEZQAAAAABZQAAAAADZQAAAAACZQAAAAACYgAAAAABZQAAAAAAZQAAAAADZQAAAAAAZQAAAAAEZQAAAAADZQAAAAAAZQAAAAADZQAAAAABZQAAAAAAZQAAAAABZQAAAAADZQAAAAABZQAAAAADZQAAAAABZQAAAAABZQAAAAABZQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAZQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,0: + ind: 4,0 + tiles: CwAAAAAACwAAAAAACwAAAAAAZQAAAAADCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACYgAAAAADYgAAAAABZQAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAACZQAAAAAEZQAAAAABZQAAAAAECAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAECAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-1: + ind: 4,-1 + tiles: CwAAAAAACAAAAAAACwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACAAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACAAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACAAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAZQAAAAADBwAAAAAAZQAAAAABCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAZQAAAAACBwAAAAAAZQAAAAABCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAYgAAAAADBwAAAAAAZQAAAAAECAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-2: + ind: 4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,1: + ind: 4,1 + tiles: CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,2: + ind: 4,2 + tiles: BwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,3: + ind: 3,3 + tiles: YgAAAAAACgAAAAAAYgAAAAAAZQAAAAADZQAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAZQAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAABYgAAAAACZQAAAAACCgAAAAAACgAAAAAACgAAAAAAZQAAAAABZQAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAZQAAAAABYgAAAAADYgAAAAACYgAAAAADYgAAAAADYgAAAAACZQAAAAADYgAAAAADYgAAAAACCgAAAAAAZQAAAAABZQAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAZQAAAAABYgAAAAACYgAAAAADYgAAAAAAYgAAAAACYgAAAAACZQAAAAABYgAAAAAAYgAAAAAACgAAAAAAZQAAAAAEZQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAZQAAAAABYgAAAAADYgAAAAADYgAAAAADYgAAAAADYgAAAAACBwAAAAAAYgAAAAACYgAAAAACYgAAAAAAZQAAAAABZQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAZQAAAAAEYgAAAAADYgAAAAADYgAAAAAAYgAAAAACYgAAAAADBwAAAAAAZQAAAAADZQAAAAABZQAAAAAAZQAAAAABZQAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAZQAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAACZQAAAAAEBwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAZQAAAAABZQAAAAAAYgAAAAABYgAAAAABYgAAAAAAZQAAAAABAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAZQAAAAADZQAAAAABBwAAAAAAYgAAAAAAZQAAAAAEAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAZQAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAAEAAAAAAAAZQAAAAAAZQAAAAAEZQAAAAACZQAAAAABZQAAAAAAZQAAAAABZQAAAAADZQAAAAAAZQAAAAACZQAAAAAAZQAAAAADZQAAAAABBwAAAAAABwAAAAAAZQAAAAAEAAAAAAAAZQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAZQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAZQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAABZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAZQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAZQAAAAADCAAAAAAACAAAAAAA + version: 6 + 4,3: + ind: 4,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,4: + ind: 3,4 + tiles: AAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAACAAAAAAAAAAAAAAACAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAACAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAACAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,4: + ind: 4,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,3: + ind: 2,3 + tiles: YgAAAAABYgAAAAAAYgAAAAAAZQAAAAAEZQAAAAACCAAAAAAACAAAAAAACAAAAAAAZQAAAAAEZQAAAAAAYgAAAAABCgAAAAAAYgAAAAAACgAAAAAAYgAAAAAACgAAAAAAZQAAAAADYgAAAAACZQAAAAABZQAAAAAAZQAAAAABYgAAAAADCAAAAAAAYgAAAAACZQAAAAADZQAAAAACCgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAACwAAAAAACwAAAAAAZQAAAAACZQAAAAAEYgAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAADCgAAAAAAYgAAAAAAYgAAAAACCwAAAAAACwAAAAAACwAAAAAAZQAAAAAAZQAAAAAAYgAAAAAACAAAAAAAYgAAAAABZQAAAAACZQAAAAACYgAAAAAAYgAAAAAAYgAAAAAACgAAAAAAYgAAAAADYgAAAAADCwAAAAAACwAAAAAACwAAAAAAZQAAAAAAZQAAAAABYgAAAAACCAAAAAAACAAAAAAAZQAAAAACZQAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAACYgAAAAACCwAAAAAACwAAAAAACwAAAAAAZQAAAAAAZQAAAAABYgAAAAABZQAAAAAACAAAAAAAZQAAAAACZQAAAAAEZQAAAAABZQAAAAADZQAAAAABZQAAAAABZQAAAAABZQAAAAACCwAAAAAACwAAAAAACwAAAAAAYgAAAAACYgAAAAABYgAAAAADZQAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAZQAAAAAEYgAAAAABZQAAAAADZQAAAAABZQAAAAADZQAAAAAEZQAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAZQAAAAAAZQAAAAABZQAAAAAEZQAAAAABZQAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAZQAAAAACZQAAAAAEZQAAAAACZQAAAAABZQAAAAABZQAAAAACZQAAAAADZQAAAAAAZQAAAAABZQAAAAAAZQAAAAAAZQAAAAABZQAAAAABZQAAAAAAZQAAAAACZQAAAAAEZQAAAAACZQAAAAABZQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAZQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: BecomesStation + id: Relic + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 352: 26,7 + 353: 27,7 + 354: 28,7 + 358: 17,22 + 359: 17,21 + 360: 17,20 + 361: 18,21 + 362: 19,21 + 363: 19,20 + 364: 46,7 + 365: 46,6 + 366: 35,40 + 367: 35,41 + 368: 35,42 + 369: 33,42 + 370: 33,41 + 371: 33,40 + 372: 9,24 + 373: 10,24 + 374: 11,24 + 375: 12,24 + 376: 9,22 + 377: 10,22 + 378: 11,22 + 379: 12,22 + 381: 25,7 + 536: 45,25 + 537: 44,25 + 538: 43,25 + - node: + color: '#334E6DC8' + id: BrickCornerOverlayNE + decals: + 512: 52,26 + - node: + color: '#52B4E996' + id: BrickCornerOverlayNE + decals: + 19: 17,14 + - node: + color: '#A4610696' + id: BrickCornerOverlayNE + decals: + 121: 19,25 + - node: + color: '#D4D4D428' + id: BrickCornerOverlayNE + decals: + 410: 39,11 + - node: + color: '#D4D4D496' + id: BrickCornerOverlayNE + decals: + 190: 35,-5 + - node: + color: '#334E6DC8' + id: BrickCornerOverlayNW + decals: + 502: 49,37 + 511: 49,26 + 529: 41,25 + 530: 37,23 + - node: + color: '#52B4E996' + id: BrickCornerOverlayNW + decals: + 18: 13,14 + - node: + color: '#D4D4D428' + id: BrickCornerOverlayNW + decals: + 414: 36,11 + 416: 37,23 + 440: 22,7 + - node: + color: '#334E6DC8' + id: BrickCornerOverlaySE + decals: + 525: 52,23 + - node: + color: '#52B4E996' + id: BrickCornerOverlaySE + decals: + 10: 28,14 + - node: + color: '#D4D4D428' + id: BrickCornerOverlaySE + decals: + 412: 39,13 + 415: 39,5 + 424: 47,23 + - node: + color: '#D4D4D496' + id: BrickCornerOverlaySE + decals: + 185: 36,-3 + 543: 34,21 + 567: 55,4 + - node: + color: '#334E6DC8' + id: BrickCornerOverlaySW + decals: + 503: 49,29 + 526: 49,23 + - node: + color: '#52B4E996' + id: BrickCornerOverlaySW + decals: + 9: 26,14 + 82: 13,10 + - node: + color: '#9FED5896' + id: BrickCornerOverlaySW + decals: + 256: 4,-11 + - node: + color: '#A4610696' + id: BrickCornerOverlaySW + decals: + 129: 17,18 + - node: + color: '#D4D4D428' + id: BrickCornerOverlaySW + decals: + 441: 22,4 + - node: + color: '#D4D4D496' + id: BrickCornerOverlaySW + decals: + 551: 25,21 + - node: + color: '#DE3A3A96' + id: BrickCornerOverlaySW + decals: + 117: 38,-3 + - node: + color: '#334E6DC8' + id: BrickLineOverlayE + decals: + 504: 51,35 + 505: 51,34 + 506: 51,33 + 507: 51,30 + 508: 51,29 + 509: 51,28 + 510: 51,27 + 527: 52,25 + 528: 52,24 + - node: + color: '#52B4E996' + id: BrickLineOverlayE + decals: + 13: 28,15 + 14: 28,16 + 27: 18,8 + - node: + color: '#9FED5896' + id: BrickLineOverlayE + decals: + 244: 5,4 + 245: 5,3 + 246: 5,2 + 247: 5,1 + 248: 5,0 + 249: 5,-3 + 250: 5,-4 + 251: 5,-5 + 252: 5,-6 + 253: 5,-8 + 254: 5,-7 + 255: 5,-9 + - node: + color: '#A4610696' + id: BrickLineOverlayE + decals: + 137: 19,20 + 138: 19,21 + 139: 19,22 + 140: 19,23 + 141: 19,24 + - node: + color: '#D381C996' + id: BrickLineOverlayE + decals: + 408: 39,7 + 409: 39,9 + - node: + color: '#D4D4D428' + id: BrickLineOverlayE + decals: + 394: 38,4 + 396: 39,6 + 399: 39,10 + 401: 39,14 + 402: 39,15 + 403: 39,17 + 404: 39,19 + 405: 39,18 + 406: 39,20 + 407: 39,21 + 411: 38,12 + 420: 43,22 + - node: + color: '#D4D4D496' + id: BrickLineOverlayE + decals: + 183: 36,0 + 200: 44,13 + 201: 44,12 + 544: 34,22 + 545: 34,23 + 546: 34,24 + 547: 27,21 + 548: 27,22 + 549: 27,23 + 550: 27,24 + 561: 55,7 + 562: 55,8 + 563: 55,9 + 566: 55,5 + 568: 54,3 + - node: + color: '#334E6DC8' + id: BrickLineOverlayN + decals: + 483: 46,25 + 484: 47,25 + 485: 48,25 + 486: 50,37 + 487: 51,37 + 488: 52,37 + 489: 54,37 + 490: 55,37 + 531: 38,23 + 532: 39,23 + 533: 40,23 + - node: + color: '#3EB38896' + id: BrickLineOverlayN + decals: + 455: 29,19 + 456: 28,19 + 457: 25,19 + 458: 26,19 + - node: + color: '#52B4E996' + id: BrickLineOverlayN + decals: + 15: 14,14 + 16: 15,14 + 17: 16,14 + 20: 15,7 + 21: 16,7 + 25: 19,7 + 26: 20,7 + 109: 13,16 + 110: 14,16 + 111: 11,16 + 112: 10,16 + - node: + color: '#9FED5896' + id: BrickLineOverlayN + decals: + 83: 14,7 + 84: 13,7 + 85: 12,7 + 86: 11,7 + 87: 9,7 + 88: 10,7 + 89: 8,7 + 90: 7,7 + 91: 6,7 + 92: 4,7 + 93: 3,7 + - node: + color: '#A4610696' + id: BrickLineOverlayN + decals: + 122: 18,25 + 123: 17,25 + 134: 21,19 + 135: 20,19 + 459: 22,19 + 460: 23,19 + 461: 24,19 + - node: + color: '#D4D4D428' + id: BrickLineOverlayN + decals: + 205: 23,7 + 208: 26,7 + 209: 27,7 + 210: 28,7 + 211: 29,7 + 212: 30,7 + 213: 31,7 + 214: 32,7 + 215: 33,7 + 216: 34,7 + 217: 35,7 + 382: 24,7 + - node: + color: '#D4D4D496' + id: BrickLineOverlayN + decals: + 188: 33,-5 + 189: 32,-5 + 202: 43,13 + 294: 36,-1 + 295: 35,-1 + 556: 41,8 + 557: 42,8 + 558: 43,8 + - node: + color: '#EFB34196' + id: BrickLineOverlayN + decals: + 177: 34,19 + 178: 35,19 + 453: 31,19 + 454: 30,19 + 477: 36,19 + - node: + color: '#334E6DC8' + id: BrickLineOverlayS + decals: + 491: 55,36 + 492: 54,36 + 493: 53,36 + 494: 52,36 + 522: 48,24 + 523: 50,23 + 524: 51,23 + - node: + color: '#52B4E996' + id: BrickLineOverlayS + decals: + 3: 27,14 + 80: 15,10 + 81: 14,10 + - node: + color: '#9FED5896' + id: BrickLineOverlayS + decals: + 235: 6,5 + 236: 7,5 + 237: 8,5 + 238: 9,5 + 239: 10,5 + 240: 11,5 + 241: 12,5 + 242: 13,5 + 257: 5,-11 + - node: + color: '#A4610696' + id: BrickLineOverlayS + decals: + 130: 18,18 + 131: 19,18 + 132: 20,18 + 133: 21,18 + 462: 22,18 + 463: 23,18 + 464: 24,18 + 465: 25,18 + 466: 26,18 + 467: 27,18 + 468: 28,18 + 469: 29,18 + 470: 30,18 + 471: 31,18 + 472: 32,18 + 473: 33,18 + 474: 34,18 + 475: 35,18 + 476: 36,18 + - node: + color: '#D4D4D428' + id: BrickLineOverlayS + decals: + 220: 23,4 + 221: 24,4 + 222: 25,4 + 223: 26,4 + 224: 27,4 + 225: 28,4 + 226: 29,4 + 227: 30,4 + 228: 31,4 + 229: 32,4 + 230: 33,4 + 231: 34,4 + 232: 35,4 + 233: 36,4 + 234: 37,4 + 417: 40,22 + 418: 41,22 + 419: 42,22 + 421: 44,23 + 422: 45,23 + 423: 46,23 + - node: + color: '#D4D4D496' + id: BrickLineOverlayS + decals: + 186: 35,-3 + 191: 23,15 + 192: 20,15 + 193: 19,15 + 555: 26,21 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayS + decals: + 118: 39,-3 + - node: + color: '#334E6DC8' + id: BrickLineOverlayW + decals: + 495: 49,36 + 496: 49,35 + 497: 49,34 + 498: 49,33 + 499: 49,32 + 500: 49,31 + 501: 49,30 + 515: 50,27 + 516: 50,28 + 534: 41,24 + - node: + color: '#52B4E996' + id: BrickLineOverlayW + decals: + 11: 26,15 + 12: 26,16 + 22: 17,8 + 70: 13,12 + 77: 13,11 + - node: + color: '#9FED5896' + id: BrickLineOverlayW + decals: + 94: 4,4 + 95: 4,3 + 96: 4,2 + 97: 4,-10 + 98: 4,-9 + 99: 4,-8 + 100: 4,-7 + 101: 4,-6 + 102: 4,-5 + 103: 4,-4 + 104: 4,-3 + 105: 4,-2 + 106: 4,-1 + 107: 4,0 + 108: 4,1 + - node: + color: '#A4610696' + id: BrickLineOverlayW + decals: + 124: 17,23 + 125: 17,22 + 126: 17,21 + 127: 17,20 + 128: 17,19 + - node: + color: '#D4D4D428' + id: BrickLineOverlayW + decals: + 383: 36,8 + 384: 36,9 + 385: 36,10 + 386: 37,13 + 387: 37,14 + 388: 37,15 + 389: 37,16 + 390: 37,17 + 391: 37,20 + 392: 37,21 + 393: 37,22 + 450: 37,12 + - node: + color: '#D4D4D496' + id: BrickLineOverlayW + decals: + 195: 24,14 + 196: 41,7 + 197: 41,6 + 198: 41,9 + 199: 41,10 + 539: 32,24 + 540: 32,23 + 541: 32,22 + 542: 32,21 + 552: 25,22 + 553: 25,23 + 554: 25,24 + 559: 44,13 + 560: 44,12 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayW + decals: + 119: 38,0 + 120: 38,1 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 331: 62,12 + 332: 61,12 + 333: 62,13 + 334: 62,14 + 335: 61,13 + 336: 62,18 + 337: 57,18 + 340: 59,18 + 341: 59,17 + 342: 58,18 + 343: 56,16 + 344: 57,16 + 345: 58,16 + 346: 58,15 + 347: 58,14 + 348: 58,13 + 349: 58,12 + 350: 57,15 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 30: 8,12 + 31: 8,11 + 32: 8,10 + 33: 8,9 + 38: 8,13 + 39: 10,10 + 40: 10,9 + - node: + color: '#D4D4D428' + id: FullTileOverlayGreyscale + decals: + 259: 22,5 + 260: 22,6 + 261: 23,6 + 262: 23,5 + 263: 24,6 + 265: 24,5 + 266: 25,5 + 267: 26,6 + 268: 26,5 + 269: 27,5 + 272: 28,5 + 273: 29,5 + 277: 31,5 + 278: 30,5 + 279: 32,5 + 280: 33,5 + 283: 34,5 + 284: 35,5 + 285: 35,6 + 286: 34,6 + 287: 36,5 + 288: 37,5 + 289: 37,6 + 290: 36,6 + 291: 38,6 + 292: 38,7 + 293: 37,7 + 432: 25,6 + 433: 27,6 + 434: 28,6 + 435: 29,6 + 436: 30,6 + 437: 31,6 + 438: 32,6 + 439: 33,6 + 442: 37,8 + 443: 38,8 + 444: 38,9 + 445: 37,9 + 446: 37,10 + 447: 38,10 + 451: 37,11 + 452: 38,11 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale + decals: + 296: 21,5 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale180 + decals: + 297: 21,6 + - node: + color: '#334E6DC8' + id: MiniTileInnerOverlayNE + decals: + 513: 51,26 + - node: + color: '#52B4E996' + id: MiniTileInnerOverlayNE + decals: + 24: 18,7 + - node: + color: '#A4610696' + id: MiniTileInnerOverlayNE + decals: + 136: 19,19 + - node: + color: '#334E6DC8' + id: MiniTileInnerOverlayNW + decals: + 514: 50,26 + 519: 49,25 + 535: 41,23 + - node: + color: '#52B4E996' + id: MiniTileInnerOverlayNW + decals: + 23: 17,7 + - node: + color: '#D4D4D428' + id: MiniTileInnerOverlayNW + decals: + 430: 36,7 + - node: + color: '#EFB34196' + id: MiniTileInnerOverlayNW + decals: + 478: 37,19 + - node: + color: '#334E6DC8' + id: MiniTileInnerOverlaySE + decals: + 518: 51,36 + 520: 47,24 + - node: + color: '#9FED5896' + id: MiniTileInnerOverlaySE + decals: + 258: 5,5 + - node: + color: '#D4D4D428' + id: MiniTileInnerOverlaySE + decals: + 425: 43,23 + 426: 39,22 + 427: 38,13 + 428: 38,5 + - node: + color: '#D4D4D496' + id: MiniTileInnerOverlaySE + decals: + 569: 54,4 + - node: + color: '#334E6DC8' + id: MiniTileInnerOverlaySW + decals: + 517: 50,29 + 521: 49,24 + - node: + color: '#A4610696' + id: MiniTileInnerOverlaySW + decals: + 479: 37,18 + - node: + color: '#D4D4D496' + id: MiniTileInnerOverlaySW + decals: + 194: 24,15 + - node: + color: '#52B4E996' + id: PavementVerticalCheckerAOverlay + decals: + 53: 7,13 + 54: 7,12 + 55: 7,11 + 56: 7,10 + 57: 7,9 + 58: 9,13 + 59: 9,12 + 60: 9,11 + 61: 9,10 + 62: 9,9 + 63: 11,9 + 64: 11,10 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 74: 31,9 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 72: 32,11 + 76: 33,9 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 73: 34,9 + 75: 34,11 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 7 + 0,-1: + 0: 65399 + 0,1: + 0: 64496 + -1,1: + 0: 65520 + 0,2: + 0: 53712 + -1,2: + 0: 65520 + 0,3: + 0: 56797 + -1,3: + 0: 65535 + 0,4: + 0: 3997 + 1,0: + 0: 47931 + 1,1: + 0: 65523 + 1,2: + 0: 47280 + 1,3: + 0: 48059 + 1,-1: + 0: 65459 + 1,4: + 0: 3855 + 2,0: + 0: 47919 + 2,1: + 0: 65520 + 2,2: + 0: 65520 + 2,3: + 0: 65535 + 2,-1: + 0: 65520 + 2,4: + 0: 20239 + 3,0: + 0: 15275 + 3,1: + 0: 49144 + 3,2: + 0: 65520 + 3,3: + 0: 65311 + 3,-1: + 0: 62256 + 2: 136 + 3,4: + 0: 3871 + 4,0: + 0: 36863 + 4,1: + 0: 65535 + 4,3: + 0: 63310 + 0,-4: + 0: 30192 + 0,-5: + 1: 61440 + 0,-3: + 0: 63092 + -1,-3: + 0: 192 + 1: 13107 + 0,-2: + 0: 7 + 1,-4: + 0: 65520 + 1,-3: + 0: 49136 + 1,-2: + 0: 48059 + 1,-5: + 1: 12288 + 0: 32768 + 2,-4: + 0: 65248 + 2,-3: + 0: 65524 + 2,-2: + 0: 57304 + 2,-5: + 1: 57344 + 3,-4: + 0: 48048 + 3,-3: + 0: 65520 + 3,-2: + 0: 15289 + 3,-5: + 1: 61440 + 4,-4: + 0: 30576 + 4,-3: + 0: 65524 + 4,-2: + 0: 36853 + 4,-1: + 2: 255 + 0: 61440 + -2,3: + 0: 61165 + -2,2: + 0: 61152 + -2,0: + 1: 8738 + -2,-1: + 1: 11818 + -2,1: + 0: 52416 + -2,-4: + 1: 43562 + -2,-5: + 1: 43566 + -2,-3: + 1: 43694 + 0: 64 + -2,-2: + 1: 43562 + -1,-4: + 1: 13075 + -1,-2: + 1: 13079 + -1,-1: + 1: 1811 + -1,-5: + 1: 48031 + 4,-5: + 1: 61440 + 5,-4: + 0: 48112 + 5,-3: + 0: 54737 + 5,-2: + 0: 52700 + 5,-1: + 2: 17 + 0: 7372 + 5,-5: + 1: 61440 + 5,0: + 0: 3549 + 6,-4: + 0: 41712 + 6,-3: + 0: 20154 + 6,-2: + 0: 21845 + 6,-1: + 0: 36180 + 6,-5: + 1: 61440 + 6,0: + 0: 4095 + 7,-4: + 0: 28912 + 7,-3: + 0: 12163 + 7,-2: + 0: 46079 + 7,-1: + 0: 12171 + 7,-5: + 1: 61440 + 7,0: + 0: 3822 + 8,-4: + 0: 240 + 8,-3: + 0: 53104 + 8,-2: + 0: 64735 + 4,2: + 0: 61158 + 4,4: + 0: 61199 + 5,1: + 0: 57341 + 5,2: + 0: 30576 + 5,3: + 0: 63095 + 5,4: + 0: 65295 + 6,1: + 0: 65535 + 6,2: + 0: 65522 + 6,3: + 0: 65530 + 6,4: + 0: 65295 + 7,1: + 0: 65535 + 7,2: + 0: 48048 + 7,3: + 0: 30712 + 7,4: + 0: 65287 + 8,1: + 0: 65535 + 8,2: + 0: 30576 + 8,3: + 0: 65264 + -2,4: + 0: 3264 + -1,4: + 0: 4080 + 0,6: + 0: 2048 + 1,6: + 0: 53212 + 0,7: + 0: 8 + 1,7: + 0: 3295 + 1,5: + 0: 52428 + 1,8: + 0: 3276 + 2,5: + 0: 65301 + 2,6: + 0: 56607 + 2,7: + 0: 61152 + 2,8: + 0: 43827 + 3,5: + 0: 48059 + 3,6: + 0: 30447 + 3,7: + 0: 30578 + 4,5: + 0: 61439 + 4,6: + 0: 57599 + 4,7: + 0: 61166 + 5,6: + 0: 65262 + 5,7: + 0: 65535 + 5,5: + 0: 61152 + 6,7: + 0: 56558 + 6,5: + 0: 61160 + 6,6: + 0: 61166 + 6,8: + 0: 65532 + 7,7: + 0: 65392 + 7,5: + 3: 96 + 4: 24576 + 7,6: + 5: 96 + 6: 24576 + 7,8: + 0: 30487 + 8,4: + 0: 65295 + 8,5: + 0: 30579 + 8,6: + 0: 30583 + 8,7: + 0: 63351 + 8,0: + 0: 3810 + 8,-1: + 0: 61156 + 9,0: + 0: 18396 + 9,1: + 0: 65527 + 9,2: + 0: 65535 + 9,-1: + 0: 65488 + 9,3: + 0: 61158 + 9,4: + 0: 65518 + 10,0: + 0: 47389 + 10,2: + 0: 58895 + 10,-1: + 0: 53744 + 10,1: + 0: 61160 + 10,3: + 0: 57446 + 10,4: + 0: 59631 + 11,0: + 0: 30566 + 11,1: + 0: 30583 + 11,2: + 0: 53631 + 11,3: + 0: 7645 + 11,-1: + 0: 28788 + 11,4: + 0: 61663 + 12,0: + 0: 62399 + 12,1: + 0: 30719 + 12,2: + 0: 29815 + 12,3: + 0: 3541 + 8,8: + 0: 65535 + 9,6: + 0: 30464 + 9,7: + 0: 29303 + 9,5: + 0: 61166 + 9,8: + 0: 65527 + 10,5: + 0: 65422 + 10,6: + 0: 58606 + 10,7: + 0: 49390 + 10,8: + 0: 18252 + 11,5: + 0: 61679 + 11,6: + 0: 62207 + 11,7: + 0: 61695 + 11,8: + 0: 4095 + 12,4: + 0: 41727 + 12,5: + 0: 58027 + 12,6: + 0: 52991 + 1,9: + 0: 2048 + 2,9: + 0: 35758 + 2,10: + 1: 8738 + 0: 49288 + 2,11: + 1: 8738 + 0: 52428 + 2,12: + 1: 3298 + 0: 12 + 3,8: + 0: 65280 + 3,9: + 0: 65535 + 3,10: + 0: 13104 + 1: 16448 + 3,11: + 0: 13107 + 1: 1024 + 3,12: + 0: 3 + 1: 4084 + 4,8: + 0: 65504 + 4,9: + 0: 65535 + 4,10: + 0: 3808 + 4,11: + 1: 13299 + 4,12: + 1: 13107 + 0: 34944 + 5,8: + 0: 40944 + 5,9: + 0: 49083 + 5,10: + 0: 4088 + 5,11: + 1: 240 + 6,9: + 0: 15283 + 6,10: + 0: 3003 + 6,11: + 1: 240 + 7,9: + 0: 12272 + 7,10: + 0: 4095 + 7,11: + 1: 240 + 7,12: + 0: 53076 + 8,9: + 0: 61426 + 8,11: + 1: 240 + 8,10: + 0: 3822 + 8,12: + 0: 30503 + 9,9: + 0: 20464 + 9,10: + 0: 3822 + 9,11: + 1: 61166 + 9,12: + 1: 16462 + 0: 11808 + 10,11: + 1: 255 + 0: 49152 + 10,9: + 0: 52428 + 10,10: + 0: 3276 + 10,12: + 0: 53196 + 11,9: + 0: 65535 + 11,10: + 0: 4095 + 11,11: + 1: 17 + 0: 61440 + 11,12: + 0: 65535 + 12,11: + 0: 28672 + 1: 238 + 12,7: + 0: 61164 + 12,8: + 0: 61166 + 13,4: + 0: 28799 + 13,5: + 0: 21623 + 13,6: + 0: 17749 + 13,7: + 0: 63076 + 13,8: + 0: 1647 + 14,4: + 0: 4095 + 14,5: + 0: 65535 + 14,6: + 0: 11007 + 14,7: + 0: 65535 + 14,3: + 0: 65535 + 14,8: + 0: 4095 + 15,4: + 0: 10103 + 15,6: + 0: 17492 + 15,7: + 0: 65535 + 15,3: + 0: 30583 + 15,5: + 0: 26214 + 15,8: + 0: 4095 + 16,4: + 1: 4369 + 16,5: + 1: 4369 + 16,6: + 1: 273 + 12,9: + 0: 57582 + 12,10: + 0: 3822 + 12,12: + 0: 30583 + 13,9: + 0: 28927 + 13,10: + 0: 1911 + 13,11: + 1: 61183 + 13,12: + 1: 61166 + 14,9: + 0: 30719 + 14,10: + 0: 32775 + 1: 4096 + 14,11: + 1: 4369 + 0: 52428 + 14,12: + 1: 4369 + 0: 52428 + 15,9: + 0: 13107 + 1: 34952 + 15,10: + 0: 13107 + 1: 34952 + 15,11: + 0: 30707 + 15,12: + 0: 30583 + 16,9: + 1: 1 + 16,11: + 0: 48 + 8,-5: + 1: 61440 + 9,-4: + 0: 28920 + 9,-3: + 0: 3879 + 9,-2: + 0: 25342 + 9,-5: + 1: 12288 + 10,-4: + 0: 61687 + 10,-3: + 0: 4049 + 10,-2: + 0: 47615 + 11,-4: + 0: 56831 + 11,-3: + 0: 17748 + 11,-2: + 0: 21589 + 11,-5: + 0: 65280 + 12,-4: + 0: 4915 + 1: 8 + 12,-1: + 0: 47872 + 12,-5: + 0: 61440 + 1: 2048 + 13,-4: + 1: 34959 + 13,-1: + 0: 30464 + 13,-5: + 0: 61440 + 1: 3584 + 13,0: + 0: 28791 + 14,-4: + 0: 21845 + 1: 43690 + 14,-1: + 0: 21840 + 14,-5: + 0: 61440 + 1: 3840 + 14,0: + 0: 20479 + 15,-4: + 1: 34959 + 15,-1: + 0: 1792 + 15,-5: + 0: 61440 + 1: 3840 + 15,0: + 0: 4095 + 16,-4: + 0: 21845 + 1: 43690 + 16,-1: + 0: 21840 + 16,-5: + 1: 36608 + 0: 28672 + 13,1: + 0: 65535 + 13,2: + 0: 28927 + 13,3: + 0: 1911 + 14,1: + 0: 53060 + 14,2: + 0: 26350 + 15,1: + 0: 26215 + 15,2: + 0: 1639 + 16,0: + 0: 119 + 1: 57344 + 16,1: + 1: 4371 + 16,2: + 1: 4369 + 16,3: + 1: 4369 + 3,14: + 0: 34944 + 3,15: + 0: 8 + 4,14: + 0: 760 + 4,15: + 0: 1 + 1: 14 + 4,13: + 1: 13107 + 0: 34952 + 5,12: + 0: 43904 + 5,14: + 0: 62 + 5,15: + 1: 15 + 5,13: + 0: 43690 + 6,12: + 0: 43904 + 6,15: + 1: 15 + 6,13: + 0: 43690 + 6,14: + 0: 46 + 7,15: + 1: 15 + 7,13: + 0: 36044 + 8,13: + 0: 12151 + 8,15: + 1: 15 + 17,0: + 1: 4369 + 17,-1: + 1: 4368 + 12,13: + 1: 65280 + 11,13: + 1: 65280 + 12,14: + 1: 15 + 0: 3584 + 11,14: + 1: 15 + 0: 3840 + 12,15: + 1: 57359 + 11,15: + 1: 15 + 12,16: + 1: 43554 + 13,13: + 1: 65518 + 13,14: + 1: 15 + 0: 1792 + 13,15: + 1: 28673 + 0: 14 + 14,13: + 1: 12561 + 0: 2252 + 14,14: + 1: 3 + 0: 65288 + 14,15: + 0: 20343 + 14,16: + 0: 68 + 1: 65280 + 15,13: + 0: 9023 + 15,14: + 0: 13091 + 15,15: + 0: 273 + 1: 49152 + 16,13: + 0: 3 + 16,15: + 1: 61440 + 16,16: + 1: 48008 + 12,17: + 1: 3626 + 13,16: + 1: 64256 + 13,17: + 1: 3851 + 14,17: + 1: 3855 + 0: 64 + 15,16: + 1: 64256 + 15,17: + 1: 3851 + 16,17: + 1: 3979 + 8,14: + 0: 2048 + 9,13: + 0: 802 + 1: 34956 + 9,14: + 0: 3840 + 1: 14 + 9,15: + 1: 15 + 10,13: + 1: 65280 + 10,14: + 1: 15 + 0: 3328 + 10,15: + 1: 15 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: NavMap +- proto: AirAlarm + entities: + - uid: 4 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 7276 + - 7274 + - 7275 + - 7057 + - 199 + - 7069 + - 3410 + - 5360 + - 5788 + - uid: 684 + components: + - type: Transform + pos: 35.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 6631 + - 6632 + - 6629 + - 6630 + - 6627 + - 6628 + - 6618 + - 6638 + - 5220 + - 5649 + - 6310 + - 6626 + - 212 + - uid: 685 + components: + - type: Transform + pos: 32.5,39.5 + parent: 2 + - type: DeviceList + devices: + - 6626 + - 5221 + - 6629 + - 6628 + - uid: 6619 + components: + - type: Transform + pos: 21.5,35.5 + parent: 2 + - type: DeviceList + devices: + - 6623 + - 6624 + - 6618 + - 1940 + - 6617 + - 43 + - 682 + - uid: 6620 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 + - type: DeviceList + devices: + - 6623 + - 6624 + - 6625 + - 6626 + - 1842 + - 1843 + - 6617 + - 6618 + - 212 + - 226 + - 682 + - uid: 6634 + components: + - type: Transform + pos: 43.5,35.5 + parent: 2 + - type: DeviceList + devices: + - 5222 + - 6630 + - 6626 + - 6627 + - uid: 6650 + components: + - type: Transform + pos: 30.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 6644 + - 6645 + - 663 + - 6646 + - 6633 + - 5454 + - 6648 + - 686 + - 226 + - 7092 + - 5477 + - 7559 + - uid: 6654 + components: + - type: Transform + pos: 15.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 5449 + - 663 + - 6651 + - 6638 + - 6647 + - 5503 + - 7107 + - 7559 + - uid: 6655 + components: + - type: Transform + pos: 10.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 686 + - 5504 + - 6651 + - uid: 7108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 6644 + - 6645 + - 7055 + - 7058 + - 7059 + - 7054 + - 7053 + - 6638 + - 7068 + - 7069 + - 7070 + - 6648 + - 5452 + - 5760 + - uid: 7109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,25.5 + parent: 2 + - type: DeviceList + devices: + - 466 + - 7058 + - 7059 + - 7060 + - 7061 + - 464 + - 7071 + - 7171 + - 6648 + - 7174 + - 7070 + - 5343 + - 3026 + - 7172 + - uid: 7110 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - type: DeviceList + devices: + - 7062 + - 7063 + - 7060 + - 7061 + - 7072 + - 7070 + - 7071 + - 5701 + - 5339 + - 7200 + - uid: 7111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,35.5 + parent: 2 + - type: DeviceList + devices: + - 7065 + - 7064 + - 125 + - 123 + - 7063 + - 7062 + - 7073 + - 7072 + - 7071 + - 5704 + - 5246 + - 5309 + - uid: 7112 + components: + - type: Transform + pos: 57.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 5199 + - 7064 + - 7065 + - 7067 + - 7066 + - 7072 + - 7086 + - 7085 + - 7073 + - 7074 + - uid: 7113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,49.5 + parent: 2 + - type: DeviceList + devices: + - 7066 + - 7067 + - 2230 + - 7073 + - 7074 + - 5248 + - 5249 + - 5653 + - 7180 + - uid: 7114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 2343 + - 7054 + - 7053 + - 5260 + - 7042 + - 7043 + - 7044 + - 7051 + - 6648 + - 5586 + - 7115 + - 7056 + - 3016 + - 7168 + - uid: 7116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 5260 + - 7042 + - 7043 + - 7044 + - 7135 + - 7045 + - 7046 + - 7075 + - 5598 + - 7056 + - 7041 + - 7068 + - 3024 + - uid: 7117 + components: + - type: Transform + pos: 52.5,18.5 + parent: 2 + - type: DeviceList + devices: + - 7057 + - 7193 + - 465 + - 7055 + - 7199 + - 6648 + - 7171 + - 7168 + - 7069 + - 3348 + - 5359 + - 5755 + - uid: 7118 + components: + - type: Transform + pos: 16.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 7047 + - 7048 + - 7045 + - 7046 + - 7144 + - 7143 + - 7075 + - 7136 + - 5957 + - 2812 + - 7056 + - 7076 + - 59 + - uid: 7119 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 6934 + - 7049 + - 7050 + - 7047 + - 7048 + - 7075 + - 7076 + - 3696 + - 7077 + - 7156 + - uid: 7120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 7049 + - 7050 + - 7080 + - 7081 + - 426 + - 458 + - 7076 + - 7078 + - 7079 + - 5554 + - 7082 + - 5553 + - 1170 + - uid: 7121 + components: + - type: Transform + pos: 11.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 7080 + - 7081 + - 58 + - 7077 + - 5976 + - 6701 + - 7078 + - uid: 7122 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 426 + - 458 + - 1261 + - 7077 + - 5978 + - 7079 + - 5569 + - uid: 7149 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 2242 + - 2339 + - 2243 + - 2273 + - 3019 + - 5919 + - 3024 + - 1597 + - 2812 + - 5901 + - 5793 + - uid: 7151 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 6934 + - 7152 + - 7076 + - 3019 + - 3696 + - 5536 + - 5938 + - uid: 7153 + components: + - type: Transform + pos: 2.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 7152 + - 89 + - 2339 + - 3024 + - 3696 + - 3019 + - 2804 + - 5922 + - 5535 + - uid: 7161 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 526 + - 7159 + - 7076 + - 7156 + - 5974 + - 5543 + - uid: 7170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,18.5 + parent: 2 + - type: DeviceList + devices: + - 464 + - 465 + - 7070 + - 7069 + - 5774 + - 5744 + - 7201 + - uid: 7176 + components: + - type: Transform + pos: 43.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 466 + - 7070 + - 7174 + - 5812 + - 5820 + - 7172 + - uid: 7184 + components: + - type: Transform + pos: 59.5,35.5 + parent: 2 + - type: DeviceList + devices: + - 694 + - 123 + - 125 + - 7072 + - 199 + - 7186 + - 7185 + - 5315 + - 5822 + - 6668 + - 5316 + - 5811 + - 5702 + - 6673 + - uid: 7194 + components: + - type: Transform + pos: 43.5,9.5 + parent: 2 + - type: DeviceList + devices: + - 7190 + - 2343 + - 7193 + - 7069 + - 7192 + - 7068 + - 7168 + - 5815 + - 5405 + - uid: 7195 + components: + - type: Transform + pos: 51.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 7191 + - 7190 + - 3410 + - 7168 + - 7192 + - 5808 + - 5394 + - uid: 7218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-0.5 + parent: 2 + - type: DeviceList + devices: + - 7216 + - 7215 + - 7217 + - 7212 + - 7213 + - 7214 + - 3016 + - 2809 + - 2803 + - 5837 + - 5627 + - uid: 7223 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 7221 + - 7220 + - 7216 + - 7215 + - 7217 + - 2803 + - 2809 + - 5929 + - 2609 + - 5817 + - 7224 + - uid: 7281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 7191 + - 7279 + - 7275 + - 7274 + - 3348 + - 3410 + - 7278 + - 7192 + - 5789 + - 5376 + - 7277 + - uid: 7283 + components: + - type: Transform + pos: 63.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 7279 + - 5388 + - 7278 + - 3410 + - uid: 7288 + components: + - type: Transform + pos: 41.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 7213 + - 7214 + - 7052 + - 7051 + - 7068 + - 3016 + - 2803 + - 2800 + - 5864 + - 5422 + - uid: 7291 + components: + - type: Transform + pos: 48.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 7220 + - 7052 + - 7284 + - 3016 + - 2809 + - 7224 + - 2800 + - 5433 + - 5871 + - 2142 +- proto: AirCanister + entities: + - uid: 1671 + components: + - type: Transform + pos: 20.5,42.5 + parent: 2 + - uid: 1672 + components: + - type: Transform + pos: 21.5,42.5 + parent: 2 +- proto: Airlock + entities: + - uid: 28 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 29 + components: + - type: Transform + pos: 13.5,1.5 + parent: 2 + - uid: 7146 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - uid: 7164 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 2 +- proto: AirlockArmoryGlassLocked + entities: + - uid: 6040 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 +- proto: AirlockArmoryLocked + entities: + - uid: 1450 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 2 +- proto: AirlockAtmosphericsGlass + entities: + - uid: 3238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,36.5 + parent: 2 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 252 + components: + - type: Transform + pos: 31.5,31.5 + parent: 2 + - uid: 3027 + components: + - type: Transform + pos: 27.5,20.5 + parent: 2 + - type: Door + secondsUntilStateChange: -19547.12 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - uid: 3239 + components: + - type: Transform + pos: 31.5,30.5 + parent: 2 +- proto: AirlockBarLocked + entities: + - uid: 51 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 57 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 +- proto: AirlockBrigLocked + entities: + - uid: 1341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-6.5 + parent: 2 +- proto: AirlockCaptainLocked + entities: + - uid: 2363 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + pos: 57.5,26.5 + parent: 2 +- proto: AirlockCargo + entities: + - uid: 88 + components: + - type: Transform + pos: 16.5,25.5 + parent: 2 + - type: Door + secondsUntilStateChange: -12527.387 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - uid: 7203 + components: + - type: Transform + pos: 16.5,24.5 + parent: 2 + - type: Door + secondsUntilStateChange: -12525.72 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - uid: 7465 + components: + - type: Transform + pos: 15.5,23.5 + parent: 2 +- proto: AirlockChapelLocked + entities: + - uid: 7158 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 +- proto: AirlockChemistryLocked + entities: + - uid: 470 + components: + - type: Transform + pos: 27.5,12.5 + parent: 2 +- proto: AirlockChiefEngineerLocked + entities: + - uid: 1601 + components: + - type: Transform + pos: 42.5,33.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,13.5 + parent: 2 +- proto: AirlockCommandGlass + entities: + - uid: 7178 + components: + - type: Transform + pos: 52.5,32.5 + parent: 2 + - uid: 7189 + components: + - type: Transform + pos: 52.5,31.5 + parent: 2 +- proto: AirlockCommandLocked + entities: + - uid: 2344 + components: + - type: Transform + pos: 54.5,22.5 + parent: 2 + - uid: 5037 + components: + - type: Transform + pos: 19.5,51.5 + parent: 2 + - uid: 5046 + components: + - type: Transform + pos: 20.5,50.5 + parent: 2 + - uid: 7182 + components: + - type: Transform + pos: 54.5,28.5 + parent: 2 + - uid: 7187 + components: + - type: Transform + pos: 55.5,32.5 + parent: 2 + - uid: 7188 + components: + - type: Transform + pos: 55.5,31.5 + parent: 2 +- proto: AirlockDetectiveLocked + entities: + - uid: 1459 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 2 +- proto: AirlockEngineering + entities: + - uid: 517 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 + - uid: 1050 + components: + - type: Transform + pos: 40.5,2.5 + parent: 2 + - uid: 2607 + components: + - type: Transform + pos: 60.5,60.5 + parent: 2 + - uid: 2779 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 2786 + components: + - type: Transform + pos: 10.5,19.5 + parent: 2 + - uid: 2788 + components: + - type: Transform + pos: 60.5,56.5 + parent: 2 + - uid: 4564 + components: + - type: Transform + pos: 33.5,49.5 + parent: 2 + - uid: 6050 + components: + - type: Transform + pos: 59.5,62.5 + parent: 2 + - uid: 6730 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 +- proto: AirlockEngineeringLocked + entities: + - uid: 701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,20.5 + parent: 2 + - uid: 6640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,20.5 + parent: 2 +- proto: AirlockEVALocked + entities: + - uid: 6976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,8.5 + parent: 2 +- proto: AirlockExternalAtmosphericsLocked + entities: + - uid: 1831 + components: + - type: Transform + pos: 11.5,38.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 1934: + - DoorStatus: DoorBolt + - uid: 1934 + components: + - type: Transform + pos: 11.5,40.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 1831: + - DoorStatus: DoorBolt + - uid: 6069 + components: + - type: Transform + pos: 8.5,38.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + - type: DeviceLinkSource + linkedPorts: + 6070: + - DoorStatus: DoorBolt + - uid: 6070 + components: + - type: Transform + pos: 9.5,35.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + - type: DeviceLinkSource + linkedPorts: + 6069: + - DoorStatus: DoorBolt +- proto: AirlockExternalCargoLocked + entities: + - uid: 733 + components: + - type: Transform + pos: 5.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2504: + - DoorStatus: DoorBolt + - uid: 734 + components: + - type: Transform + pos: 5.5,26.5 + parent: 2 + - type: Door + secondsUntilStateChange: -99718.8 + state: Opening + - type: DeviceLinkSource + linkedPorts: + 2119: + - DoorStatus: DoorBolt + lastSignals: + DoorStatus: True +- proto: AirlockExternalEngineeringLocked + entities: + - uid: 843 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6731: + - DoorStatus: DoorBolt + - uid: 2744 + components: + - type: Transform + pos: 58.5,63.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 2745: + - DoorStatus: DoorBolt + - uid: 2745 + components: + - type: Transform + pos: 58.5,65.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 2744: + - DoorStatus: DoorBolt + - uid: 4265 + components: + - type: Transform + pos: 16.5,60.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4506: + - DoorStatus: Close + - uid: 4499 + components: + - type: Transform + pos: 55.5,60.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 4500: + - DoorStatus: DoorBolt + - uid: 4500 + components: + - type: Transform + pos: 53.5,60.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 4499: + - DoorStatus: DoorBolt + - uid: 4506 + components: + - type: Transform + pos: 15.5,58.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4265: + - DoorStatus: Close + - uid: 4558 + components: + - type: Transform + pos: 39.5,50.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 4724: + - DoorStatus: DoorBolt + - uid: 4724 + components: + - type: Transform + pos: 41.5,50.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 4558: + - DoorStatus: DoorBolt + - uid: 4725 + components: + - type: Transform + pos: 37.5,53.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 4726: + - DoorStatus: DoorBolt + - uid: 4726 + components: + - type: Transform + pos: 36.5,54.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 4725: + - DoorStatus: DoorBolt + - uid: 6731 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 843: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassLocked + entities: + - uid: 2132 + components: + - type: Transform + pos: 56.5,-0.5 + parent: 2 + - uid: 2133 + components: + - type: Transform + pos: 58.5,-0.5 + parent: 2 + - uid: 2134 + components: + - type: Transform + pos: 64.5,-0.5 + parent: 2 + - uid: 2146 + components: + - type: Transform + pos: 66.5,-0.5 + parent: 2 + - uid: 2165 + components: + - type: Transform + pos: 66.5,-14.5 + parent: 2 + - uid: 2166 + components: + - type: Transform + pos: 64.5,-14.5 + parent: 2 + - uid: 2167 + components: + - type: Transform + pos: 58.5,-14.5 + parent: 2 + - uid: 2168 + components: + - type: Transform + pos: 56.5,-14.5 + parent: 2 + - uid: 2508 + components: + - type: Transform + pos: 63.5,52.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 735: + - DoorStatus: DoorBolt + - uid: 2509 + components: + - type: Transform + pos: 63.5,45.5 + parent: 2 +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,52.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2508: + - DockStatus: Open + - DockStatus: AutoClose + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,45.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2509: + - DockStatus: Open + - DockStatus: AutoClose +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 2128 + components: + - type: Transform + pos: 66.5,-2.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2129 + components: + - type: Transform + pos: 64.5,-2.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2130 + components: + - type: Transform + pos: 58.5,-2.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2131 + components: + - type: Transform + pos: 56.5,-2.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-12.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-12.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-12.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-12.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 +- proto: AirlockExternalShuttleLocked + entities: + - uid: 2119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 734: + - DockStatus: Open + - DockStatus: AutoClose + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 733: + - DockStatus: Open + - DockStatus: AutoClose + - type: DeviceLinkSink + invokeCounter: 1 +- proto: AirlockFreezerLocked + entities: + - uid: 41 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 2 +- proto: AirlockGlass + entities: + - uid: 24 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 146 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 7166 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - uid: 7167 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 2 + - uid: 7173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,21.5 + parent: 2 +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 7177 + components: + - type: Transform + pos: 42.5,26.5 + parent: 2 +- proto: AirlockHeadOfSecurityGlassLocked + entities: + - uid: 6044 + components: + - type: Transform + pos: 41.5,-9.5 + parent: 2 +- proto: AirlockHydroponics + entities: + - uid: 7162 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 +- proto: AirlockJanitorLocked + entities: + - uid: 234 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 +- proto: AirlockKitchenLocked + entities: + - uid: 83 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 +- proto: AirlockMaintChapelLocked + entities: + - uid: 7145 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 +- proto: AirlockMaintCommandLocked + entities: + - uid: 355 + components: + - type: Transform + pos: 62.5,26.5 + parent: 2 +- proto: AirlockMaintCommonLocked + entities: + - uid: 2002 + components: + - type: Transform + pos: 61.5,19.5 + parent: 2 + - uid: 5421 + components: + - type: Transform + pos: 48.5,20.5 + parent: 2 + - uid: 5423 + components: + - type: Transform + pos: 49.5,22.5 + parent: 2 + - uid: 6151 + components: + - type: Transform + pos: 49.5,18.5 + parent: 2 +- proto: AirlockMaintJanitorLocked + entities: + - uid: 235 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 +- proto: AirlockMaintLocked + entities: + - uid: 691 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 + - uid: 1164 + components: + - type: Transform + pos: 43.5,-14.5 + parent: 2 + - type: Door + secondsUntilStateChange: -80996.79 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - uid: 5986 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 7165 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 7181 + components: + - type: Transform + pos: 61.5,55.5 + parent: 2 + - uid: 7418 + components: + - type: Transform + pos: 16.5,18.5 + parent: 2 +- proto: AirlockMaintMedLocked + entities: + - uid: 7150 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 +- proto: AirlockMaintSecLocked + entities: + - uid: 1352 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 2 +- proto: AirlockMedicalLocked + entities: + - uid: 554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,13.5 + parent: 2 + - uid: 7271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,14.5 + parent: 2 + - uid: 7272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,14.5 + parent: 2 +- proto: AirlockMedicalMorgueLocked + entities: + - uid: 3170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,16.5 + parent: 2 +- proto: AirlockQuartermasterGlassLocked + entities: + - uid: 1734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,27.5 + parent: 2 +- proto: AirlockResearchDirectorLocked + entities: + - uid: 1505 + components: + - type: Transform + pos: 50.5,12.5 + parent: 2 +- proto: AirlockSalvageLocked + entities: + - uid: 2144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,28.5 + parent: 2 + - type: Door + secondsUntilStateChange: -12524.52 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True +- proto: AirlockScienceLocked + entities: + - uid: 1259 + components: + - type: Transform + pos: 50.5,0.5 + parent: 2 + - uid: 1260 + components: + - type: Transform + pos: 44.5,14.5 + parent: 2 + - uid: 6995 + components: + - type: Transform + pos: 57.5,6.5 + parent: 2 + - uid: 6996 + components: + - type: Transform + pos: 56.5,6.5 + parent: 2 + - uid: 7202 + components: + - type: Transform + pos: 40.5,8.5 + parent: 2 +- proto: AirlockSecurityLawyerGlassLocked + entities: + - uid: 1342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-1.5 + parent: 2 + - uid: 1343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-0.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,0.5 + parent: 2 + - uid: 5895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-13.5 + parent: 2 +- proto: AirlockSecurityLawyerLocked + entities: + - uid: 1344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-3.5 + parent: 2 + - uid: 1353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-10.5 + parent: 2 + - uid: 1412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-9.5 + parent: 2 +- proto: AirlockTheatreLocked + entities: + - uid: 258 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 2 +- proto: AirlockVirologyLocked + entities: + - uid: 629 + components: + - type: Transform + pos: 31.5,12.5 + parent: 2 +- proto: AirSensor + entities: + - uid: 199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7184 + - 4 + - uid: 686 + components: + - type: Transform + pos: 10.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6650 + - 6655 + - uid: 2800 + components: + - type: Transform + pos: 47.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7288 + - 7291 + - uid: 2803 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7218 + - 7223 + - 7288 + - uid: 2809 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7218 + - 7223 + - 7291 + - uid: 2812 + components: + - type: Transform + pos: 20.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7118 + - 7149 + - uid: 3016 + components: + - type: Transform + pos: 39.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7114 + - 7218 + - 7288 + - 7291 + - uid: 3019 + components: + - type: Transform + pos: 4.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7149 + - 7153 + - 7151 + - uid: 3024 + components: + - type: Transform + pos: 15.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7116 + - 7149 + - 7153 + - uid: 3348 + components: + - type: Transform + pos: 59.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7117 + - 7281 + - uid: 3410 + components: + - type: Transform + pos: 58.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7195 + - 4 + - 7281 + - 7283 + - uid: 3696 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7153 + - 7151 + - 7119 + - uid: 5309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7111 + - uid: 6617 + components: + - type: Transform + pos: 18.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6620 + - 6619 + - uid: 6618 + components: + - type: Transform + pos: 27.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 684 + - 6619 + - 6620 + - uid: 6626 + components: + - type: Transform + pos: 35.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6634 + - 685 + - 6620 + - 684 + - uid: 6627 + components: + - type: Transform + pos: 42.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 684 + - 6634 + - uid: 6628 + components: + - type: Transform + pos: 32.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 684 + - 685 + - uid: 6638 + components: + - type: Transform + pos: 28.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 684 + - 6654 + - 7108 + - uid: 6647 + components: + - type: Transform + pos: 10.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6654 + - uid: 6648 + components: + - type: Transform + pos: 38.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6650 + - 7114 + - 7108 + - 7109 + - 7117 + - uid: 7056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7116 + - 7118 + - 7114 + - uid: 7068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7116 + - 7108 + - 7194 + - 7288 + - uid: 7069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7108 + - 7170 + - 7117 + - 7194 + - 4 + - uid: 7070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7108 + - 7170 + - 7176 + - 7109 + - 7110 + - uid: 7071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7109 + - 7110 + - 7111 + - uid: 7072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7110 + - 7111 + - 7112 + - 7184 + - uid: 7073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7111 + - 7112 + - 7113 + - uid: 7074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7112 + - 7113 + - uid: 7075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7116 + - 7118 + - 7119 + - uid: 7076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7118 + - 7151 + - 7119 + - 7161 + - 7120 + - uid: 7077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7119 + - 7121 + - 7122 + - uid: 7078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7121 + - 7120 + - uid: 7079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7120 + - 7122 + - uid: 7156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7119 + - 7161 + - uid: 7168 + components: + - type: Transform + pos: 44.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7114 + - 7117 + - 7195 + - 7194 + - uid: 7171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7109 + - 7117 + - uid: 7174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7176 + - 7109 + - uid: 7180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7113 + - uid: 7185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7184 + - uid: 7186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7184 + - uid: 7192 + components: + - type: Transform + pos: 49.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7195 + - 7194 + - 7281 + - uid: 7224 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7223 + - 7291 + - uid: 7278 + components: + - type: Transform + pos: 64.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7281 + - 7283 +- proto: AltarSpawner + entities: + - uid: 317 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 +- proto: AmmoniaCanister + entities: + - uid: 1683 + components: + - type: Transform + pos: 23.5,39.5 + parent: 2 + - uid: 1684 + components: + - type: Transform + pos: 23.5,40.5 + parent: 2 +- proto: APCBasic + entities: + - uid: 1935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,21.5 + parent: 2 + - uid: 2765 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 2770 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 + - uid: 2771 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 2776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-11.5 + parent: 2 + - uid: 2949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,22.5 + parent: 2 + - uid: 3020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,48.5 + parent: 2 + - uid: 3862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,21.5 + parent: 2 + - uid: 3972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-12.5 + parent: 2 + - uid: 4067 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 + - uid: 4068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-1.5 + parent: 2 + - uid: 4562 + components: + - type: Transform + pos: 43.5,52.5 + parent: 2 +- proto: APCHighCapacity + entities: + - uid: 3021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,30.5 + parent: 2 +- proto: ArrivalsShuttleTimer + entities: + - uid: 6152 + components: + - type: Transform + pos: 62.5,53.5 + parent: 2 + - uid: 6153 + components: + - type: Transform + pos: 62.5,44.5 + parent: 2 + - uid: 6156 + components: + - type: Transform + pos: 37.5,1.5 + parent: 2 +- proto: ArtistCircuitBoard + entities: + - uid: 4743 + components: + - type: Transform + pos: 34.647377,51.634777 + parent: 2 +- proto: AtmosDeviceFanTiny + entities: + - uid: 7581 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 2 +- proto: AtmosFixBlockerMarker + entities: + - uid: 6003 + components: + - type: Transform + pos: 29.5,25.5 + parent: 2 + - uid: 6004 + components: + - type: Transform + pos: 30.5,25.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 7569 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 2 + - uid: 7570 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - uid: 7571 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 7572 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 7573 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 + - uid: 7574 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 2 + - uid: 7575 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - uid: 7576 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 7577 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 7578 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 + - uid: 7579 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - uid: 7580 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 2 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 6001 + components: + - type: Transform + pos: 29.5,27.5 + parent: 2 + - uid: 6002 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 +- proto: AtmosFixOxygenMarker + entities: + - uid: 19 + components: + - type: Transform + pos: 29.5,21.5 + parent: 2 + - uid: 20 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 17 + components: + - type: Transform + pos: 29.5,23.5 + parent: 2 + - uid: 18 + components: + - type: Transform + pos: 30.5,23.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 1515 + components: + - type: Transform + pos: 43.5,2.5 + parent: 2 + - uid: 7565 + components: + - type: Transform + pos: 34.5,35.5 + parent: 2 +- proto: BackgammonBoard + entities: + - uid: 7588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.627422,-0.33031178 + parent: 2 +- proto: BagpipeInstrument + entities: + - uid: 1275 + components: + - type: Transform + pos: 31.945509,-11.86088 + parent: 1 + - uid: 1277 + components: + - type: Transform + pos: 37.848846,32.127415 + parent: 1 +- proto: BananaPhoneInstrument + entities: + - uid: 7039 + components: + - type: Transform + pos: 17.46927,-14.442269 + parent: 2 +- proto: BananaSeeds + entities: + - uid: 7038 + components: + - type: Transform + pos: 18.042189,-14.192269 + parent: 2 +- proto: BarSign + entities: + - uid: 56 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 +- proto: Bed + entities: + - uid: 27 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 30 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 + - uid: 808 + components: + - type: Transform + pos: 37.5,-4.5 + parent: 2 + - uid: 827 + components: + - type: Transform + pos: 40.5,-4.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - uid: 1418 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 2 + - uid: 1419 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 2 + - uid: 1547 + components: + - type: Transform + pos: 54.5,11.5 + parent: 2 + - uid: 2403 + components: + - type: Transform + pos: 59.5,20.5 + parent: 2 +- proto: BedsheetCaptain + entities: + - uid: 2405 + components: + - type: Transform + pos: 59.5,20.5 + parent: 2 +- proto: BedsheetMedical + entities: + - uid: 1333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,13.5 + parent: 2 + - uid: 1334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,13.5 + parent: 2 + - uid: 1335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,11.5 + parent: 2 + - uid: 1336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,11.5 + parent: 2 +- proto: BedsheetRD + entities: + - uid: 1552 + components: + - type: Transform + pos: 54.5,11.5 + parent: 2 +- proto: BedsheetSpawner + entities: + - uid: 5 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 + - uid: 6 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 +- proto: BlastDoor + entities: + - uid: 1254 + components: + - type: Transform + pos: 51.5,-2.5 + parent: 2 + - uid: 1256 + components: + - type: Transform + pos: 52.5,-2.5 + parent: 2 + - uid: 1257 + components: + - type: Transform + pos: 53.5,-2.5 + parent: 2 + - uid: 1258 + components: + - type: Transform + pos: 54.5,-2.5 + parent: 2 + - uid: 1763 + components: + - type: Transform + pos: 25.5,31.5 + parent: 2 + - uid: 7327 + components: + - type: Transform + pos: -8.5,12.5 + parent: 2 + - uid: 7328 + components: + - type: Transform + pos: -6.5,12.5 + parent: 2 + - uid: 7600 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 + - uid: 7601 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 +- proto: BlockGameArcade + entities: + - uid: 7006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,49.5 + parent: 2 + - uid: 7007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,48.5 + parent: 2 +- proto: BookIanArctic + entities: + - uid: 3138 + components: + - type: Transform + pos: 62.421024,34.588806 + parent: 2 +- proto: BooksBag + entities: + - uid: 7591 + components: + - type: Transform + pos: 17.643047,-0.40008295 + parent: 2 +- proto: BookshelfFilled + entities: + - uid: 131 + components: + - type: Transform + pos: 15.5,2.5 + parent: 2 + - uid: 132 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - uid: 133 + components: + - type: Transform + pos: 17.5,2.5 + parent: 2 +- proto: BoozeDispenser + entities: + - uid: 145 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 +- proto: BorgCharger + entities: + - uid: 1556 + components: + - type: Transform + pos: 55.5,8.5 + parent: 2 + - uid: 1558 + components: + - type: Transform + pos: 55.5,9.5 + parent: 2 + - uid: 2206 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 4746 + components: + - type: Transform + pos: 23.5,49.5 + parent: 2 + - uid: 5419 + components: + - type: Transform + pos: 25.5,57.5 + parent: 2 +- proto: BoxBeaker + entities: + - uid: 7549 + components: + - type: Transform + pos: 48.358704,2.7288148 + parent: 2 +- proto: BoxHandcuff + entities: + - uid: 1495 + components: + - type: Transform + pos: 25.418718,0.5915235 + parent: 2 +- proto: BoxLatexGloves + entities: + - uid: 6916 + components: + - type: Transform + pos: 32.392864,9.528309 + parent: 2 +- proto: BoxMouthSwab + entities: + - uid: 6915 + components: + - type: Transform + pos: 34.464203,9.472908 + parent: 2 +- proto: BoxSterileMask + entities: + - uid: 6909 + components: + - type: Transform + pos: 33.486614,9.637684 + parent: 2 +- proto: BoxTrashbag + entities: + - uid: 6970 + components: + - type: Transform + pos: 10.416172,-14.343361 + parent: 2 +- proto: BoxZiptie + entities: + - uid: 1329 + components: + - type: Transform + pos: 24.55153,0.568086 + parent: 2 +- proto: BrigTimer + entities: + - uid: 818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-5.5 + parent: 2 + - uid: 1355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-5.5 + parent: 2 + - uid: 1420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-5.5 + parent: 2 +- proto: Bucket + entities: + - uid: 6922 + components: + - type: Transform + pos: -2.5389829,7.5929155 + parent: 2 + - uid: 6923 + components: + - type: Transform + pos: -2.0493999,7.3220825 + parent: 2 + - uid: 7542 + components: + - type: Transform + pos: 24.251616,-7.39437 + parent: 2 +- proto: CabbageSeeds + entities: + - uid: 7541 + components: + - type: Transform + pos: 22.634428,-5.33187 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 76 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 + - uid: 79 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 + - uid: 84 + components: + - type: Transform + pos: 55.5,32.5 + parent: 2 + - uid: 98 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 110 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: 17.5,1.5 + parent: 2 + - uid: 150 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 + - uid: 152 + components: + - type: Transform + pos: 18.5,1.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 + - uid: 213 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 294 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 2 + - uid: 297 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: 58.5,64.5 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 2 + - uid: 422 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 2 + - uid: 425 + components: + - type: Transform + pos: 31.5,9.5 + parent: 2 + - uid: 571 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 + - uid: 624 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: 27.5,12.5 + parent: 2 + - uid: 661 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: 56.5,32.5 + parent: 2 + - uid: 797 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 890 + components: + - type: Transform + pos: 53.5,30.5 + parent: 2 + - uid: 1053 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 2 + - uid: 1427 + components: + - type: Transform + pos: 13.5,37.5 + parent: 2 + - uid: 1554 + components: + - type: Transform + pos: 57.5,-16.5 + parent: 2 + - uid: 2103 + components: + - type: Transform + pos: 54.5,-16.5 + parent: 2 + - uid: 2107 + components: + - type: Transform + pos: 52.5,-16.5 + parent: 2 + - uid: 2108 + components: + - type: Transform + pos: 55.5,-16.5 + parent: 2 + - uid: 2109 + components: + - type: Transform + pos: 56.5,-16.5 + parent: 2 + - uid: 2110 + components: + - type: Transform + pos: 53.5,-16.5 + parent: 2 + - uid: 2111 + components: + - type: Transform + pos: 58.5,-16.5 + parent: 2 + - uid: 2112 + components: + - type: Transform + pos: 61.5,-16.5 + parent: 2 + - uid: 2113 + components: + - type: Transform + pos: 62.5,-16.5 + parent: 2 + - uid: 2114 + components: + - type: Transform + pos: 59.5,-16.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + pos: 63.5,-16.5 + parent: 2 + - uid: 2116 + components: + - type: Transform + pos: 60.5,-16.5 + parent: 2 + - uid: 2117 + components: + - type: Transform + pos: 64.5,-16.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + pos: 65.5,-16.5 + parent: 2 + - uid: 2120 + components: + - type: Transform + pos: 66.5,-16.5 + parent: 2 + - uid: 2121 + components: + - type: Transform + pos: 66.5,-15.5 + parent: 2 + - uid: 2122 + components: + - type: Transform + pos: 64.5,-15.5 + parent: 2 + - uid: 2123 + components: + - type: Transform + pos: 58.5,-15.5 + parent: 2 + - uid: 2152 + components: + - type: Transform + pos: 56.5,-15.5 + parent: 2 + - uid: 2618 + components: + - type: Transform + pos: 58.5,61.5 + parent: 2 + - uid: 2754 + components: + - type: Transform + pos: 19.5,1.5 + parent: 2 + - uid: 2766 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 2767 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - uid: 2768 + components: + - type: Transform + pos: 19.5,2.5 + parent: 2 + - uid: 2769 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 2772 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 2 + - uid: 2773 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 2 + - uid: 2774 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 + - uid: 2775 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - uid: 2896 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 2 + - uid: 2897 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 2898 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 3012 + components: + - type: Transform + pos: 53.5,31.5 + parent: 2 + - uid: 3022 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 3028 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 2 + - uid: 3036 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 + - uid: 3051 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 3054 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 3055 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - uid: 3056 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 3057 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 2 + - uid: 3060 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 3061 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 + - uid: 3062 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 2 + - uid: 3064 + components: + - type: Transform + pos: 13.5,42.5 + parent: 2 + - uid: 3066 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 + - uid: 3067 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - uid: 3069 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 + - uid: 3070 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 2 + - uid: 3071 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 2 + - uid: 3072 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 3073 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 3074 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 3075 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 3076 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 3077 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - uid: 3079 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 3080 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - uid: 3081 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 2 + - uid: 3082 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 2 + - uid: 3083 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 2 + - uid: 3084 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 3085 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 2 + - uid: 3086 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - uid: 3088 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - uid: 3090 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 2 + - uid: 3092 + components: + - type: Transform + pos: 29.5,-6.5 + parent: 2 + - uid: 3093 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 2 + - uid: 3094 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 2 + - uid: 3095 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 2 + - uid: 3096 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 2 + - uid: 3097 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 + - uid: 3098 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - uid: 3099 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 + - uid: 3100 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 2 + - uid: 3101 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 2 + - uid: 3102 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 2 + - uid: 3103 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 2 + - uid: 3104 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 2 + - uid: 3105 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 2 + - uid: 3107 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 2 + - uid: 3111 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - uid: 3112 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 3113 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - uid: 3115 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 3116 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 3117 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 3119 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 3120 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 2 + - uid: 3121 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 2 + - uid: 3122 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 2 + - uid: 3123 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 2 + - uid: 3124 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 2 + - uid: 3126 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 + - uid: 3127 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 2 + - uid: 3128 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 2 + - uid: 3129 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 2 + - uid: 3132 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 + - uid: 3134 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 2 + - uid: 3135 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 2 + - uid: 3137 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - uid: 3139 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 + - uid: 3140 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 3141 + components: + - type: Transform + pos: -3.5,7.5 + parent: 2 + - uid: 3142 + components: + - type: Transform + pos: -3.5,6.5 + parent: 2 + - uid: 3143 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 + - uid: 3144 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 + - uid: 3145 + components: + - type: Transform + pos: -1.5,6.5 + parent: 2 + - uid: 3146 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 3147 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - uid: 3211 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 3366 + components: + - type: Transform + pos: 13.5,43.5 + parent: 2 + - uid: 3367 + components: + - type: Transform + pos: -5.5,15.5 + parent: 2 + - uid: 3368 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - uid: 3369 + components: + - type: Transform + pos: -5.5,13.5 + parent: 2 + - uid: 3370 + components: + - type: Transform + pos: -5.5,12.5 + parent: 2 + - uid: 3371 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - uid: 3372 + components: + - type: Transform + pos: -5.5,10.5 + parent: 2 + - uid: 3373 + components: + - type: Transform + pos: -4.5,10.5 + parent: 2 + - uid: 3374 + components: + - type: Transform + pos: -3.5,10.5 + parent: 2 + - uid: 3375 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 3376 + components: + - type: Transform + pos: -1.5,10.5 + parent: 2 + - uid: 3377 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 + - uid: 3378 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - uid: 3379 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - uid: 3380 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 3381 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 3382 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 3383 + components: + - type: Transform + pos: 13.5,41.5 + parent: 2 + - uid: 3384 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 3385 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 3386 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 + - uid: 3387 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 3388 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 + - uid: 3389 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 3390 + components: + - type: Transform + pos: 26.5,16.5 + parent: 2 + - uid: 3391 + components: + - type: Transform + pos: 26.5,15.5 + parent: 2 + - uid: 3392 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - uid: 3393 + components: + - type: Transform + pos: 26.5,13.5 + parent: 2 + - uid: 3396 + components: + - type: Transform + pos: 26.5,10.5 + parent: 2 + - uid: 3397 + components: + - type: Transform + pos: 25.5,10.5 + parent: 2 + - uid: 3398 + components: + - type: Transform + pos: 27.5,10.5 + parent: 2 + - uid: 3399 + components: + - type: Transform + pos: 28.5,10.5 + parent: 2 + - uid: 3400 + components: + - type: Transform + pos: 27.5,15.5 + parent: 2 + - uid: 3401 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 + - uid: 3402 + components: + - type: Transform + pos: 29.5,15.5 + parent: 2 + - uid: 3403 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - uid: 3404 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - uid: 3405 + components: + - type: Transform + pos: 32.5,15.5 + parent: 2 + - uid: 3406 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 + - uid: 3407 + components: + - type: Transform + pos: 33.5,14.5 + parent: 2 + - uid: 3408 + components: + - type: Transform + pos: 29.5,10.5 + parent: 2 + - uid: 3409 + components: + - type: Transform + pos: 31.5,10.5 + parent: 2 + - uid: 3411 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 + - uid: 3412 + components: + - type: Transform + pos: 33.5,10.5 + parent: 2 + - uid: 3413 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - uid: 3414 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 + - uid: 3415 + components: + - type: Transform + pos: 24.5,15.5 + parent: 2 + - uid: 3416 + components: + - type: Transform + pos: 23.5,15.5 + parent: 2 + - uid: 3417 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - uid: 3418 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - uid: 3419 + components: + - type: Transform + pos: 20.5,15.5 + parent: 2 + - uid: 3420 + components: + - type: Transform + pos: 19.5,15.5 + parent: 2 + - uid: 3421 + components: + - type: Transform + pos: 18.5,15.5 + parent: 2 + - uid: 3422 + components: + - type: Transform + pos: 17.5,15.5 + parent: 2 + - uid: 3423 + components: + - type: Transform + pos: 16.5,15.5 + parent: 2 + - uid: 3424 + components: + - type: Transform + pos: 15.5,15.5 + parent: 2 + - uid: 3425 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 + - uid: 3426 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 + - uid: 3427 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - uid: 3428 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 3429 + components: + - type: Transform + pos: 10.5,15.5 + parent: 2 + - uid: 3430 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 + - uid: 3431 + components: + - type: Transform + pos: 9.5,14.5 + parent: 2 + - uid: 3432 + components: + - type: Transform + pos: 9.5,13.5 + parent: 2 + - uid: 3433 + components: + - type: Transform + pos: 9.5,12.5 + parent: 2 + - uid: 3434 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 3435 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 + - uid: 3436 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 3437 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - uid: 3438 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 3439 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 3440 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 + - uid: 3441 + components: + - type: Transform + pos: 18.5,14.5 + parent: 2 + - uid: 3442 + components: + - type: Transform + pos: 18.5,13.5 + parent: 2 + - uid: 3443 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 3444 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 3445 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 3446 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 3447 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 + - uid: 3448 + components: + - type: Transform + pos: 21.5,13.5 + parent: 2 + - uid: 3449 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - uid: 3450 + components: + - type: Transform + pos: 21.5,11.5 + parent: 2 + - uid: 3451 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - uid: 3453 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 3454 + components: + - type: Transform + pos: -0.5,18.5 + parent: 2 + - uid: 3455 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - uid: 3456 + components: + - type: Transform + pos: 1.5,18.5 + parent: 2 + - uid: 3457 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 3458 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - uid: 3459 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 3460 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 3461 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - uid: 3462 + components: + - type: Transform + pos: 7.5,18.5 + parent: 2 + - uid: 3463 + components: + - type: Transform + pos: 8.5,18.5 + parent: 2 + - uid: 3464 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 + - uid: 3465 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 + - uid: 3466 + components: + - type: Transform + pos: 7.5,22.5 + parent: 2 + - uid: 3467 + components: + - type: Transform + pos: 8.5,22.5 + parent: 2 + - uid: 3468 + components: + - type: Transform + pos: 9.5,22.5 + parent: 2 + - uid: 3469 + components: + - type: Transform + pos: 10.5,22.5 + parent: 2 + - uid: 3470 + components: + - type: Transform + pos: 11.5,22.5 + parent: 2 + - uid: 3471 + components: + - type: Transform + pos: 12.5,22.5 + parent: 2 + - uid: 3472 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 3473 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - uid: 3474 + components: + - type: Transform + pos: 15.5,22.5 + parent: 2 + - uid: 3475 + components: + - type: Transform + pos: 16.5,22.5 + parent: 2 + - uid: 3476 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - uid: 3477 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 + - uid: 3478 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 + - uid: 3479 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2 + - uid: 3480 + components: + - type: Transform + pos: 7.5,23.5 + parent: 2 + - uid: 3481 + components: + - type: Transform + pos: 7.5,24.5 + parent: 2 + - uid: 3482 + components: + - type: Transform + pos: 7.5,25.5 + parent: 2 + - uid: 3483 + components: + - type: Transform + pos: 7.5,26.5 + parent: 2 + - uid: 3484 + components: + - type: Transform + pos: 7.5,27.5 + parent: 2 + - uid: 3485 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - uid: 3486 + components: + - type: Transform + pos: 7.5,29.5 + parent: 2 + - uid: 3487 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - uid: 3488 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 3489 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 3490 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 + - uid: 3491 + components: + - type: Transform + pos: 13.5,27.5 + parent: 2 + - uid: 3492 + components: + - type: Transform + pos: 13.5,28.5 + parent: 2 + - uid: 3493 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - uid: 3494 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 + - uid: 3495 + components: + - type: Transform + pos: 13.5,31.5 + parent: 2 + - uid: 3496 + components: + - type: Transform + pos: 12.5,31.5 + parent: 2 + - uid: 3497 + components: + - type: Transform + pos: 11.5,31.5 + parent: 2 + - uid: 3498 + components: + - type: Transform + pos: 10.5,31.5 + parent: 2 + - uid: 3499 + components: + - type: Transform + pos: 9.5,31.5 + parent: 2 + - uid: 3500 + components: + - type: Transform + pos: 9.5,32.5 + parent: 2 + - uid: 3501 + components: + - type: Transform + pos: 8.5,32.5 + parent: 2 + - uid: 3502 + components: + - type: Transform + pos: 7.5,32.5 + parent: 2 + - uid: 3503 + components: + - type: Transform + pos: 9.5,33.5 + parent: 2 + - uid: 3504 + components: + - type: Transform + pos: 9.5,34.5 + parent: 2 + - uid: 3505 + components: + - type: Transform + pos: 9.5,35.5 + parent: 2 + - uid: 3506 + components: + - type: Transform + pos: 9.5,36.5 + parent: 2 + - uid: 3507 + components: + - type: Transform + pos: 9.5,37.5 + parent: 2 + - uid: 3508 + components: + - type: Transform + pos: 9.5,38.5 + parent: 2 + - uid: 3510 + components: + - type: Transform + pos: 33.5,23.5 + parent: 2 + - uid: 3511 + components: + - type: Transform + pos: 32.5,23.5 + parent: 2 + - uid: 3512 + components: + - type: Transform + pos: 31.5,23.5 + parent: 2 + - uid: 3513 + components: + - type: Transform + pos: 29.5,23.5 + parent: 2 + - uid: 3514 + components: + - type: Transform + pos: 30.5,23.5 + parent: 2 + - uid: 3515 + components: + - type: Transform + pos: 28.5,23.5 + parent: 2 + - uid: 3516 + components: + - type: Transform + pos: 27.5,23.5 + parent: 2 + - uid: 3517 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 + - uid: 3518 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - uid: 3519 + components: + - type: Transform + pos: 26.5,24.5 + parent: 2 + - uid: 3520 + components: + - type: Transform + pos: 26.5,25.5 + parent: 2 + - uid: 3521 + components: + - type: Transform + pos: 26.5,26.5 + parent: 2 + - uid: 3522 + components: + - type: Transform + pos: 26.5,27.5 + parent: 2 + - uid: 3523 + components: + - type: Transform + pos: 26.5,28.5 + parent: 2 + - uid: 3524 + components: + - type: Transform + pos: 26.5,29.5 + parent: 2 + - uid: 3525 + components: + - type: Transform + pos: 26.5,30.5 + parent: 2 + - uid: 3526 + components: + - type: Transform + pos: 26.5,31.5 + parent: 2 + - uid: 3527 + components: + - type: Transform + pos: 26.5,32.5 + parent: 2 + - uid: 3528 + components: + - type: Transform + pos: 26.5,33.5 + parent: 2 + - uid: 3529 + components: + - type: Transform + pos: 26.5,34.5 + parent: 2 + - uid: 3530 + components: + - type: Transform + pos: 26.5,35.5 + parent: 2 + - uid: 3531 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 + - uid: 3532 + components: + - type: Transform + pos: 28.5,31.5 + parent: 2 + - uid: 3533 + components: + - type: Transform + pos: 29.5,31.5 + parent: 2 + - uid: 3534 + components: + - type: Transform + pos: 30.5,31.5 + parent: 2 + - uid: 3535 + components: + - type: Transform + pos: 25.5,33.5 + parent: 2 + - uid: 3536 + components: + - type: Transform + pos: 24.5,33.5 + parent: 2 + - uid: 3537 + components: + - type: Transform + pos: 23.5,33.5 + parent: 2 + - uid: 3538 + components: + - type: Transform + pos: 22.5,33.5 + parent: 2 + - uid: 3539 + components: + - type: Transform + pos: 21.5,33.5 + parent: 2 + - uid: 3540 + components: + - type: Transform + pos: 20.5,33.5 + parent: 2 + - uid: 3541 + components: + - type: Transform + pos: 19.5,33.5 + parent: 2 + - uid: 3542 + components: + - type: Transform + pos: 19.5,34.5 + parent: 2 + - uid: 3543 + components: + - type: Transform + pos: 19.5,35.5 + parent: 2 + - uid: 3544 + components: + - type: Transform + pos: 19.5,36.5 + parent: 2 + - uid: 3545 + components: + - type: Transform + pos: 19.5,37.5 + parent: 2 + - uid: 3546 + components: + - type: Transform + pos: 19.5,38.5 + parent: 2 + - uid: 3547 + components: + - type: Transform + pos: 18.5,38.5 + parent: 2 + - uid: 3548 + components: + - type: Transform + pos: 17.5,38.5 + parent: 2 + - uid: 3549 + components: + - type: Transform + pos: 16.5,38.5 + parent: 2 + - uid: 3550 + components: + - type: Transform + pos: 15.5,38.5 + parent: 2 + - uid: 3551 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 + - uid: 3552 + components: + - type: Transform + pos: 13.5,38.5 + parent: 2 + - uid: 3553 + components: + - type: Transform + pos: 18.5,35.5 + parent: 2 + - uid: 3554 + components: + - type: Transform + pos: 17.5,35.5 + parent: 2 + - uid: 3555 + components: + - type: Transform + pos: 16.5,35.5 + parent: 2 + - uid: 3556 + components: + - type: Transform + pos: 15.5,35.5 + parent: 2 + - uid: 3557 + components: + - type: Transform + pos: 14.5,35.5 + parent: 2 + - uid: 3558 + components: + - type: Transform + pos: 13.5,35.5 + parent: 2 + - uid: 3559 + components: + - type: Transform + pos: 12.5,35.5 + parent: 2 + - uid: 3560 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 + - uid: 3561 + components: + - type: Transform + pos: 24.5,34.5 + parent: 2 + - uid: 3562 + components: + - type: Transform + pos: 24.5,35.5 + parent: 2 + - uid: 3563 + components: + - type: Transform + pos: 24.5,36.5 + parent: 2 + - uid: 3564 + components: + - type: Transform + pos: 24.5,37.5 + parent: 2 + - uid: 3565 + components: + - type: Transform + pos: 24.5,38.5 + parent: 2 + - uid: 3566 + components: + - type: Transform + pos: 24.5,39.5 + parent: 2 + - uid: 3567 + components: + - type: Transform + pos: 24.5,40.5 + parent: 2 + - uid: 3568 + components: + - type: Transform + pos: 24.5,41.5 + parent: 2 + - uid: 3569 + components: + - type: Transform + pos: 23.5,41.5 + parent: 2 + - uid: 3570 + components: + - type: Transform + pos: 22.5,41.5 + parent: 2 + - uid: 3571 + components: + - type: Transform + pos: 21.5,41.5 + parent: 2 + - uid: 3572 + components: + - type: Transform + pos: 20.5,41.5 + parent: 2 + - uid: 3573 + components: + - type: Transform + pos: 19.5,41.5 + parent: 2 + - uid: 3574 + components: + - type: Transform + pos: 18.5,41.5 + parent: 2 + - uid: 3575 + components: + - type: Transform + pos: 33.5,24.5 + parent: 2 + - uid: 3576 + components: + - type: Transform + pos: 33.5,25.5 + parent: 2 + - uid: 3577 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - uid: 3578 + components: + - type: Transform + pos: 33.5,27.5 + parent: 2 + - uid: 3579 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - uid: 3580 + components: + - type: Transform + pos: 33.5,29.5 + parent: 2 + - uid: 3581 + components: + - type: Transform + pos: 33.5,30.5 + parent: 2 + - uid: 3582 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - uid: 3583 + components: + - type: Transform + pos: 33.5,32.5 + parent: 2 + - uid: 3584 + components: + - type: Transform + pos: 33.5,33.5 + parent: 2 + - uid: 3585 + components: + - type: Transform + pos: 33.5,34.5 + parent: 2 + - uid: 3586 + components: + - type: Transform + pos: 33.5,35.5 + parent: 2 + - uid: 3587 + components: + - type: Transform + pos: 33.5,36.5 + parent: 2 + - uid: 3588 + components: + - type: Transform + pos: 33.5,37.5 + parent: 2 + - uid: 3589 + components: + - type: Transform + pos: 33.5,38.5 + parent: 2 + - uid: 3590 + components: + - type: Transform + pos: 32.5,38.5 + parent: 2 + - uid: 3591 + components: + - type: Transform + pos: 31.5,38.5 + parent: 2 + - uid: 3592 + components: + - type: Transform + pos: 30.5,38.5 + parent: 2 + - uid: 3593 + components: + - type: Transform + pos: 29.5,38.5 + parent: 2 + - uid: 3594 + components: + - type: Transform + pos: 28.5,38.5 + parent: 2 + - uid: 3595 + components: + - type: Transform + pos: 27.5,38.5 + parent: 2 + - uid: 3596 + components: + - type: Transform + pos: 29.5,39.5 + parent: 2 + - uid: 3597 + components: + - type: Transform + pos: 29.5,40.5 + parent: 2 + - uid: 3598 + components: + - type: Transform + pos: 34.5,38.5 + parent: 2 + - uid: 3599 + components: + - type: Transform + pos: 35.5,38.5 + parent: 2 + - uid: 3600 + components: + - type: Transform + pos: 36.5,38.5 + parent: 2 + - uid: 3601 + components: + - type: Transform + pos: 37.5,38.5 + parent: 2 + - uid: 3602 + components: + - type: Transform + pos: 38.5,38.5 + parent: 2 + - uid: 3603 + components: + - type: Transform + pos: 38.5,39.5 + parent: 2 + - uid: 3604 + components: + - type: Transform + pos: 38.5,40.5 + parent: 2 + - uid: 3605 + components: + - type: Transform + pos: 38.5,41.5 + parent: 2 + - uid: 3606 + components: + - type: Transform + pos: 34.5,39.5 + parent: 2 + - uid: 3607 + components: + - type: Transform + pos: 34.5,40.5 + parent: 2 + - uid: 3608 + components: + - type: Transform + pos: 34.5,32.5 + parent: 2 + - uid: 3609 + components: + - type: Transform + pos: 35.5,32.5 + parent: 2 + - uid: 3610 + components: + - type: Transform + pos: 36.5,32.5 + parent: 2 + - uid: 3611 + components: + - type: Transform + pos: 37.5,32.5 + parent: 2 + - uid: 3612 + components: + - type: Transform + pos: 37.5,31.5 + parent: 2 + - uid: 3613 + components: + - type: Transform + pos: 37.5,30.5 + parent: 2 + - uid: 3614 + components: + - type: Transform + pos: 37.5,29.5 + parent: 2 + - uid: 3615 + components: + - type: Transform + pos: 37.5,28.5 + parent: 2 + - uid: 3616 + components: + - type: Transform + pos: 37.5,27.5 + parent: 2 + - uid: 3617 + components: + - type: Transform + pos: 37.5,33.5 + parent: 2 + - uid: 3618 + components: + - type: Transform + pos: 37.5,34.5 + parent: 2 + - uid: 3619 + components: + - type: Transform + pos: 38.5,34.5 + parent: 2 + - uid: 3620 + components: + - type: Transform + pos: 39.5,34.5 + parent: 2 + - uid: 3621 + components: + - type: Transform + pos: 40.5,34.5 + parent: 2 + - uid: 3622 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 + - uid: 3623 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 + - uid: 3624 + components: + - type: Transform + pos: 42.5,35.5 + parent: 2 + - uid: 3625 + components: + - type: Transform + pos: 42.5,36.5 + parent: 2 + - uid: 3626 + components: + - type: Transform + pos: 42.5,37.5 + parent: 2 + - uid: 3627 + components: + - type: Transform + pos: 42.5,38.5 + parent: 2 + - uid: 3628 + components: + - type: Transform + pos: 43.5,38.5 + parent: 2 + - uid: 3629 + components: + - type: Transform + pos: 44.5,38.5 + parent: 2 + - uid: 3630 + components: + - type: Transform + pos: 45.5,38.5 + parent: 2 + - uid: 3631 + components: + - type: Transform + pos: 46.5,38.5 + parent: 2 + - uid: 3632 + components: + - type: Transform + pos: 47.5,38.5 + parent: 2 + - uid: 3633 + components: + - type: Transform + pos: 42.5,39.5 + parent: 2 + - uid: 3634 + components: + - type: Transform + pos: 42.5,40.5 + parent: 2 + - uid: 3635 + components: + - type: Transform + pos: 42.5,41.5 + parent: 2 + - uid: 3636 + components: + - type: Transform + pos: 42.5,42.5 + parent: 2 + - uid: 3637 + components: + - type: Transform + pos: 42.5,33.5 + parent: 2 + - uid: 3638 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 + - uid: 3639 + components: + - type: Transform + pos: 43.5,32.5 + parent: 2 + - uid: 3640 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - uid: 3641 + components: + - type: Transform + pos: 45.5,32.5 + parent: 2 + - uid: 3642 + components: + - type: Transform + pos: 46.5,32.5 + parent: 2 + - uid: 3643 + components: + - type: Transform + pos: 47.5,32.5 + parent: 2 + - uid: 3644 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 + - uid: 3645 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - uid: 3646 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 + - uid: 3647 + components: + - type: Transform + pos: 2.5,9.5 + parent: 2 + - uid: 3648 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - uid: 3649 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 + - uid: 3650 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 3651 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 3652 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 3653 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 3654 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 3655 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 3656 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 3657 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 3658 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 3659 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - uid: 3660 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 3661 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 + - uid: 3662 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 3663 + components: + - type: Transform + pos: 11.5,6.5 + parent: 2 + - uid: 3664 + components: + - type: Transform + pos: 12.5,6.5 + parent: 2 + - uid: 3665 + components: + - type: Transform + pos: 13.5,6.5 + parent: 2 + - uid: 3666 + components: + - type: Transform + pos: 14.5,6.5 + parent: 2 + - uid: 3667 + components: + - type: Transform + pos: 15.5,6.5 + parent: 2 + - uid: 3668 + components: + - type: Transform + pos: 16.5,6.5 + parent: 2 + - uid: 3669 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - uid: 3670 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - uid: 3671 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - uid: 3672 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - uid: 3673 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 + - uid: 3674 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 3675 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 3676 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 3677 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 3678 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 3679 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 3680 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 3681 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - uid: 3682 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 3683 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 3684 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - uid: 3685 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 2 + - uid: 3686 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 + - uid: 3687 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 3697 + components: + - type: Transform + pos: 57.5,48.5 + parent: 2 + - uid: 3698 + components: + - type: Transform + pos: 58.5,48.5 + parent: 2 + - uid: 3699 + components: + - type: Transform + pos: 60.5,48.5 + parent: 2 + - uid: 3700 + components: + - type: Transform + pos: 61.5,48.5 + parent: 2 + - uid: 3701 + components: + - type: Transform + pos: 59.5,48.5 + parent: 2 + - uid: 3702 + components: + - type: Transform + pos: 61.5,49.5 + parent: 2 + - uid: 3703 + components: + - type: Transform + pos: 61.5,50.5 + parent: 2 + - uid: 3704 + components: + - type: Transform + pos: 61.5,51.5 + parent: 2 + - uid: 3705 + components: + - type: Transform + pos: 61.5,52.5 + parent: 2 + - uid: 3706 + components: + - type: Transform + pos: 61.5,53.5 + parent: 2 + - uid: 3707 + components: + - type: Transform + pos: 61.5,54.5 + parent: 2 + - uid: 3708 + components: + - type: Transform + pos: 61.5,55.5 + parent: 2 + - uid: 3709 + components: + - type: Transform + pos: 61.5,56.5 + parent: 2 + - uid: 3710 + components: + - type: Transform + pos: 61.5,57.5 + parent: 2 + - uid: 3711 + components: + - type: Transform + pos: 61.5,58.5 + parent: 2 + - uid: 3712 + components: + - type: Transform + pos: 61.5,59.5 + parent: 2 + - uid: 3713 + components: + - type: Transform + pos: 60.5,59.5 + parent: 2 + - uid: 3714 + components: + - type: Transform + pos: 59.5,59.5 + parent: 2 + - uid: 3715 + components: + - type: Transform + pos: 58.5,59.5 + parent: 2 + - uid: 3716 + components: + - type: Transform + pos: 57.5,59.5 + parent: 2 + - uid: 3717 + components: + - type: Transform + pos: 58.5,60.5 + parent: 2 + - uid: 3718 + components: + - type: Transform + pos: 62.5,52.5 + parent: 2 + - uid: 3719 + components: + - type: Transform + pos: 61.5,48.5 + parent: 2 + - uid: 3720 + components: + - type: Transform + pos: 61.5,47.5 + parent: 2 + - uid: 3721 + components: + - type: Transform + pos: 61.5,46.5 + parent: 2 + - uid: 3722 + components: + - type: Transform + pos: 61.5,45.5 + parent: 2 + - uid: 3723 + components: + - type: Transform + pos: 61.5,44.5 + parent: 2 + - uid: 3724 + components: + - type: Transform + pos: 61.5,43.5 + parent: 2 + - uid: 3725 + components: + - type: Transform + pos: 61.5,41.5 + parent: 2 + - uid: 3726 + components: + - type: Transform + pos: 61.5,40.5 + parent: 2 + - uid: 3727 + components: + - type: Transform + pos: 61.5,39.5 + parent: 2 + - uid: 3728 + components: + - type: Transform + pos: 61.5,38.5 + parent: 2 + - uid: 3729 + components: + - type: Transform + pos: 61.5,37.5 + parent: 2 + - uid: 3730 + components: + - type: Transform + pos: 61.5,42.5 + parent: 2 + - uid: 3731 + components: + - type: Transform + pos: 62.5,45.5 + parent: 2 + - uid: 3732 + components: + - type: Transform + pos: 59.5,49.5 + parent: 2 + - uid: 3733 + components: + - type: Transform + pos: 59.5,47.5 + parent: 2 + - uid: 3734 + components: + - type: Transform + pos: 59.5,46.5 + parent: 2 + - uid: 3735 + components: + - type: Transform + pos: 59.5,45.5 + parent: 2 + - uid: 3736 + components: + - type: Transform + pos: 59.5,44.5 + parent: 2 + - uid: 3737 + components: + - type: Transform + pos: 59.5,50.5 + parent: 2 + - uid: 3738 + components: + - type: Transform + pos: 59.5,51.5 + parent: 2 + - uid: 3739 + components: + - type: Transform + pos: 59.5,52.5 + parent: 2 + - uid: 3740 + components: + - type: Transform + pos: 60.5,37.5 + parent: 2 + - uid: 3741 + components: + - type: Transform + pos: 59.5,37.5 + parent: 2 + - uid: 3742 + components: + - type: Transform + pos: 57.5,37.5 + parent: 2 + - uid: 3743 + components: + - type: Transform + pos: 56.5,37.5 + parent: 2 + - uid: 3744 + components: + - type: Transform + pos: 55.5,37.5 + parent: 2 + - uid: 3746 + components: + - type: Transform + pos: 53.5,37.5 + parent: 2 + - uid: 3747 + components: + - type: Transform + pos: 52.5,37.5 + parent: 2 + - uid: 3748 + components: + - type: Transform + pos: 51.5,37.5 + parent: 2 + - uid: 3749 + components: + - type: Transform + pos: 50.5,37.5 + parent: 2 + - uid: 3750 + components: + - type: Transform + pos: 58.5,37.5 + parent: 2 + - uid: 3751 + components: + - type: Transform + pos: 57.5,38.5 + parent: 2 + - uid: 3752 + components: + - type: Transform + pos: 57.5,39.5 + parent: 2 + - uid: 3753 + components: + - type: Transform + pos: 53.5,38.5 + parent: 2 + - uid: 3754 + components: + - type: Transform + pos: 53.5,39.5 + parent: 2 + - uid: 3755 + components: + - type: Transform + pos: 53.5,40.5 + parent: 2 + - uid: 3756 + components: + - type: Transform + pos: 52.5,40.5 + parent: 2 + - uid: 3757 + components: + - type: Transform + pos: 51.5,40.5 + parent: 2 + - uid: 3758 + components: + - type: Transform + pos: 49.5,29.5 + parent: 2 + - uid: 3759 + components: + - type: Transform + pos: 49.5,30.5 + parent: 2 + - uid: 3760 + components: + - type: Transform + pos: 49.5,31.5 + parent: 2 + - uid: 3761 + components: + - type: Transform + pos: 49.5,32.5 + parent: 2 + - uid: 3762 + components: + - type: Transform + pos: 49.5,33.5 + parent: 2 + - uid: 3763 + components: + - type: Transform + pos: 49.5,34.5 + parent: 2 + - uid: 3764 + components: + - type: Transform + pos: 49.5,35.5 + parent: 2 + - uid: 3765 + components: + - type: Transform + pos: 49.5,36.5 + parent: 2 + - uid: 3766 + components: + - type: Transform + pos: 49.5,37.5 + parent: 2 + - uid: 3767 + components: + - type: Transform + pos: 50.5,29.5 + parent: 2 + - uid: 3768 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 + - uid: 3769 + components: + - type: Transform + pos: 51.5,28.5 + parent: 2 + - uid: 3770 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2 + - uid: 3771 + components: + - type: Transform + pos: 51.5,26.5 + parent: 2 + - uid: 3772 + components: + - type: Transform + pos: 51.5,25.5 + parent: 2 + - uid: 3773 + components: + - type: Transform + pos: 51.5,24.5 + parent: 2 + - uid: 3774 + components: + - type: Transform + pos: 51.5,23.5 + parent: 2 + - uid: 3775 + components: + - type: Transform + pos: 50.5,25.5 + parent: 2 + - uid: 3776 + components: + - type: Transform + pos: 49.5,25.5 + parent: 2 + - uid: 3777 + components: + - type: Transform + pos: 48.5,25.5 + parent: 2 + - uid: 3778 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 3779 + components: + - type: Transform + pos: 46.5,25.5 + parent: 2 + - uid: 3780 + components: + - type: Transform + pos: 45.5,25.5 + parent: 2 + - uid: 3781 + components: + - type: Transform + pos: 44.5,25.5 + parent: 2 + - uid: 3782 + components: + - type: Transform + pos: 43.5,25.5 + parent: 2 + - uid: 3783 + components: + - type: Transform + pos: 42.5,25.5 + parent: 2 + - uid: 3784 + components: + - type: Transform + pos: 42.5,26.5 + parent: 2 + - uid: 3785 + components: + - type: Transform + pos: 42.5,27.5 + parent: 2 + - uid: 3786 + components: + - type: Transform + pos: 42.5,28.5 + parent: 2 + - uid: 3787 + components: + - type: Transform + pos: 43.5,28.5 + parent: 2 + - uid: 3788 + components: + - type: Transform + pos: 44.5,28.5 + parent: 2 + - uid: 3789 + components: + - type: Transform + pos: 45.5,28.5 + parent: 2 + - uid: 3790 + components: + - type: Transform + pos: 44.5,24.5 + parent: 2 + - uid: 3791 + components: + - type: Transform + pos: 44.5,23.5 + parent: 2 + - uid: 3792 + components: + - type: Transform + pos: 43.5,23.5 + parent: 2 + - uid: 3793 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 3794 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - uid: 3795 + components: + - type: Transform + pos: 45.5,20.5 + parent: 2 + - uid: 3796 + components: + - type: Transform + pos: 43.5,20.5 + parent: 2 + - uid: 3797 + components: + - type: Transform + pos: 44.5,20.5 + parent: 2 + - uid: 3798 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 + - uid: 3799 + components: + - type: Transform + pos: 43.5,22.5 + parent: 2 + - uid: 3800 + components: + - type: Transform + pos: 42.5,23.5 + parent: 2 + - uid: 3801 + components: + - type: Transform + pos: 41.5,23.5 + parent: 2 + - uid: 3802 + components: + - type: Transform + pos: 40.5,23.5 + parent: 2 + - uid: 3803 + components: + - type: Transform + pos: 39.5,23.5 + parent: 2 + - uid: 3804 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - uid: 3806 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 2 + - uid: 3807 + components: + - type: Transform + pos: 54.5,31.5 + parent: 2 + - uid: 3808 + components: + - type: Transform + pos: 54.5,32.5 + parent: 2 + - uid: 3809 + components: + - type: Transform + pos: 54.5,33.5 + parent: 2 + - uid: 3810 + components: + - type: Transform + pos: 54.5,29.5 + parent: 2 + - uid: 3811 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 + - uid: 3812 + components: + - type: Transform + pos: 54.5,26.5 + parent: 2 + - uid: 3813 + components: + - type: Transform + pos: 54.5,25.5 + parent: 2 + - uid: 3814 + components: + - type: Transform + pos: 54.5,24.5 + parent: 2 + - uid: 3815 + components: + - type: Transform + pos: 54.5,28.5 + parent: 2 + - uid: 3816 + components: + - type: Transform + pos: 54.5,22.5 + parent: 2 + - uid: 3817 + components: + - type: Transform + pos: 54.5,21.5 + parent: 2 + - uid: 3818 + components: + - type: Transform + pos: 54.5,20.5 + parent: 2 + - uid: 3819 + components: + - type: Transform + pos: 54.5,23.5 + parent: 2 + - uid: 3820 + components: + - type: Transform + pos: 53.5,20.5 + parent: 2 + - uid: 3821 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 3822 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - uid: 3824 + components: + - type: Transform + pos: 57.5,30.5 + parent: 2 + - uid: 3825 + components: + - type: Transform + pos: 62.5,28.5 + parent: 2 + - uid: 3826 + components: + - type: Transform + pos: 62.5,27.5 + parent: 2 + - uid: 3827 + components: + - type: Transform + pos: 60.5,30.5 + parent: 2 + - uid: 3828 + components: + - type: Transform + pos: 62.5,26.5 + parent: 2 + - uid: 3829 + components: + - type: Transform + pos: 57.5,31.5 + parent: 2 + - uid: 3830 + components: + - type: Transform + pos: 57.5,32.5 + parent: 2 + - uid: 3831 + components: + - type: Transform + pos: 57.5,33.5 + parent: 2 + - uid: 3832 + components: + - type: Transform + pos: 58.5,33.5 + parent: 2 + - uid: 3833 + components: + - type: Transform + pos: 59.5,33.5 + parent: 2 + - uid: 3834 + components: + - type: Transform + pos: 60.5,33.5 + parent: 2 + - uid: 3835 + components: + - type: Transform + pos: 61.5,33.5 + parent: 2 + - uid: 3836 + components: + - type: Transform + pos: 62.5,33.5 + parent: 2 + - uid: 3837 + components: + - type: Transform + pos: 63.5,33.5 + parent: 2 + - uid: 3838 + components: + - type: Transform + pos: 58.5,29.5 + parent: 2 + - uid: 3839 + components: + - type: Transform + pos: 59.5,29.5 + parent: 2 + - uid: 3840 + components: + - type: Transform + pos: 60.5,29.5 + parent: 2 + - uid: 3841 + components: + - type: Transform + pos: 57.5,29.5 + parent: 2 + - uid: 3842 + components: + - type: Transform + pos: 62.5,29.5 + parent: 2 + - uid: 3843 + components: + - type: Transform + pos: 63.5,29.5 + parent: 2 + - uid: 3844 + components: + - type: Transform + pos: 61.5,29.5 + parent: 2 + - uid: 3845 + components: + - type: Transform + pos: 62.5,25.5 + parent: 2 + - uid: 3846 + components: + - type: Transform + pos: 62.5,24.5 + parent: 2 + - uid: 3847 + components: + - type: Transform + pos: 62.5,23.5 + parent: 2 + - uid: 3848 + components: + - type: Transform + pos: 62.5,22.5 + parent: 2 + - uid: 3849 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 + - uid: 3850 + components: + - type: Transform + pos: 62.5,21.5 + parent: 2 + - uid: 3851 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - uid: 3852 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - uid: 3853 + components: + - type: Transform + pos: 57.5,26.5 + parent: 2 + - uid: 3854 + components: + - type: Transform + pos: 57.5,25.5 + parent: 2 + - uid: 3855 + components: + - type: Transform + pos: 57.5,24.5 + parent: 2 + - uid: 3856 + components: + - type: Transform + pos: 57.5,23.5 + parent: 2 + - uid: 3857 + components: + - type: Transform + pos: 57.5,22.5 + parent: 2 + - uid: 3858 + components: + - type: Transform + pos: 57.5,21.5 + parent: 2 + - uid: 3859 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - uid: 3860 + components: + - type: Transform + pos: 58.5,25.5 + parent: 2 + - uid: 3861 + components: + - type: Transform + pos: 59.5,25.5 + parent: 2 + - uid: 3871 + components: + - type: Transform + pos: 36.5,21.5 + parent: 2 + - uid: 3872 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 + - uid: 3873 + components: + - type: Transform + pos: 37.5,21.5 + parent: 2 + - uid: 3874 + components: + - type: Transform + pos: 38.5,21.5 + parent: 2 + - uid: 3875 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 + - uid: 3876 + components: + - type: Transform + pos: 39.5,19.5 + parent: 2 + - uid: 3877 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 + - uid: 3878 + components: + - type: Transform + pos: 39.5,17.5 + parent: 2 + - uid: 3879 + components: + - type: Transform + pos: 39.5,16.5 + parent: 2 + - uid: 3880 + components: + - type: Transform + pos: 39.5,15.5 + parent: 2 + - uid: 3881 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 3882 + components: + - type: Transform + pos: 39.5,13.5 + parent: 2 + - uid: 3883 + components: + - type: Transform + pos: 38.5,12.5 + parent: 2 + - uid: 3884 + components: + - type: Transform + pos: 38.5,11.5 + parent: 2 + - uid: 3885 + components: + - type: Transform + pos: 38.5,10.5 + parent: 2 + - uid: 3886 + components: + - type: Transform + pos: 38.5,9.5 + parent: 2 + - uid: 3887 + components: + - type: Transform + pos: 38.5,13.5 + parent: 2 + - uid: 3888 + components: + - type: Transform + pos: 38.5,7.5 + parent: 2 + - uid: 3889 + components: + - type: Transform + pos: 38.5,6.5 + parent: 2 + - uid: 3890 + components: + - type: Transform + pos: 38.5,5.5 + parent: 2 + - uid: 3891 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2 + - uid: 3892 + components: + - type: Transform + pos: 37.5,10.5 + parent: 2 + - uid: 3893 + components: + - type: Transform + pos: 37.5,7.5 + parent: 2 + - uid: 3894 + components: + - type: Transform + pos: 36.5,7.5 + parent: 2 + - uid: 3895 + components: + - type: Transform + pos: 35.5,7.5 + parent: 2 + - uid: 3896 + components: + - type: Transform + pos: 34.5,7.5 + parent: 2 + - uid: 3897 + components: + - type: Transform + pos: 33.5,7.5 + parent: 2 + - uid: 3898 + components: + - type: Transform + pos: 32.5,7.5 + parent: 2 + - uid: 3899 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - uid: 3900 + components: + - type: Transform + pos: 30.5,7.5 + parent: 2 + - uid: 3901 + components: + - type: Transform + pos: 29.5,7.5 + parent: 2 + - uid: 3902 + components: + - type: Transform + pos: 28.5,7.5 + parent: 2 + - uid: 3903 + components: + - type: Transform + pos: 27.5,7.5 + parent: 2 + - uid: 3904 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 3905 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 3906 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 3907 + components: + - type: Transform + pos: 23.5,7.5 + parent: 2 + - uid: 3908 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - uid: 3909 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - uid: 3910 + components: + - type: Transform + pos: 35.5,4.5 + parent: 2 + - uid: 3911 + components: + - type: Transform + pos: 34.5,4.5 + parent: 2 + - uid: 3912 + components: + - type: Transform + pos: 33.5,4.5 + parent: 2 + - uid: 3913 + components: + - type: Transform + pos: 32.5,4.5 + parent: 2 + - uid: 3914 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 + - uid: 3915 + components: + - type: Transform + pos: 30.5,4.5 + parent: 2 + - uid: 3916 + components: + - type: Transform + pos: 37.5,4.5 + parent: 2 + - uid: 3917 + components: + - type: Transform + pos: 29.5,4.5 + parent: 2 + - uid: 3918 + components: + - type: Transform + pos: 28.5,4.5 + parent: 2 + - uid: 3919 + components: + - type: Transform + pos: 27.5,4.5 + parent: 2 + - uid: 3920 + components: + - type: Transform + pos: 26.5,4.5 + parent: 2 + - uid: 3921 + components: + - type: Transform + pos: 25.5,4.5 + parent: 2 + - uid: 3922 + components: + - type: Transform + pos: 24.5,4.5 + parent: 2 + - uid: 3923 + components: + - type: Transform + pos: 23.5,4.5 + parent: 2 + - uid: 3924 + components: + - type: Transform + pos: 40.5,16.5 + parent: 2 + - uid: 3925 + components: + - type: Transform + pos: 41.5,16.5 + parent: 2 + - uid: 3926 + components: + - type: Transform + pos: 42.5,16.5 + parent: 2 + - uid: 3927 + components: + - type: Transform + pos: 43.5,16.5 + parent: 2 + - uid: 3928 + components: + - type: Transform + pos: 44.5,16.5 + parent: 2 + - uid: 3929 + components: + - type: Transform + pos: 45.5,16.5 + parent: 2 + - uid: 3930 + components: + - type: Transform + pos: 46.5,16.5 + parent: 2 + - uid: 3931 + components: + - type: Transform + pos: 47.5,16.5 + parent: 2 + - uid: 3932 + components: + - type: Transform + pos: 48.5,16.5 + parent: 2 + - uid: 3933 + components: + - type: Transform + pos: 49.5,16.5 + parent: 2 + - uid: 3934 + components: + - type: Transform + pos: 50.5,16.5 + parent: 2 + - uid: 3935 + components: + - type: Transform + pos: 51.5,16.5 + parent: 2 + - uid: 3936 + components: + - type: Transform + pos: 52.5,16.5 + parent: 2 + - uid: 3937 + components: + - type: Transform + pos: 53.5,16.5 + parent: 2 + - uid: 3938 + components: + - type: Transform + pos: 54.5,16.5 + parent: 2 + - uid: 3939 + components: + - type: Transform + pos: 55.5,16.5 + parent: 2 + - uid: 3940 + components: + - type: Transform + pos: 56.5,16.5 + parent: 2 + - uid: 3941 + components: + - type: Transform + pos: 57.5,16.5 + parent: 2 + - uid: 3942 + components: + - type: Transform + pos: 58.5,16.5 + parent: 2 + - uid: 3943 + components: + - type: Transform + pos: 59.5,16.5 + parent: 2 + - uid: 3944 + components: + - type: Transform + pos: 60.5,16.5 + parent: 2 + - uid: 3945 + components: + - type: Transform + pos: 61.5,16.5 + parent: 2 + - uid: 3946 + components: + - type: Transform + pos: 62.5,16.5 + parent: 2 + - uid: 3947 + components: + - type: Transform + pos: 59.5,17.5 + parent: 2 + - uid: 3948 + components: + - type: Transform + pos: 58.5,15.5 + parent: 2 + - uid: 3949 + components: + - type: Transform + pos: 58.5,14.5 + parent: 2 + - uid: 3950 + components: + - type: Transform + pos: 58.5,13.5 + parent: 2 + - uid: 3951 + components: + - type: Transform + pos: 58.5,12.5 + parent: 2 + - uid: 3952 + components: + - type: Transform + pos: 58.5,10.5 + parent: 2 + - uid: 3953 + components: + - type: Transform + pos: 58.5,11.5 + parent: 2 + - uid: 3954 + components: + - type: Transform + pos: 58.5,9.5 + parent: 2 + - uid: 3955 + components: + - type: Transform + pos: 58.5,8.5 + parent: 2 + - uid: 3956 + components: + - type: Transform + pos: 58.5,7.5 + parent: 2 + - uid: 3958 + components: + - type: Transform + pos: 58.5,5.5 + parent: 2 + - uid: 3959 + components: + - type: Transform + pos: 58.5,4.5 + parent: 2 + - uid: 3960 + components: + - type: Transform + pos: 58.5,3.5 + parent: 2 + - uid: 3961 + components: + - type: Transform + pos: 58.5,2.5 + parent: 2 + - uid: 3962 + components: + - type: Transform + pos: 58.5,1.5 + parent: 2 + - uid: 3963 + components: + - type: Transform + pos: 59.5,1.5 + parent: 2 + - uid: 3964 + components: + - type: Transform + pos: 60.5,1.5 + parent: 2 + - uid: 3965 + components: + - type: Transform + pos: 61.5,1.5 + parent: 2 + - uid: 3966 + components: + - type: Transform + pos: 62.5,1.5 + parent: 2 + - uid: 3967 + components: + - type: Transform + pos: 63.5,1.5 + parent: 2 + - uid: 3968 + components: + - type: Transform + pos: 64.5,1.5 + parent: 2 + - uid: 3969 + components: + - type: Transform + pos: 65.5,1.5 + parent: 2 + - uid: 3970 + components: + - type: Transform + pos: 58.5,0.5 + parent: 2 + - uid: 3971 + components: + - type: Transform + pos: 65.5,0.5 + parent: 2 + - uid: 3974 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 2 + - uid: 3975 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 2 + - uid: 3976 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 + - uid: 3977 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 2 + - uid: 3978 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - uid: 3979 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 2 + - uid: 3980 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 2 + - uid: 3981 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 2 + - uid: 3982 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 2 + - uid: 3983 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 2 + - uid: 3984 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 2 + - uid: 3985 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 2 + - uid: 3986 + components: + - type: Transform + pos: 33.5,-14.5 + parent: 2 + - uid: 3987 + components: + - type: Transform + pos: 34.5,-14.5 + parent: 2 + - uid: 3988 + components: + - type: Transform + pos: 35.5,-14.5 + parent: 2 + - uid: 3989 + components: + - type: Transform + pos: 36.5,-14.5 + parent: 2 + - uid: 3990 + components: + - type: Transform + pos: 37.5,-14.5 + parent: 2 + - uid: 3991 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - uid: 3992 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 2 + - uid: 3993 + components: + - type: Transform + pos: 40.5,-14.5 + parent: 2 + - uid: 3994 + components: + - type: Transform + pos: 41.5,-14.5 + parent: 2 + - uid: 3995 + components: + - type: Transform + pos: 42.5,-14.5 + parent: 2 + - uid: 3996 + components: + - type: Transform + pos: 43.5,-14.5 + parent: 2 + - uid: 3997 + components: + - type: Transform + pos: 44.5,-14.5 + parent: 2 + - uid: 3998 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 + - uid: 3999 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 2 + - uid: 4000 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 4001 + components: + - type: Transform + pos: 22.5,-10.5 + parent: 2 + - uid: 4002 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 2 + - uid: 4003 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 2 + - uid: 4004 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 2 + - uid: 4005 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 + - uid: 4006 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 2 + - uid: 4007 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 2 + - uid: 4008 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 + - uid: 4009 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 2 + - uid: 4010 + components: + - type: Transform + pos: 45.5,-14.5 + parent: 2 + - uid: 4011 + components: + - type: Transform + pos: 45.5,-15.5 + parent: 2 + - uid: 4012 + components: + - type: Transform + pos: 45.5,-16.5 + parent: 2 + - uid: 4013 + components: + - type: Transform + pos: 46.5,-16.5 + parent: 2 + - uid: 4014 + components: + - type: Transform + pos: 47.5,-16.5 + parent: 2 + - uid: 4015 + components: + - type: Transform + pos: 48.5,-16.5 + parent: 2 + - uid: 4016 + components: + - type: Transform + pos: 49.5,-16.5 + parent: 2 + - uid: 4017 + components: + - type: Transform + pos: 50.5,-16.5 + parent: 2 + - uid: 4018 + components: + - type: Transform + pos: 51.5,-16.5 + parent: 2 + - uid: 4038 + components: + - type: Transform + pos: 48.5,-15.5 + parent: 2 + - uid: 4039 + components: + - type: Transform + pos: 48.5,-14.5 + parent: 2 + - uid: 4040 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 2 + - uid: 4041 + components: + - type: Transform + pos: 46.5,-14.5 + parent: 2 + - uid: 4042 + components: + - type: Transform + pos: 46.5,-13.5 + parent: 2 + - uid: 4043 + components: + - type: Transform + pos: 46.5,-12.5 + parent: 2 + - uid: 4044 + components: + - type: Transform + pos: 46.5,-11.5 + parent: 2 + - uid: 4045 + components: + - type: Transform + pos: 46.5,-10.5 + parent: 2 + - uid: 4046 + components: + - type: Transform + pos: 46.5,-9.5 + parent: 2 + - uid: 4047 + components: + - type: Transform + pos: 46.5,-8.5 + parent: 2 + - uid: 4048 + components: + - type: Transform + pos: 46.5,-6.5 + parent: 2 + - uid: 4049 + components: + - type: Transform + pos: 46.5,-7.5 + parent: 2 + - uid: 4050 + components: + - type: Transform + pos: 46.5,-4.5 + parent: 2 + - uid: 4051 + components: + - type: Transform + pos: 46.5,-5.5 + parent: 2 + - uid: 4052 + components: + - type: Transform + pos: 46.5,-3.5 + parent: 2 + - uid: 4053 + components: + - type: Transform + pos: 46.5,-2.5 + parent: 2 + - uid: 4054 + components: + - type: Transform + pos: 45.5,-2.5 + parent: 2 + - uid: 4055 + components: + - type: Transform + pos: 44.5,-2.5 + parent: 2 + - uid: 4056 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 2 + - uid: 4057 + components: + - type: Transform + pos: 42.5,-2.5 + parent: 2 + - uid: 4058 + components: + - type: Transform + pos: 41.5,-2.5 + parent: 2 + - uid: 4059 + components: + - type: Transform + pos: 40.5,-2.5 + parent: 2 + - uid: 4060 + components: + - type: Transform + pos: 39.5,-2.5 + parent: 2 + - uid: 4061 + components: + - type: Transform + pos: 39.5,-0.5 + parent: 2 + - uid: 4062 + components: + - type: Transform + pos: 39.5,-1.5 + parent: 2 + - uid: 4063 + components: + - type: Transform + pos: 39.5,0.5 + parent: 2 + - uid: 4064 + components: + - type: Transform + pos: 38.5,0.5 + parent: 2 + - uid: 4065 + components: + - type: Transform + pos: 38.5,1.5 + parent: 2 + - uid: 4066 + components: + - type: Transform + pos: 38.5,2.5 + parent: 2 + - uid: 4082 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 + - uid: 4092 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 + - uid: 4093 + components: + - type: Transform + pos: 35.5,1.5 + parent: 2 + - uid: 4094 + components: + - type: Transform + pos: 35.5,2.5 + parent: 2 + - uid: 4095 + components: + - type: Transform + pos: 34.5,2.5 + parent: 2 + - uid: 4096 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 2 + - uid: 4097 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 2 + - uid: 4098 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 2 + - uid: 4099 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 4100 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 2 + - uid: 4101 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 2 + - uid: 4102 + components: + - type: Transform + pos: 44.5,-9.5 + parent: 2 + - uid: 4103 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 2 + - uid: 4104 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 2 + - uid: 4105 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 2 + - uid: 4106 + components: + - type: Transform + pos: -3.5,15.5 + parent: 2 + - uid: 4107 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 2 + - uid: 4108 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - uid: 4109 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 4110 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 + - uid: 4111 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 + - uid: 4112 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 2 + - uid: 4113 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 2 + - uid: 4114 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 2 + - uid: 4115 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - uid: 4116 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 2 + - uid: 4117 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - uid: 4118 + components: + - type: Transform + pos: 29.5,1.5 + parent: 2 + - uid: 4119 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 + - uid: 4120 + components: + - type: Transform + pos: 24.5,1.5 + parent: 2 + - uid: 4121 + components: + - type: Transform + pos: 25.5,1.5 + parent: 2 + - uid: 4122 + components: + - type: Transform + pos: 26.5,1.5 + parent: 2 + - uid: 4123 + components: + - type: Transform + pos: 27.5,1.5 + parent: 2 + - uid: 4124 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 4125 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 2 + - uid: 4126 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 + - uid: 4127 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 2 + - uid: 4128 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 2 + - uid: 4130 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 2 + - uid: 4131 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 2 + - uid: 4132 + components: + - type: Transform + pos: 43.5,-9.5 + parent: 2 + - uid: 4133 + components: + - type: Transform + pos: 42.5,-9.5 + parent: 2 + - uid: 4134 + components: + - type: Transform + pos: 40.5,-9.5 + parent: 2 + - uid: 4135 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 2 + - uid: 4136 + components: + - type: Transform + pos: 41.5,-9.5 + parent: 2 + - uid: 4137 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 + - uid: 4138 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 2 + - uid: 4139 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 4140 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - uid: 4141 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 2 + - uid: 4142 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 2 + - uid: 4143 + components: + - type: Transform + pos: 43.5,-10.5 + parent: 2 + - uid: 4146 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 2 + - uid: 4147 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 2 + - uid: 4148 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 2 + - uid: 4149 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 2 + - uid: 4150 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 2 + - uid: 4151 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 2 + - uid: 4152 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 + - uid: 4153 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 4154 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 2 + - uid: 4155 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - uid: 4156 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 2 + - uid: 4157 + components: + - type: Transform + pos: 26.5,-8.5 + parent: 2 + - uid: 4158 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 + - uid: 4159 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 2 + - uid: 4160 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 2 + - uid: 4161 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 2 + - uid: 4162 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 + - uid: 4163 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - uid: 4164 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - uid: 4165 + components: + - type: Transform + pos: 38.5,-6.5 + parent: 2 + - uid: 4166 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 2 + - uid: 4167 + components: + - type: Transform + pos: 40.5,-6.5 + parent: 2 + - uid: 4168 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 2 + - uid: 4169 + components: + - type: Transform + pos: 42.5,-6.5 + parent: 2 + - uid: 4170 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - uid: 4171 + components: + - type: Transform + pos: 44.5,-6.5 + parent: 2 + - uid: 4172 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 2 + - uid: 4173 + components: + - type: Transform + pos: 43.5,-0.5 + parent: 2 + - uid: 4174 + components: + - type: Transform + pos: 44.5,-0.5 + parent: 2 + - uid: 4175 + components: + - type: Transform + pos: 45.5,-0.5 + parent: 2 + - uid: 4176 + components: + - type: Transform + pos: 46.5,-0.5 + parent: 2 + - uid: 4177 + components: + - type: Transform + pos: 45.5,0.5 + parent: 2 + - uid: 4178 + components: + - type: Transform + pos: 45.5,1.5 + parent: 2 + - uid: 4179 + components: + - type: Transform + pos: 45.5,2.5 + parent: 2 + - uid: 4180 + components: + - type: Transform + pos: 45.5,3.5 + parent: 2 + - uid: 4181 + components: + - type: Transform + pos: 45.5,4.5 + parent: 2 + - uid: 4182 + components: + - type: Transform + pos: 45.5,5.5 + parent: 2 + - uid: 4183 + components: + - type: Transform + pos: 45.5,6.5 + parent: 2 + - uid: 4184 + components: + - type: Transform + pos: 45.5,7.5 + parent: 2 + - uid: 4185 + components: + - type: Transform + pos: 45.5,8.5 + parent: 2 + - uid: 4186 + components: + - type: Transform + pos: 44.5,8.5 + parent: 2 + - uid: 4187 + components: + - type: Transform + pos: 44.5,9.5 + parent: 2 + - uid: 4188 + components: + - type: Transform + pos: 44.5,10.5 + parent: 2 + - uid: 4189 + components: + - type: Transform + pos: 44.5,11.5 + parent: 2 + - uid: 4190 + components: + - type: Transform + pos: 44.5,12.5 + parent: 2 + - uid: 4191 + components: + - type: Transform + pos: 43.5,11.5 + parent: 2 + - uid: 4192 + components: + - type: Transform + pos: 42.5,11.5 + parent: 2 + - uid: 4193 + components: + - type: Transform + pos: 41.5,11.5 + parent: 2 + - uid: 4194 + components: + - type: Transform + pos: 44.5,6.5 + parent: 2 + - uid: 4195 + components: + - type: Transform + pos: 43.5,6.5 + parent: 2 + - uid: 4196 + components: + - type: Transform + pos: 42.5,6.5 + parent: 2 + - uid: 4197 + components: + - type: Transform + pos: 41.5,6.5 + parent: 2 + - uid: 4198 + components: + - type: Transform + pos: 46.5,8.5 + parent: 2 + - uid: 4199 + components: + - type: Transform + pos: 47.5,8.5 + parent: 2 + - uid: 4200 + components: + - type: Transform + pos: 49.5,8.5 + parent: 2 + - uid: 4201 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - uid: 4202 + components: + - type: Transform + pos: 48.5,8.5 + parent: 2 + - uid: 4203 + components: + - type: Transform + pos: 50.5,9.5 + parent: 2 + - uid: 4204 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 + - uid: 4205 + components: + - type: Transform + pos: 50.5,11.5 + parent: 2 + - uid: 4206 + components: + - type: Transform + pos: 50.5,12.5 + parent: 2 + - uid: 4207 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 + - uid: 4208 + components: + - type: Transform + pos: 51.5,13.5 + parent: 2 + - uid: 4209 + components: + - type: Transform + pos: 52.5,13.5 + parent: 2 + - uid: 4210 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 4211 + components: + - type: Transform + pos: 54.5,13.5 + parent: 2 + - uid: 4212 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 4213 + components: + - type: Transform + pos: 48.5,11.5 + parent: 2 + - uid: 4214 + components: + - type: Transform + pos: 47.5,11.5 + parent: 2 + - uid: 4215 + components: + - type: Transform + pos: 46.5,11.5 + parent: 2 + - uid: 4216 + components: + - type: Transform + pos: 48.5,7.5 + parent: 2 + - uid: 4217 + components: + - type: Transform + pos: 48.5,6.5 + parent: 2 + - uid: 4218 + components: + - type: Transform + pos: 48.5,5.5 + parent: 2 + - uid: 4219 + components: + - type: Transform + pos: 48.5,4.5 + parent: 2 + - uid: 4220 + components: + - type: Transform + pos: 48.5,3.5 + parent: 2 + - uid: 4221 + components: + - type: Transform + pos: 48.5,2.5 + parent: 2 + - uid: 4222 + components: + - type: Transform + pos: 48.5,1.5 + parent: 2 + - uid: 4223 + components: + - type: Transform + pos: 48.5,0.5 + parent: 2 + - uid: 4224 + components: + - type: Transform + pos: 48.5,-0.5 + parent: 2 + - uid: 4225 + components: + - type: Transform + pos: 48.5,-1.5 + parent: 2 + - uid: 4226 + components: + - type: Transform + pos: 49.5,0.5 + parent: 2 + - uid: 4227 + components: + - type: Transform + pos: 50.5,0.5 + parent: 2 + - uid: 4228 + components: + - type: Transform + pos: 51.5,0.5 + parent: 2 + - uid: 4229 + components: + - type: Transform + pos: 52.5,0.5 + parent: 2 + - uid: 4230 + components: + - type: Transform + pos: 53.5,0.5 + parent: 2 + - uid: 4231 + components: + - type: Transform + pos: 54.5,0.5 + parent: 2 + - uid: 4232 + components: + - type: Transform + pos: 49.5,4.5 + parent: 2 + - uid: 4233 + components: + - type: Transform + pos: 50.5,4.5 + parent: 2 + - uid: 4234 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2 + - uid: 4235 + components: + - type: Transform + pos: 52.5,4.5 + parent: 2 + - uid: 4236 + components: + - type: Transform + pos: 53.5,4.5 + parent: 2 + - uid: 4237 + components: + - type: Transform + pos: 54.5,4.5 + parent: 2 + - uid: 4238 + components: + - type: Transform + pos: 53.5,5.5 + parent: 2 + - uid: 4239 + components: + - type: Transform + pos: 53.5,6.5 + parent: 2 + - uid: 4240 + components: + - type: Transform + pos: 53.5,7.5 + parent: 2 + - uid: 4241 + components: + - type: Transform + pos: 53.5,8.5 + parent: 2 + - uid: 4244 + components: + - type: Transform + pos: 33.5,22.5 + parent: 2 + - uid: 4245 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 + - uid: 4246 + components: + - type: Transform + pos: 34.5,21.5 + parent: 2 + - uid: 4247 + components: + - type: Transform + pos: 35.5,21.5 + parent: 2 + - uid: 4507 + components: + - type: Transform + pos: 27.5,11.5 + parent: 2 + - uid: 4625 + components: + - type: Transform + pos: 43.5,52.5 + parent: 2 + - uid: 4626 + components: + - type: Transform + pos: 43.5,50.5 + parent: 2 + - uid: 4627 + components: + - type: Transform + pos: 43.5,51.5 + parent: 2 + - uid: 4628 + components: + - type: Transform + pos: 44.5,50.5 + parent: 2 + - uid: 4629 + components: + - type: Transform + pos: 45.5,50.5 + parent: 2 + - uid: 4630 + components: + - type: Transform + pos: 46.5,50.5 + parent: 2 + - uid: 4631 + components: + - type: Transform + pos: 47.5,50.5 + parent: 2 + - uid: 4632 + components: + - type: Transform + pos: 48.5,50.5 + parent: 2 + - uid: 4633 + components: + - type: Transform + pos: 49.5,50.5 + parent: 2 + - uid: 4634 + components: + - type: Transform + pos: 42.5,50.5 + parent: 2 + - uid: 4635 + components: + - type: Transform + pos: 41.5,50.5 + parent: 2 + - uid: 4636 + components: + - type: Transform + pos: 40.5,50.5 + parent: 2 + - uid: 4637 + components: + - type: Transform + pos: 39.5,50.5 + parent: 2 + - uid: 4638 + components: + - type: Transform + pos: 38.5,50.5 + parent: 2 + - uid: 4639 + components: + - type: Transform + pos: 37.5,50.5 + parent: 2 + - uid: 4640 + components: + - type: Transform + pos: 37.5,54.5 + parent: 2 + - uid: 4641 + components: + - type: Transform + pos: 37.5,51.5 + parent: 2 + - uid: 4642 + components: + - type: Transform + pos: 37.5,53.5 + parent: 2 + - uid: 4643 + components: + - type: Transform + pos: 37.5,54.5 + parent: 2 + - uid: 4644 + components: + - type: Transform + pos: 37.5,52.5 + parent: 2 + - uid: 4645 + components: + - type: Transform + pos: 36.5,54.5 + parent: 2 + - uid: 4646 + components: + - type: Transform + pos: 35.5,54.5 + parent: 2 + - uid: 4647 + components: + - type: Transform + pos: 34.5,54.5 + parent: 2 + - uid: 4648 + components: + - type: Transform + pos: 33.5,54.5 + parent: 2 + - uid: 4649 + components: + - type: Transform + pos: 32.5,54.5 + parent: 2 + - uid: 4650 + components: + - type: Transform + pos: 31.5,54.5 + parent: 2 + - uid: 4651 + components: + - type: Transform + pos: 30.5,54.5 + parent: 2 + - uid: 4652 + components: + - type: Transform + pos: 34.5,53.5 + parent: 2 + - uid: 4653 + components: + - type: Transform + pos: 34.5,52.5 + parent: 2 + - uid: 4654 + components: + - type: Transform + pos: 34.5,51.5 + parent: 2 + - uid: 4655 + components: + - type: Transform + pos: 34.5,50.5 + parent: 2 + - uid: 4656 + components: + - type: Transform + pos: 33.5,50.5 + parent: 2 + - uid: 4657 + components: + - type: Transform + pos: 32.5,50.5 + parent: 2 + - uid: 4658 + components: + - type: Transform + pos: 31.5,50.5 + parent: 2 + - uid: 4659 + components: + - type: Transform + pos: 30.5,50.5 + parent: 2 + - uid: 4660 + components: + - type: Transform + pos: 29.5,50.5 + parent: 2 + - uid: 4661 + components: + - type: Transform + pos: 28.5,50.5 + parent: 2 + - uid: 4662 + components: + - type: Transform + pos: 27.5,50.5 + parent: 2 + - uid: 4663 + components: + - type: Transform + pos: 27.5,51.5 + parent: 2 + - uid: 4664 + components: + - type: Transform + pos: 27.5,52.5 + parent: 2 + - uid: 4665 + components: + - type: Transform + pos: 27.5,53.5 + parent: 2 + - uid: 4666 + components: + - type: Transform + pos: 27.5,54.5 + parent: 2 + - uid: 4667 + components: + - type: Transform + pos: 27.5,55.5 + parent: 2 + - uid: 4668 + components: + - type: Transform + pos: 27.5,56.5 + parent: 2 + - uid: 4669 + components: + - type: Transform + pos: 26.5,56.5 + parent: 2 + - uid: 4670 + components: + - type: Transform + pos: 25.5,55.5 + parent: 2 + - uid: 4671 + components: + - type: Transform + pos: 25.5,54.5 + parent: 2 + - uid: 4672 + components: + - type: Transform + pos: 25.5,53.5 + parent: 2 + - uid: 4673 + components: + - type: Transform + pos: 25.5,52.5 + parent: 2 + - uid: 4674 + components: + - type: Transform + pos: 25.5,51.5 + parent: 2 + - uid: 4675 + components: + - type: Transform + pos: 25.5,50.5 + parent: 2 + - uid: 4676 + components: + - type: Transform + pos: 25.5,56.5 + parent: 2 + - uid: 4677 + components: + - type: Transform + pos: 24.5,50.5 + parent: 2 + - uid: 4678 + components: + - type: Transform + pos: 23.5,50.5 + parent: 2 + - uid: 4679 + components: + - type: Transform + pos: 23.5,51.5 + parent: 2 + - uid: 4680 + components: + - type: Transform + pos: 23.5,52.5 + parent: 2 + - uid: 4681 + components: + - type: Transform + pos: 23.5,53.5 + parent: 2 + - uid: 4682 + components: + - type: Transform + pos: 23.5,54.5 + parent: 2 + - uid: 4683 + components: + - type: Transform + pos: 23.5,55.5 + parent: 2 + - uid: 4684 + components: + - type: Transform + pos: 23.5,56.5 + parent: 2 + - uid: 4685 + components: + - type: Transform + pos: 22.5,56.5 + parent: 2 + - uid: 4686 + components: + - type: Transform + pos: 21.5,57.5 + parent: 2 + - uid: 4687 + components: + - type: Transform + pos: 21.5,56.5 + parent: 2 + - uid: 4688 + components: + - type: Transform + pos: 21.5,55.5 + parent: 2 + - uid: 4689 + components: + - type: Transform + pos: 21.5,54.5 + parent: 2 + - uid: 4690 + components: + - type: Transform + pos: 21.5,53.5 + parent: 2 + - uid: 4691 + components: + - type: Transform + pos: 21.5,52.5 + parent: 2 + - uid: 4692 + components: + - type: Transform + pos: 21.5,51.5 + parent: 2 + - uid: 4693 + components: + - type: Transform + pos: 21.5,50.5 + parent: 2 + - uid: 4694 + components: + - type: Transform + pos: 20.5,50.5 + parent: 2 + - uid: 4695 + components: + - type: Transform + pos: 20.5,57.5 + parent: 2 + - uid: 4696 + components: + - type: Transform + pos: 19.5,57.5 + parent: 2 + - uid: 4697 + components: + - type: Transform + pos: 19.5,56.5 + parent: 2 + - uid: 4698 + components: + - type: Transform + pos: 19.5,55.5 + parent: 2 + - uid: 4699 + components: + - type: Transform + pos: 19.5,54.5 + parent: 2 + - uid: 4700 + components: + - type: Transform + pos: 19.5,53.5 + parent: 2 + - uid: 4701 + components: + - type: Transform + pos: 19.5,52.5 + parent: 2 + - uid: 4702 + components: + - type: Transform + pos: 19.5,51.5 + parent: 2 + - uid: 4703 + components: + - type: Transform + pos: 19.5,50.5 + parent: 2 + - uid: 4704 + components: + - type: Transform + pos: 18.5,57.5 + parent: 2 + - uid: 4705 + components: + - type: Transform + pos: 17.5,57.5 + parent: 2 + - uid: 4706 + components: + - type: Transform + pos: 16.5,57.5 + parent: 2 + - uid: 4707 + components: + - type: Transform + pos: 15.5,57.5 + parent: 2 + - uid: 4708 + components: + - type: Transform + pos: 15.5,58.5 + parent: 2 + - uid: 4709 + components: + - type: Transform + pos: 15.5,59.5 + parent: 2 + - uid: 4710 + components: + - type: Transform + pos: 15.5,60.5 + parent: 2 + - uid: 4711 + components: + - type: Transform + pos: 49.5,49.5 + parent: 2 + - uid: 4712 + components: + - type: Transform + pos: 49.5,48.5 + parent: 2 + - uid: 4713 + components: + - type: Transform + pos: 49.5,47.5 + parent: 2 + - uid: 4714 + components: + - type: Transform + pos: 48.5,47.5 + parent: 2 + - uid: 4715 + components: + - type: Transform + pos: 47.5,47.5 + parent: 2 + - uid: 4716 + components: + - type: Transform + pos: 46.5,47.5 + parent: 2 + - uid: 4717 + components: + - type: Transform + pos: 45.5,47.5 + parent: 2 + - uid: 4718 + components: + - type: Transform + pos: 44.5,47.5 + parent: 2 + - uid: 4719 + components: + - type: Transform + pos: 43.5,47.5 + parent: 2 + - uid: 4720 + components: + - type: Transform + pos: 42.5,47.5 + parent: 2 + - uid: 4751 + components: + - type: Transform + pos: 54.5,37.5 + parent: 2 + - uid: 5290 + components: + - type: Transform + pos: 17.5,41.5 + parent: 2 + - uid: 5292 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 + - uid: 5293 + components: + - type: Transform + pos: 16.5,42.5 + parent: 2 + - uid: 5296 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - uid: 5297 + components: + - type: Transform + pos: 11.5,37.5 + parent: 2 + - uid: 5298 + components: + - type: Transform + pos: 12.5,37.5 + parent: 2 + - uid: 5299 + components: + - type: Transform + pos: 11.5,38.5 + parent: 2 + - uid: 5300 + components: + - type: Transform + pos: 11.5,39.5 + parent: 2 + - uid: 5301 + components: + - type: Transform + pos: 11.5,40.5 + parent: 2 + - uid: 5352 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 5803 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 2 + - uid: 6063 + components: + - type: Transform + pos: 11.5,41.5 + parent: 2 + - uid: 6187 + components: + - type: Transform + pos: 12.5,41.5 + parent: 2 + - uid: 6833 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - uid: 6834 + components: + - type: Transform + pos: 53.5,29.5 + parent: 2 + - uid: 6835 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 6837 + components: + - type: Transform + pos: 56.5,30.5 + parent: 2 + - uid: 6838 + components: + - type: Transform + pos: 55.5,30.5 + parent: 2 + - uid: 6846 + components: + - type: Transform + pos: 13.5,45.5 + parent: 2 + - uid: 6847 + components: + - type: Transform + pos: 13.5,46.5 + parent: 2 + - uid: 6848 + components: + - type: Transform + pos: 13.5,47.5 + parent: 2 + - uid: 6849 + components: + - type: Transform + pos: 13.5,48.5 + parent: 2 + - uid: 6850 + components: + - type: Transform + pos: 13.5,49.5 + parent: 2 + - uid: 6851 + components: + - type: Transform + pos: 13.5,44.5 + parent: 2 + - uid: 6853 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 6854 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 + - uid: 6855 + components: + - type: Transform + pos: -1.5,14.5 + parent: 2 + - uid: 6856 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - uid: 6857 + components: + - type: Transform + pos: 3.5,16.5 + parent: 2 + - uid: 6858 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - uid: 6859 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 + - uid: 6860 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 + - uid: 6861 + components: + - type: Transform + pos: 8.5,0.5 + parent: 2 + - uid: 6862 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 2 + - uid: 6863 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 + - uid: 6864 + components: + - type: Transform + pos: 13.5,1.5 + parent: 2 + - uid: 6865 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 + - uid: 6866 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - uid: 6867 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 + - uid: 6869 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 6870 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 2 + - uid: 6871 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 2 + - uid: 6875 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 6876 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 + - uid: 6877 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 6878 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 6879 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 6880 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 + - uid: 6881 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 2 + - uid: 6882 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 + - uid: 6883 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 + - uid: 6884 + components: + - type: Transform + pos: 31.5,13.5 + parent: 2 + - uid: 6885 + components: + - type: Transform + pos: 32.5,13.5 + parent: 2 + - uid: 6886 + components: + - type: Transform + pos: 33.5,13.5 + parent: 2 + - uid: 6887 + components: + - type: Transform + pos: 31.5,12.5 + parent: 2 + - uid: 6888 + components: + - type: Transform + pos: 31.5,11.5 + parent: 2 + - uid: 6910 + components: + - type: Transform + pos: 32.5,9.5 + parent: 2 + - uid: 6911 + components: + - type: Transform + pos: 33.5,9.5 + parent: 2 + - uid: 6988 + components: + - type: Transform + pos: 59.5,8.5 + parent: 2 + - uid: 6989 + components: + - type: Transform + pos: 60.5,8.5 + parent: 2 + - uid: 6990 + components: + - type: Transform + pos: 61.5,8.5 + parent: 2 + - uid: 6991 + components: + - type: Transform + pos: 61.5,7.5 + parent: 2 + - uid: 6992 + components: + - type: Transform + pos: 61.5,6.5 + parent: 2 + - uid: 6993 + components: + - type: Transform + pos: 61.5,5.5 + parent: 2 + - uid: 7419 + components: + - type: Transform + pos: 58.5,6.5 + parent: 2 + - uid: 7420 + components: + - type: Transform + pos: 58.5,62.5 + parent: 2 + - uid: 7421 + components: + - type: Transform + pos: 58.5,63.5 + parent: 2 + - uid: 7422 + components: + - type: Transform + pos: 53.5,60.5 + parent: 2 + - uid: 7423 + components: + - type: Transform + pos: 56.5,59.5 + parent: 2 + - uid: 7424 + components: + - type: Transform + pos: 56.5,60.5 + parent: 2 + - uid: 7425 + components: + - type: Transform + pos: 55.5,60.5 + parent: 2 + - uid: 7426 + components: + - type: Transform + pos: 54.5,60.5 + parent: 2 + - uid: 7427 + components: + - type: Transform + pos: 52.5,60.5 + parent: 2 + - uid: 7428 + components: + - type: Transform + pos: 50.5,60.5 + parent: 2 + - uid: 7429 + components: + - type: Transform + pos: 51.5,60.5 + parent: 2 + - uid: 7430 + components: + - type: Transform + pos: 49.5,60.5 + parent: 2 + - uid: 7431 + components: + - type: Transform + pos: 48.5,60.5 + parent: 2 + - uid: 7432 + components: + - type: Transform + pos: 47.5,60.5 + parent: 2 + - uid: 7433 + components: + - type: Transform + pos: 46.5,60.5 + parent: 2 + - uid: 7434 + components: + - type: Transform + pos: 45.5,60.5 + parent: 2 + - uid: 7435 + components: + - type: Transform + pos: 44.5,60.5 + parent: 2 + - uid: 7436 + components: + - type: Transform + pos: 43.5,60.5 + parent: 2 + - uid: 7437 + components: + - type: Transform + pos: 42.5,60.5 + parent: 2 + - uid: 7438 + components: + - type: Transform + pos: 41.5,60.5 + parent: 2 + - uid: 7439 + components: + - type: Transform + pos: 40.5,60.5 + parent: 2 + - uid: 7440 + components: + - type: Transform + pos: 39.5,60.5 + parent: 2 + - uid: 7441 + components: + - type: Transform + pos: 38.5,60.5 + parent: 2 + - uid: 7442 + components: + - type: Transform + pos: 37.5,60.5 + parent: 2 + - uid: 7443 + components: + - type: Transform + pos: 36.5,60.5 + parent: 2 + - uid: 7444 + components: + - type: Transform + pos: 35.5,60.5 + parent: 2 + - uid: 7445 + components: + - type: Transform + pos: 34.5,60.5 + parent: 2 + - uid: 7446 + components: + - type: Transform + pos: 33.5,60.5 + parent: 2 + - uid: 7447 + components: + - type: Transform + pos: 32.5,60.5 + parent: 2 + - uid: 7448 + components: + - type: Transform + pos: 31.5,60.5 + parent: 2 + - uid: 7449 + components: + - type: Transform + pos: 30.5,60.5 + parent: 2 + - uid: 7450 + components: + - type: Transform + pos: 29.5,60.5 + parent: 2 + - uid: 7451 + components: + - type: Transform + pos: 28.5,60.5 + parent: 2 + - uid: 7452 + components: + - type: Transform + pos: 27.5,60.5 + parent: 2 + - uid: 7453 + components: + - type: Transform + pos: 26.5,60.5 + parent: 2 + - uid: 7454 + components: + - type: Transform + pos: 25.5,60.5 + parent: 2 + - uid: 7455 + components: + - type: Transform + pos: 24.5,60.5 + parent: 2 + - uid: 7456 + components: + - type: Transform + pos: 23.5,60.5 + parent: 2 + - uid: 7457 + components: + - type: Transform + pos: 22.5,60.5 + parent: 2 + - uid: 7458 + components: + - type: Transform + pos: 21.5,60.5 + parent: 2 + - uid: 7459 + components: + - type: Transform + pos: 20.5,60.5 + parent: 2 +- proto: CableApcStack10 + entities: + - uid: 4504 + components: + - type: Transform + pos: 56.511097,62.365215 + parent: 2 + - uid: 6955 + components: + - type: Transform + pos: 2.575419,-7.6192417 + parent: 2 +- proto: CableHV + entities: + - uid: 55 + components: + - type: Transform + pos: 50.5,29.5 + parent: 2 + - uid: 67 + components: + - type: Transform + pos: 28.5,19.5 + parent: 2 + - uid: 72 + components: + - type: Transform + pos: 10.5,19.5 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: 19.5,19.5 + parent: 2 + - uid: 319 + components: + - type: Transform + pos: 57.5,62.5 + parent: 2 + - uid: 380 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 2 + - uid: 420 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 520 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 + - uid: 655 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 2 + - uid: 820 + components: + - type: Transform + pos: 33.5,29.5 + parent: 2 + - uid: 1211 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 1216 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 2 + - uid: 1217 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - uid: 1321 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 1350 + components: + - type: Transform + pos: 60.5,60.5 + parent: 2 + - uid: 1351 + components: + - type: Transform + pos: 60.5,61.5 + parent: 2 + - uid: 1354 + components: + - type: Transform + pos: 58.5,58.5 + parent: 2 + - uid: 1379 + components: + - type: Transform + pos: 57.5,58.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + pos: 56.5,58.5 + parent: 2 + - uid: 1456 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 1593 + components: + - type: Transform + pos: 36.5,35.5 + parent: 2 + - uid: 1620 + components: + - type: Transform + pos: 44.5,40.5 + parent: 2 + - uid: 1621 + components: + - type: Transform + pos: 43.5,40.5 + parent: 2 + - uid: 1622 + components: + - type: Transform + pos: 35.5,35.5 + parent: 2 + - uid: 1630 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - uid: 1641 + components: + - type: Transform + pos: 42.5,39.5 + parent: 2 + - uid: 1642 + components: + - type: Transform + pos: 42.5,40.5 + parent: 2 + - uid: 1643 + components: + - type: Transform + pos: 42.5,38.5 + parent: 2 + - uid: 1644 + components: + - type: Transform + pos: 42.5,37.5 + parent: 2 + - uid: 1645 + components: + - type: Transform + pos: 42.5,36.5 + parent: 2 + - uid: 1646 + components: + - type: Transform + pos: 42.5,35.5 + parent: 2 + - uid: 1647 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 + - uid: 1648 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 + - uid: 1649 + components: + - type: Transform + pos: 40.5,34.5 + parent: 2 + - uid: 1650 + components: + - type: Transform + pos: 39.5,34.5 + parent: 2 + - uid: 1655 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - uid: 1656 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 1657 + components: + - type: Transform + pos: 34.5,32.5 + parent: 2 + - uid: 1658 + components: + - type: Transform + pos: 34.5,33.5 + parent: 2 + - uid: 1659 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 + - uid: 1660 + components: + - type: Transform + pos: 37.5,33.5 + parent: 2 + - uid: 1661 + components: + - type: Transform + pos: 36.5,33.5 + parent: 2 + - uid: 1662 + components: + - type: Transform + pos: 38.5,33.5 + parent: 2 + - uid: 1663 + components: + - type: Transform + pos: 39.5,33.5 + parent: 2 + - uid: 1664 + components: + - type: Transform + pos: 35.5,34.5 + parent: 2 + - uid: 1665 + components: + - type: Transform + pos: 15.5,34.5 + parent: 2 + - uid: 1666 + components: + - type: Transform + pos: 15.5,35.5 + parent: 2 + - uid: 1685 + components: + - type: Transform + pos: 15.5,36.5 + parent: 2 + - uid: 1687 + components: + - type: Transform + pos: 14.5,36.5 + parent: 2 + - uid: 1695 + components: + - type: Transform + pos: 18.5,34.5 + parent: 2 + - uid: 1696 + components: + - type: Transform + pos: 19.5,34.5 + parent: 2 + - uid: 1697 + components: + - type: Transform + pos: 20.5,34.5 + parent: 2 + - uid: 1698 + components: + - type: Transform + pos: 21.5,34.5 + parent: 2 + - uid: 1699 + components: + - type: Transform + pos: 23.5,34.5 + parent: 2 + - uid: 1700 + components: + - type: Transform + pos: 22.5,34.5 + parent: 2 + - uid: 1701 + components: + - type: Transform + pos: 24.5,34.5 + parent: 2 + - uid: 1702 + components: + - type: Transform + pos: 25.5,34.5 + parent: 2 + - uid: 1704 + components: + - type: Transform + pos: 26.5,34.5 + parent: 2 + - uid: 1705 + components: + - type: Transform + pos: 28.5,34.5 + parent: 2 + - uid: 1706 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 1707 + components: + - type: Transform + pos: 28.5,32.5 + parent: 2 + - uid: 1708 + components: + - type: Transform + pos: 28.5,31.5 + parent: 2 + - uid: 1709 + components: + - type: Transform + pos: 28.5,30.5 + parent: 2 + - uid: 1710 + components: + - type: Transform + pos: 29.5,30.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + pos: 30.5,30.5 + parent: 2 + - uid: 1712 + components: + - type: Transform + pos: 31.5,30.5 + parent: 2 + - uid: 1713 + components: + - type: Transform + pos: 32.5,30.5 + parent: 2 + - uid: 1714 + components: + - type: Transform + pos: 33.5,30.5 + parent: 2 + - uid: 1837 + components: + - type: Transform + pos: 27.5,34.5 + parent: 2 + - uid: 1850 + components: + - type: Transform + pos: 33.5,27.5 + parent: 2 + - uid: 1851 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - uid: 1854 + components: + - type: Transform + pos: 34.5,29.5 + parent: 2 + - uid: 1855 + components: + - type: Transform + pos: 34.5,28.5 + parent: 2 + - uid: 1856 + components: + - type: Transform + pos: 34.5,27.5 + parent: 2 + - uid: 1857 + components: + - type: Transform + pos: 34.5,26.5 + parent: 2 + - uid: 1858 + components: + - type: Transform + pos: 34.5,25.5 + parent: 2 + - uid: 1859 + components: + - type: Transform + pos: 34.5,24.5 + parent: 2 + - uid: 1871 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 1938 + components: + - type: Transform + pos: 16.5,34.5 + parent: 2 + - uid: 1939 + components: + - type: Transform + pos: 17.5,34.5 + parent: 2 + - uid: 2604 + components: + - type: Transform + pos: 59.5,62.5 + parent: 2 + - uid: 2605 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 2606 + components: + - type: Transform + pos: 60.5,62.5 + parent: 2 + - uid: 2619 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 2 + - uid: 2620 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 2 + - uid: 2621 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 2623 + components: + - type: Transform + pos: 58.5,62.5 + parent: 2 + - uid: 2624 + components: + - type: Transform + pos: 58.5,63.5 + parent: 2 + - uid: 2632 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 + - uid: 2633 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 2 + - uid: 2634 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 2635 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 2636 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 2 + - uid: 2638 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 2 + - uid: 2639 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 2 + - uid: 2640 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 2 + - uid: 2643 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 2 + - uid: 2670 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 + - uid: 2671 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 2672 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 + - uid: 2673 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - uid: 2674 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 2 + - uid: 2675 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - uid: 2676 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 2 + - uid: 2677 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 2678 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 2679 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - uid: 2680 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 + - uid: 2681 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 2 + - uid: 2682 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - uid: 2683 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 2 + - uid: 2684 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 2 + - uid: 2685 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - uid: 2686 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 2 + - uid: 2687 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 2 + - uid: 2688 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 2 + - uid: 2689 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 + - uid: 2690 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 2 + - uid: 2691 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 2 + - uid: 2692 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 2693 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 2 + - uid: 2694 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 2 + - uid: 2695 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 2 + - uid: 2696 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 2 + - uid: 2698 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 + - uid: 2699 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 2 + - uid: 2701 + components: + - type: Transform + pos: 55.5,68.5 + parent: 2 + - uid: 2725 + components: + - type: Transform + pos: 58.5,64.5 + parent: 2 + - uid: 2726 + components: + - type: Transform + pos: 51.5,66.5 + parent: 2 + - uid: 2727 + components: + - type: Transform + pos: 52.5,66.5 + parent: 2 + - uid: 2728 + components: + - type: Transform + pos: 53.5,66.5 + parent: 2 + - uid: 2729 + components: + - type: Transform + pos: 53.5,67.5 + parent: 2 + - uid: 2730 + components: + - type: Transform + pos: 51.5,68.5 + parent: 2 + - uid: 2731 + components: + - type: Transform + pos: 52.5,68.5 + parent: 2 + - uid: 2732 + components: + - type: Transform + pos: 58.5,68.5 + parent: 2 + - uid: 2733 + components: + - type: Transform + pos: 57.5,68.5 + parent: 2 + - uid: 2734 + components: + - type: Transform + pos: 56.5,68.5 + parent: 2 + - uid: 2736 + components: + - type: Transform + pos: 58.5,69.5 + parent: 2 + - uid: 2737 + components: + - type: Transform + pos: 61.5,66.5 + parent: 2 + - uid: 2738 + components: + - type: Transform + pos: 59.5,66.5 + parent: 2 + - uid: 2739 + components: + - type: Transform + pos: 60.5,66.5 + parent: 2 + - uid: 2740 + components: + - type: Transform + pos: 61.5,68.5 + parent: 2 + - uid: 2741 + components: + - type: Transform + pos: 65.5,68.5 + parent: 2 + - uid: 2742 + components: + - type: Transform + pos: 65.5,67.5 + parent: 2 + - uid: 2743 + components: + - type: Transform + pos: 65.5,66.5 + parent: 2 + - uid: 2755 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 + - uid: 2756 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 2 + - uid: 2762 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - uid: 2790 + components: + - type: Transform + pos: 61.5,58.5 + parent: 2 + - uid: 2791 + components: + - type: Transform + pos: 60.5,58.5 + parent: 2 + - uid: 2792 + components: + - type: Transform + pos: 59.5,58.5 + parent: 2 + - uid: 2794 + components: + - type: Transform + pos: 59.5,56.5 + parent: 2 + - uid: 2795 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 2796 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - uid: 2813 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 2 + - uid: 2814 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 2 + - uid: 2815 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 + - uid: 2816 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 2 + - uid: 2817 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 2818 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 + - uid: 2819 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 2 + - uid: 2820 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - uid: 2821 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 2 + - uid: 2822 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 2 + - uid: 2823 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 2 + - uid: 2824 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 2 + - uid: 2825 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 2 + - uid: 2826 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 2 + - uid: 2827 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 2 + - uid: 2828 + components: + - type: Transform + pos: 33.5,-14.5 + parent: 2 + - uid: 2829 + components: + - type: Transform + pos: 34.5,-14.5 + parent: 2 + - uid: 2830 + components: + - type: Transform + pos: 35.5,-14.5 + parent: 2 + - uid: 2831 + components: + - type: Transform + pos: 36.5,-14.5 + parent: 2 + - uid: 2832 + components: + - type: Transform + pos: 37.5,-14.5 + parent: 2 + - uid: 2833 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - uid: 2834 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 2 + - uid: 2835 + components: + - type: Transform + pos: 40.5,-14.5 + parent: 2 + - uid: 2836 + components: + - type: Transform + pos: 41.5,-14.5 + parent: 2 + - uid: 2837 + components: + - type: Transform + pos: 42.5,-14.5 + parent: 2 + - uid: 2838 + components: + - type: Transform + pos: 43.5,-14.5 + parent: 2 + - uid: 2839 + components: + - type: Transform + pos: 44.5,-14.5 + parent: 2 + - uid: 2840 + components: + - type: Transform + pos: 45.5,-14.5 + parent: 2 + - uid: 2841 + components: + - type: Transform + pos: 46.5,-14.5 + parent: 2 + - uid: 2842 + components: + - type: Transform + pos: 46.5,-13.5 + parent: 2 + - uid: 2843 + components: + - type: Transform + pos: 46.5,-12.5 + parent: 2 + - uid: 2844 + components: + - type: Transform + pos: 46.5,-11.5 + parent: 2 + - uid: 2845 + components: + - type: Transform + pos: 46.5,-10.5 + parent: 2 + - uid: 2846 + components: + - type: Transform + pos: 46.5,-9.5 + parent: 2 + - uid: 2847 + components: + - type: Transform + pos: 46.5,-7.5 + parent: 2 + - uid: 2848 + components: + - type: Transform + pos: 46.5,-6.5 + parent: 2 + - uid: 2849 + components: + - type: Transform + pos: 46.5,-5.5 + parent: 2 + - uid: 2850 + components: + - type: Transform + pos: 46.5,-4.5 + parent: 2 + - uid: 2851 + components: + - type: Transform + pos: 46.5,-3.5 + parent: 2 + - uid: 2852 + components: + - type: Transform + pos: 46.5,-2.5 + parent: 2 + - uid: 2853 + components: + - type: Transform + pos: 46.5,-8.5 + parent: 2 + - uid: 2854 + components: + - type: Transform + pos: 45.5,-2.5 + parent: 2 + - uid: 2855 + components: + - type: Transform + pos: 44.5,-2.5 + parent: 2 + - uid: 2856 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 2 + - uid: 2857 + components: + - type: Transform + pos: 42.5,-2.5 + parent: 2 + - uid: 2858 + components: + - type: Transform + pos: 41.5,-2.5 + parent: 2 + - uid: 2859 + components: + - type: Transform + pos: 40.5,-2.5 + parent: 2 + - uid: 2860 + components: + - type: Transform + pos: 40.5,-1.5 + parent: 2 + - uid: 2861 + components: + - type: Transform + pos: 40.5,-0.5 + parent: 2 + - uid: 2862 + components: + - type: Transform + pos: 40.5,0.5 + parent: 2 + - uid: 2863 + components: + - type: Transform + pos: 40.5,1.5 + parent: 2 + - uid: 2864 + components: + - type: Transform + pos: 40.5,2.5 + parent: 2 + - uid: 2865 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 2866 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 2867 + components: + - type: Transform + pos: 39.5,1.5 + parent: 2 + - uid: 2868 + components: + - type: Transform + pos: 38.5,1.5 + parent: 2 + - uid: 2869 + components: + - type: Transform + pos: 38.5,2.5 + parent: 2 + - uid: 2870 + components: + - type: Transform + pos: 38.5,3.5 + parent: 2 + - uid: 2871 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - uid: 2872 + components: + - type: Transform + pos: 38.5,5.5 + parent: 2 + - uid: 2873 + components: + - type: Transform + pos: 38.5,6.5 + parent: 2 + - uid: 2874 + components: + - type: Transform + pos: 38.5,7.5 + parent: 2 + - uid: 2875 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2 + - uid: 2876 + components: + - type: Transform + pos: 38.5,9.5 + parent: 2 + - uid: 2877 + components: + - type: Transform + pos: 38.5,11.5 + parent: 2 + - uid: 2878 + components: + - type: Transform + pos: 38.5,12.5 + parent: 2 + - uid: 2879 + components: + - type: Transform + pos: 38.5,13.5 + parent: 2 + - uid: 2880 + components: + - type: Transform + pos: 38.5,14.5 + parent: 2 + - uid: 2881 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 + - uid: 2882 + components: + - type: Transform + pos: 38.5,16.5 + parent: 2 + - uid: 2883 + components: + - type: Transform + pos: 38.5,17.5 + parent: 2 + - uid: 2884 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2 + - uid: 2885 + components: + - type: Transform + pos: 38.5,19.5 + parent: 2 + - uid: 2886 + components: + - type: Transform + pos: 38.5,10.5 + parent: 2 + - uid: 2887 + components: + - type: Transform + pos: 37.5,19.5 + parent: 2 + - uid: 2888 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 + - uid: 2889 + components: + - type: Transform + pos: 35.5,19.5 + parent: 2 + - uid: 2890 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 + - uid: 2891 + components: + - type: Transform + pos: 33.5,19.5 + parent: 2 + - uid: 2892 + components: + - type: Transform + pos: 33.5,22.5 + parent: 2 + - uid: 2893 + components: + - type: Transform + pos: 33.5,20.5 + parent: 2 + - uid: 2894 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 + - uid: 2895 + components: + - type: Transform + pos: 34.5,22.5 + parent: 2 + - uid: 2899 + components: + - type: Transform + pos: 50.5,35.5 + parent: 2 + - uid: 2900 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 + - uid: 2901 + components: + - type: Transform + pos: 50.5,32.5 + parent: 2 + - uid: 2902 + components: + - type: Transform + pos: 50.5,37.5 + parent: 2 + - uid: 2903 + components: + - type: Transform + pos: 51.5,37.5 + parent: 2 + - uid: 2904 + components: + - type: Transform + pos: 52.5,37.5 + parent: 2 + - uid: 2905 + components: + - type: Transform + pos: 53.5,37.5 + parent: 2 + - uid: 2906 + components: + - type: Transform + pos: 54.5,37.5 + parent: 2 + - uid: 2907 + components: + - type: Transform + pos: 55.5,37.5 + parent: 2 + - uid: 2908 + components: + - type: Transform + pos: 56.5,37.5 + parent: 2 + - uid: 2910 + components: + - type: Transform + pos: 58.5,37.5 + parent: 2 + - uid: 2911 + components: + - type: Transform + pos: 59.5,37.5 + parent: 2 + - uid: 2912 + components: + - type: Transform + pos: 60.5,37.5 + parent: 2 + - uid: 2913 + components: + - type: Transform + pos: 50.5,33.5 + parent: 2 + - uid: 2914 + components: + - type: Transform + pos: 60.5,38.5 + parent: 2 + - uid: 2915 + components: + - type: Transform + pos: 60.5,39.5 + parent: 2 + - uid: 2916 + components: + - type: Transform + pos: 60.5,40.5 + parent: 2 + - uid: 2917 + components: + - type: Transform + pos: 60.5,41.5 + parent: 2 + - uid: 2918 + components: + - type: Transform + pos: 60.5,42.5 + parent: 2 + - uid: 2919 + components: + - type: Transform + pos: 60.5,43.5 + parent: 2 + - uid: 2920 + components: + - type: Transform + pos: 60.5,44.5 + parent: 2 + - uid: 2921 + components: + - type: Transform + pos: 61.5,44.5 + parent: 2 + - uid: 2922 + components: + - type: Transform + pos: 61.5,45.5 + parent: 2 + - uid: 2923 + components: + - type: Transform + pos: 61.5,46.5 + parent: 2 + - uid: 2924 + components: + - type: Transform + pos: 61.5,47.5 + parent: 2 + - uid: 2925 + components: + - type: Transform + pos: 61.5,48.5 + parent: 2 + - uid: 2926 + components: + - type: Transform + pos: 61.5,49.5 + parent: 2 + - uid: 2927 + components: + - type: Transform + pos: 61.5,50.5 + parent: 2 + - uid: 2928 + components: + - type: Transform + pos: 61.5,51.5 + parent: 2 + - uid: 2929 + components: + - type: Transform + pos: 61.5,52.5 + parent: 2 + - uid: 2930 + components: + - type: Transform + pos: 61.5,53.5 + parent: 2 + - uid: 2931 + components: + - type: Transform + pos: 61.5,54.5 + parent: 2 + - uid: 2932 + components: + - type: Transform + pos: 61.5,55.5 + parent: 2 + - uid: 2933 + components: + - type: Transform + pos: 61.5,56.5 + parent: 2 + - uid: 2934 + components: + - type: Transform + pos: 61.5,57.5 + parent: 2 + - uid: 2952 + components: + - type: Transform + pos: 50.5,30.5 + parent: 2 + - uid: 2953 + components: + - type: Transform + pos: 50.5,31.5 + parent: 2 + - uid: 2954 + components: + - type: Transform + pos: 50.5,36.5 + parent: 2 + - uid: 2960 + components: + - type: Transform + pos: 23.5,19.5 + parent: 2 + - uid: 2962 + components: + - type: Transform + pos: 24.5,19.5 + parent: 2 + - uid: 2964 + components: + - type: Transform + pos: 27.5,19.5 + parent: 2 + - uid: 2967 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 + - uid: 2969 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 2970 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - uid: 2971 + components: + - type: Transform + pos: 31.5,19.5 + parent: 2 + - uid: 2972 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 + - uid: 2977 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - uid: 2979 + components: + - type: Transform + pos: 10.5,20.5 + parent: 2 + - uid: 2981 + components: + - type: Transform + pos: 18.5,19.5 + parent: 2 + - uid: 2982 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - uid: 2983 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 2984 + components: + - type: Transform + pos: 18.5,18.5 + parent: 2 + - uid: 2985 + components: + - type: Transform + pos: 17.5,18.5 + parent: 2 + - uid: 2986 + components: + - type: Transform + pos: 16.5,18.5 + parent: 2 + - uid: 2987 + components: + - type: Transform + pos: 15.5,18.5 + parent: 2 + - uid: 2988 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - uid: 2992 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 2993 + components: + - type: Transform + pos: 10.5,18.5 + parent: 2 + - uid: 2994 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 + - uid: 3014 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 3015 + components: + - type: Transform + pos: 20.5,19.5 + parent: 2 + - uid: 3327 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 + - uid: 3328 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 3329 + components: + - type: Transform + pos: 50.5,26.5 + parent: 2 + - uid: 3330 + components: + - type: Transform + pos: 50.5,25.5 + parent: 2 + - uid: 3331 + components: + - type: Transform + pos: 49.5,25.5 + parent: 2 + - uid: 3332 + components: + - type: Transform + pos: 48.5,25.5 + parent: 2 + - uid: 3333 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 3334 + components: + - type: Transform + pos: 46.5,25.5 + parent: 2 + - uid: 3335 + components: + - type: Transform + pos: 45.5,25.5 + parent: 2 + - uid: 3336 + components: + - type: Transform + pos: 44.5,25.5 + parent: 2 + - uid: 3337 + components: + - type: Transform + pos: 43.5,25.5 + parent: 2 + - uid: 3338 + components: + - type: Transform + pos: 42.5,25.5 + parent: 2 + - uid: 3339 + components: + - type: Transform + pos: 41.5,25.5 + parent: 2 + - uid: 3340 + components: + - type: Transform + pos: 41.5,24.5 + parent: 2 + - uid: 3341 + components: + - type: Transform + pos: 41.5,23.5 + parent: 2 + - uid: 3342 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 + - uid: 3343 + components: + - type: Transform + pos: 38.5,20.5 + parent: 2 + - uid: 3344 + components: + - type: Transform + pos: 38.5,21.5 + parent: 2 + - uid: 3345 + components: + - type: Transform + pos: 38.5,22.5 + parent: 2 + - uid: 3346 + components: + - type: Transform + pos: 39.5,22.5 + parent: 2 + - uid: 3347 + components: + - type: Transform + pos: 40.5,22.5 + parent: 2 + - uid: 3957 + components: + - type: Transform + pos: 57.5,37.5 + parent: 2 + - uid: 4565 + components: + - type: Transform + pos: 32.5,48.5 + parent: 2 + - uid: 4566 + components: + - type: Transform + pos: 33.5,48.5 + parent: 2 + - uid: 4568 + components: + - type: Transform + pos: 35.5,48.5 + parent: 2 + - uid: 4588 + components: + - type: Transform + pos: 39.5,50.5 + parent: 2 + - uid: 4602 + components: + - type: Transform + pos: 58.5,53.5 + parent: 2 + - uid: 4603 + components: + - type: Transform + pos: 59.5,53.5 + parent: 2 + - uid: 4604 + components: + - type: Transform + pos: 60.5,53.5 + parent: 2 + - uid: 5832 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 + - uid: 6049 + components: + - type: Transform + pos: 60.5,59.5 + parent: 2 + - uid: 6122 + components: + - type: Transform + pos: 60.5,56.5 + parent: 2 + - uid: 6212 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 2 + - uid: 6321 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 2 + - uid: 6420 + components: + - type: Transform + pos: 56.5,59.5 + parent: 2 + - uid: 6421 + components: + - type: Transform + pos: 56.5,60.5 + parent: 2 + - uid: 6422 + components: + - type: Transform + pos: 55.5,60.5 + parent: 2 + - uid: 6423 + components: + - type: Transform + pos: 54.5,60.5 + parent: 2 + - uid: 6424 + components: + - type: Transform + pos: 53.5,60.5 + parent: 2 + - uid: 6425 + components: + - type: Transform + pos: 52.5,60.5 + parent: 2 + - uid: 6426 + components: + - type: Transform + pos: 51.5,60.5 + parent: 2 + - uid: 6427 + components: + - type: Transform + pos: 50.5,60.5 + parent: 2 + - uid: 6428 + components: + - type: Transform + pos: 49.5,60.5 + parent: 2 + - uid: 6429 + components: + - type: Transform + pos: 48.5,60.5 + parent: 2 + - uid: 6430 + components: + - type: Transform + pos: 46.5,60.5 + parent: 2 + - uid: 6431 + components: + - type: Transform + pos: 45.5,60.5 + parent: 2 + - uid: 6432 + components: + - type: Transform + pos: 44.5,60.5 + parent: 2 + - uid: 6433 + components: + - type: Transform + pos: 43.5,60.5 + parent: 2 + - uid: 6434 + components: + - type: Transform + pos: 42.5,60.5 + parent: 2 + - uid: 6435 + components: + - type: Transform + pos: 41.5,60.5 + parent: 2 + - uid: 6436 + components: + - type: Transform + pos: 40.5,60.5 + parent: 2 + - uid: 6437 + components: + - type: Transform + pos: 39.5,60.5 + parent: 2 + - uid: 6438 + components: + - type: Transform + pos: 38.5,60.5 + parent: 2 + - uid: 6439 + components: + - type: Transform + pos: 37.5,60.5 + parent: 2 + - uid: 6440 + components: + - type: Transform + pos: 36.5,60.5 + parent: 2 + - uid: 6441 + components: + - type: Transform + pos: 35.5,60.5 + parent: 2 + - uid: 6442 + components: + - type: Transform + pos: 34.5,60.5 + parent: 2 + - uid: 6443 + components: + - type: Transform + pos: 33.5,60.5 + parent: 2 + - uid: 6444 + components: + - type: Transform + pos: 47.5,60.5 + parent: 2 + - uid: 6445 + components: + - type: Transform + pos: 32.5,60.5 + parent: 2 + - uid: 6446 + components: + - type: Transform + pos: 30.5,60.5 + parent: 2 + - uid: 6447 + components: + - type: Transform + pos: 29.5,60.5 + parent: 2 + - uid: 6448 + components: + - type: Transform + pos: 31.5,60.5 + parent: 2 + - uid: 6449 + components: + - type: Transform + pos: 28.5,60.5 + parent: 2 + - uid: 6450 + components: + - type: Transform + pos: 27.5,60.5 + parent: 2 + - uid: 6451 + components: + - type: Transform + pos: 26.5,60.5 + parent: 2 + - uid: 6452 + components: + - type: Transform + pos: 25.5,60.5 + parent: 2 + - uid: 6453 + components: + - type: Transform + pos: 24.5,60.5 + parent: 2 + - uid: 6454 + components: + - type: Transform + pos: 23.5,60.5 + parent: 2 + - uid: 6455 + components: + - type: Transform + pos: 21.5,60.5 + parent: 2 + - uid: 6456 + components: + - type: Transform + pos: 20.5,60.5 + parent: 2 + - uid: 6457 + components: + - type: Transform + pos: 19.5,60.5 + parent: 2 + - uid: 6458 + components: + - type: Transform + pos: 22.5,60.5 + parent: 2 + - uid: 6459 + components: + - type: Transform + pos: 18.5,60.5 + parent: 2 + - uid: 6460 + components: + - type: Transform + pos: 17.5,60.5 + parent: 2 + - uid: 6461 + components: + - type: Transform + pos: 16.5,60.5 + parent: 2 + - uid: 6462 + components: + - type: Transform + pos: 15.5,60.5 + parent: 2 + - uid: 6463 + components: + - type: Transform + pos: 15.5,59.5 + parent: 2 + - uid: 6464 + components: + - type: Transform + pos: 15.5,58.5 + parent: 2 + - uid: 6465 + components: + - type: Transform + pos: 15.5,57.5 + parent: 2 + - uid: 6466 + components: + - type: Transform + pos: 16.5,57.5 + parent: 2 + - uid: 6467 + components: + - type: Transform + pos: 17.5,57.5 + parent: 2 + - uid: 6468 + components: + - type: Transform + pos: 18.5,57.5 + parent: 2 + - uid: 6469 + components: + - type: Transform + pos: 19.5,57.5 + parent: 2 + - uid: 6470 + components: + - type: Transform + pos: 20.5,57.5 + parent: 2 + - uid: 6471 + components: + - type: Transform + pos: 21.5,57.5 + parent: 2 + - uid: 6472 + components: + - type: Transform + pos: 21.5,56.5 + parent: 2 + - uid: 6473 + components: + - type: Transform + pos: 22.5,56.5 + parent: 2 + - uid: 6474 + components: + - type: Transform + pos: 23.5,56.5 + parent: 2 + - uid: 6475 + components: + - type: Transform + pos: 23.5,55.5 + parent: 2 + - uid: 6476 + components: + - type: Transform + pos: 23.5,53.5 + parent: 2 + - uid: 6477 + components: + - type: Transform + pos: 23.5,54.5 + parent: 2 + - uid: 6478 + components: + - type: Transform + pos: 23.5,51.5 + parent: 2 + - uid: 6479 + components: + - type: Transform + pos: 23.5,50.5 + parent: 2 + - uid: 6480 + components: + - type: Transform + pos: 23.5,52.5 + parent: 2 + - uid: 6481 + components: + - type: Transform + pos: 24.5,50.5 + parent: 2 + - uid: 6482 + components: + - type: Transform + pos: 25.5,50.5 + parent: 2 + - uid: 6483 + components: + - type: Transform + pos: 25.5,51.5 + parent: 2 + - uid: 6484 + components: + - type: Transform + pos: 25.5,52.5 + parent: 2 + - uid: 6485 + components: + - type: Transform + pos: 25.5,53.5 + parent: 2 + - uid: 6486 + components: + - type: Transform + pos: 25.5,54.5 + parent: 2 + - uid: 6487 + components: + - type: Transform + pos: 25.5,55.5 + parent: 2 + - uid: 6488 + components: + - type: Transform + pos: 25.5,56.5 + parent: 2 + - uid: 6489 + components: + - type: Transform + pos: 26.5,56.5 + parent: 2 + - uid: 6490 + components: + - type: Transform + pos: 27.5,56.5 + parent: 2 + - uid: 6491 + components: + - type: Transform + pos: 27.5,55.5 + parent: 2 + - uid: 6492 + components: + - type: Transform + pos: 27.5,54.5 + parent: 2 + - uid: 6493 + components: + - type: Transform + pos: 27.5,53.5 + parent: 2 + - uid: 6494 + components: + - type: Transform + pos: 27.5,52.5 + parent: 2 + - uid: 6495 + components: + - type: Transform + pos: 27.5,51.5 + parent: 2 + - uid: 6496 + components: + - type: Transform + pos: 27.5,50.5 + parent: 2 + - uid: 6497 + components: + - type: Transform + pos: 28.5,50.5 + parent: 2 + - uid: 6498 + components: + - type: Transform + pos: 29.5,50.5 + parent: 2 + - uid: 6499 + components: + - type: Transform + pos: 30.5,50.5 + parent: 2 + - uid: 6500 + components: + - type: Transform + pos: 31.5,50.5 + parent: 2 + - uid: 6501 + components: + - type: Transform + pos: 32.5,50.5 + parent: 2 + - uid: 6502 + components: + - type: Transform + pos: 33.5,50.5 + parent: 2 + - uid: 6503 + components: + - type: Transform + pos: 33.5,49.5 + parent: 2 + - uid: 6642 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 + - uid: 6722 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 6945 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 2 + - uid: 6946 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 + - uid: 6947 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 6948 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 6949 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 6950 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 6951 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 6956 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 +- proto: CableHVStack10 + entities: + - uid: 6124 + components: + - type: Transform + pos: 56.479847,62.708965 + parent: 2 + - uid: 6125 + components: + - type: Transform + pos: 56.464222,62.81834 + parent: 2 + - uid: 6952 + components: + - type: Transform + pos: 2.528544,-7.2286167 + parent: 2 + - uid: 6953 + components: + - type: Transform + pos: 2.497294,-7.3536167 + parent: 2 +- proto: CableMV + entities: + - uid: 65 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: 60.5,40.5 + parent: 2 + - uid: 149 + components: + - type: Transform + pos: 60.5,37.5 + parent: 2 + - uid: 254 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 2 + - uid: 676 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: 50.5,32.5 + parent: 2 + - uid: 879 + components: + - type: Transform + pos: 53.5,31.5 + parent: 2 + - uid: 903 + components: + - type: Transform + pos: 54.5,31.5 + parent: 2 + - uid: 924 + components: + - type: Transform + pos: 56.5,31.5 + parent: 2 + - uid: 1020 + components: + - type: Transform + pos: 55.5,31.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + pos: 51.5,31.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + pos: 52.5,31.5 + parent: 2 + - uid: 1389 + components: + - type: Transform + pos: 50.5,33.5 + parent: 2 + - uid: 1405 + components: + - type: Transform + pos: 50.5,31.5 + parent: 2 + - uid: 2935 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 2936 + components: + - type: Transform + pos: 33.5,23.5 + parent: 2 + - uid: 2937 + components: + - type: Transform + pos: 33.5,22.5 + parent: 2 + - uid: 2938 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 + - uid: 2939 + components: + - type: Transform + pos: 33.5,20.5 + parent: 2 + - uid: 2940 + components: + - type: Transform + pos: 33.5,19.5 + parent: 2 + - uid: 2941 + components: + - type: Transform + pos: 33.5,18.5 + parent: 2 + - uid: 2942 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 + - uid: 2943 + components: + - type: Transform + pos: 31.5,18.5 + parent: 2 + - uid: 2944 + components: + - type: Transform + pos: 30.5,18.5 + parent: 2 + - uid: 2945 + components: + - type: Transform + pos: 29.5,18.5 + parent: 2 + - uid: 2946 + components: + - type: Transform + pos: 28.5,18.5 + parent: 2 + - uid: 2947 + components: + - type: Transform + pos: 27.5,18.5 + parent: 2 + - uid: 2948 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - uid: 2950 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 2951 + components: + - type: Transform + pos: 10.5,22.5 + parent: 2 + - uid: 2955 + components: + - type: Transform + pos: 8.5,22.5 + parent: 2 + - uid: 2956 + components: + - type: Transform + pos: 7.5,22.5 + parent: 2 + - uid: 2957 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 + - uid: 2958 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 + - uid: 2959 + components: + - type: Transform + pos: 7.5,22.5 + parent: 2 + - uid: 2961 + components: + - type: Transform + pos: 9.5,22.5 + parent: 2 + - uid: 2963 + components: + - type: Transform + pos: 10.5,18.5 + parent: 2 + - uid: 2965 + components: + - type: Transform + pos: 8.5,18.5 + parent: 2 + - uid: 2966 + components: + - type: Transform + pos: 9.5,18.5 + parent: 2 + - uid: 2968 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 2973 + components: + - type: Transform + pos: -3.5,17.5 + parent: 2 + - uid: 2974 + components: + - type: Transform + pos: -2.5,17.5 + parent: 2 + - uid: 2975 + components: + - type: Transform + pos: -1.5,17.5 + parent: 2 + - uid: 2976 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - uid: 2978 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 + - uid: 2980 + components: + - type: Transform + pos: -5.5,17.5 + parent: 2 + - uid: 2989 + components: + - type: Transform + pos: 10.5,20.5 + parent: 2 + - uid: 2990 + components: + - type: Transform + pos: 10.5,18.5 + parent: 2 + - uid: 2991 + components: + - type: Transform + pos: 10.5,19.5 + parent: 2 + - uid: 2995 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 2 + - uid: 2996 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - uid: 2997 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - uid: 2998 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 2999 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 3000 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 2 + - uid: 3001 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 3002 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 3003 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 3004 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 3005 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 2 + - uid: 3006 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 2 + - uid: 3007 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 2 + - uid: 3008 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 2 + - uid: 3009 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 + - uid: 3010 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 2 + - uid: 3011 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 2 + - uid: 3013 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 + - uid: 3029 + components: + - type: Transform + pos: 59.5,56.5 + parent: 2 + - uid: 3030 + components: + - type: Transform + pos: 59.5,48.5 + parent: 2 + - uid: 3031 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - uid: 3032 + components: + - type: Transform + pos: 59.5,53.5 + parent: 2 + - uid: 3033 + components: + - type: Transform + pos: 59.5,52.5 + parent: 2 + - uid: 3034 + components: + - type: Transform + pos: 58.5,48.5 + parent: 2 + - uid: 3040 + components: + - type: Transform + pos: 59.5,50.5 + parent: 2 + - uid: 3041 + components: + - type: Transform + pos: 59.5,51.5 + parent: 2 + - uid: 3042 + components: + - type: Transform + pos: 59.5,49.5 + parent: 2 + - uid: 3043 + components: + - type: Transform + pos: 55.5,30.5 + parent: 2 + - uid: 3048 + components: + - type: Transform + pos: 56.5,30.5 + parent: 2 + - uid: 3049 + components: + - type: Transform + pos: 55.5,30.5 + parent: 2 + - uid: 3063 + components: + - type: Transform + pos: 57.5,48.5 + parent: 2 + - uid: 3078 + components: + - type: Transform + pos: -0.5,17.5 + parent: 2 + - uid: 3091 + components: + - type: Transform + pos: 38.5,0.5 + parent: 2 + - uid: 3109 + components: + - type: Transform + pos: 60.5,38.5 + parent: 2 + - uid: 3110 + components: + - type: Transform + pos: 60.5,39.5 + parent: 2 + - uid: 3349 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - uid: 3350 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - uid: 3351 + components: + - type: Transform + pos: 1.5,18.5 + parent: 2 + - uid: 3352 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 3353 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - uid: 3354 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 3355 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 3356 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - uid: 3357 + components: + - type: Transform + pos: 7.5,18.5 + parent: 2 + - uid: 3358 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 3359 + components: + - type: Transform + pos: -3.5,9.5 + parent: 2 + - uid: 3360 + components: + - type: Transform + pos: -3.5,10.5 + parent: 2 + - uid: 3361 + components: + - type: Transform + pos: -3.5,11.5 + parent: 2 + - uid: 3362 + components: + - type: Transform + pos: -3.5,12.5 + parent: 2 + - uid: 3363 + components: + - type: Transform + pos: -3.5,13.5 + parent: 2 + - uid: 3364 + components: + - type: Transform + pos: -3.5,14.5 + parent: 2 + - uid: 3365 + components: + - type: Transform + pos: -3.5,15.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + pos: 38.5,1.5 + parent: 2 + - uid: 3688 + components: + - type: Transform + pos: 60.5,41.5 + parent: 2 + - uid: 3689 + components: + - type: Transform + pos: 60.5,42.5 + parent: 2 + - uid: 3690 + components: + - type: Transform + pos: 60.5,43.5 + parent: 2 + - uid: 3691 + components: + - type: Transform + pos: 60.5,44.5 + parent: 2 + - uid: 3692 + components: + - type: Transform + pos: 60.5,45.5 + parent: 2 + - uid: 3693 + components: + - type: Transform + pos: 60.5,46.5 + parent: 2 + - uid: 3694 + components: + - type: Transform + pos: 60.5,47.5 + parent: 2 + - uid: 3695 + components: + - type: Transform + pos: 60.5,48.5 + parent: 2 + - uid: 3863 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 + - uid: 3864 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 3865 + components: + - type: Transform + pos: 36.5,18.5 + parent: 2 + - uid: 3866 + components: + - type: Transform + pos: 37.5,18.5 + parent: 2 + - uid: 3867 + components: + - type: Transform + pos: 37.5,19.5 + parent: 2 + - uid: 3868 + components: + - type: Transform + pos: 37.5,20.5 + parent: 2 + - uid: 3869 + components: + - type: Transform + pos: 37.5,21.5 + parent: 2 + - uid: 3870 + components: + - type: Transform + pos: 36.5,21.5 + parent: 2 + - uid: 3973 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 2 + - uid: 4069 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 + - uid: 4070 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 2 + - uid: 4071 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 2 + - uid: 4072 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 2 + - uid: 4073 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 2 + - uid: 4074 + components: + - type: Transform + pos: 39.5,-0.5 + parent: 2 + - uid: 4075 + components: + - type: Transform + pos: 40.5,-0.5 + parent: 2 + - uid: 4076 + components: + - type: Transform + pos: 40.5,1.5 + parent: 2 + - uid: 4077 + components: + - type: Transform + pos: 40.5,2.5 + parent: 2 + - uid: 4078 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 4079 + components: + - type: Transform + pos: 40.5,0.5 + parent: 2 + - uid: 4080 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 4083 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 + - uid: 4084 + components: + - type: Transform + pos: 45.5,3.5 + parent: 2 + - uid: 4085 + components: + - type: Transform + pos: 45.5,2.5 + parent: 2 + - uid: 4086 + components: + - type: Transform + pos: 45.5,1.5 + parent: 2 + - uid: 4087 + components: + - type: Transform + pos: 45.5,0.5 + parent: 2 + - uid: 4088 + components: + - type: Transform + pos: 45.5,-0.5 + parent: 2 + - uid: 4089 + components: + - type: Transform + pos: 43.5,-0.5 + parent: 2 + - uid: 4090 + components: + - type: Transform + pos: 44.5,-0.5 + parent: 2 + - uid: 4091 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 2 + - uid: 4242 + components: + - type: Transform + pos: 34.5,21.5 + parent: 2 + - uid: 4243 + components: + - type: Transform + pos: 35.5,21.5 + parent: 2 + - uid: 4591 + components: + - type: Transform + pos: 33.5,50.5 + parent: 2 + - uid: 4592 + components: + - type: Transform + pos: 33.5,49.5 + parent: 2 + - uid: 4593 + components: + - type: Transform + pos: 33.5,48.5 + parent: 2 + - uid: 4594 + components: + - type: Transform + pos: 32.5,48.5 + parent: 2 + - uid: 4605 + components: + - type: Transform + pos: 33.5,51.5 + parent: 2 + - uid: 4606 + components: + - type: Transform + pos: 33.5,52.5 + parent: 2 + - uid: 4607 + components: + - type: Transform + pos: 33.5,53.5 + parent: 2 + - uid: 4608 + components: + - type: Transform + pos: 33.5,54.5 + parent: 2 + - uid: 4609 + components: + - type: Transform + pos: 34.5,54.5 + parent: 2 + - uid: 4610 + components: + - type: Transform + pos: 35.5,54.5 + parent: 2 + - uid: 4611 + components: + - type: Transform + pos: 36.5,54.5 + parent: 2 + - uid: 4612 + components: + - type: Transform + pos: 37.5,54.5 + parent: 2 + - uid: 4613 + components: + - type: Transform + pos: 37.5,52.5 + parent: 2 + - uid: 4614 + components: + - type: Transform + pos: 37.5,51.5 + parent: 2 + - uid: 4615 + components: + - type: Transform + pos: 37.5,50.5 + parent: 2 + - uid: 4616 + components: + - type: Transform + pos: 37.5,53.5 + parent: 2 + - uid: 4617 + components: + - type: Transform + pos: 38.5,50.5 + parent: 2 + - uid: 4618 + components: + - type: Transform + pos: 39.5,50.5 + parent: 2 + - uid: 4619 + components: + - type: Transform + pos: 40.5,50.5 + parent: 2 + - uid: 4620 + components: + - type: Transform + pos: 41.5,50.5 + parent: 2 + - uid: 4621 + components: + - type: Transform + pos: 42.5,50.5 + parent: 2 + - uid: 4622 + components: + - type: Transform + pos: 43.5,50.5 + parent: 2 + - uid: 4623 + components: + - type: Transform + pos: 43.5,51.5 + parent: 2 + - uid: 4624 + components: + - type: Transform + pos: 43.5,52.5 + parent: 2 + - uid: 5110 + components: + - type: Transform + pos: 50.5,35.5 + parent: 2 + - uid: 5295 + components: + - type: Transform + pos: 60.5,56.5 + parent: 2 + - uid: 6682 + components: + - type: Transform + pos: 50.5,36.5 + parent: 2 + - uid: 6683 + components: + - type: Transform + pos: 50.5,37.5 + parent: 2 + - uid: 6711 + components: + - type: Transform + pos: 51.5,37.5 + parent: 2 + - uid: 6712 + components: + - type: Transform + pos: 52.5,37.5 + parent: 2 + - uid: 6713 + components: + - type: Transform + pos: 53.5,37.5 + parent: 2 + - uid: 6714 + components: + - type: Transform + pos: 54.5,37.5 + parent: 2 + - uid: 6715 + components: + - type: Transform + pos: 55.5,37.5 + parent: 2 + - uid: 6716 + components: + - type: Transform + pos: 56.5,37.5 + parent: 2 + - uid: 6717 + components: + - type: Transform + pos: 57.5,37.5 + parent: 2 + - uid: 6718 + components: + - type: Transform + pos: 58.5,37.5 + parent: 2 + - uid: 6719 + components: + - type: Transform + pos: 59.5,37.5 + parent: 2 + - uid: 6836 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - uid: 6839 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - uid: 6840 + components: + - type: Transform + pos: -1.5,15.5 + parent: 2 + - uid: 6841 + components: + - type: Transform + pos: 61.5,56.5 + parent: 2 + - uid: 6842 + components: + - type: Transform + pos: 61.5,55.5 + parent: 2 + - uid: 6843 + components: + - type: Transform + pos: 61.5,54.5 + parent: 2 + - uid: 6844 + components: + - type: Transform + pos: 61.5,53.5 + parent: 2 + - uid: 6845 + components: + - type: Transform + pos: 60.5,53.5 + parent: 2 + - uid: 6872 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 + - uid: 6873 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 2 + - uid: 6874 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 6889 + components: + - type: Transform + pos: 38.5,2.5 + parent: 2 + - uid: 6890 + components: + - type: Transform + pos: 38.5,3.5 + parent: 2 + - uid: 6891 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - uid: 6892 + components: + - type: Transform + pos: 38.5,5.5 + parent: 2 + - uid: 6893 + components: + - type: Transform + pos: 38.5,6.5 + parent: 2 + - uid: 6894 + components: + - type: Transform + pos: 38.5,7.5 + parent: 2 + - uid: 6895 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2 + - uid: 6896 + components: + - type: Transform + pos: 39.5,8.5 + parent: 2 + - uid: 6897 + components: + - type: Transform + pos: 40.5,8.5 + parent: 2 + - uid: 6898 + components: + - type: Transform + pos: 41.5,8.5 + parent: 2 + - uid: 6899 + components: + - type: Transform + pos: 42.5,8.5 + parent: 2 + - uid: 6900 + components: + - type: Transform + pos: 43.5,8.5 + parent: 2 + - uid: 6901 + components: + - type: Transform + pos: 44.5,8.5 + parent: 2 + - uid: 6902 + components: + - type: Transform + pos: 45.5,8.5 + parent: 2 + - uid: 6903 + components: + - type: Transform + pos: 45.5,7.5 + parent: 2 + - uid: 6904 + components: + - type: Transform + pos: 45.5,6.5 + parent: 2 + - uid: 6905 + components: + - type: Transform + pos: 45.5,5.5 + parent: 2 + - uid: 6906 + components: + - type: Transform + pos: 45.5,4.5 + parent: 2 +- proto: CableMVStack10 + entities: + - uid: 4505 + components: + - type: Transform + pos: 56.464222,62.552715 + parent: 2 + - uid: 6954 + components: + - type: Transform + pos: 2.434794,-7.4942417 + parent: 2 +- proto: CableTerminal + entities: + - uid: 521 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 2 + - uid: 1651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,26.5 + parent: 2 + - uid: 1652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,27.5 + parent: 2 + - uid: 1653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,28.5 + parent: 2 + - uid: 1654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,29.5 + parent: 2 + - uid: 2631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,62.5 + parent: 2 +- proto: CaptainIDCard + entities: + - uid: 2402 + components: + - type: Transform + pos: 60.600914,25.608356 + parent: 2 +- proto: CaptainSabre + entities: + - uid: 2407 + components: + - type: Transform + pos: 59.452477,23.170856 + parent: 2 +- proto: CarbonDioxideCanister + entities: + - uid: 1673 + components: + - type: Transform + pos: 22.5,42.5 + parent: 2 + - uid: 1674 + components: + - type: Transform + pos: 23.5,42.5 + parent: 2 + - uid: 1782 + components: + - type: Transform + pos: 30.5,25.5 + parent: 2 +- proto: Carpet + entities: + - uid: 2037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,12.5 + parent: 2 + - uid: 2040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,13.5 + parent: 2 + - uid: 2041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,14.5 + parent: 2 + - uid: 5599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,13.5 + parent: 2 + - uid: 5621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,14.5 + parent: 2 + - uid: 5623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,12.5 + parent: 2 +- proto: CarpetBlack + entities: + - uid: 7309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,13.5 + parent: 2 + - uid: 7310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,13.5 + parent: 2 + - uid: 7311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,13.5 + parent: 2 + - uid: 7312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,13.5 + parent: 2 + - uid: 7313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,11.5 + parent: 2 + - uid: 7314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,11.5 + parent: 2 + - uid: 7315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,11.5 + parent: 2 + - uid: 7316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,11.5 + parent: 2 + - uid: 7317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,15.5 + parent: 2 + - uid: 7318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,15.5 + parent: 2 + - uid: 7319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,15.5 + parent: 2 + - uid: 7586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,15.5 + parent: 2 +- proto: CarpetBlue + entities: + - uid: 2366 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 + - uid: 2367 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 2368 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 2369 + components: + - type: Transform + pos: 52.5,19.5 + parent: 2 + - uid: 2370 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - uid: 2373 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - uid: 2374 + components: + - type: Transform + pos: 53.5,19.5 + parent: 2 + - uid: 2375 + components: + - type: Transform + pos: 53.5,20.5 + parent: 2 + - uid: 2376 + components: + - type: Transform + pos: 53.5,21.5 + parent: 2 + - uid: 2408 + components: + - type: Transform + pos: 57.5,24.5 + parent: 2 + - uid: 2409 + components: + - type: Transform + pos: 58.5,24.5 + parent: 2 + - uid: 2410 + components: + - type: Transform + pos: 59.5,23.5 + parent: 2 + - uid: 2411 + components: + - type: Transform + pos: 59.5,22.5 + parent: 2 + - uid: 2414 + components: + - type: Transform + pos: 56.5,22.5 + parent: 2 + - uid: 2415 + components: + - type: Transform + pos: 56.5,23.5 + parent: 2 + - uid: 2416 + components: + - type: Transform + pos: 57.5,23.5 + parent: 2 + - uid: 2417 + components: + - type: Transform + pos: 58.5,23.5 + parent: 2 + - uid: 2418 + components: + - type: Transform + pos: 58.5,22.5 + parent: 2 + - uid: 2419 + components: + - type: Transform + pos: 57.5,22.5 + parent: 2 + - uid: 2420 + components: + - type: Transform + pos: 57.5,21.5 + parent: 2 + - uid: 2421 + components: + - type: Transform + pos: 58.5,21.5 + parent: 2 + - uid: 3108 + components: + - type: Transform + pos: 58.5,32.5 + parent: 2 + - uid: 3136 + components: + - type: Transform + pos: 61.5,32.5 + parent: 2 + - uid: 6814 + components: + - type: Transform + pos: 60.5,32.5 + parent: 2 + - uid: 6815 + components: + - type: Transform + pos: 59.5,32.5 + parent: 2 + - uid: 6828 + components: + - type: Transform + pos: 61.5,31.5 + parent: 2 + - uid: 6829 + components: + - type: Transform + pos: 61.5,30.5 + parent: 2 + - uid: 6830 + components: + - type: Transform + pos: 60.5,30.5 + parent: 2 + - uid: 6831 + components: + - type: Transform + pos: 59.5,30.5 + parent: 2 + - uid: 6832 + components: + - type: Transform + pos: 58.5,30.5 + parent: 2 +- proto: CarpetChapel + entities: + - uid: 268 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 + - uid: 270 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 + - uid: 271 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - uid: 323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,14.5 + parent: 2 + - uid: 324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,15.5 + parent: 2 + - uid: 325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,10.5 + parent: 2 + - uid: 327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - uid: 329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 2 + - uid: 330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 2 + - uid: 331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 2 + - uid: 332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,15.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: -6.5,14.5 + parent: 2 + - uid: 334 + components: + - type: Transform + pos: -6.5,9.5 + parent: 2 + - uid: 335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 2 + - uid: 336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,15.5 + parent: 2 + - uid: 383 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 2 + - uid: 528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 2 + - uid: 529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 2 + - uid: 530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 2 + - uid: 531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 2 + - uid: 561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,14.5 + parent: 2 + - uid: 1366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,14.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,15.5 + parent: 2 + - uid: 1368 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 1756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,10.5 + parent: 2 + - uid: 3150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 2 + - uid: 4853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 2 + - uid: 6987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 2 + - uid: 7147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,13.5 + parent: 2 + - uid: 7305 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 + - uid: 7306 + components: + - type: Transform + pos: -2.5,11.5 + parent: 2 + - uid: 7307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 2 + - uid: 7308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,14.5 + parent: 2 + - uid: 7323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 2 + - uid: 7324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,10.5 + parent: 2 + - uid: 7583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,9.5 + parent: 2 + - uid: 7584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,11.5 + parent: 2 + - uid: 7585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 2 +- proto: CarpetSBlue + entities: + - uid: 2031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,12.5 + parent: 2 + - uid: 2032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,12.5 + parent: 2 + - uid: 2033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,13.5 + parent: 2 + - uid: 2034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,13.5 + parent: 2 + - uid: 2035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,14.5 + parent: 2 + - uid: 2036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,14.5 + parent: 2 +- proto: Catwalk + entities: + - uid: 4573 + components: + - type: Transform + pos: 21.5,60.5 + parent: 2 + - uid: 4574 + components: + - type: Transform + pos: 22.5,60.5 + parent: 2 + - uid: 4575 + components: + - type: Transform + pos: 18.5,60.5 + parent: 2 + - uid: 6104 + components: + - type: Transform + pos: 19.5,60.5 + parent: 2 + - uid: 6106 + components: + - type: Transform + pos: 20.5,60.5 + parent: 2 + - uid: 6108 + components: + - type: Transform + pos: 23.5,60.5 + parent: 2 + - uid: 6353 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 6354 + components: + - type: Transform + pos: 24.5,60.5 + parent: 2 + - uid: 6355 + components: + - type: Transform + pos: 25.5,60.5 + parent: 2 + - uid: 6356 + components: + - type: Transform + pos: 26.5,60.5 + parent: 2 + - uid: 6357 + components: + - type: Transform + pos: 27.5,60.5 + parent: 2 + - uid: 6358 + components: + - type: Transform + pos: 28.5,60.5 + parent: 2 + - uid: 6359 + components: + - type: Transform + pos: 29.5,60.5 + parent: 2 + - uid: 6360 + components: + - type: Transform + pos: 30.5,60.5 + parent: 2 + - uid: 6361 + components: + - type: Transform + pos: 31.5,60.5 + parent: 2 + - uid: 6362 + components: + - type: Transform + pos: 32.5,60.5 + parent: 2 + - uid: 6363 + components: + - type: Transform + pos: 33.5,60.5 + parent: 2 + - uid: 6364 + components: + - type: Transform + pos: 34.5,60.5 + parent: 2 + - uid: 6365 + components: + - type: Transform + pos: 35.5,60.5 + parent: 2 + - uid: 6366 + components: + - type: Transform + pos: 36.5,60.5 + parent: 2 + - uid: 6367 + components: + - type: Transform + pos: 37.5,60.5 + parent: 2 + - uid: 6368 + components: + - type: Transform + pos: 38.5,60.5 + parent: 2 + - uid: 6369 + components: + - type: Transform + pos: 39.5,60.5 + parent: 2 + - uid: 6370 + components: + - type: Transform + pos: 40.5,60.5 + parent: 2 + - uid: 6371 + components: + - type: Transform + pos: 41.5,60.5 + parent: 2 + - uid: 6372 + components: + - type: Transform + pos: 42.5,60.5 + parent: 2 + - uid: 6373 + components: + - type: Transform + pos: 43.5,60.5 + parent: 2 + - uid: 6374 + components: + - type: Transform + pos: 44.5,60.5 + parent: 2 + - uid: 6375 + components: + - type: Transform + pos: 45.5,60.5 + parent: 2 + - uid: 6376 + components: + - type: Transform + pos: 46.5,60.5 + parent: 2 + - uid: 6377 + components: + - type: Transform + pos: 47.5,60.5 + parent: 2 + - uid: 6378 + components: + - type: Transform + pos: 48.5,60.5 + parent: 2 + - uid: 6379 + components: + - type: Transform + pos: 49.5,60.5 + parent: 2 + - uid: 6380 + components: + - type: Transform + pos: 50.5,60.5 + parent: 2 + - uid: 6381 + components: + - type: Transform + pos: 51.5,60.5 + parent: 2 + - uid: 6382 + components: + - type: Transform + pos: 52.5,60.5 + parent: 2 + - uid: 6383 + components: + - type: Transform + pos: 58.5,68.5 + parent: 2 + - uid: 6384 + components: + - type: Transform + pos: 58.5,67.5 + parent: 2 + - uid: 6385 + components: + - type: Transform + pos: 58.5,66.5 + parent: 2 + - uid: 6386 + components: + - type: Transform + pos: 52.5,67.5 + parent: 2 + - uid: 6387 + components: + - type: Transform + pos: 53.5,67.5 + parent: 2 + - uid: 6388 + components: + - type: Transform + pos: 54.5,67.5 + parent: 2 + - uid: 6389 + components: + - type: Transform + pos: 55.5,67.5 + parent: 2 + - uid: 6390 + components: + - type: Transform + pos: 56.5,67.5 + parent: 2 + - uid: 6391 + components: + - type: Transform + pos: 51.5,67.5 + parent: 2 + - uid: 6392 + components: + - type: Transform + pos: 58.5,67.5 + parent: 2 + - uid: 6393 + components: + - type: Transform + pos: 59.5,67.5 + parent: 2 + - uid: 6394 + components: + - type: Transform + pos: 60.5,67.5 + parent: 2 + - uid: 6395 + components: + - type: Transform + pos: 57.5,67.5 + parent: 2 + - uid: 6396 + components: + - type: Transform + pos: 62.5,67.5 + parent: 2 + - uid: 6397 + components: + - type: Transform + pos: 63.5,67.5 + parent: 2 + - uid: 6398 + components: + - type: Transform + pos: 64.5,67.5 + parent: 2 + - uid: 6399 + components: + - type: Transform + pos: 65.5,67.5 + parent: 2 + - uid: 6400 + components: + - type: Transform + pos: 61.5,67.5 + parent: 2 + - uid: 6401 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 + - uid: 6402 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 2 + - uid: 6403 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 2 + - uid: 6404 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 2 + - uid: 6405 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 2 + - uid: 6406 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - uid: 6407 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 2 + - uid: 6408 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 2 + - uid: 6409 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 + - uid: 6410 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - uid: 6411 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 2 + - uid: 6412 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 2 + - uid: 6413 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 2 + - uid: 6414 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - uid: 6416 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 2 + - uid: 6417 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 2 + - uid: 6418 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 2 + - uid: 6560 + components: + - type: Transform + pos: 17.5,60.5 + parent: 2 +- proto: Chair + entities: + - uid: 546 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,9.5 + parent: 2 + - uid: 548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,9.5 + parent: 2 + - uid: 549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,10.5 + parent: 2 + - uid: 550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,11.5 + parent: 2 + - uid: 551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,12.5 + parent: 2 + - uid: 1893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,26.5 + parent: 2 + - uid: 2016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,18.5 + parent: 2 + - uid: 2017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,17.5 + parent: 2 + - uid: 2018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,16.5 + parent: 2 + - uid: 2019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,16.5 + parent: 2 + - uid: 2020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,17.5 + parent: 2 + - uid: 2021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,18.5 + parent: 2 + - uid: 2022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,13.5 + parent: 2 + - uid: 2023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,13.5 + parent: 2 + - uid: 2024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,13.5 + parent: 2 + - uid: 2025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,13.5 + parent: 2 + - uid: 2026 + components: + - type: Transform + pos: 57.5,18.5 + parent: 2 + - uid: 4852 + components: + - type: Transform + pos: 58.5,39.5 + parent: 2 + - uid: 5050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,2.5 + parent: 2 + - uid: 5863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-17.5 + parent: 2 + - uid: 7001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-17.5 + parent: 2 + - uid: 7556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,25.5 + parent: 2 + - uid: 7557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,24.5 + parent: 2 + - uid: 7558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,23.5 + parent: 2 +- proto: ChairOfficeLight + entities: + - uid: 651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.396442,16.43515 + parent: 2 + - uid: 1488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.49812,32.51353 + parent: 2 + - uid: 1546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.46026,13.520181 + parent: 2 +- proto: ChairWood + entities: + - uid: 138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 2 + - uid: 139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,0.5 + parent: 2 + - uid: 140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,0.5 + parent: 2 + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 2 + - uid: 267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,15.5 + parent: 2 + - uid: 337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,14.5 + parent: 2 + - uid: 338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,13.5 + parent: 2 + - uid: 339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 2 + - uid: 340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 2 + - uid: 341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 2 + - uid: 342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,11.5 + parent: 2 + - uid: 343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,10.5 + parent: 2 + - uid: 344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 2 + - uid: 345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,15.5 + parent: 2 + - uid: 346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,14.5 + parent: 2 + - uid: 347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 2 + - uid: 348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,15.5 + parent: 2 + - uid: 349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,15.5 + parent: 2 + - uid: 350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,14.5 + parent: 2 + - uid: 351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 2 + - uid: 352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 2 + - uid: 353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,9.5 + parent: 2 + - uid: 354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,15.5 + parent: 2 +- proto: ChemDispenser + entities: + - uid: 647 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 +- proto: ChemMaster + entities: + - uid: 643 + components: + - type: Transform + pos: 24.5,11.5 + parent: 2 +- proto: ChessBoard + entities: + - uid: 7002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.47725,-17.435534 + parent: 2 + - uid: 7587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.611797,0.5134382 + parent: 2 +- proto: ChurchOrganInstrument + entities: + - uid: 318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,9.5 + parent: 2 +- proto: CircuitImprinter + entities: + - uid: 1511 + components: + - type: Transform + pos: 43.5,3.5 + parent: 2 +- proto: ClosetChefFilled + entities: + - uid: 165 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 7017 + components: + - type: Transform + pos: 42.5,-15.5 + parent: 2 + - uid: 7018 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 +- proto: ClosetFireFilled + entities: + - uid: 5084 + components: + - type: Transform + pos: 48.5,-1.5 + parent: 2 + - uid: 7019 + components: + - type: Transform + pos: 62.5,21.5 + parent: 2 + - uid: 7020 + components: + - type: Transform + pos: 41.5,-15.5 + parent: 2 + - uid: 7568 + components: + - type: Transform + pos: 20.5,39.5 + parent: 2 +- proto: ClosetL3VirologyFilled + entities: + - uid: 6918 + components: + - type: Transform + pos: 32.5,11.5 + parent: 2 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 7022 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 2 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 2449 + components: + - type: Transform + pos: 57.5,35.5 + parent: 2 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 2450 + components: + - type: Transform + pos: 61.5,35.5 + parent: 2 +- proto: ClothingEyesGlassesCheapSunglasses + entities: + - uid: 5921 + components: + - type: Transform + pos: 28.421654,-11.3362255 + parent: 2 +- proto: ClothingHandsGlovesColorYellowBudget + entities: + - uid: 5891 + components: + - type: Transform + pos: 47.48136,19.662823 + parent: 2 + - uid: 6051 + components: + - type: Transform + pos: 47.54386,19.444073 + parent: 2 +- proto: ClothingNeckGoldAutismPin + entities: + - uid: 2497 + components: + - type: Transform + pos: 53.632584,42.0908 + parent: 2 +- proto: ClothingShoesBootsMag + entities: + - uid: 6997 + components: + - type: Transform + pos: 61.95454,4.5253286 + parent: 2 + - uid: 6998 + components: + - type: Transform + pos: 62.407665,4.8222036 + parent: 2 +- proto: ClothingShoesHighheelBoots + entities: + - uid: 2496 + components: + - type: Transform + pos: 54.452896,42.700176 + parent: 2 +- proto: ComfyChair + entities: + - uid: 1736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,31.5 + parent: 2 + - uid: 2380 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 2382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,19.5 + parent: 2 + - uid: 2439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,32.5 + parent: 2 + - uid: 2440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,31.5 + parent: 2 + - uid: 2441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,30.5 + parent: 2 + - uid: 2442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,33.5 + parent: 2 + - uid: 2443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,33.5 + parent: 2 + - uid: 2444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,33.5 + parent: 2 + - uid: 2445 + components: + - type: Transform + pos: 58.5,29.5 + parent: 2 + - uid: 2446 + components: + - type: Transform + pos: 59.5,29.5 + parent: 2 + - uid: 2447 + components: + - type: Transform + pos: 60.5,29.5 + parent: 2 + - uid: 5861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,20.5 + parent: 2 + - uid: 6282 + components: + - type: Transform + pos: 53.5,21.5 + parent: 2 + - uid: 6283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,19.5 + parent: 2 +- proto: ComputerAnalysisConsole + entities: + - uid: 1540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1539: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: ComputerAtmosMonitoring + entities: + - uid: 2434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,28.5 + parent: 2 + - uid: 7522 + components: + - type: Transform + pos: 15.5,39.5 + parent: 2 +- proto: computerBodyScanner + entities: + - uid: 1561 + components: + - type: Transform + pos: 52.5,6.5 + parent: 2 +- proto: ComputerCargoBounty + entities: + - uid: 627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,20.5 + parent: 2 +- proto: ComputerCargoOrders + entities: + - uid: 7478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,20.5 + parent: 2 +- proto: ComputerCargoShuttle + entities: + - uid: 6101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,20.5 + parent: 2 +- proto: ComputerComms + entities: + - uid: 2424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,23.5 + parent: 2 + - uid: 2428 + components: + - type: Transform + pos: 58.5,34.5 + parent: 2 +- proto: ComputerCrewMonitoring + entities: + - uid: 266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,1.5 + parent: 2 + - uid: 553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,12.5 + parent: 2 + - uid: 2432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,31.5 + parent: 2 +- proto: ComputerCriminalRecords + entities: + - uid: 4570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-12.5 + parent: 2 +- proto: ComputerId + entities: + - uid: 2275 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 2422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,22.5 + parent: 2 + - uid: 2429 + components: + - type: Transform + pos: 59.5,34.5 + parent: 2 +- proto: ComputerMassMedia + entities: + - uid: 2435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,28.5 + parent: 2 +- proto: ComputerMedicalRecords + entities: + - uid: 2433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,30.5 + parent: 2 +- proto: ComputerPowerMonitoring + entities: + - uid: 322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,62.5 + parent: 2 + - uid: 1592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,35.5 + parent: 2 + - uid: 2431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,32.5 + parent: 2 + - uid: 2613 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 2 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 1480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,31.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + pos: 54.5,14.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + pos: 43.5,0.5 + parent: 2 +- proto: ComputerSalvageExpedition + entities: + - uid: 6081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,29.5 + parent: 2 +- proto: ComputerShuttleCargo + entities: + - uid: 6100 + components: + - type: Transform + pos: 8.5,27.5 + parent: 2 +- proto: ComputerSolarControl + entities: + - uid: 321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,61.5 + parent: 2 + - uid: 1591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,35.5 + parent: 2 + - uid: 2614 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 +- proto: ComputerStationRecords + entities: + - uid: 2430 + components: + - type: Transform + pos: 60.5,34.5 + parent: 2 + - uid: 2625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-12.5 + parent: 2 + - uid: 3247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-12.5 + parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 2436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,28.5 + parent: 2 + - uid: 5829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-10.5 + parent: 2 +- proto: ConveyorBelt + entities: + - uid: 241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,12.5 + parent: 2 + - uid: 261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,12.5 + parent: 2 + - uid: 262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,12.5 + parent: 2 + - uid: 263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,12.5 + parent: 2 + - uid: 264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,12.5 + parent: 2 + - uid: 265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,12.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 358 + components: + - type: Transform + rot: -4.71238898038469 rad + pos: 5.5,-14.5 + parent: 2 + - uid: 360 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 2 + - uid: 361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 2 + - uid: 374 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 + - uid: 382 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 + - uid: 737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,25.5 + parent: 2 + - uid: 738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,25.5 + parent: 2 + - uid: 739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,25.5 + parent: 2 + - uid: 740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,25.5 + parent: 2 + - uid: 741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,29.5 + parent: 2 + - uid: 742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,29.5 + parent: 2 + - uid: 743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,29.5 + parent: 2 + - uid: 744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,29.5 + parent: 2 + - uid: 1729 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 7602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-13.5 + parent: 2 +- proto: CorporateCircuitBoard + entities: + - uid: 4741 + components: + - type: Transform + pos: 32.491127,51.79884 + parent: 2 +- proto: CrateCoffin + entities: + - uid: 518 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - uid: 519 + components: + - type: Transform + pos: -3.5,18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 2798 + components: + - type: Transform + pos: -2.5,18.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateEmptySpawner + entities: + - uid: 7016 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 2 +- proto: CrateEngineeringAMEControl + entities: + - uid: 1618 + components: + - type: Transform + pos: 46.5,36.5 + parent: 2 +- proto: CrateEngineeringAMEJar + entities: + - uid: 1617 + components: + - type: Transform + pos: 47.5,36.5 + parent: 2 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 1619 + components: + - type: Transform + pos: 45.5,36.5 + parent: 2 +- proto: CrateFilledSpawner + entities: + - uid: 7563 + components: + - type: Transform + pos: 7.5,30.5 + parent: 2 +- proto: CratePermaEscapeEVA + entities: + - uid: 6986 + components: + - type: Transform + pos: 60.5,4.5 + parent: 2 +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 6944 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 +- proto: Crematorium + entities: + - uid: 6732 + components: + - type: Transform + pos: -5.5,18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrewMonitoringServer + entities: + - uid: 6339 + components: + - type: Transform + pos: 37.5,26.5 + parent: 2 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 5997 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 5998 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 823 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 1740 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 +- proto: CryoPod + entities: + - uid: 558 + components: + - type: Transform + pos: 15.5,12.5 + parent: 2 + - uid: 7504 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 1295 + components: + - type: Transform + pos: 15.372259,9.524792 + parent: 2 + - uid: 7554 + components: + - type: Transform + pos: 15.716009,9.733126 + parent: 2 +- proto: CurtainsBlack + entities: + - uid: 7154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,17.5 + parent: 2 +- proto: DefaultStationBeaconAICore + entities: + - uid: 4727 + components: + - type: Transform + pos: 46.5,50.5 + parent: 2 +- proto: DefaultStationBeaconAIUpload + entities: + - uid: 4728 + components: + - type: Transform + pos: 32.5,52.5 + parent: 2 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 7492 + components: + - type: Transform + pos: 47.5,12.5 + parent: 2 +- proto: DefaultStationBeaconArmory + entities: + - uid: 1439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-3.5 + parent: 2 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 2560 + components: + - type: Transform + pos: 60.5,49.5 + parent: 2 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 7523 + components: + - type: Transform + pos: 53.5,3.5 + parent: 2 +- proto: DefaultStationBeaconBar + entities: + - uid: 1282 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 +- proto: DefaultStationBeaconBotany + entities: + - uid: 1283 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 +- proto: DefaultStationBeaconBridge + entities: + - uid: 3319 + components: + - type: Transform + pos: 61.5,31.5 + parent: 2 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 3320 + components: + - type: Transform + pos: 58.5,22.5 + parent: 2 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 1284 + components: + - type: Transform + pos: 10.5,23.5 + parent: 2 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 1285 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 +- proto: DefaultStationBeaconChapel + entities: + - uid: 1286 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 1287 + components: + - type: Transform + pos: 26.5,10.5 + parent: 2 +- proto: DefaultStationBeaconClinic + entities: + - uid: 2451 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 1289 + components: + - type: Transform + pos: 34.5,14.5 + parent: 2 +- proto: DefaultStationBeaconCourtroom + entities: + - uid: 3322 + components: + - type: Transform + pos: 59.5,15.5 + parent: 2 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 1279 + components: + - type: Transform + pos: 14.5,11.5 + parent: 2 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 1278 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 1281 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 +- proto: DefaultStationBeaconDorms + entities: + - uid: 1280 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 +- proto: DefaultStationBeaconEngineering + entities: + - uid: 1640 + components: + - type: Transform + pos: 36.5,33.5 + parent: 2 +- proto: DefaultStationBeaconEvac + entities: + - uid: 3318 + components: + - type: Transform + pos: 48.5,-16.5 + parent: 2 + - uid: 3321 + components: + - type: Transform + pos: 60.5,1.5 + parent: 2 +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 2274 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 6162 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 2 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 1292 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 2 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 1293 + components: + - type: Transform + pos: 17.5,1.5 + parent: 2 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 7525 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 2438 + components: + - type: Transform + pos: 3.5,15.5 + parent: 2 +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 1629 + components: + - type: Transform + pos: 34.5,25.5 + parent: 2 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 7367 + components: + - type: Transform + pos: 53.5,8.5 + parent: 2 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 1296 + components: + - type: Transform + pos: 9.5,30.5 + parent: 2 +- proto: DefaultStationBeaconScience + entities: + - uid: 7524 + components: + - type: Transform + pos: 43.5,7.5 + parent: 2 +- proto: DefaultStationBeaconSecurity + entities: + - uid: 1398 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 2 +- proto: DefaultStationBeaconSolars + entities: + - uid: 3324 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 2 + - uid: 3325 + components: + - type: Transform + pos: 58.5,67.5 + parent: 2 +- proto: DefaultStationBeaconTEG + entities: + - uid: 1297 + components: + - type: Transform + pos: 26.5,29.5 + parent: 2 +- proto: DefaultStationBeaconTheater + entities: + - uid: 480 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 2 +- proto: DefaultStationBeaconVault + entities: + - uid: 3323 + components: + - type: Transform + pos: 51.5,40.5 + parent: 2 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 6328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,13.5 + parent: 2 + - uid: 6330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,11.5 + parent: 2 +- proto: DeskBell + entities: + - uid: 22 + components: + - type: Transform + pos: 16.637354,20.555862 + parent: 2 +- proto: DiseaseDiagnoser + entities: + - uid: 6907 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 +- proto: DisposalBend + entities: + - uid: 689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,20.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + pos: 40.5,-9.5 + parent: 2 + - uid: 2290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-10.5 + parent: 2 + - uid: 2332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-14.5 + parent: 2 + - uid: 2378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-9.5 + parent: 2 + - uid: 2476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-14.5 + parent: 2 + - uid: 2495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-14.5 + parent: 2 + - uid: 2805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,37.5 + parent: 2 + - uid: 2807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,36.5 + parent: 2 + - uid: 2808 + components: + - type: Transform + pos: 19.5,57.5 + parent: 2 + - uid: 3047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 2 + - uid: 3059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,13.5 + parent: 2 + - uid: 3190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,5.5 + parent: 2 + - uid: 3197 + components: + - type: Transform + pos: 28.5,34.5 + parent: 2 + - uid: 3235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,32.5 + parent: 2 + - uid: 3281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,37.5 + parent: 2 + - uid: 4461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,53.5 + parent: 2 + - uid: 4462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,53.5 + parent: 2 + - uid: 4463 + components: + - type: Transform + pos: 61.5,58.5 + parent: 2 + - uid: 4464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,58.5 + parent: 2 + - uid: 4465 + components: + - type: Transform + pos: 56.5,60.5 + parent: 2 + - uid: 4769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 2 + - uid: 4770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 2 + - uid: 4775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-14.5 + parent: 2 + - uid: 4781 + components: + - type: Transform + pos: 15.5,24.5 + parent: 2 + - uid: 4786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,15.5 + parent: 2 + - uid: 4798 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 2 + - uid: 4805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-13.5 + parent: 2 + - uid: 4812 + components: + - type: Transform + pos: 44.5,-12.5 + parent: 2 + - uid: 4813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,31.5 + parent: 2 + - uid: 4817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,32.5 + parent: 2 + - uid: 4906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,18.5 + parent: 2 + - uid: 4908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,9.5 + parent: 2 + - uid: 4909 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - uid: 4911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,9.5 + parent: 2 + - uid: 4913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,5.5 + parent: 2 + - uid: 4920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,6.5 + parent: 2 + - uid: 4927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,6.5 + parent: 2 + - uid: 4928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,6.5 + parent: 2 + - uid: 4941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,7.5 + parent: 2 + - uid: 4988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,20.5 + parent: 2 + - uid: 5041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,60.5 + parent: 2 + - uid: 5048 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - uid: 5061 + components: + - type: Transform + pos: 27.5,35.5 + parent: 2 + - uid: 5062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,34.5 + parent: 2 + - uid: 5114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,16.5 + parent: 2 + - uid: 5124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,16.5 + parent: 2 + - uid: 5141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,2.5 + parent: 2 + - uid: 5145 + components: + - type: Transform + pos: 58.5,6.5 + parent: 2 + - uid: 5178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,57.5 + parent: 2 + - uid: 5184 + components: + - type: Transform + pos: 48.5,8.5 + parent: 2 + - uid: 5217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 2 + - uid: 5949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-12.5 + parent: 2 + - uid: 5977 + components: + - type: Transform + pos: 50.5,6.5 + parent: 2 + - uid: 6733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,36.5 + parent: 2 + - uid: 6749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,25.5 + parent: 2 + - uid: 6750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,25.5 + parent: 2 + - uid: 6751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,22.5 + parent: 2 + - uid: 6752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,22.5 + parent: 2 + - uid: 6769 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - uid: 6792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,6.5 + parent: 2 + - uid: 6803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,5.5 + parent: 2 + - uid: 6805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,8.5 + parent: 2 + - uid: 7096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,24.5 + parent: 2 +- proto: DisposalJunction + entities: + - uid: 2616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,6.5 + parent: 2 + - uid: 3233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,6.5 + parent: 2 + - uid: 4766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-12.5 + parent: 2 + - uid: 4792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,6.5 + parent: 2 + - uid: 4901 + components: + - type: Transform + pos: 32.5,31.5 + parent: 2 + - uid: 5087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,18.5 + parent: 2 + - uid: 6780 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2 +- proto: DisposalJunctionFlipped + entities: + - uid: 1394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-9.5 + parent: 2 + - uid: 2536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,18.5 + parent: 2 + - uid: 4771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-8.5 + parent: 2 + - uid: 4942 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 6790 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2 +- proto: DisposalPipe + entities: + - uid: 218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-14.5 + parent: 2 + - uid: 1391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-12.5 + parent: 2 + - uid: 1392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-9.5 + parent: 2 + - uid: 1845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,38.5 + parent: 2 + - uid: 2331 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 2 + - uid: 2389 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 2532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,8.5 + parent: 2 + - uid: 2563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,60.5 + parent: 2 + - uid: 2615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,6.5 + parent: 2 + - uid: 2764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,60.5 + parent: 2 + - uid: 2783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,60.5 + parent: 2 + - uid: 2811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,37.5 + parent: 2 + - uid: 2909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,60.5 + parent: 2 + - uid: 3044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-11.5 + parent: 2 + - uid: 3045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 2 + - uid: 3046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,34.5 + parent: 2 + - uid: 3053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,19.5 + parent: 2 + - uid: 3167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,20.5 + parent: 2 + - uid: 3176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,21.5 + parent: 2 + - uid: 3214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,33.5 + parent: 2 + - uid: 3241 + components: + - type: Transform + pos: 50.5,33.5 + parent: 2 + - uid: 3280 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 + - uid: 3287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,37.5 + parent: 2 + - uid: 3290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,37.5 + parent: 2 + - uid: 3291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,37.5 + parent: 2 + - uid: 3314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,37.5 + parent: 2 + - uid: 3316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,37.5 + parent: 2 + - uid: 3317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,37.5 + parent: 2 + - uid: 3805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,34.5 + parent: 2 + - uid: 3823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,32.5 + parent: 2 + - uid: 4350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,38.5 + parent: 2 + - uid: 4365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,33.5 + parent: 2 + - uid: 4366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,39.5 + parent: 2 + - uid: 4368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,40.5 + parent: 2 + - uid: 4435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,39.5 + parent: 2 + - uid: 4436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,41.5 + parent: 2 + - uid: 4437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,42.5 + parent: 2 + - uid: 4438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,45.5 + parent: 2 + - uid: 4439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,44.5 + parent: 2 + - uid: 4440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,46.5 + parent: 2 + - uid: 4441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,47.5 + parent: 2 + - uid: 4442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,48.5 + parent: 2 + - uid: 4443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,49.5 + parent: 2 + - uid: 4444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,50.5 + parent: 2 + - uid: 4450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,51.5 + parent: 2 + - uid: 4460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,52.5 + parent: 2 + - uid: 4466 + components: + - type: Transform + pos: 56.5,59.5 + parent: 2 + - uid: 4755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,43.5 + parent: 2 + - uid: 4772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-9.5 + parent: 2 + - uid: 4773 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 + - uid: 4776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-9.5 + parent: 2 + - uid: 4779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 2 + - uid: 4783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,15.5 + parent: 2 + - uid: 4784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,15.5 + parent: 2 + - uid: 4785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,15.5 + parent: 2 + - uid: 4787 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 4788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,15.5 + parent: 2 + - uid: 4789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,15.5 + parent: 2 + - uid: 4791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,15.5 + parent: 2 + - uid: 4795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-14.5 + parent: 2 + - uid: 4797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-14.5 + parent: 2 + - uid: 4799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-12.5 + parent: 2 + - uid: 4800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-11.5 + parent: 2 + - uid: 4801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,8.5 + parent: 2 + - uid: 4802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,8.5 + parent: 2 + - uid: 4803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,8.5 + parent: 2 + - uid: 4804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,8.5 + parent: 2 + - uid: 4806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-12.5 + parent: 2 + - uid: 4808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-12.5 + parent: 2 + - uid: 4809 + components: + - type: Transform + pos: 44.5,-13.5 + parent: 2 + - uid: 4810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-14.5 + parent: 2 + - uid: 4816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,31.5 + parent: 2 + - uid: 4898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - uid: 4899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 2 + - uid: 4900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,32.5 + parent: 2 + - uid: 4907 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 + - uid: 4910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,15.5 + parent: 2 + - uid: 4914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-8.5 + parent: 2 + - uid: 4915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-8.5 + parent: 2 + - uid: 4916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 2 + - uid: 4917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-8.5 + parent: 2 + - uid: 4918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-8.5 + parent: 2 + - uid: 4919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-8.5 + parent: 2 + - uid: 4921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-8.5 + parent: 2 + - uid: 4931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-9.5 + parent: 2 + - uid: 4932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,32.5 + parent: 2 + - uid: 4933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-9.5 + parent: 2 + - uid: 4934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 2 + - uid: 4935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-9.5 + parent: 2 + - uid: 4936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-9.5 + parent: 2 + - uid: 4937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-9.5 + parent: 2 + - uid: 4943 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 + - uid: 4944 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 4945 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 4946 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 4947 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 4948 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 4949 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 4950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,60.5 + parent: 2 + - uid: 4951 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 4952 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 4953 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 + - uid: 4954 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 4955 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 + - uid: 4956 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 4957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,60.5 + parent: 2 + - uid: 4959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,60.5 + parent: 2 + - uid: 4960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 + - uid: 4961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 + - uid: 4962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,60.5 + parent: 2 + - uid: 4966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,60.5 + parent: 2 + - uid: 4967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,60.5 + parent: 2 + - uid: 4968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,60.5 + parent: 2 + - uid: 4969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,60.5 + parent: 2 + - uid: 4970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,60.5 + parent: 2 + - uid: 4971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,60.5 + parent: 2 + - uid: 4972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,60.5 + parent: 2 + - uid: 4973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,60.5 + parent: 2 + - uid: 4974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,60.5 + parent: 2 + - uid: 4975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,60.5 + parent: 2 + - uid: 4976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,60.5 + parent: 2 + - uid: 4977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,60.5 + parent: 2 + - uid: 4978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,60.5 + parent: 2 + - uid: 4979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,60.5 + parent: 2 + - uid: 4980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 2 + - uid: 4981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 + - uid: 4982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 2 + - uid: 4983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 2 + - uid: 4984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,6.5 + parent: 2 + - uid: 4985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,60.5 + parent: 2 + - uid: 4989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,60.5 + parent: 2 + - uid: 4990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,6.5 + parent: 2 + - uid: 4991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,6.5 + parent: 2 + - uid: 4992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,6.5 + parent: 2 + - uid: 4993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,6.5 + parent: 2 + - uid: 4994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,6.5 + parent: 2 + - uid: 4995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,6.5 + parent: 2 + - uid: 4996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,6.5 + parent: 2 + - uid: 4997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,6.5 + parent: 2 + - uid: 4999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,6.5 + parent: 2 + - uid: 5000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,6.5 + parent: 2 + - uid: 5001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,6.5 + parent: 2 + - uid: 5002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,6.5 + parent: 2 + - uid: 5003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,60.5 + parent: 2 + - uid: 5004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,6.5 + parent: 2 + - uid: 5005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,6.5 + parent: 2 + - uid: 5006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 2 + - uid: 5007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,6.5 + parent: 2 + - uid: 5008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,6.5 + parent: 2 + - uid: 5009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,6.5 + parent: 2 + - uid: 5012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-9.5 + parent: 2 + - uid: 5013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-9.5 + parent: 2 + - uid: 5014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-9.5 + parent: 2 + - uid: 5015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-9.5 + parent: 2 + - uid: 5017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,60.5 + parent: 2 + - uid: 5018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,60.5 + parent: 2 + - uid: 5020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,35.5 + parent: 2 + - uid: 5021 + components: + - type: Transform + pos: 50.5,32.5 + parent: 2 + - uid: 5025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,57.5 + parent: 2 + - uid: 5027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-13.5 + parent: 2 + - uid: 5028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-13.5 + parent: 2 + - uid: 5032 + components: + - type: Transform + pos: 19.5,54.5 + parent: 2 + - uid: 5033 + components: + - type: Transform + pos: 56.5,33.5 + parent: 2 + - uid: 5034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,5.5 + parent: 2 + - uid: 5035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,5.5 + parent: 2 + - uid: 5038 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 2 + - uid: 5047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 2 + - uid: 5058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,35.5 + parent: 2 + - uid: 5059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,35.5 + parent: 2 + - uid: 5060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,35.5 + parent: 2 + - uid: 5071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,30.5 + parent: 2 + - uid: 5072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,29.5 + parent: 2 + - uid: 5073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,28.5 + parent: 2 + - uid: 5074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,27.5 + parent: 2 + - uid: 5075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,26.5 + parent: 2 + - uid: 5076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,25.5 + parent: 2 + - uid: 5077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,24.5 + parent: 2 + - uid: 5078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,23.5 + parent: 2 + - uid: 5079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,22.5 + parent: 2 + - uid: 5080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,21.5 + parent: 2 + - uid: 5081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,20.5 + parent: 2 + - uid: 5082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,19.5 + parent: 2 + - uid: 5085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,19.5 + parent: 2 + - uid: 5088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,18.5 + parent: 2 + - uid: 5089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,18.5 + parent: 2 + - uid: 5090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,18.5 + parent: 2 + - uid: 5091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,18.5 + parent: 2 + - uid: 5092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,18.5 + parent: 2 + - uid: 5093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,18.5 + parent: 2 + - uid: 5094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,18.5 + parent: 2 + - uid: 5095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,18.5 + parent: 2 + - uid: 5096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,18.5 + parent: 2 + - uid: 5097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,18.5 + parent: 2 + - uid: 5098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,18.5 + parent: 2 + - uid: 5099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,18.5 + parent: 2 + - uid: 5100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,18.5 + parent: 2 + - uid: 5101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,18.5 + parent: 2 + - uid: 5102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,18.5 + parent: 2 + - uid: 5103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,18.5 + parent: 2 + - uid: 5104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,18.5 + parent: 2 + - uid: 5105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,18.5 + parent: 2 + - uid: 5108 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 5115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,16.5 + parent: 2 + - uid: 5116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,16.5 + parent: 2 + - uid: 5117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,16.5 + parent: 2 + - uid: 5118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,16.5 + parent: 2 + - uid: 5119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,16.5 + parent: 2 + - uid: 5120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,16.5 + parent: 2 + - uid: 5121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,16.5 + parent: 2 + - uid: 5122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,16.5 + parent: 2 + - uid: 5123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,16.5 + parent: 2 + - uid: 5125 + components: + - type: Transform + pos: 44.5,15.5 + parent: 2 + - uid: 5126 + components: + - type: Transform + pos: 44.5,14.5 + parent: 2 + - uid: 5127 + components: + - type: Transform + pos: 44.5,13.5 + parent: 2 + - uid: 5128 + components: + - type: Transform + pos: 44.5,12.5 + parent: 2 + - uid: 5129 + components: + - type: Transform + pos: 44.5,11.5 + parent: 2 + - uid: 5130 + components: + - type: Transform + pos: 44.5,10.5 + parent: 2 + - uid: 5131 + components: + - type: Transform + pos: 44.5,9.5 + parent: 2 + - uid: 5133 + components: + - type: Transform + pos: 44.5,7.5 + parent: 2 + - uid: 5137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,2.5 + parent: 2 + - uid: 5138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,2.5 + parent: 2 + - uid: 5139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,2.5 + parent: 2 + - uid: 5140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,2.5 + parent: 2 + - uid: 5142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,3.5 + parent: 2 + - uid: 5143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,4.5 + parent: 2 + - uid: 5144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,5.5 + parent: 2 + - uid: 5146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,6.5 + parent: 2 + - uid: 5147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,6.5 + parent: 2 + - uid: 5148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,6.5 + parent: 2 + - uid: 5149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,6.5 + parent: 2 + - uid: 5150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,6.5 + parent: 2 + - uid: 5154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,6.5 + parent: 2 + - uid: 5158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,6.5 + parent: 2 + - uid: 5176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,60.5 + parent: 2 + - uid: 5180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,60.5 + parent: 2 + - uid: 5183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,32.5 + parent: 2 + - uid: 5187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,57.5 + parent: 2 + - uid: 5189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,60.5 + parent: 2 + - uid: 5190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,60.5 + parent: 2 + - uid: 5191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,60.5 + parent: 2 + - uid: 5192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,60.5 + parent: 2 + - uid: 5201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,60.5 + parent: 2 + - uid: 5202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,60.5 + parent: 2 + - uid: 5203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,60.5 + parent: 2 + - uid: 5204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,60.5 + parent: 2 + - uid: 5205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,59.5 + parent: 2 + - uid: 5206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,58.5 + parent: 2 + - uid: 5207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,60.5 + parent: 2 + - uid: 5208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,58.5 + parent: 2 + - uid: 5209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,58.5 + parent: 2 + - uid: 5210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,58.5 + parent: 2 + - uid: 5211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,57.5 + parent: 2 + - uid: 5212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,56.5 + parent: 2 + - uid: 5213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,55.5 + parent: 2 + - uid: 5214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,54.5 + parent: 2 + - uid: 5215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,60.5 + parent: 2 + - uid: 5216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,58.5 + parent: 2 + - uid: 5218 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 2 + - uid: 5219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-14.5 + parent: 2 + - uid: 5314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 2 + - uid: 5416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,15.5 + parent: 2 + - uid: 5479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,22.5 + parent: 2 + - uid: 5773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,31.5 + parent: 2 + - uid: 5928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-10.5 + parent: 2 + - uid: 5950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-13.5 + parent: 2 + - uid: 5952 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 + - uid: 6026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-11.5 + parent: 2 + - uid: 6032 + components: + - type: Transform + pos: 50.5,36.5 + parent: 2 + - uid: 6065 + components: + - type: Transform + pos: 50.5,35.5 + parent: 2 + - uid: 6066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,32.5 + parent: 2 + - uid: 6099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,57.5 + parent: 2 + - uid: 6705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,60.5 + parent: 2 + - uid: 6724 + components: + - type: Transform + pos: 19.5,56.5 + parent: 2 + - uid: 6725 + components: + - type: Transform + pos: 19.5,55.5 + parent: 2 + - uid: 6726 + components: + - type: Transform + pos: 19.5,53.5 + parent: 2 + - uid: 6727 + components: + - type: Transform + pos: 19.5,52.5 + parent: 2 + - uid: 6728 + components: + - type: Transform + pos: 19.5,51.5 + parent: 2 + - uid: 6729 + components: + - type: Transform + pos: 19.5,50.5 + parent: 2 + - uid: 6735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,36.5 + parent: 2 + - uid: 6736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,36.5 + parent: 2 + - uid: 6737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,36.5 + parent: 2 + - uid: 6738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,36.5 + parent: 2 + - uid: 6739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,36.5 + parent: 2 + - uid: 6740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,36.5 + parent: 2 + - uid: 6741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,36.5 + parent: 2 + - uid: 6742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,36.5 + parent: 2 + - uid: 6743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,31.5 + parent: 2 + - uid: 6744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,30.5 + parent: 2 + - uid: 6745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,29.5 + parent: 2 + - uid: 6746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,28.5 + parent: 2 + - uid: 6747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,27.5 + parent: 2 + - uid: 6748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,26.5 + parent: 2 + - uid: 6753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,25.5 + parent: 2 + - uid: 6754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,25.5 + parent: 2 + - uid: 6755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,25.5 + parent: 2 + - uid: 6756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,25.5 + parent: 2 + - uid: 6757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,25.5 + parent: 2 + - uid: 6758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,25.5 + parent: 2 + - uid: 6759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,25.5 + parent: 2 + - uid: 6760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,25.5 + parent: 2 + - uid: 6761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,24.5 + parent: 2 + - uid: 6762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,23.5 + parent: 2 + - uid: 6763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,22.5 + parent: 2 + - uid: 6764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,22.5 + parent: 2 + - uid: 6765 + components: + - type: Transform + pos: 38.5,21.5 + parent: 2 + - uid: 6766 + components: + - type: Transform + pos: 38.5,20.5 + parent: 2 + - uid: 6767 + components: + - type: Transform + pos: 38.5,19.5 + parent: 2 + - uid: 6768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,20.5 + parent: 2 + - uid: 6770 + components: + - type: Transform + pos: 21.5,13.5 + parent: 2 + - uid: 6771 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - uid: 6772 + components: + - type: Transform + pos: 21.5,11.5 + parent: 2 + - uid: 6773 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 + - uid: 6774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,9.5 + parent: 2 + - uid: 6775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,9.5 + parent: 2 + - uid: 6776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,9.5 + parent: 2 + - uid: 6777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,8.5 + parent: 2 + - uid: 6778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,7.5 + parent: 2 + - uid: 6779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,6.5 + parent: 2 + - uid: 6781 + components: + - type: Transform + pos: 38.5,17.5 + parent: 2 + - uid: 6782 + components: + - type: Transform + pos: 38.5,16.5 + parent: 2 + - uid: 6783 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 + - uid: 6784 + components: + - type: Transform + pos: 38.5,14.5 + parent: 2 + - uid: 6785 + components: + - type: Transform + pos: 38.5,13.5 + parent: 2 + - uid: 6786 + components: + - type: Transform + pos: 38.5,12.5 + parent: 2 + - uid: 6787 + components: + - type: Transform + pos: 38.5,11.5 + parent: 2 + - uid: 6788 + components: + - type: Transform + pos: 38.5,10.5 + parent: 2 + - uid: 6789 + components: + - type: Transform + pos: 38.5,9.5 + parent: 2 + - uid: 6791 + components: + - type: Transform + pos: 38.5,7.5 + parent: 2 + - uid: 6793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,6.5 + parent: 2 + - uid: 6794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,6.5 + parent: 2 + - uid: 6795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,6.5 + parent: 2 + - uid: 6796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,6.5 + parent: 2 + - uid: 6797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,6.5 + parent: 2 + - uid: 6798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-10.5 + parent: 2 + - uid: 6799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-9.5 + parent: 2 + - uid: 6800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,31.5 + parent: 2 + - uid: 6801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,33.5 + parent: 2 + - uid: 6802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,32.5 + parent: 2 + - uid: 6804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,5.5 + parent: 2 + - uid: 6806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,8.5 + parent: 2 + - uid: 6807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,7.5 + parent: 2 + - uid: 6808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,7.5 + parent: 2 + - uid: 7097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,21.5 + parent: 2 + - uid: 7473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,23.5 + parent: 2 + - uid: 7474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,21.5 + parent: 2 + - uid: 7475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,22.5 + parent: 2 + - uid: 7476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,23.5 + parent: 2 + - uid: 7477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,24.5 + parent: 2 + - uid: 7527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,22.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 1503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-10.5 + parent: 2 + - uid: 3173 + components: + - type: Transform + pos: 37.5,23.5 + parent: 2 + - uid: 3240 + components: + - type: Transform + pos: 57.5,40.5 + parent: 2 + - uid: 4896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-13.5 + parent: 2 + - uid: 4903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-12.5 + parent: 2 + - uid: 4905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-9.5 + parent: 2 + - uid: 4939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 2 + - uid: 4986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,13.5 + parent: 2 + - uid: 5011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-13.5 + parent: 2 + - uid: 5030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,5.5 + parent: 2 + - uid: 5039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,49.5 + parent: 2 + - uid: 5042 + components: + - type: Transform + pos: 56.5,34.5 + parent: 2 + - uid: 5044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,20.5 + parent: 2 + - uid: 5056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,35.5 + parent: 2 + - uid: 5057 + components: + - type: Transform + pos: 32.5,35.5 + parent: 2 + - uid: 5113 + components: + - type: Transform + pos: 54.5,17.5 + parent: 2 + - uid: 5136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,2.5 + parent: 2 + - uid: 7461 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 +- proto: DisposalUnit + entities: + - uid: 499 + components: + - type: Transform + pos: 19.5,49.5 + parent: 2 + - uid: 2365 + components: + - type: Transform + pos: 56.5,34.5 + parent: 2 + - uid: 4850 + components: + - type: Transform + pos: 57.5,40.5 + parent: 2 + - uid: 4902 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 4904 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 2 + - uid: 4940 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 4963 + components: + - type: Transform + pos: 12.5,13.5 + parent: 2 + - uid: 4964 + components: + - type: Transform + pos: 12.5,20.5 + parent: 2 + - uid: 5010 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 2 + - uid: 5029 + components: + - type: Transform + pos: 41.5,5.5 + parent: 2 + - uid: 5054 + components: + - type: Transform + pos: 32.5,35.5 + parent: 2 + - uid: 5055 + components: + - type: Transform + pos: 23.5,35.5 + parent: 2 + - uid: 5112 + components: + - type: Transform + pos: 54.5,17.5 + parent: 2 + - uid: 5135 + components: + - type: Transform + pos: 63.5,2.5 + parent: 2 + - uid: 7040 + components: + - type: Transform + pos: 37.5,23.5 + parent: 2 + - uid: 7460 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 7493 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 +- proto: DisposalYJunction + entities: + - uid: 4780 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - uid: 4912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,8.5 + parent: 2 +- proto: DogBed + entities: + - uid: 2283 + components: + - type: Transform + pos: 47.5,27.5 + parent: 2 + - uid: 2404 + components: + - type: Transform + pos: 56.5,20.5 + parent: 2 +- proto: DresserWardenFilled + entities: + - uid: 2628 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 2 +- proto: DrinkBottleBeer + entities: + - uid: 2051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.777023,12.639819 + parent: 2 +- proto: EmergencyRollerBed + entities: + - uid: 640 + components: + - type: Transform + pos: 26.51376,15.675066 + parent: 2 + - uid: 641 + components: + - type: Transform + pos: 28.42001,14.909441 + parent: 2 +- proto: ExosuitFabricator + entities: + - uid: 1555 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 +- proto: ExtendedEmergencyOxygenTankFilled + entities: + - uid: 2427 + components: + - type: Transform + pos: 59.569664,22.772419 + parent: 2 +- proto: FigureSpawner + entities: + - uid: 7589 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 +- proto: filingCabinetRandom + entities: + - uid: 6665 + components: + - type: Transform + pos: 61.5,34.5 + parent: 2 +- proto: FireAlarm + entities: + - uid: 389 + components: + - type: Transform + pos: 55.5,33.5 + parent: 2 + - type: DeviceList + devices: + - 694 + - 123 + - 125 + - uid: 557 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - type: DeviceList + devices: + - 2242 + - 2339 + - 2243 + - 2273 + - uid: 2453 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 2339 + - 89 + - 7152 + - uid: 5828 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 6934 + - 7049 + - 7050 + - 7047 + - 7048 + - uid: 6621 + components: + - type: Transform + pos: 22.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 6624 + - 6623 + - 43 + - 682 + - uid: 6622 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - type: DeviceList + devices: + - 6625 + - 6623 + - 6624 + - 212 + - 226 + - 682 + - uid: 6635 + components: + - type: Transform + pos: 31.5,28.5 + parent: 2 + - type: DeviceList + devices: + - 6631 + - 6632 + - 6629 + - 6630 + - 212 + - uid: 6636 + components: + - type: Transform + pos: 31.5,39.5 + parent: 2 + - type: DeviceList + devices: + - 6629 + - uid: 6637 + components: + - type: Transform + pos: 44.5,35.5 + parent: 2 + - type: DeviceList + devices: + - 6630 + - uid: 6649 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 6644 + - 6645 + - 5449 + - 663 + - 6646 + - 226 + - 7559 + - uid: 6652 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 5449 + - 663 + - 6651 + - 7559 + - uid: 6653 + components: + - type: Transform + pos: 15.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 6651 + - uid: 7124 + components: + - type: Transform + pos: 44.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 466 + - 7058 + - 7059 + - 7060 + - 7061 + - 464 + - 7172 + - uid: 7125 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 + - type: DeviceList + devices: + - 7062 + - 7063 + - 7060 + - 7061 + - 7200 + - uid: 7126 + components: + - type: Transform + pos: 49.5,38.5 + parent: 2 + - type: DeviceList + devices: + - 7065 + - 7064 + - 125 + - 123 + - 7063 + - 7062 + - uid: 7127 + components: + - type: Transform + pos: 55.5,38.5 + parent: 2 + - type: DeviceList + devices: + - 5199 + - 7064 + - 7065 + - 7067 + - 7066 + - uid: 7128 + components: + - type: Transform + pos: 58.5,43.5 + parent: 2 + - type: DeviceList + devices: + - 7066 + - 7067 + - 2230 + - uid: 7129 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 7135 + - 7045 + - 7046 + - 5260 + - 7042 + - 7043 + - 7044 + - uid: 7130 + components: + - type: Transform + pos: 36.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 2343 + - 7054 + - 7053 + - 5260 + - 7042 + - 7043 + - 7044 + - 7051 + - uid: 7131 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 7047 + - 7048 + - 7045 + - 7046 + - 7144 + - 7143 + - 59 + - uid: 7132 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 7049 + - 7050 + - 7080 + - 7081 + - 426 + - 458 + - 1170 + - uid: 7133 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 7080 + - 7081 + - 58 + - uid: 7134 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 426 + - 458 + - 1261 + - uid: 7142 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 7155 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 6934 + - 7152 + - uid: 7160 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 526 + - 7159 + - uid: 7169 + components: + - type: Transform + pos: 48.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 464 + - 465 + - 7201 + - uid: 7175 + components: + - type: Transform + pos: 40.5,28.5 + parent: 2 + - type: DeviceList + devices: + - 7172 + - 466 + - uid: 7196 + components: + - type: Transform + pos: 43.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 7190 + - 2343 + - 7193 + - uid: 7197 + components: + - type: Transform + pos: 51.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 7191 + - 7190 + - uid: 7198 + components: + - type: Transform + pos: 45.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 7057 + - 7193 + - 465 + - 7055 + - 7199 + - uid: 7219 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 2 + - type: DeviceList + devices: + - 7216 + - 7215 + - 7217 + - 7212 + - 7213 + - 7214 + - uid: 7222 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 7221 + - 7220 + - 7216 + - 7215 + - 7217 + - uid: 7273 + components: + - type: Transform + pos: 60.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 7276 + - 7274 + - 7275 + - 7057 + - uid: 7280 + components: + - type: Transform + pos: 57.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 7191 + - 7279 + - 7275 + - 7274 + - uid: 7282 + components: + - type: Transform + pos: 57.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 7279 + - uid: 7289 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 7213 + - 7214 + - 7052 + - 7051 + - uid: 7290 + components: + - type: Transform + pos: 48.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 7220 + - 7052 + - 7284 + - uid: 7526 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - type: DeviceList + devices: + - 6644 + - 6645 + - 7055 + - 7058 + - 7059 + - 7054 + - 7053 +- proto: FireAxe + entities: + - uid: 7567 + components: + - type: Transform + pos: 27.53,35.524323 + parent: 2 +- proto: Firelock + entities: + - uid: 43 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6621 + - 6619 + - uid: 58 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7133 + - 7121 + - uid: 59 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7118 + - 7131 + - uid: 89 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2453 + - 7153 + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7126 + - 7111 + - 389 + - 7184 + - uid: 125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7126 + - 7111 + - 389 + - 7184 + - uid: 212 + components: + - type: Transform + pos: 31.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6622 + - 6620 + - 684 + - 6635 + - uid: 226 + components: + - type: Transform + pos: 27.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6620 + - 6622 + - 6649 + - 6650 + - uid: 426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7132 + - 7120 + - 7134 + - 7122 + - uid: 458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7132 + - 7120 + - 7134 + - 7122 + - uid: 464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7169 + - 7170 + - 7124 + - 7109 + - uid: 465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7169 + - 7170 + - 7198 + - 7117 + - uid: 466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7175 + - 7176 + - 7124 + - 7109 + - uid: 526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7160 + - 7161 + - uid: 663 + components: + - type: Transform + pos: 16.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6649 + - 6650 + - 6652 + - 6654 + - uid: 682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6621 + - 6619 + - 6622 + - 6620 + - uid: 694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 389 + - 7184 + - uid: 1170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7120 + - 7132 + - uid: 1261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7134 + - 7122 + - uid: 2230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7128 + - 7113 + - uid: 2242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7149 + - 557 + - uid: 2243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7149 + - 557 + - uid: 2273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7149 + - 557 + - uid: 2339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7149 + - 2453 + - 7153 + - 557 + - uid: 2343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7130 + - 7114 + - 7196 + - 7194 + - uid: 5199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7127 + - 7112 + - uid: 5260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7129 + - 7116 + - 7130 + - 7114 + - uid: 5449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6654 + - 6652 + - 6649 + - uid: 6623 + components: + - type: Transform + pos: 21.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6621 + - 6622 + - 6619 + - 6620 + - uid: 6624 + components: + - type: Transform + pos: 21.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6621 + - 6622 + - 6619 + - 6620 + - uid: 6625 + components: + - type: Transform + pos: 31.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6622 + - 6620 + - uid: 6629 + components: + - type: Transform + pos: 33.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6635 + - 684 + - 6636 + - 685 + - uid: 6630 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6635 + - 684 + - 6634 + - 6637 + - uid: 6631 + components: + - type: Transform + pos: 33.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6635 + - 684 + - uid: 6632 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6635 + - 684 + - uid: 6644 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6649 + - 6650 + - 7108 + - 7526 + - uid: 6645 + components: + - type: Transform + pos: 36.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6649 + - 6650 + - 7108 + - 7526 + - uid: 6646 + components: + - type: Transform + pos: 16.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6649 + - 6650 + - uid: 6651 + components: + - type: Transform + pos: 13.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6652 + - 6654 + - 6655 + - 6653 + - uid: 6934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7155 + - 7151 + - 5828 + - 7119 + - uid: 7042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7129 + - 7116 + - 7130 + - 7114 + - uid: 7043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7129 + - 7116 + - 7130 + - 7114 + - uid: 7044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7129 + - 7116 + - 7130 + - 7114 + - uid: 7045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7129 + - 7116 + - 7131 + - 7118 + - uid: 7046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7129 + - 7116 + - 7131 + - 7118 + - uid: 7047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7131 + - 7118 + - 5828 + - 7119 + - uid: 7048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7131 + - 7118 + - 5828 + - 7119 + - uid: 7049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5828 + - 7119 + - 7132 + - 7120 + - uid: 7050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5828 + - 7119 + - 7132 + - 7120 + - uid: 7051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7130 + - 7114 + - 7289 + - 7288 + - uid: 7052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7289 + - 7288 + - 7291 + - 7290 + - uid: 7053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7130 + - 7114 + - 7108 + - 7526 + - uid: 7054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7130 + - 7114 + - 7108 + - 7526 + - uid: 7055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7108 + - 7198 + - 7117 + - 7526 + - uid: 7057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7198 + - 7117 + - 7273 + - 4 + - uid: 7058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7108 + - 7124 + - 7109 + - 7526 + - uid: 7059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7108 + - 7124 + - 7109 + - 7526 + - uid: 7060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7124 + - 7109 + - 7125 + - 7110 + - uid: 7061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7124 + - 7109 + - 7125 + - 7110 + - uid: 7062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7125 + - 7110 + - 7126 + - 7111 + - uid: 7063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7125 + - 7110 + - 7126 + - 7111 + - uid: 7064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7126 + - 7111 + - 7127 + - 7112 + - uid: 7065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7126 + - 7111 + - 7127 + - 7112 + - uid: 7066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7127 + - 7112 + - 7128 + - 7113 + - uid: 7067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7127 + - 7112 + - 7128 + - 7113 + - uid: 7080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7133 + - 7121 + - 7132 + - 7120 + - uid: 7081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7133 + - 7121 + - 7132 + - 7120 + - uid: 7135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7129 + - 7116 + - uid: 7143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7131 + - 7118 + - uid: 7144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7131 + - 7118 + - uid: 7152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2453 + - 7153 + - 7155 + - 7151 + - uid: 7159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7160 + - 7161 + - uid: 7172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7175 + - 7176 + - 7124 + - 7109 + - uid: 7183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,22.5 + parent: 2 + - uid: 7190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7197 + - 7195 + - 7196 + - 7194 + - uid: 7191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7197 + - 7195 + - 7280 + - 7281 + - uid: 7193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7198 + - 7117 + - 7196 + - 7194 + - uid: 7199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7198 + - 7117 + - uid: 7200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7125 + - 7110 + - uid: 7201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7169 + - 7170 + - uid: 7212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7219 + - 7218 + - uid: 7213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7219 + - 7218 + - 7289 + - 7288 + - uid: 7214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7219 + - 7218 + - 7289 + - 7288 + - uid: 7215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7219 + - 7218 + - 7222 + - 7223 + - uid: 7216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7219 + - 7218 + - 7222 + - 7223 + - uid: 7217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7219 + - 7218 + - 7222 + - 7223 + - uid: 7220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7222 + - 7223 + - 7291 + - 7290 + - uid: 7221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7222 + - 7223 + - uid: 7274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7273 + - 4 + - 7280 + - 7281 + - uid: 7275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7273 + - 4 + - 7280 + - 7281 + - uid: 7276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7273 + - 4 + - uid: 7279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7280 + - 7281 + - 7282 + - 7283 + - uid: 7284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7291 + - 7290 + - uid: 7559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6652 + - 6654 + - 6650 + - 6649 +- proto: Fireplace + entities: + - uid: 2423 + components: + - type: Transform + pos: 56.5,25.5 + parent: 2 +- proto: Flare + entities: + - uid: 2286 + components: + - type: Transform + pos: 30.446033,29.46235 + parent: 2 + - uid: 2287 + components: + - type: Transform + pos: 29.906971,29.46235 + parent: 2 + - uid: 2288 + components: + - type: Transform + pos: 29.977283,29.3686 + parent: 2 + - uid: 2289 + components: + - type: Transform + pos: 30.352283,29.64985 + parent: 2 +- proto: FloorDrain + entities: + - uid: 6963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-14.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 6973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-5.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 7582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-2.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FoodBanana + entities: + - uid: 7033 + components: + - type: Transform + pos: 16.78177,-14.265186 + parent: 2 + - uid: 7034 + components: + - type: Transform + pos: 16.53177,-14.358936 + parent: 2 + - uid: 7035 + components: + - type: Transform + pos: 16.615105,-14.556852 + parent: 2 + - uid: 7036 + components: + - type: Transform + pos: 16.927605,-14.577686 + parent: 2 +- proto: FoodBoxDonkpocket + entities: + - uid: 1500 + components: + - type: Transform + pos: 30.371147,2.6453836 + parent: 2 +- proto: FoodBoxDonkpocketHonk + entities: + - uid: 7037 + components: + - type: Transform + pos: 18.56302,-14.338102 + parent: 2 +- proto: FoodPacketCupRamenTrash + entities: + - uid: 2052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.347336,13.694507 + parent: 2 + - uid: 2053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.222336,13.202319 + parent: 2 +- proto: FoodPacketDanDanTrash + entities: + - uid: 2047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.527023,11.397632 + parent: 2 + - uid: 2048 + components: + - type: Transform + pos: 53.745773,12.007007 + parent: 2 + - uid: 2049 + components: + - type: Transform + pos: 52.5739,12.686694 + parent: 2 + - uid: 2050 + components: + - type: Transform + pos: 52.972336,12.405444 + parent: 2 +- proto: FoodPieBananaCream + entities: + - uid: 7030 + components: + - type: Transform + pos: 15.417189,-14.244352 + parent: 2 + - uid: 7031 + components: + - type: Transform + pos: 15.604689,-14.504769 + parent: 2 + - uid: 7032 + components: + - type: Transform + pos: 15.875521,-14.317269 + parent: 2 +- proto: FrezonCanister + entities: + - uid: 1668 + components: + - type: Transform + pos: 19.5,42.5 + parent: 2 + - uid: 1669 + components: + - type: Transform + pos: 18.5,42.5 + parent: 2 +- proto: GameMasterCircuitBoard + entities: + - uid: 4738 + components: + - type: Transform + pos: 30.452063,52.595715 + parent: 2 +- proto: GasFilter + entities: + - uid: 687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,28.5 + parent: 2 + - uid: 688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,26.5 + parent: 2 + - uid: 833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,24.5 + parent: 2 + - uid: 1435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,22.5 + parent: 2 +- proto: GasFilterFlipped + entities: + - uid: 7510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasMixer + entities: + - uid: 794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,26.5 + parent: 2 + - uid: 1457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,28.5 + parent: 2 + - uid: 1759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,24.5 + parent: 2 +- proto: GasOutletInjector + entities: + - uid: 1730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,27.5 + parent: 2 + - uid: 1735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,23.5 + parent: 2 + - uid: 1738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,25.5 + parent: 2 + - uid: 1739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,21.5 + parent: 2 +- proto: GasPassiveVent + entities: + - uid: 1337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,23.5 + parent: 2 + - uid: 1722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,21.5 + parent: 2 + - uid: 1725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,27.5 + parent: 2 + - uid: 1726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,25.5 + parent: 2 + - uid: 1753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,21.5 + parent: 2 + - uid: 1754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,23.5 + parent: 2 + - uid: 1770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,25.5 + parent: 2 + - uid: 1775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,25.5 + parent: 2 + - uid: 6643 + components: + - type: Transform + pos: 11.5,41.5 + parent: 2 + - uid: 6813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 7254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,27.5 + parent: 2 +- proto: GasPipeBend + entities: + - uid: 600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 630 + components: + - type: Transform + pos: 17.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1421 + components: + - type: Transform + pos: 26.5,26.5 + parent: 2 + - uid: 1463 + components: + - type: Transform + pos: 26.5,28.5 + parent: 2 + - uid: 1525 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1667 + components: + - type: Transform + pos: 26.5,22.5 + parent: 2 + - uid: 1693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1749 + components: + - type: Transform + pos: 30.5,28.5 + parent: 2 + - uid: 1755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,22.5 + parent: 2 + - uid: 1760 + components: + - type: Transform + pos: 26.5,24.5 + parent: 2 + - uid: 1785 + components: + - type: Transform + pos: 30.5,26.5 + parent: 2 + - uid: 1788 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 + - uid: 1791 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 + - uid: 1801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,29.5 + parent: 2 + - uid: 1802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,29.5 + parent: 2 + - uid: 1803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,29.5 + parent: 2 + - uid: 1804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,29.5 + parent: 2 + - uid: 1807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1830 + components: + - type: Transform + pos: 26.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1882 + components: + - type: Transform + pos: 18.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 1883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 1921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0DC5FFFF' + - uid: 1922 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0DC5FFFF' + - uid: 1926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0DC5FFFF' + - uid: 1928 + components: + - type: Transform + pos: 13.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0DC5FFFF' + - uid: 1929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0DC5FFFF' + - uid: 1945 + components: + - type: Transform + pos: 28.5,35.5 + parent: 2 + - uid: 1946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,35.5 + parent: 2 + - uid: 1947 + components: + - type: Transform + pos: 24.5,38.5 + parent: 2 + - uid: 1962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,37.5 + parent: 2 + - uid: 1976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2160 + components: + - type: Transform + pos: 47.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2235 + components: + - type: Transform + pos: 51.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2588 + components: + - type: Transform + pos: 34.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3114 + components: + - type: Transform + pos: 13.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 3118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,38.5 + parent: 2 + - uid: 3125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 3131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 4129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4145 + components: + - type: Transform + pos: 40.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4567 + components: + - type: Transform + pos: 37.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4595 + components: + - type: Transform + pos: 27.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5067 + components: + - type: Transform + pos: 30.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5169 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5236 + components: + - type: Transform + pos: 46.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5268 + components: + - type: Transform + pos: 60.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5278 + components: + - type: Transform + pos: 59.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5303 + components: + - type: Transform + pos: 39.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5357 + components: + - type: Transform + pos: 37.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5453 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5510 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5545 + components: + - type: Transform + pos: 57.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5629 + components: + - type: Transform + pos: 59.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5638 + components: + - type: Transform + pos: 41.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5659 + components: + - type: Transform + pos: 44.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5708 + components: + - type: Transform + pos: 54.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5723 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5731 + components: + - type: Transform + pos: 62.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5745 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5748 + components: + - type: Transform + pos: 7.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5759 + components: + - type: Transform + pos: -1.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5772 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5786 + components: + - type: Transform + pos: 27.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5787 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5806 + components: + - type: Transform + pos: 35.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5846 + components: + - type: Transform + pos: 44.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5849 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5876 + components: + - type: Transform + pos: 48.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5887 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5959 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6111 + components: + - type: Transform + pos: 23.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6112 + components: + - type: Transform + pos: 21.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6126 + components: + - type: Transform + pos: 38.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6139 + components: + - type: Transform + pos: 35.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6182 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6249 + components: + - type: Transform + pos: 52.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6251 + components: + - type: Transform + pos: 46.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6268 + components: + - type: Transform + pos: 44.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6306 + components: + - type: Transform + pos: 54.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6562 + components: + - type: Transform + pos: 57.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6564 + components: + - type: Transform + pos: 61.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6700 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 6821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 6822 + components: + - type: Transform + pos: 9.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 6827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,37.5 + parent: 2 + - uid: 6957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7466 + components: + - type: Transform + pos: 18.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,10.5 + parent: 2 + - uid: 7521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourway + entities: + - uid: 4851 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5592 + components: + - type: Transform + pos: 50.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5640 + components: + - type: Transform + pos: 44.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5691 + components: + - type: Transform + pos: 54.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5810 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeSensorDistribution + entities: + - uid: 1737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeSensorTEGCold + entities: + - uid: 1931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0DC5FFFF' +- proto: GasPipeSensorTEGHot + entities: + - uid: 1889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' +- proto: GasPipeSensorWaste + entities: + - uid: 1847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 7 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,27.5 + parent: 2 + - uid: 487 + components: + - type: Transform + pos: 17.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 692 + components: + - type: Transform + pos: 27.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 869 + components: + - type: Transform + pos: 33.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 932 + components: + - type: Transform + pos: 61.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1291 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0DC5FFFF' + - uid: 1314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1382 + components: + - type: Transform + pos: 41.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1383 + components: + - type: Transform + pos: 62.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1564 + components: + - type: Transform + pos: 46.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,37.5 + parent: 2 + - uid: 1692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,23.5 + parent: 2 + - uid: 1694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,28.5 + parent: 2 + - uid: 1717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,24.5 + parent: 2 + - uid: 1719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,26.5 + parent: 2 + - uid: 1720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,22.5 + parent: 2 + - uid: 1733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,27.5 + parent: 2 + - uid: 1752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,21.5 + parent: 2 + - uid: 1757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,23.5 + parent: 2 + - uid: 1758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,23.5 + parent: 2 + - uid: 1766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,25.5 + parent: 2 + - uid: 1767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,27.5 + parent: 2 + - uid: 1768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,25.5 + parent: 2 + - uid: 1777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,25.5 + parent: 2 + - uid: 1778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,24.5 + parent: 2 + - uid: 1780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,23.5 + parent: 2 + - uid: 1783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,21.5 + parent: 2 + - uid: 1784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,21.5 + parent: 2 + - uid: 1786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,25.5 + parent: 2 + - uid: 1789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,27.5 + parent: 2 + - uid: 1790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,26.5 + parent: 2 + - uid: 1793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,28.5 + parent: 2 + - uid: 1794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,22.5 + parent: 2 + - uid: 1798 + components: + - type: Transform + pos: 27.5,27.5 + parent: 2 + - uid: 1799 + components: + - type: Transform + pos: 27.5,25.5 + parent: 2 + - uid: 1800 + components: + - type: Transform + pos: 27.5,23.5 + parent: 2 + - uid: 1806 + components: + - type: Transform + pos: 26.5,30.5 + parent: 2 + - uid: 1812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1822 + components: + - type: Transform + pos: 20.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1838 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,35.5 + parent: 2 + - uid: 1848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,32.5 + parent: 2 + - uid: 1866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,37.5 + parent: 2 + - uid: 1872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,35.5 + parent: 2 + - uid: 1874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1875 + components: + - type: Transform + pos: 28.5,30.5 + parent: 2 + - uid: 1879 + components: + - type: Transform + pos: 28.5,31.5 + parent: 2 + - uid: 1880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,32.5 + parent: 2 + - uid: 1890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 1896 + components: + - type: Transform + pos: 28.5,32.5 + parent: 2 + - uid: 1916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0DC5FFFF' + - uid: 1917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0DC5FFFF' + - uid: 1919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0DC5FFFF' + - uid: 1920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0DC5FFFF' + - uid: 1930 + components: + - type: Transform + pos: 12.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0DC5FFFF' + - uid: 1932 + components: + - type: Transform + pos: 12.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0DC5FFFF' + - uid: 1941 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 1944 + components: + - type: Transform + pos: 28.5,34.5 + parent: 2 + - uid: 1948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,38.5 + parent: 2 + - uid: 1950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,38.5 + parent: 2 + - uid: 1952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,38.5 + parent: 2 + - uid: 1955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,38.5 + parent: 2 + - uid: 1960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,35.5 + parent: 2 + - uid: 1961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,37.5 + parent: 2 + - uid: 1965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2038 + components: + - type: Transform + pos: 62.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2360 + components: + - type: Transform + pos: 61.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2381 + components: + - type: Transform + pos: 44.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2383 + components: + - type: Transform + pos: 44.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2384 + components: + - type: Transform + pos: 44.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2386 + components: + - type: Transform + pos: 44.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2642 + components: + - type: Transform + pos: 33.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2644 + components: + - type: Transform + pos: 25.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2793 + components: + - type: Transform + pos: 25.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2801 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2802 + components: + - type: Transform + pos: 3.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3023 + components: + - type: Transform + pos: 3.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 3133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 3208 + components: + - type: Transform + pos: 24.5,37.5 + parent: 2 + - uid: 3248 + components: + - type: Transform + pos: 44.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3259 + components: + - type: Transform + pos: 25.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3315 + components: + - type: Transform + pos: 25.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3509 + components: + - type: Transform + pos: 44.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4248 + components: + - type: Transform + pos: 26.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4386 + components: + - type: Transform + pos: 25.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4389 + components: + - type: Transform + pos: 23.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4392 + components: + - type: Transform + pos: 23.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4399 + components: + - type: Transform + pos: 23.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4413 + components: + - type: Transform + pos: 23.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5065 + components: + - type: Transform + pos: 30.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5167 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5242 + components: + - type: Transform + pos: 54.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5310 + components: + - type: Transform + pos: 61.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5319 + components: + - type: Transform + pos: 56.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5320 + components: + - type: Transform + pos: 56.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5321 + components: + - type: Transform + pos: 56.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5323 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5327 + components: + - type: Transform + pos: 54.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5328 + components: + - type: Transform + pos: 54.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5329 + components: + - type: Transform + pos: 54.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5330 + components: + - type: Transform + pos: 54.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5331 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5332 + components: + - type: Transform + pos: 54.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5333 + components: + - type: Transform + pos: 54.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5335 + components: + - type: Transform + pos: 54.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5336 + components: + - type: Transform + pos: 54.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5337 + components: + - type: Transform + pos: 54.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5340 + components: + - type: Transform + pos: 61.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5369 + components: + - type: Transform + pos: 38.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5389 + components: + - type: Transform + pos: 58.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5390 + components: + - type: Transform + pos: 58.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5391 + components: + - type: Transform + pos: 58.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5401 + components: + - type: Transform + pos: 33.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5424 + components: + - type: Transform + pos: 46.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5425 + components: + - type: Transform + pos: 46.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5426 + components: + - type: Transform + pos: 46.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5427 + components: + - type: Transform + pos: 46.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5428 + components: + - type: Transform + pos: 46.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5429 + components: + - type: Transform + pos: 46.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5430 + components: + - type: Transform + pos: 46.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5431 + components: + - type: Transform + pos: 46.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5432 + components: + - type: Transform + pos: 46.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5497 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5506 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5507 + components: + - type: Transform + pos: 13.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5508 + components: + - type: Transform + pos: 13.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5509 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5538 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5539 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5540 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5541 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5660 + components: + - type: Transform + pos: 44.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5661 + components: + - type: Transform + pos: 44.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5667 + components: + - type: Transform + pos: 49.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5668 + components: + - type: Transform + pos: 49.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5669 + components: + - type: Transform + pos: 61.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5670 + components: + - type: Transform + pos: 61.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5671 + components: + - type: Transform + pos: 61.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5672 + components: + - type: Transform + pos: 61.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5673 + components: + - type: Transform + pos: 61.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5674 + components: + - type: Transform + pos: 61.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5675 + components: + - type: Transform + pos: 61.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5676 + components: + - type: Transform + pos: 61.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5683 + components: + - type: Transform + pos: 37.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5684 + components: + - type: Transform + pos: 37.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5705 + components: + - type: Transform + pos: 53.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5706 + components: + - type: Transform + pos: 53.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5735 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5739 + components: + - type: Transform + pos: 62.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5752 + components: + - type: Transform + pos: 49.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5780 + components: + - type: Transform + pos: 44.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5807 + components: + - type: Transform + pos: 60.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5830 + components: + - type: Transform + pos: 44.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5854 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5855 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5858 + components: + - type: Transform + pos: 62.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5859 + components: + - type: Transform + pos: 62.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5860 + components: + - type: Transform + pos: 62.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5862 + components: + - type: Transform + pos: 34.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5872 + components: + - type: Transform + pos: 44.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5875 + components: + - type: Transform + pos: 44.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5931 + components: + - type: Transform + pos: 44.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5932 + components: + - type: Transform + pos: 59.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6038 + components: + - type: Transform + pos: 24.5,36.5 + parent: 2 + - uid: 6047 + components: + - type: Transform + pos: 62.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6107 + components: + - type: Transform + pos: 37.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6115 + components: + - type: Transform + pos: 37.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6119 + components: + - type: Transform + pos: 23.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6140 + components: + - type: Transform + pos: 33.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,38.5 + parent: 2 + - uid: 6189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6203 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6204 + components: + - type: Transform + pos: 21.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6205 + components: + - type: Transform + pos: 21.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6206 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6211 + components: + - type: Transform + pos: 33.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6213 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6214 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6215 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6216 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6241 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6242 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6243 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6244 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6245 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6246 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6284 + components: + - type: Transform + pos: 38.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6285 + components: + - type: Transform + pos: 38.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6286 + components: + - type: Transform + pos: 38.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6288 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6289 + components: + - type: Transform + pos: 38.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6290 + components: + - type: Transform + pos: 59.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6294 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6565 + components: + - type: Transform + pos: 57.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,38.5 + parent: 2 + - uid: 6810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,39.5 + parent: 2 + - uid: 6811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,40.5 + parent: 2 + - uid: 6816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 6818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 6819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 6820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 6823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 6824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,37.5 + parent: 2 + - uid: 6825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,37.5 + parent: 2 + - uid: 6826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,37.5 + parent: 2 + - uid: 6959 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6960 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7105 + components: + - type: Transform + pos: 8.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7106 + components: + - type: Transform + pos: 8.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,25.5 + parent: 2 + - uid: 1331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,23.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,27.5 + parent: 2 + - uid: 1477 + components: + - type: Transform + pos: 58.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1523 + components: + - type: Transform + pos: 43.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1703 + components: + - type: Transform + pos: 27.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,21.5 + parent: 2 + - uid: 1809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1816 + components: + - type: Transform + pos: 20.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1867 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 1927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0DC5FFFF' + - uid: 1964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1966 + components: + - type: Transform + pos: 49.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2042 + components: + - type: Transform + pos: 32.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5168 + components: + - type: Transform + pos: 56.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5181 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5185 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5186 + components: + - type: Transform + pos: 43.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5322 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5346 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5347 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5362 + components: + - type: Transform + pos: 57.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5410 + components: + - type: Transform + pos: 53.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5534 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5600 + components: + - type: Transform + pos: 22.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5746 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5794 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5804 + components: + - type: Transform + pos: 34.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5902 + components: + - type: Transform + pos: 29.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5920 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6073 + components: + - type: Transform + pos: 16.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 6190 + components: + - type: Transform + pos: 10.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,11.5 + parent: 2 + - uid: 7505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,11.5 + parent: 2 + - uid: 7508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,11.5 + parent: 2 + - uid: 7509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,10.5 + parent: 2 +- proto: GasPort + entities: + - uid: 1860 + components: + - type: Transform + pos: 17.5,33.5 + parent: 2 + - uid: 1933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,34.5 + parent: 2 +- proto: GasPressurePump + entities: + - uid: 633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,23.5 + parent: 2 + - uid: 1751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,21.5 + parent: 2 + - uid: 1764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,25.5 + parent: 2 + - uid: 1765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,27.5 + parent: 2 +- proto: GasThermoMachineFreezer + entities: + - uid: 565 + components: + - type: Transform + pos: 14.5,12.5 + parent: 2 + - uid: 1808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,39.5 + parent: 2 +- proto: GasThermoMachineHeater + entities: + - uid: 1815 + components: + - type: Transform + pos: 19.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasValve + entities: + - uid: 1813 + components: + - type: Transform + pos: 21.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1814 + components: + - type: Transform + pos: 19.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 1597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7149 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6620 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1940 + components: + - type: Transform + pos: 18.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6619 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7291 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7153 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5200 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5220 + components: + - type: Transform + pos: 33.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 684 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5221 + components: + - type: Transform + pos: 33.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 685 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5222 + components: + - type: Transform + pos: 45.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6634 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5246 + components: + - type: Transform + pos: 49.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7111 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5248 + components: + - type: Transform + pos: 58.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7113 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5249 + components: + - type: Transform + pos: 58.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7113 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5315 + components: + - type: Transform + pos: 53.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7184 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5316 + components: + - type: Transform + pos: 57.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7184 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7110 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7109 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5359 + components: + - type: Transform + pos: 53.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7117 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7281 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7283 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7195 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7194 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7288 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7291 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7108 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5454 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6650 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6650 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6654 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6655 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7153 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7151 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7161 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7120 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7120 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7122 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7114 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7116 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7218 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7170 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7149 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7184 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7176 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5817 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7223 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7223 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6102 + components: + - type: Transform + pos: 42.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6103 + components: + - type: Transform + pos: 50.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6105 + components: + - type: Transform + pos: 19.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6673 + components: + - type: Transform + pos: 63.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7184 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7121 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7083 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7085 + components: + - type: Transform + pos: 55.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7112 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7118 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7137 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 1842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6620 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7223 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7109 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 684 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7113 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7110 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7184 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7111 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7170 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7117 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7108 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7281 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5808 + components: + - type: Transform + pos: 54.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7195 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5815 + components: + - type: Transform + pos: 43.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7194 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7176 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7184 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7218 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5864 + components: + - type: Transform + pos: 39.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7288 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7291 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7149 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7149 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7153 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7151 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5957 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7118 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7161 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7121 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7122 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 684 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6650 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7184 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7116 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7120 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7084 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7112 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7092 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6650 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7107 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6654 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7115 + components: + - type: Transform + pos: 37.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7114 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7281 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasVolumePump + entities: + - uid: 703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0DC5FFFF' + - uid: 707 + components: + - type: Transform + pos: 16.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 1811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' + - uid: 6071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0DC5FFFF' + - uid: 6812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF7F27FF' +- proto: GravityGenerator + entities: + - uid: 1464 + components: + - type: Transform + pos: 29.5,42.5 + parent: 2 + - type: PowerCharge + charge: 100 +- proto: Grille + entities: + - uid: 70 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 209 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 2 + - uid: 239 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 2 + - uid: 242 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 247 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 2 + - uid: 248 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - uid: 249 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - uid: 269 + components: + - type: Transform + pos: -7.5,14.5 + parent: 2 + - uid: 272 + components: + - type: Transform + pos: -7.5,13.5 + parent: 2 + - uid: 275 + components: + - type: Transform + pos: -7.5,9.5 + parent: 2 + - uid: 276 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 + - uid: 277 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - uid: 278 + components: + - type: Transform + pos: -7.5,15.5 + parent: 2 + - uid: 301 + components: + - type: Transform + pos: -7.5,16.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: -7.5,8.5 + parent: 2 + - uid: 305 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 + - uid: 306 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 368 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - uid: 369 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 2 + - uid: 370 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 2 + - uid: 393 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - uid: 394 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 2 + - uid: 397 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - uid: 399 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 2 + - uid: 401 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - uid: 402 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 2 + - uid: 403 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 + - uid: 404 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - uid: 468 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: 26.5,8.5 + parent: 2 + - uid: 513 + components: + - type: Transform + pos: 31.5,16.5 + parent: 2 + - uid: 514 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 + - uid: 706 + components: + - type: Transform + pos: 62.5,59.5 + parent: 2 + - uid: 720 + components: + - type: Transform + pos: 5.5,24.5 + parent: 2 + - uid: 721 + components: + - type: Transform + pos: 4.5,24.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 + - uid: 726 + components: + - type: Transform + pos: 5.5,27.5 + parent: 2 + - uid: 727 + components: + - type: Transform + pos: 4.5,27.5 + parent: 2 + - uid: 728 + components: + - type: Transform + pos: 3.5,27.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: 24.5,26.5 + parent: 2 + - uid: 798 + components: + - type: Transform + pos: 20.5,32.5 + parent: 2 + - uid: 799 + components: + - type: Transform + pos: 19.5,32.5 + parent: 2 + - uid: 800 + components: + - type: Transform + pos: 18.5,32.5 + parent: 2 + - uid: 801 + components: + - type: Transform + pos: 17.5,32.5 + parent: 2 + - uid: 802 + components: + - type: Transform + pos: 23.5,32.5 + parent: 2 + - uid: 803 + components: + - type: Transform + pos: 22.5,32.5 + parent: 2 + - uid: 804 + components: + - type: Transform + pos: 24.5,32.5 + parent: 2 + - uid: 805 + components: + - type: Transform + pos: 25.5,32.5 + parent: 2 + - uid: 825 + components: + - type: Transform + pos: 24.5,23.5 + parent: 2 + - uid: 965 + components: + - type: Transform + pos: 45.5,43.5 + parent: 2 + - uid: 966 + components: + - type: Transform + pos: 46.5,43.5 + parent: 2 + - uid: 967 + components: + - type: Transform + pos: 47.5,43.5 + parent: 2 + - uid: 1107 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: 43.5,-18.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: 44.5,-18.5 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: 45.5,-18.5 + parent: 2 + - uid: 1112 + components: + - type: Transform + pos: 46.5,-18.5 + parent: 2 + - uid: 1113 + components: + - type: Transform + pos: 47.5,-18.5 + parent: 2 + - uid: 1114 + components: + - type: Transform + pos: 48.5,-18.5 + parent: 2 + - uid: 1115 + components: + - type: Transform + pos: 50.5,-15.5 + parent: 2 + - uid: 1116 + components: + - type: Transform + pos: 50.5,-14.5 + parent: 2 + - uid: 1117 + components: + - type: Transform + pos: 50.5,-13.5 + parent: 2 + - uid: 1134 + components: + - type: Transform + pos: 37.5,-15.5 + parent: 2 + - uid: 1135 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 2 + - uid: 1136 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 2 + - uid: 1137 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 2 + - uid: 1138 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 2 + - uid: 1139 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 2 + - uid: 1140 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 2 + - uid: 1141 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - uid: 1142 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 2 + - uid: 1143 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 2 + - uid: 1144 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 2 + - uid: 1145 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 2 + - uid: 1146 + components: + - type: Transform + pos: 22.5,-15.5 + parent: 2 + - uid: 1147 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 2 + - uid: 1148 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 + - uid: 1247 + components: + - type: Transform + pos: 51.5,2.5 + parent: 2 + - uid: 1248 + components: + - type: Transform + pos: 52.5,2.5 + parent: 2 + - uid: 1249 + components: + - type: Transform + pos: 53.5,2.5 + parent: 2 + - uid: 1250 + components: + - type: Transform + pos: 54.5,2.5 + parent: 2 + - uid: 1347 + components: + - type: Transform + pos: 25.5,30.5 + parent: 2 + - uid: 1442 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 2 + - uid: 1443 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - uid: 1462 + components: + - type: Transform + pos: 24.5,30.5 + parent: 2 + - uid: 1744 + components: + - type: Transform + pos: 24.5,24.5 + parent: 2 + - uid: 1745 + components: + - type: Transform + pos: 24.5,25.5 + parent: 2 + - uid: 1761 + components: + - type: Transform + pos: 24.5,28.5 + parent: 2 + - uid: 1762 + components: + - type: Transform + pos: 24.5,27.5 + parent: 2 + - uid: 1772 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 + - uid: 1891 + components: + - type: Transform + pos: 9.5,27.5 + parent: 2 + - uid: 1892 + components: + - type: Transform + pos: 12.5,26.5 + parent: 2 + - uid: 1898 + components: + - type: Transform + pos: 13.5,40.5 + parent: 2 + - uid: 1899 + components: + - type: Transform + pos: 12.5,40.5 + parent: 2 + - uid: 1925 + components: + - type: Transform + pos: 10.5,28.5 + parent: 2 + - uid: 2059 + components: + - type: Transform + pos: 49.5,-17.5 + parent: 2 + - uid: 2060 + components: + - type: Transform + pos: 57.5,-0.5 + parent: 2 + - uid: 2061 + components: + - type: Transform + pos: 59.5,-0.5 + parent: 2 + - uid: 2062 + components: + - type: Transform + pos: 60.5,-0.5 + parent: 2 + - uid: 2063 + components: + - type: Transform + pos: 59.5,-1.5 + parent: 2 + - uid: 2064 + components: + - type: Transform + pos: 62.5,-0.5 + parent: 2 + - uid: 2065 + components: + - type: Transform + pos: 63.5,-0.5 + parent: 2 + - uid: 2066 + components: + - type: Transform + pos: 65.5,-0.5 + parent: 2 + - uid: 2071 + components: + - type: Transform + pos: 61.5,-0.5 + parent: 2 + - uid: 2075 + components: + - type: Transform + pos: 59.5,-2.5 + parent: 2 + - uid: 2076 + components: + - type: Transform + pos: 57.5,-1.5 + parent: 2 + - uid: 2077 + components: + - type: Transform + pos: 57.5,-2.5 + parent: 2 + - uid: 2078 + components: + - type: Transform + pos: 63.5,-1.5 + parent: 2 + - uid: 2079 + components: + - type: Transform + pos: 63.5,-2.5 + parent: 2 + - uid: 2080 + components: + - type: Transform + pos: 65.5,-1.5 + parent: 2 + - uid: 2081 + components: + - type: Transform + pos: 65.5,-2.5 + parent: 2 + - uid: 2104 + components: + - type: Transform + pos: 52.5,-15.5 + parent: 2 + - uid: 2105 + components: + - type: Transform + pos: 51.5,-15.5 + parent: 2 + - uid: 2126 + components: + - type: Transform + pos: 51.5,-17.5 + parent: 2 + - uid: 2169 + components: + - type: Transform + pos: 53.5,-15.5 + parent: 2 + - uid: 2170 + components: + - type: Transform + pos: 54.5,-15.5 + parent: 2 + - uid: 2171 + components: + - type: Transform + pos: 55.5,-15.5 + parent: 2 + - uid: 2172 + components: + - type: Transform + pos: 55.5,-13.5 + parent: 2 + - uid: 2173 + components: + - type: Transform + pos: 55.5,-14.5 + parent: 2 + - uid: 2179 + components: + - type: Transform + pos: 55.5,-12.5 + parent: 2 + - uid: 2180 + components: + - type: Transform + pos: 57.5,-12.5 + parent: 2 + - uid: 2181 + components: + - type: Transform + pos: 57.5,-13.5 + parent: 2 + - uid: 2182 + components: + - type: Transform + pos: 57.5,-14.5 + parent: 2 + - uid: 2183 + components: + - type: Transform + pos: 57.5,-15.5 + parent: 2 + - uid: 2184 + components: + - type: Transform + pos: 59.5,-12.5 + parent: 2 + - uid: 2185 + components: + - type: Transform + pos: 59.5,-13.5 + parent: 2 + - uid: 2186 + components: + - type: Transform + pos: 59.5,-14.5 + parent: 2 + - uid: 2187 + components: + - type: Transform + pos: 59.5,-15.5 + parent: 2 + - uid: 2188 + components: + - type: Transform + pos: 60.5,-15.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + pos: 61.5,-15.5 + parent: 2 + - uid: 2190 + components: + - type: Transform + pos: 62.5,-15.5 + parent: 2 + - uid: 2191 + components: + - type: Transform + pos: 63.5,-15.5 + parent: 2 + - uid: 2192 + components: + - type: Transform + pos: 63.5,-14.5 + parent: 2 + - uid: 2193 + components: + - type: Transform + pos: 63.5,-13.5 + parent: 2 + - uid: 2194 + components: + - type: Transform + pos: 63.5,-12.5 + parent: 2 + - uid: 2195 + components: + - type: Transform + pos: 65.5,-12.5 + parent: 2 + - uid: 2196 + components: + - type: Transform + pos: 65.5,-13.5 + parent: 2 + - uid: 2197 + components: + - type: Transform + pos: 65.5,-14.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + pos: 65.5,-15.5 + parent: 2 + - uid: 2199 + components: + - type: Transform + pos: 67.5,-12.5 + parent: 2 + - uid: 2200 + components: + - type: Transform + pos: 67.5,-13.5 + parent: 2 + - uid: 2201 + components: + - type: Transform + pos: 67.5,-14.5 + parent: 2 + - uid: 2202 + components: + - type: Transform + pos: 67.5,-15.5 + parent: 2 + - uid: 2203 + components: + - type: Transform + pos: 67.5,-16.5 + parent: 2 + - uid: 2204 + components: + - type: Transform + pos: 67.5,-17.5 + parent: 2 + - uid: 2233 + components: + - type: Transform + pos: 51.5,22.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + pos: 52.5,22.5 + parent: 2 + - uid: 2345 + components: + - type: Transform + pos: 64.5,35.5 + parent: 2 + - uid: 2346 + components: + - type: Transform + pos: 64.5,34.5 + parent: 2 + - uid: 2347 + components: + - type: Transform + pos: 64.5,33.5 + parent: 2 + - uid: 2348 + components: + - type: Transform + pos: 64.5,32.5 + parent: 2 + - uid: 2349 + components: + - type: Transform + pos: 64.5,31.5 + parent: 2 + - uid: 2350 + components: + - type: Transform + pos: 64.5,30.5 + parent: 2 + - uid: 2351 + components: + - type: Transform + pos: 64.5,29.5 + parent: 2 + - uid: 2352 + components: + - type: Transform + pos: 64.5,28.5 + parent: 2 + - uid: 2462 + components: + - type: Transform + pos: 64.5,27.5 + parent: 2 + - uid: 2510 + components: + - type: Transform + pos: 65.5,53.5 + parent: 2 + - uid: 2511 + components: + - type: Transform + pos: 65.5,44.5 + parent: 2 + - uid: 2512 + components: + - type: Transform + pos: 64.5,44.5 + parent: 2 + - uid: 2513 + components: + - type: Transform + pos: 63.5,44.5 + parent: 2 + - uid: 2514 + components: + - type: Transform + pos: 65.5,46.5 + parent: 2 + - uid: 2515 + components: + - type: Transform + pos: 64.5,46.5 + parent: 2 + - uid: 2516 + components: + - type: Transform + pos: 63.5,46.5 + parent: 2 + - uid: 2517 + components: + - type: Transform + pos: 65.5,51.5 + parent: 2 + - uid: 2518 + components: + - type: Transform + pos: 63.5,51.5 + parent: 2 + - uid: 2519 + components: + - type: Transform + pos: 64.5,51.5 + parent: 2 + - uid: 2520 + components: + - type: Transform + pos: 64.5,53.5 + parent: 2 + - uid: 2521 + components: + - type: Transform + pos: 63.5,53.5 + parent: 2 + - uid: 2586 + components: + - type: Transform + pos: 60.5,63.5 + parent: 2 + - uid: 2589 + components: + - type: Transform + pos: 62.5,58.5 + parent: 2 + - uid: 2592 + components: + - type: Transform + pos: 59.5,63.5 + parent: 2 + - uid: 2593 + components: + - type: Transform + pos: 56.5,63.5 + parent: 2 + - uid: 2594 + components: + - type: Transform + pos: 57.5,63.5 + parent: 2 + - uid: 2746 + components: + - type: Transform + pos: 59.5,64.5 + parent: 2 + - uid: 2747 + components: + - type: Transform + pos: 59.5,65.5 + parent: 2 + - uid: 2748 + components: + - type: Transform + pos: 57.5,65.5 + parent: 2 + - uid: 2749 + components: + - type: Transform + pos: 57.5,64.5 + parent: 2 + - uid: 2757 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 2 + - uid: 3148 + components: + - type: Transform + pos: 66.5,-17.5 + parent: 2 + - uid: 3215 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 3253 + components: + - type: Transform + pos: 65.5,-17.5 + parent: 2 + - uid: 3326 + components: + - type: Transform + pos: 64.5,-17.5 + parent: 2 + - uid: 4019 + components: + - type: Transform + pos: 63.5,-17.5 + parent: 2 + - uid: 4020 + components: + - type: Transform + pos: 62.5,-17.5 + parent: 2 + - uid: 4021 + components: + - type: Transform + pos: 61.5,-17.5 + parent: 2 + - uid: 4022 + components: + - type: Transform + pos: 60.5,-17.5 + parent: 2 + - uid: 4023 + components: + - type: Transform + pos: 59.5,-17.5 + parent: 2 + - uid: 4024 + components: + - type: Transform + pos: 58.5,-17.5 + parent: 2 + - uid: 4025 + components: + - type: Transform + pos: 57.5,-17.5 + parent: 2 + - uid: 4026 + components: + - type: Transform + pos: 56.5,-17.5 + parent: 2 + - uid: 4027 + components: + - type: Transform + pos: 55.5,-17.5 + parent: 2 + - uid: 4028 + components: + - type: Transform + pos: 54.5,-17.5 + parent: 2 + - uid: 4029 + components: + - type: Transform + pos: 53.5,-17.5 + parent: 2 + - uid: 4491 + components: + - type: Transform + pos: 53.5,61.5 + parent: 2 + - uid: 4492 + components: + - type: Transform + pos: 54.5,61.5 + parent: 2 + - uid: 4493 + components: + - type: Transform + pos: 55.5,61.5 + parent: 2 + - uid: 4497 + components: + - type: Transform + pos: 53.5,59.5 + parent: 2 + - uid: 4498 + components: + - type: Transform + pos: 54.5,59.5 + parent: 2 + - uid: 4867 + components: + - type: Transform + pos: 23.5,10.5 + parent: 2 + - uid: 4871 + components: + - type: Transform + pos: 11.5,28.5 + parent: 2 + - uid: 5881 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 2 + - uid: 6087 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 2 + - uid: 6092 + components: + - type: Transform + pos: 9.5,26.5 + parent: 2 + - uid: 6094 + components: + - type: Transform + pos: 11.5,25.5 + parent: 2 + - uid: 7592 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 7593 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 + - uid: 7594 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 7596 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 +- proto: GunSafeBaseSecure + entities: + - uid: 1451 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 +- proto: GunSafeLaserCarbine + entities: + - uid: 1449 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 +- proto: GunSafeShotgunEnforcer + entities: + - uid: 1452 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 2 +- proto: GunSafeSubMachineGunWt550 + entities: + - uid: 2611 + components: + - type: Transform + pos: 42.5,-10.5 + parent: 2 +- proto: HeatExchanger + entities: + - uid: 289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,48.5 + parent: 2 + - uid: 291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,31.5 + parent: 2 + - uid: 298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,31.5 + parent: 2 + - uid: 384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,27.5 + parent: 2 + - uid: 441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,48.5 + parent: 2 + - uid: 1862 + components: + - type: Transform + pos: 17.5,28.5 + parent: 2 + - uid: 1863 + components: + - type: Transform + pos: 17.5,29.5 + parent: 2 + - uid: 1864 + components: + - type: Transform + pos: 17.5,30.5 + parent: 2 + - uid: 1868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,31.5 + parent: 2 + - uid: 1870 + components: + - type: Transform + pos: 17.5,31.5 + parent: 2 + - uid: 1876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,27.5 + parent: 2 + - uid: 1877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,27.5 + parent: 2 + - uid: 1878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,27.5 + parent: 2 + - uid: 1895 + components: + - type: Transform + anchored: False + pos: 12.5,41.5 + parent: 2 + - type: Physics + canCollide: True + - uid: 1897 + components: + - type: Transform + pos: 12.5,42.5 + parent: 2 + - uid: 1909 + components: + - type: Transform + pos: 13.5,47.5 + parent: 2 + - uid: 1910 + components: + - type: Transform + pos: 13.5,46.5 + parent: 2 + - uid: 1911 + components: + - type: Transform + pos: 13.5,45.5 + parent: 2 + - uid: 1912 + components: + - type: Transform + pos: 13.5,44.5 + parent: 2 + - uid: 1913 + components: + - type: Transform + pos: 13.5,43.5 + parent: 2 + - uid: 1914 + components: + - type: Transform + pos: 13.5,42.5 + parent: 2 + - uid: 1915 + components: + - type: Transform + pos: 13.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0DC5FFFF' + - uid: 7247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,47.5 + parent: 2 + - uid: 7248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,46.5 + parent: 2 + - uid: 7249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,45.5 + parent: 2 + - uid: 7250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,44.5 + parent: 2 + - uid: 7251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,43.5 + parent: 2 + - uid: 7260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,28.5 + parent: 2 + - uid: 7261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,29.5 + parent: 2 + - uid: 7262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,30.5 + parent: 2 + - uid: 7263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,30.5 + parent: 2 + - uid: 7264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,31.5 + parent: 2 + - uid: 7265 + components: + - type: Transform + pos: 18.5,29.5 + parent: 2 + - uid: 7266 + components: + - type: Transform + pos: 18.5,30.5 + parent: 2 + - uid: 7267 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 + - uid: 7268 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 +- proto: HeatExchangerBend + entities: + - uid: 124 + components: + - type: Transform + pos: 22.5,28.5 + parent: 2 + - uid: 168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,31.5 + parent: 2 + - uid: 169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,46.5 + parent: 2 + - uid: 176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,44.5 + parent: 2 + - uid: 182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,48.5 + parent: 2 + - uid: 183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,46.5 + parent: 2 + - uid: 184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,44.5 + parent: 2 + - uid: 190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,43.5 + parent: 2 + - uid: 191 + components: + - type: Transform + pos: 13.5,48.5 + parent: 2 + - uid: 196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,30.5 + parent: 2 + - uid: 284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,28.5 + parent: 2 + - uid: 292 + components: + - type: Transform + pos: 12.5,43.5 + parent: 2 + - uid: 440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,45.5 + parent: 2 + - uid: 442 + components: + - type: Transform + pos: 12.5,45.5 + parent: 2 + - uid: 1797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,27.5 + parent: 2 + - uid: 4480 + components: + - type: Transform + pos: 12.5,47.5 + parent: 2 + - uid: 4481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,47.5 + parent: 2 + - uid: 7255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,28.5 + parent: 2 + - uid: 7256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,28.5 + parent: 2 + - uid: 7257 + components: + - type: Transform + pos: 23.5,31.5 + parent: 2 + - uid: 7258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,30.5 + parent: 2 + - uid: 7259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,27.5 + parent: 2 +- proto: HighSecCommandLocked + entities: + - uid: 7179 + components: + - type: Transform + pos: 53.5,38.5 + parent: 2 +- proto: HolopadAiCore + entities: + - uid: 4560 + components: + - type: Transform + pos: 45.5,50.5 + parent: 2 +- proto: HolopadAiUpload + entities: + - uid: 4559 + components: + - type: Transform + pos: 32.5,51.5 + parent: 2 + - uid: 4730 + components: + - type: Transform + pos: 31.5,54.5 + parent: 2 +- proto: HolopadCargoBay + entities: + - uid: 1302 + components: + - type: Transform + pos: 10.5,22.5 + parent: 2 +- proto: HolopadCargoFront + entities: + - uid: 1303 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 +- proto: HolopadCargoSalvageBay + entities: + - uid: 1318 + components: + - type: Transform + pos: 10.5,29.5 + parent: 2 +- proto: HolopadCommandBridge + entities: + - uid: 6661 + components: + - type: Transform + pos: 58.5,31.5 + parent: 2 +- proto: HolopadCommandBridgeHallway + entities: + - uid: 6583 + components: + - type: Transform + pos: 51.5,33.5 + parent: 2 +- proto: HolopadCommandCaptain + entities: + - uid: 2406 + components: + - type: Transform + pos: 58.5,20.5 + parent: 2 +- proto: HolopadCommandCe + entities: + - uid: 6584 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 +- proto: HolopadCommandCmo + entities: + - uid: 1307 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 +- proto: HolopadCommandHop + entities: + - uid: 2276 + components: + - type: Transform + pos: 45.5,27.5 + parent: 2 +- proto: HolopadCommandHos + entities: + - uid: 6585 + components: + - type: Transform + pos: 43.5,-10.5 + parent: 2 +- proto: HolopadCommandMeetingRoom + entities: + - uid: 6582 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 +- proto: HolopadCommandQm + entities: + - uid: 6587 + components: + - type: Transform + pos: 11.5,27.5 + parent: 2 +- proto: HolopadCommandRd + entities: + - uid: 6588 + components: + - type: Transform + pos: 52.5,13.5 + parent: 2 +- proto: HolopadCommandVault + entities: + - uid: 2501 + components: + - type: Transform + pos: 52.5,40.5 + parent: 2 +- proto: HolopadEngineeringAtmosMain + entities: + - uid: 6581 + components: + - type: Transform + pos: 26.5,34.5 + parent: 2 +- proto: HolopadEngineeringAtmosTeg + entities: + - uid: 6594 + components: + - type: Transform + pos: 15.5,37.5 + parent: 2 +- proto: HolopadEngineeringMain + entities: + - uid: 6580 + components: + - type: Transform + pos: 37.5,33.5 + parent: 2 +- proto: HolopadEngineeringPower + entities: + - uid: 6586 + components: + - type: Transform + pos: 46.5,42.5 + parent: 2 +- proto: HolopadEngineeringStorage + entities: + - uid: 6579 + components: + - type: Transform + pos: 34.5,38.5 + parent: 2 +- proto: HolopadEngineeringTelecoms + entities: + - uid: 6593 + components: + - type: Transform + pos: 37.5,28.5 + parent: 2 +- proto: HolopadGeneralArrivals + entities: + - uid: 2523 + components: + - type: Transform + pos: 60.5,49.5 + parent: 2 +- proto: HolopadGeneralCryosleep + entities: + - uid: 1309 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 +- proto: HolopadGeneralDisposals + entities: + - uid: 1310 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 +- proto: HolopadGeneralEvac + entities: + - uid: 6415 + components: + - type: Transform + pos: 49.5,-14.5 + parent: 2 + - uid: 6601 + components: + - type: Transform + pos: 61.5,1.5 + parent: 2 +- proto: HolopadGeneralEVAStorage + entities: + - uid: 6985 + components: + - type: Transform + pos: 61.5,6.5 + parent: 2 +- proto: HolopadMedicalChemistry + entities: + - uid: 1305 + components: + - type: Transform + pos: 28.5,9.5 + parent: 2 +- proto: HolopadMedicalClinic + entities: + - uid: 6331 + components: + - type: Transform + pos: 8.5,10.5 + parent: 2 +- proto: HolopadMedicalCryopods + entities: + - uid: 1308 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 +- proto: HolopadMedicalMedbay + entities: + - uid: 1315 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 +- proto: HolopadMedicalMorgue + entities: + - uid: 1316 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 +- proto: HolopadMedicalVirology + entities: + - uid: 1317 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 +- proto: HolopadScienceAnomaly + entities: + - uid: 6591 + components: + - type: Transform + pos: 47.5,12.5 + parent: 2 +- proto: HolopadScienceArtifact + entities: + - uid: 6592 + components: + - type: Transform + pos: 53.5,0.5 + parent: 2 +- proto: HolopadScienceFront + entities: + - uid: 6589 + components: + - type: Transform + pos: 44.5,6.5 + parent: 2 +- proto: HolopadScienceRobotics + entities: + - uid: 6590 + components: + - type: Transform + pos: 54.5,6.5 + parent: 2 +- proto: HolopadSecurityArmory + entities: + - uid: 1448 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 +- proto: HolopadSecurityBreakroom + entities: + - uid: 5051 + components: + - type: Transform + pos: 29.5,1.5 + parent: 2 +- proto: HolopadSecurityBrig + entities: + - uid: 5053 + components: + - type: Transform + pos: 40.5,-7.5 + parent: 2 +- proto: HolopadSecurityCourtroom + entities: + - uid: 2030 + components: + - type: Transform + pos: 58.5,15.5 + parent: 2 +- proto: HolopadSecurityFront + entities: + - uid: 7544 + components: + - type: Transform + pos: 35.5,2.5 + parent: 2 +- proto: HolopadSecurityLockerRoom + entities: + - uid: 5052 + components: + - type: Transform + pos: 24.5,1.5 + parent: 2 +- proto: HolopadSecurityPerma + entities: + - uid: 1414 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 +- proto: HolopadServiceBar + entities: + - uid: 1300 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 +- proto: HolopadServiceBotany + entities: + - uid: 1301 + components: + - type: Transform + pos: -1.5,6.5 + parent: 2 +- proto: HolopadServiceChapel + entities: + - uid: 1304 + components: + - type: Transform + pos: -2.5,12.5 + parent: 2 +- proto: HolopadServiceClownMime + entities: + - uid: 1306 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 2 +- proto: HolopadServiceJanitor + entities: + - uid: 1311 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 2 +- proto: HolopadServiceKitchen + entities: + - uid: 1312 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 +- proto: HolopadServiceLibrary + entities: + - uid: 1313 + components: + - type: Transform + pos: 18.5,1.5 + parent: 2 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 7540 + components: + - type: Transform + pos: 22.446928,-5.4490576 + parent: 2 +- proto: hydroponicsTray + entities: + - uid: 203 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 204 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 205 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 1415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-1.5 + parent: 2 +- proto: Igniter + entities: + - uid: 6686 + components: + - type: Transform + pos: 56.436996,29.032265 + parent: 2 +- proto: IngotGold1 + entities: + - uid: 2498 + components: + - type: Transform + pos: 51.49977,41.45799 + parent: 2 +- proto: JanitorialTrolley + entities: + - uid: 6961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-14.5 + parent: 2 +- proto: KitchenElectricGrill + entities: + - uid: 250 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 +- proto: KitchenMicrowave + entities: + - uid: 160 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 +- proto: KitchenReagentGrinder + entities: + - uid: 161 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: 27.5,10.5 + parent: 2 +- proto: KitchenSpike + entities: + - uid: 162 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 +- proto: LockerAtmosphericsFilled + entities: + - uid: 1688 + components: + - type: Transform + pos: 30.5,35.5 + parent: 2 + - uid: 1689 + components: + - type: Transform + pos: 29.5,35.5 + parent: 2 + - uid: 1690 + components: + - type: Transform + pos: 28.5,35.5 + parent: 2 +- proto: LockerBoozeFilled + entities: + - uid: 81 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 +- proto: LockerBotanistFilled + entities: + - uid: 6925 + components: + - type: Transform + pos: -1.5,7.5 + parent: 2 + - uid: 6926 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 +- proto: LockerCaptainFilledNoLaser + entities: + - uid: 2398 + components: + - type: Transform + pos: 59.5,26.5 + parent: 2 +- proto: LockerChemistryFilled + entities: + - uid: 646 + components: + - type: Transform + pos: 29.5,10.5 + parent: 2 +- proto: LockerChiefEngineerFilled + entities: + - uid: 1609 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 +- proto: LockerChiefMedicalOfficerFilledHardsuit + entities: + - uid: 637 + components: + - type: Transform + pos: 35.5,13.5 + parent: 2 +- proto: LockerDetectiveFilled + entities: + - uid: 4572 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 1599 + components: + - type: Transform + pos: 39.5,38.5 + parent: 2 +- proto: LockerEngineerFilled + entities: + - uid: 1565 + components: + - type: Transform + pos: 39.5,42.5 + parent: 2 + - uid: 1566 + components: + - type: Transform + pos: 39.5,41.5 + parent: 2 + - uid: 1567 + components: + - type: Transform + pos: 39.5,40.5 + parent: 2 +- proto: LockerEvidence + entities: + - uid: 1361 + components: + - type: Transform + pos: 38.5,-7.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + pos: 41.5,-7.5 + parent: 2 + - uid: 1363 + components: + - type: Transform + pos: 44.5,-7.5 + parent: 2 +- proto: LockerFreezerVaultFilled + entities: + - uid: 2500 + components: + - type: Transform + pos: 49.5,39.5 + parent: 2 +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 2277 + components: + - type: Transform + pos: 41.5,29.5 + parent: 2 +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 1397 + components: + - type: Transform + pos: 44.5,-9.5 + parent: 2 +- proto: LockerMedicalFilled + entities: + - uid: 1270 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 1271 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 1272 + components: + - type: Transform + pos: 15.5,16.5 + parent: 2 + - uid: 1273 + components: + - type: Transform + pos: 16.5,16.5 + parent: 2 +- proto: LockerMedicineFilled + entities: + - uid: 638 + components: + - type: Transform + pos: 8.5,16.5 + parent: 2 +- proto: LockerParamedicFilled + entities: + - uid: 639 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 +- proto: LockerQuarterMasterFilled + entities: + - uid: 6083 + components: + - type: Transform + pos: 10.5,27.5 + parent: 2 +- proto: LockerResearchDirectorFilled + entities: + - uid: 1542 + components: + - type: Transform + pos: 50.5,14.5 + parent: 2 +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 6075 + components: + - type: Transform + pos: 14.5,31.5 + parent: 2 + - uid: 6076 + components: + - type: Transform + pos: 13.5,31.5 + parent: 2 +- proto: LockerScienceFilled + entities: + - uid: 1537 + components: + - type: Transform + pos: 42.5,10.5 + parent: 2 + - type: Pullable + prevFixedRotation: True + - uid: 1538 + components: + - type: Transform + pos: 41.5,10.5 + parent: 2 +- proto: LockerSecurityFilled + entities: + - uid: 1068 + components: + - type: Transform + pos: 23.5,2.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + pos: 22.5,2.5 + parent: 2 + - uid: 1319 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 1492 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 +- proto: LockerWardenFilled + entities: + - uid: 2009 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 2 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 1600 + components: + - type: Transform + pos: 39.5,37.5 + parent: 2 +- proto: LuxuryPen + entities: + - uid: 6688 + components: + - type: Transform + pos: 63.374496,29.501015 + parent: 2 +- proto: MachineAnomalyGenerator + entities: + - uid: 1326 + components: + - type: Transform + pos: 47.5,13.5 + parent: 2 +- proto: MachineAnomalyVessel + entities: + - uid: 1508 + components: + - type: Transform + pos: 45.5,9.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + pos: 46.5,9.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 1543 + components: + - type: Transform + pos: 46.5,6.5 + parent: 2 + - uid: 1544 + components: + - type: Transform + pos: 46.5,7.5 + parent: 2 +- proto: MachineArtifactAnalyzer + entities: + - uid: 1539 + components: + - type: Transform + pos: 52.5,0.5 + parent: 2 +- proto: MaintenanceFluffSpawner + entities: + - uid: 7015 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 +- proto: MaintenancePlantSpawner + entities: + - uid: 7013 + components: + - type: Transform + pos: 39.5,-15.5 + parent: 2 + - uid: 7014 + components: + - type: Transform + pos: 61.5,23.5 + parent: 2 +- proto: MaterialHideCorgi + entities: + - uid: 7123 + components: + - type: Transform + pos: 16.683157,-12.470771 + parent: 2 +- proto: MedicalBed + entities: + - uid: 567 + components: + - type: Transform + pos: 7.5,11.5 + parent: 2 + - uid: 568 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 569 + components: + - type: Transform + pos: 9.5,13.5 + parent: 2 + - uid: 570 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 +- proto: MedicalTechFab + entities: + - uid: 634 + components: + - type: Transform + pos: 27.5,16.5 + parent: 2 +- proto: MedkitBruteFilled + entities: + - uid: 532 + components: + - type: Transform + pos: 13.570471,14.453526 + parent: 2 +- proto: MedkitBurnFilled + entities: + - uid: 533 + components: + - type: Transform + pos: 14.367346,14.383213 + parent: 2 +- proto: MedkitFilled + entities: + - uid: 534 + components: + - type: Transform + pos: 15.281408,14.453526 + parent: 2 +- proto: MedkitOxygenFilled + entities: + - uid: 535 + components: + - type: Transform + pos: 16.148596,14.430088 + parent: 2 +- proto: MedkitRadiationFilled + entities: + - uid: 536 + components: + - type: Transform + pos: 16.898596,14.430088 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 537 + components: + - type: Transform + pos: 17.648596,14.476963 + parent: 2 +- proto: MimeIDCard + entities: + - uid: 6678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.50781,34.138424 + parent: 2 +- proto: MopBucketFull + entities: + - uid: 6967 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 2 +- proto: MopItem + entities: + - uid: 6962 + components: + - type: Transform + pos: 12.400547,-14.483986 + parent: 2 +- proto: Morgue + entities: + - uid: 459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,14.5 + parent: 2 + - uid: 460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,13.5 + parent: 2 + - uid: 461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,11.5 + parent: 2 + - uid: 462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,12.5 + parent: 2 + - uid: 463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,15.5 + parent: 2 + - type: EntityStorage + open: True + - uid: 522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,12.5 + parent: 2 + - uid: 523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 2 + - type: EntityStorage + open: True + - uid: 524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,14.5 + parent: 2 + - uid: 525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,15.5 + parent: 2 + - uid: 1562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,4.5 + parent: 2 + - uid: 1563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,5.5 + parent: 2 +- proto: MusicianIDCard + entities: + - uid: 6677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.32031,34.513424 + parent: 2 +- proto: MuteToxinChemistryBottle + entities: + - uid: 6710 + components: + - type: Transform + pos: 61.683502,28.435093 + parent: 2 +- proto: NitrogenCanister + entities: + - uid: 1461 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 + - uid: 1675 + components: + - type: Transform + pos: 24.5,42.5 + parent: 2 + - uid: 1676 + components: + - type: Transform + pos: 25.5,42.5 + parent: 2 +- proto: NTDefaultCircuitBoard + entities: + - uid: 4737 + components: + - type: Transform + pos: 30.498938,48.61134 + parent: 2 +- proto: NuclearBomb + entities: + - uid: 2489 + components: + - type: Transform + pos: 49.5,40.5 + parent: 2 +- proto: NutimovCircuitBoard + entities: + - uid: 4739 + components: + - type: Transform + pos: 30.498938,51.79884 + parent: 2 +- proto: OperatingTable + entities: + - uid: 1560 + components: + - type: Transform + pos: 52.5,7.5 + parent: 2 +- proto: OreProcessor + entities: + - uid: 6080 + components: + - type: Transform + pos: 7.5,34.5 + parent: 2 +- proto: OxygenCanister + entities: + - uid: 1677 + components: + - type: Transform + pos: 25.5,40.5 + parent: 2 + - uid: 1678 + components: + - type: Transform + pos: 25.5,39.5 + parent: 2 + - uid: 6000 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 +- proto: PaintingMonkey + entities: + - uid: 6938 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 2 +- proto: PaladinCircuitBoard + entities: + - uid: 4742 + components: + - type: Transform + pos: 34.43644,52.525402 + parent: 2 +- proto: Paper + entities: + - uid: 653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.271442,16.599213 + parent: 2 + - uid: 654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.66988,16.24765 + parent: 2 +- proto: PaperBin20 + entities: + - uid: 652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,15.5 + parent: 2 + - uid: 1548 + components: + - type: Transform + pos: 53.5,14.5 + parent: 2 + - uid: 1615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,31.5 + parent: 2 + - uid: 6097 + components: + - type: Transform + pos: 10.5,26.5 + parent: 2 + - uid: 6606 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 + - uid: 6687 + components: + - type: Transform + pos: 63.5,28.5 + parent: 2 +- proto: PartRodMetal1 + entities: + - uid: 7269 + components: + - type: Transform + pos: 17.346018,50.513405 + parent: 2 + - uid: 7270 + components: + - type: Transform + pos: 17.556955,50.513405 + parent: 2 +- proto: PartRodMetal10 + entities: + - uid: 1639 + components: + - type: Transform + pos: 30.02294,37.51099 + parent: 2 +- proto: PlasmaCanister + entities: + - uid: 1679 + components: + - type: Transform + pos: 25.5,37.5 + parent: 2 + - uid: 1680 + components: + - type: Transform + pos: 25.5,36.5 + parent: 2 + - uid: 5999 + components: + - type: Transform + pos: 30.5,23.5 + parent: 2 +- proto: PlasmaChemistryVial + entities: + - uid: 6685 + components: + - type: Transform + pos: 56.74745,28.691572 + parent: 2 +- proto: PlayerStationAi + entities: + - uid: 4561 + components: + - type: Transform + pos: 45.5,51.5 + parent: 2 +- proto: PlushieLizard + entities: + - uid: 7548 + components: + - type: Transform + pos: 48.671204,3.5725648 + parent: 2 +- proto: PortableFlasher + entities: + - uid: 7494 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 +- proto: PortableGeneratorPacman + entities: + - uid: 1576 + components: + - type: Transform + pos: 33.5,42.5 + parent: 2 + - uid: 1577 + components: + - type: Transform + pos: 33.5,41.5 + parent: 2 + - uid: 1578 + components: + - type: Transform + pos: 33.5,40.5 + parent: 2 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 1579 + components: + - type: Transform + pos: 35.5,42.5 + parent: 2 + - uid: 1580 + components: + - type: Transform + pos: 35.5,41.5 + parent: 2 + - uid: 1581 + components: + - type: Transform + pos: 35.5,40.5 + parent: 2 +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 7209 + components: + - type: Transform + pos: 11.5,32.5 + parent: 2 +- proto: PosterContrabandBountyHunters + entities: + - uid: 7487 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 2 +- proto: PosterContrabandBustyBackdoorExoBabes6 + entities: + - uid: 7210 + components: + - type: Transform + pos: 7.5,35.5 + parent: 2 +- proto: PosterContrabandClown + entities: + - uid: 259 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 +- proto: PosterContrabandEAT + entities: + - uid: 7534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,3.5 + parent: 2 +- proto: PosterContrabandHaveaPuff + entities: + - uid: 6928 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 +- proto: PosterContrabandLustyExomorph + entities: + - uid: 7211 + components: + - type: Transform + pos: 8.5,35.5 + parent: 2 +- proto: PosterContrabandMissingGloves + entities: + - uid: 7535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,20.5 + parent: 2 +- proto: PosterContrabandPunchShit + entities: + - uid: 6939 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 +- proto: PosterContrabandRevolt + entities: + - uid: 6929 + components: + - type: Transform + pos: -1.5,8.5 + parent: 2 +- proto: PosterContrabandRIPBadger + entities: + - uid: 6639 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 +- proto: PosterContrabandRise + entities: + - uid: 7482 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 +- proto: PosterContrabandRobustSoftdrinks + entities: + - uid: 7538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,17.5 + parent: 2 +- proto: PosterContrabandSyndicateRecruitment + entities: + - uid: 6930 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 +- proto: PosterLegitBuild + entities: + - uid: 7529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,27.5 + parent: 2 +- proto: PosterLegitCleanliness + entities: + - uid: 3177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-11.5 + parent: 2 +- proto: PosterLegitDoNotQuestion + entities: + - uid: 7485 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 2 +- proto: PosterLegitFoamForceAd + entities: + - uid: 7484 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 +- proto: PosterLegitGetYourLEGS + entities: + - uid: 7531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,33.5 + parent: 2 +- proto: PosterLegitHelpOthers + entities: + - uid: 7490 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 2 +- proto: PosterLegitHereForYourSafety + entities: + - uid: 7481 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 + - uid: 7530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-3.5 + parent: 2 +- proto: PosterLegitIan + entities: + - uid: 7491 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 +- proto: PosterLegitLoveIan + entities: + - uid: 7489 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 2 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 7488 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 2 + - uid: 7536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,17.5 + parent: 2 +- proto: PosterLegitNoERP + entities: + - uid: 7479 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 +- proto: PosterLegitObey + entities: + - uid: 6942 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 7480 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 +- proto: PosterLegitPDAAd + entities: + - uid: 7533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,3.5 + parent: 2 +- proto: PosterLegitReportCrimes + entities: + - uid: 7537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,17.5 + parent: 2 +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 7206 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 7204 + components: + - type: Transform + pos: 15.5,27.5 + parent: 2 +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 7205 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 +- proto: PosterLegitSafetyMothPiping + entities: + - uid: 7207 + components: + - type: Transform + pos: 22.5,35.5 + parent: 2 +- proto: PosterLegitSecWatch + entities: + - uid: 2622 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 2 + - uid: 6943 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - uid: 7528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-2.5 + parent: 2 +- proto: PosterLegitSpaceCops + entities: + - uid: 7483 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 +- proto: PosterLegitStateLaws + entities: + - uid: 7532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-13.5 + parent: 2 +- proto: PosterLegitThereIsNoGasGiant + entities: + - uid: 7486 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 2 +- proto: PosterLegitUeNo + entities: + - uid: 7208 + components: + - type: Transform + pos: 6.5,35.5 + parent: 2 +- proto: PottedPlantRandom + entities: + - uid: 7005 + components: + - type: Transform + pos: 44.5,-17.5 + parent: 2 + - uid: 7543 + components: + - type: Transform + pos: 49.5,-1.5 + parent: 2 +- proto: PottedPlantRandomPlastic + entities: + - uid: 5083 + components: + - type: Transform + pos: 41.5,27.5 + parent: 2 + - uid: 6329 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 +- proto: PoweredDimSmallLight + entities: + - uid: 433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,49.5 + parent: 2 + - uid: 3182 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 + - uid: 3272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,13.5 + parent: 2 + - uid: 3273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,12.5 + parent: 2 + - uid: 3274 + components: + - type: Transform + pos: 53.5,14.5 + parent: 2 + - uid: 3275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,11.5 + parent: 2 + - uid: 5435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,54.5 + parent: 2 + - uid: 5436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,54.5 + parent: 2 + - uid: 5437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,54.5 + parent: 2 + - uid: 5438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,52.5 + parent: 2 + - uid: 5439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,50.5 + parent: 2 + - uid: 5440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,48.5 + parent: 2 + - uid: 5441 + components: + - type: Transform + pos: 51.5,45.5 + parent: 2 + - uid: 5442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,47.5 + parent: 2 + - uid: 5443 + components: + - type: Transform + pos: 41.5,45.5 + parent: 2 + - uid: 5444 + components: + - type: Transform + pos: 44.5,45.5 + parent: 2 + - uid: 5445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,58.5 + parent: 2 + - uid: 5446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,58.5 + parent: 2 + - uid: 5447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,48.5 + parent: 2 + - uid: 5448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,58.5 + parent: 2 + - uid: 5450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,58.5 + parent: 2 + - uid: 5451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,58.5 + parent: 2 + - uid: 6707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,58.5 + parent: 2 + - uid: 7245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,46.5 + parent: 2 + - uid: 7246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,43.5 + parent: 2 + - uid: 7330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,11.5 + parent: 2 +- proto: PoweredLEDSmallLight + entities: + - uid: 5364 + components: + - type: Transform + pos: 9.5,18.5 + parent: 2 + - uid: 5899 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 2 + - uid: 6072 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 2 +- proto: PoweredlightLED + entities: + - uid: 260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-0.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,20.5 + parent: 2 + - uid: 1949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,38.5 + parent: 2 + - uid: 3149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,15.5 + parent: 2 + - uid: 3151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,11.5 + parent: 2 + - uid: 3152 + components: + - type: Transform + pos: 31.5,13.5 + parent: 2 + - uid: 3155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 2 + - uid: 3156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,13.5 + parent: 2 + - uid: 3158 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 + - uid: 3161 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 + - uid: 3162 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 3164 + components: + - type: Transform + pos: 12.5,24.5 + parent: 2 + - uid: 3168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,9.5 + parent: 2 + - uid: 3169 + components: + - type: Transform + pos: 21.5,6.5 + parent: 2 + - uid: 3171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,11.5 + parent: 2 + - uid: 3172 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 3174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-0.5 + parent: 2 + - uid: 3175 + components: + - type: Transform + pos: 21.5,16.5 + parent: 2 + - uid: 3178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 2 + - uid: 3183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,13.5 + parent: 2 + - uid: 3186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 2 + - uid: 3187 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 3191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,19.5 + parent: 2 + - uid: 3192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,21.5 + parent: 2 + - uid: 3193 + components: + - type: Transform + pos: 28.5,19.5 + parent: 2 + - uid: 3195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,22.5 + parent: 2 + - uid: 3196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,35.5 + parent: 2 + - uid: 3198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,21.5 + parent: 2 + - uid: 3199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,25.5 + parent: 2 + - uid: 3200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,23.5 + parent: 2 + - uid: 3201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,27.5 + parent: 2 + - uid: 3202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,34.5 + parent: 2 + - uid: 3203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,38.5 + parent: 2 + - uid: 3204 + components: + - type: Transform + pos: 34.5,42.5 + parent: 2 + - uid: 3205 + components: + - type: Transform + pos: 38.5,42.5 + parent: 2 + - uid: 3206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,37.5 + parent: 2 + - uid: 3207 + components: + - type: Transform + pos: 27.5,42.5 + parent: 2 + - uid: 3209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,41.5 + parent: 2 + - uid: 3210 + components: + - type: Transform + pos: 20.5,39.5 + parent: 2 + - uid: 3213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,33.5 + parent: 2 + - uid: 3216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,22.5 + parent: 2 + - uid: 3218 + components: + - type: Transform + pos: 39.5,1.5 + parent: 2 + - uid: 3219 + components: + - type: Transform + pos: 35.5,2.5 + parent: 2 + - uid: 3220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-1.5 + parent: 2 + - uid: 3221 + components: + - type: Transform + pos: 46.5,-2.5 + parent: 2 + - uid: 3222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-10.5 + parent: 2 + - uid: 3224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-1.5 + parent: 2 + - uid: 3225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,30.5 + parent: 2 + - uid: 3226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-9.5 + parent: 2 + - uid: 3227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-10.5 + parent: 2 + - uid: 3228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-7.5 + parent: 2 + - uid: 3230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-6.5 + parent: 2 + - uid: 3231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-2.5 + parent: 2 + - uid: 3232 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 3236 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - uid: 3237 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 2 + - uid: 3242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-7.5 + parent: 2 + - uid: 3243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-7.5 + parent: 2 + - uid: 3244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-7.5 + parent: 2 + - uid: 3245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-9.5 + parent: 2 + - uid: 3246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-4.5 + parent: 2 + - uid: 3249 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 + - uid: 3250 + components: + - type: Transform + pos: 30.5,2.5 + parent: 2 + - uid: 3251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,8.5 + parent: 2 + - uid: 3254 + components: + - type: Transform + pos: 4.5,29.5 + parent: 2 + - uid: 3258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,26.5 + parent: 2 + - uid: 3264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,20.5 + parent: 2 + - uid: 3266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,11.5 + parent: 2 + - uid: 3267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,9.5 + parent: 2 + - uid: 3268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,3.5 + parent: 2 + - uid: 3269 + components: + - type: Transform + pos: 51.5,5.5 + parent: 2 + - uid: 3270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-1.5 + parent: 2 + - uid: 3271 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 + - uid: 3277 + components: + - type: Transform + pos: 28.5,7.5 + parent: 2 + - uid: 3282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,28.5 + parent: 2 + - uid: 3283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,28.5 + parent: 2 + - uid: 3284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,20.5 + parent: 2 + - uid: 3285 + components: + - type: Transform + pos: 58.5,25.5 + parent: 2 + - uid: 3286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,28.5 + parent: 2 + - uid: 3288 + components: + - type: Transform + pos: 63.5,34.5 + parent: 2 + - uid: 3289 + components: + - type: Transform + pos: 56.5,34.5 + parent: 2 + - uid: 3292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,26.5 + parent: 2 + - uid: 3293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,20.5 + parent: 2 + - uid: 3294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,19.5 + parent: 2 + - uid: 3299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,35.5 + parent: 2 + - uid: 3300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,30.5 + parent: 2 + - uid: 3301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,42.5 + parent: 2 + - uid: 3302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,34.5 + parent: 2 + - uid: 3303 + components: + - type: Transform + pos: 43.5,32.5 + parent: 2 + - uid: 3304 + components: + - type: Transform + pos: 52.5,26.5 + parent: 2 + - uid: 3306 + components: + - type: Transform + pos: 49.5,37.5 + parent: 2 + - uid: 3308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,39.5 + parent: 2 + - uid: 3309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,40.5 + parent: 2 + - uid: 3310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,36.5 + parent: 2 + - uid: 4821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,10.5 + parent: 2 + - uid: 4822 + components: + - type: Transform + pos: 20.5,50.5 + parent: 2 + - uid: 4828 + components: + - type: Transform + pos: 40.5,50.5 + parent: 2 + - uid: 4829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,47.5 + parent: 2 + - uid: 4835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,48.5 + parent: 2 + - uid: 4837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,49.5 + parent: 2 + - uid: 4838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,49.5 + parent: 2 + - uid: 4839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,4.5 + parent: 2 + - uid: 4842 + components: + - type: Transform + pos: 45.5,21.5 + parent: 2 + - uid: 4843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,20.5 + parent: 2 + - uid: 4845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,24.5 + parent: 2 + - uid: 4846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,35.5 + parent: 2 + - uid: 4847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,36.5 + parent: 2 + - uid: 4854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,37.5 + parent: 2 + - uid: 4855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,31.5 + parent: 2 + - uid: 4856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,37.5 + parent: 2 + - uid: 4857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,40.5 + parent: 2 + - uid: 4858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,41.5 + parent: 2 + - uid: 4859 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 + - uid: 4860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,35.5 + parent: 2 + - uid: 4861 + components: + - type: Transform + pos: 27.5,35.5 + parent: 2 + - uid: 4862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,25.5 + parent: 2 + - uid: 4863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,18.5 + parent: 2 + - uid: 4864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,18.5 + parent: 2 + - uid: 4865 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 4866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,24.5 + parent: 2 + - uid: 4870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,20.5 + parent: 2 + - uid: 4872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,33.5 + parent: 2 + - uid: 4873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,25.5 + parent: 2 + - uid: 4874 + components: + - type: Transform + pos: -1.5,7.5 + parent: 2 + - uid: 4878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,13.5 + parent: 2 + - uid: 4879 + components: + - type: Transform + pos: 14.5,12.5 + parent: 2 + - uid: 4880 + components: + - type: Transform + pos: 28.5,11.5 + parent: 2 + - uid: 4881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,9.5 + parent: 2 + - uid: 4882 + components: + - type: Transform + pos: 32.5,16.5 + parent: 2 + - uid: 4883 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - uid: 4884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 2 + - uid: 4885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-10.5 + parent: 2 + - uid: 4886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-14.5 + parent: 2 + - uid: 4888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,1.5 + parent: 2 + - uid: 4889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-4.5 + parent: 2 + - uid: 4890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-4.5 + parent: 2 + - uid: 4891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-4.5 + parent: 2 + - uid: 4892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-12.5 + parent: 2 + - uid: 4893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,11.5 + parent: 2 + - uid: 4894 + components: + - type: Transform + pos: 43.5,8.5 + parent: 2 + - uid: 5111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,4.5 + parent: 2 + - uid: 5151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-12.5 + parent: 2 + - uid: 5153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,29.5 + parent: 2 + - uid: 5162 + components: + - type: Transform + pos: 53.5,34.5 + parent: 2 + - uid: 5163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,29.5 + parent: 2 + - uid: 6154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-4.5 + parent: 2 + - uid: 6158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-1.5 + parent: 2 + - uid: 6159 + components: + - type: Transform + pos: 26.5,2.5 + parent: 2 + - uid: 6161 + components: + - type: Transform + pos: 35.5,19.5 + parent: 2 + - uid: 6666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,35.5 + parent: 2 + - uid: 6689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,28.5 + parent: 2 + - uid: 6720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,32.5 + parent: 2 + - uid: 6932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 2 + - uid: 6936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-2.5 + parent: 2 + - uid: 7331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,18.5 + parent: 2 + - uid: 7498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-12.5 + parent: 2 +- proto: PoweredlightSodium + entities: + - uid: 3154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,17.5 + parent: 2 + - uid: 3157 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - uid: 3159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,6.5 + parent: 2 + - uid: 3160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 2 + - uid: 3163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 2 + - uid: 3165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 2 + - uid: 3166 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 3179 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 3180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 2 + - uid: 3181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 3184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 2 + - uid: 3185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 2 + - uid: 3188 + components: + - type: Transform + pos: -5.5,15.5 + parent: 2 + - uid: 3189 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - uid: 3194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 2 + - uid: 3217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 2 + - uid: 3223 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - uid: 3229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,8.5 + parent: 2 + - uid: 3252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-16.5 + parent: 2 + - uid: 3255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-9.5 + parent: 2 + - uid: 3256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-17.5 + parent: 2 + - uid: 3257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-16.5 + parent: 2 + - uid: 3260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,6.5 + parent: 2 + - uid: 3261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,18.5 + parent: 2 + - uid: 3262 + components: + - type: Transform + pos: 57.5,40.5 + parent: 2 + - uid: 3263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,7.5 + parent: 2 + - uid: 3265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,4.5 + parent: 2 + - uid: 3276 + components: + - type: Transform + pos: 41.5,17.5 + parent: 2 + - uid: 3278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,12.5 + parent: 2 + - uid: 3279 + components: + - type: Transform + pos: 53.5,17.5 + parent: 2 + - uid: 3295 + components: + - type: Transform + pos: 47.5,17.5 + parent: 2 + - uid: 3297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,16.5 + parent: 2 + - uid: 3298 + components: + - type: Transform + pos: 58.5,18.5 + parent: 2 + - uid: 3305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,8.5 + parent: 2 + - uid: 3307 + components: + - type: Transform + pos: 57.5,2.5 + parent: 2 + - uid: 3312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,29.5 + parent: 2 + - uid: 4419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,43.5 + parent: 2 + - uid: 4820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,49.5 + parent: 2 + - uid: 4824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,57.5 + parent: 2 + - uid: 4825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,56.5 + parent: 2 + - uid: 4827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,50.5 + parent: 2 + - uid: 4830 + components: + - type: Transform + pos: 37.5,54.5 + parent: 2 + - uid: 4831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,53.5 + parent: 2 + - uid: 4832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,53.5 + parent: 2 + - uid: 4833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,53.5 + parent: 2 + - uid: 4836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,50.5 + parent: 2 + - uid: 4869 + components: + - type: Transform + pos: 15.5,60.5 + parent: 2 + - uid: 4875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,23.5 + parent: 2 + - uid: 4876 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 4877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,4.5 + parent: 2 + - uid: 4887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,4.5 + parent: 2 + - uid: 5155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,1.5 + parent: 2 + - uid: 6931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,1.5 + parent: 2 + - uid: 6935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,42.5 + parent: 2 + - uid: 7332 + components: + - type: Transform + pos: 59.5,54.5 + parent: 2 +- proto: PoweredWarmSmallLight + entities: + - uid: 4081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,63.5 + parent: 2 + - uid: 5134 + components: + - type: Transform + pos: 9.5,38.5 + parent: 2 + - uid: 5156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-14.5 + parent: 2 + - uid: 5157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-14.5 + parent: 2 + - uid: 5159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-14.5 + parent: 2 + - uid: 5160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,20.5 + parent: 2 + - uid: 5161 + components: + - type: Transform + pos: 61.5,23.5 + parent: 2 + - uid: 5165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,60.5 + parent: 2 + - uid: 5166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,58.5 + parent: 2 + - uid: 5171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,56.5 + parent: 2 + - uid: 5563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 2 + - uid: 6059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 2 + - uid: 6577 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - uid: 6702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,20.5 + parent: 2 + - uid: 6703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 2 + - uid: 6704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 2 + - uid: 7333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,66.5 + parent: 2 + - uid: 7334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,63.5 + parent: 2 + - uid: 7335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,66.5 + parent: 2 +- proto: Protolathe + entities: + - uid: 1521 + components: + - type: Transform + pos: 43.5,4.5 + parent: 2 + - uid: 7564 + components: + - type: Transform + pos: 39.5,35.5 + parent: 2 +- proto: RandomEngineerCorpseSpawner + entities: + - uid: 7286 + components: + - type: Transform + pos: 35.5,45.5 + parent: 2 +- proto: RandomSpawner + entities: + - uid: 2282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,23.5 + parent: 2 + - uid: 3153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,45.5 + parent: 2 + - uid: 3311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,53.5 + parent: 2 + - uid: 4823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,43.5 + parent: 2 + - uid: 4826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,44.5 + parent: 2 + - uid: 4840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-16.5 + parent: 2 + - uid: 6157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,45.5 + parent: 2 + - uid: 7225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,49.5 + parent: 2 + - uid: 7226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,54.5 + parent: 2 + - uid: 7227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,55.5 + parent: 2 + - uid: 7228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,54.5 + parent: 2 + - uid: 7229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,54.5 + parent: 2 + - uid: 7230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,51.5 + parent: 2 + - uid: 7231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,50.5 + parent: 2 + - uid: 7232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,58.5 + parent: 2 + - uid: 7233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,55.5 + parent: 2 + - uid: 7234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,52.5 + parent: 2 + - uid: 7235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,50.5 + parent: 2 + - uid: 7336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,39.5 + parent: 2 + - uid: 7337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,38.5 + parent: 2 + - uid: 7338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,29.5 + parent: 2 + - uid: 7339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,14.5 + parent: 2 + - uid: 7340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,12.5 + parent: 2 + - uid: 7341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,12.5 + parent: 2 + - uid: 7342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,12.5 + parent: 2 + - uid: 7343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,18.5 + parent: 2 + - uid: 7344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,14.5 + parent: 2 + - uid: 7345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,15.5 + parent: 2 + - uid: 7346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,17.5 + parent: 2 + - uid: 7347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,16.5 + parent: 2 + - uid: 7348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,16.5 + parent: 2 + - uid: 7349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,17.5 + parent: 2 + - uid: 7350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,17.5 + parent: 2 + - uid: 7351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,15.5 + parent: 2 + - uid: 7352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,17.5 + parent: 2 + - uid: 7353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,0.5 + parent: 2 + - uid: 7354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,1.5 + parent: 2 + - uid: 7355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,0.5 + parent: 2 + - uid: 7356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,1.5 + parent: 2 + - uid: 7357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,2.5 + parent: 2 + - uid: 7358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,8.5 + parent: 2 + - uid: 7359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,6.5 + parent: 2 + - uid: 7360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,7.5 + parent: 2 + - uid: 7361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,0.5 + parent: 2 + - uid: 7362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,18.5 + parent: 2 + - uid: 7363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,10.5 + parent: 2 + - uid: 7364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,4.5 + parent: 2 + - uid: 7365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,10.5 + parent: 2 + - uid: 7366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,11.5 + parent: 2 + - uid: 7368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-14.5 + parent: 2 + - uid: 7369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-16.5 + parent: 2 + - uid: 7370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-16.5 + parent: 2 + - uid: 7371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-14.5 + parent: 2 + - uid: 7372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-14.5 + parent: 2 + - uid: 7373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,4.5 + parent: 2 + - uid: 7374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,13.5 + parent: 2 + - uid: 7375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,10.5 + parent: 2 + - uid: 7376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,14.5 + parent: 2 + - uid: 7377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,9.5 + parent: 2 + - uid: 7378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,22.5 + parent: 2 + - uid: 7379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,26.5 + parent: 2 + - uid: 7380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,25.5 + parent: 2 + - uid: 7381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,32.5 + parent: 2 + - uid: 7382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,35.5 + parent: 2 + - uid: 7383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,33.5 + parent: 2 + - uid: 7384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,13.5 + parent: 2 + - uid: 7385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,9.5 + parent: 2 + - uid: 7386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,10.5 + parent: 2 + - uid: 7387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,15.5 + parent: 2 + - uid: 7388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,14.5 + parent: 2 + - uid: 7389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,11.5 + parent: 2 + - uid: 7390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 2 + - uid: 7391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 + - uid: 7392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 2 + - uid: 7393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 2 + - uid: 7394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 2 + - uid: 7395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 2 + - uid: 7396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 2 + - uid: 7397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 2 + - uid: 7398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,2.5 + parent: 2 + - uid: 7399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 2 + - uid: 7400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 2 + - uid: 7401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 2 + - uid: 7402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 2 + - uid: 7403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 2 + - uid: 7404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 2 + - uid: 7405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - uid: 7406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 2 + - uid: 7407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 2 + - uid: 7408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-14.5 + parent: 2 + - uid: 7410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 2 +- proto: RandomVendingClothing + entities: + - uid: 7287 + components: + - type: Transform + pos: 58.5,44.5 + parent: 2 +- proto: RandomVendingDrinks + entities: + - uid: 147 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 + - uid: 1376 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 1498 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 1550 + components: + - type: Transform + pos: 52.5,14.5 + parent: 2 + - uid: 4848 + components: + - type: Transform + pos: 56.5,40.5 + parent: 2 + - uid: 7003 + components: + - type: Transform + pos: 47.5,-12.5 + parent: 2 +- proto: RandomVendingSnacks + entities: + - uid: 148 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - uid: 1377 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - uid: 1549 + components: + - type: Transform + pos: 51.5,14.5 + parent: 2 + - uid: 4849 + components: + - type: Transform + pos: 58.5,40.5 + parent: 2 + - uid: 7004 + components: + - type: Transform + pos: 48.5,-12.5 + parent: 2 +- proto: RCD + entities: + - uid: 1614 + components: + - type: Transform + pos: 45.667767,33.430214 + parent: 2 +- proto: Recycler + entities: + - uid: 359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 2 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 1718 + components: + - type: Transform + pos: 28.5,24.5 + parent: 2 + - uid: 1721 + components: + - type: Transform + pos: 28.5,22.5 + parent: 2 + - uid: 1727 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 + - uid: 1731 + components: + - type: Transform + pos: 28.5,28.5 + parent: 2 + - uid: 1732 + components: + - type: Transform + pos: 28.5,23.5 + parent: 2 + - uid: 1781 + components: + - type: Transform + pos: 28.5,25.5 + parent: 2 + - uid: 1787 + components: + - type: Transform + pos: 28.5,27.5 + parent: 2 + - uid: 1792 + components: + - type: Transform + pos: 28.5,21.5 + parent: 2 +- proto: ReinforcedWindow + entities: + - uid: 9 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 10 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - uid: 11 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 12 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 13 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 14 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 2 + - uid: 15 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - uid: 16 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - uid: 126 + components: + - type: Transform + pos: 20.5,3.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 128 + components: + - type: Transform + pos: 16.5,3.5 + parent: 2 + - uid: 129 + components: + - type: Transform + pos: 17.5,3.5 + parent: 2 + - uid: 130 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 + - uid: 236 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 2 + - uid: 237 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 2 + - uid: 238 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 2 + - uid: 273 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 + - uid: 274 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - uid: 279 + components: + - type: Transform + pos: -7.5,9.5 + parent: 2 + - uid: 280 + components: + - type: Transform + pos: -7.5,13.5 + parent: 2 + - uid: 281 + components: + - type: Transform + pos: -7.5,14.5 + parent: 2 + - uid: 282 + components: + - type: Transform + pos: -7.5,15.5 + parent: 2 + - uid: 303 + components: + - type: Transform + pos: -7.5,16.5 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: -7.5,8.5 + parent: 2 + - uid: 307 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 + - uid: 308 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 371 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - uid: 372 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 2 + - uid: 373 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 2 + - uid: 405 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - uid: 407 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - uid: 408 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 + - uid: 409 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 2 + - uid: 411 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 2 + - uid: 412 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 + - uid: 413 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - uid: 414 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 2 + - uid: 415 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 2 + - uid: 416 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - uid: 467 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 469 + components: + - type: Transform + pos: 24.5,12.5 + parent: 2 + - uid: 504 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 505 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 + - uid: 507 + components: + - type: Transform + pos: 26.5,8.5 + parent: 2 + - uid: 508 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - uid: 515 + components: + - type: Transform + pos: 31.5,16.5 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 + - uid: 723 + components: + - type: Transform + pos: 5.5,24.5 + parent: 2 + - uid: 724 + components: + - type: Transform + pos: 4.5,24.5 + parent: 2 + - uid: 725 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 + - uid: 729 + components: + - type: Transform + pos: 5.5,27.5 + parent: 2 + - uid: 730 + components: + - type: Transform + pos: 4.5,27.5 + parent: 2 + - uid: 731 + components: + - type: Transform + pos: 3.5,27.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: 24.5,27.5 + parent: 2 + - uid: 809 + components: + - type: Transform + pos: 17.5,32.5 + parent: 2 + - uid: 810 + components: + - type: Transform + pos: 18.5,32.5 + parent: 2 + - uid: 811 + components: + - type: Transform + pos: 19.5,32.5 + parent: 2 + - uid: 812 + components: + - type: Transform + pos: 20.5,32.5 + parent: 2 + - uid: 813 + components: + - type: Transform + pos: 22.5,32.5 + parent: 2 + - uid: 815 + components: + - type: Transform + pos: 23.5,32.5 + parent: 2 + - uid: 816 + components: + - type: Transform + pos: 25.5,32.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: 24.5,32.5 + parent: 2 + - uid: 969 + components: + - type: Transform + pos: 45.5,43.5 + parent: 2 + - uid: 970 + components: + - type: Transform + pos: 46.5,43.5 + parent: 2 + - uid: 971 + components: + - type: Transform + pos: 47.5,43.5 + parent: 2 + - uid: 1118 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 2 + - uid: 1119 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 2 + - uid: 1120 + components: + - type: Transform + pos: 43.5,-18.5 + parent: 2 + - uid: 1121 + components: + - type: Transform + pos: 44.5,-18.5 + parent: 2 + - uid: 1122 + components: + - type: Transform + pos: 45.5,-18.5 + parent: 2 + - uid: 1123 + components: + - type: Transform + pos: 46.5,-18.5 + parent: 2 + - uid: 1124 + components: + - type: Transform + pos: 47.5,-18.5 + parent: 2 + - uid: 1125 + components: + - type: Transform + pos: 48.5,-18.5 + parent: 2 + - uid: 1126 + components: + - type: Transform + pos: 50.5,-15.5 + parent: 2 + - uid: 1127 + components: + - type: Transform + pos: 50.5,-14.5 + parent: 2 + - uid: 1128 + components: + - type: Transform + pos: 50.5,-13.5 + parent: 2 + - uid: 1149 + components: + - type: Transform + pos: 37.5,-15.5 + parent: 2 + - uid: 1150 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 2 + - uid: 1151 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 2 + - uid: 1152 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 2 + - uid: 1153 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 2 + - uid: 1154 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 2 + - uid: 1155 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 2 + - uid: 1156 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - uid: 1157 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 2 + - uid: 1158 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 2 + - uid: 1159 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 2 + - uid: 1160 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 2 + - uid: 1161 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 2 + - uid: 1162 + components: + - type: Transform + pos: 22.5,-15.5 + parent: 2 + - uid: 1163 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + pos: 51.5,2.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + pos: 52.5,2.5 + parent: 2 + - uid: 1253 + components: + - type: Transform + pos: 53.5,2.5 + parent: 2 + - uid: 1255 + components: + - type: Transform + pos: 54.5,2.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + pos: 24.5,30.5 + parent: 2 + - uid: 1346 + components: + - type: Transform + pos: 24.5,26.5 + parent: 2 + - uid: 1742 + components: + - type: Transform + pos: 24.5,28.5 + parent: 2 + - uid: 1746 + components: + - type: Transform + pos: 24.5,23.5 + parent: 2 + - uid: 1747 + components: + - type: Transform + pos: 24.5,24.5 + parent: 2 + - uid: 1748 + components: + - type: Transform + pos: 24.5,25.5 + parent: 2 + - uid: 1773 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 + - uid: 1774 + components: + - type: Transform + pos: 25.5,30.5 + parent: 2 + - uid: 1886 + components: + - type: Transform + pos: 11.5,28.5 + parent: 2 + - uid: 1900 + components: + - type: Transform + pos: 12.5,40.5 + parent: 2 + - uid: 1901 + components: + - type: Transform + pos: 13.5,40.5 + parent: 2 + - uid: 2067 + components: + - type: Transform + pos: 57.5,-0.5 + parent: 2 + - uid: 2068 + components: + - type: Transform + pos: 59.5,-0.5 + parent: 2 + - uid: 2069 + components: + - type: Transform + pos: 60.5,-0.5 + parent: 2 + - uid: 2070 + components: + - type: Transform + pos: 61.5,-0.5 + parent: 2 + - uid: 2072 + components: + - type: Transform + pos: 62.5,-0.5 + parent: 2 + - uid: 2073 + components: + - type: Transform + pos: 63.5,-0.5 + parent: 2 + - uid: 2074 + components: + - type: Transform + pos: 65.5,-0.5 + parent: 2 + - uid: 2082 + components: + - type: Transform + pos: 63.5,-1.5 + parent: 2 + - uid: 2083 + components: + - type: Transform + pos: 63.5,-2.5 + parent: 2 + - uid: 2084 + components: + - type: Transform + pos: 65.5,-1.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: 65.5,-2.5 + parent: 2 + - uid: 2086 + components: + - type: Transform + pos: 59.5,-1.5 + parent: 2 + - uid: 2087 + components: + - type: Transform + pos: 59.5,-2.5 + parent: 2 + - uid: 2088 + components: + - type: Transform + pos: 57.5,-1.5 + parent: 2 + - uid: 2089 + components: + - type: Transform + pos: 57.5,-2.5 + parent: 2 + - uid: 2100 + components: + - type: Transform + pos: 49.5,-17.5 + parent: 2 + - uid: 2106 + components: + - type: Transform + pos: 51.5,-17.5 + parent: 2 + - uid: 2127 + components: + - type: Transform + pos: 53.5,-15.5 + parent: 2 + - uid: 2135 + components: + - type: Transform + pos: 55.5,-13.5 + parent: 2 + - uid: 2136 + components: + - type: Transform + pos: 55.5,-14.5 + parent: 2 + - uid: 2151 + components: + - type: Transform + pos: 54.5,-15.5 + parent: 2 + - uid: 2174 + components: + - type: Transform + pos: 52.5,-15.5 + parent: 2 + - uid: 2175 + components: + - type: Transform + pos: 51.5,-15.5 + parent: 2 + - uid: 2353 + components: + - type: Transform + pos: 64.5,34.5 + parent: 2 + - uid: 2354 + components: + - type: Transform + pos: 64.5,33.5 + parent: 2 + - uid: 2355 + components: + - type: Transform + pos: 64.5,32.5 + parent: 2 + - uid: 2356 + components: + - type: Transform + pos: 64.5,31.5 + parent: 2 + - uid: 2357 + components: + - type: Transform + pos: 64.5,30.5 + parent: 2 + - uid: 2358 + components: + - type: Transform + pos: 64.5,29.5 + parent: 2 + - uid: 2359 + components: + - type: Transform + pos: 64.5,28.5 + parent: 2 + - uid: 2361 + components: + - type: Transform + pos: 51.5,22.5 + parent: 2 + - uid: 2362 + components: + - type: Transform + pos: 52.5,22.5 + parent: 2 + - uid: 2463 + components: + - type: Transform + pos: 64.5,35.5 + parent: 2 + - uid: 2464 + components: + - type: Transform + pos: 64.5,27.5 + parent: 2 + - uid: 2522 + components: + - type: Transform + pos: 65.5,51.5 + parent: 2 + - uid: 2524 + components: + - type: Transform + pos: 65.5,46.5 + parent: 2 + - uid: 2525 + components: + - type: Transform + pos: 64.5,46.5 + parent: 2 + - uid: 2526 + components: + - type: Transform + pos: 63.5,46.5 + parent: 2 + - uid: 2527 + components: + - type: Transform + pos: 65.5,44.5 + parent: 2 + - uid: 2528 + components: + - type: Transform + pos: 64.5,44.5 + parent: 2 + - uid: 2529 + components: + - type: Transform + pos: 63.5,44.5 + parent: 2 + - uid: 2530 + components: + - type: Transform + pos: 64.5,51.5 + parent: 2 + - uid: 2531 + components: + - type: Transform + pos: 63.5,51.5 + parent: 2 + - uid: 2533 + components: + - type: Transform + pos: 65.5,53.5 + parent: 2 + - uid: 2534 + components: + - type: Transform + pos: 64.5,53.5 + parent: 2 + - uid: 2535 + components: + - type: Transform + pos: 63.5,53.5 + parent: 2 + - uid: 2590 + components: + - type: Transform + pos: 62.5,58.5 + parent: 2 + - uid: 2595 + components: + - type: Transform + pos: 60.5,63.5 + parent: 2 + - uid: 2596 + components: + - type: Transform + pos: 59.5,63.5 + parent: 2 + - uid: 2597 + components: + - type: Transform + pos: 57.5,63.5 + parent: 2 + - uid: 2598 + components: + - type: Transform + pos: 56.5,63.5 + parent: 2 + - uid: 2750 + components: + - type: Transform + pos: 59.5,64.5 + parent: 2 + - uid: 2751 + components: + - type: Transform + pos: 59.5,65.5 + parent: 2 + - uid: 2752 + components: + - type: Transform + pos: 57.5,65.5 + parent: 2 + - uid: 2753 + components: + - type: Transform + pos: 57.5,64.5 + parent: 2 + - uid: 2758 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - uid: 2759 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 2 + - uid: 2760 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 2 + - uid: 3212 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 4030 + components: + - type: Transform + pos: 55.5,-15.5 + parent: 2 + - uid: 4031 + components: + - type: Transform + pos: 57.5,-14.5 + parent: 2 + - uid: 4032 + components: + - type: Transform + pos: 57.5,-15.5 + parent: 2 + - uid: 4033 + components: + - type: Transform + pos: 57.5,-13.5 + parent: 2 + - uid: 4034 + components: + - type: Transform + pos: 59.5,-15.5 + parent: 2 + - uid: 4035 + components: + - type: Transform + pos: 60.5,-15.5 + parent: 2 + - uid: 4036 + components: + - type: Transform + pos: 61.5,-15.5 + parent: 2 + - uid: 4037 + components: + - type: Transform + pos: 62.5,-15.5 + parent: 2 + - uid: 4489 + components: + - type: Transform + pos: 54.5,59.5 + parent: 2 + - uid: 4490 + components: + - type: Transform + pos: 53.5,59.5 + parent: 2 + - uid: 4494 + components: + - type: Transform + pos: 55.5,61.5 + parent: 2 + - uid: 4495 + components: + - type: Transform + pos: 54.5,61.5 + parent: 2 + - uid: 4496 + components: + - type: Transform + pos: 53.5,61.5 + parent: 2 + - uid: 4868 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 + - uid: 5996 + components: + - type: Transform + pos: 63.5,-15.5 + parent: 2 + - uid: 6006 + components: + - type: Transform + pos: 57.5,-12.5 + parent: 2 + - uid: 6007 + components: + - type: Transform + pos: 65.5,-15.5 + parent: 2 + - uid: 6008 + components: + - type: Transform + pos: 55.5,-12.5 + parent: 2 + - uid: 6009 + components: + - type: Transform + pos: 59.5,-13.5 + parent: 2 + - uid: 6010 + components: + - type: Transform + pos: 59.5,-12.5 + parent: 2 + - uid: 6011 + components: + - type: Transform + pos: 54.5,-17.5 + parent: 2 + - uid: 6012 + components: + - type: Transform + pos: 55.5,-17.5 + parent: 2 + - uid: 6013 + components: + - type: Transform + pos: 56.5,-17.5 + parent: 2 + - uid: 6014 + components: + - type: Transform + pos: 57.5,-17.5 + parent: 2 + - uid: 6015 + components: + - type: Transform + pos: 58.5,-17.5 + parent: 2 + - uid: 6016 + components: + - type: Transform + pos: 59.5,-17.5 + parent: 2 + - uid: 6017 + components: + - type: Transform + pos: 60.5,-17.5 + parent: 2 + - uid: 6018 + components: + - type: Transform + pos: 61.5,-17.5 + parent: 2 + - uid: 6019 + components: + - type: Transform + pos: 62.5,-17.5 + parent: 2 + - uid: 6020 + components: + - type: Transform + pos: 63.5,-17.5 + parent: 2 + - uid: 6021 + components: + - type: Transform + pos: 64.5,-17.5 + parent: 2 + - uid: 6022 + components: + - type: Transform + pos: 65.5,-17.5 + parent: 2 + - uid: 6023 + components: + - type: Transform + pos: 66.5,-17.5 + parent: 2 + - uid: 6024 + components: + - type: Transform + pos: 67.5,-17.5 + parent: 2 + - uid: 6025 + components: + - type: Transform + pos: 53.5,-17.5 + parent: 2 + - uid: 6077 + components: + - type: Transform + pos: 23.5,10.5 + parent: 2 + - uid: 6078 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 6084 + components: + - type: Transform + pos: 12.5,26.5 + parent: 2 + - uid: 6088 + components: + - type: Transform + pos: 9.5,26.5 + parent: 2 + - uid: 6090 + components: + - type: Transform + pos: 9.5,27.5 + parent: 2 + - uid: 6091 + components: + - type: Transform + pos: 10.5,28.5 + parent: 2 + - uid: 6095 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 6096 + components: + - type: Transform + pos: 11.5,25.5 + parent: 2 + - uid: 6121 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 2 + - uid: 6305 + components: + - type: Transform + pos: 62.5,59.5 + parent: 2 + - uid: 7293 + components: + - type: Transform + pos: 59.5,-14.5 + parent: 2 + - uid: 7294 + components: + - type: Transform + pos: 63.5,-12.5 + parent: 2 + - uid: 7295 + components: + - type: Transform + pos: 63.5,-13.5 + parent: 2 + - uid: 7296 + components: + - type: Transform + pos: 63.5,-14.5 + parent: 2 + - uid: 7297 + components: + - type: Transform + pos: 65.5,-12.5 + parent: 2 + - uid: 7298 + components: + - type: Transform + pos: 65.5,-13.5 + parent: 2 + - uid: 7299 + components: + - type: Transform + pos: 65.5,-14.5 + parent: 2 + - uid: 7300 + components: + - type: Transform + pos: 67.5,-12.5 + parent: 2 + - uid: 7301 + components: + - type: Transform + pos: 67.5,-13.5 + parent: 2 + - uid: 7302 + components: + - type: Transform + pos: 67.5,-14.5 + parent: 2 + - uid: 7303 + components: + - type: Transform + pos: 67.5,-15.5 + parent: 2 + - uid: 7304 + components: + - type: Transform + pos: 67.5,-16.5 + parent: 2 + - uid: 7495 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 2 + - uid: 7595 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 7597 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 + - uid: 7598 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 7599 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 +- proto: RemoteSignaller + entities: + - uid: 6684 + components: + - type: Transform + pos: 62.48387,33.688515 + parent: 2 +- proto: ReporterIDCard + entities: + - uid: 6681 + components: + - type: Transform + pos: 56.41406,29.638426 + parent: 2 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 1513 + components: + - type: Transform + pos: 42.5,0.5 + parent: 2 +- proto: SalvageMagnet + entities: + - uid: 6074 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 +- proto: Screen + entities: + - uid: 2617 + components: + - type: Transform + pos: 61.5,3.5 + parent: 2 + - uid: 4998 + components: + - type: Transform + pos: 45.5,22.5 + parent: 2 + - uid: 6085 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - uid: 6093 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 7409 + components: + - type: Transform + pos: 49.5,-12.5 + parent: 2 +- proto: SecurityTechFab + entities: + - uid: 1440 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 +- proto: SeedExtractor + entities: + - uid: 1407 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 2 + - uid: 6927 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 +- proto: SheetGlass10 + entities: + - uid: 1528 + components: + - type: Transform + pos: 46.57018,1.8738182 + parent: 2 + - uid: 1638 + components: + - type: Transform + pos: 29.226065,37.581303 + parent: 2 + - uid: 7562 + components: + - type: Transform + pos: 6.2713113,21.747766 + parent: 2 +- proto: SheetPlasteel10 + entities: + - uid: 1637 + components: + - type: Transform + pos: 28.358877,37.534428 + parent: 2 +- proto: SheetPlastic10 + entities: + - uid: 1527 + components: + - type: Transform + pos: 46.593616,3.4675682 + parent: 2 +- proto: SheetSteel1 + entities: + - uid: 8 + components: + - type: Transform + pos: 17.814768,49.458717 + parent: 2 + - uid: 7252 + components: + - type: Transform + pos: 17.439768,51.40403 + parent: 2 + - uid: 7253 + components: + - type: Transform + pos: 17.41633,48.755592 + parent: 2 +- proto: SheetSteel10 + entities: + - uid: 1512 + components: + - type: Transform + pos: 46.499866,5.1550684 + parent: 2 + - uid: 1626 + components: + - type: Transform + pos: 27.538565,37.534428 + parent: 2 +- proto: ShuttersNormal + entities: + - uid: 745 + components: + - type: Transform + pos: 3.5,29.5 + parent: 2 + - uid: 746 + components: + - type: Transform + pos: 5.5,29.5 + parent: 2 + - uid: 747 + components: + - type: Transform + pos: 3.5,25.5 + parent: 2 + - uid: 748 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 +- proto: ShuttersNormalOpen + entities: + - uid: 2387 + components: + - type: Transform + pos: 51.5,22.5 + parent: 2 + - uid: 2388 + components: + - type: Transform + pos: 52.5,22.5 + parent: 2 +- proto: SignAi + entities: + - uid: 485 + components: + - type: Transform + pos: 55.5,34.5 + parent: 2 + - uid: 6120 + components: + - type: Transform + pos: 39.5,49.5 + parent: 2 + - uid: 7236 + components: + - type: Transform + pos: 55.5,59.5 + parent: 2 +- proto: SignAiUpload + entities: + - uid: 4557 + components: + - type: Transform + pos: 29.5,49.5 + parent: 2 +- proto: SignalButton + entities: + - uid: 473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1258: + - Pressed: Toggle + 1257: + - Pressed: Toggle + 1256: + - Pressed: Toggle + 1254: + - Pressed: Toggle + - uid: 4819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,32.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1763: + - Pressed: Toggle + - uid: 6082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,27.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 746: + - Pressed: Toggle + 745: + - Pressed: Toggle + 747: + - Pressed: Toggle + 748: + - Pressed: Toggle +- proto: SignArmory + entities: + - uid: 1476 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 2 +- proto: SignAtmos + entities: + - uid: 963 + components: + - type: Transform + pos: 31.5,29.5 + parent: 2 + - uid: 1795 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 +- proto: SignBar + entities: + - uid: 1165 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 +- proto: SignBridge + entities: + - uid: 2505 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 + - uid: 2506 + components: + - type: Transform + pos: 52.5,33.5 + parent: 2 + - uid: 5036 + components: + - type: Transform + pos: 20.5,52.5 + parent: 2 +- proto: SignCans + entities: + - uid: 1686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,36.5 + parent: 2 +- proto: SignCargo + entities: + - uid: 1478 + components: + - type: Transform + pos: 16.5,23.5 + parent: 2 +- proto: SignChapel + entities: + - uid: 696 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 +- proto: SignChem + entities: + - uid: 511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,12.5 + parent: 2 + - uid: 6917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,8.5 + parent: 2 +- proto: SignConference + entities: + - uid: 2377 + components: + - type: Transform + pos: 53.5,28.5 + parent: 2 +- proto: SignCryo + entities: + - uid: 1166 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 +- proto: SignDirectionalAtmos + entities: + - uid: 7412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,17.5 + parent: 2 +- proto: SignDirectionalBar + entities: + - uid: 6174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,8.5 + parent: 2 + - uid: 7417 + components: + - type: Transform + pos: 40.5,24.5 + parent: 2 +- proto: SignDirectionalBridge + entities: + - uid: 6177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,8.9 + parent: 2 +- proto: SignDirectionalEng + entities: + - uid: 6175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,8.7 + parent: 2 + - uid: 7411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,17.7 + parent: 2 +- proto: SignDirectionalEvac + entities: + - uid: 2054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,17.5 + parent: 2 + - uid: 2055 + components: + - type: Transform + pos: 59.5,11.5 + parent: 2 + - uid: 2056 + components: + - type: Transform + pos: 37.5,3.5 + parent: 2 + - uid: 2057 + components: + - type: Transform + pos: 45.5,-3.5 + parent: 2 + - uid: 6155 + components: + - type: Transform + pos: 59.5,42.5 + parent: 2 + - uid: 6163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,17.5 + parent: 2 + - uid: 6164 + components: + - type: Transform + pos: 40.5,17.3 + parent: 2 +- proto: SignDirectionalMed + entities: + - uid: 6176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,8.3 + parent: 2 + - uid: 7416 + components: + - type: Transform + pos: 40.5,21.3 + parent: 2 +- proto: SignDirectionalSci + entities: + - uid: 7414 + components: + - type: Transform + pos: 40.5,21.7 + parent: 2 +- proto: SignDirectionalSec + entities: + - uid: 6178 + components: + - type: Transform + pos: 37.5,3.7 + parent: 2 + - uid: 7415 + components: + - type: Transform + pos: 40.5,21.5 + parent: 2 +- proto: SignDirectionalSupply + entities: + - uid: 7413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,17.3 + parent: 2 +- proto: SignDisposalSpace + entities: + - uid: 381 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 +- proto: SignEngineering + entities: + - uid: 1479 + components: + - type: Transform + pos: 34.5,20.5 + parent: 2 +- proto: SignEVA + entities: + - uid: 6994 + components: + - type: Transform + pos: 60.5,7.5 + parent: 2 +- proto: SignGravity + entities: + - uid: 1466 + components: + - type: Transform + pos: 28.5,39.5 + parent: 2 +- proto: SignHydro1 + entities: + - uid: 200 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 +- proto: SignLibrary + entities: + - uid: 5070 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 1481 + components: + - type: Transform + pos: 21.5,7.5 + parent: 2 + - uid: 1482 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 +- proto: SignMorgue + entities: + - uid: 427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,15.5 + parent: 2 +- proto: SignPrison + entities: + - uid: 1484 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 +- proto: SignRobo + entities: + - uid: 1559 + components: + - type: Transform + pos: 51.5,8.5 + parent: 2 +- proto: SignSalvage + entities: + - uid: 1485 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 +- proto: SignScience + entities: + - uid: 1486 + components: + - type: Transform + pos: 40.5,9.5 + parent: 2 + - uid: 1487 + components: + - type: Transform + pos: 43.5,14.5 + parent: 2 + - uid: 7163 + components: + - type: Transform + pos: 57.5,7.5 + parent: 2 +- proto: SignSecurity + entities: + - uid: 1345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,0.5 + parent: 2 +- proto: SignServer + entities: + - uid: 1517 + components: + - type: Transform + pos: 44.5,1.5 + parent: 2 +- proto: SignShipDock + entities: + - uid: 1968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-13.5 + parent: 2 + - uid: 2058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,3.5 + parent: 2 +- proto: SignTelecomms + entities: + - uid: 1299 + components: + - type: Transform + pos: 36.5,30.5 + parent: 2 +- proto: SignToolStorage + entities: + - uid: 423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,21.5 + parent: 2 + - uid: 1436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,18.5 + parent: 2 +- proto: SignVault + entities: + - uid: 2503 + components: + - type: Transform + pos: 52.5,38.5 + parent: 2 +- proto: Sink + entities: + - uid: 1501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,1.5 + parent: 2 +- proto: SinkStemlessWater + entities: + - uid: 1323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-7.5 + parent: 2 +- proto: SinkWide + entities: + - uid: 155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 2 + - uid: 164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-6.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 1631 + components: + - type: Transform + pos: 34.5,28.5 + parent: 2 + - uid: 1632 + components: + - type: Transform + pos: 34.5,29.5 + parent: 2 + - uid: 1852 + components: + - type: Transform + pos: 34.5,27.5 + parent: 2 + - uid: 1853 + components: + - type: Transform + pos: 34.5,26.5 + parent: 2 + - uid: 2626 + components: + - type: Transform + pos: 60.5,62.5 + parent: 2 + - uid: 6723 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 +- proto: Soap + entities: + - uid: 6971 + components: + - type: Transform + pos: 11.072422,-14.421486 + parent: 2 +- proto: SodaDispenser + entities: + - uid: 154 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 +- proto: SolarPanel + entities: + - uid: 2646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 2 + - uid: 2647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 2 + - uid: 2648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 2 + - uid: 2649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 2 + - uid: 2650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 2 + - uid: 2651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 2 + - uid: 2652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 2 + - uid: 2653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 2 + - uid: 2654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-13.5 + parent: 2 + - uid: 2655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 2 + - uid: 2656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 2 + - uid: 2657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-13.5 + parent: 2 + - uid: 2658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 2 + - uid: 2659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 2 + - uid: 2660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 2 + - uid: 2661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-15.5 + parent: 2 + - uid: 2662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-16.5 + parent: 2 + - uid: 2663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-17.5 + parent: 2 + - uid: 2664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 2 + - uid: 2665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 2 + - uid: 2666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 2 + - uid: 2667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 2 + - uid: 2668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 2 + - uid: 2669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 2 + - uid: 2702 + components: + - type: Transform + pos: 55.5,68.5 + parent: 2 + - uid: 2703 + components: + - type: Transform + pos: 56.5,68.5 + parent: 2 + - uid: 2704 + components: + - type: Transform + pos: 59.5,68.5 + parent: 2 + - uid: 2705 + components: + - type: Transform + pos: 60.5,68.5 + parent: 2 + - uid: 2706 + components: + - type: Transform + pos: 61.5,68.5 + parent: 2 + - uid: 2707 + components: + - type: Transform + pos: 63.5,68.5 + parent: 2 + - uid: 2708 + components: + - type: Transform + pos: 64.5,68.5 + parent: 2 + - uid: 2709 + components: + - type: Transform + pos: 65.5,68.5 + parent: 2 + - uid: 2710 + components: + - type: Transform + pos: 53.5,68.5 + parent: 2 + - uid: 2711 + components: + - type: Transform + pos: 52.5,68.5 + parent: 2 + - uid: 2712 + components: + - type: Transform + pos: 51.5,68.5 + parent: 2 + - uid: 2713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,66.5 + parent: 2 + - uid: 2714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,66.5 + parent: 2 + - uid: 2715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,66.5 + parent: 2 + - uid: 2716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,66.5 + parent: 2 + - uid: 2717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,66.5 + parent: 2 + - uid: 2718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,66.5 + parent: 2 + - uid: 2719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,66.5 + parent: 2 + - uid: 2720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,66.5 + parent: 2 + - uid: 2721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,66.5 + parent: 2 + - uid: 2722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,66.5 + parent: 2 + - uid: 2723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,66.5 + parent: 2 + - uid: 2724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,66.5 + parent: 2 + - uid: 2735 + components: + - type: Transform + pos: 57.5,68.5 + parent: 2 +- proto: SolarTracker + entities: + - uid: 2697 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 + - uid: 2700 + components: + - type: Transform + pos: 58.5,69.5 + parent: 2 +- proto: SpaceCash10000 + entities: + - uid: 2499 + components: + - type: Transform + pos: 49.507584,42.536114 + parent: 2 +- proto: SpawnMobCat + entities: + - uid: 6919 + components: + - type: Transform + pos: 32.5,15.5 + parent: 2 +- proto: SpawnMobCorgi + entities: + - uid: 562 + components: + - type: Transform + pos: 43.5,29.5 + parent: 2 +- proto: SpawnMobFoxRenault + entities: + - uid: 1288 + components: + - type: Transform + pos: 59.5,24.5 + parent: 2 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 6937 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 +- proto: SpawnMobMouse + entities: + - uid: 7023 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 7024 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 +- proto: SpawnMobShiva + entities: + - uid: 4815 + components: + - type: Transform + pos: 43.5,-9.5 + parent: 2 +- proto: SpawnMobSmile + entities: + - uid: 7555 + components: + - type: Transform + pos: 54.5,1.5 + parent: 2 +- proto: SpawnPointAtmos + entities: + - uid: 6033 + components: + - type: Transform + pos: 27.5,30.5 + parent: 2 + - uid: 6658 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 +- proto: SpawnPointBartender + entities: + - uid: 6027 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 +- proto: SpawnPointBorg + entities: + - uid: 4744 + components: + - type: Transform + pos: 31.5,55.5 + parent: 2 + - uid: 4745 + components: + - type: Transform + pos: 33.5,55.5 + parent: 2 +- proto: SpawnPointBotanist + entities: + - uid: 6028 + components: + - type: Transform + pos: -3.5,6.5 + parent: 2 + - uid: 6029 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 +- proto: SpawnPointCaptain + entities: + - uid: 4938 + components: + - type: Transform + pos: 61.5,31.5 + parent: 2 +- proto: SpawnPointCargoTechnician + entities: + - uid: 4987 + components: + - type: Transform + pos: 15.5,21.5 + parent: 2 + - uid: 6086 + components: + - type: Transform + pos: 15.5,22.5 + parent: 2 +- proto: SpawnPointChaplain + entities: + - uid: 7000 + components: + - type: Transform + pos: -2.5,18.5 + parent: 2 +- proto: SpawnPointChef + entities: + - uid: 6030 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 +- proto: SpawnPointChemist + entities: + - uid: 6039 + components: + - type: Transform + pos: 28.5,11.5 + parent: 2 +- proto: SpawnPointChiefEngineer + entities: + - uid: 4814 + components: + - type: Transform + pos: 61.5,30.5 + parent: 2 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 4794 + components: + - type: Transform + pos: 58.5,32.5 + parent: 2 +- proto: SpawnPointClown + entities: + - uid: 5173 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 +- proto: SpawnPointDetective + entities: + - uid: 6055 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 2 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 4793 + components: + - type: Transform + pos: 61.5,32.5 + parent: 2 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 4811 + components: + - type: Transform + pos: 58.5,30.5 + parent: 2 +- proto: SpawnPointJanitor + entities: + - uid: 6966 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 824 + components: + - type: Transform + pos: 62.5,50.5 + parent: 2 + - uid: 2502 + components: + - type: Transform + pos: 62.5,49.5 + parent: 2 + - uid: 4748 + components: + - type: Transform + pos: 62.5,48.5 + parent: 2 + - uid: 5975 + components: + - type: Transform + pos: 62.5,47.5 + parent: 2 +- proto: SpawnPointLawyer + entities: + - uid: 6058 + components: + - type: Transform + pos: 57.5,18.5 + parent: 2 +- proto: SpawnPointLibrarian + entities: + - uid: 5170 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 1393 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 + - uid: 6041 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 +- proto: SpawnPointMedicalIntern + entities: + - uid: 2610 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 + - uid: 4922 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 +- proto: SpawnPointObserver + entities: + - uid: 6056 + components: + - type: Transform + pos: 29.5,6.5 + parent: 2 +- proto: SpawnPointParamedic + entities: + - uid: 6042 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 +- proto: SpawnPointPassenger + entities: + - uid: 5172 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 + - uid: 5174 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 + - uid: 6067 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 2 + - uid: 6706 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 2 + - uid: 7025 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 2 +- proto: SpawnPointQuartermaster + entities: + - uid: 6043 + components: + - type: Transform + pos: 59.5,32.5 + parent: 2 +- proto: SpawnPointResearchAssistant + entities: + - uid: 5016 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - uid: 5732 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 +- proto: SpawnPointResearchDirector + entities: + - uid: 6045 + components: + - type: Transform + pos: 54.5,11.5 + parent: 2 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 6060 + components: + - type: Transform + pos: 14.5,30.5 + parent: 2 + - uid: 6061 + components: + - type: Transform + pos: 12.5,29.5 + parent: 2 +- proto: SpawnPointScientist + entities: + - uid: 5877 + components: + - type: Transform + pos: 50.5,7.5 + parent: 2 + - uid: 6046 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - uid: 6048 + components: + - type: Transform + pos: 50.5,6.5 + parent: 2 +- proto: SpawnPointSecurityCadet + entities: + - uid: 5734 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 2 + - uid: 5736 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 5407 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 2 + - uid: 5843 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 2 +- proto: SpawnPointStationEngineer + entities: + - uid: 6035 + components: + - type: Transform + pos: 38.5,35.5 + parent: 2 + - uid: 6036 + components: + - type: Transform + pos: 35.5,35.5 + parent: 2 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 4923 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 4924 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 +- proto: SpawnPointWarden + entities: + - uid: 7496 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 6968 + components: + - type: Transform + pos: 11.650547,-14.358986 + parent: 2 + - uid: 6969 + components: + - type: Transform + pos: 11.509922,-14.499611 + parent: 2 +- proto: StasisBed + entities: + - uid: 563 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 + - uid: 564 + components: + - type: Transform + pos: 9.5,9.5 + parent: 2 + - uid: 566 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 +- proto: StationAiUploadComputer + entities: + - uid: 4556 + components: + - type: Transform + pos: 32.5,54.5 + parent: 2 +- proto: StationEfficiencyCircuitBoard + entities: + - uid: 4740 + components: + - type: Transform + pos: 32.538002,52.525402 + parent: 2 +- proto: StationMap + entities: + - uid: 5900 + components: + - type: Transform + pos: 45.5,-12.5 + parent: 2 + - uid: 6165 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 6166 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 6167 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 6169 + components: + - type: Transform + pos: 62.5,3.5 + parent: 2 + - uid: 6170 + components: + - type: Transform + pos: 59.5,38.5 + parent: 2 + - uid: 6172 + components: + - type: Transform + pos: 38.5,24.5 + parent: 2 + - uid: 6173 + components: + - type: Transform + pos: 24.5,20.5 + parent: 2 + - uid: 6314 + components: + - type: Transform + pos: 50.5,18.5 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 1322 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 2780 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 + - uid: 2785 + components: + - type: Transform + pos: 10.5,20.5 + parent: 2 + - uid: 2787 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 2789 + components: + - type: Transform + pos: 59.5,56.5 + parent: 2 + - uid: 4563 + components: + - type: Transform + pos: 32.5,48.5 + parent: 2 +- proto: SuitStorageAtmos + entities: + - uid: 6656 + components: + - type: Transform + pos: 16.5,39.5 + parent: 2 + - uid: 6657 + components: + - type: Transform + pos: 17.5,39.5 + parent: 2 +- proto: SuitStorageCE + entities: + - uid: 6660 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 +- proto: SuitStorageEngi + entities: + - uid: 693 + components: + - type: Transform + pos: 35.5,31.5 + parent: 2 + - uid: 6659 + components: + - type: Transform + pos: 36.5,31.5 + parent: 2 +- proto: SuitStorageEVA + entities: + - uid: 6982 + components: + - type: Transform + pos: 62.5,8.5 + parent: 2 + - uid: 6983 + components: + - type: Transform + pos: 62.5,7.5 + parent: 2 + - uid: 6984 + components: + - type: Transform + pos: 62.5,6.5 + parent: 2 +- proto: SuitStorageSec + entities: + - uid: 410 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 2 + - uid: 1438 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 2 +- proto: SurveillanceCameraCommand + entities: + - uid: 5164 + components: + - type: MetaData + name: Bridge Hallway + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,34.5 + parent: 2 + - uid: 6578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,25.5 + parent: 2 +- proto: SurveillanceCameraEngineering + entities: + - uid: 6597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,42.5 + parent: 2 + - uid: 6598 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 +- proto: SurveillanceCameraGeneral + entities: + - uid: 6595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,10.5 + parent: 2 + - uid: 6596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,23.5 + parent: 2 + - uid: 6599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,19.5 + parent: 2 + - uid: 6600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,17.5 + parent: 2 + - uid: 6602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-2.5 + parent: 2 + - uid: 6611 + components: + - type: MetaData + name: Outside AI Chamber + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,52.5 + parent: 2 + - uid: 6612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,56.5 + parent: 2 + - uid: 6613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,45.5 + parent: 2 + - uid: 6614 + components: + - type: MetaData + name: AI Hallway C + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,56.5 + parent: 2 + - uid: 6615 + components: + - type: MetaData + name: AI Hallway B + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,56.5 + parent: 2 + - uid: 6616 + components: + - type: MetaData + name: AI Hallway A + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,57.5 + parent: 2 +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 6350 + components: + - type: Transform + pos: 45.5,47.5 + parent: 2 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 6344 + components: + - type: Transform + pos: 43.5,47.5 + parent: 2 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 6346 + components: + - type: Transform + pos: 45.5,48.5 + parent: 2 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 6345 + components: + - type: Transform + pos: 47.5,48.5 + parent: 2 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 6348 + components: + - type: Transform + pos: 47.5,47.5 + parent: 2 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 6343 + components: + - type: Transform + pos: 50.5,50.5 + parent: 2 +- proto: SurveillanceCameraRouterService + entities: + - uid: 6349 + components: + - type: Transform + pos: 49.5,47.5 + parent: 2 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 6347 + components: + - type: Transform + pos: 49.5,48.5 + parent: 2 +- proto: SurveillanceCameraSecurity + entities: + - uid: 5737 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 6603 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 2 + - uid: 6604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-8.5 + parent: 2 + - uid: 6605 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - uid: 6607 + components: + - type: Transform + pos: 28.5,-12.5 + parent: 2 +- proto: SurveillanceCameraService + entities: + - uid: 6608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,7.5 + parent: 2 + - uid: 6609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,0.5 + parent: 2 + - uid: 6610 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 +- proto: SurveillanceCameraWirelessRouterConstructed + entities: + - uid: 6351 + components: + - type: Transform + pos: 50.5,51.5 + parent: 2 +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 6352 + components: + - type: Transform + pos: 43.5,48.5 + parent: 2 +- proto: SyndicateMicrowave + entities: + - uid: 1499 + components: + - type: Transform + pos: 29.5,2.5 + parent: 2 +- proto: Table + entities: + - uid: 31 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - uid: 32 + components: + - type: Transform + pos: 11.5,2.5 + parent: 2 + - uid: 66 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 68 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 644 + components: + - type: Transform + pos: 26.5,10.5 + parent: 2 + - uid: 645 + components: + - type: Transform + pos: 27.5,10.5 + parent: 2 + - uid: 807 + components: + - type: Transform + pos: 29.5,2.5 + parent: 2 + - uid: 1215 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - uid: 1328 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - uid: 1489 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: 30.5,2.5 + parent: 2 + - uid: 1633 + components: + - type: Transform + pos: 27.5,37.5 + parent: 2 + - uid: 1634 + components: + - type: Transform + pos: 28.5,37.5 + parent: 2 + - uid: 1635 + components: + - type: Transform + pos: 29.5,37.5 + parent: 2 + - uid: 1636 + components: + - type: Transform + pos: 30.5,37.5 + parent: 2 + - uid: 2006 + components: + - type: Transform + pos: 56.5,14.5 + parent: 2 + - uid: 2007 + components: + - type: Transform + pos: 57.5,14.5 + parent: 2 + - uid: 2008 + components: + - type: Transform + pos: 59.5,14.5 + parent: 2 + - uid: 2010 + components: + - type: Transform + pos: 62.5,12.5 + parent: 2 + - uid: 2011 + components: + - type: Transform + pos: 61.5,12.5 + parent: 2 + - uid: 2012 + components: + - type: Transform + pos: 56.5,18.5 + parent: 2 + - uid: 2014 + components: + - type: Transform + pos: 57.5,17.5 + parent: 2 + - uid: 2015 + components: + - type: Transform + pos: 58.5,17.5 + parent: 2 + - uid: 2246 + components: + - type: Transform + pos: 45.5,21.5 + parent: 2 + - uid: 2247 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 2248 + components: + - type: Transform + pos: 47.5,21.5 + parent: 2 + - uid: 2265 + components: + - type: Transform + pos: 45.5,26.5 + parent: 2 + - uid: 2284 + components: + - type: Transform + pos: 44.5,27.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + pos: 43.5,27.5 + parent: 2 + - uid: 2401 + components: + - type: Transform + pos: 60.5,25.5 + parent: 2 + - uid: 2763 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - uid: 3313 + components: + - type: Transform + pos: 58.5,38.5 + parent: 2 + - uid: 4144 + components: + - type: Transform + pos: 46.5,5.5 + parent: 2 + - uid: 4601 + components: + - type: Transform + pos: 34.5,51.5 + parent: 2 + - uid: 4729 + components: + - type: Transform + pos: 34.5,52.5 + parent: 2 + - uid: 4731 + components: + - type: Transform + pos: 30.5,52.5 + parent: 2 + - uid: 4732 + components: + - type: Transform + pos: 30.5,51.5 + parent: 2 + - uid: 4733 + components: + - type: Transform + pos: 32.5,52.5 + parent: 2 + - uid: 4735 + components: + - type: Transform + pos: 32.5,51.5 + parent: 2 + - uid: 4736 + components: + - type: Transform + pos: 30.5,48.5 + parent: 2 + - uid: 4844 + components: + - type: Transform + pos: 46.5,3.5 + parent: 2 + - uid: 5224 + components: + - type: Transform + pos: 46.5,2.5 + parent: 2 + - uid: 5306 + components: + - type: Transform + pos: 46.5,1.5 + parent: 2 + - uid: 5544 + components: + - type: Transform + pos: 56.5,17.5 + parent: 2 + - uid: 5850 + components: + - type: Transform + pos: 46.5,4.5 + parent: 2 + - uid: 6053 + components: + - type: Transform + pos: 47.5,19.5 + parent: 2 + - uid: 6123 + components: + - type: Transform + pos: 56.5,62.5 + parent: 2 + - uid: 6207 + components: + - type: Transform + pos: 63.5,34.5 + parent: 2 + - uid: 6662 + components: + - type: Transform + pos: 62.5,34.5 + parent: 2 + - uid: 6667 + components: + - type: Transform + pos: 63.5,29.5 + parent: 2 + - uid: 6669 + components: + - type: Transform + pos: 63.5,33.5 + parent: 2 + - uid: 6674 + components: + - type: Transform + pos: 63.5,28.5 + parent: 2 + - uid: 6676 + components: + - type: Transform + pos: 62.5,33.5 + parent: 2 + - uid: 6679 + components: + - type: Transform + pos: 56.5,28.5 + parent: 2 + - uid: 6680 + components: + - type: Transform + pos: 56.5,29.5 + parent: 2 + - uid: 6708 + components: + - type: Transform + pos: 61.5,28.5 + parent: 2 + - uid: 6912 + components: + - type: Transform + pos: 32.5,9.5 + parent: 2 + - uid: 6913 + components: + - type: Transform + pos: 33.5,9.5 + parent: 2 + - uid: 6914 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 6964 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 2 + - uid: 6965 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - uid: 6999 + components: + - type: Transform + pos: 46.5,-17.5 + parent: 2 + - uid: 7026 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 2 + - uid: 7027 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 2 + - uid: 7028 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 2 + - uid: 7029 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 2 + - uid: 7285 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - uid: 7292 + components: + - type: Transform + pos: 16.5,14.5 + parent: 2 + - uid: 7320 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - uid: 7321 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 + - uid: 7322 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - uid: 7539 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 2 + - uid: 7545 + components: + - type: Transform + pos: 48.5,3.5 + parent: 2 + - uid: 7546 + components: + - type: Transform + pos: 48.5,2.5 + parent: 2 + - uid: 7547 + components: + - type: Transform + pos: 48.5,1.5 + parent: 2 + - uid: 7551 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 7552 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 7561 + components: + - type: Transform + pos: 6.5,21.5 + parent: 2 + - uid: 7566 + components: + - type: Transform + pos: 27.5,35.5 + parent: 2 +- proto: TableBrass + entities: + - uid: 2379 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 2425 + components: + - type: Transform + pos: 59.5,23.5 + parent: 2 + - uid: 2426 + components: + - type: Transform + pos: 59.5,22.5 + parent: 2 + - uid: 6281 + components: + - type: Transform + pos: 53.5,20.5 + parent: 2 +- proto: TableCarpet + entities: + - uid: 134 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 2 + - uid: 135 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 2 + - uid: 136 + components: + - type: Transform + pos: 17.5,0.5 + parent: 2 + - uid: 137 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 +- proto: TableCounterMetal + entities: + - uid: 61 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 2 + - uid: 62 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - uid: 63 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 2 + - uid: 64 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - uid: 77 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 + - uid: 78 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - uid: 80 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 + - uid: 156 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 159 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - uid: 198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 2 + - uid: 509 + components: + - type: Transform + pos: 25.5,8.5 + parent: 2 + - uid: 510 + components: + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 538 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: 16.5,20.5 + parent: 2 + - uid: 699 + components: + - type: Transform + pos: 16.5,22.5 + parent: 2 + - uid: 700 + components: + - type: Transform + pos: 16.5,21.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: 37.5,2.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 2 + - uid: 2629 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 + - uid: 6920 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 +- proto: TableFancyBlue + entities: + - uid: 2278 + components: + - type: Transform + pos: 42.5,29.5 + parent: 2 +- proto: TableGlass + entities: + - uid: 649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,15.5 + parent: 2 + - uid: 650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,16.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,14.5 + parent: 2 + - uid: 1545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,13.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,31.5 + parent: 2 + - uid: 1612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,32.5 + parent: 2 + - uid: 1613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,33.5 + parent: 2 + - uid: 2486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,42.5 + parent: 2 + - uid: 2487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,41.5 + parent: 2 + - uid: 2488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,42.5 + parent: 2 + - uid: 2490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,42.5 + parent: 2 + - uid: 2491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,42.5 + parent: 2 + - uid: 2492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,41.5 + parent: 2 + - uid: 2493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,42.5 + parent: 2 + - uid: 2494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,42.5 + parent: 2 + - uid: 4958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,41.5 + parent: 2 + - uid: 6089 + components: + - type: Transform + pos: 10.5,26.5 + parent: 2 + - uid: 6127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,11.5 + parent: 2 + - uid: 6332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,13.5 + parent: 2 + - uid: 6333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 2 + - uid: 6334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,9.5 + parent: 2 +- proto: TableWood + entities: + - uid: 6675 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 + - uid: 6933 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 2 + - uid: 7325 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 2 + - uid: 7326 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 2 +- proto: TegCenter + entities: + - uid: 1691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,36.5 + parent: 2 +- proto: TegCirculator + entities: + - uid: 1918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,36.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' + - uid: 1923 + components: + - type: Transform + pos: 16.5,36.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' +- proto: TelecomServerFilledCargo + entities: + - uid: 1589 + components: + - type: Transform + pos: 38.5,26.5 + parent: 2 +- proto: TelecomServerFilledCommand + entities: + - uid: 1582 + components: + - type: Transform + pos: 38.5,27.5 + parent: 2 +- proto: TelecomServerFilledCommon + entities: + - uid: 1590 + components: + - type: Transform + pos: 38.5,28.5 + parent: 2 +- proto: TelecomServerFilledEngineering + entities: + - uid: 1585 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 +- proto: TelecomServerFilledMedical + entities: + - uid: 1584 + components: + - type: Transform + pos: 36.5,26.5 + parent: 2 +- proto: TelecomServerFilledScience + entities: + - uid: 1588 + components: + - type: Transform + pos: 36.5,27.5 + parent: 2 +- proto: TelecomServerFilledSecurity + entities: + - uid: 1583 + components: + - type: Transform + pos: 36.5,28.5 + parent: 2 +- proto: TelecomServerFilledService + entities: + - uid: 1587 + components: + - type: Transform + pos: 36.5,29.5 + parent: 2 +- proto: ToolboxArtisticFilled + entities: + - uid: 1388 + components: + - type: Transform + pos: 46.090736,21.615948 + parent: 2 +- proto: ToolboxElectricalFilled + entities: + - uid: 2250 + components: + - type: Transform + pos: 45.500717,21.796711 + parent: 2 + - uid: 2258 + components: + - type: Transform + pos: 45.641342,21.515461 + parent: 2 +- proto: ToolboxEmergencyFilled + entities: + - uid: 2261 + components: + - type: Transform + pos: 47.492905,21.820148 + parent: 2 + - uid: 2262 + components: + - type: Transform + pos: 47.586655,21.492023 + parent: 2 +- proto: ToolboxGoldFilled + entities: + - uid: 2485 + components: + - type: Transform + pos: 53.538834,41.64549 + parent: 2 +- proto: ToolboxMechanicalFilled + entities: + - uid: 2259 + components: + - type: Transform + pos: 46.578842,21.796711 + parent: 2 + - uid: 2260 + components: + - type: Transform + pos: 46.69603,21.421711 + parent: 2 +- proto: ToxinChemistryBottle + entities: + - uid: 6709 + components: + - type: Transform + pos: 61.371002,28.763218 + parent: 2 +- proto: ToyFigurineCaptain + entities: + - uid: 2413 + components: + - type: Transform + pos: 51.64779,20.686481 + parent: 2 +- proto: ToyFigurineHeadOfPersonnel + entities: + - uid: 2281 + components: + - type: Transform + pos: 42.59651,29.715763 + parent: 2 +- proto: TritiumCanister + entities: + - uid: 1681 + components: + - type: Transform + pos: 23.5,37.5 + parent: 2 + - uid: 1682 + components: + - type: Transform + pos: 23.5,36.5 + parent: 2 +- proto: TwoWayLever + entities: + - uid: 4895 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 361: + - Left: Forward + - Right: Forward + - Middle: Off + 360: + - Left: Forward + - Right: Forward + - Middle: Off + 358: + - Left: Forward + - Right: Forward + - Middle: Off + 357: + - Left: Forward + - Right: Forward + - Middle: Off + 374: + - Left: Forward + - Right: Forward + - Middle: Off + 7602: + - Left: Forward + - Right: Forward + - Middle: Off + 7600: + - Left: Open + - Middle: Close + 1729: + - Left: Forward + - Right: Forward + - Middle: Off + 382: + - Left: Forward + - Right: Forward + - Middle: Off + 359: + - Left: Forward + - Right: Forward + - Middle: Off + 7601: + - Right: Open + - Middle: Close + - uid: 7329 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 263: + - Left: Forward + - Right: Forward + - Middle: Off + 262: + - Left: Forward + - Right: Forward + - Middle: Off + 261: + - Left: Forward + - Right: Forward + - Middle: Off + 241: + - Left: Forward + - Right: Forward + - Middle: Off + 264: + - Left: Forward + - Right: Forward + - Middle: Off + 265: + - Left: Forward + - Right: Forward + - Middle: Off + 7328: + - Left: Open + - Middle: Close + 7327: + - Right: Open + - Middle: Close +- proto: UniformPrinter + entities: + - uid: 2279 + components: + - type: Transform + pos: 44.5,29.5 + parent: 2 +- proto: Vaccinator + entities: + - uid: 6908 + components: + - type: Transform + pos: 33.5,11.5 + parent: 2 +- proto: VendingBarDrobe + entities: + - uid: 82 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 +- proto: VendingMachineBooze + entities: + - uid: 560 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 +- proto: VendingMachineCart + entities: + - uid: 2280 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 +- proto: VendingMachineChapel + entities: + - uid: 2799 + components: + - type: Transform + pos: -1.5,18.5 + parent: 2 +- proto: VendingMachineChemDrobe + entities: + - uid: 642 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 +- proto: VendingMachineChemicals + entities: + - uid: 636 + components: + - type: Transform + pos: 29.5,11.5 + parent: 2 +- proto: VendingMachineClothing + entities: + - uid: 7008 + components: + - type: Transform + pos: 58.5,53.5 + parent: 2 +- proto: VendingMachineDinnerware + entities: + - uid: 166 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 +- proto: VendingMachineDiscount + entities: + - uid: 6721 + components: + - type: Transform + pos: 30.5,32.5 + parent: 2 +- proto: VendingMachineEngiDrobe + entities: + - uid: 1598 + components: + - type: Transform + pos: 37.5,40.5 + parent: 2 +- proto: VendingMachineEngivend + entities: + - uid: 1569 + components: + - type: Transform + pos: 37.5,41.5 + parent: 2 +- proto: VendingMachineGames + entities: + - uid: 7590 + components: + - type: Transform + pos: 20.5,2.5 + parent: 2 +- proto: VendingMachineHydrobe + entities: + - uid: 201 + components: + - type: Transform + pos: -5.5,7.5 + parent: 2 +- proto: VendingMachineJaniDrobe + entities: + - uid: 5870 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 +- proto: VendingMachineMedical + entities: + - uid: 635 + components: + - type: Transform + pos: 9.5,16.5 + parent: 2 +- proto: VendingMachineMediDrobe + entities: + - uid: 1274 + components: + - type: Transform + pos: 17.5,16.5 + parent: 2 +- proto: VendingMachineRobotics + entities: + - uid: 1557 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 +- proto: VendingMachineSalvage + entities: + - uid: 6079 + components: + - type: Transform + pos: 12.5,31.5 + parent: 2 +- proto: VendingMachineSciDrobe + entities: + - uid: 1536 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 +- proto: VendingMachineSec + entities: + - uid: 1494 + components: + - type: Transform + pos: 25.5,2.5 + parent: 2 +- proto: VendingMachineSecDrobe + entities: + - uid: 1493 + components: + - type: Transform + pos: 24.5,2.5 + parent: 2 +- proto: VendingMachineSeeds + entities: + - uid: 202 + components: + - type: Transform + pos: -4.5,7.5 + parent: 2 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 1416 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 +- proto: VendingMachineSustenance + entities: + - uid: 1320 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 2 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 1623 + components: + - type: Transform + pos: 35.5,37.5 + parent: 2 + - uid: 1624 + components: + - type: Transform + pos: 36.5,37.5 + parent: 2 + - uid: 1625 + components: + - type: Transform + pos: 37.5,37.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 6980 + components: + - type: Transform + pos: 61.5,10.5 + parent: 2 + - uid: 6981 + components: + - type: Transform + pos: 62.5,10.5 + parent: 2 + - uid: 7560 + components: + - type: Transform + pos: 6.5,32.5 + parent: 2 +- proto: VendingMachineTheater + entities: + - uid: 5964 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 2 +- proto: VendingMachineVendomat + entities: + - uid: 1535 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 + - uid: 2245 + components: + - type: Transform + pos: 41.5,19.5 + parent: 2 +- proto: VendingMachineWinter + entities: + - uid: 697 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 +- proto: VendingMachineYouTool + entities: + - uid: 1568 + components: + - type: Transform + pos: 37.5,42.5 + parent: 2 + - uid: 2244 + components: + - type: Transform + pos: 41.5,20.5 + parent: 2 +- proto: WallReinforced + entities: + - uid: 174 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 175 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 177 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: -1.5,8.5 + parent: 2 + - uid: 179 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 181 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 185 + components: + - type: Transform + pos: -6.5,6.5 + parent: 2 + - uid: 186 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 187 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 188 + components: + - type: Transform + pos: -4.5,4.5 + parent: 2 + - uid: 189 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 + - uid: 192 + components: + - type: Transform + pos: -1.5,4.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: -0.5,4.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - uid: 195 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - uid: 758 + components: + - type: Transform + pos: 10.5,34.5 + parent: 2 + - uid: 775 + components: + - type: Transform + pos: 16.5,33.5 + parent: 2 + - uid: 776 + components: + - type: Transform + pos: 15.5,33.5 + parent: 2 + - uid: 777 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 + - uid: 778 + components: + - type: Transform + pos: 13.5,33.5 + parent: 2 + - uid: 779 + components: + - type: Transform + pos: 12.5,33.5 + parent: 2 + - uid: 780 + components: + - type: Transform + pos: 11.5,33.5 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: 10.5,33.5 + parent: 2 + - uid: 782 + components: + - type: Transform + pos: 10.5,35.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: 10.5,37.5 + parent: 2 + - uid: 785 + components: + - type: Transform + pos: 10.5,38.5 + parent: 2 + - uid: 858 + components: + - type: Transform + pos: 41.5,36.5 + parent: 2 + - uid: 861 + components: + - type: Transform + pos: 40.5,39.5 + parent: 2 + - uid: 863 + components: + - type: Transform + pos: 40.5,41.5 + parent: 2 + - uid: 865 + components: + - type: Transform + pos: 41.5,40.5 + parent: 2 + - uid: 866 + components: + - type: Transform + pos: 41.5,39.5 + parent: 2 + - uid: 871 + components: + - type: Transform + pos: 38.5,36.5 + parent: 2 + - uid: 873 + components: + - type: Transform + pos: 35.5,36.5 + parent: 2 + - uid: 874 + components: + - type: Transform + pos: 36.5,36.5 + parent: 2 + - uid: 876 + components: + - type: Transform + pos: 32.5,36.5 + parent: 2 + - uid: 877 + components: + - type: Transform + pos: 31.5,36.5 + parent: 2 + - uid: 878 + components: + - type: Transform + pos: 30.5,36.5 + parent: 2 + - uid: 880 + components: + - type: Transform + pos: 29.5,36.5 + parent: 2 + - uid: 881 + components: + - type: Transform + pos: 27.5,36.5 + parent: 2 + - uid: 883 + components: + - type: Transform + pos: 26.5,37.5 + parent: 2 + - uid: 884 + components: + - type: Transform + pos: 26.5,38.5 + parent: 2 + - uid: 885 + components: + - type: Transform + pos: 26.5,39.5 + parent: 2 + - uid: 886 + components: + - type: Transform + pos: 26.5,40.5 + parent: 2 + - uid: 888 + components: + - type: Transform + pos: 26.5,42.5 + parent: 2 + - uid: 891 + components: + - type: Transform + pos: 16.5,42.5 + parent: 2 + - uid: 893 + components: + - type: Transform + pos: 17.5,43.5 + parent: 2 + - uid: 896 + components: + - type: Transform + pos: 20.5,43.5 + parent: 2 + - uid: 897 + components: + - type: Transform + pos: 21.5,43.5 + parent: 2 + - uid: 898 + components: + - type: Transform + pos: 22.5,43.5 + parent: 2 + - uid: 899 + components: + - type: Transform + pos: 23.5,43.5 + parent: 2 + - uid: 902 + components: + - type: Transform + pos: 27.5,43.5 + parent: 2 + - uid: 909 + components: + - type: Transform + pos: 41.5,42.5 + parent: 2 + - uid: 910 + components: + - type: Transform + pos: 40.5,42.5 + parent: 2 + - uid: 911 + components: + - type: Transform + pos: 41.5,43.5 + parent: 2 + - uid: 913 + components: + - type: Transform + pos: 38.5,43.5 + parent: 2 + - uid: 914 + components: + - type: Transform + pos: 37.5,43.5 + parent: 2 + - uid: 915 + components: + - type: Transform + pos: 36.5,43.5 + parent: 2 + - uid: 916 + components: + - type: Transform + pos: 35.5,43.5 + parent: 2 + - uid: 917 + components: + - type: Transform + pos: 34.5,43.5 + parent: 2 + - uid: 922 + components: + - type: Transform + pos: 48.5,43.5 + parent: 2 + - uid: 923 + components: + - type: Transform + pos: 48.5,42.5 + parent: 2 + - uid: 926 + components: + - type: Transform + pos: 48.5,39.5 + parent: 2 + - uid: 927 + components: + - type: Transform + pos: 48.5,38.5 + parent: 2 + - uid: 928 + components: + - type: Transform + pos: 48.5,37.5 + parent: 2 + - uid: 930 + components: + - type: Transform + pos: 48.5,31.5 + parent: 2 + - uid: 931 + components: + - type: Transform + pos: 48.5,32.5 + parent: 2 + - uid: 933 + components: + - type: Transform + pos: 48.5,34.5 + parent: 2 + - uid: 934 + components: + - type: Transform + pos: 48.5,35.5 + parent: 2 + - uid: 936 + components: + - type: Transform + pos: 47.5,30.5 + parent: 2 + - uid: 938 + components: + - type: Transform + pos: 44.5,30.5 + parent: 2 + - uid: 939 + components: + - type: Transform + pos: 43.5,30.5 + parent: 2 + - uid: 940 + components: + - type: Transform + pos: 42.5,30.5 + parent: 2 + - uid: 948 + components: + - type: Transform + pos: 39.5,30.5 + parent: 2 + - uid: 951 + components: + - type: Transform + pos: 35.5,23.5 + parent: 2 + - uid: 952 + components: + - type: Transform + pos: 35.5,24.5 + parent: 2 + - uid: 953 + components: + - type: Transform + pos: 35.5,25.5 + parent: 2 + - uid: 954 + components: + - type: Transform + pos: 36.5,25.5 + parent: 2 + - uid: 955 + components: + - type: Transform + pos: 37.5,25.5 + parent: 2 + - uid: 961 + components: + - type: Transform + pos: 39.5,28.5 + parent: 2 + - uid: 962 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 + - uid: 986 + components: + - type: Transform + pos: 39.5,2.5 + parent: 2 + - uid: 989 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 991 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 994 + components: + - type: Transform + pos: 41.5,2.5 + parent: 2 + - uid: 996 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 997 + components: + - type: Transform + pos: 35.5,3.5 + parent: 2 + - uid: 999 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: 32.5,3.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + pos: 32.5,2.5 + parent: 2 + - uid: 1002 + components: + - type: Transform + pos: 32.5,1.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 2 + - uid: 1008 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 2 + - uid: 1025 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - uid: 1028 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 2 + - uid: 1030 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + pos: 56.5,5.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + pos: 41.5,-8.5 + parent: 2 + - uid: 1034 + components: + - type: Transform + pos: 40.5,-8.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: 42.5,-8.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + pos: 43.5,-8.5 + parent: 2 + - uid: 1037 + components: + - type: Transform + pos: 44.5,-8.5 + parent: 2 + - uid: 1038 + components: + - type: Transform + pos: 45.5,-8.5 + parent: 2 + - uid: 1039 + components: + - type: Transform + pos: 45.5,-7.5 + parent: 2 + - uid: 1040 + components: + - type: Transform + pos: 45.5,-6.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + pos: 45.5,-5.5 + parent: 2 + - uid: 1047 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 2 + - uid: 1048 + components: + - type: Transform + pos: 40.5,-3.5 + parent: 2 + - uid: 1049 + components: + - type: Transform + pos: 39.5,-3.5 + parent: 2 + - uid: 1184 + components: + - type: Transform + pos: 47.5,3.5 + parent: 2 + - uid: 1185 + components: + - type: Transform + pos: 47.5,2.5 + parent: 2 + - uid: 1186 + components: + - type: Transform + pos: 47.5,1.5 + parent: 2 + - uid: 1193 + components: + - type: Transform + pos: 50.5,-2.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + pos: 47.5,4.5 + parent: 2 + - uid: 1195 + components: + - type: Transform + pos: 47.5,5.5 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: 47.5,9.5 + parent: 2 + - uid: 1200 + components: + - type: Transform + pos: 48.5,10.5 + parent: 2 + - uid: 1201 + components: + - type: Transform + pos: 49.5,10.5 + parent: 2 + - uid: 1202 + components: + - type: Transform + pos: 45.5,11.5 + parent: 2 + - uid: 1203 + components: + - type: Transform + pos: 46.5,10.5 + parent: 2 + - uid: 1204 + components: + - type: Transform + pos: 45.5,10.5 + parent: 2 + - uid: 1205 + components: + - type: Transform + pos: 45.5,12.5 + parent: 2 + - uid: 1206 + components: + - type: Transform + pos: 45.5,13.5 + parent: 2 + - uid: 1207 + components: + - type: Transform + pos: 45.5,14.5 + parent: 2 + - uid: 1208 + components: + - type: Transform + pos: 45.5,15.5 + parent: 2 + - uid: 1209 + components: + - type: Transform + pos: 46.5,15.5 + parent: 2 + - uid: 1210 + components: + - type: Transform + pos: 47.5,15.5 + parent: 2 + - uid: 1212 + components: + - type: Transform + pos: 49.5,15.5 + parent: 2 + - uid: 1213 + components: + - type: Transform + pos: 51.5,15.5 + parent: 2 + - uid: 1214 + components: + - type: Transform + pos: 50.5,15.5 + parent: 2 + - uid: 1218 + components: + - type: Transform + pos: 55.5,15.5 + parent: 2 + - uid: 1219 + components: + - type: Transform + pos: 55.5,14.5 + parent: 2 + - uid: 1220 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - uid: 1221 + components: + - type: Transform + pos: 55.5,12.5 + parent: 2 + - uid: 1222 + components: + - type: Transform + pos: 55.5,11.5 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: 55.5,10.5 + parent: 2 + - uid: 1224 + components: + - type: Transform + pos: 51.5,10.5 + parent: 2 + - uid: 1225 + components: + - type: Transform + pos: 52.5,10.5 + parent: 2 + - uid: 1226 + components: + - type: Transform + pos: 53.5,10.5 + parent: 2 + - uid: 1227 + components: + - type: Transform + pos: 54.5,10.5 + parent: 2 + - uid: 1228 + components: + - type: Transform + pos: 56.5,10.5 + parent: 2 + - uid: 1229 + components: + - type: Transform + pos: 56.5,9.5 + parent: 2 + - uid: 1230 + components: + - type: Transform + pos: 56.5,8.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + pos: 55.5,-0.5 + parent: 2 + - uid: 1240 + components: + - type: Transform + pos: 55.5,-1.5 + parent: 2 + - uid: 1241 + components: + - type: Transform + pos: 55.5,-2.5 + parent: 2 + - uid: 1265 + components: + - type: Transform + pos: 47.5,-7.5 + parent: 2 + - uid: 1266 + components: + - type: Transform + pos: 47.5,-8.5 + parent: 2 + - uid: 1269 + components: + - type: Transform + pos: 47.5,-11.5 + parent: 2 + - uid: 1846 + components: + - type: Transform + pos: 28.5,56.5 + parent: 2 + - uid: 2090 + components: + - type: Transform + pos: 64.5,3.5 + parent: 2 + - uid: 2091 + components: + - type: Transform + pos: 64.5,2.5 + parent: 2 + - uid: 2092 + components: + - type: Transform + pos: 65.5,2.5 + parent: 2 + - uid: 2093 + components: + - type: Transform + pos: 66.5,2.5 + parent: 2 + - uid: 2094 + components: + - type: Transform + pos: 67.5,2.5 + parent: 2 + - uid: 2095 + components: + - type: Transform + pos: 67.5,1.5 + parent: 2 + - uid: 2098 + components: + - type: Transform + pos: 67.5,-1.5 + parent: 2 + - uid: 2099 + components: + - type: Transform + pos: 67.5,-2.5 + parent: 2 + - uid: 2101 + components: + - type: Transform + pos: 52.5,-17.5 + parent: 2 + - uid: 2102 + components: + - type: Transform + pos: 50.5,-17.5 + parent: 2 + - uid: 2205 + components: + - type: Transform + pos: 58.5,26.5 + parent: 2 + - uid: 2228 + components: + - type: Transform + pos: 55.5,28.5 + parent: 2 + - uid: 2229 + components: + - type: Transform + pos: 55.5,30.5 + parent: 2 + - uid: 2251 + components: + - type: Transform + pos: 55.5,33.5 + parent: 2 + - uid: 2253 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 + - uid: 2256 + components: + - type: Transform + pos: 18.5,58.5 + parent: 2 + - uid: 2291 + components: + - type: Transform + pos: 58.5,27.5 + parent: 2 + - uid: 2293 + components: + - type: Transform + pos: 60.5,27.5 + parent: 2 + - uid: 2294 + components: + - type: Transform + pos: 60.5,26.5 + parent: 2 + - uid: 2295 + components: + - type: Transform + pos: 61.5,26.5 + parent: 2 + - uid: 2297 + components: + - type: Transform + pos: 61.5,24.5 + parent: 2 + - uid: 2298 + components: + - type: Transform + pos: 60.5,24.5 + parent: 2 + - uid: 2299 + components: + - type: Transform + pos: 60.5,23.5 + parent: 2 + - uid: 2300 + components: + - type: Transform + pos: 60.5,22.5 + parent: 2 + - uid: 2301 + components: + - type: Transform + pos: 60.5,21.5 + parent: 2 + - uid: 2302 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - uid: 2303 + components: + - type: Transform + pos: 60.5,19.5 + parent: 2 + - uid: 2306 + components: + - type: Transform + pos: 57.5,19.5 + parent: 2 + - uid: 2307 + components: + - type: Transform + pos: 56.5,19.5 + parent: 2 + - uid: 2308 + components: + - type: Transform + pos: 55.5,19.5 + parent: 2 + - uid: 2309 + components: + - type: Transform + pos: 55.5,20.5 + parent: 2 + - uid: 2310 + components: + - type: Transform + pos: 55.5,21.5 + parent: 2 + - uid: 2312 + components: + - type: Transform + pos: 55.5,23.5 + parent: 2 + - uid: 2313 + components: + - type: Transform + pos: 55.5,24.5 + parent: 2 + - uid: 2314 + components: + - type: Transform + pos: 55.5,25.5 + parent: 2 + - uid: 2341 + components: + - type: Transform + pos: 55.5,34.5 + parent: 2 + - uid: 2371 + components: + - type: Transform + pos: 56.5,7.5 + parent: 2 + - uid: 2391 + components: + - type: Transform + pos: 57.5,35.5 + parent: 2 + - uid: 2392 + components: + - type: Transform + pos: 58.5,35.5 + parent: 2 + - uid: 2393 + components: + - type: Transform + pos: 59.5,35.5 + parent: 2 + - uid: 2394 + components: + - type: Transform + pos: 60.5,35.5 + parent: 2 + - uid: 2395 + components: + - type: Transform + pos: 61.5,35.5 + parent: 2 + - uid: 2396 + components: + - type: Transform + pos: 62.5,35.5 + parent: 2 + - uid: 2397 + components: + - type: Transform + pos: 63.5,35.5 + parent: 2 + - uid: 2452 + components: + - type: Transform + pos: 61.5,27.5 + parent: 2 + - uid: 2454 + components: + - type: Transform + pos: 63.5,27.5 + parent: 2 + - uid: 2468 + components: + - type: Transform + pos: 49.5,43.5 + parent: 2 + - uid: 2469 + components: + - type: Transform + pos: 50.5,43.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + pos: 51.5,43.5 + parent: 2 + - uid: 2471 + components: + - type: Transform + pos: 52.5,43.5 + parent: 2 + - uid: 2472 + components: + - type: Transform + pos: 53.5,43.5 + parent: 2 + - uid: 2473 + components: + - type: Transform + pos: 54.5,43.5 + parent: 2 + - uid: 2474 + components: + - type: Transform + pos: 55.5,43.5 + parent: 2 + - uid: 2475 + components: + - type: Transform + pos: 55.5,42.5 + parent: 2 + - uid: 2478 + components: + - type: Transform + pos: 55.5,39.5 + parent: 2 + - uid: 2479 + components: + - type: Transform + pos: 55.5,38.5 + parent: 2 + - uid: 2480 + components: + - type: Transform + pos: 54.5,38.5 + parent: 2 + - uid: 2481 + components: + - type: Transform + pos: 52.5,38.5 + parent: 2 + - uid: 2482 + components: + - type: Transform + pos: 51.5,38.5 + parent: 2 + - uid: 2484 + components: + - type: Transform + pos: 49.5,38.5 + parent: 2 + - uid: 3234 + components: + - type: Transform + pos: 56.5,35.5 + parent: 2 + - uid: 3395 + components: + - type: Transform + pos: 16.5,26.5 + parent: 2 + - uid: 4266 + components: + - type: Transform + pos: 40.5,49.5 + parent: 2 + - uid: 4267 + components: + - type: Transform + pos: 40.5,48.5 + parent: 2 + - uid: 4268 + components: + - type: Transform + pos: 34.5,36.5 + parent: 2 + - uid: 4270 + components: + - type: Transform + pos: 41.5,49.5 + parent: 2 + - uid: 4271 + components: + - type: Transform + pos: 41.5,48.5 + parent: 2 + - uid: 4273 + components: + - type: Transform + pos: 41.5,46.5 + parent: 2 + - uid: 4274 + components: + - type: Transform + pos: 42.5,46.5 + parent: 2 + - uid: 4276 + components: + - type: Transform + pos: 44.5,46.5 + parent: 2 + - uid: 4277 + components: + - type: Transform + pos: 45.5,46.5 + parent: 2 + - uid: 4278 + components: + - type: Transform + pos: 46.5,46.5 + parent: 2 + - uid: 4283 + components: + - type: Transform + pos: 51.5,46.5 + parent: 2 + - uid: 4284 + components: + - type: Transform + pos: 52.5,46.5 + parent: 2 + - uid: 4285 + components: + - type: Transform + pos: 51.5,48.5 + parent: 2 + - uid: 4286 + components: + - type: Transform + pos: 51.5,49.5 + parent: 2 + - uid: 4288 + components: + - type: Transform + pos: 51.5,47.5 + parent: 2 + - uid: 4290 + components: + - type: Transform + pos: 51.5,53.5 + parent: 2 + - uid: 4291 + components: + - type: Transform + pos: 52.5,47.5 + parent: 2 + - uid: 4292 + components: + - type: Transform + pos: 52.5,48.5 + parent: 2 + - uid: 4295 + components: + - type: Transform + pos: 52.5,51.5 + parent: 2 + - uid: 4296 + components: + - type: Transform + pos: 52.5,52.5 + parent: 2 + - uid: 4297 + components: + - type: Transform + pos: 52.5,53.5 + parent: 2 + - uid: 4299 + components: + - type: Transform + pos: 50.5,53.5 + parent: 2 + - uid: 4300 + components: + - type: Transform + pos: 49.5,53.5 + parent: 2 + - uid: 4301 + components: + - type: Transform + pos: 48.5,53.5 + parent: 2 + - uid: 4302 + components: + - type: Transform + pos: 47.5,53.5 + parent: 2 + - uid: 4303 + components: + - type: Transform + pos: 46.5,53.5 + parent: 2 + - uid: 4304 + components: + - type: Transform + pos: 45.5,53.5 + parent: 2 + - uid: 4305 + components: + - type: Transform + pos: 44.5,53.5 + parent: 2 + - uid: 4308 + components: + - type: Transform + pos: 41.5,53.5 + parent: 2 + - uid: 4314 + components: + - type: Transform + pos: 16.5,61.5 + parent: 2 + - uid: 4316 + components: + - type: Transform + pos: 14.5,61.5 + parent: 2 + - uid: 4317 + components: + - type: Transform + pos: 14.5,60.5 + parent: 2 + - uid: 4318 + components: + - type: Transform + pos: 14.5,59.5 + parent: 2 + - uid: 4319 + components: + - type: Transform + pos: 14.5,58.5 + parent: 2 + - uid: 4326 + components: + - type: Transform + pos: 20.5,56.5 + parent: 2 + - uid: 4328 + components: + - type: Transform + pos: 20.5,54.5 + parent: 2 + - uid: 4329 + components: + - type: Transform + pos: 20.5,53.5 + parent: 2 + - uid: 4331 + components: + - type: Transform + pos: 20.5,51.5 + parent: 2 + - uid: 4332 + components: + - type: Transform + pos: 22.5,55.5 + parent: 2 + - uid: 4336 + components: + - type: Transform + pos: 22.5,51.5 + parent: 2 + - uid: 4337 + components: + - type: Transform + pos: 22.5,50.5 + parent: 2 + - uid: 4340 + components: + - type: Transform + pos: 21.5,49.5 + parent: 2 + - uid: 4341 + components: + - type: Transform + pos: 21.5,48.5 + parent: 2 + - uid: 4342 + components: + - type: Transform + pos: 20.5,49.5 + parent: 2 + - uid: 4343 + components: + - type: Transform + pos: 20.5,48.5 + parent: 2 + - uid: 4347 + components: + - type: Transform + pos: 25.5,48.5 + parent: 2 + - uid: 4348 + components: + - type: Transform + pos: 26.5,48.5 + parent: 2 + - uid: 4351 + components: + - type: Transform + pos: 29.5,48.5 + parent: 2 + - uid: 4352 + components: + - type: Transform + pos: 29.5,49.5 + parent: 2 + - uid: 4353 + components: + - type: Transform + pos: 32.5,49.5 + parent: 2 + - uid: 4354 + components: + - type: Transform + pos: 31.5,49.5 + parent: 2 + - uid: 4356 + components: + - type: Transform + pos: 31.5,48.5 + parent: 2 + - uid: 4358 + components: + - type: Transform + pos: 25.5,49.5 + parent: 2 + - uid: 4359 + components: + - type: Transform + pos: 26.5,49.5 + parent: 2 + - uid: 4362 + components: + - type: Transform + pos: 26.5,53.5 + parent: 2 + - uid: 4363 + components: + - type: Transform + pos: 26.5,54.5 + parent: 2 + - uid: 4364 + components: + - type: Transform + pos: 26.5,55.5 + parent: 2 + - uid: 4369 + components: + - type: Transform + pos: 30.5,47.5 + parent: 2 + - uid: 4371 + components: + - type: Transform + pos: 31.5,47.5 + parent: 2 + - uid: 4373 + components: + - type: Transform + pos: 32.5,47.5 + parent: 2 + - uid: 4375 + components: + - type: Transform + pos: 33.5,47.5 + parent: 2 + - uid: 4376 + components: + - type: Transform + pos: 33.5,46.5 + parent: 2 + - uid: 4378 + components: + - type: Transform + pos: 34.5,46.5 + parent: 2 + - uid: 4379 + components: + - type: Transform + pos: 35.5,47.5 + parent: 2 + - uid: 4380 + components: + - type: Transform + pos: 35.5,46.5 + parent: 2 + - uid: 4381 + components: + - type: Transform + pos: 36.5,47.5 + parent: 2 + - uid: 4383 + components: + - type: Transform + pos: 29.5,46.5 + parent: 2 + - uid: 4387 + components: + - type: Transform + pos: 35.5,52.5 + parent: 2 + - uid: 4393 + components: + - type: Transform + pos: 36.5,52.5 + parent: 2 + - uid: 4394 + components: + - type: Transform + pos: 36.5,53.5 + parent: 2 + - uid: 4395 + components: + - type: Transform + pos: 35.5,50.5 + parent: 2 + - uid: 4398 + components: + - type: Transform + pos: 48.5,44.5 + parent: 2 + - uid: 4400 + components: + - type: Transform + pos: 34.5,55.5 + parent: 2 + - uid: 4401 + components: + - type: Transform + pos: 35.5,55.5 + parent: 2 + - uid: 4402 + components: + - type: Transform + pos: 36.5,55.5 + parent: 2 + - uid: 4403 + components: + - type: Transform + pos: 37.5,55.5 + parent: 2 + - uid: 4404 + components: + - type: Transform + pos: 38.5,55.5 + parent: 2 + - uid: 4405 + components: + - type: Transform + pos: 38.5,54.5 + parent: 2 + - uid: 4406 + components: + - type: Transform + pos: 38.5,53.5 + parent: 2 + - uid: 4407 + components: + - type: Transform + pos: 32.5,55.5 + parent: 2 + - uid: 4409 + components: + - type: Transform + pos: 30.5,55.5 + parent: 2 + - uid: 4410 + components: + - type: Transform + pos: 28.5,55.5 + parent: 2 + - uid: 4412 + components: + - type: Transform + pos: 28.5,53.5 + parent: 2 + - uid: 4414 + components: + - type: Transform + pos: 28.5,51.5 + parent: 2 + - uid: 4417 + components: + - type: Transform + pos: 39.5,51.5 + parent: 2 + - uid: 4420 + components: + - type: Transform + pos: 39.5,49.5 + parent: 2 + - uid: 4421 + components: + - type: Transform + pos: 24.5,53.5 + parent: 2 + - uid: 4422 + components: + - type: Transform + pos: 24.5,54.5 + parent: 2 + - uid: 4427 + components: + - type: Transform + pos: 22.5,57.5 + parent: 2 + - uid: 4429 + components: + - type: Transform + pos: 33.5,58.5 + parent: 2 + - uid: 4430 + components: + - type: Transform + pos: 32.5,58.5 + parent: 2 + - uid: 4447 + components: + - type: Transform + pos: 16.5,59.5 + parent: 2 + - uid: 4448 + components: + - type: Transform + pos: 16.5,58.5 + parent: 2 + - uid: 4449 + components: + - type: Transform + pos: 26.5,57.5 + parent: 2 + - uid: 4459 + components: + - type: Transform + pos: 36.5,57.5 + parent: 2 + - uid: 4467 + components: + - type: Transform + pos: 36.5,56.5 + parent: 2 + - uid: 4468 + components: + - type: Transform + pos: 35.5,56.5 + parent: 2 + - uid: 4469 + components: + - type: Transform + pos: 37.5,57.5 + parent: 2 + - uid: 4470 + components: + - type: Transform + pos: 39.5,57.5 + parent: 2 + - uid: 4471 + components: + - type: Transform + pos: 38.5,57.5 + parent: 2 + - uid: 4472 + components: + - type: Transform + pos: 41.5,57.5 + parent: 2 + - uid: 4473 + components: + - type: Transform + pos: 42.5,57.5 + parent: 2 + - uid: 4474 + components: + - type: Transform + pos: 44.5,57.5 + parent: 2 + - uid: 4485 + components: + - type: Transform + pos: 40.5,57.5 + parent: 2 + - uid: 4486 + components: + - type: Transform + pos: 43.5,57.5 + parent: 2 + - uid: 4488 + components: + - type: Transform + pos: 41.5,58.5 + parent: 2 + - uid: 4547 + components: + - type: Transform + pos: 34.5,56.5 + parent: 2 + - uid: 4583 + components: + - type: Transform + pos: 20.5,52.5 + parent: 2 + - uid: 4585 + components: + - type: Transform + pos: 24.5,52.5 + parent: 2 + - uid: 4587 + components: + - type: Transform + pos: 28.5,52.5 + parent: 2 + - uid: 4747 + components: + - type: Transform + pos: 33.5,56.5 + parent: 2 + - uid: 4750 + components: + - type: Transform + pos: 31.5,56.5 + parent: 2 + - uid: 4752 + components: + - type: Transform + pos: 32.5,56.5 + parent: 2 + - uid: 4757 + components: + - type: Transform + pos: 27.5,58.5 + parent: 2 + - uid: 4758 + components: + - type: Transform + pos: 26.5,58.5 + parent: 2 + - uid: 4759 + components: + - type: Transform + pos: 25.5,58.5 + parent: 2 + - uid: 4760 + components: + - type: Transform + pos: 24.5,58.5 + parent: 2 + - uid: 4761 + components: + - type: Transform + pos: 23.5,58.5 + parent: 2 + - uid: 4762 + components: + - type: Transform + pos: 22.5,58.5 + parent: 2 + - uid: 4763 + components: + - type: Transform + pos: 21.5,58.5 + parent: 2 + - uid: 4764 + components: + - type: Transform + pos: 19.5,58.5 + parent: 2 + - uid: 4765 + components: + - type: Transform + pos: 20.5,58.5 + parent: 2 + - uid: 4834 + components: + - type: Transform + pos: 24.5,51.5 + parent: 2 + - uid: 4926 + components: + - type: Transform + pos: 47.5,6.5 + parent: 2 + - uid: 4930 + components: + - type: Transform + pos: 55.5,41.5 + parent: 2 + - uid: 5022 + components: + - type: Transform + pos: 28.5,46.5 + parent: 2 + - uid: 5024 + components: + - type: Transform + pos: 28.5,48.5 + parent: 2 + - uid: 5026 + components: + - type: Transform + pos: 28.5,43.5 + parent: 2 + - uid: 5040 + components: + - type: Transform + pos: 28.5,36.5 + parent: 2 + - uid: 5182 + components: + - type: Transform + pos: 55.5,35.5 + parent: 2 + - uid: 5231 + components: + - type: Transform + pos: 40.5,37.5 + parent: 2 + - uid: 5239 + components: + - type: Transform + pos: 48.5,36.5 + parent: 2 + - uid: 5254 + components: + - type: Transform + pos: 50.5,38.5 + parent: 2 + - uid: 5358 + components: + - type: Transform + pos: 37.5,36.5 + parent: 2 + - uid: 5513 + components: + - type: Transform + pos: 40.5,38.5 + parent: 2 + - uid: 5557 + components: + - type: Transform + pos: 41.5,38.5 + parent: 2 + - uid: 5636 + components: + - type: Transform + pos: 47.5,7.5 + parent: 2 + - uid: 5666 + components: + - type: Transform + pos: 43.5,46.5 + parent: 2 + - uid: 5791 + components: + - type: Transform + pos: 55.5,29.5 + parent: 2 + - uid: 5795 + components: + - type: Transform + pos: 52.5,15.5 + parent: 2 + - uid: 6034 + components: + - type: Transform + pos: 16.5,32.5 + parent: 2 + - uid: 6109 + components: + - type: Transform + pos: 22.5,52.5 + parent: 2 + - uid: 6146 + components: + - type: Transform + pos: 40.5,47.5 + parent: 2 + - uid: 6147 + components: + - type: Transform + pos: 41.5,47.5 + parent: 2 + - uid: 6262 + components: + - type: Transform + pos: 55.5,40.5 + parent: 2 + - uid: 7239 + components: + - type: Transform + pos: 14.5,43.5 + parent: 2 + - uid: 7243 + components: + - type: Transform + pos: 14.5,47.5 + parent: 2 +- proto: WallReinforcedRust + entities: + - uid: 496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 2 + - uid: 497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,8.5 + parent: 2 + - uid: 576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 2 + - uid: 577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,7.5 + parent: 2 + - uid: 582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 2 + - uid: 584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 2 + - uid: 585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 2 + - uid: 586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,43.5 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: 10.5,39.5 + parent: 2 + - uid: 592 + components: + - type: Transform + pos: 9.5,39.5 + parent: 2 + - uid: 658 + components: + - type: Transform + pos: 10.5,40.5 + parent: 2 + - uid: 673 + components: + - type: Transform + pos: 14.5,40.5 + parent: 2 + - uid: 770 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: 18.5,26.5 + parent: 2 + - uid: 772 + components: + - type: Transform + pos: 19.5,26.5 + parent: 2 + - uid: 773 + components: + - type: Transform + pos: 20.5,26.5 + parent: 2 + - uid: 774 + components: + - type: Transform + pos: 20.5,25.5 + parent: 2 + - uid: 786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,35.5 + parent: 2 + - uid: 787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,35.5 + parent: 2 + - uid: 788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,36.5 + parent: 2 + - uid: 789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,40.5 + parent: 2 + - uid: 814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,41.5 + parent: 2 + - uid: 835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,36.5 + parent: 2 + - uid: 836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,36.5 + parent: 2 + - uid: 837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,41.5 + parent: 2 + - uid: 838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,43.5 + parent: 2 + - uid: 839 + components: + - type: Transform + pos: 18.5,43.5 + parent: 2 + - uid: 841 + components: + - type: Transform + pos: 19.5,43.5 + parent: 2 + - uid: 857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,43.5 + parent: 2 + - uid: 859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,43.5 + parent: 2 + - uid: 862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,43.5 + parent: 2 + - uid: 864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,43.5 + parent: 2 + - uid: 870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,43.5 + parent: 2 + - uid: 882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,43.5 + parent: 2 + - uid: 887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,43.5 + parent: 2 + - uid: 889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,43.5 + parent: 2 + - uid: 894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,43.5 + parent: 2 + - uid: 895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,43.5 + parent: 2 + - uid: 900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,30.5 + parent: 2 + - uid: 901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,30.5 + parent: 2 + - uid: 904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,30.5 + parent: 2 + - uid: 905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,30.5 + parent: 2 + - uid: 906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,30.5 + parent: 2 + - uid: 907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,31.5 + parent: 2 + - uid: 908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,32.5 + parent: 2 + - uid: 912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,32.5 + parent: 2 + - uid: 918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,32.5 + parent: 2 + - uid: 920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,31.5 + parent: 2 + - uid: 921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,33.5 + parent: 2 + - uid: 929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,33.5 + parent: 2 + - uid: 937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,25.5 + parent: 2 + - uid: 941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,25.5 + parent: 2 + - uid: 942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,26.5 + parent: 2 + - uid: 943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,27.5 + parent: 2 + - uid: 944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,3.5 + parent: 2 + - uid: 945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,4.5 + parent: 2 + - uid: 946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,4.5 + parent: 2 + - uid: 947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,2.5 + parent: 2 + - uid: 949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,1.5 + parent: 2 + - uid: 950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,3.5 + parent: 2 + - uid: 956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,0.5 + parent: 2 + - uid: 957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-0.5 + parent: 2 + - uid: 958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-1.5 + parent: 2 + - uid: 960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,0.5 + parent: 2 + - uid: 964 + components: + - type: Transform + pos: 20.5,24.5 + parent: 2 + - uid: 978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-0.5 + parent: 2 + - uid: 979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-3.5 + parent: 2 + - uid: 980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-4.5 + parent: 2 + - uid: 981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-8.5 + parent: 2 + - uid: 987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-8.5 + parent: 2 + - uid: 988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-8.5 + parent: 2 + - uid: 990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-4.5 + parent: 2 + - uid: 993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-3.5 + parent: 2 + - uid: 995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-3.5 + parent: 2 + - uid: 998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-3.5 + parent: 2 + - uid: 1003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-3.5 + parent: 2 + - uid: 1004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,0.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-0.5 + parent: 2 + - uid: 1013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-1.5 + parent: 2 + - uid: 1014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-2.5 + parent: 2 + - uid: 1022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-2.5 + parent: 2 + - uid: 1026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-2.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,10.5 + parent: 2 + - uid: 1032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,4.5 + parent: 2 + - uid: 1042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,3.5 + parent: 2 + - uid: 1043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,3.5 + parent: 2 + - uid: 1044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,2.5 + parent: 2 + - uid: 1045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,1.5 + parent: 2 + - uid: 1046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-4.5 + parent: 2 + - uid: 1063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-3.5 + parent: 2 + - uid: 1064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-5.5 + parent: 2 + - uid: 1079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-6.5 + parent: 2 + - uid: 1176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-9.5 + parent: 2 + - uid: 1187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-10.5 + parent: 2 + - uid: 1188 + components: + - type: Transform + pos: 16.5,41.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + pos: 16.5,43.5 + parent: 2 + - uid: 1190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,0.5 + parent: 2 + - uid: 1191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-0.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,26.5 + parent: 2 + - uid: 1199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,27.5 + parent: 2 + - uid: 1232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,25.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,19.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,19.5 + parent: 2 + - uid: 1235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,22.5 + parent: 2 + - uid: 1236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,26.5 + parent: 2 + - uid: 1237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,27.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,48.5 + parent: 2 + - uid: 1262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,3.5 + parent: 2 + - uid: 1263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,46.5 + parent: 2 + - uid: 1264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,46.5 + parent: 2 + - uid: 1267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,46.5 + parent: 2 + - uid: 1268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,46.5 + parent: 2 + - uid: 1340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,46.5 + parent: 2 + - uid: 1422 + components: + - type: Transform + pos: 20.5,23.5 + parent: 2 + - uid: 1616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,50.5 + parent: 2 + - uid: 1743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,52.5 + parent: 2 + - uid: 1769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,49.5 + parent: 2 + - uid: 1771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,50.5 + parent: 2 + - uid: 1779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,51.5 + parent: 2 + - uid: 1796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,53.5 + parent: 2 + - uid: 1805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,53.5 + parent: 2 + - uid: 1841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,53.5 + parent: 2 + - uid: 1865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,52.5 + parent: 2 + - uid: 1869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,51.5 + parent: 2 + - uid: 1894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,52.5 + parent: 2 + - uid: 1902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,51.5 + parent: 2 + - uid: 1903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,61.5 + parent: 2 + - uid: 1904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,57.5 + parent: 2 + - uid: 1905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,56.5 + parent: 2 + - uid: 1906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,56.5 + parent: 2 + - uid: 1907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,56.5 + parent: 2 + - uid: 1908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,56.5 + parent: 2 + - uid: 1942 + components: + - type: Transform + pos: 20.5,22.5 + parent: 2 + - uid: 1943 + components: + - type: Transform + pos: 20.5,21.5 + parent: 2 + - uid: 1951 + components: + - type: Transform + pos: 16.5,27.5 + parent: 2 + - uid: 1953 + components: + - type: Transform + pos: 16.5,28.5 + parent: 2 + - uid: 1957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,56.5 + parent: 2 + - uid: 1958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,55.5 + parent: 2 + - uid: 1959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,54.5 + parent: 2 + - uid: 1974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,53.5 + parent: 2 + - uid: 1975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,49.5 + parent: 2 + - uid: 1977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,48.5 + parent: 2 + - uid: 1978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,48.5 + parent: 2 + - uid: 1979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,48.5 + parent: 2 + - uid: 1980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,48.5 + parent: 2 + - uid: 1989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,48.5 + parent: 2 + - uid: 1994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,49.5 + parent: 2 + - uid: 1995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,49.5 + parent: 2 + - uid: 1996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,51.5 + parent: 2 + - uid: 1997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,47.5 + parent: 2 + - uid: 1998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,46.5 + parent: 2 + - uid: 2004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,46.5 + parent: 2 + - uid: 2005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,46.5 + parent: 2 + - uid: 2096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,47.5 + parent: 2 + - uid: 2097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,46.5 + parent: 2 + - uid: 2211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,49.5 + parent: 2 + - uid: 2212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,53.5 + parent: 2 + - uid: 2220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,49.5 + parent: 2 + - uid: 2221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,50.5 + parent: 2 + - uid: 2223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,44.5 + parent: 2 + - uid: 2226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,45.5 + parent: 2 + - uid: 2227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,55.5 + parent: 2 + - uid: 2257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,54.5 + parent: 2 + - uid: 2292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,54.5 + parent: 2 + - uid: 2296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,53.5 + parent: 2 + - uid: 2304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,51.5 + parent: 2 + - uid: 2305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,56.5 + parent: 2 + - uid: 2311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,55.5 + parent: 2 + - uid: 2315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,57.5 + parent: 2 + - uid: 2316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,57.5 + parent: 2 + - uid: 2566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,58.5 + parent: 2 + - uid: 2567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,58.5 + parent: 2 + - uid: 2568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,58.5 + parent: 2 + - uid: 2569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,58.5 + parent: 2 + - uid: 2570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,58.5 + parent: 2 + - uid: 2572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,59.5 + parent: 2 + - uid: 2573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,59.5 + parent: 2 + - uid: 2578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,57.5 + parent: 2 + - uid: 2603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,57.5 + parent: 2 + - uid: 2781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,57.5 + parent: 2 + - uid: 3089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,57.5 + parent: 2 + - uid: 4269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,57.5 + parent: 2 + - uid: 4279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,57.5 + parent: 2 + - uid: 4280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,57.5 + parent: 2 + - uid: 4281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,57.5 + parent: 2 + - uid: 4282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,57.5 + parent: 2 + - uid: 4287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,57.5 + parent: 2 + - uid: 4289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,57.5 + parent: 2 + - uid: 4293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,57.5 + parent: 2 + - uid: 4294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,57.5 + parent: 2 + - uid: 4298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,57.5 + parent: 2 + - uid: 4306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,57.5 + parent: 2 + - uid: 4307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,57.5 + parent: 2 + - uid: 4309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,57.5 + parent: 2 + - uid: 4310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,57.5 + parent: 2 + - uid: 4311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,58.5 + parent: 2 + - uid: 4312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,45.5 + parent: 2 + - uid: 4313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,51.5 + parent: 2 + - uid: 4315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,51.5 + parent: 2 + - uid: 4320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,56.5 + parent: 2 + - uid: 4321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,56.5 + parent: 2 + - uid: 4322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,57.5 + parent: 2 + - uid: 4323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,41.5 + parent: 2 + - uid: 4324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,50.5 + parent: 2 + - uid: 4325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,47.5 + parent: 2 + - uid: 4327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,37.5 + parent: 2 + - uid: 4333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,33.5 + parent: 2 + - uid: 4334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,40.5 + parent: 2 + - uid: 4338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,52.5 + parent: 2 + - uid: 4339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,48.5 + parent: 2 + - uid: 4344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,52.5 + parent: 2 + - uid: 4345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,43.5 + parent: 2 + - uid: 5478 + components: + - type: Transform + pos: 16.5,29.5 + parent: 2 + - uid: 5630 + components: + - type: Transform + pos: 16.5,30.5 + parent: 2 + - uid: 5894 + components: + - type: Transform + pos: 16.5,31.5 + parent: 2 + - uid: 7237 + components: + - type: Transform + pos: 14.5,41.5 + parent: 2 + - uid: 7238 + components: + - type: Transform + pos: 14.5,42.5 + parent: 2 + - uid: 7240 + components: + - type: Transform + pos: 14.5,44.5 + parent: 2 + - uid: 7241 + components: + - type: Transform + pos: 14.5,45.5 + parent: 2 + - uid: 7242 + components: + - type: Transform + pos: 14.5,46.5 + parent: 2 + - uid: 7244 + components: + - type: Transform + pos: 14.5,48.5 + parent: 2 +- proto: WallSolid + entities: + - uid: 3 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 21 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 23 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 25 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 26 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 2 + - uid: 35 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 2 + - uid: 36 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 2 + - uid: 37 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 2 + - uid: 38 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 + - uid: 39 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 2 + - uid: 40 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 2 + - uid: 42 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 44 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 2 + - uid: 45 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 2 + - uid: 46 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 2 + - uid: 47 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 2 + - uid: 48 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 2 + - uid: 52 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 + - uid: 53 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 2 + - uid: 54 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 60 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 2 + - uid: 69 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 2 + - uid: 71 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 73 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 74 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 75 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 + - uid: 85 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 + - uid: 86 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 87 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 + - uid: 90 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - uid: 91 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 2 + - uid: 92 + components: + - type: Transform + pos: 14.5,0.5 + parent: 2 + - uid: 93 + components: + - type: Transform + pos: 14.5,1.5 + parent: 2 + - uid: 94 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - uid: 95 + components: + - type: Transform + pos: 11.5,1.5 + parent: 2 + - uid: 97 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 99 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 + - uid: 101 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 103 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: 14.5,2.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 + - uid: 108 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 109 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 111 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 + - uid: 112 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 113 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 + - uid: 114 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 + - uid: 115 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 116 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 117 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - uid: 118 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 2 + - uid: 119 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - uid: 121 + components: + - type: Transform + pos: 21.5,1.5 + parent: 2 + - uid: 143 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 2 + - uid: 153 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 + - uid: 158 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 2 + - uid: 163 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 167 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 2 + - uid: 170 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 171 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 172 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 + - uid: 173 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - uid: 197 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 + - uid: 211 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 2 + - uid: 214 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 2 + - uid: 215 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - uid: 216 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 217 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 2 + - uid: 219 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 + - uid: 220 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 + - uid: 222 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 2 + - uid: 223 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - uid: 224 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - uid: 225 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 + - uid: 228 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 2 + - uid: 229 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 232 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 2 + - uid: 233 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 251 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 2 + - uid: 255 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 2 + - uid: 256 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 2 + - uid: 257 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - uid: 283 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 + - uid: 285 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 286 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 + - uid: 287 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - uid: 288 + components: + - type: Transform + pos: 1.5,11.5 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 + - uid: 293 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 295 + components: + - type: Transform + pos: -1.5,16.5 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 299 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 2 + - uid: 300 + components: + - type: Transform + pos: -6.5,16.5 + parent: 2 + - uid: 326 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: 42.5,-11.5 + parent: 2 + - uid: 376 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 377 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 + - uid: 379 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 385 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 386 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 387 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 388 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 390 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 2 + - uid: 391 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 392 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 2 + - uid: 396 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 421 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 + - uid: 424 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 2 + - uid: 428 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 429 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - uid: 430 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 431 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - uid: 434 + components: + - type: Transform + pos: 1.5,19.5 + parent: 2 + - uid: 435 + components: + - type: Transform + pos: 0.5,19.5 + parent: 2 + - uid: 436 + components: + - type: Transform + pos: -0.5,19.5 + parent: 2 + - uid: 437 + components: + - type: Transform + pos: -1.5,19.5 + parent: 2 + - uid: 438 + components: + - type: Transform + pos: -2.5,19.5 + parent: 2 + - uid: 439 + components: + - type: Transform + pos: -3.5,19.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: -6.5,17.5 + parent: 2 + - uid: 444 + components: + - type: Transform + pos: -4.5,19.5 + parent: 2 + - uid: 445 + components: + - type: Transform + pos: 6.5,15.5 + parent: 2 + - uid: 446 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 447 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - uid: 448 + components: + - type: Transform + pos: 6.5,13.5 + parent: 2 + - uid: 449 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 + - uid: 450 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 + - uid: 451 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - uid: 452 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 453 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 + - uid: 454 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 + - uid: 455 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 456 + components: + - type: Transform + pos: 6.5,17.5 + parent: 2 + - uid: 457 + components: + - type: Transform + pos: 7.5,17.5 + parent: 2 + - uid: 471 + components: + - type: Transform + pos: 29.5,12.5 + parent: 2 + - uid: 472 + components: + - type: Transform + pos: 28.5,12.5 + parent: 2 + - uid: 474 + components: + - type: Transform + pos: 19.5,14.5 + parent: 2 + - uid: 475 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 476 + components: + - type: Transform + pos: 23.5,14.5 + parent: 2 + - uid: 477 + components: + - type: Transform + pos: 23.5,13.5 + parent: 2 + - uid: 478 + components: + - type: Transform + pos: 23.5,12.5 + parent: 2 + - uid: 479 + components: + - type: Transform + pos: 23.5,11.5 + parent: 2 + - uid: 481 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 + - uid: 482 + components: + - type: Transform + pos: 23.5,8.5 + parent: 2 + - uid: 483 + components: + - type: Transform + pos: 22.5,8.5 + parent: 2 + - uid: 484 + components: + - type: Transform + pos: 21.5,8.5 + parent: 2 + - uid: 486 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - uid: 488 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 + - uid: 489 + components: + - type: Transform + pos: 15.5,13.5 + parent: 2 + - uid: 490 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 491 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 494 + components: + - type: Transform + pos: 16.5,8.5 + parent: 2 + - uid: 495 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 498 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 + - uid: 500 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - uid: 501 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - uid: 559 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 572 + components: + - type: Transform + pos: 10.5,17.5 + parent: 2 + - uid: 573 + components: + - type: Transform + pos: 9.5,17.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 578 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - uid: 580 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 581 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 583 + components: + - type: Transform + pos: 20.5,17.5 + parent: 2 + - uid: 587 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 588 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: 27.5,17.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: 29.5,17.5 + parent: 2 + - uid: 593 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: 33.5,17.5 + parent: 2 + - uid: 596 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - uid: 597 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 + - uid: 598 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - uid: 599 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 601 + components: + - type: Transform + pos: 36.5,14.5 + parent: 2 + - uid: 602 + components: + - type: Transform + pos: 36.5,13.5 + parent: 2 + - uid: 603 + components: + - type: Transform + pos: 36.5,12.5 + parent: 2 + - uid: 604 + components: + - type: Transform + pos: 35.5,12.5 + parent: 2 + - uid: 605 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: 33.5,12.5 + parent: 2 + - uid: 607 + components: + - type: Transform + pos: 32.5,12.5 + parent: 2 + - uid: 608 + components: + - type: Transform + pos: 32.5,14.5 + parent: 2 + - uid: 609 + components: + - type: Transform + pos: 31.5,14.5 + parent: 2 + - uid: 610 + components: + - type: Transform + pos: 35.5,11.5 + parent: 2 + - uid: 611 + components: + - type: Transform + pos: 35.5,10.5 + parent: 2 + - uid: 612 + components: + - type: Transform + pos: 35.5,8.5 + parent: 2 + - uid: 613 + components: + - type: Transform + pos: 35.5,9.5 + parent: 2 + - uid: 614 + components: + - type: Transform + pos: 27.5,8.5 + parent: 2 + - uid: 615 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - uid: 616 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 617 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 618 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 619 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 621 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: 30.5,12.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - uid: 625 + components: + - type: Transform + pos: 30.5,9.5 + parent: 2 + - uid: 626 + components: + - type: Transform + pos: 3.5,30.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: 16.5,19.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - uid: 662 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: 29.5,20.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: 30.5,20.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: 34.5,20.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: 35.5,20.5 + parent: 2 + - uid: 672 + components: + - type: Transform + pos: 36.5,20.5 + parent: 2 + - uid: 674 + components: + - type: Transform + pos: 9.5,19.5 + parent: 2 + - uid: 677 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 679 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: 15.5,19.5 + parent: 2 + - uid: 681 + components: + - type: Transform + pos: 16.5,23.5 + parent: 2 + - uid: 683 + components: + - type: Transform + pos: 8.5,28.5 + parent: 2 + - uid: 698 + components: + - type: Transform + pos: 4.5,30.5 + parent: 2 + - uid: 702 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 + - uid: 704 + components: + - type: Transform + pos: 15.5,26.5 + parent: 2 + - uid: 705 + components: + - type: Transform + pos: 15.5,27.5 + parent: 2 + - uid: 708 + components: + - type: Transform + pos: 8.5,29.5 + parent: 2 + - uid: 709 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - uid: 711 + components: + - type: Transform + pos: 7.5,31.5 + parent: 2 + - uid: 712 + components: + - type: Transform + pos: 6.5,31.5 + parent: 2 + - uid: 713 + components: + - type: Transform + pos: 5.5,31.5 + parent: 2 + - uid: 714 + components: + - type: Transform + pos: 5.5,30.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 + - uid: 716 + components: + - type: Transform + pos: 5.5,21.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: 5.5,23.5 + parent: 2 + - uid: 732 + components: + - type: Transform + pos: 5.5,32.5 + parent: 2 + - uid: 749 + components: + - type: Transform + pos: 5.5,33.5 + parent: 2 + - uid: 750 + components: + - type: Transform + pos: 5.5,34.5 + parent: 2 + - uid: 751 + components: + - type: Transform + pos: 5.5,35.5 + parent: 2 + - uid: 752 + components: + - type: Transform + pos: 6.5,35.5 + parent: 2 + - uid: 753 + components: + - type: Transform + pos: 7.5,35.5 + parent: 2 + - uid: 754 + components: + - type: Transform + pos: 8.5,35.5 + parent: 2 + - uid: 755 + components: + - type: Transform + pos: 8.5,36.5 + parent: 2 + - uid: 756 + components: + - type: Transform + pos: 8.5,37.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: 8.5,39.5 + parent: 2 + - uid: 759 + components: + - type: Transform + pos: 10.5,32.5 + parent: 2 + - uid: 760 + components: + - type: Transform + pos: 11.5,32.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: 12.5,32.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 + - uid: 763 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - uid: 764 + components: + - type: Transform + pos: 15.5,32.5 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: 15.5,31.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: 15.5,30.5 + parent: 2 + - uid: 767 + components: + - type: Transform + pos: 15.5,29.5 + parent: 2 + - uid: 768 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: -0.5,16.5 + parent: 2 + - uid: 791 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 + - uid: 806 + components: + - type: Transform + pos: 28.5,2.5 + parent: 2 + - uid: 819 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 2 + - uid: 822 + components: + - type: Transform + pos: 49.5,14.5 + parent: 2 + - uid: 826 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 2 + - uid: 828 + components: + - type: Transform + pos: 38.5,-5.5 + parent: 2 + - uid: 829 + components: + - type: Transform + pos: 22.5,35.5 + parent: 2 + - uid: 830 + components: + - type: Transform + pos: 21.5,35.5 + parent: 2 + - uid: 831 + components: + - type: Transform + pos: 22.5,36.5 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: 22.5,37.5 + parent: 2 + - uid: 834 + components: + - type: Transform + pos: 22.5,39.5 + parent: 2 + - uid: 840 + components: + - type: Transform + pos: 17.5,40.5 + parent: 2 + - uid: 842 + components: + - type: Transform + pos: 16.5,40.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: 31.5,33.5 + parent: 2 + - uid: 847 + components: + - type: Transform + pos: 31.5,35.5 + parent: 2 + - uid: 848 + components: + - type: Transform + pos: 31.5,29.5 + parent: 2 + - uid: 849 + components: + - type: Transform + pos: 31.5,28.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: 31.5,27.5 + parent: 2 + - uid: 851 + components: + - type: Transform + pos: 31.5,26.5 + parent: 2 + - uid: 852 + components: + - type: Transform + pos: 31.5,25.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: 31.5,24.5 + parent: 2 + - uid: 854 + components: + - type: Transform + pos: 31.5,23.5 + parent: 2 + - uid: 855 + components: + - type: Transform + pos: 31.5,22.5 + parent: 2 + - uid: 856 + components: + - type: Transform + pos: 31.5,21.5 + parent: 2 + - uid: 875 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 + - uid: 892 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 2 + - uid: 959 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 2 + - uid: 968 + components: + - type: Transform + pos: 36.5,22.5 + parent: 2 + - uid: 972 + components: + - type: Transform + pos: 35.5,22.5 + parent: 2 + - uid: 973 + components: + - type: Transform + pos: 35.5,21.5 + parent: 2 + - uid: 974 + components: + - type: Transform + pos: 36.5,21.5 + parent: 2 + - uid: 975 + components: + - type: Transform + pos: 36.5,23.5 + parent: 2 + - uid: 976 + components: + - type: Transform + pos: 36.5,24.5 + parent: 2 + - uid: 977 + components: + - type: Transform + pos: 37.5,24.5 + parent: 2 + - uid: 982 + components: + - type: Transform + pos: 40.5,26.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: 40.5,27.5 + parent: 2 + - uid: 984 + components: + - type: Transform + pos: 40.5,28.5 + parent: 2 + - uid: 985 + components: + - type: Transform + pos: 40.5,29.5 + parent: 2 + - uid: 992 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 + - uid: 1009 + components: + - type: Transform + pos: 37.5,3.5 + parent: 2 + - uid: 1010 + components: + - type: Transform + pos: 37.5,1.5 + parent: 2 + - uid: 1011 + components: + - type: Transform + pos: 36.5,0.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + pos: 37.5,0.5 + parent: 2 + - uid: 1015 + components: + - type: Transform + pos: 41.5,-1.5 + parent: 2 + - uid: 1016 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 2 + - uid: 1017 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: 44.5,-1.5 + parent: 2 + - uid: 1019 + components: + - type: Transform + pos: 45.5,-1.5 + parent: 2 + - uid: 1021 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 2 + - uid: 1051 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 + - uid: 1052 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 + - uid: 1054 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 2 + - uid: 1055 + components: + - type: Transform + pos: 36.5,-13.5 + parent: 2 + - uid: 1056 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 2 + - uid: 1057 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 2 + - uid: 1058 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 2 + - uid: 1059 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - uid: 1060 + components: + - type: Transform + pos: 61.5,60.5 + parent: 2 + - uid: 1061 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 1062 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 2 + - uid: 1065 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 1066 + components: + - type: Transform + pos: 34.5,0.5 + parent: 2 + - uid: 1067 + components: + - type: Transform + pos: 28.5,-13.5 + parent: 2 + - uid: 1069 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 2 + - uid: 1070 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 + - uid: 1072 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 2 + - uid: 1073 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 2 + - uid: 1074 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + pos: 22.5,3.5 + parent: 2 + - uid: 1076 + components: + - type: Transform + pos: 37.5,-13.5 + parent: 2 + - uid: 1077 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 2 + - uid: 1078 + components: + - type: Transform + pos: 39.5,-13.5 + parent: 2 + - uid: 1080 + components: + - type: Transform + pos: 42.5,-13.5 + parent: 2 + - uid: 1081 + components: + - type: Transform + pos: 41.5,-13.5 + parent: 2 + - uid: 1082 + components: + - type: Transform + pos: 43.5,-13.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + pos: 45.5,-13.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + pos: 45.5,-12.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + pos: 45.5,-11.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + pos: 45.5,-10.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + pos: 43.5,-15.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + pos: 43.5,-16.5 + parent: 2 + - uid: 1091 + components: + - type: Transform + pos: 42.5,-16.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: 41.5,-16.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + pos: 40.5,-16.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + pos: 39.5,-16.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 2 + - uid: 1097 + components: + - type: Transform + pos: 23.5,3.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + pos: 24.5,3.5 + parent: 2 + - uid: 1099 + components: + - type: Transform + pos: 25.5,3.5 + parent: 2 + - uid: 1100 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + pos: 27.5,3.5 + parent: 2 + - uid: 1102 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 1105 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - uid: 1106 + components: + - type: Transform + pos: 40.5,5.5 + parent: 2 + - uid: 1129 + components: + - type: Transform + pos: 43.5,-17.5 + parent: 2 + - uid: 1130 + components: + - type: Transform + pos: 48.5,-17.5 + parent: 2 + - uid: 1131 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 2 + - uid: 1133 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 2 + - uid: 1168 + components: + - type: Transform + pos: 21.5,7.5 + parent: 2 + - uid: 1169 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 + - uid: 1171 + components: + - type: Transform + pos: 40.5,6.5 + parent: 2 + - uid: 1172 + components: + - type: Transform + pos: 40.5,7.5 + parent: 2 + - uid: 1173 + components: + - type: Transform + pos: 40.5,9.5 + parent: 2 + - uid: 1174 + components: + - type: Transform + pos: 40.5,10.5 + parent: 2 + - uid: 1175 + components: + - type: Transform + pos: 40.5,11.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: 39.5,12.5 + parent: 2 + - uid: 1178 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - uid: 1179 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: 40.5,15.5 + parent: 2 + - uid: 1181 + components: + - type: Transform + pos: 41.5,14.5 + parent: 2 + - uid: 1182 + components: + - type: Transform + pos: 42.5,14.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: 43.5,14.5 + parent: 2 + - uid: 1243 + components: + - type: Transform + pos: 50.5,1.5 + parent: 2 + - uid: 1244 + components: + - type: Transform + pos: 50.5,2.5 + parent: 2 + - uid: 1245 + components: + - type: Transform + pos: 50.5,-0.5 + parent: 2 + - uid: 1246 + components: + - type: Transform + pos: 50.5,-1.5 + parent: 2 + - uid: 1276 + components: + - type: Transform + pos: 61.5,62.5 + parent: 2 + - uid: 1324 + components: + - type: Transform + pos: 28.5,1.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 2 + - uid: 1330 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + pos: 39.5,-5.5 + parent: 2 + - uid: 1357 + components: + - type: Transform + pos: 42.5,-4.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + pos: 41.5,-5.5 + parent: 2 + - uid: 1360 + components: + - type: Transform + pos: 42.5,-5.5 + parent: 2 + - uid: 1364 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 2 + - uid: 1369 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 2 + - uid: 1381 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - uid: 1384 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - uid: 1385 + components: + - type: Transform + pos: 39.5,-11.5 + parent: 2 + - uid: 1386 + components: + - type: Transform + pos: 39.5,-10.5 + parent: 2 + - uid: 1387 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 2 + - uid: 1400 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 + - uid: 1401 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 2 + - uid: 1402 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - uid: 1403 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - uid: 1404 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - uid: 1406 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 2 + - uid: 1408 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 2 + - uid: 1409 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 + - uid: 1410 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 2 + - uid: 1417 + components: + - type: Transform + pos: 39.5,-4.5 + parent: 2 + - uid: 1423 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 2 + - uid: 1424 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 1425 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - uid: 1428 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 1429 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 2 + - uid: 1431 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 1433 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 2 + - uid: 1434 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 2 + - uid: 1437 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 2 + - uid: 1441 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - uid: 1447 + components: + - type: Transform + pos: 50.5,18.5 + parent: 2 + - uid: 1458 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 2 + - uid: 1460 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 2 + - uid: 1465 + components: + - type: Transform + pos: 27.5,39.5 + parent: 2 + - uid: 1467 + components: + - type: Transform + pos: 30.5,39.5 + parent: 2 + - uid: 1468 + components: + - type: Transform + pos: 31.5,39.5 + parent: 2 + - uid: 1469 + components: + - type: Transform + pos: 32.5,39.5 + parent: 2 + - uid: 1470 + components: + - type: Transform + pos: 32.5,40.5 + parent: 2 + - uid: 1471 + components: + - type: Transform + pos: 32.5,41.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + pos: 32.5,42.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + pos: 28.5,39.5 + parent: 2 + - uid: 1474 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 1475 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 2 + - uid: 1483 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 1491 + components: + - type: Transform + pos: 44.5,-5.5 + parent: 2 + - uid: 1502 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 1504 + components: + - type: Transform + pos: 49.5,12.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + pos: 51.5,12.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + pos: 51.5,11.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + pos: 42.5,1.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + pos: 43.5,1.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + pos: 44.5,1.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + pos: 44.5,0.5 + parent: 2 + - uid: 1529 + components: + - type: Transform + pos: 43.5,13.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + pos: 43.5,12.5 + parent: 2 + - uid: 1531 + components: + - type: Transform + pos: 41.5,9.5 + parent: 2 + - uid: 1532 + components: + - type: Transform + pos: 42.5,9.5 + parent: 2 + - uid: 1533 + components: + - type: Transform + pos: 43.5,9.5 + parent: 2 + - uid: 1534 + components: + - type: Transform + pos: 43.5,10.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: 51.5,9.5 + parent: 2 + - uid: 1553 + components: + - type: Transform + pos: 51.5,8.5 + parent: 2 + - uid: 1570 + components: + - type: Transform + pos: 36.5,42.5 + parent: 2 + - uid: 1571 + components: + - type: Transform + pos: 36.5,41.5 + parent: 2 + - uid: 1572 + components: + - type: Transform + pos: 36.5,40.5 + parent: 2 + - uid: 1573 + components: + - type: Transform + pos: 36.5,39.5 + parent: 2 + - uid: 1574 + components: + - type: Transform + pos: 37.5,39.5 + parent: 2 + - uid: 1575 + components: + - type: Transform + pos: 39.5,39.5 + parent: 2 + - uid: 1586 + components: + - type: Transform + pos: 35.5,26.5 + parent: 2 + - uid: 1594 + components: + - type: Transform + pos: 36.5,30.5 + parent: 2 + - uid: 1595 + components: + - type: Transform + pos: 35.5,29.5 + parent: 2 + - uid: 1596 + components: + - type: Transform + pos: 35.5,30.5 + parent: 2 + - uid: 1602 + components: + - type: Transform + pos: 43.5,33.5 + parent: 2 + - uid: 1603 + components: + - type: Transform + pos: 43.5,34.5 + parent: 2 + - uid: 1604 + components: + - type: Transform + pos: 43.5,35.5 + parent: 2 + - uid: 1605 + components: + - type: Transform + pos: 44.5,35.5 + parent: 2 + - uid: 1607 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 + - uid: 1608 + components: + - type: Transform + pos: 46.5,35.5 + parent: 2 + - uid: 1627 + components: + - type: Transform + pos: 35.5,27.5 + parent: 2 + - uid: 1628 + components: + - type: Transform + pos: 35.5,28.5 + parent: 2 + - uid: 1715 + components: + - type: Transform + pos: 29.5,24.5 + parent: 2 + - uid: 1723 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - uid: 1724 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 + - uid: 1728 + components: + - type: Transform + pos: 29.5,22.5 + parent: 2 + - uid: 1741 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 + - uid: 1776 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 + - uid: 1884 + components: + - type: Transform + pos: 12.5,25.5 + parent: 2 + - uid: 1887 + components: + - type: Transform + pos: 29.5,26.5 + parent: 2 + - uid: 1888 + components: + - type: Transform + pos: 9.5,25.5 + parent: 2 + - uid: 1924 + components: + - type: Transform + pos: 30.5,26.5 + parent: 2 + - uid: 1954 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 1956 + components: + - type: Transform + pos: 9.5,20.5 + parent: 2 + - uid: 1969 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 + - uid: 1971 + components: + - type: Transform + pos: 57.5,5.5 + parent: 2 + - uid: 1972 + components: + - type: Transform + pos: 57.5,4.5 + parent: 2 + - uid: 1973 + components: + - type: Transform + pos: 57.5,3.5 + parent: 2 + - uid: 1982 + components: + - type: Transform + pos: 61.5,3.5 + parent: 2 + - uid: 1983 + components: + - type: Transform + pos: 62.5,3.5 + parent: 2 + - uid: 1984 + components: + - type: Transform + pos: 63.5,3.5 + parent: 2 + - uid: 1985 + components: + - type: Transform + pos: 63.5,4.5 + parent: 2 + - uid: 1986 + components: + - type: Transform + pos: 63.5,5.5 + parent: 2 + - uid: 1987 + components: + - type: Transform + pos: 63.5,6.5 + parent: 2 + - uid: 1988 + components: + - type: Transform + pos: 63.5,7.5 + parent: 2 + - uid: 1990 + components: + - type: Transform + pos: 63.5,9.5 + parent: 2 + - uid: 1991 + components: + - type: Transform + pos: 63.5,10.5 + parent: 2 + - uid: 1992 + components: + - type: Transform + pos: 63.5,11.5 + parent: 2 + - uid: 1993 + components: + - type: Transform + pos: 63.5,12.5 + parent: 2 + - uid: 1999 + components: + - type: Transform + pos: 63.5,18.5 + parent: 2 + - uid: 2000 + components: + - type: Transform + pos: 63.5,19.5 + parent: 2 + - uid: 2001 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 + - uid: 2043 + components: + - type: Transform + pos: 29.5,28.5 + parent: 2 + - uid: 2141 + components: + - type: Transform + pos: 48.5,-11.5 + parent: 2 + - uid: 2176 + components: + - type: Transform + pos: 49.5,-11.5 + parent: 2 + - uid: 2177 + components: + - type: Transform + pos: 49.5,-12.5 + parent: 2 + - uid: 2178 + components: + - type: Transform + pos: 50.5,-12.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: 42.5,21.5 + parent: 2 + - uid: 2208 + components: + - type: Transform + pos: 41.5,21.5 + parent: 2 + - uid: 2209 + components: + - type: Transform + pos: 40.5,21.5 + parent: 2 + - uid: 2210 + components: + - type: Transform + pos: 40.5,20.5 + parent: 2 + - uid: 2213 + components: + - type: Transform + pos: 40.5,17.5 + parent: 2 + - uid: 2214 + components: + - type: Transform + pos: 41.5,18.5 + parent: 2 + - uid: 2215 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 + - uid: 2216 + components: + - type: Transform + pos: 44.5,18.5 + parent: 2 + - uid: 2217 + components: + - type: Transform + pos: 45.5,18.5 + parent: 2 + - uid: 2218 + components: + - type: Transform + pos: 45.5,17.5 + parent: 2 + - uid: 2219 + components: + - type: Transform + pos: 46.5,18.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + pos: 51.5,18.5 + parent: 2 + - uid: 2225 + components: + - type: Transform + pos: 52.5,18.5 + parent: 2 + - uid: 2231 + components: + - type: Transform + pos: 63.5,20.5 + parent: 2 + - uid: 2236 + components: + - type: Transform + pos: 48.5,22.5 + parent: 2 + - uid: 2237 + components: + - type: Transform + pos: 47.5,22.5 + parent: 2 + - uid: 2239 + components: + - type: Transform + pos: 45.5,22.5 + parent: 2 + - uid: 2240 + components: + - type: Transform + pos: 44.5,22.5 + parent: 2 + - uid: 2241 + components: + - type: Transform + pos: 44.5,21.5 + parent: 2 + - uid: 2266 + components: + - type: Transform + pos: 44.5,26.5 + parent: 2 + - uid: 2268 + components: + - type: Transform + pos: 43.5,26.5 + parent: 2 + - uid: 2269 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 2270 + components: + - type: Transform + pos: 46.5,26.5 + parent: 2 + - uid: 2272 + components: + - type: Transform + pos: 41.5,26.5 + parent: 2 + - uid: 2317 + components: + - type: Transform + pos: 50.5,22.5 + parent: 2 + - uid: 2318 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 + - uid: 2319 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 + - uid: 2320 + components: + - type: Transform + pos: 48.5,26.5 + parent: 2 + - uid: 2321 + components: + - type: Transform + pos: 48.5,27.5 + parent: 2 + - uid: 2322 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 2323 + components: + - type: Transform + pos: 48.5,29.5 + parent: 2 + - uid: 2324 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 + - uid: 2325 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 + - uid: 2326 + components: + - type: Transform + pos: 52.5,28.5 + parent: 2 + - uid: 2327 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 2328 + components: + - type: Transform + pos: 52.5,33.5 + parent: 2 + - uid: 2329 + components: + - type: Transform + pos: 52.5,34.5 + parent: 2 + - uid: 2330 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 2333 + components: + - type: Transform + pos: 53.5,27.5 + parent: 2 + - uid: 2334 + components: + - type: Transform + pos: 53.5,26.5 + parent: 2 + - uid: 2335 + components: + - type: Transform + pos: 53.5,25.5 + parent: 2 + - uid: 2337 + components: + - type: Transform + pos: 53.5,23.5 + parent: 2 + - uid: 2338 + components: + - type: Transform + pos: 53.5,22.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + pos: 53.5,28.5 + parent: 2 + - uid: 2390 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 2437 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 + - uid: 2455 + components: + - type: Transform + pos: 63.5,21.5 + parent: 2 + - uid: 2456 + components: + - type: Transform + pos: 63.5,22.5 + parent: 2 + - uid: 2457 + components: + - type: Transform + pos: 63.5,24.5 + parent: 2 + - uid: 2458 + components: + - type: Transform + pos: 63.5,23.5 + parent: 2 + - uid: 2459 + components: + - type: Transform + pos: 63.5,25.5 + parent: 2 + - uid: 2460 + components: + - type: Transform + pos: 63.5,26.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + pos: 52.5,35.5 + parent: 2 + - uid: 2466 + components: + - type: Transform + pos: 53.5,35.5 + parent: 2 + - uid: 2467 + components: + - type: Transform + pos: 54.5,35.5 + parent: 2 + - uid: 2483 + components: + - type: Transform + pos: 59.5,57.5 + parent: 2 + - uid: 2537 + components: + - type: Transform + pos: 57.5,42.5 + parent: 2 + - uid: 2538 + components: + - type: Transform + pos: 56.5,41.5 + parent: 2 + - uid: 2539 + components: + - type: Transform + pos: 58.5,42.5 + parent: 2 + - uid: 2540 + components: + - type: Transform + pos: 58.5,41.5 + parent: 2 + - uid: 2541 + components: + - type: Transform + pos: 59.5,42.5 + parent: 2 + - uid: 2542 + components: + - type: Transform + pos: 59.5,41.5 + parent: 2 + - uid: 2544 + components: + - type: Transform + pos: 59.5,39.5 + parent: 2 + - uid: 2545 + components: + - type: Transform + pos: 59.5,38.5 + parent: 2 + - uid: 2546 + components: + - type: Transform + pos: 62.5,36.5 + parent: 2 + - uid: 2547 + components: + - type: Transform + pos: 62.5,37.5 + parent: 2 + - uid: 2548 + components: + - type: Transform + pos: 62.5,38.5 + parent: 2 + - uid: 2549 + components: + - type: Transform + pos: 62.5,39.5 + parent: 2 + - uid: 2550 + components: + - type: Transform + pos: 62.5,40.5 + parent: 2 + - uid: 2551 + components: + - type: Transform + pos: 62.5,41.5 + parent: 2 + - uid: 2552 + components: + - type: Transform + pos: 62.5,42.5 + parent: 2 + - uid: 2553 + components: + - type: Transform + pos: 62.5,43.5 + parent: 2 + - uid: 2554 + components: + - type: Transform + pos: 62.5,44.5 + parent: 2 + - uid: 2555 + components: + - type: Transform + pos: 58.5,43.5 + parent: 2 + - uid: 2556 + components: + - type: Transform + pos: 63.5,47.5 + parent: 2 + - uid: 2557 + components: + - type: Transform + pos: 63.5,48.5 + parent: 2 + - uid: 2558 + components: + - type: Transform + pos: 63.5,49.5 + parent: 2 + - uid: 2559 + components: + - type: Transform + pos: 63.5,50.5 + parent: 2 + - uid: 2561 + components: + - type: Transform + pos: 57.5,43.5 + parent: 2 + - uid: 2562 + components: + - type: Transform + pos: 57.5,44.5 + parent: 2 + - uid: 2564 + components: + - type: Transform + pos: 57.5,46.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + pos: 57.5,47.5 + parent: 2 + - uid: 2574 + components: + - type: Transform + pos: 58.5,55.5 + parent: 2 + - uid: 2575 + components: + - type: Transform + pos: 58.5,56.5 + parent: 2 + - uid: 2576 + components: + - type: Transform + pos: 58.5,57.5 + parent: 2 + - uid: 2580 + components: + - type: Transform + pos: 60.5,57.5 + parent: 2 + - uid: 2581 + components: + - type: Transform + pos: 62.5,57.5 + parent: 2 + - uid: 2582 + components: + - type: Transform + pos: 62.5,56.5 + parent: 2 + - uid: 2583 + components: + - type: Transform + pos: 62.5,55.5 + parent: 2 + - uid: 2584 + components: + - type: Transform + pos: 62.5,54.5 + parent: 2 + - uid: 2585 + components: + - type: Transform + pos: 62.5,53.5 + parent: 2 + - uid: 2587 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 2591 + components: + - type: Transform + pos: 60.5,55.5 + parent: 2 + - uid: 2599 + components: + - type: Transform + pos: 62.5,60.5 + parent: 2 + - uid: 2608 + components: + - type: Transform + pos: 61.5,63.5 + parent: 2 + - uid: 2612 + components: + - type: Transform + pos: 59.5,60.5 + parent: 2 + - uid: 2630 + components: + - type: Transform + pos: 59.5,61.5 + parent: 2 + - uid: 2637 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 + - uid: 2761 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 2 + - uid: 2777 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 2 + - uid: 2778 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 2 + - uid: 2782 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 2784 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 2797 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 2 + - uid: 3017 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - uid: 3018 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 + - uid: 3025 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 2 + - uid: 3035 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - uid: 3037 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 2 + - uid: 3038 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 3039 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 3050 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 3052 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 + - uid: 3058 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 3065 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 3068 + components: + - type: Transform + pos: 59.5,55.5 + parent: 2 + - uid: 3087 + components: + - type: Transform + pos: -3.5,16.5 + parent: 2 + - uid: 3106 + components: + - type: Transform + pos: 15.5,40.5 + parent: 2 + - uid: 3452 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 4249 + components: + - type: Transform + pos: 55.5,62.5 + parent: 2 + - uid: 4250 + components: + - type: Transform + pos: 50.5,52.5 + parent: 2 + - uid: 4251 + components: + - type: Transform + pos: 49.5,52.5 + parent: 2 + - uid: 4252 + components: + - type: Transform + pos: 48.5,52.5 + parent: 2 + - uid: 4253 + components: + - type: Transform + pos: 47.5,52.5 + parent: 2 + - uid: 4254 + components: + - type: Transform + pos: 46.5,52.5 + parent: 2 + - uid: 4255 + components: + - type: Transform + pos: 45.5,52.5 + parent: 2 + - uid: 4256 + components: + - type: Transform + pos: 44.5,52.5 + parent: 2 + - uid: 4257 + components: + - type: Transform + pos: 43.5,52.5 + parent: 2 + - uid: 4258 + components: + - type: Transform + pos: 42.5,52.5 + parent: 2 + - uid: 4259 + components: + - type: Transform + pos: 57.5,57.5 + parent: 2 + - uid: 4260 + components: + - type: Transform + pos: 56.5,57.5 + parent: 2 + - uid: 4261 + components: + - type: Transform + pos: 55.5,57.5 + parent: 2 + - uid: 4262 + components: + - type: Transform + pos: 55.5,58.5 + parent: 2 + - uid: 4263 + components: + - type: Transform + pos: 55.5,59.5 + parent: 2 + - uid: 4264 + components: + - type: Transform + pos: 55.5,63.5 + parent: 2 + - uid: 4475 + components: + - type: Transform + pos: 40.5,25.5 + parent: 2 + - uid: 4482 + components: + - type: Transform + pos: 16.5,55.5 + parent: 2 + - uid: 4510 + components: + - type: Transform + pos: 20.5,20.5 + parent: 2 + - uid: 4512 + components: + - type: Transform + pos: 24.5,20.5 + parent: 2 + - uid: 4514 + components: + - type: Transform + pos: 18.5,44.5 + parent: 2 + - uid: 4520 + components: + - type: Transform + pos: 18.5,54.5 + parent: 2 + - uid: 4521 + components: + - type: Transform + pos: 18.5,53.5 + parent: 2 + - uid: 4523 + components: + - type: Transform + pos: 18.5,55.5 + parent: 2 + - uid: 4526 + components: + - type: Transform + pos: 18.5,49.5 + parent: 2 + - uid: 4527 + components: + - type: Transform + pos: 18.5,48.5 + parent: 2 + - uid: 4534 + components: + - type: Transform + pos: 22.5,46.5 + parent: 2 + - uid: 4535 + components: + - type: Transform + pos: 25.5,46.5 + parent: 2 + - uid: 4536 + components: + - type: Transform + pos: 26.5,46.5 + parent: 2 + - uid: 4537 + components: + - type: Transform + pos: 27.5,46.5 + parent: 2 + - uid: 4538 + components: + - type: Transform + pos: 24.5,46.5 + parent: 2 + - uid: 4539 + components: + - type: Transform + pos: 19.5,44.5 + parent: 2 + - uid: 4540 + components: + - type: Transform + pos: 21.5,44.5 + parent: 2 + - uid: 4541 + components: + - type: Transform + pos: 20.5,44.5 + parent: 2 + - uid: 4544 + components: + - type: Transform + pos: 25.5,44.5 + parent: 2 + - uid: 4545 + components: + - type: Transform + pos: 26.5,44.5 + parent: 2 + - uid: 4546 + components: + - type: Transform + pos: 27.5,44.5 + parent: 2 + - uid: 4548 + components: + - type: Transform + pos: 29.5,44.5 + parent: 2 + - uid: 4549 + components: + - type: Transform + pos: 30.5,44.5 + parent: 2 + - uid: 4550 + components: + - type: Transform + pos: 31.5,44.5 + parent: 2 + - uid: 4551 + components: + - type: Transform + pos: 32.5,44.5 + parent: 2 + - uid: 4552 + components: + - type: Transform + pos: 33.5,44.5 + parent: 2 + - uid: 4553 + components: + - type: Transform + pos: 34.5,44.5 + parent: 2 + - uid: 4554 + components: + - type: Transform + pos: 35.5,44.5 + parent: 2 + - uid: 4555 + components: + - type: Transform + pos: 22.5,44.5 + parent: 2 + - uid: 4569 + components: + - type: Transform + pos: 57.5,53.5 + parent: 2 + - uid: 4590 + components: + - type: Transform + pos: 57.5,45.5 + parent: 2 + - uid: 4767 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 + - uid: 4768 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - uid: 4774 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 2 + - uid: 4778 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 4782 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 4790 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 4796 + components: + - type: Transform + pos: 45.5,-9.5 + parent: 2 + - uid: 4807 + components: + - type: Transform + pos: 46.5,-1.5 + parent: 2 + - uid: 4897 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - uid: 4925 + components: + - type: Transform + pos: 51.5,6.5 + parent: 2 + - uid: 4929 + components: + - type: Transform + pos: 57.5,41.5 + parent: 2 + - uid: 5031 + components: + - type: Transform + pos: 28.5,44.5 + parent: 2 + - uid: 5045 + components: + - type: Transform + pos: 56.5,42.5 + parent: 2 + - uid: 5232 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 5240 + components: + - type: Transform + pos: 12.5,28.5 + parent: 2 + - uid: 5289 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 5355 + components: + - type: Transform + pos: 59.5,40.5 + parent: 2 + - uid: 5406 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 2 + - uid: 5408 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 2 + - uid: 5417 + components: + - type: Transform + pos: 49.5,28.5 + parent: 2 + - uid: 5418 + components: + - type: Transform + pos: 48.5,28.5 + parent: 2 + - uid: 5434 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 5458 + components: + - type: Transform + pos: 48.5,18.5 + parent: 2 + - uid: 5499 + components: + - type: Transform + pos: 14.5,23.5 + parent: 2 + - uid: 5531 + components: + - type: Transform + pos: 60.5,10.5 + parent: 2 + - uid: 5578 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 2 + - uid: 5602 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 + - uid: 5628 + components: + - type: Transform + pos: 57.5,7.5 + parent: 2 + - uid: 5633 + components: + - type: Transform + pos: 51.5,7.5 + parent: 2 + - uid: 5647 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 2 + - uid: 5699 + components: + - type: Transform + pos: 53.5,24.5 + parent: 2 + - uid: 5703 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 2 + - uid: 5720 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 2 + - uid: 5725 + components: + - type: Transform + pos: 31.5,32.5 + parent: 2 + - uid: 5841 + components: + - type: Transform + pos: 44.5,-11.5 + parent: 2 + - uid: 5893 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 + - uid: 5955 + components: + - type: Transform + pos: 48.5,19.5 + parent: 2 + - uid: 6005 + components: + - type: Transform + pos: 30.5,28.5 + parent: 2 + - uid: 6037 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 2 + - uid: 6052 + components: + - type: Transform + pos: 61.5,61.5 + parent: 2 + - uid: 6062 + components: + - type: Transform + pos: 9.5,28.5 + parent: 2 + - uid: 6149 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 6160 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 6734 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 2 + - uid: 6852 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 + - uid: 6868 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 2 + - uid: 6974 + components: + - type: Transform + pos: 60.5,5.5 + parent: 2 + - uid: 6975 + components: + - type: Transform + pos: 60.5,6.5 + parent: 2 + - uid: 6977 + components: + - type: Transform + pos: 60.5,7.5 + parent: 2 + - uid: 6978 + components: + - type: Transform + pos: 59.5,5.5 + parent: 2 + - uid: 6979 + components: + - type: Transform + pos: 60.5,9.5 + parent: 2 + - uid: 7095 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 + - uid: 7462 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - uid: 7497 + components: + - type: Transform + pos: 39.5,-12.5 + parent: 2 +- proto: WallSolidRust + entities: + - uid: 432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,44.5 + parent: 2 + - uid: 1453 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 2 + - uid: 1454 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 2 + - uid: 1455 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 2 + - uid: 4346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2 + - uid: 4349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 + - uid: 4355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - uid: 4357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 2 + - uid: 4360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 2 + - uid: 4367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,2.5 + parent: 2 + - uid: 4370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,3.5 + parent: 2 + - uid: 4372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + - uid: 4374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 2 + - uid: 4377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 2 + - uid: 4382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 2 + - uid: 4385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,14.5 + parent: 2 + - uid: 4388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,15.5 + parent: 2 + - uid: 4390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,16.5 + parent: 2 + - uid: 4391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 2 + - uid: 4396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,19.5 + parent: 2 + - uid: 4397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,19.5 + parent: 2 + - uid: 4408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,19.5 + parent: 2 + - uid: 4411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,19.5 + parent: 2 + - uid: 4415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,18.5 + parent: 2 + - uid: 4416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,8.5 + parent: 2 + - uid: 4418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,8.5 + parent: 2 + - uid: 4423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,8.5 + parent: 2 + - uid: 4424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,17.5 + parent: 2 + - uid: 4425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,17.5 + parent: 2 + - uid: 4426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,17.5 + parent: 2 + - uid: 4428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,17.5 + parent: 2 + - uid: 4431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,17.5 + parent: 2 + - uid: 4432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,17.5 + parent: 2 + - uid: 4433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,17.5 + parent: 2 + - uid: 4434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,17.5 + parent: 2 + - uid: 4445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,13.5 + parent: 2 + - uid: 4446 + components: + - type: Transform + pos: 22.5,40.5 + parent: 2 + - uid: 4451 + components: + - type: Transform + pos: 21.5,40.5 + parent: 2 + - uid: 4452 + components: + - type: Transform + pos: 20.5,40.5 + parent: 2 + - uid: 4453 + components: + - type: Transform + pos: 19.5,40.5 + parent: 2 + - uid: 4454 + components: + - type: Transform + pos: 18.5,40.5 + parent: 2 + - uid: 4455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 2 + - uid: 4456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,24.5 + parent: 2 + - uid: 4457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,24.5 + parent: 2 + - uid: 4458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,24.5 + parent: 2 + - uid: 4476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-13.5 + parent: 2 + - uid: 4477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-13.5 + parent: 2 + - uid: 4478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-13.5 + parent: 2 + - uid: 4479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,12.5 + parent: 2 + - uid: 4483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,54.5 + parent: 2 + - uid: 4484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,53.5 + parent: 2 + - uid: 4487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,52.5 + parent: 2 + - uid: 4508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,20.5 + parent: 2 + - uid: 4509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,20.5 + parent: 2 + - uid: 4511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,20.5 + parent: 2 + - uid: 4513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,32.5 + parent: 2 + - uid: 4515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,10.5 + parent: 2 + - uid: 4516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,11.5 + parent: 2 + - uid: 4517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,11.5 + parent: 2 + - uid: 4518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,11.5 + parent: 2 + - uid: 4519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,4.5 + parent: 2 + - uid: 4522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,3.5 + parent: 2 + - uid: 4524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,8.5 + parent: 2 + - uid: 4525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,13.5 + parent: 2 + - uid: 4528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,14.5 + parent: 2 + - uid: 4529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,15.5 + parent: 2 + - uid: 4530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,16.5 + parent: 2 + - uid: 4531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,17.5 + parent: 2 + - uid: 4532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,18.5 + parent: 2 + - uid: 4533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,18.5 + parent: 2 + - uid: 4542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,19.5 + parent: 2 + - uid: 4543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,18.5 + parent: 2 + - uid: 4581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,18.5 + parent: 2 + - uid: 4721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,18.5 + parent: 2 + - uid: 4722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,48.5 + parent: 2 + - uid: 4753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,49.5 + parent: 2 + - uid: 4754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,50.5 + parent: 2 + - uid: 4756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,51.5 + parent: 2 + - uid: 4818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,52.5 + parent: 2 + - uid: 4841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,54.5 + parent: 2 + - uid: 4965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,54.5 + parent: 2 + - uid: 5019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,51.5 + parent: 2 + - uid: 5023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,49.5 + parent: 2 + - uid: 5107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,48.5 + parent: 2 + - uid: 5229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,47.5 + parent: 2 + - uid: 5238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,46.5 + parent: 2 + - uid: 5285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,45.5 + parent: 2 + - uid: 5286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,52.5 + parent: 2 + - uid: 5287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,50.5 + parent: 2 + - uid: 5288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,51.5 + parent: 2 + - uid: 5291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,22.5 + parent: 2 + - uid: 5294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,21.5 + parent: 2 + - uid: 5334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,47.5 + parent: 2 + - uid: 5542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,46.5 + parent: 2 + - uid: 5552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,46.5 + parent: 2 + - uid: 5571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,46.5 + parent: 2 + - uid: 5585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,46.5 + parent: 2 + - uid: 6031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,15.5 + parent: 2 + - uid: 6064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,15.5 + parent: 2 + - uid: 6098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,15.5 + parent: 2 + - uid: 6110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,46.5 + parent: 2 + - uid: 6114 + components: + - type: Transform + pos: 23.5,44.5 + parent: 2 + - uid: 6118 + components: + - type: Transform + pos: 24.5,44.5 + parent: 2 + - uid: 6141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,4.5 + parent: 2 + - uid: 6940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,17.5 + parent: 2 + - uid: 6941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,3.5 + parent: 2 + - uid: 7141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,11.5 + parent: 2 +- proto: WardrobeBlackFilled + entities: + - uid: 7009 + components: + - type: Transform + pos: 58.5,51.5 + parent: 2 +- proto: WardrobeBlueFilled + entities: + - uid: 7010 + components: + - type: Transform + pos: 58.5,50.5 + parent: 2 +- proto: WardrobeChapelFilled + entities: + - uid: 6921 + components: + - type: Transform + pos: -0.5,18.5 + parent: 2 +- proto: WardrobeMixedFilled + entities: + - uid: 33 + components: + - type: Transform + pos: 8.5,0.5 + parent: 2 + - uid: 34 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - uid: 7012 + components: + - type: Transform + pos: 58.5,46.5 + parent: 2 +- proto: WardrobePinkFilled + entities: + - uid: 7011 + components: + - type: Transform + pos: 58.5,47.5 + parent: 2 +- proto: WardrobePrisonFilled + entities: + - uid: 793 + components: + - type: Transform + pos: 44.5,-4.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + pos: 41.5,-4.5 + parent: 2 + - uid: 1490 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 2 +- proto: WaterCooler + entities: + - uid: 552 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 2385 + components: + - type: Transform + pos: 54.5,19.5 + parent: 2 +- proto: WaterTankFull + entities: + - uid: 6972 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 +- proto: WaterTankHighCapacity + entities: + - uid: 6924 + components: + - type: Transform + pos: -3.5,7.5 + parent: 2 +- proto: WaterVaporCanister + entities: + - uid: 1670 + components: + - type: Transform + pos: 17.5,42.5 + parent: 2 +- proto: WeaponCapacitorRecharger + entities: + - uid: 1294 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 7550 + components: + - type: Transform + pos: 48.5,1.5 + parent: 2 + - uid: 7553 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 +- proto: WeldingFuelTankFull + entities: + - uid: 7021 + components: + - type: Transform + pos: 40.5,-15.5 + parent: 2 +- proto: Windoor + entities: + - uid: 362 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 1349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,2.5 + parent: 2 + - uid: 1444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-7.5 + parent: 2 + - uid: 2044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,16.5 + parent: 2 + - uid: 2045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,11.5 + parent: 2 + - uid: 2046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,11.5 + parent: 2 + - uid: 2271 + components: + - type: Transform + pos: 45.5,26.5 + parent: 2 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 1445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-7.5 + parent: 2 +- proto: WindoorSecureChapelLocked + entities: + - uid: 356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,12.5 + parent: 2 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 556 + components: + - type: Transform + pos: 25.5,8.5 + parent: 2 +- proto: WindoorSecureCommandLocked + entities: + - uid: 2399 + components: + - type: Transform + pos: 59.5,26.5 + parent: 2 + - uid: 2400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,25.5 + parent: 2 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 2645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 2 + - uid: 4579 + components: + - type: Transform + pos: 58.5,61.5 + parent: 2 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 2267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,26.5 + parent: 2 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 555 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 +- proto: WindoorSecureSecurityLawyerLocked + entities: + - uid: 1348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,2.5 + parent: 2 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 792 + components: + - type: Transform + pos: 40.5,-5.5 + parent: 2 + - uid: 1358 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - uid: 1375 + components: + - type: Transform + pos: 43.5,-5.5 + parent: 2 +- proto: WindowDirectional + entities: + - uid: 542 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 543 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 + - uid: 544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,11.5 + parent: 2 + - uid: 545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,12.5 + parent: 2 + - uid: 2027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,13.5 + parent: 2 + - uid: 2028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,14.5 + parent: 2 + - uid: 2029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,12.5 + parent: 2 +- proto: WindowReinforcedDirectional + entities: + - uid: 309 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 + - uid: 310 + components: + - type: Transform + pos: -5.5,13.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 312 + components: + - type: Transform + pos: -3.5,13.5 + parent: 2 + - uid: 313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,11.5 + parent: 2 + - uid: 314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,11.5 + parent: 2 + - uid: 315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,11.5 + parent: 2 + - uid: 316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 365 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 + - uid: 366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 2 + - uid: 367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 2 + - uid: 417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 2 + - uid: 418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + - uid: 419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 2 + - uid: 1936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,39.5 + parent: 2 + - uid: 1937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,38.5 + parent: 2 + - uid: 2600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,62.5 + parent: 2 + - uid: 2601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,61.5 + parent: 2 + - uid: 4580 + components: + - type: Transform + pos: 57.5,61.5 + parent: 2 +- proto: WoodDoor + entities: + - uid: 695 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 + - uid: 7157 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 +... diff --git a/Resources/Maps/Shuttles/emergency_relic.yml b/Resources/Maps/Shuttles/emergency_relic.yml new file mode 100644 index 0000000000..c724cbc514 --- /dev/null +++ b/Resources/Maps/Shuttles/emergency_relic.yml @@ -0,0 +1,1329 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 32: FloorDark + 3: FloorShuttleBlack + 4: FloorShuttleBlue + 1: FloorShuttleGrey + 5: FloorShuttleRed + 2: FloorShuttleWhite + 98: FloorSteel + 116: FloorWhite + 129: Lattice + 130: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - uid: 2 + components: + - type: MetaData + name: grid + - type: Transform + pos: -7.6484375,2.8046875 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAQAAAAAABQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAQAAAAAABQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAIAAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAwAAAAAAIAAAAAAAAwAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAgQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + tiles: + 1,0: + 0: 8 + 1: 2048 + 1,-1: + 0: 34816 + 1: 8 + 2,0: + 1: 30577 + 1,1: + 1: 8 + 0: 32768 + 2,1: + 1: 52209 + 1,2: + 0: 136 + 2,2: + 0: 241 + 1: 12 + 2,-1: + 1: 65523 + 3,0: + 1: 32628 + 0: 8 + 3,1: + 1: 5756 + 0: 32768 + 3,2: + 1: 1 + 0: 252 + 3,-1: + 1: 30590 + 0: 34816 + 1,-2: + 0: 8 + 1: 2048 + 2,-2: + 0: 31 + 1: 57280 + 2,-3: + 0: 49152 + 3,-3: + 0: 4096 + 3,-2: + 0: 79 + 1: 24336 + uniqueMixes: + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockCommand + entities: + - uid: 86 + components: + - type: Transform + pos: 11.5,6.5 + parent: 2 +- proto: AirlockEngineering + entities: + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 2 + - uid: 119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-5.5 + parent: 2 +- proto: AirlockGlassShuttle + entities: + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-5.5 + parent: 2 + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 2 + - uid: 19 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,4.5 + parent: 2 + - uid: 27 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,2.5 + parent: 2 + - uid: 28 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 2 + - uid: 34 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 2 + - uid: 38 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 2 + - uid: 39 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 2 +- proto: APCBasic + entities: + - uid: 147 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 120 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - uid: 121 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 2 + - uid: 123 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 2 + - uid: 126 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - uid: 128 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 129 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 2 + - uid: 130 + components: + - type: Transform + pos: 14.5,0.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: 14.5,1.5 + parent: 2 + - uid: 132 + components: + - type: Transform + pos: 14.5,2.5 + parent: 2 + - uid: 133 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 134 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 135 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 + - uid: 156 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 158 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 + - uid: 159 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 2 + - uid: 160 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 2 + - uid: 161 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 + - uid: 162 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 2 + - uid: 163 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 164 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 165 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 166 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 167 + components: + - type: Transform + pos: 8.5,0.5 + parent: 2 + - uid: 168 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 169 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 170 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 171 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 172 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 173 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 174 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 175 + components: + - type: Transform + pos: 11.5,5.5 + parent: 2 + - uid: 176 + components: + - type: Transform + pos: 11.5,6.5 + parent: 2 + - uid: 177 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 +- proto: CableHV + entities: + - uid: 110 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 + - uid: 111 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 114 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 + - uid: 116 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 +- proto: CableMV + entities: + - uid: 117 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 + - uid: 118 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - uid: 124 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 +- proto: CableTerminal + entities: + - uid: 115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-5.5 + parent: 2 +- proto: Chair + entities: + - uid: 5 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 2 + - uid: 87 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - uid: 90 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 2 + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-2.5 + parent: 2 + - uid: 92 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 2 + - uid: 93 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-2.5 + parent: 2 + - uid: 94 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-2.5 + parent: 2 + - uid: 145 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 + - uid: 146 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - uid: 179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 2 + - uid: 182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 2 + - uid: 183 + components: + - type: Transform + pos: 14.5,6.5 + parent: 2 + - uid: 184 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 + - uid: 204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,1.5 + parent: 2 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 202 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,4.5 + parent: 2 +- proto: ComputerShuttle + entities: + - uid: 180 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,0.5 + parent: 2 +- proto: GravityGeneratorMini + entities: + - uid: 25 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 +- proto: Grille + entities: + - uid: 70 + components: + - type: Transform + pos: 15.5,0.5 + parent: 2 + - uid: 71 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 2 + - uid: 72 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 2 + - uid: 73 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 2 + - uid: 74 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 75 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - uid: 76 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 2 + - uid: 77 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - uid: 78 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 79 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 + - uid: 80 + components: + - type: Transform + pos: 10.5,9.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: 15.5,6.5 + parent: 2 +- proto: Gyroscope + entities: + - uid: 14 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 +- proto: Handcuffs + entities: + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.495743,2.4941006 + parent: 2 +- proto: LockerWallMedicalDoctorFilled + entities: + - uid: 189 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 +- proto: MedkitBruteFilled + entities: + - uid: 187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.384598,2.705699 + parent: 2 +- proto: MedkitBurnFilled + entities: + - uid: 186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.822098,2.205699 + parent: 2 +- proto: MedkitFilled + entities: + - uid: 155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.728348,2.752574 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.431473,2.252574 + parent: 2 +- proto: PortableGeneratorPacman + entities: + - uid: 16 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 +- proto: PoweredlightLED + entities: + - uid: 190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 2 + - uid: 191 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - uid: 192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 2 + - uid: 193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 2 + - uid: 194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 2 + - uid: 195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,6.5 + parent: 2 + - uid: 196 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 2 + - uid: 198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,2.5 + parent: 2 + - uid: 199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,5.5 + parent: 2 + - uid: 200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 2 +- proto: ShuttleWindow + entities: + - uid: 7 + components: + - type: Transform + pos: 15.5,6.5 + parent: 2 + - uid: 11 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 2 + - uid: 15 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 2 + - uid: 20 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - uid: 21 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - uid: 35 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 2 + - uid: 44 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: 15.5,0.5 + parent: 2 + - uid: 54 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 + - uid: 55 + components: + - type: Transform + pos: 10.5,9.5 + parent: 2 + - uid: 65 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 113 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 +- proto: StasisBed + entities: + - uid: 152 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 153 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 112 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 +- proto: Table + entities: + - uid: 154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 2 + - uid: 203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 2 +- proto: Thruster + entities: + - uid: 12 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 2 + - uid: 32 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 2 + - uid: 40 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-8.5 + parent: 2 + - uid: 41 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 2 + - uid: 46 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-7.5 + parent: 2 + - uid: 51 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 + - uid: 52 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,9.5 + parent: 2 + - uid: 58 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 2 + - uid: 59 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 2 + - uid: 62 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 2 + - uid: 68 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,8.5 + parent: 2 + - uid: 69 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,8.5 + parent: 2 +- proto: WallShuttle + entities: + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 2 + - uid: 4 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - uid: 6 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,1.5 + parent: 2 + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-4.5 + parent: 2 + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 2 + - uid: 17 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 2 + - uid: 18 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 2 + - uid: 22 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,3.5 + parent: 2 + - uid: 23 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,5.5 + parent: 2 + - uid: 30 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-6.5 + parent: 2 + - uid: 31 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-7.5 + parent: 2 + - uid: 33 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 2 + - uid: 36 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 2 + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 2 + - uid: 42 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 2 + - uid: 43 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 2 + - uid: 47 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 2 + - uid: 48 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 2 + - uid: 63 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - uid: 67 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 +- proto: WallShuttleDiagonal + entities: + - uid: 24 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,7.5 + parent: 2 + - uid: 29 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 45 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-7.5 + parent: 2 + - uid: 53 + components: + - type: Transform + pos: 9.5,9.5 + parent: 2 + - uid: 56 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,8.5 + parent: 2 + - uid: 57 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 2 + - uid: 60 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 2 + - uid: 66 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 84 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,6.5 + parent: 2 + - uid: 85 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,6.5 + parent: 2 + - uid: 95 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 2 +- proto: WallShuttleInterior + entities: + - uid: 26 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 + - uid: 64 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 81 + components: + - type: Transform + pos: 12.5,6.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 89 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - uid: 98 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 99 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 + - uid: 101 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 + - uid: 103 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: 11.5,2.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: 11.5,1.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - uid: 108 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 + - uid: 109 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 143 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 + - uid: 149 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 181 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 2 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,2.5 + parent: 2 +- proto: WindowReinforcedDirectional + entities: + - uid: 136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,3.5 + parent: 2 + - uid: 138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,1.5 + parent: 2 + - uid: 139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 2 + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 2 +... diff --git a/Resources/Prototypes/Maps/Relic.yml b/Resources/Prototypes/Maps/Relic.yml new file mode 100644 index 0000000000..ff86796d0d --- /dev/null +++ b/Resources/Prototypes/Maps/Relic.yml @@ -0,0 +1,61 @@ +- type: gameMap + id: Relic + mapName: 'Relic' + mapPath: /Maps/Relic.yml + minPlayers: 20 + maxPlayers: 55 + stations: + Relic: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Relic Station {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_relic.yml + - type: StationJobs + availableJobs: + #command + Captain: [ 1, 1 ] + #service + HeadOfPersonnel: [ 1, 1 ] + Bartender: [ 1, 1 ] + Botanist: [ 1, 2 ] + Chef: [ 1, 1 ] + Janitor: [ 1, 1 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + #engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 2, 2 ] + StationEngineer: [ 2, 2 ] + TechnicalAssistant: [ 2, 2 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 1, 1 ] + MedicalDoctor: [ 2, 2 ] + Paramedic: [ 1, 1 ] + MedicalIntern: [ 2, 2 ] + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 1, 3 ] + ResearchAssistant: [ 2, 2 ] + #security + HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + SecurityOfficer: [ 1, 2 ] + Detective: [ 1, 1 ] + SecurityCadet: [ 2, 2 ] + Lawyer: [ 1, 1 ] + #supply + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 1, 2 ] + CargoTechnician: [ 2, 2 ] + #civilian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + #silicon + StationAi: [ 1, 1 ] + Borg: [ 2, 2 ] From d8db4a66fd93bcd8646ee15d2a762557af300372 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 9 Feb 2025 23:25:20 +0000 Subject: [PATCH 162/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a4ca6e43d7..69bfa6c871 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: Guidebook books now do damage like default writeable books. - type: Fix - id: 7424 - time: '2024-09-23T11:12:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32403 - author: Jophire changes: - message: VIM mech now can open maintenance doors! @@ -3897,3 +3890,10 @@ id: 7923 time: '2025-02-09T22:16:17.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35008 +- author: Vortebo + changes: + - message: Added Relic station. + type: Add + id: 7924 + time: '2025-02-09T23:24:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34988 From 27e54832d9b72724059790ecc634a795bc8f8e62 Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Sun, 9 Feb 2025 15:41:13 -0800 Subject: [PATCH 163/313] Misc Loop improvements (#34997) * misc loop improvements * fixgridatmos * god help me --- Resources/Maps/loop.yml | 2802 ++++++++++++--------------------------- 1 file changed, 881 insertions(+), 1921 deletions(-) diff --git a/Resources/Maps/loop.yml b/Resources/Maps/loop.yml index b9383f0dbe..267d1c78c0 100644 --- a/Resources/Maps/loop.yml +++ b/Resources/Maps/loop.yml @@ -73,7 +73,7 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: HwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + tiles: HwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 -2,0: ind: -2,0 @@ -81,19 +81,19 @@ entities: version: 6 -2,-1: ind: -2,-1 - tiles: HwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHgAAAAACJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHgAAAAABHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHwAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAA + tiles: HwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAIgAAAAAAHQAAAAAAHgAAAAACJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHgAAAAABHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHwAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: HwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAACIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAACIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAACIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + tiles: HQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAACIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAACIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAJgAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAACIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHgAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAA + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAA + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAA version: 6 0,-2: ind: 0,-2 @@ -383,6 +383,60 @@ entities: 2215: 10,13 2216: 10,15 2217: 10,17 + - node: + angle: -1.5707963267948966 rad + color: '#00FFFFFF' + id: ArrowsGreyscale + decals: + 2409: -2,-16 + 2410: -2,-18 + - node: + color: '#00FFFFFF' + id: ArrowsGreyscale + decals: + 2434: -8,-10 + 2435: -10,-10 + - node: + angle: 1.5707963267948966 rad + color: '#00FFFFFF' + id: ArrowsGreyscale + decals: + 2411: -16,-18 + 2412: -16,-16 + - node: + angle: 3.141592653589793 rad + color: '#00FFFFFF' + id: ArrowsGreyscale + decals: + 2436: -8,-24 + 2437: -10,-24 + - node: + angle: -1.5707963267948966 rad + color: '#A020F0FF' + id: ArrowsGreyscale + decals: + 2423: -2,-21 + 2424: -2,-13 + - node: + color: '#A020F0FF' + id: ArrowsGreyscale + decals: + 2442: -13,-10 + 2443: -5,-10 + - node: + angle: 1.5707963267948966 rad + color: '#A020F0FF' + id: ArrowsGreyscale + decals: + 2421: -16,-21 + 2422: -16,-13 + - node: + angle: 3.141592653589793 rad + color: '#A020F0FF' + id: ArrowsGreyscale + decals: + 2444: -5,-24 + 2445: -13,-24 - node: cleanable: True color: '#FF0000FF' @@ -479,6 +533,29 @@ entities: 2098: -46,46 2207: -3,65 2208: -3,64 + - node: + color: '#00FFFFFF' + id: BotGreyscale + decals: + 2401: -8,-16 + 2402: -8,-18 + 2403: -10,-18 + 2404: -10,-16 + 2429: -3,-2 + - node: + color: '#A020F0FF' + id: BotGreyscale + decals: + 2426: -4,-2 + - node: + angle: 1.5707963267948966 rad + color: '#A020F0FF' + id: BotGreyscale + decals: + 2413: -13,-13 + 2414: -13,-21 + 2415: -5,-21 + 2416: -5,-13 - node: color: '#FFFFFFFF' id: BotLeft @@ -511,6 +588,42 @@ entities: 1706: 12,73 1707: 13,72 1708: 12,71 + 2447: -24,-4 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Box + decals: + 2446: -9,-17 + - node: + color: '#00FFFFFF' + id: BoxGreyscale + decals: + 2405: -2,-16 + 2406: -2,-18 + 2407: -16,-16 + 2408: -16,-18 + 2430: -10,-24 + 2431: -8,-24 + 2432: -10,-10 + 2433: -8,-10 + - node: + color: '#A020F0FF' + id: BoxGreyscale + decals: + 2438: -13,-10 + 2439: -5,-10 + 2440: -5,-24 + 2441: -13,-24 + - node: + angle: 1.5707963267948966 rad + color: '#A020F0FF' + id: BoxGreyscale + decals: + 2417: -16,-21 + 2418: -2,-21 + 2419: -2,-13 + 2420: -16,-13 - node: color: '#00B400FF' id: BrickBoxOverlay @@ -1953,6 +2066,20 @@ entities: 373: -22,46 374: -19,46 375: -16,46 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 2373: -10,-7 + 2374: -10,-8 + 2375: -10,-9 + 2376: -9,-9 + 2377: -9,-8 + 2378: -9,-7 + 2379: -8,-7 + 2380: -8,-8 + 2381: -8,-9 - node: color: '#FFFFFFFF' id: Delivery @@ -2515,6 +2642,16 @@ entities: 2042: -48,61 2043: -48,60 2044: -48,59 + - node: + color: '#00FFFFFF' + id: LoadingAreaGreyscale + decals: + 2428: -3,-3 + - node: + color: '#A020F0FF' + id: LoadingAreaGreyscale + decals: + 2427: -4,-3 - node: color: '#FED83DFF' id: MiniTileCornerOverlayNW @@ -2755,6 +2892,12 @@ entities: id: SpaceStationSign7 decals: 155: -20,53 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 2360: -11,-8 - node: color: '#FFFFFFFF' id: StandClear @@ -2767,6 +2910,12 @@ entities: 1714: 11,72 1715: 13,72 1716: 12,73 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 2359: -7,-8 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale @@ -2782,33 +2931,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale90 decals: 562: -48,43 - - node: - color: '#EFB34196' - id: WarnBox - decals: - 57: -11,-5 - 58: -10,-5 - 59: -9,-5 - 62: -7,-5 - 64: -8,-5 - - node: - color: '#EFEC0893' - id: WarnBox - decals: - 84: -11,-5 - 85: -10,-5 - 86: -9,-5 - 87: -8,-5 - 88: -7,-5 - - node: - color: '#FFFF0093' - id: WarnBox - decals: - 105: -11,-5 - 106: -10,-5 - 107: -9,-5 - 108: -8,-5 - 109: -7,-5 - node: color: '#EFB34196' id: WarnCornerNE @@ -2849,48 +2971,20 @@ entities: id: WarnCornerNW decals: 1892: -29,41 - - node: - color: '#EFB34196' - id: WarnCornerSE - decals: - 66: -7,-4 - - node: - color: '#EFEC0893' - id: WarnCornerSE - decals: - 90: -7,-4 - - node: - color: '#FFFF0093' - id: WarnCornerSE - decals: - 110: -7,-4 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: 1894: -24,40 1989: 30,31 - - node: - color: '#EFB34196' - id: WarnCornerSW - decals: - 65: -11,-4 - - node: - color: '#EFEC0893' - id: WarnCornerSW - decals: - 89: -11,-4 - - node: - color: '#FFFF0093' - id: WarnCornerSW - decals: - 113: -11,-4 + 2393: -7,-5 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: 1895: -29,40 1990: 28,31 + 2392: -11,-5 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE @@ -2901,6 +2995,14 @@ entities: id: WarnCornerSmallNW decals: 2219: -27,41 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnFull + decals: + 2388: -10,-5 + 2389: -8,-5 + 2390: -9,-5 - node: color: '#EFB34196' id: WarnLineE @@ -2927,27 +3029,7 @@ entities: id: WarnLineE decals: 1903: -26,42 - - node: - color: '#EFB34196' - id: WarnLineN - decals: - 81: -10,-4 - 82: -9,-4 - 83: -8,-4 - - node: - color: '#EFEC0893' - id: WarnLineN - decals: - 102: -10,-4 - 103: -9,-4 - 104: -8,-4 - - node: - color: '#FFFF0093' - id: WarnLineN - decals: - 123: -10,-4 - 124: -9,-4 - 125: -8,-4 + 2394: -7,-4 - node: color: '#FFFFFFFF' id: WarnLineN @@ -2982,6 +3064,7 @@ entities: id: WarnLineS decals: 1904: -27,42 + 2391: -11,-4 - node: color: '#EFB34196' id: WarnLineW @@ -3009,11 +3092,6 @@ entities: decals: 1896: -28,41 1897: -25,41 - - node: - color: '#FFFFFFFF' - id: ampersand - decals: - 2284: -45.4301,24.93363 - node: cleanable: True color: '#FF0000FF' @@ -3245,17 +3323,17 @@ entities: 2: 14111 0: 2048 -1,-4: - 2: 64716 + 0: 52428 + 2: 12288 0,-3: 2: 13107 -1,-3: - 2: 65484 + 0: 65484 0,-2: - 2: 23 - 0: 64512 + 2: 7 + 0: 64528 -1,-2: - 2: 255 - 0: 30464 + 0: 30719 1,-4: 0: 65535 1,-3: @@ -3376,81 +3454,101 @@ entities: -6,-3: 2: 15 -6,-2: - 2: 240 - 0: 45056 + 2: 62 + 0: 47104 -6,-5: 0: 4112 2: 15 -5,-4: - 2: 52429 + 2: 17477 + 0: 34952 -5,-3: - 2: 61167 + 2: 26215 + 0: 34952 -5,-2: - 2: 254 - 0: 61440 + 2: 7 + 0: 65288 -5,-5: - 2: 52431 + 2: 17479 + 0: 34952 -4,-4: - 2: 63897 + 0: 37137 + 2: 26760 -4,-3: - 2: 65433 + 0: 65297 + 2: 136 -4,-2: - 2: 255 - 0: 41472 + 0: 41711 -4,-5: - 2: 63897 + 0: 4369 + 2: 59528 -3,-4: - 2: 63628 + 2: 63714 + 0: 12 -3,-3: - 2: 65416 + 0: 65280 + 2: 136 -3,-2: - 2: 255 - 0: 61440 + 0: 61695 -3,-5: - 2: 64648 + 2: 13032 + 0: 52224 -2,-4: - 2: 63625 + 0: 32769 + 2: 30906 -2,-3: - 2: 65416 + 0: 65280 + 2: 136 -2,-2: - 2: 255 - 0: 47104 + 0: 47359 -2,-5: - 2: 63880 + 0: 4352 + 2: 60088 -1,-1: 0: 1911 -1,-5: - 2: 64716 + 0: 52428 + 2: 12288 -4,-8: 2: 3840 -5,-8: 2: 35908 -5,-7: - 2: 52299 + 2: 19531 + 0: 32768 -4,-7: - 2: 65280 + 2: 3840 + 0: 61440 -4,-6: - 2: 63903 + 0: 37151 + 2: 26752 -5,-6: - 2: 52428 + 0: 34952 + 2: 17476 -3,-8: 2: 3840 -3,-7: - 2: 65408 + 2: 3968 + 0: 61440 -3,-6: - 2: 63631 + 0: 15 + 2: 63616 -2,-8: 2: 3840 -2,-7: - 2: 65280 + 2: 3840 + 0: 61440 -2,-6: - 2: 63631 + 0: 32783 + 2: 30848 -1,-8: 2: 3840 -1,-7: - 2: 65280 + 2: 3840 + 0: 61440 -1,-6: - 2: 64719 + 0: 52431 + 2: 12288 0,-8: 2: 4352 0,-7: @@ -3565,11 +3663,11 @@ entities: -8,6: 0: 60671 -9,6: - 0: 28671 + 0: 20479 -8,7: - 0: 65278 + 0: 65262 -9,7: - 0: 65535 + 0: 61166 -8,8: 0: 14574 -7,5: @@ -3617,8 +3715,7 @@ entities: -11,6: 0: 7679 -11,7: - 0: 64925 - 6: 64 + 0: 64989 -11,3: 0: 65311 -11,8: @@ -3634,9 +3731,9 @@ entities: -10,3: 0: 32358 -10,8: - 0: 61695 - -9,8: 0: 62719 + -9,8: + 0: 62702 -12,0: 0: 36792 -12,-1: @@ -3976,7 +4073,7 @@ entities: 0: 65532 -13,12: 0: 4351 - 7: 57344 + 6: 57344 -12,9: 0: 56783 -12,10: @@ -3985,7 +4082,7 @@ entities: 0: 65500 -12,12: 0: 60639 - 7: 4096 + 6: 4096 -11,9: 0: 56605 -11,10: @@ -4011,8 +4108,7 @@ entities: -9,12: 0: 36319 -8,9: - 0: 37151 - 8: 16384 + 0: 53535 -8,10: 0: 7645 -8,11: @@ -4038,11 +4134,9 @@ entities: -19,7: 2: 3618 -18,4: - 0: 64303 - 8: 1024 + 0: 65327 -18,5: - 0: 63476 - 6: 2048 + 0: 65524 -18,6: 0: 4082 -18,7: @@ -4173,8 +4267,7 @@ entities: -8,12: 0: 21845 -7,9: - 0: 57359 - 6: 4096 + 0: 61455 -7,10: 0: 8191 -7,11: @@ -4213,10 +4306,10 @@ entities: 0: 143 2: 57856 -12,13: - 7: 1 + 6: 1 0: 65484 -13,13: - 7: 14 + 6: 14 0: 65280 -12,14: 0: 65535 @@ -5071,21 +5164,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 235 moles: @@ -5101,21 +5179,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -5243,13 +5306,6 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 6715 - - uid: 17721 - components: - - type: Transform - parent: 9067 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 9067 - proto: AirAlarm entities: - uid: 21 @@ -7211,7 +7267,7 @@ entities: pos: -30.5,13.5 parent: 2 - type: Door - secondsUntilStateChange: -49146.285 + secondsUntilStateChange: -50568.94 state: Opening - type: DeviceLinkSource lastSignals: @@ -7239,6 +7295,11 @@ entities: - type: Transform pos: -18.5,0.5 parent: 2 + - uid: 1010 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 - uid: 1334 components: - type: Transform @@ -7272,11 +7333,6 @@ entities: - type: Transform pos: -7.5,2.5 parent: 2 - - uid: 13531 - components: - - type: Transform - pos: -19.5,0.5 - parent: 2 - uid: 14009 components: - type: Transform @@ -7868,16 +7924,18 @@ entities: parent: 2 - proto: AirlockFreezerLocked entities: - - uid: 4562 - components: - - type: Transform - pos: -46.5,51.5 - parent: 2 - - uid: 15203 + - uid: 1328 components: - type: Transform + rot: -1.5707963267948966 rad pos: -51.5,51.5 parent: 2 + - uid: 6033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,51.5 + parent: 2 - proto: AirlockGlass entities: - uid: 471 @@ -10558,6 +10616,18 @@ entities: parent: 2 - proto: AtmosDeviceFanDirectional entities: + - uid: 110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,51.5 + parent: 2 + - uid: 111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,51.5 + parent: 2 - uid: 3546 components: - type: Transform @@ -10660,18 +10730,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,40.5 parent: 2 -- proto: AtmosDeviceFanTiny - entities: - - uid: 17996 - components: - - type: Transform - pos: -51.5,51.5 - parent: 2 - - uid: 17997 - components: - - type: Transform - pos: -46.5,51.5 - parent: 2 - proto: AtmosFixBlockerMarker entities: - uid: 198 @@ -12176,6 +12234,11 @@ entities: - type: Transform pos: -21.18376,72.50857 parent: 2 + - uid: 9041 + components: + - type: Transform + pos: -35.100624,62.530506 + parent: 2 - proto: BoxFolderGreen entities: - uid: 6685 @@ -12311,10 +12374,10 @@ entities: parent: 2 - proto: BrbSign entities: - - uid: 17995 + - uid: 4562 components: - type: Transform - pos: -35.37794,63.58153 + pos: -36.51879,63.474876 parent: 2 - proto: BriefcaseBrownFilled entities: @@ -12449,6 +12512,11 @@ entities: - type: Transform pos: 13.5,73.5 parent: 2 + - uid: 116 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 2 - uid: 126 components: - type: Transform @@ -12459,11 +12527,6 @@ entities: - type: Transform pos: -14.5,-7.5 parent: 2 - - uid: 129 - components: - - type: Transform - pos: -9.5,-7.5 - parent: 2 - uid: 133 components: - type: Transform @@ -12549,15 +12612,15 @@ entities: - type: Transform pos: -14.5,-6.5 parent: 2 - - uid: 188 + - uid: 193 components: - type: Transform - pos: -13.5,-7.5 + pos: -14.5,-8.5 parent: 2 - uid: 194 components: - type: Transform - pos: -8.5,-7.5 + pos: -14.5,-9.5 parent: 2 - uid: 195 components: @@ -12567,7 +12630,7 @@ entities: - uid: 196 components: - type: Transform - pos: -11.5,-7.5 + pos: -3.5,-9.5 parent: 2 - uid: 219 components: @@ -12594,10 +12657,15 @@ entities: - type: Transform pos: -24.5,10.5 parent: 2 + - uid: 255 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 2 - uid: 256 components: - type: Transform - pos: -18.5,-2.5 + pos: -18.5,-0.5 parent: 2 - uid: 260 components: @@ -12619,6 +12687,21 @@ entities: - type: Transform pos: -51.5,21.5 parent: 2 + - uid: 294 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 2 + - uid: 295 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 - uid: 298 components: - type: Transform @@ -12627,7 +12710,7 @@ entities: - uid: 346 components: - type: Transform - pos: -10.5,-7.5 + pos: -0.5,-9.5 parent: 2 - uid: 348 components: @@ -12637,7 +12720,7 @@ entities: - uid: 364 components: - type: Transform - pos: -17.5,-2.5 + pos: -19.5,-0.5 parent: 2 - uid: 375 components: @@ -12652,7 +12735,7 @@ entities: - uid: 381 components: - type: Transform - pos: -17.5,-3.5 + pos: -17.5,-2.5 parent: 2 - uid: 391 components: @@ -13064,6 +13147,11 @@ entities: - type: Transform pos: -14.5,11.5 parent: 2 + - uid: 699 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 - uid: 706 components: - type: Transform @@ -13109,11 +13197,6 @@ entities: - type: Transform pos: -28.5,-3.5 parent: 2 - - uid: 975 - components: - - type: Transform - pos: -16.5,-6.5 - parent: 2 - uid: 976 components: - type: Transform @@ -13134,11 +13217,6 @@ entities: - type: Transform pos: -4.5,3.5 parent: 2 - - uid: 1010 - components: - - type: Transform - pos: -17.5,-6.5 - parent: 2 - uid: 1018 components: - type: Transform @@ -13149,16 +13227,6 @@ entities: - type: Transform pos: -4.5,-0.5 parent: 2 - - uid: 1029 - components: - - type: Transform - pos: -18.5,-6.5 - parent: 2 - - uid: 1033 - components: - - type: Transform - pos: -19.5,-6.5 - parent: 2 - uid: 1046 components: - type: Transform @@ -13197,13 +13265,18 @@ entities: - uid: 1234 components: - type: Transform - pos: -20.5,-1.5 + pos: -18.5,-1.5 parent: 2 - uid: 1235 components: - type: Transform pos: -20.5,-0.5 parent: 2 + - uid: 1238 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 2 - uid: 1264 components: - type: Transform @@ -13704,6 +13777,11 @@ entities: - type: Transform pos: -23.5,90.5 parent: 2 + - uid: 2238 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 2 - uid: 2308 components: - type: Transform @@ -13779,6 +13857,16 @@ entities: - type: Transform pos: -10.5,50.5 parent: 2 + - uid: 3138 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 2 + - uid: 3145 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 2 - uid: 3190 components: - type: Transform @@ -13794,6 +13882,11 @@ entities: - type: Transform pos: -65.5,20.5 parent: 2 + - uid: 3483 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 - uid: 3501 components: - type: Transform @@ -14279,6 +14372,11 @@ entities: - type: Transform pos: -27.5,60.5 parent: 2 + - uid: 7143 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 - uid: 7175 components: - type: Transform @@ -18632,7 +18730,7 @@ entities: - uid: 9029 components: - type: Transform - pos: -19.5,-2.5 + pos: -18.5,-2.5 parent: 2 - uid: 9031 components: @@ -21934,51 +22032,6 @@ entities: - type: Transform pos: -65.5,34.5 parent: 2 - - uid: 13362 - components: - - type: Transform - pos: -7.5,-7.5 - parent: 2 - - uid: 13363 - components: - - type: Transform - pos: -6.5,-7.5 - parent: 2 - - uid: 13364 - components: - - type: Transform - pos: -5.5,-7.5 - parent: 2 - - uid: 13365 - components: - - type: Transform - pos: -12.5,-7.5 - parent: 2 - - uid: 13366 - components: - - type: Transform - pos: -3.5,-7.5 - parent: 2 - - uid: 13367 - components: - - type: Transform - pos: -2.5,-7.5 - parent: 2 - - uid: 13368 - components: - - type: Transform - pos: -1.5,-7.5 - parent: 2 - - uid: 13369 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 2 - - uid: 13370 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 2 - uid: 13372 components: - type: Transform @@ -24194,6 +24247,36 @@ entities: - type: Transform pos: -38.5,34.5 parent: 2 + - uid: 17742 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 17753 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 2 + - uid: 17754 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - uid: 17772 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 2 + - uid: 17773 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 + - uid: 17774 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 - proto: CableApcStack entities: - uid: 5976 @@ -24367,16 +24450,16 @@ entities: - type: Transform pos: -16.5,-1.5 parent: 2 + - uid: 107 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 - uid: 108 components: - type: Transform pos: -14.5,-7.5 parent: 2 - - uid: 116 - components: - - type: Transform - pos: -17.5,2.5 - parent: 2 - uid: 136 components: - type: Transform @@ -24602,11 +24685,26 @@ entities: - type: Transform pos: -24.5,-24.5 parent: 2 + - uid: 519 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 - uid: 536 components: - type: Transform pos: -11.5,-4.5 parent: 2 + - uid: 537 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 + - uid: 542 + components: + - type: Transform + pos: -18.5,2.5 + parent: 2 - uid: 544 components: - type: Transform @@ -24700,7 +24798,7 @@ entities: - uid: 921 components: - type: Transform - pos: -20.5,3.5 + pos: -18.5,4.5 parent: 2 - uid: 922 components: @@ -24737,11 +24835,6 @@ entities: - type: Transform pos: -30.5,-20.5 parent: 2 - - uid: 937 - components: - - type: Transform - pos: -20.5,2.5 - parent: 2 - uid: 938 components: - type: Transform @@ -24782,11 +24875,21 @@ entities: - type: Transform pos: -31.5,-24.5 parent: 2 + - uid: 959 + components: + - type: Transform + pos: -7.5,2.5 + parent: 2 - uid: 962 components: - type: Transform pos: 2.5,-2.5 parent: 2 + - uid: 975 + components: + - type: Transform + pos: -6.5,1.5 + parent: 2 - uid: 981 components: - type: Transform @@ -24882,6 +24985,21 @@ entities: - type: Transform pos: -31.5,-26.5 parent: 2 + - uid: 1027 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 - uid: 1045 components: - type: Transform @@ -24962,11 +25080,6 @@ entities: - type: Transform pos: -27.5,-4.5 parent: 2 - - uid: 1078 - components: - - type: Transform - pos: -19.5,1.5 - parent: 2 - uid: 1079 components: - type: Transform @@ -24987,6 +25100,11 @@ entities: - type: Transform pos: -55.5,5.5 parent: 2 + - uid: 1099 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 2 - uid: 1103 components: - type: Transform @@ -25062,11 +25180,6 @@ entities: - type: Transform pos: -20.5,-3.5 parent: 2 - - uid: 1238 - components: - - type: Transform - pos: -22.5,0.5 - parent: 2 - uid: 1246 components: - type: Transform @@ -25092,11 +25205,6 @@ entities: - type: Transform pos: -4.5,-0.5 parent: 2 - - uid: 1328 - components: - - type: Transform - pos: -6.5,1.5 - parent: 2 - uid: 1401 components: - type: Transform @@ -28512,11 +28620,6 @@ entities: - type: Transform pos: -69.5,51.5 parent: 2 - - uid: 7143 - components: - - type: Transform - pos: -6.5,-0.5 - parent: 2 - uid: 7323 components: - type: Transform @@ -28657,11 +28760,6 @@ entities: - type: Transform pos: -25.5,36.5 parent: 2 - - uid: 10163 - components: - - type: Transform - pos: -6.5,0.5 - parent: 2 - uid: 10373 components: - type: Transform @@ -28682,6 +28780,11 @@ entities: - type: Transform pos: -66.5,51.5 parent: 2 + - uid: 11179 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 2 - uid: 11622 components: - type: Transform @@ -28792,6 +28895,16 @@ entities: - type: Transform pos: -28.5,-13.5 parent: 2 + - uid: 13364 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 + - uid: 13370 + components: + - type: Transform + pos: -7.5,3.5 + parent: 2 - uid: 13537 components: - type: Transform @@ -28887,6 +29000,11 @@ entities: - type: Transform pos: -36.5,14.5 parent: 2 + - uid: 14020 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 - uid: 14044 components: - type: Transform @@ -29072,6 +29190,11 @@ entities: - type: Transform pos: -11.5,58.5 parent: 2 + - uid: 14899 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 - uid: 14908 components: - type: Transform @@ -29787,11 +29910,6 @@ entities: - type: Transform pos: 9.5,-11.5 parent: 2 - - uid: 16429 - components: - - type: Transform - pos: -19.5,0.5 - parent: 2 - uid: 16685 components: - type: Transform @@ -29802,26 +29920,81 @@ entities: - type: Transform pos: -16.5,-4.5 parent: 2 - - uid: 16776 - components: - - type: Transform - pos: -17.5,-4.5 - parent: 2 - - uid: 16807 - components: - - type: Transform - pos: -18.5,-4.5 - parent: 2 - uid: 16862 components: - type: Transform - pos: -19.5,-4.5 + pos: -4.5,-4.5 parent: 2 - uid: 17556 components: - type: Transform pos: -4.5,2.5 parent: 2 + - uid: 17721 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 17722 + components: + - type: Transform + pos: -5.5,3.5 + parent: 2 + - uid: 17736 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 + - uid: 17737 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 + - uid: 17739 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - uid: 17743 + components: + - type: Transform + pos: -19.5,4.5 + parent: 2 + - uid: 17744 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 2 + - uid: 17745 + components: + - type: Transform + pos: -24.5,0.5 + parent: 2 + - uid: 17749 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 2 + - uid: 17750 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 + - uid: 17751 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 17752 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 17769 + components: + - type: Transform + pos: -19.5,1.5 + parent: 2 - proto: CableHVStack entities: - uid: 5975 @@ -30286,16 +30459,6 @@ entities: - type: Transform pos: -7.5,-9.5 parent: 2 - - uid: 1027 - components: - - type: Transform - pos: -6.5,1.5 - parent: 2 - - uid: 1099 - components: - - type: Transform - pos: -13.5,0.5 - parent: 2 - uid: 1117 components: - type: Transform @@ -30326,6 +30489,11 @@ entities: - type: Transform pos: -67.5,52.5 parent: 2 + - uid: 1231 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 - uid: 1240 components: - type: Transform @@ -30711,11 +30879,6 @@ entities: - type: Transform pos: -67.5,44.5 parent: 2 - - uid: 2238 - components: - - type: Transform - pos: -20.5,2.5 - parent: 2 - uid: 2256 components: - type: Transform @@ -31241,11 +31404,6 @@ entities: - type: Transform pos: -14.5,-3.5 parent: 2 - - uid: 6033 - components: - - type: Transform - pos: -17.5,2.5 - parent: 2 - uid: 6034 components: - type: Transform @@ -33606,11 +33764,6 @@ entities: - type: Transform pos: -38.5,66.5 parent: 2 - - uid: 10135 - components: - - type: Transform - pos: -7.5,1.5 - parent: 2 - uid: 10154 components: - type: Transform @@ -34186,6 +34339,11 @@ entities: - type: Transform pos: -31.5,36.5 parent: 2 + - uid: 17741 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 - proto: CableMVStack entities: - uid: 5974 @@ -34237,6 +34395,12 @@ entities: rot: 3.141592653589793 rad pos: -66.5,78.5 parent: 2 + - uid: 8088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 2 - uid: 14616 components: - type: Transform @@ -34260,6 +34424,12 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,-3.5 parent: 2 + - uid: 17770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,1.5 + parent: 2 - proto: CandleBlack entities: - uid: 2099 @@ -35437,36 +35607,29 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-3.5 parent: 2 - - uid: 107 - components: - - type: Transform - pos: -12.5,-6.5 - parent: 2 - - uid: 110 - components: - - type: Transform - pos: -4.5,-6.5 - parent: 2 - - uid: 111 - components: - - type: Transform - pos: -8.5,-6.5 - parent: 2 - uid: 113 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-3.5 parent: 2 + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 2 - uid: 132 components: - type: Transform - pos: -1.5,-6.5 + rot: 3.141592653589793 rad + pos: -0.5,-8.5 parent: 2 - uid: 154 components: - type: Transform - pos: 0.5,-6.5 + rot: 3.141592653589793 rad + pos: -1.5,-7.5 parent: 2 - uid: 156 components: @@ -35482,17 +35645,8 @@ entities: - uid: 169 components: - type: Transform - pos: -13.5,-6.5 - parent: 2 - - uid: 175 - components: - - type: Transform - pos: -10.5,-6.5 - parent: 2 - - uid: 176 - components: - - type: Transform - pos: -11.5,-6.5 + rot: 3.141592653589793 rad + pos: -0.5,-7.5 parent: 2 - uid: 179 components: @@ -35500,16 +35654,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,22.5 parent: 2 - - uid: 192 - components: - - type: Transform - pos: -9.5,-6.5 - parent: 2 - - uid: 193 - components: - - type: Transform - pos: -6.5,-6.5 - parent: 2 - uid: 203 components: - type: Transform @@ -35519,22 +35663,8 @@ entities: - uid: 237 components: - type: Transform - pos: -5.5,-6.5 - parent: 2 - - uid: 294 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 2 - - uid: 295 - components: - - type: Transform - pos: -7.5,-6.5 - parent: 2 - - uid: 296 - components: - - type: Transform - pos: -2.5,-6.5 + rot: 3.141592653589793 rad + pos: -2.5,-7.5 parent: 2 - uid: 300 components: @@ -35853,8 +35983,8 @@ entities: - uid: 1619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-3.5 + rot: 3.141592653589793 rad + pos: -4.5,-6.5 parent: 2 - uid: 1685 components: @@ -36525,7 +36655,8 @@ entities: - uid: 2710 components: - type: Transform - pos: -0.5,-6.5 + rot: 3.141592653589793 rad + pos: -11.5,-7.5 parent: 2 - uid: 2722 components: @@ -36613,6 +36744,12 @@ entities: rot: -1.5707963267948966 rad pos: -65.5,41.5 parent: 2 + - uid: 2847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-7.5 + parent: 2 - uid: 3013 components: - type: Transform @@ -36646,18 +36783,6 @@ entities: - type: Transform pos: 18.5,19.5 parent: 2 - - uid: 3138 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-6.5 - parent: 2 - - uid: 3145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-6.5 - parent: 2 - uid: 3178 components: - type: Transform @@ -36691,17 +36816,11 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,36.5 parent: 2 - - uid: 3483 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-6.5 - parent: 2 - uid: 3484 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-6.5 + pos: -3.5,-6.5 parent: 2 - uid: 3488 components: @@ -36945,6 +37064,12 @@ entities: - type: Transform pos: -70.5,10.5 parent: 2 + - uid: 4271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-7.5 + parent: 2 - uid: 4500 components: - type: Transform @@ -37084,6 +37209,12 @@ entities: - type: Transform pos: -46.5,9.5 parent: 2 + - uid: 7158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-7.5 + parent: 2 - uid: 7278 components: - type: Transform @@ -37262,6 +37393,12 @@ entities: - type: Transform pos: -56.5,5.5 parent: 2 + - uid: 9401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 2 - uid: 9589 components: - type: Transform @@ -37309,6 +37446,12 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,35.5 parent: 2 + - uid: 10135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-7.5 + parent: 2 - uid: 10375 components: - type: Transform @@ -37369,6 +37512,12 @@ entities: - type: Transform pos: -81.5,15.5 parent: 2 + - uid: 11180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-6.5 + parent: 2 - uid: 11199 components: - type: Transform @@ -37909,6 +38058,18 @@ entities: - type: Transform pos: -31.5,5.5 parent: 2 + - uid: 13363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-7.5 + parent: 2 + - uid: 13365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-7.5 + parent: 2 - uid: 13405 components: - type: Transform @@ -37939,6 +38100,12 @@ entities: - type: Transform pos: -28.5,-12.5 parent: 2 + - uid: 13531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 2 - uid: 13534 components: - type: Transform @@ -37969,8 +38136,8 @@ entities: - uid: 13774 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-6.5 + rot: 1.5707963267948966 rad + pos: -17.5,-7.5 parent: 2 - uid: 13776 components: @@ -38021,12 +38188,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-6.5 parent: 2 - - uid: 14020 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-6.5 - parent: 2 - uid: 14143 components: - type: Transform @@ -38286,17 +38447,17 @@ entities: - type: Transform pos: -96.5,15.5 parent: 2 - - uid: 14899 + - uid: 15203 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-6.5 + rot: 1.5707963267948966 rad + pos: -21.5,-7.5 parent: 2 - uid: 15373 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-6.5 + rot: 1.5707963267948966 rad + pos: -19.5,-7.5 parent: 2 - uid: 16485 components: @@ -38399,6 +38560,18 @@ entities: - type: Transform pos: -29.5,71.5 parent: 2 + - uid: 16776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-7.5 + parent: 2 + - uid: 16807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-7.5 + parent: 2 - uid: 16869 components: - type: Transform @@ -38538,1370 +38711,107 @@ entities: rot: 3.141592653589793 rad pos: 12.5,2.5 parent: 2 - - uid: 17722 - components: - - type: Transform - pos: -37.5,-27.5 - parent: 2 - uid: 17723 components: - type: Transform - pos: -86.5,14.5 - parent: 2 - - uid: 17724 - components: - - type: Transform - pos: -86.5,12.5 - parent: 2 - - uid: 17725 - components: - - type: Transform - pos: -86.5,11.5 - parent: 2 - - uid: 17726 - components: - - type: Transform - pos: -86.5,10.5 - parent: 2 - - uid: 17727 - components: - - type: Transform - pos: -86.5,9.5 - parent: 2 - - uid: 17728 - components: - - type: Transform - pos: -86.5,13.5 - parent: 2 - - uid: 17729 - components: - - type: Transform - pos: -86.5,8.5 - parent: 2 - - uid: 17730 - components: - - type: Transform - pos: -86.5,6.5 - parent: 2 - - uid: 17731 - components: - - type: Transform - pos: -86.5,5.5 - parent: 2 - - uid: 17732 - components: - - type: Transform - pos: -86.5,4.5 - parent: 2 - - uid: 17733 - components: - - type: Transform - pos: -86.5,7.5 - parent: 2 - - uid: 17734 - components: - - type: Transform - pos: -90.5,4.5 - parent: 2 - - uid: 17735 - components: - - type: Transform - pos: -90.5,5.5 - parent: 2 - - uid: 17736 - components: - - type: Transform - pos: -90.5,6.5 - parent: 2 - - uid: 17737 - components: - - type: Transform - pos: -90.5,7.5 + rot: 1.5707963267948966 rad + pos: -16.5,-3.5 parent: 2 - uid: 17738 components: - type: Transform - pos: -90.5,8.5 - parent: 2 - - uid: 17739 - components: - - type: Transform - pos: -90.5,10.5 - parent: 2 - - uid: 17740 - components: - - type: Transform - pos: -90.5,11.5 - parent: 2 - - uid: 17741 - components: - - type: Transform - pos: -90.5,12.5 - parent: 2 - - uid: 17742 - components: - - type: Transform - pos: -90.5,9.5 - parent: 2 - - uid: 17743 - components: - - type: Transform - pos: -90.5,13.5 - parent: 2 - - uid: 17744 - components: - - type: Transform - pos: -90.5,14.5 - parent: 2 - - uid: 17745 - components: - - type: Transform - pos: -94.5,14.5 - parent: 2 - - uid: 17746 - components: - - type: Transform - pos: -94.5,13.5 - parent: 2 - - uid: 17747 - components: - - type: Transform - pos: -94.5,12.5 + rot: 3.141592653589793 rad + pos: -14.5,-8.5 parent: 2 - uid: 17748 components: - type: Transform - pos: -94.5,10.5 - parent: 2 - - uid: 17749 - components: - - type: Transform - pos: -94.5,9.5 - parent: 2 - - uid: 17750 - components: - - type: Transform - pos: -94.5,11.5 - parent: 2 - - uid: 17751 - components: - - type: Transform - pos: -94.5,8.5 - parent: 2 - - uid: 17752 - components: - - type: Transform - pos: -94.5,7.5 - parent: 2 - - uid: 17753 - components: - - type: Transform - pos: -94.5,6.5 - parent: 2 - - uid: 17754 - components: - - type: Transform - pos: -94.5,5.5 + rot: 1.5707963267948966 rad + pos: -4.5,-8.5 parent: 2 - uid: 17755 components: - type: Transform - pos: -94.5,4.5 + rot: 3.141592653589793 rad + pos: -0.5,-9.5 parent: 2 - uid: 17756 components: - type: Transform - pos: -98.5,4.5 + rot: 3.141592653589793 rad + pos: -0.5,-10.5 parent: 2 - uid: 17757 components: - type: Transform - pos: -98.5,5.5 + rot: 3.141592653589793 rad + pos: -0.5,-11.5 parent: 2 - uid: 17758 components: - type: Transform - pos: -98.5,6.5 + rot: 3.141592653589793 rad + pos: -0.5,-12.5 parent: 2 - uid: 17759 components: - type: Transform - pos: -98.5,8.5 + rot: 3.141592653589793 rad + pos: -0.5,-13.5 parent: 2 - uid: 17760 components: - type: Transform - pos: -98.5,9.5 + rot: 3.141592653589793 rad + pos: -0.5,-14.5 parent: 2 - uid: 17761 components: - type: Transform - pos: -98.5,10.5 + rot: 3.141592653589793 rad + pos: -0.5,-15.5 parent: 2 - uid: 17762 components: - type: Transform - pos: -98.5,7.5 + rot: 3.141592653589793 rad + pos: -0.5,-16.5 parent: 2 - uid: 17763 components: - type: Transform - pos: -98.5,11.5 + rot: 3.141592653589793 rad + pos: -1.5,-6.5 parent: 2 - uid: 17764 components: - type: Transform - pos: -98.5,12.5 + rot: 3.141592653589793 rad + pos: -2.5,-6.5 parent: 2 - uid: 17765 components: - type: Transform - pos: -98.5,14.5 + rot: 3.141592653589793 rad + pos: -0.5,-17.5 parent: 2 - uid: 17766 components: - type: Transform - pos: -98.5,13.5 + rot: 3.141592653589793 rad + pos: 0.5,-17.5 parent: 2 - uid: 17767 components: - type: Transform - pos: -28.5,-14.5 + rot: 3.141592653589793 rad + pos: 1.5,-17.5 parent: 2 - uid: 17768 components: - type: Transform - pos: -28.5,-15.5 - parent: 2 - - uid: 17769 - components: - - type: Transform - pos: -28.5,-16.5 - parent: 2 - - uid: 17770 - components: - - type: Transform - pos: -28.5,-17.5 - parent: 2 - - uid: 17771 - components: - - type: Transform - pos: -28.5,-18.5 - parent: 2 - - uid: 17772 - components: - - type: Transform - pos: -28.5,-19.5 - parent: 2 - - uid: 17773 - components: - - type: Transform - pos: -28.5,-20.5 - parent: 2 - - uid: 17774 - components: - - type: Transform - pos: -28.5,-21.5 - parent: 2 - - uid: 17775 - components: - - type: Transform - pos: -28.5,-22.5 - parent: 2 - - uid: 17776 - components: - - type: Transform - pos: -28.5,-23.5 - parent: 2 - - uid: 17777 - components: - - type: Transform - pos: -28.5,-24.5 - parent: 2 - - uid: 17778 - components: - - type: Transform - pos: -28.5,-25.5 - parent: 2 - - uid: 17779 - components: - - type: Transform - pos: -28.5,-26.5 - parent: 2 - - uid: 17780 - components: - - type: Transform - pos: -28.5,-27.5 - parent: 2 - - uid: 17781 - components: - - type: Transform - pos: -28.5,-28.5 - parent: 2 - - uid: 17782 - components: - - type: Transform - pos: -36.5,-27.5 - parent: 2 - - uid: 17783 - components: - - type: Transform - pos: -35.5,-27.5 - parent: 2 - - uid: 17784 - components: - - type: Transform - pos: -34.5,-27.5 - parent: 2 - - uid: 17785 - components: - - type: Transform - pos: -33.5,-27.5 - parent: 2 - - uid: 17786 - components: - - type: Transform - pos: -32.5,-27.5 - parent: 2 - - uid: 17787 - components: - - type: Transform - pos: -31.5,-27.5 - parent: 2 - - uid: 17788 - components: - - type: Transform - pos: -29.5,-27.5 - parent: 2 - - uid: 17789 - components: - - type: Transform - pos: -28.5,-27.5 - parent: 2 - - uid: 17790 - components: - - type: Transform - pos: -30.5,-27.5 - parent: 2 - - uid: 17791 - components: - - type: Transform - pos: -27.5,-27.5 - parent: 2 - - uid: 17792 - components: - - type: Transform - pos: -26.5,-27.5 - parent: 2 - - uid: 17793 - components: - - type: Transform - pos: -25.5,-27.5 - parent: 2 - - uid: 17794 - components: - - type: Transform - pos: -24.5,-27.5 - parent: 2 - - uid: 17795 - components: - - type: Transform - pos: -23.5,-27.5 - parent: 2 - - uid: 17796 - components: - - type: Transform - pos: 35.5,28.5 - parent: 2 - - uid: 17797 - components: - - type: Transform - pos: -37.5,-23.5 - parent: 2 - - uid: 17798 - components: - - type: Transform - pos: -35.5,-23.5 - parent: 2 - - uid: 17799 - components: - - type: Transform - pos: -34.5,-23.5 - parent: 2 - - uid: 17800 - components: - - type: Transform - pos: -33.5,-23.5 - parent: 2 - - uid: 17801 - components: - - type: Transform - pos: -32.5,-23.5 - parent: 2 - - uid: 17802 - components: - - type: Transform - pos: -31.5,-23.5 - parent: 2 - - uid: 17803 - components: - - type: Transform - pos: -30.5,-23.5 - parent: 2 - - uid: 17804 - components: - - type: Transform - pos: -29.5,-23.5 - parent: 2 - - uid: 17805 - components: - - type: Transform - pos: -28.5,-23.5 - parent: 2 - - uid: 17806 - components: - - type: Transform - pos: -27.5,-23.5 - parent: 2 - - uid: 17807 - components: - - type: Transform - pos: -36.5,-23.5 - parent: 2 - - uid: 17808 - components: - - type: Transform - pos: -25.5,-23.5 - parent: 2 - - uid: 17809 - components: - - type: Transform - pos: -24.5,-23.5 - parent: 2 - - uid: 17810 - components: - - type: Transform - pos: -23.5,-23.5 - parent: 2 - - uid: 17811 - components: - - type: Transform - pos: -26.5,-23.5 - parent: 2 - - uid: 17812 - components: - - type: Transform - pos: -37.5,-19.5 - parent: 2 - - uid: 17813 - components: - - type: Transform - pos: -36.5,-19.5 - parent: 2 - - uid: 17814 - components: - - type: Transform - pos: -35.5,-19.5 - parent: 2 - - uid: 17815 - components: - - type: Transform - pos: -33.5,-19.5 - parent: 2 - - uid: 17816 - components: - - type: Transform - pos: -32.5,-19.5 - parent: 2 - - uid: 17817 - components: - - type: Transform - pos: -31.5,-19.5 - parent: 2 - - uid: 17818 - components: - - type: Transform - pos: -30.5,-19.5 - parent: 2 - - uid: 17819 - components: - - type: Transform - pos: -29.5,-19.5 - parent: 2 - - uid: 17820 - components: - - type: Transform - pos: -28.5,-19.5 - parent: 2 - - uid: 17821 - components: - - type: Transform - pos: -27.5,-19.5 - parent: 2 - - uid: 17822 - components: - - type: Transform - pos: -34.5,-19.5 - parent: 2 - - uid: 17823 - components: - - type: Transform - pos: -26.5,-19.5 - parent: 2 - - uid: 17824 - components: - - type: Transform - pos: -24.5,-19.5 - parent: 2 - - uid: 17825 - components: - - type: Transform - pos: -23.5,-19.5 - parent: 2 - - uid: 17826 - components: - - type: Transform - pos: -25.5,-19.5 - parent: 2 - - uid: 17827 - components: - - type: Transform - pos: -37.5,-15.5 - parent: 2 - - uid: 17828 - components: - - type: Transform - pos: -36.5,-15.5 - parent: 2 - - uid: 17829 - components: - - type: Transform - pos: -35.5,-15.5 - parent: 2 - - uid: 17830 - components: - - type: Transform - pos: -34.5,-15.5 - parent: 2 - - uid: 17831 - components: - - type: Transform - pos: -32.5,-15.5 - parent: 2 - - uid: 17832 - components: - - type: Transform - pos: -31.5,-15.5 - parent: 2 - - uid: 17833 - components: - - type: Transform - pos: -30.5,-15.5 - parent: 2 - - uid: 17834 - components: - - type: Transform - pos: -29.5,-15.5 - parent: 2 - - uid: 17835 - components: - - type: Transform - pos: -28.5,-15.5 - parent: 2 - - uid: 17836 - components: - - type: Transform - pos: -27.5,-15.5 - parent: 2 - - uid: 17837 - components: - - type: Transform - pos: -26.5,-15.5 - parent: 2 - - uid: 17838 - components: - - type: Transform - pos: -25.5,-15.5 - parent: 2 - - uid: 17839 - components: - - type: Transform - pos: -33.5,-15.5 - parent: 2 - - uid: 17840 - components: - - type: Transform - pos: -23.5,-15.5 - parent: 2 - - uid: 17841 - components: - - type: Transform - pos: -24.5,-15.5 - parent: 2 - - uid: 17842 - components: - - type: Transform - pos: 36.5,28.5 - parent: 2 - - uid: 17843 - components: - - type: Transform - pos: 38.5,28.5 - parent: 2 - - uid: 17844 - components: - - type: Transform - pos: 39.5,28.5 - parent: 2 - - uid: 17845 - components: - - type: Transform - pos: 40.5,28.5 - parent: 2 - - uid: 17846 - components: - - type: Transform - pos: 41.5,28.5 - parent: 2 - - uid: 17847 - components: - - type: Transform - pos: 37.5,28.5 - parent: 2 - - uid: 17848 - components: - - type: Transform - pos: 42.5,28.5 - parent: 2 - - uid: 17849 - components: - - type: Transform - pos: 43.5,28.5 - parent: 2 - - uid: 17850 - components: - - type: Transform - pos: 44.5,28.5 - parent: 2 - - uid: 17851 - components: - - type: Transform - pos: 45.5,28.5 - parent: 2 - - uid: 17852 - components: - - type: Transform - pos: 46.5,28.5 - parent: 2 - - uid: 17853 - components: - - type: Transform - pos: 47.5,28.5 - parent: 2 - - uid: 17854 - components: - - type: Transform - pos: 48.5,28.5 - parent: 2 - - uid: 17855 - components: - - type: Transform - pos: 49.5,28.5 - parent: 2 - - uid: 17856 - components: - - type: Transform - pos: 51.5,28.5 - parent: 2 - - uid: 17857 - components: - - type: Transform - pos: 50.5,28.5 - parent: 2 - - uid: 17858 - components: - - type: Transform - pos: 49.5,35.5 - parent: 2 - - uid: 17859 - components: - - type: Transform - pos: 49.5,21.5 - parent: 2 - - uid: 17860 - components: - - type: Transform - pos: 49.5,23.5 - parent: 2 - - uid: 17861 - components: - - type: Transform - pos: 49.5,24.5 - parent: 2 - - uid: 17862 - components: - - type: Transform - pos: 49.5,25.5 - parent: 2 - - uid: 17863 - components: - - type: Transform - pos: 49.5,26.5 - parent: 2 - - uid: 17864 - components: - - type: Transform - pos: 49.5,27.5 - parent: 2 - - uid: 17865 - components: - - type: Transform - pos: 49.5,28.5 - parent: 2 - - uid: 17866 - components: - - type: Transform - pos: 49.5,29.5 - parent: 2 - - uid: 17867 - components: - - type: Transform - pos: 49.5,30.5 - parent: 2 - - uid: 17868 - components: - - type: Transform - pos: 49.5,31.5 - parent: 2 - - uid: 17869 - components: - - type: Transform - pos: 49.5,32.5 - parent: 2 - - uid: 17870 - components: - - type: Transform - pos: 49.5,33.5 - parent: 2 - - uid: 17871 - components: - - type: Transform - pos: 49.5,34.5 - parent: 2 - - uid: 17872 - components: - - type: Transform - pos: 49.5,22.5 - parent: 2 - - uid: 17873 - components: - - type: Transform - pos: 45.5,35.5 - parent: 2 - - uid: 17874 - components: - - type: Transform - pos: 45.5,34.5 - parent: 2 - - uid: 17875 - components: - - type: Transform - pos: 45.5,33.5 - parent: 2 - - uid: 17876 - components: - - type: Transform - pos: 45.5,30.5 - parent: 2 - - uid: 17877 - components: - - type: Transform - pos: 45.5,31.5 - parent: 2 - - uid: 17878 - components: - - type: Transform - pos: 45.5,29.5 - parent: 2 - - uid: 17879 - components: - - type: Transform - pos: 45.5,28.5 - parent: 2 - - uid: 17880 - components: - - type: Transform - pos: 45.5,27.5 - parent: 2 - - uid: 17881 - components: - - type: Transform - pos: 45.5,26.5 - parent: 2 - - uid: 17882 - components: - - type: Transform - pos: 45.5,32.5 - parent: 2 - - uid: 17883 - components: - - type: Transform - pos: 45.5,25.5 - parent: 2 - - uid: 17884 - components: - - type: Transform - pos: 45.5,24.5 - parent: 2 - - uid: 17885 - components: - - type: Transform - pos: 45.5,23.5 - parent: 2 - - uid: 17886 - components: - - type: Transform - pos: 45.5,22.5 - parent: 2 - - uid: 17887 - components: - - type: Transform - pos: 45.5,21.5 - parent: 2 - - uid: 17888 - components: - - type: Transform - pos: 37.5,21.5 - parent: 2 - - uid: 17889 - components: - - type: Transform - pos: 41.5,35.5 - parent: 2 - - uid: 17890 - components: - - type: Transform - pos: 41.5,34.5 - parent: 2 - - uid: 17891 - components: - - type: Transform - pos: 41.5,33.5 - parent: 2 - - uid: 17892 - components: - - type: Transform - pos: 41.5,31.5 - parent: 2 - - uid: 17893 - components: - - type: Transform - pos: 41.5,30.5 - parent: 2 - - uid: 17894 - components: - - type: Transform - pos: 41.5,29.5 - parent: 2 - - uid: 17895 - components: - - type: Transform - pos: 41.5,28.5 - parent: 2 - - uid: 17896 - components: - - type: Transform - pos: 41.5,27.5 - parent: 2 - - uid: 17897 - components: - - type: Transform - pos: 41.5,26.5 - parent: 2 - - uid: 17898 - components: - - type: Transform - pos: 41.5,32.5 - parent: 2 - - uid: 17899 - components: - - type: Transform - pos: 41.5,24.5 - parent: 2 - - uid: 17900 - components: - - type: Transform - pos: 41.5,23.5 - parent: 2 - - uid: 17901 - components: - - type: Transform - pos: 41.5,21.5 - parent: 2 - - uid: 17902 - components: - - type: Transform - pos: 41.5,25.5 - parent: 2 - - uid: 17903 - components: - - type: Transform - pos: 41.5,22.5 - parent: 2 - - uid: 17904 - components: - - type: Transform - pos: 37.5,22.5 - parent: 2 - - uid: 17905 - components: - - type: Transform - pos: 37.5,23.5 - parent: 2 - - uid: 17906 - components: - - type: Transform - pos: 37.5,25.5 - parent: 2 - - uid: 17907 - components: - - type: Transform - pos: 37.5,26.5 - parent: 2 - - uid: 17908 - components: - - type: Transform - pos: 37.5,27.5 - parent: 2 - - uid: 17909 - components: - - type: Transform - pos: 37.5,28.5 - parent: 2 - - uid: 17910 - components: - - type: Transform - pos: 37.5,29.5 - parent: 2 - - uid: 17911 - components: - - type: Transform - pos: 37.5,30.5 - parent: 2 - - uid: 17912 - components: - - type: Transform - pos: 37.5,24.5 - parent: 2 - - uid: 17913 - components: - - type: Transform - pos: 37.5,32.5 - parent: 2 - - uid: 17914 - components: - - type: Transform - pos: 37.5,34.5 - parent: 2 - - uid: 17915 - components: - - type: Transform - pos: 37.5,35.5 - parent: 2 - - uid: 17916 - components: - - type: Transform - pos: 37.5,31.5 - parent: 2 - - uid: 17917 - components: - - type: Transform - pos: 37.5,33.5 - parent: 2 - - uid: 17918 - components: - - type: Transform - pos: -55.5,79.5 - parent: 2 - - uid: 17919 - components: - - type: Transform - pos: -53.5,92.5 - parent: 2 - - uid: 17920 - components: - - type: Transform - pos: -53.5,91.5 - parent: 2 - - uid: 17921 - components: - - type: Transform - pos: -54.5,91.5 - parent: 2 - - uid: 17922 - components: - - type: Transform - pos: -55.5,91.5 - parent: 2 - - uid: 17923 - components: - - type: Transform - pos: -56.5,91.5 - parent: 2 - - uid: 17924 - components: - - type: Transform - pos: -58.5,91.5 - parent: 2 - - uid: 17925 - components: - - type: Transform - pos: -59.5,91.5 - parent: 2 - - uid: 17926 - components: - - type: Transform - pos: -57.5,91.5 - parent: 2 - - uid: 17927 - components: - - type: Transform - pos: -59.5,90.5 - parent: 2 - - uid: 17928 - components: - - type: Transform - pos: -59.5,89.5 - parent: 2 - - uid: 17929 - components: - - type: Transform - pos: -59.5,87.5 - parent: 2 - - uid: 17930 - components: - - type: Transform - pos: -59.5,86.5 - parent: 2 - - uid: 17931 - components: - - type: Transform - pos: -59.5,85.5 - parent: 2 - - uid: 17932 - components: - - type: Transform - pos: -59.5,84.5 - parent: 2 - - uid: 17933 - components: - - type: Transform - pos: -59.5,83.5 - parent: 2 - - uid: 17934 - components: - - type: Transform - pos: -59.5,82.5 - parent: 2 - - uid: 17935 - components: - - type: Transform - pos: -59.5,88.5 - parent: 2 - - uid: 17936 - components: - - type: Transform - pos: -59.5,80.5 - parent: 2 - - uid: 17937 - components: - - type: Transform - pos: -59.5,79.5 - parent: 2 - - uid: 17938 - components: - - type: Transform - pos: -59.5,78.5 - parent: 2 - - uid: 17939 - components: - - type: Transform - pos: -59.5,81.5 - parent: 2 - - uid: 17940 - components: - - type: Transform - pos: -60.5,78.5 - parent: 2 - - uid: 17941 - components: - - type: Transform - pos: -61.5,78.5 - parent: 2 - - uid: 17942 - components: - - type: Transform - pos: -58.5,78.5 - parent: 2 - - uid: 17943 - components: - - type: Transform - pos: -57.5,78.5 - parent: 2 - - uid: 17944 - components: - - type: Transform - pos: -56.5,78.5 - parent: 2 - - uid: 17945 - components: - - type: Transform - pos: -54.5,78.5 - parent: 2 - - uid: 17946 - components: - - type: Transform - pos: -53.5,78.5 - parent: 2 - - uid: 17947 - components: - - type: Transform - pos: -52.5,78.5 - parent: 2 - - uid: 17948 - components: - - type: Transform - pos: -51.5,78.5 - parent: 2 - - uid: 17949 - components: - - type: Transform - pos: -50.5,78.5 - parent: 2 - - uid: 17950 - components: - - type: Transform - pos: -49.5,78.5 - parent: 2 - - uid: 17951 - components: - - type: Transform - pos: -55.5,78.5 - parent: 2 - - uid: 17952 - components: - - type: Transform - pos: -47.5,78.5 - parent: 2 - - uid: 17953 - components: - - type: Transform - pos: -48.5,78.5 - parent: 2 - - uid: 17954 - components: - - type: Transform - pos: -47.5,79.5 - parent: 2 - - uid: 17955 - components: - - type: Transform - pos: -47.5,81.5 - parent: 2 - - uid: 17956 - components: - - type: Transform - pos: -47.5,82.5 - parent: 2 - - uid: 17957 - components: - - type: Transform - pos: -47.5,83.5 - parent: 2 - - uid: 17958 - components: - - type: Transform - pos: -47.5,84.5 - parent: 2 - - uid: 17959 - components: - - type: Transform - pos: -47.5,85.5 - parent: 2 - - uid: 17960 - components: - - type: Transform - pos: -47.5,80.5 - parent: 2 - - uid: 17961 - components: - - type: Transform - pos: -47.5,86.5 - parent: 2 - - uid: 17962 - components: - - type: Transform - pos: -47.5,87.5 - parent: 2 - - uid: 17963 - components: - - type: Transform - pos: -47.5,89.5 - parent: 2 - - uid: 17964 - components: - - type: Transform - pos: -47.5,90.5 - parent: 2 - - uid: 17965 - components: - - type: Transform - pos: -47.5,91.5 - parent: 2 - - uid: 17966 - components: - - type: Transform - pos: -47.5,88.5 - parent: 2 - - uid: 17967 - components: - - type: Transform - pos: -48.5,91.5 - parent: 2 - - uid: 17968 - components: - - type: Transform - pos: -49.5,91.5 - parent: 2 - - uid: 17969 - components: - - type: Transform - pos: -50.5,91.5 - parent: 2 - - uid: 17970 - components: - - type: Transform - pos: -51.5,91.5 - parent: 2 - - uid: 17971 - components: - - type: Transform - pos: -52.5,91.5 - parent: 2 - - uid: 17972 - components: - - type: Transform - pos: -51.5,90.5 - parent: 2 - - uid: 17973 - components: - - type: Transform - pos: -51.5,89.5 - parent: 2 - - uid: 17974 - components: - - type: Transform - pos: -51.5,87.5 - parent: 2 - - uid: 17975 - components: - - type: Transform - pos: -51.5,86.5 - parent: 2 - - uid: 17976 - components: - - type: Transform - pos: -51.5,85.5 - parent: 2 - - uid: 17977 - components: - - type: Transform - pos: -51.5,84.5 - parent: 2 - - uid: 17978 - components: - - type: Transform - pos: -51.5,88.5 - parent: 2 - - uid: 17979 - components: - - type: Transform - pos: -51.5,82.5 - parent: 2 - - uid: 17980 - components: - - type: Transform - pos: -51.5,81.5 - parent: 2 - - uid: 17981 - components: - - type: Transform - pos: -51.5,80.5 - parent: 2 - - uid: 17982 - components: - - type: Transform - pos: -51.5,83.5 - parent: 2 - - uid: 17983 - components: - - type: Transform - pos: -51.5,79.5 - parent: 2 - - uid: 17984 - components: - - type: Transform - pos: -55.5,80.5 - parent: 2 - - uid: 17985 - components: - - type: Transform - pos: -55.5,81.5 - parent: 2 - - uid: 17986 - components: - - type: Transform - pos: -55.5,83.5 - parent: 2 - - uid: 17987 - components: - - type: Transform - pos: -55.5,84.5 - parent: 2 - - uid: 17988 - components: - - type: Transform - pos: -55.5,85.5 - parent: 2 - - uid: 17989 - components: - - type: Transform - pos: -55.5,86.5 - parent: 2 - - uid: 17990 - components: - - type: Transform - pos: -55.5,87.5 - parent: 2 - - uid: 17991 - components: - - type: Transform - pos: -55.5,88.5 - parent: 2 - - uid: 17992 - components: - - type: Transform - pos: -55.5,89.5 - parent: 2 - - uid: 17993 - components: - - type: Transform - pos: -55.5,82.5 - parent: 2 - - uid: 17994 - components: - - type: Transform - pos: -55.5,90.5 + rot: 3.141592653589793 rad + pos: 2.5,-17.5 parent: 2 - proto: Cautery entities: @@ -40706,6 +39616,11 @@ entities: rot: -1.5707963267948966 rad pos: -0.427639,66.733505 parent: 2 + - uid: 17730 + components: + - type: Transform + pos: -18.475384,-4.4201527 + parent: 2 - proto: ChairOfficeLight entities: - uid: 4243 @@ -43287,6 +42202,12 @@ entities: rot: 3.141592653589793 rad pos: -23.5,0.5 parent: 2 + - uid: 17729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-5.5 + parent: 2 - proto: ComputerRadar entities: - uid: 443 @@ -43458,12 +42379,38 @@ entities: - type: Transform pos: -48.5,67.5 parent: 2 +- proto: ContainmentFieldGenerator + entities: + - uid: 1078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 2 + - uid: 13367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-12.5 + parent: 2 + - uid: 17746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-20.5 + parent: 2 + - uid: 17747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-20.5 + parent: 2 - proto: ContainmentFieldGeneratorFlatpack entities: - uid: 3 components: - type: Transform - pos: -1.718478,-1.2119987 + pos: -1.6951933,-1.4346821 parent: 2 - uid: 1643 components: @@ -43488,17 +42435,17 @@ entities: - uid: 13538 components: - type: Transform - pos: -1.734103,-1.5088737 + pos: -1.6795683,-1.8253071 parent: 2 - uid: 14413 components: - type: Transform - pos: -1.3401647,-1.4603853 + pos: -1.3045683,-1.6221821 parent: 2 - uid: 14466 components: - type: Transform - pos: -1.3739104,-1.1578448 + pos: -1.3161774,-1.2844336 parent: 2 - proto: ConveyorBelt entities: @@ -43867,8 +42814,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -43885,10 +42832,10 @@ entities: showEnts: False occludes: True ents: - - 4514 - - 4709 - - 4710 - 4711 + - 4710 + - 4709 + - 4514 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -43906,8 +42853,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -43924,10 +42871,10 @@ entities: showEnts: False occludes: True ents: - - 6322 - - 6266 - - 6193 - 5011 + - 6193 + - 6266 + - 6322 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -43984,8 +42931,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -44002,14 +42949,14 @@ entities: showEnts: False occludes: True ents: - - 7076 - - 7372 - - 8085 - - 8091 - - 8103 - - 8104 - - 8105 - 8106 + - 8105 + - 8104 + - 8103 + - 8091 + - 8085 + - 7372 + - 7076 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -44027,8 +42974,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -44045,10 +42992,10 @@ entities: showEnts: False occludes: True ents: - - 9394 - - 8111 - - 8108 - 8107 + - 8108 + - 8111 + - 9394 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -44795,7 +43742,7 @@ entities: pos: -9.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -296901.84 + secondsUntilStateChange: -298324.5 state: Opening - uid: 6747 components: @@ -44803,7 +43750,7 @@ entities: pos: -8.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -296902.56 + secondsUntilStateChange: -298325.22 state: Opening - uid: 6749 components: @@ -44811,7 +43758,7 @@ entities: pos: -6.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -296901.12 + secondsUntilStateChange: -298323.78 state: Opening - uid: 6750 components: @@ -44819,7 +43766,7 @@ entities: pos: -5.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -296900.5 + secondsUntilStateChange: -298323.16 state: Opening - uid: 9721 components: @@ -50361,18 +49308,34 @@ entities: rot: 3.141592653589793 rad pos: -24.5,39.5 parent: 2 +- proto: Emitter + entities: + - uid: 13366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-20.5 + parent: 2 + - uid: 13368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 2 + - uid: 13369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-20.5 + parent: 2 + - uid: 17735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-12.5 + parent: 2 - proto: EmitterFlatpack entities: - - uid: 959 - components: - - type: Transform - pos: -1.7224569,-1.9108117 - parent: 2 - - uid: 1231 - components: - - type: Transform - pos: -1.2693319,-1.9264529 - parent: 2 - uid: 3134 components: - type: Transform @@ -50383,16 +49346,6 @@ entities: - type: Transform pos: -16.334562,1.4157906 parent: 2 - - uid: 11179 - components: - - type: Transform - pos: -1.6577296,-2.3674276 - parent: 2 - - uid: 11180 - components: - - type: Transform - pos: -1.2557645,-2.3590539 - parent: 2 - uid: 16757 components: - type: Transform @@ -55425,11 +54378,6 @@ entities: - type: Transform pos: -18.5,32.5 parent: 2 - - uid: 9041 - components: - - type: Transform - pos: -47.5,55.5 - parent: 2 - uid: 10575 components: - type: Transform @@ -66838,28 +65786,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,54.5 - parent: 2 - - uid: 18000 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,53.5 - parent: 2 - - uid: 18001 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -47.5,52.5 - parent: 2 - - type: Physics - canCollide: True - bodyType: Dynamic - proto: GasPipeTJunction entities: - uid: 85 @@ -67048,6 +65974,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 8764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10458 components: - type: Transform @@ -70632,12 +69566,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 17998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,51.5 - parent: 2 - proto: Gauze entities: - uid: 2384 @@ -70657,13 +69585,6 @@ entities: - type: Transform pos: -24.5,91.5 parent: 2 -- proto: GeneratorBasic15kW - entities: - - uid: 9401 - components: - - type: Transform - pos: -6.5,-0.5 - parent: 2 - proto: Girder entities: - uid: 14198 @@ -73621,11 +72542,6 @@ entities: rot: -1.5707963267948966 rad pos: -81.5,25.5 parent: 2 - - uid: 13403 - components: - - type: Transform - pos: -18.5,-7.5 - parent: 2 - uid: 13410 components: - type: Transform @@ -76459,6 +75375,12 @@ entities: - type: Transform pos: -22.54888,72.55596 parent: 2 + - uid: 17734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.54832,-5.494817 + parent: 2 - proto: HandLabeler entities: - uid: 4934 @@ -77426,24 +76348,8 @@ entities: - uid: 9067 components: - type: Transform - pos: -35.060246,62.76903 + pos: -35.585,62.874256 parent: 2 - - type: HandheldLight - toggleActionEntity: 17721 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 17721 - - type: Physics - canCollide: True - - type: ActionsContainer - uid: 15928 components: - type: Transform @@ -79631,13 +78537,6 @@ entities: - type: Transform pos: -18.5,63.5 parent: 2 -- proto: PaperBin20 - entities: - - uid: 8764 - components: - - type: Transform - pos: -35.5,62.5 - parent: 2 - proto: PaperCNCSheet entities: - uid: 6026 @@ -80345,6 +79244,11 @@ entities: - type: Transform pos: -12.5,0.5 parent: 2 + - uid: 17726 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 - proto: PortableGeneratorPacmanMachineCircuitboard entities: - uid: 3146 @@ -82592,12 +81496,6 @@ entities: - type: Transform pos: -17.5,-0.5 parent: 2 - - uid: 255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-4.5 - parent: 2 - uid: 412 components: - type: Transform @@ -82616,11 +81514,6 @@ entities: rot: 3.141592653589793 rad pos: -42.5,14.5 parent: 2 - - uid: 1038 - components: - - type: Transform - pos: -17.5,-6.5 - parent: 2 - uid: 1119 components: - type: Transform @@ -83299,6 +82192,11 @@ entities: - type: Transform pos: -67.5,6.5 parent: 2 + - uid: 16429 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 2 - uid: 16642 components: - type: Transform @@ -83367,6 +82265,12 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,70.5 parent: 2 + - uid: 17724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-5.5 + parent: 2 - proto: PoweredWarmSmallLight entities: - uid: 4747 @@ -83875,6 +82779,12 @@ entities: - type: Transform pos: -37.5,12.5 parent: 2 + - uid: 17725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-5.5 + parent: 2 - proto: RadiationCollectorFlatpack entities: - uid: 4514 @@ -89392,6 +88302,18 @@ entities: - type: Transform pos: 13.5184765,42.652447 parent: 2 + - uid: 17727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.304571,2.6360962 + parent: 2 + - uid: 17728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.507696,-5.535779 + parent: 2 - proto: SheetPlasma10 entities: - uid: 4264 @@ -91191,6 +90113,11 @@ entities: parent: 2 - proto: SMESBasic entities: + - uid: 1038 + components: + - type: Transform + pos: -6.5,1.5 + parent: 2 - uid: 1185 components: - type: Transform @@ -91222,11 +90149,6 @@ entities: - type: Transform pos: 30.5,29.5 parent: 2 - - uid: 7158 - components: - - type: Transform - pos: -6.5,0.5 - parent: 2 - uid: 14537 components: - type: Transform @@ -91237,6 +90159,11 @@ entities: - type: Transform pos: -79.5,14.5 parent: 2 + - uid: 17771 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 - proto: SmokingPipe entities: - uid: 14194 @@ -94178,10 +93105,10 @@ entities: parent: 2 - proto: SubstationBasic entities: - - uid: 699 + - uid: 937 components: - type: Transform - pos: -20.5,1.5 + pos: -6.5,0.5 parent: 2 - uid: 1180 components: @@ -94251,16 +93178,16 @@ entities: - type: Transform pos: 24.5,43.5 parent: 2 - - uid: 8088 - components: - - type: Transform - pos: -6.5,1.5 - parent: 2 - uid: 12099 components: - type: Transform pos: -69.5,52.5 parent: 2 + - uid: 17740 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 - proto: SuitStorageAtmos entities: - uid: 2028 @@ -96659,6 +95586,16 @@ entities: - type: Transform pos: -41.5,55.5 parent: 2 + - uid: 17731 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 + - uid: 17732 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 2 - proto: TableCarpet entities: - uid: 2359 @@ -99473,6 +98410,30 @@ entities: - type: Transform pos: -5.5,1.5 parent: 2 + - uid: 175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-6.5 + parent: 2 + - uid: 176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-6.5 + parent: 2 + - uid: 188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-6.5 + parent: 2 + - uid: 192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-6.5 + parent: 2 - uid: 204 components: - type: Transform @@ -99817,27 +98778,12 @@ entities: - type: Transform pos: -5.5,17.5 parent: 2 - - uid: 519 - components: - - type: Transform - pos: -18.5,-5.5 - parent: 2 - uid: 525 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,20.5 parent: 2 - - uid: 537 - components: - - type: Transform - pos: -17.5,-5.5 - parent: 2 - - uid: 542 - components: - - type: Transform - pos: -20.5,-5.5 - parent: 2 - uid: 552 components: - type: Transform @@ -102138,11 +101084,6 @@ entities: - type: Transform pos: 1.5,74.5 parent: 2 - - uid: 2847 - components: - - type: Transform - pos: -16.5,-5.5 - parent: 2 - uid: 2848 components: - type: Transform @@ -103019,11 +101960,6 @@ entities: - type: Transform pos: -82.5,1.5 parent: 2 - - uid: 4271 - components: - - type: Transform - pos: -19.5,-5.5 - parent: 2 - uid: 4272 components: - type: Transform @@ -104918,6 +103854,12 @@ entities: - type: Transform pos: 14.5,0.5 parent: 2 + - uid: 10163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 2 - uid: 10309 components: - type: Transform @@ -105247,6 +104189,18 @@ entities: - type: Transform pos: -20.5,93.5 parent: 2 + - uid: 13362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-6.5 + parent: 2 + - uid: 13403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-6.5 + parent: 2 - uid: 13451 components: - type: Transform @@ -113297,6 +112251,12 @@ entities: - type: Transform pos: 3.5624685,76.40522 parent: 2 + - uid: 17733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.438946,-5.479192 + parent: 2 - proto: XenoBasherGlass entities: - uid: 15756 From 21b3f239384d8b1d19b536213cc941a99bd1dd57 Mon Sep 17 00:00:00 2001 From: compilatron <40789662+Compilatron144@users.noreply.github.com> Date: Mon, 10 Feb 2025 11:47:21 +1100 Subject: [PATCH 164/313] Plasma fixes 3 (#35021) Co-authored-by: jbox1 <40789662+jbox144@users.noreply.github.com> --- Resources/Maps/plasma.yml | 639 ++++++++++++++++++-------------------- 1 file changed, 299 insertions(+), 340 deletions(-) diff --git a/Resources/Maps/plasma.yml b/Resources/Maps/plasma.yml index 910e5bcaa9..313b153038 100644 --- a/Resources/Maps/plasma.yml +++ b/Resources/Maps/plasma.yml @@ -188,7 +188,7 @@ entities: version: 6 -2,-2: ind: -2,-2 - tiles: AwAAAAACDQAAAAABDQAAAAACDQAAAAABCwAAAAAADQAAAAADDQAAAAAADQAAAAADDQAAAAABDQAAAAADCwAAAAAADQAAAAACDQAAAAAADQAAAAAADQAAAAADgwAAAAAAgwAAAAAADQAAAAABDQAAAAACDQAAAAADCwAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAADDQAAAAAACwAAAAAADQAAAAADDQAAAAAADQAAAAAADQAAAAACAwAAAAACAwAAAAADDQAAAAAADQAAAAADDQAAAAADCwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAABCwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAABgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAACDQAAAAAAAwAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAAADQAAAAAAgwAAAAAAKAAAAAACgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAABDQAAAAAAAwAAAAABDQAAAAAADQAAAAABDQAAAAADDQAAAAACDQAAAAADgwAAAAAAKAAAAAABKAAAAAACBwAAAAAABwAAAAAAgwAAAAAADQAAAAABDQAAAAACDQAAAAADDQAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAACDQAAAAADDQAAAAAAgwAAAAAAKAAAAAADKAAAAAAAKAAAAAADKAAAAAABgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAACwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAABgwAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAACBQAAAAACgwAAAAAADQAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAABgwAAAAAABQAAAAADBQAAAAAABQAAAAABBQAAAAACBQAAAAADAwAAAAACDQAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAACAwAAAAADBQAAAAABBQAAAAACBQAAAAADBQAAAAADBQAAAAADgwAAAAAADQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAACgwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAADgwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAGgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + tiles: AwAAAAACDQAAAAABDQAAAAACDQAAAAABCwAAAAAADQAAAAADDQAAAAAADQAAAAADDQAAAAABDQAAAAADCwAAAAAADQAAAAACDQAAAAAADQAAAAAADQAAAAADgwAAAAAAgwAAAAAADQAAAAABDQAAAAACDQAAAAADCwAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAADDQAAAAAACwAAAAAADQAAAAADDQAAAAAADQAAAAAADQAAAAACAwAAAAACAwAAAAADDQAAAAAADQAAAAADDQAAAAADCwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAABCwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAABgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAACDQAAAAAAAwAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAAADQAAAAAAgwAAAAAAKAAAAAACgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAABDQAAAAAAAwAAAAABDQAAAAAADQAAAAABDQAAAAADDQAAAAACDQAAAAADgwAAAAAAKAAAAAABKAAAAAACBwAAAAAABwAAAAAAgwAAAAAADQAAAAABDQAAAAACDQAAAAADDQAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAACDQAAAAADDQAAAAAAgwAAAAAAKAAAAAADKAAAAAAAKAAAAAADKAAAAAABgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAACwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAABgwAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAACBQAAAAACgwAAAAAADQAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAABgwAAAAAABQAAAAADBQAAAAAABQAAAAABBQAAAAACBQAAAAADgwAAAAAADQAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAACAwAAAAADBQAAAAABBQAAAAACBQAAAAADBQAAAAADBQAAAAADgwAAAAAADQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAACgwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAADgwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAGgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 -2,-4: ind: -2,-4 @@ -6968,6 +6968,7 @@ entities: 7305: -55,-55 7313: -45,-57 7321: -45,-53 + 7878: -18,-22 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw @@ -6989,6 +6990,7 @@ entities: 7302: -53,-57 7315: -47,-57 7319: -47,-53 + 7879: -22,-22 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe @@ -7058,6 +7060,8 @@ entities: 7312: -45,-56 7322: -45,-52 7323: -45,-51 + 7871: -18,-20 + 7872: -18,-21 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -7171,6 +7175,14 @@ entities: 7306: -54,-54 7314: -46,-57 7320: -46,-53 + 7866: -22,-19 + 7867: -21,-19 + 7868: -20,-19 + 7869: -19,-19 + 7870: -18,-19 + 7875: -21,-22 + 7876: -20,-22 + 7877: -19,-22 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -7214,6 +7226,8 @@ entities: 7316: -47,-56 7317: -47,-52 7318: -47,-51 + 7873: -22,-21 + 7874: -22,-20 - node: cleanable: True color: '#3C44AAFF' @@ -7435,8 +7449,7 @@ entities: -5,2: 1: 13098 -4,4: - 2: 1 - 1: 1906 + 1: 1907 -3,0: 1: 13105 -3,1: @@ -7780,12 +7793,12 @@ entities: -22,3: 1: 65357 -22,0: - 3: 238 + 2: 238 1: 3584 -22,4: 1: 65535 -22,-1: - 3: 20479 + 2: 20479 -21,1: 1: 43263 -21,2: @@ -7797,7 +7810,7 @@ entities: 1: 36044 -21,-1: 1: 34952 - 3: 819 + 2: 819 -20,0: 1: 4565 -20,1: @@ -7880,7 +7893,7 @@ entities: 1: 21969 -21,-2: 1: 34955 - 3: 13056 + 2: 13056 -20,-1: 1: 21845 -19,-4: @@ -7936,15 +7949,15 @@ entities: 1: 36864 -23,-2: 1: 409 - 3: 34816 + 2: 34816 -23,-1: - 3: 2184 + 2: 2184 -22,-4: 1: 65520 -22,-3: 1: 65092 -22,-2: - 3: 65280 + 2: 65280 1: 14 -24,-15: 1: 65280 @@ -8004,17 +8017,17 @@ entities: 1: 48056 -12,-8: 1: 15 - 3: 30464 + 2: 30464 -12,-9: 1: 62702 -13,-8: 1: 13 - 3: 60928 + 2: 60928 -12,-7: - 3: 127 + 2: 127 1: 28672 -13,-7: - 3: 1263 + 2: 1263 1: 28672 -12,-6: 1: 30711 @@ -8417,7 +8430,7 @@ entities: -5,-7: 1: 32631 -5,-6: - 1: 63239 + 1: 30471 -5,-5: 1: 1911 -5,-9: @@ -8677,16 +8690,16 @@ entities: -26,0: 1: 30711 -28,0: - 4: 21840 - 5: 8736 + 3: 21840 + 4: 8736 -28,1: 1: 208 0: 32 - 4: 28672 + 3: 28672 -29,1: 1: 21973 -28,2: - 4: 119 + 3: 119 1: 61440 -29,2: 1: 54613 @@ -8812,7 +8825,7 @@ entities: 1: 61695 -32,0: 1: 4 - 4: 4112 + 3: 4112 0: 17472 -31,-3: 1: 65535 @@ -8833,21 +8846,21 @@ entities: -29,0: 1: 21845 -33,0: - 4: 49344 + 3: 49344 1: 4369 -32,1: - 4: 4112 + 3: 4112 0: 17476 -33,1: - 4: 49344 + 3: 49344 1: 4369 -32,2: - 6: 16 - 7: 4096 + 5: 16 + 6: 4096 0: 17476 -33,2: - 6: 192 - 7: 49152 + 5: 192 + 6: 49152 1: 4369 -32,3: 1: 29712 @@ -9056,7 +9069,7 @@ entities: 1: 221 -37,0: 0: 34952 - 4: 13104 + 3: 13104 -36,1: 0: 8955 1: 20480 @@ -9256,7 +9269,7 @@ entities: 0: 65535 -38,0: 0: 13107 - 4: 34944 + 3: 34944 -32,-14: 1: 20206 -32,-12: @@ -9679,21 +9692,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 235 moles: @@ -11296,8 +11294,8 @@ entities: parent: 2 - type: DeviceList devices: - - 12344 - - 12307 + - 12329 + - 8663 - 24044 - uid: 24742 components: @@ -13921,11 +13919,6 @@ entities: - type: Transform pos: -16.5,-25.5 parent: 2 - - uid: 919 - components: - - type: Transform - pos: -16.5,-20.5 - parent: 2 - uid: 1118 components: - type: Transform @@ -14072,6 +14065,8 @@ entities: - type: Transform pos: -22.5,-19.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 23449 components: - type: Transform @@ -23381,18 +23376,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-65.5 parent: 2 - - uid: 22991 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,26.5 - parent: 2 - - uid: 22992 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,26.5 - parent: 2 - uid: 25850 components: - type: Transform @@ -62676,17 +62659,17 @@ entities: - type: Transform pos: -91.5,-39.5 parent: 2 - - uid: 11632 + - uid: 12331 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,8.5 + pos: -20.5,5.5 parent: 2 - - uid: 11633 + - uid: 12439 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,4.5 + pos: -20.5,7.5 parent: 2 - uid: 13250 components: @@ -64360,16 +64343,16 @@ entities: - type: Transform pos: -18.5,-50.5 parent: 2 + - uid: 18146 + components: + - type: Transform + pos: -88.5,4.5 + parent: 2 - uid: 26157 components: - type: Transform pos: -104.5,19.5 parent: 2 - - uid: 26158 - components: - - type: Transform - pos: -87.5,4.5 - parent: 2 - proto: ClosetTool entities: - uid: 13537 @@ -67041,11 +67024,6 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,3.5 parent: 2 - - uid: 5039 - components: - - type: Transform - pos: -18.5,-16.5 - parent: 2 - uid: 8179 components: - type: Transform @@ -67076,16 +67054,6 @@ entities: - type: Transform pos: -34.5,-34.5 parent: 2 - - uid: 8897 - components: - - type: Transform - pos: -19.5,-16.5 - parent: 2 - - uid: 8902 - components: - - type: Transform - pos: -20.5,-16.5 - parent: 2 - proto: CurtainsRedOpen entities: - uid: 4982 @@ -76971,19 +76939,20 @@ entities: - uid: 3 components: - type: MetaData - name: long range fax machine (Chief Medical Officer) + name: long range fax machine - type: Transform pos: -37.5,-39.5 parent: 2 + - type: FaxMachine + name: CMO - type: Label - currentLabel: Chief Medical Officer - - type: NameModifier - baseName: long range fax machine - uid: 1326 components: - type: Transform pos: -96.5,-1.5 parent: 2 + - type: FaxMachine + name: Reporter - uid: 3012 components: - type: MetaData @@ -77062,6 +77031,8 @@ entities: - type: Transform pos: -134.5,-46.5 parent: 2 + - type: FaxMachine + name: Research Director - uid: 17807 components: - type: MetaData @@ -77146,6 +77117,8 @@ entities: - type: Transform pos: -24.5,8.5 parent: 2 + - type: FaxMachine + name: Arrivals Checkpoint - type: Label - uid: 23251 components: @@ -77510,9 +77483,7 @@ entities: devices: - 13788 - 13847 - - 17424 - 17422 - - 17421 - uid: 14953 components: - type: MetaData @@ -78781,12 +78752,7 @@ entities: - uid: 15885 components: - type: Transform - pos: -104.5,-36.5 - parent: 2 - - uid: 15886 - components: - - type: Transform - pos: -103.5,-36.5 + pos: -108.5,-26.5 parent: 2 - uid: 16009 components: @@ -79395,11 +79361,6 @@ entities: - type: Transform pos: -14.5,-16.5 parent: 2 - - uid: 25942 - components: - - type: Transform - pos: -16.5,-20.5 - parent: 2 - uid: 25943 components: - type: Transform @@ -81046,14 +81007,6 @@ entities: - type: Transform pos: -139.5,13.5 parent: 2 - - uid: 17421 - components: - - type: Transform - pos: -147.5,-49.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13736 - uid: 17422 components: - type: Transform @@ -81062,14 +81015,6 @@ entities: - type: DeviceNetwork deviceLists: - 13736 - - uid: 17424 - components: - - type: Transform - pos: -147.5,-41.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13736 - uid: 18645 components: - type: Transform @@ -83289,6 +83234,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8992 components: - type: Transform @@ -83578,6 +83531,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 11814 + components: + - type: Transform + pos: -20.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11867 components: - type: Transform @@ -84258,14 +84218,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18146 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 18155 components: - type: Transform @@ -88329,6 +88281,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8905 components: - type: Transform @@ -91963,6 +91923,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11644 components: - type: Transform @@ -94514,11 +94490,19 @@ entities: - uid: 12306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-18.5 + rot: 1.5707963267948966 rad + pos: -15.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' + - uid: 12307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12309 components: - type: Transform @@ -94607,14 +94591,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12320 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12321 components: - type: Transform @@ -94631,59 +94607,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12326 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12328 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12329 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12330 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12331 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-20.5 + rot: 1.5707963267948966 rad + pos: -17.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -94871,13 +94799,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12361 - components: - - type: Transform - pos: -14.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12362 components: - type: Transform @@ -95256,13 +95177,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12439 - components: - - type: Transform - pos: -19.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12440 components: - type: Transform @@ -95642,6 +95556,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 12570 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12571 components: - type: Transform @@ -101052,6 +100973,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 17228 + components: + - type: Transform + pos: -28.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 17232 components: - type: Transform @@ -111505,13 +111433,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12308 - components: - - type: Transform - pos: -21.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12323 components: - type: Transform @@ -111528,11 +111449,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12332 + - uid: 12325 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-20.5 + pos: -14.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -114535,13 +114464,6 @@ entities: - 11298 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11814 - components: - - type: Transform - pos: -19.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11885 components: - type: Transform @@ -114676,10 +114598,18 @@ entities: - 9346 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12344 + - uid: 12326 components: - type: Transform - pos: -17.5,-17.5 + pos: -19.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-19.5 parent: 2 - type: DeviceNetwork deviceLists: @@ -116288,6 +116218,16 @@ entities: - 20503 - type: AtmosPipeColor color: '#990000FF' + - uid: 8663 + components: + - type: Transform + pos: -18.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24043 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8943 components: - type: Transform @@ -116608,15 +116548,11 @@ entities: - 25644 - type: AtmosPipeColor color: '#990000FF' - - uid: 12307 + - uid: 12330 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-21.5 + pos: -18.5,-24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 24043 - type: AtmosPipeColor color: '#990000FF' - uid: 12379 @@ -116696,13 +116632,6 @@ entities: - 9146 - type: AtmosPipeColor color: '#990000FF' - - uid: 12570 - components: - - type: Transform - pos: -18.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12639 components: - type: Transform @@ -118116,6 +118045,21 @@ entities: rot: 3.141592653589793 rad pos: -95.5,-50.5 parent: 2 + - uid: 15957 + components: + - type: Transform + pos: -38.5,0.5 + parent: 2 + - uid: 17862 + components: + - type: Transform + pos: -38.5,-0.5 + parent: 2 + - uid: 18927 + components: + - type: Transform + pos: -39.5,1.5 + parent: 2 - proto: GlassBoxLaserFilled entities: - uid: 390 @@ -119300,7 +119244,7 @@ entities: - uid: 4491 components: - type: Transform - pos: -84.5,4.5 + pos: -87.5,4.5 parent: 2 - uid: 4493 components: @@ -119310,7 +119254,7 @@ entities: - uid: 4497 components: - type: Transform - pos: -86.5,4.5 + pos: -84.5,4.5 parent: 2 - uid: 4498 components: @@ -120592,16 +120536,6 @@ entities: - type: Transform pos: -25.5,-27.5 parent: 2 - - uid: 8662 - components: - - type: Transform - pos: -22.5,4.5 - parent: 2 - - uid: 8663 - components: - - type: Transform - pos: -22.5,8.5 - parent: 2 - uid: 8664 components: - type: Transform @@ -121555,7 +121489,7 @@ entities: - uid: 15336 components: - type: Transform - pos: -38.5,0.5 + pos: -83.5,4.5 parent: 2 - uid: 15699 components: @@ -121567,11 +121501,6 @@ entities: - type: Transform pos: -61.5,-17.5 parent: 2 - - uid: 15957 - components: - - type: Transform - pos: -14.5,0.5 - parent: 2 - uid: 16011 components: - type: Transform @@ -121690,7 +121619,7 @@ entities: - uid: 17071 components: - type: Transform - pos: -83.5,4.5 + pos: -86.5,4.5 parent: 2 - uid: 17077 components: @@ -122232,16 +122161,6 @@ entities: - type: Transform pos: -73.5,-43.5 parent: 2 - - uid: 20937 - components: - - type: Transform - pos: -48.5,-39.5 - parent: 2 - - uid: 21014 - components: - - type: Transform - pos: -51.5,-40.5 - parent: 2 - uid: 21302 components: - type: Transform @@ -122922,26 +122841,6 @@ entities: - type: Transform pos: -19.5,-33.5 parent: 2 - - uid: 24501 - components: - - type: Transform - pos: -41.5,-9.5 - parent: 2 - - uid: 24502 - components: - - type: Transform - pos: -38.5,-0.5 - parent: 2 - - uid: 24509 - components: - - type: Transform - pos: -38.5,1.5 - parent: 2 - - uid: 24515 - components: - - type: Transform - pos: -39.5,1.5 - parent: 2 - uid: 24573 components: - type: Transform @@ -123457,21 +123356,6 @@ entities: - type: Transform pos: -113.5,-54.5 parent: 2 - - uid: 25535 - components: - - type: Transform - pos: -14.5,-33.5 - parent: 2 - - uid: 25536 - components: - - type: Transform - pos: -14.5,-31.5 - parent: 2 - - uid: 25537 - components: - - type: Transform - pos: -14.5,-26.5 - parent: 2 - uid: 25614 components: - type: Transform @@ -124483,7 +124367,7 @@ entities: - uid: 18823 components: - type: Transform - pos: -143.47711,-8.49418 + pos: -143.49292,-8.703477 parent: 2 - proto: HolopadAiUpload entities: @@ -128997,11 +128881,14 @@ entities: - uid: 12252 components: - type: MetaData - desc: This shark is a vicious killer of the ocean, trained in over 20 martial art styles. It merely takes the form of a plushie to fool the unaware into trusting it, only so it may strike when they're at their most vulnerable. + desc: This shark is a vicious killer of the ocean, trained in over 20 martial art styles, including sleeping carp. It merely takes the form of a plushie to fool the unaware into trusting it, only so it may strike when they're at their most vulnerable. name: highly illegal syndicate shark - type: Transform pos: -14.584713,16.470493 parent: 2 + - type: MeleeWeapon + attackRate: 10 + autoAttack: True - type: Item size: Huge - type: Contraband @@ -129807,23 +129694,6 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-36.5 parent: 2 - - uid: 7778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,12.5 - parent: 2 - - uid: 19671 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,10.5 - parent: 2 - - uid: 19729 - components: - - type: Transform - pos: -20.5,14.5 - parent: 2 - uid: 22824 components: - type: Transform @@ -129859,6 +129729,12 @@ entities: rot: 1.5707963267948966 rad pos: -125.5,4.5 parent: 2 + - uid: 919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.5,14.5 + parent: 2 - uid: 1205 components: - type: Transform @@ -130464,6 +130340,13 @@ entities: rot: 1.5707963267948966 rad pos: -65.5,-28.5 parent: 2 + - uid: 12344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,12.5 + parent: 2 + - type: RgbLightController - uid: 13069 components: - type: Transform @@ -134973,16 +134856,6 @@ entities: - type: Transform pos: -27.5,5.5 parent: 2 - - uid: 1715 - components: - - type: Transform - pos: -22.5,8.5 - parent: 2 - - uid: 1716 - components: - - type: Transform - pos: -22.5,4.5 - parent: 2 - uid: 1809 components: - type: Transform @@ -137182,6 +137055,11 @@ entities: - type: Transform pos: -50.5,-8.5 parent: 2 + - uid: 1716 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 2 - uid: 2958 components: - type: Transform @@ -137348,6 +137226,11 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 + - uid: 5039 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 2 - uid: 5558 components: - type: Transform @@ -137391,6 +137274,11 @@ entities: rot: -1.5707963267948966 rad pos: -100.5,-30.5 parent: 2 + - uid: 7778 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 2 - uid: 9559 components: - type: Transform @@ -138645,6 +138533,28 @@ entities: 1798: - On: Open - Off: Close + - uid: 8662 + components: + - type: MetaData + name: signal switch (Shutters) + - type: Transform + pos: -17.5,-16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1716: + - On: Open + - Off: Close + 5039: + - On: Open + - Off: Close + 7778: + - On: Open + - Off: Close + - type: Label + currentLabel: Shutters + - type: NameModifier + baseName: signal switch - uid: 8823 components: - type: Transform @@ -138696,6 +138606,21 @@ entities: 9559: - On: Open - Off: Close + - uid: 12308 + components: + - type: MetaData + name: signal switch (Door Bolt) + - type: Transform + pos: -17.8,-16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 937: + - Status: DoorBolt + - type: Label + currentLabel: Door Bolt + - type: NameModifier + baseName: signal switch - uid: 16924 components: - type: Transform @@ -144940,17 +144865,6 @@ entities: - SurveillanceCameraMedical nameSet: True id: Front Desk - - uid: 23764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-19.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Psychologist - uid: 23765 components: - type: Transform @@ -163915,6 +163829,23 @@ entities: - type: Transform pos: -62.5,-50.5 parent: 2 + - uid: 12320 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 2 + - uid: 12332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,4.5 + parent: 2 + - uid: 12361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,8.5 + parent: 2 - uid: 12396 components: - type: Transform @@ -166192,6 +166123,12 @@ entities: - type: Transform pos: -49.5,-8.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2966: + - DoorStatus: Close - uid: 18341 components: - type: Transform @@ -166210,7 +166147,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -195990.95 + secondsUntilStateChange: -197977.33 state: Opening - type: Airlock autoClose: False @@ -166241,6 +166178,18 @@ entities: parent: 2 - proto: WindoorSecure entities: + - uid: 1715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,6.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 24033: + - DoorStatus: Close - uid: 16040 components: - type: Transform @@ -166358,7 +166307,11 @@ entities: pos: -49.5,-8.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 2967: + - DoorStatus: Close - proto: WindoorSecureJanitorLocked entities: - uid: 19615 @@ -166427,6 +166380,12 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,6.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1715: + - DoorStatus: Close - proto: WindoorSecureServiceLocked entities: - uid: 10029 From e1aff4dd98b4763f6ac0b39e1316e59d2635d66e Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Sun, 9 Feb 2025 16:51:29 -0800 Subject: [PATCH 165/313] Rebalance Relic station power + misc fixes (#35022) Rebalance Relic station power --- Resources/Maps/Relic.yml | 326 ++++++++++++++++++++++----------------- 1 file changed, 183 insertions(+), 143 deletions(-) diff --git a/Resources/Maps/Relic.yml b/Resources/Maps/Relic.yml index eacdbe4049..d4b0d35fc6 100644 --- a/Resources/Maps/Relic.yml +++ b/Resources/Maps/Relic.yml @@ -248,6 +248,11 @@ entities: 536: 45,25 537: 44,25 538: 43,25 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 570: 44,40 - node: color: '#334E6DC8' id: BrickCornerOverlayNE @@ -981,7 +986,7 @@ entities: 0: 65311 3,-1: 0: 62256 - 2: 136 + 1: 136 3,4: 0: 3871 4,0: @@ -993,12 +998,12 @@ entities: 0,-4: 0: 30192 0,-5: - 1: 61440 + 2: 61440 0,-3: 0: 63092 -1,-3: 0: 192 - 1: 13107 + 2: 13107 0,-2: 0: 7 1,-4: @@ -1008,7 +1013,7 @@ entities: 1,-2: 0: 48059 1,-5: - 1: 12288 + 2: 12288 0: 32768 2,-4: 0: 65248 @@ -1017,7 +1022,7 @@ entities: 2,-2: 0: 57304 2,-5: - 1: 57344 + 2: 57344 3,-4: 0: 48048 3,-3: @@ -1025,7 +1030,7 @@ entities: 3,-2: 0: 15289 3,-5: - 1: 61440 + 2: 61440 4,-4: 0: 30576 4,-3: @@ -1033,37 +1038,37 @@ entities: 4,-2: 0: 36853 4,-1: - 2: 255 + 1: 255 0: 61440 -2,3: 0: 61165 -2,2: 0: 61152 -2,0: - 1: 8738 + 2: 8738 -2,-1: - 1: 11818 + 2: 11818 -2,1: 0: 52416 -2,-4: - 1: 43562 + 2: 43562 -2,-5: - 1: 43566 + 2: 43566 -2,-3: - 1: 43694 + 2: 43694 0: 64 -2,-2: - 1: 43562 + 2: 43562 -1,-4: - 1: 13075 + 2: 13075 -1,-2: - 1: 13079 + 2: 13079 -1,-1: - 1: 1811 + 2: 1811 -1,-5: - 1: 48031 + 2: 48031 4,-5: - 1: 61440 + 2: 61440 5,-4: 0: 48112 5,-3: @@ -1071,10 +1076,10 @@ entities: 5,-2: 0: 52700 5,-1: - 2: 17 + 1: 17 0: 7372 5,-5: - 1: 61440 + 2: 61440 5,0: 0: 3549 6,-4: @@ -1086,7 +1091,7 @@ entities: 6,-1: 0: 36180 6,-5: - 1: 61440 + 2: 61440 6,0: 0: 4095 7,-4: @@ -1098,7 +1103,7 @@ entities: 7,-1: 0: 12171 7,-5: - 1: 61440 + 2: 61440 7,0: 0: 3822 8,-4: @@ -1294,13 +1299,13 @@ entities: 2,9: 0: 35758 2,10: - 1: 8738 + 2: 8738 0: 49288 2,11: - 1: 8738 + 2: 8738 0: 52428 2,12: - 1: 3298 + 2: 3298 0: 12 3,8: 0: 65280 @@ -1308,13 +1313,13 @@ entities: 0: 65535 3,10: 0: 13104 - 1: 16448 + 2: 16448 3,11: 0: 13107 - 1: 1024 + 2: 1024 3,12: 0: 3 - 1: 4084 + 2: 4084 4,8: 0: 65504 4,9: @@ -1322,9 +1327,9 @@ entities: 4,10: 0: 3808 4,11: - 1: 13299 + 2: 13299 4,12: - 1: 13107 + 2: 13107 0: 34944 5,8: 0: 40944 @@ -1333,25 +1338,25 @@ entities: 5,10: 0: 4088 5,11: - 1: 240 + 2: 240 6,9: 0: 15283 6,10: 0: 3003 6,11: - 1: 240 + 2: 240 7,9: 0: 12272 7,10: 0: 4095 7,11: - 1: 240 + 2: 240 7,12: 0: 53076 8,9: 0: 61426 8,11: - 1: 240 + 2: 240 8,10: 0: 3822 8,12: @@ -1361,12 +1366,12 @@ entities: 9,10: 0: 3822 9,11: - 1: 61166 + 2: 61166 9,12: - 1: 16462 + 2: 16462 0: 11808 10,11: - 1: 255 + 2: 255 0: 49152 10,9: 0: 52428 @@ -1379,13 +1384,13 @@ entities: 11,10: 0: 4095 11,11: - 1: 17 + 2: 17 0: 61440 11,12: 0: 65535 12,11: 0: 28672 - 1: 238 + 2: 238 12,7: 0: 61164 12,8: @@ -1425,11 +1430,11 @@ entities: 15,8: 0: 4095 16,4: - 1: 4369 + 2: 4369 16,5: - 1: 4369 + 2: 4369 16,6: - 1: 273 + 2: 273 12,9: 0: 57582 12,10: @@ -1441,36 +1446,36 @@ entities: 13,10: 0: 1911 13,11: - 1: 61183 + 2: 61183 13,12: - 1: 61166 + 2: 61166 14,9: 0: 30719 14,10: 0: 32775 - 1: 4096 + 2: 4096 14,11: - 1: 4369 + 2: 4369 0: 52428 14,12: - 1: 4369 + 2: 4369 0: 52428 15,9: 0: 13107 - 1: 34952 + 2: 34952 15,10: 0: 13107 - 1: 34952 + 2: 34952 15,11: 0: 30707 15,12: 0: 30583 16,9: - 1: 1 + 2: 1 16,11: 0: 48 8,-5: - 1: 61440 + 2: 61440 9,-4: 0: 28920 9,-3: @@ -1478,7 +1483,7 @@ entities: 9,-2: 0: 25342 9,-5: - 1: 12288 + 2: 12288 10,-4: 0: 61687 10,-3: @@ -1495,47 +1500,47 @@ entities: 0: 65280 12,-4: 0: 4915 - 1: 8 + 2: 8 12,-1: 0: 47872 12,-5: 0: 61440 - 1: 2048 + 2: 2048 13,-4: - 1: 34959 + 2: 34959 13,-1: 0: 30464 13,-5: 0: 61440 - 1: 3584 + 2: 3584 13,0: 0: 28791 14,-4: 0: 21845 - 1: 43690 + 2: 43690 14,-1: 0: 21840 14,-5: 0: 61440 - 1: 3840 + 2: 3840 14,0: 0: 20479 15,-4: - 1: 34959 + 2: 34959 15,-1: 0: 1792 15,-5: 0: 61440 - 1: 3840 + 2: 3840 15,0: 0: 4095 16,-4: 0: 21845 - 1: 43690 + 2: 43690 16,-1: 0: 21840 16,-5: - 1: 36608 + 2: 36608 0: 28672 13,1: 0: 65535 @@ -1553,13 +1558,13 @@ entities: 0: 1639 16,0: 0: 119 - 1: 57344 + 2: 57344 16,1: - 1: 4371 + 2: 4371 16,2: - 1: 4369 + 2: 4369 16,3: - 1: 4369 + 2: 4369 3,14: 0: 34944 3,15: @@ -1568,118 +1573,118 @@ entities: 0: 760 4,15: 0: 1 - 1: 14 + 2: 14 4,13: - 1: 13107 + 2: 13107 0: 34952 5,12: 0: 43904 5,14: 0: 62 5,15: - 1: 15 + 2: 15 5,13: 0: 43690 6,12: 0: 43904 6,15: - 1: 15 + 2: 15 6,13: 0: 43690 6,14: 0: 46 7,15: - 1: 15 + 2: 15 7,13: 0: 36044 8,13: 0: 12151 8,15: - 1: 15 + 2: 15 17,0: - 1: 4369 + 2: 4369 17,-1: - 1: 4368 + 2: 4368 12,13: - 1: 65280 + 2: 65280 11,13: - 1: 65280 + 2: 65280 12,14: - 1: 15 + 2: 15 0: 3584 11,14: - 1: 15 + 2: 15 0: 3840 12,15: - 1: 57359 + 2: 57359 11,15: - 1: 15 + 2: 15 12,16: - 1: 43554 + 2: 43554 13,13: - 1: 65518 + 2: 65518 13,14: - 1: 15 + 2: 15 0: 1792 13,15: - 1: 28673 + 2: 28673 0: 14 14,13: - 1: 12561 + 2: 12561 0: 2252 14,14: - 1: 3 + 2: 3 0: 65288 14,15: 0: 20343 14,16: 0: 68 - 1: 65280 + 2: 65280 15,13: 0: 9023 15,14: 0: 13091 15,15: 0: 273 - 1: 49152 + 2: 49152 16,13: 0: 3 16,15: - 1: 61440 + 2: 61440 16,16: - 1: 48008 + 2: 48008 12,17: - 1: 3626 + 2: 3626 13,16: - 1: 64256 + 2: 64256 13,17: - 1: 3851 + 2: 3851 14,17: - 1: 3855 + 2: 3855 0: 64 15,16: - 1: 64256 + 2: 64256 15,17: - 1: 3851 + 2: 3851 16,17: - 1: 3979 + 2: 3979 8,14: 0: 2048 9,13: 0: 802 - 1: 34956 + 2: 34956 9,14: 0: 3840 - 1: 14 + 2: 14 9,15: - 1: 15 + 2: 15 10,13: - 1: 65280 + 2: 65280 10,14: - 1: 15 + 2: 15 0: 3328 10,15: - 1: 15 + 2: 15 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -1696,6 +1701,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 immutable: True moles: @@ -1711,21 +1731,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 235 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -2499,7 +2504,7 @@ entities: pos: 27.5,20.5 parent: 2 - type: Door - secondsUntilStateChange: -19547.12 + secondsUntilStateChange: -19820.787 state: Opening - type: DeviceLinkSource lastSignals: @@ -2549,7 +2554,7 @@ entities: pos: 16.5,25.5 parent: 2 - type: Door - secondsUntilStateChange: -12527.387 + secondsUntilStateChange: -12801.055 state: Opening - type: DeviceLinkSource lastSignals: @@ -2560,7 +2565,7 @@ entities: pos: 16.5,24.5 parent: 2 - type: Door - secondsUntilStateChange: -12525.72 + secondsUntilStateChange: -12799.388 state: Opening - type: DeviceLinkSource lastSignals: @@ -2711,6 +2716,11 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,20.5 parent: 2 + - uid: 7603 + components: + - type: Transform + pos: 37.5,30.5 + parent: 2 - proto: AirlockEVALocked entities: - uid: 6976 @@ -2782,7 +2792,7 @@ entities: pos: 5.5,26.5 parent: 2 - type: Door - secondsUntilStateChange: -99718.8 + secondsUntilStateChange: -99992.46 state: Opening - type: DeviceLinkSource linkedPorts: @@ -3224,7 +3234,7 @@ entities: pos: 43.5,-14.5 parent: 2 - type: Door - secondsUntilStateChange: -80996.79 + secondsUntilStateChange: -81270.45 state: Opening - type: DeviceLinkSource lastSignals: @@ -3315,7 +3325,7 @@ entities: pos: 13.5,28.5 parent: 2 - type: Door - secondsUntilStateChange: -12524.52 + secondsUntilStateChange: -12798.1875 state: Opening - type: DeviceLinkSource lastSignals: @@ -13481,7 +13491,7 @@ entities: - type: Transform pos: 23.5,42.5 parent: 2 - - uid: 1782 + - uid: 7606 components: - type: Transform pos: 30.5,25.5 @@ -20254,6 +20264,34 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' +- proto: GasMinerCarbonDioxide + entities: + - uid: 1782 + components: + - type: Transform + pos: 30.5,25.5 + parent: 2 +- proto: GasMinerNitrogenStation + entities: + - uid: 1632 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 +- proto: GasMinerOxygenStation + entities: + - uid: 1631 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 +- proto: GasMinerPlasma + entities: + - uid: 1461 + components: + - type: Transform + pos: 30.5,23.5 + parent: 2 - proto: GasMixer entities: - uid: 794 @@ -33436,11 +33474,6 @@ entities: parent: 2 - proto: NitrogenCanister entities: - - uid: 1461 - components: - - type: Transform - pos: 30.5,27.5 - parent: 2 - uid: 1675 components: - type: Transform @@ -33451,6 +33484,11 @@ entities: - type: Transform pos: 25.5,42.5 parent: 2 + - uid: 7607 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 - proto: NTDefaultCircuitBoard entities: - uid: 4737 @@ -33498,7 +33536,7 @@ entities: - type: Transform pos: 25.5,39.5 parent: 2 - - uid: 6000 + - uid: 7604 components: - type: Transform pos: 30.5,21.5 @@ -33596,7 +33634,7 @@ entities: - type: Transform pos: 25.5,36.5 parent: 2 - - uid: 5999 + - uid: 7605 components: - type: Transform pos: 30.5,23.5 @@ -37948,18 +37986,8 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,-6.5 parent: 2 -- proto: SMESBasic +- proto: SMESAdvanced entities: - - uid: 1631 - components: - - type: Transform - pos: 34.5,28.5 - parent: 2 - - uid: 1632 - components: - - type: Transform - pos: 34.5,29.5 - parent: 2 - uid: 1852 components: - type: Transform @@ -37970,6 +37998,18 @@ entities: - type: Transform pos: 34.5,26.5 parent: 2 + - uid: 5999 + components: + - type: Transform + pos: 34.5,28.5 + parent: 2 + - uid: 6000 + components: + - type: Transform + pos: 34.5,29.5 + parent: 2 +- proto: SMESBasic + entities: - uid: 2626 components: - type: Transform From eeb689261b44cac19198c5ddc062626270958bb1 Mon Sep 17 00:00:00 2001 From: Spessmann <156740760+Spessmann@users.noreply.github.com> Date: Sun, 9 Feb 2025 17:06:32 -0800 Subject: [PATCH 166/313] Convex update (#35023) convex update --- Resources/Maps/convex.yml | 540 ++++++++++++++++++++++++++++---------- 1 file changed, 400 insertions(+), 140 deletions(-) diff --git a/Resources/Maps/convex.yml b/Resources/Maps/convex.yml index 5b4e1af882..5ffc726dbf 100644 --- a/Resources/Maps/convex.yml +++ b/Resources/Maps/convex.yml @@ -14,6 +14,7 @@ tilemap: 22: FloorBrokenWood 25: FloorCarpetClown 24: FloorClown + 36: FloorConcrete 8: FloorDark 15: FloorDarkDiagonal 14: FloorDarkHerringbone @@ -27,13 +28,18 @@ tilemap: 29: FloorLaundry 23: FloorMime 31: FloorMowedAstroGrass + 37: FloorOldConcrete 4: FloorReinforced + 38: FloorShowroom 3: FloorSteel + 33: FloorSteelCheckerDark 18: FloorSteelCheckerLight 19: FloorSteelDamaged + 34: FloorSteelLime 5: FloorSteelMono 20: FloorTechMaint 30: FloorTechMaint2 + 35: FloorTechMaint3 16: FloorWhite 12: FloorWhiteMini 17: FloorWhiteMono @@ -66,19 +72,19 @@ entities: version: 6 1,4: ind: 1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAACAAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 1,5: ind: 1,5 - tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACAAAAAACAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACAAAAAABAgAAAAAACAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 1,6: ind: 1,6 - tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABBQAAAAADBQAAAAABBQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAABQAAAAACBQAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAACBQAAAAAABQAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAAC + tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACBQAAAAACBQAAAAACBQAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAABBQAAAAAABQAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAABBQAAAAADBQAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAD version: 6 1,7: ind: 1,7 - tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAABQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAAABQAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAIAAAAAAAAgAAAAAABgAAAAABBgAAAAAABgAAAAABAgAAAAAAIAAAAAAAIAAAAAAJIAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAAABgAAAAACBgAAAAADBgAAAAADBgAAAAABAgAAAAAAAgAAAAAAIAAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABgAAAAABBgAAAAABBgAAAAAABgAAAAAABgAAAAACBgAAAAACBgAAAAAABgAAAAACAgAAAAAAAgAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAADIQAAAAADIQAAAAADAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAABQAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAADAgAAAAAAIQAAAAABIQAAAAADAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAADBQAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAIAAAAAAAAgAAAAAABgAAAAAABgAAAAADBgAAAAABAgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAEAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAADAgAAAAAAAgAAAAAAIAAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAADBgAAAAAABgAAAAACBgAAAAAABgAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAABBgAAAAABBgAAAAACAgAAAAAABgAAAAAABgAAAAACBgAAAAACBgAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 1,8: ind: 1,8 @@ -90,35 +96,35 @@ entities: version: 6 10,2: ind: 10,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQAAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA version: 6 10,3: ind: 10,3 - tiles: AwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA + tiles: AwAAAAABAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA version: 6 10,4: ind: 10,4 - tiles: AgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAADBwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAABBwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAAABwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAADAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAABBwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAAABwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAAABwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAACBwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,5: ind: 10,5 - tiles: AwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,6: ind: 10,6 - tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAACCAAAAAAACAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,7: ind: 10,7 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,8: ind: 10,8 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,9: ind: 10,9 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAAACgAAAAADCAAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAADCgAAAAACCAAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAAACgAAAAADCAAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAADCgAAAAAACAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 11,2: ind: 11,2 @@ -138,31 +144,31 @@ entities: version: 6 2,1: ind: 2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAADCAAAAAABBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAABCAAAAAADCQAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACQAAAAAAAgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAABCAAAAAACCQAAAAAACAAAAAADCAAAAAADCAAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAACCAAAAAACBQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAACAAAAAACBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAAACAAAAAABCQAAAAAACAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACQAAAAAAAgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAACAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAACCAAAAAAACQAAAAAACAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAADCAAAAAABBQAAAAACAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAA version: 6 2,2: ind: 2,2 - tiles: AQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAACCAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAACAAAAAACCAAAAAACCAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAAACAAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAABCAAAAAABCAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAABCAAAAAADCAAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAADCAAAAAABAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAA + tiles: AQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAAACAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAACAAAAAADCAAAAAACCAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAACCAAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAADCAAAAAABCAAAAAACAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAA version: 6 2,3: ind: 2,3 - tiles: AgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAADCAAAAAADCAAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAACAgAAAAAACAAAAAABCgAAAAADAgAAAAAACAAAAAABCAAAAAACCAAAAAABCgAAAAABCAAAAAAACgAAAAACCAAAAAACCAAAAAACFAAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAACAAAAAAACAAAAAACAgAAAAAACAAAAAAACgAAAAACCAAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAACCAAAAAADFAAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAACCAAAAAADCAAAAAABFAAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAACAAAAAACCAAAAAADCAAAAAACCgAAAAADCAAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAAACgAAAAAACAAAAAACAgAAAAAACAAAAAABCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAACAgAAAAAACAAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAABCgAAAAADCAAAAAABAgAAAAAACwAAAAADAgAAAAAACAAAAAACCgAAAAACCAAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAADCAAAAAABAgAAAAAACwAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAACCgAAAAABCAAAAAABAgAAAAAACwAAAAADAgAAAAAACAAAAAADCgAAAAACCAAAAAABAgAAAAAACAAAAAADCAAAAAADCAAAAAABAgAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAABCAAAAAADAgAAAAAACwAAAAABAgAAAAAACAAAAAADCAAAAAABCAAAAAACAgAAAAAACAAAAAAACAAAAAACCAAAAAACFAAAAAAACAAAAAADCAAAAAACCAAAAAADCgAAAAAACAAAAAACAgAAAAAACwAAAAAAAgAAAAAACAAAAAAACgAAAAABCAAAAAADAgAAAAAACAAAAAACCAAAAAABCAAAAAAAFAAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAADCAAAAAAAAgAAAAAACwAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAABAgAAAAAACAAAAAADCAAAAAABCAAAAAACFAAAAAAACAAAAAABCAAAAAAACAAAAAADCgAAAAACCAAAAAAAAgAAAAAACwAAAAAAAgAAAAAACAAAAAACCgAAAAAACAAAAAADAgAAAAAACAAAAAACCAAAAAADCAAAAAADAgAAAAAACAAAAAABCgAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAABFAAAAAAACAAAAAABCAAAAAACCAAAAAADAgAAAAAAAgAAAAAACgAAAAABCAAAAAADCgAAAAABCAAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAAACgAAAAABCAAAAAAAFAAAAAAACAAAAAABCAAAAAABCAAAAAADAgAAAAAACAAAAAAACgAAAAADCAAAAAACCAAAAAAACgAAAAABCAAAAAAACgAAAAABCAAAAAACCgAAAAAACAAAAAABCAAAAAACFAAAAAAACAAAAAABCAAAAAADCAAAAAACAgAAAAAACAAAAAADCAAAAAAD + tiles: AgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAACAgAAAAAACAAAAAABCAAAAAAACAAAAAACAgAAAAAACAAAAAACCgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAAACgAAAAAACAAAAAAACgAAAAABCAAAAAACCAAAAAAAFAAAAAAACAAAAAADCAAAAAABCAAAAAABAgAAAAAACAAAAAABCAAAAAABAgAAAAAACAAAAAACCgAAAAABCAAAAAABCAAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAAAFAAAAAAACAAAAAADCAAAAAABCAAAAAACAgAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAABFAAAAAAACAAAAAABCAAAAAABCAAAAAACAgAAAAAACAAAAAACCAAAAAABCAAAAAABCgAAAAADCAAAAAADCAAAAAABCAAAAAABCAAAAAAACAAAAAAACgAAAAADCAAAAAABAgAAAAAACAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAAAAgAAAAAACAAAAAADAgAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAABAgAAAAAACAAAAAAACAAAAAABCAAAAAACCgAAAAADCAAAAAACAgAAAAAACwAAAAAAAgAAAAAACAAAAAABCgAAAAACCAAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABAgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAAAAgAAAAAACwAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAADAgAAAAAACAAAAAAACAAAAAACCAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAACCgAAAAACCAAAAAABAgAAAAAACwAAAAACAgAAAAAACAAAAAAACgAAAAADCAAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAACCAAAAAABAgAAAAAACwAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAACAgAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAAACAAAAAACCAAAAAADCAAAAAACCgAAAAABCAAAAAABAgAAAAAACwAAAAADAgAAAAAACAAAAAABCgAAAAAACAAAAAADAgAAAAAACAAAAAADCAAAAAACCAAAAAAAFAAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAADAgAAAAAACwAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAADAgAAAAAACAAAAAABCAAAAAACCAAAAAABFAAAAAAACAAAAAAACAAAAAABCAAAAAABCgAAAAACCAAAAAACAgAAAAAACwAAAAACAgAAAAAACAAAAAAACgAAAAACCAAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAAAAgAAAAAACAAAAAAACgAAAAADCAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAACFAAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAACgAAAAADCAAAAAABCgAAAAADCAAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAADCgAAAAAACAAAAAAAFAAAAAAACAAAAAABCAAAAAABCAAAAAAAAgAAAAAACAAAAAADCgAAAAABCAAAAAACCAAAAAACCgAAAAADCAAAAAABCgAAAAABCAAAAAAACgAAAAAACAAAAAAACAAAAAACFAAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAACAAAAAABCAAAAAAD version: 6 2,4: ind: 2,4 - tiles: CAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAACCAAAAAADAgAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAACAAAAAABCgAAAAADAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAAACgAAAAACDAAAAAABDAAAAAABDAAAAAABDAAAAAACAgAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAAAAgAAAAAACAAAAAAACAAAAAADDAAAAAADDAAAAAACDAAAAAABDAAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAACAgAAAAAACAAAAAADCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAADAAAAAABDQAAAAAADAAAAAABDAAAAAABAgAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAACAgAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAACCAAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAADBwAAAAABCAAAAAADAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAABCAAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACAgAAAAAACAAAAAABCAAAAAABCAAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAABCAAAAAACBwAAAAADBwAAAAADBwAAAAADBwAAAAABAgAAAAAACAAAAAABCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAACAAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAAAAgAAAAAACAAAAAADCAAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACCAAAAAACBwAAAAABBwAAAAAABwAAAAADBwAAAAABAgAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAACAAAAAACBwAAAAACBwAAAAADBwAAAAABBwAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAACAAAAAACCAAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACCAAAAAABBwAAAAADBwAAAAACBwAAAAACBwAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAA + tiles: CAAAAAADCAAAAAABCAAAAAABCAAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAADCAAAAAABAgAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAACAAAAAABCgAAAAABAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAADCgAAAAACDAAAAAAADAAAAAADDAAAAAACDAAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAACAgAAAAAACAAAAAADCAAAAAADCAAAAAACAgAAAAAACAAAAAADCAAAAAACDAAAAAADDAAAAAADDAAAAAADDAAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAADBwAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAADAAAAAAADQAAAAAADAAAAAADDAAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAACAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAABBwAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAACCAAAAAACAgAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAABBwAAAAADBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAABAgAAAAAACAAAAAACCAAAAAADCAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAADAgAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABCAAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAADCAAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABCAAAAAABBwAAAAACBwAAAAADBwAAAAAABwAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAADCAAAAAADCAAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADCAAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAACAAAAAADCAAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACCAAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABAgAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAA version: 6 2,5: ind: 2,5 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAABBQAAAAACBQAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAADBQAAAAADAwAAAAABBQAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAABQAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAAABQAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAADBQAAAAACBAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAAABQAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACBAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAACAwAAAAABBQAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAACBAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAADBQAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAABQAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAAABQAAAAADAwAAAAAABQAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABBAAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAB + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAAABQAAAAADBQAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAwAAAAADBQAAAAADAwAAAAADBQAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAABBQAAAAADBAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAAABQAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAADBQAAAAADBAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAADAwAAAAADBQAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACBAAAAAAABAAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAAABQAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAABBQAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABBQAAAAABBAAAAAAABAAAAAAABAAAAAAAAwAAAAAABQAAAAABAwAAAAADBQAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAADBAAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAC version: 6 2,6: ind: 2,6 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAABCwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAACwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAABCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAACAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAACAAAAAABCAAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAgAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAAACAAAAAABAwAAAAABAwAAAAADAwAAAAACCAAAAAADCAAAAAADCAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAACAAAAAABCAAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAACgAAAAAACgAAAAAACgAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAACgAAAAACCgAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAAC + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAACCwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAAACAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAACCAAAAAADCAAAAAAACAAAAAABCAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAADCAAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAgAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAABCAAAAAADAwAAAAAAAwAAAAAAAwAAAAAACAAAAAACCAAAAAADCAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCAAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAADAwAAAAADAgAAAAAAAwAAAAABAgAAAAAACgAAAAACCgAAAAABCgAAAAACAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAACgAAAAADCgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAB version: 6 2,7: ind: 2,7 - tiles: AwAAAAACBQAAAAAABQAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABBQAAAAACBQAAAAABBQAAAAAAAwAAAAADBQAAAAAABQAAAAABBQAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAgAAAAAABQAAAAADAwAAAAADBQAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAABCgAAAAABCgAAAAAACgAAAAAACAAAAAABCAAAAAADCAAAAAADAwAAAAAABQAAAAAAAwAAAAACBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCgAAAAADCgAAAAABCgAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAADAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAACwAAAAABCwAAAAADAgAAAAAACAAAAAADCgAAAAAACgAAAAABCgAAAAAACAAAAAAAAgAAAAAACwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAACwAAAAABCwAAAAAAAgAAAAAACAAAAAAACgAAAAAACgAAAAADCgAAAAAACAAAAAADAgAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAEAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABBwAAAAAAAgAAAAAABwAAAAADBwAAAAADFgAAAAAEBwAAAAADAgAAAAAABwAAAAABAgAAAAAACwAAAAADCwAAAAABCwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAABAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAABAgAAAAAACwAAAAAACwAAAAABCwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAABAgAAAAAACwAAAAAACwAAAAADCwAAAAACAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAFgAAAAACBwAAAAACBwAAAAABAgAAAAAABwAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAACwAAAAACCwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAAABwAAAAADBwAAAAACBwAAAAADFgAAAAAGBwAAAAACAwAAAAABCwAAAAADCwAAAAABAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAADBQAAAAABBQAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACBQAAAAAABQAAAAACBQAAAAACAwAAAAABBQAAAAAABQAAAAACBQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAgAAAAAABQAAAAACAwAAAAADBQAAAAACAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAACCgAAAAABCgAAAAACCgAAAAACCAAAAAACCAAAAAADCAAAAAABAwAAAAAABQAAAAAAAwAAAAADBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACgAAAAAACgAAAAACCgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAABAgAAAAAAAwAAAAABAgAAAAAACwAAAAAACwAAAAACAgAAAAAACAAAAAADCgAAAAADCgAAAAADCgAAAAAACAAAAAADAgAAAAAACwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAgAAAAAACwAAAAABCwAAAAABAgAAAAAACAAAAAAACgAAAAAACgAAAAACCgAAAAABCAAAAAAAAgAAAAAACwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADBwAAAAABAgAAAAAABwAAAAAABwAAAAABFgAAAAADBwAAAAABAgAAAAAABwAAAAADAgAAAAAACwAAAAABCwAAAAADCwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAABAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAAAAgAAAAAACwAAAAACCwAAAAACCwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAACAgAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAACAgAAAAAACwAAAAACCwAAAAACCwAAAAADAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAFgAAAAAGBwAAAAADBwAAAAACAgAAAAAABwAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAACwAAAAAACwAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAABFgAAAAACBwAAAAACAwAAAAACCwAAAAABCwAAAAABAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 2,8: ind: 2,8 @@ -178,43 +184,43 @@ entities: version: 6 3,1: ind: 3,1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABBAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABBQAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABBQAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAABBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADBAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADBAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAADBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAABQAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADBQAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADBAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 3,10: ind: 3,10 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAwAAAAACAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAwAAAAAAAwAAAAAABAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAwAAAAADAwAAAAACBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAADAwAAAAADCAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAABAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACBAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACAAAAAABBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAACAAAAAACBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAACAAAAAABBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAwAAAAAAAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAACAwAAAAAABAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAwAAAAACAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAwAAAAAAAwAAAAACCAAAAAABCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAADAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACBAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAABBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAABBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAACAAAAAABBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAA version: 6 3,3: ind: 3,3 - tiles: CAAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAADAgAAAAAADAAAAAACDAAAAAACAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAADBwAAAAADDAAAAAADDAAAAAACDAAAAAACAgAAAAAABwAAAAACCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAADBwAAAAACAgAAAAAADAAAAAACDAAAAAABAgAAAAAABwAAAAAACAAAAAACCAAAAAAACAAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAABwAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAACCAAAAAABCAAAAAABAgAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAABCAAAAAABCAAAAAACCAAAAAABAgAAAAAAAwAAAAADCAAAAAACCAAAAAABCAAAAAACCAAAAAABCAAAAAACCAAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAACCAAAAAACCAAAAAABAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAACCAAAAAADCAAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAAACAAAAAABCAAAAAADCAAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAADAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAADCAAAAAAAAgAAAAAACgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAACgAAAAABAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAACgAAAAABCgAAAAABCgAAAAABCgAAAAAACgAAAAAACgAAAAABCgAAAAABBQAAAAAAAgAAAAAACgAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAADAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAB + tiles: CAAAAAACCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAACBwAAAAABAgAAAAAADAAAAAABDAAAAAACAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAACBwAAAAABDAAAAAACDAAAAAACDAAAAAADAgAAAAAABwAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAAABwAAAAADAgAAAAAADAAAAAAADAAAAAABAgAAAAAABwAAAAAACAAAAAADCAAAAAADCAAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADCAAAAAACCAAAAAADCAAAAAACCAAAAAAACAAAAAACCAAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAADCAAAAAAAAgAAAAAABwAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAAACAAAAAADCAAAAAAACAAAAAABAgAAAAAAAwAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAABAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAABAgAAAAAAAwAAAAACCAAAAAACCAAAAAACCAAAAAACCAAAAAACCAAAAAADCAAAAAABAgAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAAACAAAAAABAgAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAABCAAAAAABCAAAAAACCAAAAAABCAAAAAACAgAAAAAACgAAAAACCAAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAACgAAAAABAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAABAgAAAAAACgAAAAABCgAAAAAACgAAAAABCgAAAAABCgAAAAACCgAAAAAACgAAAAABBQAAAAAAAgAAAAAACgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAADAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAD version: 6 3,4: ind: 3,4 - tiles: CAAAAAADCAAAAAAACgAAAAAACgAAAAACBQAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADCgAAAAACCAAAAAACCgAAAAAACgAAAAAABQAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADCAAAAAABCAAAAAADCAAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAABAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAABAgAAAAAACAAAAAACCAAAAAADCAAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAABCQAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAgAAAAAACAAAAAADCgAAAAACCgAAAAADCAAAAAAACAAAAAABAgAAAAAACAAAAAABCAAAAAACCAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAA + tiles: CAAAAAAACAAAAAAACgAAAAAACgAAAAADBQAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABCgAAAAADCAAAAAACCgAAAAAACgAAAAABBQAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACCAAAAAABCAAAAAAACAAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAACAAAAAABCAAAAAADCAAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAABCAAAAAACCAAAAAACCAAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAACCAAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAACCQAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAACAAAAAADCgAAAAADCgAAAAADCAAAAAADCAAAAAABAgAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAA version: 6 3,5: ind: 3,5 - tiles: AwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAACCAAAAAAACAAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAADBQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADFAAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAADCAAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAFAAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAACCAAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAFAAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAAABQAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAADFAAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAADBQAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAAABQAAAAADAwAAAAABBQAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAwAAAAAABQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAABQAAAAADAwAAAAABBQAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACFAAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAA + tiles: AwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAAACAAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAADFAAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAAACAAAAAAACAAAAAADBQAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAADFAAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAAACAAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACFAAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAADCAAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADFAAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAADCAAAAAABBQAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABFAAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAACBQAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAwAAAAACBQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAAABQAAAAAAAwAAAAAABQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAABBQAAAAADAwAAAAADBQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABFAAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAD version: 6 3,6: ind: 3,6 - tiles: AwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAABEAAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAEAAAAAAAEQAAAAADEAAAAAAAEQAAAAACEAAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACFAAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAEAAAAAAAEQAAAAADEAAAAAAAEQAAAAACEAAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAAAFAAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAEAAAAAADEQAAAAABEAAAAAABEQAAAAADEAAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAABCAAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADCAAAAAADAgAAAAAACAAAAAACCAAAAAADCAAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABCgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABFAAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAABQAAAAAABQAAAAADBQAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADFAAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAAAEAAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAEAAAAAAAEQAAAAADEAAAAAAAEQAAAAABEAAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADFAAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAEAAAAAAAEQAAAAACEAAAAAABEQAAAAAAEAAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACFAAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAEAAAAAACEQAAAAACEAAAAAACEQAAAAABEAAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAACEAAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACCAAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABCgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 3,7: ind: 3,7 - tiles: AwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAFAAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAABFAAAAAAAAwAAAAABAwAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAFAAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADCwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACCwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAADAgAAAAAAEAAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAACwAAAAACCwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAAACwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAACwAAAAADCwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAAACwAAAAADCwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAAACwAAAAACCwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAA + tiles: AwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACFAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAABAwAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADFAAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAACwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAEAAAAAADEAAAAAADEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAABCwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAADAgAAAAAAEAAAAAABAgAAAAAAEAAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAADAgAAAAAAEAAAAAACAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAABCwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAABCwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAACCwAAAAABCwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAACCwAAAAABCwAAAAABAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAABCwAAAAAACwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAA version: 6 3,8: ind: 3,8 - tiles: AAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAA + tiles: AAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAIgAAAAAAIgAAAAACIgAAAAABAgAAAAAAIgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAABIgAAAAAAAgAAAAAAIgAAAAAAAgAAAAAAAgAAAAAAIgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAADAgAAAAAAIgAAAAADIgAAAAADIgAAAAACIgAAAAACAgAAAAAAIgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAAAAgAAAAAAAgAAAAAAIgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAIgAAAAACIgAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAIgAAAAABAgAAAAAAIgAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAADIgAAAAAAIgAAAAAAIgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAAAIgAAAAACIgAAAAACIgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAA version: 6 3,9: ind: 3,9 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAADEwAAAAAEAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAACgAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACCgAAAAADAgAAAAAAEwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACCgAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAAAAgAAAAAAAwAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACIwAAAAACEwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIwAAAAAAHgAAAAAAIwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAACIwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAHgAAAAAAIwAAAAADHgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAACgAAAAABFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAABCgAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAACgAAAAABAgAAAAAAEwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACgAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABCgAAAAAAAwAAAAACEwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAAEAgAAAAAAAwAAAAAA version: 6 4,0: ind: 4,0 @@ -222,35 +228,35 @@ entities: version: 6 4,1: ind: 4,1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,10: ind: 4,10 - tiles: AwAAAAADEwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAEwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADEwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAABEwAAAAAAAwAAAAACAwAAAAADAwAAAAABEwAAAAAEAwAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAAEAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AwAAAAABEwAAAAAEAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAACJAAAAAAAAgAAAAAAJAAAAAABJAAAAAACAgAAAAAAJAAAAAABAwAAAAACAwAAAAADAwAAAAACFgAAAAADBwAAAAADAgAAAAAAAgAAAAAAFgAAAAACAgAAAAAAJAAAAAADAgAAAAAAJAAAAAABJAAAAAADJAAAAAACJAAAAAACJAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAACBwAAAAABFgAAAAADAgAAAAAAJAAAAAABJAAAAAAAJAAAAAABJAAAAAADJAAAAAABJAAAAAABJAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABwAAAAAAFgAAAAAAFgAAAAACBwAAAAABFgAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,2: ind: 4,2 - tiles: AgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAADBwAAAAAC + tiles: AgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAD version: 6 4,3: ind: 4,3 - tiles: AgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAADBwAAAAABBwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAACBwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAABBwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAADBwAAAAABBwAAAAABBwAAAAADBwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAABBwAAAAABBwAAAAAABwAAAAADBwAAAAAABwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAADBwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAACBwAAAAACBwAAAAABBwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAgAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAACBwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAADBwAAAAADHwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAABwAAAAADBwAAAAACAgAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABHwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAAHwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAAABwAAAAADBwAAAAACHwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAACAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAABwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAA + tiles: AgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAACBwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAADBwAAAAADBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAADBwAAAAADBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAABBwAAAAABBwAAAAADBwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAADBwAAAAACBwAAAAADBwAAAAACHwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAADHwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACHwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAABBwAAAAACBwAAAAADHwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAACAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAABwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAADFAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAA version: 6 4,4: ind: 4,4 - tiles: AwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAADFAAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAACFAAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAABAgAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAADCAAAAAADAgAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAABAgAAAAAACwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAABAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAACCAAAAAACCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAACgAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAADCAAAAAABCAAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAABCAAAAAACCAAAAAADAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAADCAAAAAABAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAFAAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAACCAAAAAAAAgAAAAAACwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAADBwAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAABCAAAAAABAgAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAABAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAADCAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAABCAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAADAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAACgAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAAACAAAAAABCAAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAABCAAAAAAACAAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAABCAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAABCAAAAAABCAAAAAABCAAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 4,5: ind: 4,5 - tiles: AgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAADAwAAAAACBQAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAABAwAAAAAABQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACBQAAAAACAwAAAAACAwAAAAABBQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADCAAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAEAAAAAABAgAAAAAAAgAAAAAAEQAAAAADEQAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAACAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAABAgAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAABEAAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAADAgAAAAAAEAAAAAAAEAAAAAADEAAAAAABEAAAAAABAgAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAADEAAAAAADEAAAAAADEAAAAAADEAAAAAADEAAAAAAAEAAAAAABAgAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAADAgAAAAAAEQAAAAADEQAAAAACEQAAAAAAEAAAAAADEQAAAAABEQAAAAABEAAAAAABEQAAAAABEQAAAAABEQAAAAABAgAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAADAgAAAAAAEQAAAAADEQAAAAADEQAAAAACEAAAAAAAEQAAAAABEQAAAAABEAAAAAAAEQAAAAADEQAAAAAAEQAAAAAC + tiles: AgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAACAwAAAAAABQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAADAwAAAAABAwAAAAAABQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADBQAAAAAAAwAAAAADAwAAAAACBQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAADCAAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAEQAAAAABEQAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAABAgAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAADAgAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAABEAAAAAACEAAAAAACEAAAAAADAgAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAAAAgAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAADEAAAAAACEAAAAAACEAAAAAABEAAAAAADAgAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAABAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEAAAAAACEQAAAAACEQAAAAABEAAAAAABEQAAAAABEQAAAAADEQAAAAADAgAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAABAgAAAAAAEQAAAAABEQAAAAACEQAAAAAAEAAAAAAAEQAAAAACEQAAAAACEAAAAAACEQAAAAAAEQAAAAAAEQAAAAAC version: 6 4,6: ind: 4,6 - tiles: AgAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAABEAAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAACEAAAAAACEAAAAAADEAAAAAACEAAAAAABEAAAAAADEAAAAAAAAgAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAACAgAAAAAAEAAAAAACEAAAAAACEQAAAAAAEQAAAAADEQAAAAACEQAAAAADEQAAAAABEQAAAAAAEAAAAAAAEAAAAAACAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAADEAAAAAACEAAAAAABEAAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACAgAAAAAAEQAAAAACEQAAAAADEQAAAAADEAAAAAABEQAAAAAAEQAAAAACEAAAAAABEQAAAAACEQAAAAADEQAAAAABAgAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAABAgAAAAAAEQAAAAAAEQAAAAABEQAAAAAAEAAAAAAAEQAAAAABEQAAAAADEAAAAAABEQAAAAACEQAAAAABEQAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAADEQAAAAACAgAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAABEAAAAAACAgAAAAAAAgAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEQAAAAABAgAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAEAAAAAABAgAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAADEQAAAAADAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAADEAAAAAABEAAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAACwAAAAACCwAAAAACCwAAAAAACwAAAAADCwAAAAABCwAAAAAACwAAAAACCwAAAAADCwAAAAAACwAAAAACCwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AgAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAADEAAAAAABEAAAAAACEAAAAAACEAAAAAADEAAAAAAAEAAAAAACAgAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAABAgAAAAAAEAAAAAAAEAAAAAAAEQAAAAAAEQAAAAADEQAAAAADEQAAAAADEQAAAAABEQAAAAADEAAAAAABEAAAAAABAgAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAACEAAAAAABEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACAgAAAAAAEQAAAAABEQAAAAADEQAAAAACEAAAAAABEQAAAAABEQAAAAADEAAAAAADEQAAAAADEQAAAAAAEQAAAAACAgAAAAAAEAAAAAABEAAAAAAAEAAAAAABEAAAAAABAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEAAAAAAAEQAAAAAAEQAAAAADEAAAAAACEQAAAAAAEQAAAAABEQAAAAACAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAAAEQAAAAABAgAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAACEAAAAAACEAAAAAACEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAACEQAAAAABAgAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACAgAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAADEQAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAAAEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAADEAAAAAADEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAACwAAAAAACwAAAAADCwAAAAACCwAAAAAACwAAAAABCwAAAAACCwAAAAABCwAAAAABCwAAAAABCwAAAAACCwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 4,7: ind: 4,7 - tiles: AwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAABEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAACBQAAAAAABQAAAAAABQAAAAAAAwAAAAADAgAAAAAAAwAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAADEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACBQAAAAACBQAAAAADBQAAAAADAwAAAAACAgAAAAAAAwAAAAADEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 4,8: ind: 4,8 @@ -258,7 +264,7 @@ entities: version: 6 4,9: ind: 4,9 - tiles: BAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACEwAAAAACAwAAAAACEwAAAAAEAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAA + tiles: BAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAABJAAAAAACJAAAAAADJAAAAAAAJAAAAAAAJAAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAAAJAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 5,0: ind: 5,0 @@ -266,43 +272,43 @@ entities: version: 6 5,1: ind: 5,1 - tiles: AwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADFAAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAFAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAB + tiles: AwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAFAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADFAAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAC version: 6 5,10: ind: 5,10 - tiles: AwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAEwAAAAAEAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADEwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAEwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAEwAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA + tiles: JAAAAAAAJAAAAAABJAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAABAgAAAAAAJAAAAAABAgAAAAAAJAAAAAACJAAAAAACAgAAAAAAAgAAAAAAJQAAAAAAJQAAAAADJQAAAAABJQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAACJAAAAAAAJAAAAAABAgAAAAAAJAAAAAAAAgAAAAAAJQAAAAADJQAAAAACAgAAAAAAJQAAAAABJQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAAAJQAAAAABAgAAAAAAJQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAJQAAAAACAgAAAAAAAgAAAAAAJQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAJQAAAAACJQAAAAACAgAAAAAAJQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAJgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAJgAAAAAAAgAAAAAAJgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAJgAAAAAAJgAAAAAAAgAAAAAAJgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA version: 6 5,2: ind: 5,2 - tiles: AAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAADCAAAAAACCAAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABAgAAAAAACAAAAAAACAAAAAABCAAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAABwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAB + tiles: AAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAAACAAAAAAACAAAAAADCAAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAABCAAAAAAACAAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABBwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAAA version: 6 5,3: ind: 5,3 - tiles: BwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADBwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABBwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADBwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAABwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABBwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAABwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABBwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAABwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAA + tiles: BwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAACBwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACBwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAABwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAAABwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADBwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAgAAAAAABwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADBwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAABwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAgAAAAAA version: 6 5,4: ind: 5,4 - tiles: AwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAACwAAAAACCwAAAAADCwAAAAADCwAAAAACCwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAACwAAAAACCwAAAAADCwAAAAABCwAAAAACCwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAACAAAAAABCAAAAAAACgAAAAADCgAAAAACCgAAAAADCAAAAAABCAAAAAADAgAAAAAACAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAABCAAAAAAACAAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAABBwAAAAACCAAAAAADCAAAAAABCAAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAgAAAAAABwAAAAAABwAAAAAACgAAAAABCgAAAAAACgAAAAACCgAAAAACCAAAAAACCgAAAAADCgAAAAACCgAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAACCAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAADCAAAAAADCAAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABCAAAAAABCAAAAAABCgAAAAADCgAAAAADCgAAAAACCAAAAAABCAAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAA + tiles: AwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAACwAAAAACCwAAAAABCwAAAAACCwAAAAAACwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAACwAAAAADCwAAAAACCwAAAAADCwAAAAABCwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAAACAAAAAADCgAAAAABCgAAAAAACgAAAAACCAAAAAAACAAAAAABAgAAAAAACAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAAACAAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAADCAAAAAACCAAAAAAACAAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAADCAAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAABwAAAAACBwAAAAAACgAAAAACCgAAAAABCgAAAAABCgAAAAADCAAAAAADCgAAAAABCgAAAAACCgAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAABwAAAAABBwAAAAAABwAAAAABCAAAAAACCAAAAAACCAAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAABCAAAAAACCAAAAAADCAAAAAADCAAAAAABCAAAAAADCAAAAAAACAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACCAAAAAADCAAAAAACCgAAAAABCgAAAAADCgAAAAACCAAAAAAACAAAAAACAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAA version: 6 5,5: ind: 5,5 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAACAgAAAAAACAAAAAADCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAABAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAABCAAAAAACCAAAAAACCAAAAAADCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAAAEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAABAgAAAAAACAAAAAACCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAABCAAAAAADCAAAAAADCAAAAAADCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 5,6: ind: 5,6 - tiles: EAAAAAADEAAAAAACEAAAAAABEAAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAACEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAEAAAAAADEAAAAAAAEAAAAAABEAAAAAADAgAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACFQAAAAAAEAAAAAABEAAAAAACEAAAAAACEAAAAAADAgAAAAAAAgAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABFQAAAAAAAgAAAAAAEAAAAAABEAAAAAABEAAAAAACAgAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAABFQAAAAAAAgAAAAAAEAAAAAABEAAAAAAAEAAAAAACAgAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAAAEAAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABFQAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAABAgAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABEAAAAAACAwAAAAABAwAAAAABAwAAAAACFQAAAAAAAwAAAAAAFQAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAADEAAAAAADEAAAAAADEAAAAAABEAAAAAADEAAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAFQAAAAAAEAAAAAADEAAAAAAAEAAAAAACEAAAAAACAgAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAACEAAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACFQAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAADAgAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADEAAAAAADEAAAAAABEAAAAAAAEAAAAAACEAAAAAABEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACEAAAAAADEAAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAABEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: EAAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAAAAgAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAFQAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAADAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAFQAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAFQAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAABEAAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADFQAAAAAAAgAAAAAAEAAAAAABEAAAAAABEAAAAAADAgAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAAwAAAAABAwAAAAACAwAAAAABFQAAAAAAAwAAAAACFQAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAADEAAAAAADEAAAAAAAEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACFQAAAAAAEAAAAAABEAAAAAACEAAAAAACEAAAAAABAgAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAABEAAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAABFQAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAADAgAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACEAAAAAADEAAAAAABEAAAAAADEAAAAAAAEAAAAAABEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADEAAAAAADEAAAAAAAEAAAAAACEAAAAAAAEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAEAAAAAABEAAAAAAAEAAAAAABEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 5,7: ind: 5,7 - tiles: AwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAFAAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAgAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAACCAAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADCAAAAAABCAAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADFAAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAAACAAAAAACCAAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAACAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAACAAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABCAAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADCAAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAABQAAAAAABQAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAACBQAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAC + tiles: AwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAFAAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACCAAAAAABCAAAAAABCAAAAAABCAAAAAAACAAAAAAACAAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADFAAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACCAAAAAACCAAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADCAAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAACAAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABCAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADCAAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAABQAAAAABBQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAABBQAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAC version: 6 5,8: ind: 5,8 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAD + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAB version: 6 5,9: ind: 5,9 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAEwAAAAAEAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAD + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAABJAAAAAACAgAAAAAAJAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAABAgAAAAAAJAAAAAADJAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAB version: 6 6,0: ind: 6,0 @@ -310,147 +316,147 @@ entities: version: 6 6,1: ind: 6,1 - tiles: AgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAFAAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAACFAAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAA + tiles: AgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAACAAAAAADAgAAAAAACAAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAACAAAAAADCAAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABCAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAACAAAAAACCAAAAAACAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAACAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAABFAAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAB version: 6 6,10: ind: 6,10 - tiles: CAAAAAABCAAAAAADCAAAAAADCAAAAAABCAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAwAAAAADBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCgAAAAABCgAAAAADCgAAAAACCAAAAAAACAAAAAABAgAAAAAAAwAAAAACBQAAAAADBQAAAAACBQAAAAABBQAAAAAABQAAAAABBQAAAAAABQAAAAACCAAAAAACCAAAAAACCgAAAAADCQAAAAAACgAAAAABCAAAAAAACAAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAACCgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAEBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABwAAAAADAgAAAAAAFgAAAAAGBwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAADBwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAEwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAEBwAAAAACBwAAAAABFgAAAAAGBwAAAAABBwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAACCAAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAABAgAAAAAAAwAAAAAABQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCgAAAAABCgAAAAADCgAAAAAACAAAAAACCAAAAAACAgAAAAAAAwAAAAABBQAAAAADBQAAAAACBQAAAAAABQAAAAACBQAAAAAABQAAAAABBQAAAAACCAAAAAABCAAAAAAACgAAAAABCQAAAAAACgAAAAACCAAAAAABCAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAACgAAAAADCgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAADBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBwAAAAACAgAAAAAAFgAAAAAFBwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAADBwAAAAACAgAAAAAAAwAAAAADAgAAAAAAEwAAAAAEAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAABwAAAAAABwAAAAADFgAAAAAGBwAAAAABBwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,2: ind: 6,2 - tiles: AwAAAAACAwAAAAADAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAABwAAAAABBwAAAAABBwAAAAADBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAACAgAAAAAAAwAAAAACAwAAAAACAgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAADCAAAAAADAwAAAAACAwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAACAAAAAAACAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAABwAAAAABBwAAAAACBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACBwAAAAAABwAAAAADBwAAAAADBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAACAwAAAAADAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAADAgAAAAAAAwAAAAABAwAAAAACAgAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAABAwAAAAADAwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAACAgAAAAAAAwAAAAACAwAAAAABAgAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAADCAAAAAACCAAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACBwAAAAADBwAAAAACBwAAAAADBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAADBwAAAAACBwAAAAADBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 6,3: ind: 6,3 - tiles: AwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAADBwAAAAADBwAAAAAABwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAABwAAAAABBwAAAAAAFgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAACBwAAAAABAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAABwAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACBwAAAAACBwAAAAADBwAAAAABBwAAAAADBwAAAAAABwAAAAACBwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAABAwAAAAAAAwAAAAAC + tiles: AwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAFAAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAADFAAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAABwAAAAACBwAAAAACFgAAAAAGAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAADBwAAAAADAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAACGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAABwAAAAACGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABAwAAAAAAAwAAAAAB version: 6 6,4: ind: 6,4 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAADBwAAAAADBwAAAAAABwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAABwAAAAABBwAAAAABBwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAAABwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAAABwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAFAAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAB + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAADBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAABBwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADFAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAFAAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAA version: 6 6,5: ind: 6,5 - tiles: AgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAAAGwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAgAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAACGwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAACwAAAAACBwAAAAABBwAAAAAABwAAAAACAgAAAAAAAwAAAAABFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAACwAAAAADCwAAAAACBwAAAAACBwAAAAADBwAAAAABAgAAAAAAAwAAAAACFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAACwAAAAAACwAAAAACBwAAAAADBwAAAAABBwAAAAAAAwAAAAABAwAAAAABFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAACwAAAAABCwAAAAADBwAAAAACBwAAAAAABwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAACwAAAAABCwAAAAAABwAAAAAABwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAA + tiles: AgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAACGwAAAAACAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAABGwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAADGwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACGwAAAAABGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAACwAAAAABBwAAAAACBwAAAAABBwAAAAADAgAAAAAAAwAAAAACFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAACwAAAAABCwAAAAABBwAAAAADBwAAAAABBwAAAAADAgAAAAAAAwAAAAACFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAACwAAAAACCwAAAAACBwAAAAAABwAAAAAABwAAAAABAwAAAAADAwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAACwAAAAABCwAAAAABBwAAAAACBwAAAAABBwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAACwAAAAADCwAAAAADBwAAAAABBwAAAAADBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAA version: 6 6,6: ind: 6,6 - tiles: AwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAAAAwAAAAADAwAAAAADDwAAAAACDwAAAAABDwAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAABDwAAAAACCwAAAAACCwAAAAACCwAAAAADCwAAAAACFQAAAAAAAwAAAAACAwAAAAADAwAAAAADDwAAAAABDwAAAAABDwAAAAADDwAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAAACwAAAAACCwAAAAAACwAAAAABCwAAAAABFQAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABCwAAAAACCwAAAAAACwAAAAAACwAAAAACFQAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAAACwAAAAACCwAAAAABFQAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAADAgAAAAAACwAAAAAACwAAAAABCwAAAAADCwAAAAAAFQAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAABAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAADBwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAADBwAAAAACBwAAAAADBwAAAAACAwAAAAAAAgAAAAAAAwAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAABAwAAAAADBwAAAAABBwAAAAACBwAAAAADBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAABAwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAACAgAAAAAAAgAAAAAAAwAAAAABHAAAAAABHAAAAAADHAAAAAACHAAAAAABAwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAADAgAAAAAAAwAAAAACAwAAAAADHAAAAAACHAAAAAAAHAAAAAADHAAAAAADAwAAAAABAwAAAAADBwAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAwAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAA + tiles: AwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAABAwAAAAABAwAAAAADDwAAAAADDwAAAAADDwAAAAABDwAAAAADDwAAAAAADwAAAAABDwAAAAABDwAAAAAACwAAAAADCwAAAAAACwAAAAACCwAAAAAAFQAAAAAAAwAAAAACAwAAAAACAwAAAAACDwAAAAAADwAAAAADDwAAAAADDwAAAAACDwAAAAAADwAAAAABDwAAAAAADwAAAAABCwAAAAACCwAAAAAACwAAAAACCwAAAAACFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACCwAAAAAACwAAAAADCwAAAAAACwAAAAACFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAACCwAAAAAACwAAAAABCwAAAAACFQAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAACBwAAAAABAgAAAAAACwAAAAABCwAAAAACCwAAAAADCwAAAAADFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAADBwAAAAADBwAAAAACBwAAAAACAwAAAAABAgAAAAAAAwAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAADAwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAABBwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAAAAwAAAAABBwAAAAACBwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAACAwAAAAADBwAAAAADBwAAAAABBwAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAACBwAAAAADAgAAAAAAAwAAAAADAwAAAAADHAAAAAADHAAAAAADHAAAAAABHAAAAAAAAwAAAAACAwAAAAADBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAwAAAAACHAAAAAADHAAAAAADHAAAAAABHAAAAAADHAAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAC version: 6 6,7: ind: 6,7 - tiles: CAAAAAABAgAAAAAAAwAAAAADHAAAAAADHAAAAAABHAAAAAADHAAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAACCAAAAAADAgAAAAAAAwAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAADHAAAAAABCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACHAAAAAABHAAAAAADHAAAAAADHAAAAAACHAAAAAACHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAADHAAAAAAACAAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABFAAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABFAAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAACwAAAAACCwAAAAAACwAAAAAAAgAAAAAAAwAAAAACBQAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAABQAAAAABAwAAAAACBQAAAAADBQAAAAAABQAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: CAAAAAABAgAAAAAAAwAAAAABHAAAAAADHAAAAAABHAAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAACAAAAAAAAgAAAAAAAwAAAAADHAAAAAABHAAAAAACHAAAAAACHAAAAAAAHAAAAAABHAAAAAABHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAADCAAAAAAAAgAAAAAAAwAAAAACAwAAAAABHAAAAAACHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAABHAAAAAAAHAAAAAABCAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADFAAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADFAAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAgAAAAAACwAAAAAACwAAAAACCwAAAAADAgAAAAAAAwAAAAACBQAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADBQAAAAABAwAAAAAABQAAAAAABQAAAAACBQAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 6,8: ind: 6,8 - tiles: AwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAADCgAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAACBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACBQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAAACgAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAA + tiles: AwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAABCgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAACBQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAAACgAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAA version: 6 6,9: ind: 6,9 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADCgAAAAABCgAAAAABCgAAAAADAwAAAAADAwAAAAADAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAACgAAAAABCgAAAAACCgAAAAABAwAAAAABAwAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACBQAAAAADAwAAAAACCgAAAAAACgAAAAAACgAAAAABAwAAAAABBQAAAAABAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAAACgAAAAABCgAAAAADCgAAAAAAAwAAAAACBQAAAAADAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAABQAAAAADAwAAAAABCgAAAAADCgAAAAABCgAAAAABAwAAAAACBQAAAAABAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAACAgAAAAAAAwAAAAACBQAAAAACBQAAAAADBQAAAAACBQAAAAAABQAAAAACBQAAAAADBQAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADCgAAAAADCgAAAAADCgAAAAADAwAAAAAAAwAAAAACAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADCgAAAAADCgAAAAACCgAAAAACAwAAAAAAAwAAAAABAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAACAwAAAAAACgAAAAADCgAAAAACCgAAAAACAwAAAAACBQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAADAwAAAAADCgAAAAACCgAAAAADCgAAAAAAAwAAAAAABQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAABQAAAAADAwAAAAABCgAAAAAACgAAAAAACgAAAAADAwAAAAAABQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAABCAAAAAACCAAAAAACCAAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAwAAAAAABQAAAAADBQAAAAACBQAAAAAABQAAAAACBQAAAAAABQAAAAABBQAAAAAD version: 6 7,1: ind: 7,1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAA version: 6 7,10: ind: 7,10 - tiles: BQAAAAAAAwAAAAABAgAAAAAACAAAAAABCgAAAAABCQAAAAAACgAAAAADCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABQAAAAACAwAAAAABAgAAAAAACAAAAAACCgAAAAABCgAAAAACCgAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAFgAAAAAABwAAAAADAgAAAAAABwAAAAADAgAAAAAAEwAAAAABAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAABwAAAAAABwAAAAACAgAAAAAAFgAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAABwAAAAACAgAAAAAABwAAAAACBwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAFgAAAAAAFgAAAAAGBwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAABwAAAAACFgAAAAAABwAAAAABBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BQAAAAAAAwAAAAADAgAAAAAACAAAAAAACgAAAAABCQAAAAAACgAAAAADCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABQAAAAACAwAAAAADAgAAAAAACAAAAAADCgAAAAABCgAAAAABCgAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAACHAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAFgAAAAAABwAAAAACAgAAAAAABwAAAAAAAgAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAACAgAAAAAAHAAAAAAAHAAAAAABAgAAAAAAHAAAAAABAgAAAAAAAAAAAAAABwAAAAACBwAAAAADAgAAAAAAFgAAAAAFFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAACAgAAAAAAHAAAAAABAgAAAAAAAAAAAAAABwAAAAAAAgAAAAAABwAAAAABBwAAAAACFAAAAAAAAgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABAgAAAAAAAgAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAFgAAAAAAFgAAAAACBwAAAAAAFAAAAAAAHAAAAAAAAgAAAAAAHAAAAAADAgAAAAAAAgAAAAAAHAAAAAABHAAAAAABAgAAAAAAHAAAAAADAgAAAAAAAAAAAAAABwAAAAAAFgAAAAAABwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,2: ind: 7,2 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAACEAAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAEAAAAAADEAAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAAAEAAAAAABEAAAAAABAgAAAAAAAwAAAAADBQAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAD + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAABEAAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAADEAAAAAACAgAAAAAAAwAAAAADBQAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAAB version: 6 7,3: ind: 7,3 - tiles: AgAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAACEAAAAAABEAAAAAABAgAAAAAAAwAAAAADBQAAAAADAwAAAAADAgAAAAAAAwAAAAADBQAAAAAAAgAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAACEAAAAAAAAgAAAAAAAwAAAAADBQAAAAADAwAAAAAAAgAAAAAAAwAAAAACBQAAAAAAAgAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAAAEAAAAAADEAAAAAADEAAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAgAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAAAEAAAAAADEAAAAAADEAAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAEAAAAAABAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABBQAAAAAABQAAAAAABQAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABGgAAAAAAGgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAABBwAAAAADBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAD + tiles: AgAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAAAAgAAAAAAAwAAAAADBQAAAAACAwAAAAACAgAAAAAAAwAAAAADBQAAAAABAgAAAAAAEAAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAABEAAAAAACEAAAAAAAEAAAAAADAgAAAAAAAwAAAAACBQAAAAABAwAAAAABAgAAAAAAAwAAAAADBQAAAAAAAgAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAACAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAAABQAAAAADAgAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAEAAAAAABEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAABBQAAAAABBQAAAAADBQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADBwAAAAAABwAAAAADBwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABGgAAAAAAGgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADBwAAAAADBwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAC version: 6 7,4: ind: 7,4 - tiles: AwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADFAAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACFAAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAFAAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAABFAAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADFAAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAADAgAAAAAAAgAAAAAAAwAAAAAC + tiles: AwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADFAAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAAAFAAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAADFAAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAABFAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAABFAAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAD version: 6 7,5: ind: 7,5 - tiles: AwAAAAADAwAAAAAAAwAAAAABAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAABEAAAAAAAEAAAAAAAEAAAAAADEAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAEAAAAAAAEQAAAAABEQAAAAADEQAAAAADEQAAAAABEAAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAEAAAAAACEQAAAAAAEQAAAAAAEQAAAAADEQAAAAABEAAAAAACEAAAAAAAEAAAAAACEAAAAAACEAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAgAAAAAAEAAAAAAAEQAAAAACEQAAAAACEQAAAAADEQAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAEAAAAAABEQAAAAAAEQAAAAABEQAAAAACEQAAAAAAEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAEAAAAAACEQAAAAACEQAAAAABEQAAAAAAEQAAAAADEAAAAAADEAAAAAACAgAAAAAAEAAAAAAAEAAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAgAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAADEAAAAAABEAAAAAAAAgAAAAAAEAAAAAABEAAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAACwAAAAAACwAAAAABAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABCwAAAAADCwAAAAADAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABCwAAAAABCwAAAAADAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADCwAAAAACCwAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAACwAAAAAACwAAAAACAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAC + tiles: AwAAAAABAwAAAAADAwAAAAAAAgAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAAAEAAAAAABEAAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAgAAAAAAEAAAAAAAEQAAAAADEQAAAAACEQAAAAABEQAAAAABEAAAAAACEAAAAAADEAAAAAACEAAAAAABEAAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAEAAAAAACEQAAAAADEQAAAAACEQAAAAAAEQAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAACEAAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAEAAAAAAAEQAAAAABEQAAAAAAEQAAAAADEQAAAAADEAAAAAADEAAAAAAAEAAAAAABEAAAAAACEAAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAEAAAAAAAEQAAAAACEQAAAAABEQAAAAACEQAAAAABEAAAAAACEAAAAAADAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAgAAAAAAEAAAAAAAEQAAAAAAEQAAAAADEQAAAAAAEQAAAAAAEAAAAAAAEAAAAAACAgAAAAAAEAAAAAABEAAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAEAAAAAADEAAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAACEAAAAAABAgAAAAAAEAAAAAADEAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADCwAAAAABCwAAAAABAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABCwAAAAACCwAAAAABAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABCwAAAAAACwAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABCwAAAAABCwAAAAABAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAACwAAAAACCwAAAAABAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAA version: 6 7,6: ind: 7,6 - tiles: AwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACDwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABDwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADBwAAAAAAAwAAAAABHAAAAAADHAAAAAADHAAAAAADHAAAAAABAwAAAAAAAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABBwAAAAABAwAAAAACHAAAAAADHAAAAAADHAAAAAACHAAAAAADAwAAAAABAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABBwAAAAADAwAAAAADHAAAAAAAHAAAAAADHAAAAAADHAAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADHAAAAAADHAAAAAADHAAAAAADHAAAAAACAwAAAAABAwAAAAADBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAADBwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAABHAAAAAACAwAAAAADAgAAAAAABwAAAAABPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAACAgAAAAAAAwAAAAAB + tiles: AwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAADwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAADwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAABwAAAAACAwAAAAACHAAAAAACHAAAAAABHAAAAAADHAAAAAAAAwAAAAABAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAABBwAAAAAAAwAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABAwAAAAAAAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABBwAAAAACAwAAAAABHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAAAAwAAAAACAwAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAADAgAAAAAAAwAAAAADAwAAAAACHAAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAAAAwAAAAADAgAAAAAABwAAAAABPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAADAgAAAAAAAwAAAAAD version: 6 7,7: ind: 7,7 - tiles: HAAAAAACHAAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAABAwAAAAAAAgAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAAAFAAAAAAAAwAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAADHAAAAAADHAAAAAADAwAAAAABAgAAAAAABwAAAAACPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAADFAAAAAAAAwAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACAwAAAAABAwAAAAADAgAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAABFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADAgAAAAAAAwAAAAACFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADFAAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABFAAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAAABQAAAAACBQAAAAADBQAAAAABAwAAAAACAwAAAAABAwAAAAADBQAAAAACBQAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAACBQAAAAABBQAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADBQAAAAACBQAAAAAABQAAAAACAwAAAAADBQAAAAABBQAAAAAABQAAAAAAAwAAAAACAgAAAAAAAwAAAAADBQAAAAADBQAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAABBQAAAAACBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAAABQAAAAACBQAAAAAB + tiles: HAAAAAADHAAAAAABHAAAAAACHAAAAAABHAAAAAACHAAAAAACAwAAAAAAAgAAAAAABwAAAAADPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAACFAAAAAAAAwAAAAADHAAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAADHAAAAAAAAwAAAAADAgAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAADFAAAAAAAAwAAAAABHAAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAABAwAAAAADAwAAAAABAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABFAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAABAgAAAAAAAwAAAAABFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADFAAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACFAAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADFAAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAAABQAAAAADBQAAAAABBQAAAAABAwAAAAABAwAAAAABAwAAAAACBQAAAAACBQAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAABQAAAAACBQAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAAABQAAAAACBQAAAAADBQAAAAADAwAAAAACBQAAAAABBQAAAAAABQAAAAABAwAAAAADAgAAAAAAAwAAAAAABQAAAAABBQAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAADBQAAAAACBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAACBQAAAAADBQAAAAAD version: 6 7,8: ind: 7,8 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAABBQAAAAADBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAAABQAAAAACBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACBQAAAAADAwAAAAACAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADBQAAAAABAwAAAAADAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAABQAAAAADAwAAAAACAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABBQAAAAADAwAAAAADAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAACBQAAAAABBQAAAAABAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAADCgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAADCAAAAAADCAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAACAAAAAABCAAAAAADCAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAABQAAAAACBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAABQAAAAABBQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAACCgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAABQAAAAACAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADBQAAAAABAwAAAAADAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAACBQAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAADBQAAAAABAwAAAAACAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAAABQAAAAABBQAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAACCgAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCAAAAAACCAAAAAAA version: 6 7,9: ind: 7,9 - tiles: AQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAgAAAAAACAAAAAABCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAACBQAAAAADBQAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABBQAAAAADBQAAAAACBQAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAADAwAAAAABAgAAAAAACAAAAAAACgAAAAACCgAAAAAACgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA + tiles: AQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAgAAAAAACAAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAADBQAAAAADBQAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAABQAAAAADBQAAAAADBQAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAADAwAAAAABAgAAAAAACAAAAAACCgAAAAACCgAAAAACCgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA version: 6 8,2: ind: 8,2 - tiles: AQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAAABQAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAwAAAAAABQAAAAADAwAAAAACBQAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAADAgAAAAAAAwAAAAACAwAAAAADBQAAAAABAwAAAAAABQAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAADCAAAAAABAgAAAAAA + tiles: AQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAwAAAAACBQAAAAACAwAAAAAABQAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAAABQAAAAABAwAAAAACBQAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAADCAAAAAABAgAAAAAAAwAAAAADAwAAAAAABQAAAAADAwAAAAADBQAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAAACAAAAAAAAgAAAAAA version: 6 8,3: ind: 8,3 - tiles: AwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAACCAAAAAACAgAAAAAAAwAAAAACAwAAAAABBQAAAAADAwAAAAABBQAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAABCAAAAAACAgAAAAAAAwAAAAAAAwAAAAAABQAAAAABAwAAAAAABQAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACBQAAAAABAwAAAAAABQAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABFAAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADFAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADFAAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAFAAAAAAACAAAAAAACAAAAAAACAAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADFAAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADFAAAAAAACAAAAAADCAAAAAABCAAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAACAAAAAADAwAAAAADAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAACAAAAAABFAAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAADCAAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAACAAAAAABAwAAAAAAAgAAAAAACAAAAAACCgAAAAADCAAAAAABCAAAAAACCgAAAAADCAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAA + tiles: AwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAAAwAAAAABAwAAAAACBQAAAAAAAwAAAAADBQAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABBQAAAAAAAwAAAAACBQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAABQAAAAACAwAAAAACBQAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADFAAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADFAAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAFAAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADFAAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAgAAAAAACAAAAAABAwAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAgAAAAAACAAAAAACFAAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAABCAAAAAABCAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAgAAAAAACAAAAAACAwAAAAACAgAAAAAACAAAAAABCgAAAAADCAAAAAACCAAAAAAACgAAAAADCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAACAAAAAACAgAAAAAAAgAAAAAA version: 6 8,4: ind: 8,4 - tiles: AwAAAAACAgAAAAAACAAAAAABCgAAAAACCAAAAAACCAAAAAADCgAAAAACCAAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAADAwAAAAABAgAAAAAACAAAAAAACgAAAAABCAAAAAACCAAAAAACCgAAAAAACAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAACCAAAAAACCAAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAAAAwAAAAACAgAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAAACAAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAABCAAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAACAAAAAADCgAAAAADCAAAAAACCAAAAAADCgAAAAABCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABCAAAAAADCAAAAAACCgAAAAABCAAAAAADCAAAAAAACgAAAAADCAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAAACgAAAAABCAAAAAADCAAAAAAACgAAAAACCAAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAABCAAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAADAgAAAAAACAAAAAADCgAAAAAACAAAAAAACAAAAAAACgAAAAACCAAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAACAwAAAAABAgAAAAAACAAAAAACCgAAAAACCAAAAAACCAAAAAACCgAAAAACCAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAADAwAAAAACAgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAACAAAAAADCgAAAAACCAAAAAACCAAAAAAACgAAAAABCAAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACCAAAAAACCAAAAAACCgAAAAACCAAAAAACCAAAAAADCgAAAAABCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAACCgAAAAACCAAAAAABCAAAAAACCgAAAAABCAAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 8,5: ind: 8,5 - tiles: AwAAAAABAwAAAAABAgAAAAAACwAAAAACCwAAAAAACwAAAAADCwAAAAACCwAAAAAACwAAAAACCwAAAAACCwAAAAABAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAACwAAAAACCwAAAAAACwAAAAADCwAAAAADCwAAAAADCwAAAAAACwAAAAACCwAAAAACAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAwAAAAADAwAAAAACAgAAAAAACwAAAAAACwAAAAABCwAAAAACCwAAAAAACwAAAAABCwAAAAACCwAAAAAACwAAAAABAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAACwAAAAADCwAAAAADCwAAAAACCwAAAAAACwAAAAABCwAAAAAACwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAABCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAwAAAAADAwAAAAADAgAAAAAACAAAAAAACAAAAAACDgAAAAABDgAAAAACDgAAAAADDgAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAADAwAAAAAAAwAAAAAAAgAAAAAACAAAAAABCAAAAAAADgAAAAADCAAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAADAwAAAAADCAAAAAACCAAAAAAACAAAAAACDgAAAAABCAAAAAABCgAAAAAACAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAgAAAAAACAAAAAABCAAAAAABDgAAAAADCAAAAAADCAAAAAADCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAADCAAAAAABDgAAAAACDgAAAAAADgAAAAABDgAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACFAAAAAAAFAAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAD + tiles: AwAAAAACAwAAAAADAgAAAAAACwAAAAAACwAAAAAACwAAAAABCwAAAAABCwAAAAAACwAAAAACCwAAAAACCwAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAACwAAAAADCwAAAAABCwAAAAABCwAAAAADCwAAAAADCwAAAAABCwAAAAACCwAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAwAAAAABAwAAAAAAAgAAAAAACwAAAAADCwAAAAABCwAAAAAACwAAAAABCwAAAAACCwAAAAAACwAAAAAACwAAAAACAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAACwAAAAACCwAAAAAACwAAAAACCwAAAAAACwAAAAAACwAAAAABCwAAAAACCwAAAAABAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAACAwAAAAABAwAAAAABAgAAAAAACAAAAAABCAAAAAADDgAAAAAADgAAAAABDgAAAAABDgAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAABAwAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAABDgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAABAwAAAAABAwAAAAAACAAAAAAACAAAAAABCAAAAAABDgAAAAADCAAAAAACCgAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAADCAAAAAAADgAAAAABCAAAAAAACAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAAACAAAAAADDgAAAAAADgAAAAAADgAAAAADDgAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACFAAAAAAAFAAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAB version: 6 8,6: ind: 8,6 - tiles: AwAAAAABAwAAAAADFAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABFAAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAACAAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAgAAAAAACAAAAAACCAAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAgAAAAAACAAAAAAACAAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCAAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAACAAAAAABCAAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAACAAAAAAACAAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAACAAAAAAAAwAAAAABAwAAAAADFAAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADFAAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAACAAAAAAACAAAAAABAwAAAAADAwAAAAADFAAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAFAAAAAAAAwAAAAAABQAAAAADAwAAAAAABQAAAAADAwAAAAACAgAAAAAACAAAAAAACAAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAACAwAAAAAABQAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAACAwAAAAACFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADFAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAACAAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAgAAAAAACAAAAAACCAAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAACCAAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAACAAAAAADCAAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAACAAAAAABCAAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAACAAAAAADCAAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAAAAwAAAAABFAAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAADCAAAAAABAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAFAAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAACAAAAAACCAAAAAADAwAAAAAAAwAAAAABFAAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABFAAAAAAAAwAAAAACBQAAAAAAAwAAAAAABQAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAAAAwAAAAABBQAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 8,7: ind: 8,7 - tiles: AwAAAAACAwAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAACAwAAAAACBQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABFAAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACFAAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACgAAAAABCAAAAAAACAAAAAADCAAAAAAACgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBQAAAAAAAwAAAAAAAgAAAAAACgAAAAAACAAAAAADCAAAAAAACAAAAAACCgAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBQAAAAACAwAAAAABAgAAAAAACgAAAAAACAAAAAABCAAAAAADCAAAAAACCgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBQAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABQAAAAACAwAAAAADAwAAAAADAwAAAAABBQAAAAABAwAAAAABBQAAAAABAwAAAAABBQAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAACAwAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAADBQAAAAADAwAAAAADBQAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAA + tiles: AwAAAAAAAwAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAACAwAAAAAABQAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADFAAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACFAAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAACgAAAAACCAAAAAAACAAAAAAACAAAAAADCgAAAAADAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABQAAAAAAAwAAAAADAgAAAAAACgAAAAAACAAAAAACCAAAAAACCAAAAAADCgAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBQAAAAACAwAAAAACAgAAAAAACgAAAAADCAAAAAADCAAAAAABCAAAAAADCgAAAAABAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBQAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBQAAAAAAAwAAAAABAwAAAAAAAwAAAAADBQAAAAACAwAAAAADBQAAAAACAwAAAAABBQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAACAwAAAAACAgAAAAAAAwAAAAACBQAAAAADAwAAAAADBQAAAAABAwAAAAAABQAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAD version: 6 8,8: ind: 8,8 - tiles: BQAAAAACAwAAAAACAgAAAAAAAwAAAAAABQAAAAACAwAAAAACBQAAAAAAAwAAAAADBQAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAABQAAAAACBQAAAAACBQAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACBQAAAAADBQAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACQAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACBQAAAAABAwAAAAAABQAAAAABBQAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACBQAAAAADAwAAAAACBQAAAAACBQAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABBQAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAABBQAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAABQAAAAADAwAAAAABBQAAAAAABQAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAACAwAAAAACAgAAAAAA + tiles: BQAAAAADAwAAAAADAgAAAAAAAwAAAAACBQAAAAABAwAAAAAABQAAAAACAwAAAAADBQAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABBQAAAAAABQAAAAACBQAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABBQAAAAABBQAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACQAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAABQAAAAAAAwAAAAADBQAAAAABBQAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABBQAAAAACAwAAAAACBQAAAAAABQAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADBQAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAABQAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAABQAAAAACAwAAAAACBQAAAAACBQAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAADBwAAAAACAwAAAAADAgAAAAAA version: 6 8,9: ind: 8,9 - tiles: CAAAAAABAgAAAAAACAAAAAADCAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAADAwAAAAADCAAAAAACCAAAAAAACAAAAAACCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAAAgAAAAAACAAAAAADAgAAAAAACAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAACCAAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAACBwAAAAAAAwAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAABAgAAAAAACAAAAAACAgAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAABCAAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 9,2: ind: 9,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 9,3: ind: 9,3 - tiles: AwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABBQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADBQAAAAADAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADCAAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAACCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAABQAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACBQAAAAACAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAABCAAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAA version: 6 9,4: ind: 9,4 - tiles: CAAAAAAACAAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAADCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAAA + tiles: CAAAAAACCAAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAACCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAADAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAB version: 6 9,5: ind: 9,5 - tiles: HQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: HQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 9,6: ind: 9,6 - tiles: AwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAFAAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAACCAAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACAAAAAADCAAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAACAAAAAAACAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACCAAAAAACCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACCAAAAAADCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAADFAAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAFAAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAACAAAAAACCAAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCAAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAgAAAAAACAAAAAACCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAACAAAAAADCAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAACAAAAAADCAAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAACAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAACAAAAAAACAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADCAAAAAAACAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAACCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAA version: 6 9,7: ind: 9,7 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAABBwAAAAAABwAAAAACBwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADBwAAAAACBwAAAAABBwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABBwAAAAAABwAAAAACBwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACBwAAAAACBwAAAAABBwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADBwAAAAACBwAAAAABBwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAC + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAAABwAAAAADBwAAAAACBwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADBwAAAAABBwAAAAACBwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADBwAAAAACBwAAAAABBwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABBwAAAAADBwAAAAADBwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAABwAAAAABBwAAAAADBwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAC version: 6 9,8: ind: 9,8 - tiles: BwAAAAAABwAAAAAABwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAABwAAAAAABwAAAAABAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAABBwAAAAACAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAABwAAAAADBwAAAAABAgAAAAAABwAAAAACBwAAAAAAAgAAAAAABwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAABwAAAAAABwAAAAADAgAAAAAABwAAAAADBwAAAAACAgAAAAAABwAAAAACBwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAADBwAAAAACBwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAACBwAAAAADBwAAAAADBwAAAAACBwAAAAADBwAAAAACBwAAAAABBwAAAAADBwAAAAADAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAABFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAAAAgAAAAAABwAAAAADBwAAAAADAgAAAAAABwAAAAAABwAAAAADAgAAAAAABwAAAAADBwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAAAAgAAAAAABwAAAAADBwAAAAADAgAAAAAABwAAAAADBwAAAAACAgAAAAAABwAAAAAABwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAABwAAAAABBwAAAAABAgAAAAAABwAAAAAABwAAAAABAgAAAAAABwAAAAAABwAAAAAA + tiles: BwAAAAABBwAAAAABBwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAABwAAAAAABwAAAAACAgAAAAAABwAAAAAABwAAAAADAgAAAAAABwAAAAADBwAAAAACAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAABwAAAAACBwAAAAABAgAAAAAABwAAAAACBwAAAAAAAgAAAAAABwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAABwAAAAABBwAAAAAAAgAAAAAABwAAAAABBwAAAAACAgAAAAAABwAAAAADBwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAAABwAAAAACBwAAAAACBwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACBwAAAAACBwAAAAADBwAAAAACBwAAAAACBwAAAAABBwAAAAADBwAAAAABBwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAADFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAABwAAAAABBwAAAAACAgAAAAAABwAAAAACBwAAAAADAgAAAAAABwAAAAAABwAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAAAAgAAAAAABwAAAAACBwAAAAACAgAAAAAABwAAAAACBwAAAAADAgAAAAAABwAAAAAABwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAABAgAAAAAABwAAAAADBwAAAAADAgAAAAAABwAAAAABBwAAAAADAgAAAAAABwAAAAABBwAAAAAB version: 6 9,9: ind: 9,9 - tiles: AwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,6: ind: 0,6 @@ -862,6 +868,11 @@ entities: 14781: 50,80 14782: 44,48 14783: 44,50 + 14817: 94,24 + 14818: 94,26 + 14820: 113,22 + 14821: 113,23 + 14822: 118,42 - node: zIndex: 1 angle: 1.5707963267948966 rad @@ -1302,6 +1313,7 @@ entities: 14692: 133,134 14693: 134,134 14784: 44,49 + 14819: 94,25 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -12147,6 +12159,7 @@ entities: 8130: 161,71 14214: 80,53 14228: 80,61 + 14828: 71,164 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw @@ -12185,6 +12198,7 @@ entities: decals: 8127: 158,76 8128: 158,71 + 14823: 67,164 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe @@ -12407,6 +12421,9 @@ entities: 14225: 80,58 14226: 80,59 14227: 80,60 + 14829: 71,163 + 14830: 71,162 + 14831: 71,161 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -12509,6 +12526,9 @@ entities: 14213: 79,53 14219: 77,54 14229: 79,61 + 14824: 68,164 + 14825: 69,164 + 14827: 70,164 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -12604,6 +12624,7 @@ entities: 8134: 160,68 8135: 160,73 14218: 77,54 + 14832: 69,160 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -16314,6 +16335,13 @@ entities: container: 19098 - proto: ActionToggleLight entities: + - uid: 59 + components: + - type: Transform + parent: 16136 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 16136 - uid: 5305 components: - type: Transform @@ -27705,6 +27733,11 @@ entities: parent: 1 - proto: BarricadeBlock entities: + - uid: 63 + components: + - type: Transform + pos: 121.5,26.5 + parent: 1 - uid: 453 components: - type: Transform @@ -103356,8 +103389,8 @@ entities: - uid: 16079 components: - type: Transform - rot: -18.84955592153876 rad - pos: 129.40298,135.78955 + rot: -25.132741228718352 rad + pos: 129.48175,136.16428 parent: 1 - proto: ClothingEyesGlassesSunglasses entities: @@ -103890,7 +103923,8 @@ entities: - uid: 37221 components: - type: Transform - pos: 94.593605,121.6181 + rot: -25.132741228718352 rad + pos: 94.85414,121.60941 parent: 1 - uid: 37222 components: @@ -128514,8 +128548,23 @@ entities: - uid: 16136 components: - type: Transform - pos: 93.5,121.5 + rot: -18.84955592153876 rad + pos: 93.96867,121.46261 parent: 1 + - type: HandheldLight + toggleActionEntity: 59 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 59 + - type: ActionsContainer - uid: 36664 components: - type: Transform @@ -128979,8 +129028,8 @@ entities: - uid: 16583 components: - type: Transform - rot: -18.84955592153876 rad - pos: 129.60437,135.3937 + rot: -25.132741228718352 rad + pos: 129.54424,135.4242 parent: 1 - proto: FoodBoxDonut entities: @@ -178389,21 +178438,11 @@ entities: - type: Transform pos: 17.5,99.5 parent: 1 - - uid: 60 - components: - - type: Transform - pos: 18.5,84.5 - parent: 1 - uid: 62 components: - type: Transform pos: 18.5,83.5 parent: 1 - - uid: 64 - components: - - type: Transform - pos: 18.5,82.5 - parent: 1 - uid: 90 components: - type: Transform @@ -185404,6 +185443,12 @@ entities: - type: Transform pos: 97.5,165.5 parent: 1 + - uid: 37609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,79.5 + parent: 1 - proto: GrilleBroken entities: - uid: 2179 @@ -188521,6 +188566,11 @@ entities: - type: Transform pos: 53.5,145.5 parent: 1 + - uid: 33616 + components: + - type: Transform + pos: 116.5,38.5 + parent: 1 - proto: MachineFrameDestroyed entities: - uid: 14511 @@ -188528,6 +188578,11 @@ entities: - type: Transform pos: 33.5,112.5 parent: 1 + - uid: 33619 + components: + - type: Transform + pos: 113.5,42.5 + parent: 1 - proto: MagazinePistolSubMachineGunTopMounted entities: - uid: 28294 @@ -193094,11 +193149,6 @@ entities: rot: 3.141592653589793 rad pos: 105.5,106.5 parent: 1 - - uid: 19264 - components: - - type: Transform - pos: 23.5,82.5 - parent: 1 - uid: 19328 components: - type: Transform @@ -195852,13 +195902,14 @@ entities: - uid: 16137 components: - type: Transform - pos: 94.139305,121.78037 + rot: -25.132741228718352 rad + pos: 129.66925,136.71675 parent: 1 - uid: 16138 components: - type: Transform - rot: -12.566370614359172 rad - pos: 93.9707,121.487915 + rot: -25.132741228718352 rad + pos: 94.44673,121.739136 parent: 1 - proto: Railing entities: @@ -198363,21 +198414,11 @@ entities: - type: Transform pos: 17.5,99.5 parent: 1 - - uid: 59 - components: - - type: Transform - pos: 18.5,84.5 - parent: 1 - uid: 61 components: - type: Transform pos: 18.5,83.5 parent: 1 - - uid: 63 - components: - - type: Transform - pos: 18.5,82.5 - parent: 1 - uid: 89 components: - type: Transform @@ -201831,8 +201872,8 @@ entities: - uid: 3624 components: - type: Transform - rot: -18.84955592153876 rad - pos: 129.54881,136.51176 + rot: -25.132741228718352 rad + pos: 93.592026,121.69281 parent: 1 - type: Stack count: 5 @@ -203459,6 +203500,11 @@ entities: rot: -1.5707963267948966 rad pos: 130.5,90.5 parent: 1 + - uid: 37633 + components: + - type: Transform + pos: 97.5,26.5 + parent: 1 - proto: SignCryo entities: - uid: 13742 @@ -203629,6 +203675,83 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,115.5 parent: 1 +- proto: SignDirectionalEscapePod + entities: + - uid: 37612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,97.5 + parent: 1 + - uid: 37614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,78.5 + parent: 1 + - uid: 37615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,77.5 + parent: 1 + - uid: 37618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,120.5 + parent: 1 + - uid: 37621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.493176,121.32661 + parent: 1 + - uid: 37624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.50168,154.67453 + parent: 1 + - uid: 37625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,160.5 + parent: 1 + - uid: 37627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 122.5,165.5 + parent: 1 + - uid: 37628 + components: + - type: Transform + pos: 84.5,24.5 + parent: 1 + - uid: 37629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 93.5,30.5 + parent: 1 + - uid: 37630 + components: + - type: Transform + pos: 107.5,30.5 + parent: 1 + - uid: 37631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 116.5,32.5 + parent: 1 + - uid: 37632 + components: + - type: Transform + pos: 111.5,44.5 + parent: 1 - proto: SignDirectionalEvac entities: - uid: 27679 @@ -203767,6 +203890,12 @@ entities: parent: 1 - proto: SignDirectionalSolar entities: + - uid: 64 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.496033,77.694405 + parent: 1 - uid: 34662 components: - type: Transform @@ -203778,6 +203907,45 @@ entities: rot: 1.5707963267948966 rad pos: 148.5,78.5 parent: 1 + - uid: 37616 + components: + - type: Transform + pos: 26.501495,78.30305 + parent: 1 + - uid: 37617 + components: + - type: Transform + pos: 23.499802,97.304375 + parent: 1 + - uid: 37619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.498741,120.71086 + parent: 1 + - uid: 37620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,121.5 + parent: 1 + - uid: 37622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,127.5 + parent: 1 + - uid: 37623 + components: + - type: Transform + pos: 60.5,154.5 + parent: 1 + - uid: 37626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.500824,160.30426 + parent: 1 - proto: SignDirectionalSupply entities: - uid: 27684 @@ -203880,6 +204048,11 @@ entities: rot: 1.5707963267948966 rad pos: 124.5,137.5 parent: 1 + - uid: 37635 + components: + - type: Transform + pos: 114.5,25.5 + parent: 1 - proto: SignEscapePods entities: - uid: 7502 @@ -203985,6 +204158,11 @@ entities: - type: Transform pos: 41.5,108.5 parent: 1 + - uid: 37634 + components: + - type: Transform + pos: 100.5,22.5 + parent: 1 - proto: SignHydro1 entities: - uid: 13748 @@ -204042,6 +204220,11 @@ entities: rot: 1.5707963267948966 rad pos: 125.5,98.5 parent: 1 + - uid: 37636 + components: + - type: Transform + pos: 122.5,34.5 + parent: 1 - proto: SignLaser entities: - uid: 17345 @@ -204070,6 +204253,13 @@ entities: rot: 1.5707963267948966 rad pos: 96.5,137.5 parent: 1 +- proto: SignLaundromat + entities: + - uid: 37637 + components: + - type: Transform + pos: 117.5,38.5 + parent: 1 - proto: SignLawyer entities: - uid: 18882 @@ -204219,6 +204409,11 @@ entities: - type: Transform pos: 158.49059,140.41048 parent: 1 + - uid: 37648 + components: + - type: Transform + pos: 65.5,18.5 + parent: 1 - proto: SignRedFour entities: - uid: 22846 @@ -204232,8 +204427,18 @@ entities: - type: Transform pos: 156.50348,136.56439 parent: 1 + - uid: 37646 + components: + - type: Transform + pos: 19.5,117.5 + parent: 1 - proto: SignRedOne entities: + - uid: 16073 + components: + - type: Transform + pos: 160.5,56.5 + parent: 1 - uid: 22843 components: - type: Transform @@ -204245,6 +204450,16 @@ entities: - type: Transform pos: 152.4849,140.40256 parent: 1 + - uid: 37639 + components: + - type: Transform + pos: 162.5,80.5 + parent: 1 + - uid: 37642 + components: + - type: Transform + pos: 104.5,170.5 + parent: 1 - proto: SignRedSix entities: - uid: 32021 @@ -204265,6 +204480,21 @@ entities: - type: Transform pos: 155.49359,140.40607 parent: 1 + - uid: 37643 + components: + - type: Transform + pos: 29.5,72.5 + parent: 1 + - uid: 37644 + components: + - type: Transform + pos: 57.5,156.5 + parent: 1 + - uid: 37647 + components: + - type: Transform + pos: 111.5,18.5 + parent: 1 - proto: SignRedTwo entities: - uid: 22844 @@ -204278,6 +204508,21 @@ entities: - type: Transform pos: 153.48871,136.56726 parent: 1 + - uid: 37640 + components: + - type: Transform + pos: 162.5,128.5 + parent: 1 + - uid: 37641 + components: + - type: Transform + pos: 55.5,140.5 + parent: 1 + - uid: 37645 + components: + - type: Transform + pos: 17.5,106.5 + parent: 1 - proto: SignRestroom entities: - uid: 13756 @@ -212211,12 +212456,6 @@ entities: rot: 1.5707963267948966 rad pos: 113.5,31.5 parent: 1 - - uid: 33616 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 115.5,38.5 - parent: 1 - uid: 33617 components: - type: Transform @@ -212226,15 +212465,8 @@ entities: - uid: 33618 components: - type: Transform - rot: 1.5707963267948966 rad pos: 114.5,39.5 parent: 1 - - uid: 33619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 114.5,38.5 - parent: 1 - uid: 33620 components: - type: Transform @@ -215672,6 +215904,11 @@ entities: - type: Transform pos: 90.5,87.5 parent: 1 + - uid: 37638 + components: + - type: Transform + pos: 116.5,37.5 + parent: 1 - proto: UniformPrinter entities: - uid: 3876 @@ -215841,6 +216078,11 @@ entities: - type: Transform pos: 109.5,64.5 parent: 1 + - uid: 37611 + components: + - type: Transform + pos: 148.5,142.5 + parent: 1 - proto: VendingMachineCoffee entities: - uid: 26867 @@ -215920,10 +216162,10 @@ entities: parent: 1 - proto: VendingMachineEngivend entities: - - uid: 16073 + - uid: 19264 components: - type: Transform - pos: 125.5,132.5 + pos: 126.5,131.5 parent: 1 - proto: VendingMachineGames entities: @@ -216008,6 +216250,13 @@ entities: - type: Transform pos: 93.5,96.5 parent: 1 +- proto: VendingMachinePride + entities: + - uid: 37610 + components: + - type: Transform + pos: 160.5,139.5 + parent: 1 - proto: VendingMachineRobotics entities: - uid: 588 @@ -216232,6 +216481,11 @@ entities: parent: 1 - proto: WallReinforced entities: + - uid: 60 + components: + - type: Transform + pos: 18.5,84.5 + parent: 1 - uid: 69 components: - type: Transform @@ -222750,6 +223004,11 @@ entities: - type: Transform pos: 72.5,165.5 parent: 1 + - uid: 6857 + components: + - type: Transform + pos: 18.5,82.5 + parent: 1 - uid: 6874 components: - type: Transform @@ -236262,11 +236521,6 @@ entities: - type: Transform pos: 88.5,24.5 parent: 1 - - uid: 6857 - components: - - type: Transform - pos: 26.5,79.5 - parent: 1 - uid: 6902 components: - type: Transform @@ -241185,6 +241439,12 @@ entities: - type: Transform pos: 47.5,98.5 parent: 1 + - uid: 37613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,79.5 + parent: 1 - proto: WindowDirectional entities: - uid: 116 From 2e2a3a9cb1752a44a2a7368a86c359fb30c284ef Mon Sep 17 00:00:00 2001 From: Deerstop Date: Mon, 10 Feb 2025 12:07:10 +1100 Subject: [PATCH 167/313] Elkridge Tweaks 2 (#34757) * bigger TEG, moved EVA, moved engi and med substations, maints loot, increased pop to 15-45 * tweaked some job numbers around for higher pop * holy shit i forgot the o2 and n2 miners * fixed unwired substation * made the TEG worse >:) * added southbridge's pride-o-mat cos i kept forgetting * fixed evac timer display, resolves #34850 * removed pridevend for testing * nvm it was the shuttle, not the pridevend, oops --- .../Maps/Shuttles/emergency_elkridge.yml | 6 +- Resources/Maps/elkridge.yml | 8075 +++++++++-------- Resources/Prototypes/Maps/elkridge.yml | 6 +- 3 files changed, 4209 insertions(+), 3878 deletions(-) diff --git a/Resources/Maps/Shuttles/emergency_elkridge.yml b/Resources/Maps/Shuttles/emergency_elkridge.yml index 4dafdee84a..1faf1d789c 100644 --- a/Resources/Maps/Shuttles/emergency_elkridge.yml +++ b/Resources/Maps/Shuttles/emergency_elkridge.yml @@ -18,7 +18,6 @@ entities: name: NT Evac Log - type: Transform pos: -0.42093527,-0.86894274 - parent: invalid - type: MapGrid chunks: 0,0: @@ -804,6 +803,11 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance + - type: DeviceNetwork + configurators: [] + deviceLists: [] + transmitFrequencyId: ShuttleTimer + deviceNetId: Wireless - proto: AirAlarm entities: - uid: 577 diff --git a/Resources/Maps/elkridge.yml b/Resources/Maps/elkridge.yml index f863e48991..d10c5d3119 100644 --- a/Resources/Maps/elkridge.yml +++ b/Resources/Maps/elkridge.yml @@ -12,6 +12,7 @@ tilemap: 8: FloorDirt 44: FloorEighties 61: FloorHydro + 15: FloorMetalDiamond 70: FloorMime 10: FloorMining 9: FloorMiningDark @@ -64,11 +65,11 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAABAQAAAAAAYgAAAAABYgAAAAADYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAAQAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAADAQAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAADggAAAAAAIAAAAAADIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAAQAAAAAAIAAAAAABIAAAAAADIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADggAAAAAAIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAABYwAAAAACYwAAAAACYwAAAAABYwAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAAAYwAAAAADYwAAAAACYwAAAAACIAAAAAACfgAAAAADIAAAAAAAfgAAAAACfgAAAAAABwAAAAACIAAAAAADIAAAAAABIAAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAAAIAAAAAAD + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAABAQAAAAAAYgAAAAABYgAAAAADYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAAQAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAADAQAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAADggAAAAAAIAAAAAADIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAAQAAAAAAIAAAAAABIAAAAAADIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADggAAAAAAIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAABYwAAAAACYwAAAAACYwAAAAABYwAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAAAYwAAAAADYwAAAAACYwAAAAACIAAAAAACfgAAAAADIAAAAAAAfgAAAAACfgAAAAAABwAAAAACIAAAAAADIAAAAAABIAAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAAAIAAAAAAD version: 6 -1,-1: ind: -1,-1 - tiles: YgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAYgAAAAACAQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAACYgAAAAABAQAAAAAAYgAAAAAAIAAAAAACggAAAAAAYgAAAAABYgAAAAAAYgAAAAACAQAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAACAQAAAAAAYgAAAAACIAAAAAABAQAAAAAAYgAAAAACYgAAAAAAYgAAAAABAQAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAACYgAAAAABYgAAAAAAAQAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAcAAAAAAAIAAAAAACIAAAAAABggAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAACggAAAAAAAgAAAAAAggAAAAAADQAAAAABYgAAAAAAYgAAAAAAAQAAAAAAggAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAQAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAAgAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAAQAAAAAAggAAAAAABwAAAAAAfgAAAAAAfgAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAAAAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAAAggAAAAAAggAAAAAAfgAAAAAAfgAAAAAABwAAAAACIAAAAAAAIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABggAAAAAAAwAAAAAABwAAAAAAfgAAAAAAfgAAAAABIAAAAAAAIAAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAACggAAAAAAggAAAAAAfgAAAAAAfgAAAAAABwAAAAAAIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAADIAAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACAQAAAAAAAQAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAAAIAAAAAABggAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAACYgAAAAAAYgAAAAACAQAAAAAAYgAAAAABYgAAAAACCwAAAAAACwAAAAAACwAAAAAAYgAAAAAAIAAAAAACAQAAAAAAIAAAAAABCwAAAAAAIAAAAAADfgAAAAADfgAAAAAA + tiles: YgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAYgAAAAACAQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAACYgAAAAABAQAAAAAAYgAAAAAAIAAAAAACggAAAAAAYgAAAAABYgAAAAAAYgAAAAACAQAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAACAQAAAAAAYgAAAAACIAAAAAABAQAAAAAAYgAAAAACYgAAAAAAYgAAAAABAQAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAACYgAAAAABYgAAAAAAAQAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAADwAAAAAAIAAAAAACIAAAAAABggAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAACggAAAAAAAgAAAAAAggAAAAAADQAAAAABYgAAAAAAYgAAAAAAAQAAAAAAggAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAQAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAAgAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAAQAAAAAAggAAAAAABwAAAAAAfgAAAAAAfgAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAAAAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAAAggAAAAAAggAAAAAAfgAAAAAAfgAAAAAABwAAAAACIAAAAAAAIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABggAAAAAAAwAAAAAABwAAAAAAfgAAAAAAfgAAAAABIAAAAAAAIAAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAACggAAAAAAggAAAAAAfgAAAAAAfgAAAAAABwAAAAAAIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAADIAAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACAQAAAAAAAQAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAAAIAAAAAABggAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAACYgAAAAAAYgAAAAACAQAAAAAAYgAAAAABYgAAAAACCwAAAAAACwAAAAAACwAAAAAAYgAAAAAAIAAAAAACAQAAAAAAIAAAAAABCwAAAAAAIAAAAAADfgAAAAADfgAAAAAA version: 6 1,0: ind: 1,0 @@ -76,11 +77,11 @@ entities: version: 6 1,-1: ind: 1,-1 - tiles: AQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABAQAAAAAAggAAAAAAcAAAAAAAIAAAAAAAYgAAAAADggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAADAQAAAAAAcAAAAAAAIAAAAAAAYgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAIAAAAAADggAAAAAAcAAAAAAAggAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAADAQAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAACggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIAAAAAACggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAIAAAAAABIAAAAAACggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAADggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAABggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAADYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAIAAAAAADYgAAAAADYgAAAAAAYgAAAAAAYgAAAAABYgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + tiles: ggAAAAAAggAAAAAADwAAAAAAcAAAAAAAcAAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABAQAAAAAAggAAAAAAcAAAAAAAIAAAAAAAYgAAAAADAQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAADAQAAAAAAcAAAAAAAIAAAAAAAYgAAAAABAQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAIAAAAAADggAAAAAAcAAAAAAAggAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAADAQAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAACggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIAAAAAACggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAIAAAAAABIAAAAAACggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAADggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAABggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAADYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAIAAAAAADYgAAAAADYgAAAAAAYgAAAAAAYgAAAAABYgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA version: 6 -1,1: ind: -1,1 - tiles: YgAAAAACYgAAAAACYgAAAAACYgAAAAADAQAAAAAAIAAAAAACIAAAAAACAQAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAADYgAAAAADYgAAAAABAQAAAAAAAQAAAAAAIAAAAAABYgAAAAADYgAAAAADYgAAAAACAQAAAAAAIAAAAAADIAAAAAACAQAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAABAQAAAAAAAQAAAAAAIAAAAAAAYgAAAAACYgAAAAAAYgAAAAADggAAAAAAIAAAAAAAIAAAAAAAggAAAAAAYgAAAAABYgAAAAACYgAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADYgAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAADggAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAADYgAAAAACIAAAAAABIAAAAAAAYgAAAAADYgAAAAABYgAAAAADggAAAAAAIAAAAAACIAAAAAABIAAAAAABggAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAADIAAAAAACIAAAAAAAYgAAAAACYgAAAAADYgAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAACYgAAAAABYgAAAAACYgAAAAABggAAAAAAIAAAAAABIAAAAAAAIAAAAAACggAAAAAAIAAAAAAAIAAAAAABIAAAAAABJAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAABJAAAAAABggAAAAAAIAAAAAACIAAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAADAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAACJAAAAAACggAAAAAAIAAAAAACIAAAAAABAQAAAAAAYgAAAAABYgAAAAABYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABggAAAAAAIAAAAAAAIAAAAAABggAAAAAAYgAAAAADYgAAAAADYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAYgAAAAADAQAAAAAAIAAAAAABIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAYgAAAAABYgAAAAAAYgAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAADYgAAAAADYgAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + tiles: YgAAAAACYgAAAAACYgAAAAACYgAAAAADAQAAAAAAIAAAAAACIAAAAAACAQAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAADYgAAAAADYgAAAAABAQAAAAAAAQAAAAAAIAAAAAABYgAAAAADYgAAAAADYgAAAAACAQAAAAAAIAAAAAADIAAAAAACAQAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAABAQAAAAAAAQAAAAAAIAAAAAAAYgAAAAACYgAAAAAAYgAAAAADggAAAAAADwAAAAAADwAAAAAAggAAAAAAYgAAAAABYgAAAAACYgAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADYgAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAADggAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAADYgAAAAACIAAAAAABIAAAAAAAYgAAAAADYgAAAAABYgAAAAADggAAAAAAIAAAAAACIAAAAAABIAAAAAABggAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAADIAAAAAACIAAAAAAAYgAAAAACYgAAAAADYgAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAACYgAAAAABYgAAAAACYgAAAAABggAAAAAAIAAAAAABIAAAAAAAIAAAAAACggAAAAAAIAAAAAAAIAAAAAABIAAAAAABJAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAABJAAAAAABggAAAAAAIAAAAAACIAAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAADAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAACJAAAAAACggAAAAAAIAAAAAACIAAAAAABAQAAAAAAYgAAAAABYgAAAAABYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABggAAAAAAIAAAAAAAIAAAAAABggAAAAAAYgAAAAADYgAAAAADYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAYgAAAAADAQAAAAAAIAAAAAABIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAYgAAAAABYgAAAAAAYgAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAADYgAAAAADYgAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA version: 6 0,1: ind: 0,1 @@ -88,7 +89,7 @@ entities: version: 6 2,-1: ind: 2,-1 - tiles: ggAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAABwAAAAAGfgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAfgAAAAADBwAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAggAAAAAAggAAAAAABgAAAAACcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAACcAAAAAAAIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAIAAAAAAAcAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAABBQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAAggAAAAAABwAAAAAGggAAAAAAAQAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAACBQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAfgAAAAACBwAAAAADDQAAAAAA + tiles: ggAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAABwAAAAAGfgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAfgAAAAADBwAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAggAAAAAAggAAAAAABgAAAAACcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAADwAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAACcAAAAAAAIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAIAAAAAAAcAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAABBQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAAggAAAAAABwAAAAAGggAAAAAAAQAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAACBQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAfgAAAAACBwAAAAADDQAAAAAA version: 6 2,0: ind: 2,0 @@ -96,19 +97,19 @@ entities: version: 6 1,-2: ind: 1,-2 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABggAAAAAAAgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAADIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAADIAAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAggAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAADwAAAAAAcAAAAAAAcAAAAAAADwAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAADwAAAAAAcAAAAAAAcAAAAAAADwAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAAcAAAAAAAcAAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAIAAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAIAAAAAADggAAAAAAIAAAAAACAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACBgAAAAAAAQAAAAAAAQAAAAAAIAAAAAACAQAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABAQAAAAAAAQAAAAAAIAAAAAACggAAAAAAIAAAAAAAAQAAAAAABgAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAABwAAAAABfgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAIAAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAIAAAAAADggAAAAAAIAAAAAACAQAAAAAAggAAAAAAAQAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACBgAAAAAAAQAAAAAAAQAAAAAAIAAAAAACAQAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABAQAAAAAAAQAAAAAAIAAAAAACggAAAAAAIAAAAAAAAQAAAAAABgAAAAAAAQAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAABwAAAAABfgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAADggAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAADBwAAAAAABwAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAACIAAAAAABIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAADfgAAAAADBwAAAAAFggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAABBwAAAAABfgAAAAACfgAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAAAfgAAAAADBwAAAAAGfgAAAAADggAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABBwAAAAAAfgAAAAAABwAAAAABggAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAfgAAAAACBwAAAAACfgAAAAACggAAAAAAIAAAAAAB + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAADggAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAAIAAAAAACDwAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAAIAAAAAACDwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAADBwAAAAAABwAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAADfgAAAAADBwAAAAAFggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAABBwAAAAABfgAAAAACfgAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAAAfgAAAAADBwAAAAAGfgAAAAADggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAADAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABBwAAAAAAfgAAAAAABwAAAAABggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAfgAAAAACBwAAAAACfgAAAAACggAAAAAAggAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: AAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAA + tiles: AAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAA version: 6 3,-1: ind: 3,-1 @@ -116,15 +117,15 @@ entities: version: 6 -1,-2: ind: -1,-2 - tiles: AQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADggAAAAAAIAAAAAAAIAAAAAABIAAAAAADAQAAAAAAYgAAAAAAYgAAAAADYgAAAAADYgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAADCwAAAAABYgAAAAABggAAAAAAIAAAAAADIAAAAAAAIAAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAABggAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAACggAAAAAAIAAAAAAAIAAAAAADIAAAAAAAggAAAAAAYgAAAAADYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAABYgAAAAACIAAAAAAAIAAAAAABIAAAAAADIAAAAAABggAAAAAAYgAAAAAAYgAAAAABggAAAAAAIAAAAAAAIAAAAAADIAAAAAACAQAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAACwAAAAADYgAAAAABggAAAAAAIAAAAAAAIAAAAAADIAAAAAABggAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAABggAAAAAAYgAAAAAAYgAAAAACggAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAACYgAAAAABYgAAAAACYgAAAAABYgAAAAACggAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAADggAAAAAAYgAAAAAAYgAAAAABggAAAAAAIAAAAAAAIAAAAAABIAAAAAADggAAAAAAYgAAAAACYgAAAAADggAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAABIAAAAAAAggAAAAAACwAAAAACYgAAAAADggAAAAAAIAAAAAABIAAAAAADIAAAAAACAQAAAAAAYgAAAAACYgAAAAABAQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAACIAAAAAADAQAAAAAAYgAAAAACYgAAAAADggAAAAAAIAAAAAACIAAAAAADIAAAAAADggAAAAAAYgAAAAADYgAAAAADggAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAADggAAAAAAYgAAAAACYgAAAAADggAAAAAAIAAAAAADIAAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAABIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAIAAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAABAQAAAAAAIAAAAAADYgAAAAAAYgAAAAAAYgAAAAABYgAAAAACYgAAAAABggAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAIAAAAAAA + tiles: AQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADggAAAAAAIAAAAAAAIAAAAAABIAAAAAADAQAAAAAAYgAAAAAAYgAAAAADYgAAAAADYgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAADCwAAAAABYgAAAAABggAAAAAAIAAAAAADIAAAAAAAIAAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAABggAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAACggAAAAAAIAAAAAAAIAAAAAADIAAAAAAAggAAAAAAYgAAAAADYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAABYgAAAAACIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABggAAAAAAYgAAAAAAYgAAAAABggAAAAAAIAAAAAAAIAAAAAADIAAAAAACAQAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAACwAAAAADYgAAAAABggAAAAAAIAAAAAAAIAAAAAADIAAAAAABggAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAYgAAAAAAYgAAAAACggAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAACYgAAAAABYgAAAAACYgAAAAABYgAAAAACggAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAADggAAAAAAYgAAAAAAYgAAAAABggAAAAAAIAAAAAAAIAAAAAABIAAAAAADggAAAAAAYgAAAAACYgAAAAADggAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAABIAAAAAAAggAAAAAACwAAAAACYgAAAAADggAAAAAAIAAAAAABIAAAAAADIAAAAAACAQAAAAAAYgAAAAACYgAAAAABAQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAACIAAAAAADAQAAAAAAYgAAAAACYgAAAAADggAAAAAAIAAAAAACIAAAAAADIAAAAAADggAAAAAAYgAAAAADYgAAAAADggAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAADggAAAAAAYgAAAAACYgAAAAADggAAAAAAIAAAAAADIAAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAABIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAIAAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAABAQAAAAAAIAAAAAADYgAAAAAAYgAAAAAAYgAAAAABYgAAAAACYgAAAAABggAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAIAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: YgAAAAACYgAAAAADggAAAAAAcAAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAYgAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABggAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAACwAAAAACYgAAAAABYgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAQAAAAAAfgAAAAABBwAAAAACfgAAAAADggAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAADggAAAAAABwAAAAABfgAAAAACfgAAAAACggAAAAAAYgAAAAABggAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAACfgAAAAADBwAAAAADggAAAAAAYgAAAAADAQAAAAAAIAAAAAACIAAAAAACAQAAAAAAggAAAAAAggAAAAAAfgAAAAAAfgAAAAABBwAAAAAGfgAAAAACIAAAAAADIAAAAAABIAAAAAABIAAAAAACggAAAAAAYgAAAAACggAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAABwAAAAABfgAAAAADfgAAAAACBwAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAADAQAAAAAAYgAAAAACggAAAAAAIAAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAfgAAAAADBwAAAAABfgAAAAACfgAAAAADIAAAAAACIAAAAAAAIAAAAAABIAAAAAABAQAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAfgAAAAAAfgAAAAADBwAAAAACfgAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACggAAAAAAYgAAAAADAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAADBwAAAAAAfgAAAAAAfgAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAADggAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAABYgAAAAACYgAAAAAAYgAAAAAA + tiles: YgAAAAACYgAAAAADggAAAAAADwAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAYgAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABggAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAACwAAAAACYgAAAAABYgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAQAAAAAAfgAAAAABBwAAAAACfgAAAAADggAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAADggAAAAAABwAAAAABfgAAAAACfgAAAAACggAAAAAAYgAAAAABggAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAACfgAAAAADBwAAAAADggAAAAAAYgAAAAADAQAAAAAAIAAAAAACIAAAAAACAQAAAAAAggAAAAAAggAAAAAAfgAAAAAAfgAAAAABBwAAAAAGfgAAAAACIAAAAAADIAAAAAABIAAAAAABIAAAAAACggAAAAAAYgAAAAACggAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAABwAAAAABfgAAAAADfgAAAAACBwAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAADAQAAAAAAYgAAAAACggAAAAAADwAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAfgAAAAADBwAAAAABfgAAAAACfgAAAAADIAAAAAACIAAAAAAAIAAAAAABIAAAAAABAQAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAfgAAAAAAfgAAAAADBwAAAAACfgAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACggAAAAAAYgAAAAADAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAADBwAAAAAAfgAAAAAAfgAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAADggAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAABYgAAAAACYgAAAAAAYgAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAABggAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAAQAAAAAAIAAAAAAAIAAAAAABIAAAAAACAQAAAAAAYgAAAAABYgAAAAACggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAIAAAAAABIAAAAAACIAAAAAAAggAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAACAQAAAAAAIAAAAAABIAAAAAADIAAAAAACAQAAAAAAYgAAAAACYgAAAAACAQAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABAQAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAADggAAAAAAIAAAAAABIAAAAAACIAAAAAACggAAAAAAYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAADAQAAAAAAYgAAAAAAYgAAAAACggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAABwAAAAADfgAAAAACIAAAAAADIAAAAAABIAAAAAABggAAAAAAYgAAAAABYgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAggAAAAAAfgAAAAABBwAAAAABIAAAAAACIAAAAAADIAAAAAACggAAAAAAYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAfgAAAAADfgAAAAAAIAAAAAABIAAAAAADIAAAAAACggAAAAAAYgAAAAADYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAABggAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAAQAAAAAAIAAAAAAAIAAAAAABIAAAAAACAQAAAAAAYgAAAAABYgAAAAACggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAIAAAAAABIAAAAAACIAAAAAAAggAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAACAQAAAAAAIAAAAAABIAAAAAADIAAAAAACAQAAAAAAYgAAAAACYgAAAAACAQAAAAAAggAAAAAAcAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABAQAAAAAAggAAAAAAcAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAADggAAAAAAIAAAAAABIAAAAAACIAAAAAACggAAAAAAYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAADAQAAAAAAYgAAAAAAYgAAAAACggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAABwAAAAADfgAAAAACIAAAAAADIAAAAAABIAAAAAABggAAAAAAYgAAAAABYgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAggAAAAAAfgAAAAABBwAAAAABIAAAAAACIAAAAAADIAAAAAACggAAAAAAYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAfgAAAAADfgAAAAAAIAAAAAABIAAAAAADIAAAAAACggAAAAAAYgAAAAADYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAAA version: 6 -2,0: ind: -2,0 @@ -140,7 +141,7 @@ entities: version: 6 1,-3: ind: 1,-3 - tiles: ggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + tiles: ggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAADwAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA version: 6 -1,-3: ind: -1,-3 @@ -184,7 +185,7 @@ entities: version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAABZAAAAAACZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAACZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAZAAAAAAAZAAAAAADZAAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAZAAAAAAAZAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAABZAAAAAACZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAACZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAZAAAAAAAZAAAAAADZAAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAZAAAAAAAZAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAA version: 6 -1,-4: ind: -1,-4 @@ -200,7 +201,7 @@ entities: version: 6 -4,-2: ind: -4,-2 - tiles: YgAAAAAADQAAAAACYgAAAAADYgAAAAABYgAAAAACYgAAAAABYgAAAAACYgAAAAABYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAACggAAAAAAYgAAAAAADgAAAAACYgAAAAABYgAAAAAAggAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAABYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAADYgAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAADYgAAAAABYgAAAAADYgAAAAACYgAAAAAAYgAAAAACggAAAAAAIAAAAAACIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YgAAAAAADQAAAAACYgAAAAADYgAAAAABYgAAAAACYgAAAAABYgAAAAACYgAAAAABYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAACggAAAAAAYgAAAAAADgAAAAACYgAAAAABYgAAAAAAggAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAABYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAADYgAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAADYgAAAAABYgAAAAADYgAAAAACYgAAAAAAYgAAAAACggAAAAAAIAAAAAACIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-2: ind: -5,-2 @@ -212,7 +213,7 @@ entities: version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAA version: 6 -4,-1: ind: -4,-1 @@ -220,7 +221,7 @@ entities: version: 6 2,1: ind: 2,1 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAACBAAAAAAAggAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABAAAAAACBAAAAAABAQAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABAAAAAABBAAAAAABggAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAACggAAAAAABwAAAAAEggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAADggAAAAAAggAAAAAAggAAAAAAfgAAAAAABwAAAAAADQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAACggAAAAAABgAAAAABggAAAAAABwAAAAADBwAAAAAFfgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAfgAAAAACggAAAAAABwAAAAAEggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAA + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAACBAAAAAAAggAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABAAAAAACBAAAAAABAQAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABAAAAAABBAAAAAABggAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAACggAAAAAABwAAAAAEggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAADggAAAAAAggAAAAAAggAAAAAAfgAAAAAABwAAAAAADQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAACggAAAAAABgAAAAABggAAAAAABwAAAAADBwAAAAAFfgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAfgAAAAACggAAAAAABwAAAAAEggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAA version: 6 0,2: ind: 0,2 @@ -228,7 +229,7 @@ entities: version: 6 1,2: ind: 1,2 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAYgAAAAACggAAAAAAIAAAAAACDAAAAAADDAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAAZAAAAAABZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACggAAAAAAIAAAAAADDAAAAAABDAAAAAADIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAZAAAAAABZAAAAAACggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAQAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAAZAAAAAAAZAAAAAABggAAAAAAggAAAAAAAAAAAAAAggAAAAAAYgAAAAACggAAAAAAYgAAAAACYgAAAAABYgAAAAABYgAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAAZAAAAAADZAAAAAADggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAYgAAAAABAQAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAYgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAADIAAAAAAAIAAAAAADIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAACIAAAAAABIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAA + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAYgAAAAACggAAAAAAIAAAAAACDAAAAAADDAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAAZAAAAAABZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACggAAAAAAIAAAAAADDAAAAAABDAAAAAADIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAZAAAAAABZAAAAAACggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAQAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAAZAAAAAAAZAAAAAABggAAAAAAggAAAAAAAAAAAAAAggAAAAAAYgAAAAACggAAAAAAYgAAAAACYgAAAAABYgAAAAABYgAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAAZAAAAAADZAAAAAADggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAYgAAAAABAQAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAYgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAADIAAAAAAAIAAAAAADDwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAACIAAAAAABIAAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 @@ -244,7 +245,7 @@ entities: version: 6 3,1: ind: 3,1 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAA + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,2: ind: -2,2 @@ -272,7 +273,7 @@ entities: version: 6 -2,3: ind: -2,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAADwAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 1,3: ind: 1,3 @@ -324,6 +325,13 @@ entities: chunkCollection: version: 2 nodes: + - node: + angle: -3.141592653589793 rad + color: '#D4D4D496' + id: Arrows + decals: + 11875: 19,-16 + 11876: 20,-16 - node: angle: -1.5707963267948966 rad color: '#D4D4D496' @@ -374,13 +382,6 @@ entities: 6152: 7,-16 6153: 8,-16 6154: 9,-16 - - node: - angle: -1.5707963267948966 rad - color: '#D4D4D496' - id: Bot - decals: - 8174: -11,18 - 8175: -10,18 - node: color: '#D4D4D496' id: Bot @@ -392,8 +393,6 @@ entities: 5434: 14,36 5435: 14,37 6583: 30,-16 - 8730: 24,40 - 8731: 24,39 10550: 37,-30 10551: 37,-29 10552: 37,-28 @@ -412,11 +411,30 @@ entities: 10566: 56,-27 10567: 50,-27 10568: 47,-24 - 11079: 28,-28 - 11080: 28,-29 11489: 26,-42 11490: 27,-42 11491: 28,-42 + 11826: 17,-29 + 11827: 18,-29 + 11828: 17,-21 + 11829: 18,-21 + 11830: 27,-28 + 11831: 27,-29 + 11877: 21,-16 + 11878: 21,-17 + 11879: 21,-18 + 11880: 21,-19 + 11882: 18,-17 + 11883: 18,-18 + 11884: 18,-19 + 11985: 31,-19 + 11986: 31,-20 + 12008: 35,-7 + 12009: 36,-7 + 12010: 37,-7 + 12011: -16,-9 + 12012: 24,40 + 12013: 24,39 - node: color: '#D4D4D496' id: BotGreyscale @@ -452,12 +470,6 @@ entities: 5533: -36,30 5553: -31,-22 5554: -3,-29 - 5560: 17,-17 - 5561: 18,-17 - 5562: 19,-17 - 5563: 19,-20 - 5564: 18,-20 - 5565: 17,-20 5570: -5,-33 5571: -4,-33 8065: -24,12 @@ -472,7 +484,7 @@ entities: 8320: -13,26 8321: -17,26 8322: -21,23 - 11081: 28,-30 + 11833: 20,-23 - node: angle: 1.5707963267948966 rad color: '#D4D4D496' @@ -678,11 +690,11 @@ entities: color: '#D4D4D496' id: BrickTileSteelCornerNe decals: - 4021: 19,-18 4024: -10,26 5336: -3,-41 6281: -23,-34 6460: 4,21 + 11873: 21,-14 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNe @@ -833,10 +845,10 @@ entities: color: '#D4D4D496' id: BrickTileSteelCornerSe decals: - 4022: 19,-19 4023: -10,24 5338: -3,-42 6462: 4,19 + 11874: 21,-15 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSe @@ -853,11 +865,6 @@ entities: 892: -18,-44 904: 20,-12 919: -2,27 - - node: - color: '#EFB34196' - id: BrickTileSteelCornerSe - decals: - 9882: 37,-7 - node: color: '#334E6DC8' id: BrickTileSteelCornerSw @@ -929,7 +936,6 @@ entities: id: BrickTileSteelCornerSw decals: 9863: 26,-15 - 9881: 35,-7 - node: color: '#A4610696' id: BrickTileSteelEndE @@ -1295,6 +1301,10 @@ entities: 4028: -10,25 4111: -34,31 6464: 4,20 + 11861: 20,-16 + 11862: 20,-17 + 11863: 20,-18 + 11870: 20,-19 - node: color: '#DE3A3A96' id: BrickTileSteelLineE @@ -1415,14 +1425,14 @@ entities: color: '#D4D4D496' id: BrickTileSteelLineN decals: - 4015: 17,-18 - 4020: 18,-18 4106: -34,34 4107: -33,34 4108: -32,34 4109: -33,30 6282: -25,-34 6283: -24,-34 + 11858: 19,-14 + 11872: 20,-14 - node: color: '#DE3A3A96' id: BrickTileSteelLineN @@ -1548,10 +1558,10 @@ entities: color: '#D4D4D496' id: BrickTileSteelLineS decals: - 4018: 17,-19 - 4019: 18,-19 4112: -33,32 5342: -4,-42 + 11868: 19,-15 + 11871: 20,-15 - node: color: '#DE3A3A96' id: BrickTileSteelLineS @@ -1583,7 +1593,6 @@ entities: 4094: 29,-2 9862: 27,-15 9865: 28,-15 - 9883: 36,-7 - node: color: '#334E6DC8' id: BrickTileSteelLineW @@ -1654,6 +1663,10 @@ entities: 4027: -11,25 4110: -32,31 6463: 3,20 + 11854: 19,-18 + 11855: 19,-17 + 11856: 19,-16 + 11869: 19,-19 - node: color: '#DE3A3A96' id: BrickTileSteelLineW @@ -1824,7 +1837,6 @@ entities: 181: 4,-39 928: -2,19 951: 14,19 - 1365: 16,-20 1393: -23,-36 1429: -14,-9 1600: -30,-25 @@ -1869,7 +1881,6 @@ entities: 185: -1,-39 930: -4,19 952: 12,19 - 1366: 15,-20 1404: -26,-36 1430: -18,-9 1599: -31,-25 @@ -2111,8 +2122,6 @@ entities: 943: -2,21 944: -2,20 945: 14,20 - 1363: 16,-18 - 1364: 16,-19 1397: -23,-35 1431: -14,-7 1432: -14,-8 @@ -2375,8 +2384,6 @@ entities: 932: -4,20 933: -4,21 948: 12,20 - 1367: 15,-19 - 1368: 15,-18 1433: -18,-8 1434: -18,-7 1448: -39,33 @@ -2603,12 +2610,14 @@ entities: color: '#D4D4D496' id: Delivery decals: - 5534: -16,-9 6431: 0,-24 6433: 2,-24 6434: 2,-25 6439: 0,-25 8732: 17,36 + 11842: 16,-24 + 11843: 16,-25 + 11844: 16,-26 - node: color: '#D4D4D496' id: DeliveryGreyscale @@ -2827,7 +2836,6 @@ entities: 2213: -20,10 2216: 4,-18 2218: 11,-27 - 2219: 18,-28 2220: 14,-22 2223: 8,-20 2226: -6,-31 @@ -2863,7 +2871,6 @@ entities: 2503: 43,-23 2504: 35,-24 2505: 35,-25 - 2507: 21,-21 2508: 25,-13 2667: 26,18 2717: 23,33 @@ -2937,9 +2944,6 @@ entities: 4445: 38,-20 4456: 39,-12 4459: 41,-7 - 4468: 18,-20 - 4469: 19,-19 - 4470: 17,-17 4563: -12,-22 4564: -13,-21 4565: -12,-20 @@ -3385,7 +3389,6 @@ entities: 9891: 27,-15 9892: 26,-12 9893: 28,-11 - 9903: 37,-7 9904: 35,-4 9911: 32,-4 9930: 24,-10 @@ -3478,8 +3481,6 @@ entities: 11667: 48,12 11668: 44,8 11669: 45,16 - 11670: 44,17 - 11671: 43,19 11672: 44,20 11673: 46,18 11674: 48,17 @@ -3508,7 +3509,29 @@ entities: 11718: 39,-5 11719: 40,-7 11720: 45,-7 - 11726: 24,-15 + 11915: 19,-29 + 11916: 17,-27 + 11917: 16,-25 + 11918: 17,-23 + 11919: 19,-25 + 11920: 20,-23 + 11921: 22,-25 + 11922: 21,-21 + 11923: 24,-21 + 11924: 28,-22 + 11925: 29,-19 + 11926: 15,-22 + 11927: 18,-19 + 11928: 20,-18 + 11929: 18,-17 + 11930: 19,-14 + 11931: 21,-16 + 11932: 27,-29 + 11933: 25,-28 + 11934: 28,-26 + 11935: 29,-25 + 11987: 31,-20 + 11994: 29,-42 - node: cleanable: True angle: 1.5707963267948966 rad @@ -3525,23 +3548,11 @@ entities: 11121: 29,-38 11122: 30,-35 11123: 27,-34 - 11124: 33,-42 11125: 34,-39 11126: 30,-33 11127: 30,-29 11128: 31,-28 11129: 29,-30 - 11149: 23,-24 - 11150: 25,-26 - 11151: 25,-24 - 11152: 24,-21 - 11153: 23,-19 - 11154: 28,-18 - 11155: 29,-21 - 11156: 27,-23 - 11157: 29,-25 - 11175: 22,-28 - 11176: 23,-29 11186: 42,-26 11187: 44,-25 11188: 44,-29 @@ -3590,19 +3601,12 @@ entities: 11278: 43,-9 11279: 39,-13 11284: 33,-8 - 11301: 21,-20 - 11302: 18,-14 - 11303: 20,-15 11308: 12,-22 - 11309: 16,-28 - 11310: 17,-31 - 11311: 19,-32 11316: 14,-31 11317: 12,-30 11321: 9,-27 11322: 10,-26 11329: 5,-20 - 11330: 13,-28 11331: -9,-39 11332: -7,-42 11333: -11,-43 @@ -3783,7 +3787,6 @@ entities: 2296: -3,-31 2297: 3,-31 2298: 6,-29 - 2299: 15,-22 2302: 8,-18 2303: 8,-16 2330: 21,19 @@ -3950,7 +3953,6 @@ entities: 4446: 36,-21 4447: 39,-20 4448: 39,-19 - 4449: 31,-20 4452: 33,-13 4453: 32,-9 4454: 36,-9 @@ -3958,10 +3960,6 @@ entities: 4460: 42,-6 4461: 36,-4 4462: 32,-3 - 4471: 17,-20 - 4472: 17,-19 - 4473: 18,-18 - 4474: 19,-17 4550: -8,-28 4552: -7,-29 4560: -12,-30 @@ -4362,7 +4360,6 @@ entities: 9897: 28,-12 9898: 26,-14 9907: 37,-6 - 9908: 35,-7 9909: 32,-5 9910: 33,-2 9937: 31,-21 @@ -4409,7 +4406,24 @@ entities: 11722: 40,-5 11723: 45,-6 11724: 39,-7 - 11725: 23,-16 + 11947: 19,-24 + 11948: 18,-22 + 11949: 22,-22 + 11950: 23,-26 + 11951: 25,-29 + 11952: 27,-25 + 11953: 26,-22 + 11954: 19,-28 + 11967: 20,-17 + 11968: 21,-19 + 11969: 21,-15 + 11970: 18,-16 + 11988: 31,-19 + 11989: 23,-13 + 11990: 29,-27 + 11991: 32,-27 + 11997: 22,-28 + 12000: 43,19 - node: cleanable: True angle: 1.5707963267948966 rad @@ -4434,7 +4448,6 @@ entities: 11139: 34,-37 11140: 33,-39 11141: 34,-41 - 11142: 31,-42 11143: 30,-39 11144: 35,-31 11145: 37,-32 @@ -4442,12 +4455,7 @@ entities: 11147: 39,-29 11148: 33,-28 11166: 25,-25 - 11167: 27,-24 - 11168: 24,-23 - 11169: 23,-21 - 11170: 28,-21 11171: 29,-24 - 11172: 29,-26 11249: 52,-21 11250: 53,-18 11251: 46,-16 @@ -4586,8 +4594,6 @@ entities: 2436: -3,-38 2441: -9,-34 2442: -8,-31 - 2446: 16,-18 - 2447: 15,-20 2451: 22,-7 2455: 27,-8 2456: 31,-7 @@ -4610,7 +4616,6 @@ entities: 2479: 40,-20 2482: 35,-20 2483: 32,-22 - 2484: 31,-20 2485: 31,-16 2488: 24,-12 2489: 18,-9 @@ -4650,7 +4655,6 @@ entities: 2773: -18,3 2834: 53,-1 2835: 49,-1 - 2843: 17,-28 2854: -10,-42 2954: -40,-19 2956: -39,-20 @@ -4728,10 +4732,6 @@ entities: 4433: 20,-3 4435: 30,-7 4458: 39,-9 - 4475: 18,-17 - 4476: 18,-18 - 4477: 19,-20 - 4478: 15,-19 4553: -8,-29 4554: -7,-28 4562: -12,-30 @@ -4927,21 +4927,33 @@ entities: 11632: -1,-7 11633: 3,-6 11640: 6,-6 + 11955: 18,-26 + 11956: 17,-24 + 11957: 20,-22 + 11958: 28,-25 + 11959: 23,-27 + 11960: 20,-24 + 11961: 23,-22 + 11962: 21,-28 + 11963: 19,-17 + 11971: 20,-19 + 11972: 19,-16 + 11973: 21,-14 + 11974: 18,-18 + 11992: 30,-27 + 11993: 31,-42 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtLight decals: - 11173: 26,-25 - 11174: 22,-29 11177: 27,-33 11178: 29,-35 11179: 33,-34 11180: 28,-38 11181: 31,-41 11182: 25,-38 - 11183: 22,-32 11184: 33,-27 11185: 37,-31 11263: 54,-20 @@ -4960,9 +4972,6 @@ entities: 11276: 31,-14 11277: 40,-10 11287: 32,-7 - 11304: 20,-14 - 11305: 16,-22 - 11306: 17,-25 11307: 12,-24 11352: -18,-46 11353: -18,-50 @@ -5118,12 +5127,6 @@ entities: 4441: 38,-21 4442: 36,-22 4457: 39,-11 - 4479: 18,-19 - 4480: 17,-18 - 4481: 19,-18 - 4482: 18,-17 - 4483: 16,-19 - 4484: 15,-18 4556: -7,-27 4558: -9,-21 4559: -13,-29 @@ -5265,7 +5268,6 @@ entities: 8225: -12,20 8226: -11,22 8227: -10,16 - 8228: -11,18 8229: -13,15 8230: -14,13 8231: -16,14 @@ -5486,7 +5488,6 @@ entities: 9894: 28,-14 9895: 26,-11 9905: 37,-5 - 9906: 36,-7 9912: 32,-2 9913: 39,-38 9936: 35,-19 @@ -5551,6 +5552,22 @@ entities: 11713: 42,2 11714: 36,1 11721: 45,-5 + 11936: 22,-27 + 11937: 31,-31 + 11938: 26,-31 + 11939: 24,-26 + 11940: 26,-25 + 11941: 24,-22 + 11942: 21,-24 + 11943: 22,-23 + 11944: 20,-28 + 11945: 17,-26 + 11946: 29,-21 + 11964: 19,-19 + 11965: 20,-16 + 11966: 20,-14 + 11995: 33,-42 + 11996: 23,-28 - node: cleanable: True angle: 1.5707963267948966 rad @@ -5570,7 +5587,6 @@ entities: 11104: 31,-37 11105: 28,-39 11106: 26,-38 - 11107: 29,-42 11108: 32,-41 11109: 31,-40 11110: 34,-38 @@ -5579,18 +5595,6 @@ entities: 11113: 36,-32 11114: 40,-31 11115: 38,-29 - 11116: 27,-28 - 11117: 25,-29 - 11118: 24,-32 - 11119: 22,-31 - 11158: 26,-26 - 11159: 27,-25 - 11160: 24,-25 - 11161: 24,-22 - 11162: 23,-20 - 11163: 24,-18 - 11164: 29,-18 - 11165: 28,-22 11231: 45,-26 11232: 48,-27 11233: 47,-23 @@ -6965,6 +6969,8 @@ entities: 8950: -17,-2 10619: 48,-19 10620: 51,-16 + 11841: 20,-28 + 11914: 29,-42 - node: color: '#D4D4D496' id: WarnCornerSmallSW @@ -6974,6 +6980,8 @@ entities: 10621: 55,-16 10622: 58,-19 10655: 46,-19 + 11840: 24,-28 + 11913: 33,-42 - node: color: '#D4D4D428' id: WarnFullGreyscale @@ -7048,25 +7056,15 @@ entities: 10447: 5,-21 10448: 4,-16 10449: 12,-16 - 10450: 16,-16 10451: 9,-21 10461: 12,-25 - 10463: 17,-27 10472: 4,-30 10473: 9,-30 10474: 14,-29 10475: 12,-32 - 10485: 21,-17 - 10491: 20,-27 - 10492: 23,-27 - 10493: 27,-27 - 10494: 23,-30 10501: 42,-33 10507: 34,-26 10510: 39,-24 - 10522: 21,-24 - 10523: 21,-25 - 10524: 21,-26 10544: 33,-1 10545: 36,-3 10549: 19,-8 @@ -7170,6 +7168,13 @@ entities: 11062: 9,-28 11077: 12,-35 11581: -4,-9 + 11888: 15,-16 + 11900: 19,-30 + 11902: 19,-33 + 11903: 26,-30 + 11904: 29,-20 + 11905: 22,-33 + 11998: 43,19 - node: color: '#64646493' id: WarnLineGreyscaleE @@ -7363,7 +7368,6 @@ entities: id: WarnLineGreyscaleW decals: 4044: 32,-3 - 4045: 31,-20 9889: 35,-6 - node: color: '#D4D4D496' @@ -7426,19 +7430,11 @@ entities: 10427: -5,-31 10444: -2,-18 10445: 3,-18 - 10465: 13,-28 - 10481: 17,-14 - 10482: 22,-15 - 10483: 22,-18 - 10484: 20,-19 - 10497: 21,-32 - 10498: 21,-28 10499: 41,-31 10505: 29,-45 10506: 33,-45 10513: 37,-21 10514: 41,-25 - 10515: 30,-20 10531: 29,-15 10532: 34,-16 10533: 40,-16 @@ -7538,6 +7534,17 @@ entities: 11055: -11,39 11578: -7,-10 11579: -2,-8 + 11837: 21,-28 + 11838: 22,-28 + 11839: 23,-28 + 11885: 17,-15 + 11889: 16,-22 + 11890: 16,-28 + 11895: 28,-18 + 11896: 30,-23 + 11910: 32,-42 + 11911: 31,-42 + 11912: 30,-42 - node: color: '#D4D4D496' id: WarnLineS @@ -7598,18 +7605,11 @@ entities: 10456: 5,-28 10457: 9,-21 10458: 12,-16 - 10459: 15,-16 10460: 12,-25 - 10462: 17,-27 10467: 4,-30 10468: 9,-30 10469: 12,-32 10471: 14,-29 - 10486: 21,-17 - 10487: 23,-30 - 10488: 23,-27 - 10489: 27,-27 - 10490: 20,-27 10502: 42,-33 10508: 33,-26 10509: 39,-24 @@ -7721,6 +7721,13 @@ entities: 11063: 9,-28 11076: 12,-35 11580: -4,-9 + 11887: 15,-16 + 11897: 29,-20 + 11898: 19,-30 + 11899: 19,-33 + 11901: 25,-30 + 11906: 22,-33 + 11999: 43,19 - node: color: '#D4D4D496' id: WarnLineW @@ -7778,19 +7785,11 @@ entities: 10429: -1,-22 10442: -2,-18 10443: 3,-18 - 10466: 13,-28 - 10477: 17,-14 - 10478: 22,-15 - 10479: 22,-18 - 10480: 20,-19 - 10495: 21,-28 - 10496: 21,-32 10500: 41,-31 10503: 29,-45 10504: 33,-45 10511: 37,-21 10512: 41,-25 - 10516: 30,-19 10525: 30,-44 10526: 31,-44 10527: 32,-44 @@ -7893,6 +7892,14 @@ entities: 11059: -11,46 11576: -2,-8 11577: -7,-10 + 11834: 21,-30 + 11835: 22,-30 + 11836: 23,-30 + 11886: 17,-14 + 11891: 16,-22 + 11892: 16,-28 + 11893: 28,-18 + 11894: 30,-23 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -8216,8 +8223,6 @@ entities: 3305: 2,37 3309: 24,25 3310: 24,19 - 3329: 15,-23 - 3330: 20,-32 3331: -8,-22 3339: -7,-34 3340: -3,-34 @@ -8252,13 +8257,19 @@ entities: 8253: -21,21 8456: -21,24 8460: -24,26 + 11975: 22,-32 + 11976: 21,-30 + 11981: 23,-31 + 12001: 21,-25 + 12002: 25,-22 + 12004: 32,-39 + 12005: 26,-35 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: burnt1 decals: - 11293: 20,-24 11294: 30,-45 11295: 31,-44 11296: 32,-46 @@ -8293,14 +8304,9 @@ entities: 8251: -21,25 8458: -20,26 8461: -25,25 - - node: - cleanable: True - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: burnt2 - decals: - 11291: 20,-25 - 11292: 21,-24 + 11979: 22,-31 + 11980: 21,-32 + 12006: 34,-33 - node: cleanable: True color: '#FFFFFFFF' @@ -8323,9 +8329,6 @@ entities: 3485: -22,-42 3490: -1,-39 3491: 5,-25 - 3496: 17,-17 - 3497: 19,-20 - 3498: 15,-20 3502: 37,-1 3503: 36,-15 3508: 23,-12 @@ -8350,13 +8353,15 @@ entities: 6561: 2,-21 8457: -19,25 8462: -24,25 + 11978: 23,-30 + 12003: 26,-29 + 12007: 32,-32 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: burnt3 decals: - 11290: 19,-26 11300: 31,-46 - node: cleanable: True @@ -8399,14 +8404,13 @@ entities: 6562: 2,-25 6692: -21,-8 8459: -23,24 + 11977: 23,-32 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: burnt4 decals: - 11288: 19,-24 - 11289: 21,-26 11297: 30,-46 11298: 32,-45 11299: 30,-44 @@ -8679,7 +8683,7 @@ entities: 3,-5: 0: 48059 4,-4: - 0: 8145 + 0: 8188 4,-3: 0: 65533 4,-2: @@ -8767,17 +8771,18 @@ entities: 8,3: 0: 57296 4,-5: - 0: 65535 + 0: 56784 5,-4: - 0: 33786 + 0: 35643 5,-3: 0: 56797 5,-2: 0: 16380 5,-5: - 0: 11962 + 0: 13104 + 2: 2176 6,-4: - 0: 64733 + 0: 65485 6,-3: 0: 53727 6,-2: @@ -8791,7 +8796,7 @@ entities: 7,-1: 0: 2039 7,-5: - 0: 35839 + 0: 35754 8,-4: 0: 62399 8,-3: @@ -8888,14 +8893,13 @@ entities: 9,-3: 0: 48123 9,-2: - 0: 48048 + 0: 49072 9,-1: 0: 30475 9,-5: 0: 61661 10,-4: - 0: 57447 - 3: 4096 + 0: 61543 10,-3: 0: 65535 10,-2: @@ -8907,14 +8911,14 @@ entities: 10,-5: 0: 24831 11,-4: - 0: 3839 + 0: 7423 + 11,-3: + 0: 4377 + 2: 17604 + 11,-2: + 0: 61408 11,-5: 0: 65229 - 11,-3: - 2: 17638 - 0: 8 - 11,-2: - 0: 61152 11,-1: 0: 60942 11,0: @@ -8951,7 +8955,7 @@ entities: 11,3: 0: 26415 11,4: - 0: 14322 + 0: 9954 12,1: 0: 61696 12,2: @@ -8961,50 +8965,52 @@ entities: 0: 53505 2: 2184 4,-8: - 0: 26222 + 0: 59562 3,-8: 0: 20477 4,-7: - 0: 13095 - 4: 34816 + 0: 32751 + 3: 32768 3,-7: 0: 21791 4,-6: - 0: 3888 - 4: 8 + 0: 61423 3,-6: - 0: 4049 - 5,-8: - 0: 51663 - 2: 4096 + 0: 36721 + 4,-9: + 0: 34609 + 2: 2050 + 4: 8 5,-7: - 2: 1 - 4: 13056 - 0: 34958 + 0: 65279 + 3: 256 5,-6: - 4: 3 - 0: 43912 - 6,-8: - 0: 61183 + 0: 65535 + 5,-8: + 4: 3694 + 5: 128 6,-7: - 0: 65422 + 0: 65277 + 3: 258 6,-6: 0: 65535 6,-5: - 0: 259 - 2: 3808 + 2: 4080 + 6,-8: + 0: 59118 6,-9: 0: 61166 7,-8: - 0: 65535 + 0: 61183 7,-7: - 0: 48015 + 0: 47342 7,-6: - 0: 48059 + 0: 48123 7,-9: 0: 65535 8,-8: - 0: 65535 + 0: 65533 + 3: 2 8,-7: 0: 63231 8,-6: @@ -9025,7 +9031,7 @@ entities: 0: 65520 10,-9: 0: 17984 - 4: 1 + 6: 1 2: 2444 11,-8: 0: 14336 @@ -9378,32 +9384,28 @@ entities: 0: 1991 4,-12: 0: 4369 - 2: 17476 + 2: 17508 4,-11: 0: 14097 - 2: 2124 + 2: 2156 4,-10: 0: 4881 2: 8226 4: 8 - 5: 2048 - 4,-9: - 0: 1841 - 2: 2050 - 6: 8 + 7: 2048 4,-13: 0: 4369 - 2: 17476 + 2: 17508 5,-11: 2: 687 0: 36096 5,-10: 4: 3 - 5: 768 + 7: 768 2: 32904 0: 2048 5,-9: - 6: 3 + 4: 3 0: 3456 2: 520 5,-12: @@ -9414,7 +9416,8 @@ entities: 2: 31 0: 60416 6,-10: - 0: 61166 + 0: 61038 + 3: 128 6,-13: 2: 32768 7,-12: @@ -9436,7 +9439,8 @@ entities: 0: 29440 2: 140 8,-10: - 0: 30583 + 0: 30327 + 3: 256 -4,-12: 0: 56796 -4,-13: @@ -9501,8 +9505,7 @@ entities: -5,-11: 0: 1911 -5,-13: - 7: 4096 - 0: 60928 + 0: 65024 -12,-4: 0: 65280 -13,-4: @@ -9618,7 +9621,7 @@ entities: 9,-9: 2: 1025 0: 2832 - 4: 12 + 6: 12 10,-11: 2: 295 0: 17920 @@ -9641,13 +9644,19 @@ entities: 2: 562 12,-10: 2: 8960 - 4,-15: + 4,-16: 2: 22272 - 3,-15: + 3,-16: 2: 20224 + 4,-15: + 0: 4369 + 2: 17508 + 3,-15: + 0: 1991 + 2: 6192 4,-14: 0: 4369 - 2: 17476 + 2: 17508 3,-14: 0: 1991 2: 6192 @@ -9696,9 +9705,9 @@ entities: -12,-9: 2: 1024 -12,-10: - 2: 128 + 2: 136 -11,-10: - 2: 112 + 2: 39 0: 28672 -10,-11: 0: 65535 @@ -9826,7 +9835,7 @@ entities: 0: 8753 2: 35264 10,4: - 0: 56784 + 0: 40400 10,5: 0: 36749 10,6: @@ -10141,14 +10150,20 @@ entities: 6,14: 2: 1 7,13: - 2: 41698 + 2: 8930 0: 2056 7,14: + 2: 41698 + 0: 2056 + 7,15: 2: 14 8,13: 0: 3983 - 2: 32880 + 2: 8304 8,14: + 0: 3983 + 2: 32880 + 8,15: 2: 127 12,0: 2: 32 @@ -10166,15 +10181,21 @@ entities: 2: 34944 15,2: 2: 62064 - 2,-15: + 2,-16: 2: 24320 + 2,-15: + 2: 4593 + 0: 3084 2,-14: 2: 4593 0: 3084 9,13: + 0: 8754 + 2: 35016 + 9,14: 0: 562 2: 43208 - 9,14: + 9,15: 2: 15 -19,-3: 2: 136 @@ -10227,10 +10248,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.14975 + temperature: 293.14987 moles: - - 20.078888 - - 75.53487 + - 21.824879 + - 82.10312 - 0 - 0 - 0 @@ -10257,9 +10278,9 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + temperature: 256.84372 moles: - - 6666.982 + - 0 - 0 - 0 - 0 @@ -10289,11 +10310,11 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 21.823984 - - 82.09976 - 0 - 0 - 0 + - 6666.982 + - 0 - 0 - 0 - 0 @@ -10304,9 +10325,6 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 0 - - 0 - - 0 - 6666.982 - 0 - 0 @@ -10316,6 +10334,9 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -10335,6 +10356,45 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 5301 + - uid: 9012 + components: + - type: Transform + parent: 1733 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 1733 + - uid: 9016 + components: + - type: Transform + parent: 1734 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 1734 +- proto: ActionToggleJetpack + entities: + - uid: 9009 + components: + - type: Transform + parent: 1733 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 1733 + - uid: 9015 + components: + - type: Transform + parent: 1734 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 1734 +- proto: ActionToggleLight + entities: + - uid: 1565 + components: + - type: Transform + parent: 8057 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 8057 - proto: AirAlarm entities: - uid: 488 @@ -10509,6 +10569,18 @@ entities: - 7523 - 13848 - 368 + - uid: 1718 + components: + - type: MetaData + name: air alarm (EVA Storage) + - type: Transform + pos: 19.5,-12.5 + parent: 2 + - type: DeviceList + devices: + - 2488 + - 10855 + - 2830 - uid: 1868 components: - type: MetaData @@ -10589,6 +10661,32 @@ entities: - type: DeviceList devices: - 11242 + - uid: 5566 + components: + - type: MetaData + name: air alarm (TEG Burn Chamber) + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-28.5 + parent: 2 + - type: DeviceList + devices: + - 7952 + - uid: 5980 + components: + - type: MetaData + name: air alarm (TEG) + - type: Transform + pos: 22.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 2463 + - 2891 + - 1719 + - 1029 + - 1028 + - 9755 - uid: 8141 components: - type: MetaData @@ -11177,33 +11275,6 @@ entities: - type: DeviceList devices: - 2624 - - uid: 12708 - components: - - type: MetaData - name: air alarm (TEG) - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-20.5 - parent: 2 - - type: DeviceList - devices: - - 9009 - - 9007 - - 9008 - - 13832 - - 13833 - - 13836 - - uid: 12721 - components: - - type: MetaData - name: air alarm (TEG Burn Chamber) - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-22.5 - parent: 2 - - type: DeviceList - devices: - - 12609 - uid: 12724 components: - type: MetaData @@ -11217,13 +11288,11 @@ entities: - 8975 - 13850 - 10553 - - 13832 - - 13833 + - 1029 - 13834 - 13835 - - 9015 - - 9017 - - 9016 + - 3278 + - 3622 - 6044 - uid: 12725 components: @@ -11314,6 +11383,20 @@ entities: - 2768 - 13804 - 13805 + - uid: 12810 + components: + - type: MetaData + name: air alarm (Engineering Locker Room) + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-14.5 + parent: 2 + - type: DeviceList + devices: + - 9209 + - 9168 + - 9210 + - 13803 - uid: 13789 components: - type: MetaData @@ -11473,19 +11556,6 @@ entities: - 11909 - 10830 - 11908 - - uid: 13798 - components: - - type: MetaData - name: air alarm (EVA) - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-17.5 - parent: 2 - - type: DeviceList - devices: - - 16318 - - 12550 - - 12551 - uid: 13799 components: - type: MetaData @@ -11497,7 +11567,7 @@ entities: devices: - 12562 - 12563 - - 12561 + - 8358 - 10857 - 10858 - 10859 @@ -12059,20 +12129,6 @@ entities: - 12400 - 12403 - 10883 - - uid: 13947 - components: - - type: MetaData - name: air alarm (Engineering Locker Room) - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-13.5 - parent: 2 - - type: DeviceList - devices: - - 9209 - - 9168 - - 9210 - - 13803 - uid: 13962 components: - type: MetaData @@ -12090,20 +12146,21 @@ entities: - 12404 - 10840 - 10841 - - uid: 14575 + - uid: 14552 components: - type: MetaData name: air alarm (Atmospherics) - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-32.5 + rot: 1.5707963267948966 rad + pos: 24.5,-31.5 parent: 2 - type: DeviceList devices: - - 9478 - - 7484 + - 1028 + - 9755 - 9011 - - 13836 + - 7484 + - 9478 - 13834 - 13835 - 13850 @@ -12211,11 +12268,6 @@ entities: - type: Transform pos: -33.5,27.5 parent: 2 - - uid: 6003 - components: - - type: Transform - pos: 27.5,-41.5 - parent: 2 - uid: 6295 components: - type: Transform @@ -12301,6 +12353,20 @@ entities: parent: 2 - proto: AirlockAtmosphericsGlassLocked entities: + - uid: 1762 + components: + - type: MetaData + name: glass airlock (TEG) + - type: Transform + pos: 25.5,-29.5 + parent: 2 + - uid: 2307 + components: + - type: MetaData + name: glass airlock (TEG) + - type: Transform + pos: 26.5,-29.5 + parent: 2 - uid: 2704 components: - type: MetaData @@ -12317,14 +12383,6 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-25.5 parent: 2 - - uid: 7902 - components: - - type: MetaData - name: glass airlock (TEG) - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-26.5 - parent: 2 - proto: AirlockBarLocked entities: - uid: 244 @@ -12628,14 +12686,6 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,-20.5 parent: 2 - - uid: 2933 - components: - - type: MetaData - name: glass airlock (TEG) - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-19.5 - parent: 2 - uid: 2934 components: - type: MetaData @@ -12643,12 +12693,13 @@ entities: - type: Transform pos: 29.5,-14.5 parent: 2 - - uid: 7901 + - uid: 8940 components: - type: MetaData name: glass airlock (TEG) - type: Transform - pos: 30.5,-18.5 + rot: -1.5707963267948966 rad + pos: 30.5,-22.5 parent: 2 - uid: 9083 components: @@ -12688,13 +12739,6 @@ entities: - type: Transform pos: 29.5,-7.5 parent: 2 - - uid: 2578 - components: - - type: MetaData - name: airlock (Engineering Substation) - - type: Transform - pos: 22.5,-14.5 - parent: 2 - uid: 2585 components: - type: MetaData @@ -12729,7 +12773,7 @@ entities: - uid: 4129 components: - type: MetaData - name: airlock (Medical Substation) + name: airlock (Engineering Substation) - type: Transform pos: 42.5,3.5 parent: 2 @@ -12795,6 +12839,14 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-41.5 parent: 2 + - uid: 9235 + components: + - type: MetaData + name: airlock (Medical Substation) + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,19.5 + parent: 2 - uid: 9617 components: - type: MetaData @@ -12811,31 +12863,20 @@ entities: parent: 2 - proto: AirlockEVAGlassLocked entities: - - uid: 1710 + - uid: 2466 components: - type: MetaData name: glass airlock (EVA) - type: Transform - pos: 15.5,-15.5 + pos: 17.5,-13.5 parent: 2 - - uid: 1712 + - uid: 2840 components: - type: MetaData name: glass airlock (EVA) - type: Transform - pos: 16.5,-15.5 + pos: 17.5,-14.5 parent: 2 -- proto: AirlockEVALocked - entities: - - uid: 1717 - components: - - type: MetaData - name: maintenance access (EVA) - - type: Transform - pos: 20.5,-18.5 - parent: 2 - - type: PaintableAirlock - department: Civilian - proto: AirlockExternalGlass entities: - uid: 7076 @@ -12874,19 +12915,6 @@ entities: linkedPorts: 1196: - DoorStatus: DoorBolt - - uid: 2458 - components: - - type: Transform - pos: 23.5,-29.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 1060: - - DoorStatus: DoorBolt - 2304: - - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: - uid: 6502 @@ -12925,18 +12953,17 @@ entities: - DoorStatus: DoorBolt - proto: AirlockExternalGlassEngineeringLocked entities: - - uid: 1060 + - uid: 1184 components: - type: Transform - pos: 23.5,-26.5 + rot: 3.141592653589793 rad + pos: 29.5,-19.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 2458: - - DoorStatus: DoorBolt - 2304: + 5592: - DoorStatus: DoorBolt - uid: 1363 components: @@ -12962,19 +12989,6 @@ entities: linkedPorts: 1363: - DoorStatus: DoorBolt - - uid: 2304 - components: - - type: Transform - pos: 21.5,-27.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 1060: - - DoorStatus: DoorBolt - 2458: - - DoorStatus: DoorBolt - uid: 2749 components: - type: Transform @@ -12991,6 +13005,18 @@ entities: - type: Transform pos: -37.5,-44.5 parent: 2 + - uid: 5592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-17.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1184: + - DoorStatus: DoorBolt - uid: 7698 components: - type: Transform @@ -13027,6 +13053,28 @@ entities: linkedPorts: 2749: - DoorStatus: DoorBolt + - uid: 9751 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12652: + - DoorStatus: DoorBolt + - uid: 12652 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9751: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassLocked entities: - uid: 3562 @@ -13584,16 +13632,6 @@ entities: - type: Transform pos: -21.5,-40.5 parent: 2 -- proto: AirlockMaintAtmoLocked - entities: - - uid: 2285 - components: - - type: MetaData - name: maintenance access (Atmospherics) - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-31.5 - parent: 2 - proto: AirlockMaintBarLocked entities: - uid: 38 @@ -13662,6 +13700,11 @@ entities: parent: 2 - proto: AirlockMaintEngiLocked entities: + - uid: 1159 + components: + - type: Transform + pos: 16.5,-27.5 + parent: 2 - uid: 6385 components: - type: MetaData @@ -13670,13 +13713,10 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-0.5 parent: 2 - - uid: 8086 + - uid: 9757 components: - - type: MetaData - name: maintenance access (TEG) - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-17.5 + pos: 16.5,-21.5 parent: 2 - proto: AirlockMaintHydroLocked entities: @@ -13742,6 +13782,12 @@ entities: - type: Transform pos: -21.5,-28.5 parent: 2 + - uid: 1437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-15.5 + parent: 2 - uid: 1671 components: - type: Transform @@ -13764,23 +13810,11 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-15.5 parent: 2 - - uid: 2130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-13.5 - parent: 2 - uid: 2520 components: - type: Transform pos: -3.5,42.5 parent: 2 - - uid: 2997 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-26.5 - parent: 2 - uid: 3023 components: - type: Transform @@ -13941,7 +13975,7 @@ entities: pos: 47.5,5.5 parent: 2 - type: Door - secondsUntilStateChange: -282233.8 + secondsUntilStateChange: -311998.12 state: Opening - type: DeviceLinkSource lastSignals: @@ -14530,7 +14564,7 @@ entities: pos: 25.5,21.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: 3977: @@ -14633,6 +14667,14 @@ entities: - type: Transform pos: 42.5,-2.5 parent: 2 + - uid: 2488 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1718 - uid: 2624 components: - type: Transform @@ -14642,6 +14684,14 @@ entities: - type: DeviceNetwork deviceLists: - 12674 + - uid: 2891 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5980 - uid: 4037 components: - type: Transform @@ -14690,6 +14740,14 @@ entities: - type: DeviceNetwork deviceLists: - 11864 + - uid: 7952 + components: + - type: Transform + pos: 22.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5566 - uid: 8623 components: - type: Transform @@ -14794,22 +14852,6 @@ entities: - type: DeviceNetwork deviceLists: - 11291 - - uid: 9009 - components: - - type: Transform - pos: 29.5,-20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12708 - - uid: 9017 - components: - - type: Transform - pos: 31.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12724 - uid: 9027 components: - type: Transform @@ -14841,7 +14883,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13947 + - 12810 - uid: 9478 components: - type: Transform @@ -14849,7 +14891,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14575 + - 14552 - uid: 10064 components: - type: Transform @@ -15424,14 +15466,6 @@ entities: - type: DeviceNetwork deviceLists: - 13799 - - uid: 12609 - components: - - type: Transform - pos: 19.5,-24.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12721 - uid: 13801 components: - type: Transform @@ -15584,14 +15618,6 @@ entities: - type: DeviceNetwork deviceLists: - 11251 - - uid: 16318 - components: - - type: Transform - pos: 16.5,-17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13798 - proto: AltarSpawner entities: - uid: 3247 @@ -15883,14 +15909,6 @@ entities: - type: Transform pos: 7.5,-27.5 parent: 2 - - uid: 5581 - components: - - type: MetaData - name: APC (Maintenance) - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-19.5 - parent: 2 - uid: 5641 components: - type: MetaData @@ -15962,14 +15980,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-20.5 parent: 2 - - uid: 5966 - components: - - type: MetaData - name: APC (EVA) - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-16.5 - parent: 2 - uid: 6152 components: - type: MetaData @@ -16126,6 +16136,13 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,37.5 parent: 2 + - uid: 7943 + components: + - type: MetaData + name: APC (TEG) + - type: Transform + pos: 21.5,-19.5 + parent: 2 - uid: 8241 components: - type: MetaData @@ -16337,13 +16354,6 @@ entities: - type: Transform pos: 0.5,-11.5 parent: 2 - - uid: 10482 - components: - - type: MetaData - name: APC (TEG) - - type: Transform - pos: 29.5,-16.5 - parent: 2 - uid: 10755 components: - type: MetaData @@ -16358,6 +16368,13 @@ entities: - type: Transform pos: 34.5,-7.5 parent: 2 + - uid: 12694 + components: + - type: MetaData + name: APC (EVA Storage) + - type: Transform + pos: 20.5,-12.5 + parent: 2 - uid: 13637 components: - type: MetaData @@ -16503,7 +16520,7 @@ entities: - uid: 14408 components: - type: Transform - pos: 32.289467,-37.550957 + pos: 28.309616,-32.58594 parent: 2 - uid: 14508 components: @@ -16656,41 +16673,41 @@ entities: parent: 2 - proto: AtmosFixBlockerMarker entities: + - uid: 1128 + components: + - type: Transform + pos: 38.5,-39.5 + parent: 2 + - uid: 1129 + components: + - type: Transform + pos: 39.5,-39.5 + parent: 2 - uid: 2385 components: - type: Transform pos: 20.5,-39.5 parent: 2 - - uid: 2449 + - uid: 5971 components: - type: Transform - pos: 38.5,-35.5 + pos: 21.5,-35.5 parent: 2 - - uid: 2450 + - uid: 6290 components: - type: Transform - pos: 39.5,-35.5 + pos: 20.5,-35.5 parent: 2 - - uid: 2451 - components: - - type: Transform - pos: 40.5,-35.5 - parent: 2 - - uid: 2455 - components: - - type: Transform - pos: 38.5,-39.5 - parent: 2 - - uid: 2456 - components: - - type: Transform - pos: 39.5,-39.5 - parent: 2 - - uid: 2457 + - uid: 6829 components: - type: Transform pos: 40.5,-39.5 parent: 2 + - uid: 8072 + components: + - type: Transform + pos: 19.5,-35.5 + parent: 2 - uid: 8943 components: - type: Transform @@ -16701,51 +16718,6 @@ entities: - type: Transform pos: 19.5,-39.5 parent: 2 - - uid: 12733 - components: - - type: Transform - pos: 19.5,-23.5 - parent: 2 - - uid: 13971 - components: - - type: Transform - pos: 19.5,-24.5 - parent: 2 - - uid: 13979 - components: - - type: Transform - pos: 19.5,-25.5 - parent: 2 - - uid: 13980 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 2 - - uid: 13981 - components: - - type: Transform - pos: 20.5,-24.5 - parent: 2 - - uid: 13982 - components: - - type: Transform - pos: 20.5,-25.5 - parent: 2 - - uid: 13983 - components: - - type: Transform - pos: 21.5,-23.5 - parent: 2 - - uid: 13984 - components: - - type: Transform - pos: 21.5,-24.5 - parent: 2 - - uid: 13985 - components: - - type: Transform - pos: 21.5,-25.5 - parent: 2 - uid: 13986 components: - type: Transform @@ -16791,6 +16763,51 @@ entities: - type: Transform pos: 32.5,-45.5 parent: 2 + - uid: 15670 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 2 + - uid: 15671 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 2 + - uid: 15903 + components: + - type: Transform + pos: 21.5,-31.5 + parent: 2 + - uid: 15906 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 2 + - uid: 15988 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 2 + - uid: 16086 + components: + - type: Transform + pos: 22.5,-31.5 + parent: 2 + - uid: 16120 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 2 + - uid: 16193 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 2 + - uid: 16194 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 2 - proto: AtmosFixFreezerMarker entities: - uid: 787 @@ -16855,54 +16872,54 @@ entities: parent: 2 - proto: AtmosFixNitrogenMarker entities: - - uid: 14549 + - uid: 8949 components: - type: Transform - pos: 19.5,-35.5 - parent: 2 - - uid: 14551 - components: - - type: Transform - pos: 20.5,-35.5 - parent: 2 - - uid: 14552 - components: - - type: Transform - pos: 21.5,-35.5 - parent: 2 -- proto: AtmosFixOxygenMarker - entities: - - uid: 2323 - components: - - type: Transform - pos: 19.5,-37.5 - parent: 2 - - uid: 8942 - components: - - type: Transform - pos: 20.5,-37.5 + pos: 40.5,-35.5 parent: 2 - uid: 14548 components: - type: Transform - pos: 21.5,-37.5 + pos: 39.5,-35.5 parent: 2 -- proto: AtmosFixPlasmaMarker - entities: - - uid: 2446 + - uid: 14549 components: - type: Transform - pos: 38.5,-37.5 + pos: 38.5,-35.5 parent: 2 - - uid: 2447 +- proto: AtmosFixOxygenMarker + entities: + - uid: 1209 + components: + - type: Transform + pos: 40.5,-37.5 + parent: 2 + - uid: 1406 components: - type: Transform pos: 39.5,-37.5 parent: 2 - - uid: 2448 + - uid: 9214 components: - type: Transform - pos: 40.5,-37.5 + pos: 38.5,-37.5 + parent: 2 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 5594 + components: + - type: Transform + pos: 20.5,-37.5 + parent: 2 + - uid: 5614 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 2 + - uid: 5975 + components: + - type: Transform + pos: 21.5,-37.5 parent: 2 - proto: Autolathe entities: @@ -17037,12 +17054,6 @@ entities: parent: 2 - proto: BarricadeBlock entities: - - uid: 2998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-26.5 - parent: 2 - uid: 6732 components: - type: Transform @@ -17196,12 +17207,6 @@ entities: - type: Transform pos: -21.5,36.5 parent: 2 - - uid: 16120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,53.5 - parent: 2 - proto: BarSign entities: - uid: 17 @@ -17240,11 +17245,11 @@ entities: parent: 2 - proto: BaseGasCondenser entities: - - uid: 14422 + - uid: 14575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-29.5 + rot: 3.141592653589793 rad + pos: 28.5,-41.5 parent: 2 - proto: Beaker entities: @@ -17263,6 +17268,16 @@ entities: - type: Transform pos: 26.769247,16.215511 parent: 2 + - uid: 15563 + components: + - type: Transform + pos: 1.0790244,-40.204098 + parent: 2 + - uid: 16451 + components: + - type: Transform + pos: 1.2665244,-40.422848 + parent: 2 - proto: Bed entities: - uid: 1784 @@ -17484,11 +17499,6 @@ entities: - type: Transform pos: 33.5,-44.5 parent: 2 - - uid: 2468 - components: - - type: Transform - pos: 20.5,-26.5 - parent: 2 - uid: 2600 components: - type: Transform @@ -17524,6 +17534,11 @@ entities: - type: Transform pos: 52.5,8.5 parent: 2 + - uid: 12655 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 2 - proto: BlockGameArcade entities: - uid: 13997 @@ -17532,6 +17547,41 @@ entities: rot: 3.141592653589793 rad pos: 3.5,15.5 parent: 2 +- proto: BookAtmosAirAlarms + entities: + - uid: 14927 + components: + - type: Transform + pos: 25.312752,-31.56485 + parent: 2 +- proto: BookAtmosDistro + entities: + - uid: 16432 + components: + - type: Transform + pos: 32.93303,-34.9711 + parent: 2 +- proto: BookAtmosVentsMore + entities: + - uid: 16433 + components: + - type: Transform + pos: 33.018867,-29.715763 + parent: 2 +- proto: BookAtmosWaste + entities: + - uid: 16434 + components: + - type: Transform + pos: 26.09174,-39.400047 + parent: 2 +- proto: BookEngineersHandbook + entities: + - uid: 1153 + components: + - type: Transform + pos: 34.340763,-22.34939 + parent: 2 - proto: BookNames entities: - uid: 4116 @@ -17702,7 +17752,7 @@ entities: - uid: 16400 components: - type: Transform - pos: 31.979313,-18.066778 + pos: 32.361473,-17.230019 parent: 2 - proto: BoxBodyBag entities: @@ -17711,6 +17761,18 @@ entities: - type: Transform pos: 40.57258,12.659262 parent: 2 +- proto: BoxDonkSoftBox + entities: + - uid: 155 + components: + - type: Transform + pos: 17.69725,-30.234056 + parent: 2 + - uid: 10439 + components: + - type: Transform + pos: 17.369125,-31.702805 + parent: 2 - proto: BoxFlashbang entities: - uid: 2055 @@ -17992,6 +18054,12 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-4.5 parent: 2 + - uid: 2578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-28.5 + parent: 2 - uid: 2583 components: - type: Transform @@ -18003,6 +18071,11 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-42.5 parent: 2 + - uid: 2912 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 2 - uid: 4209 components: - type: Transform @@ -18054,6 +18127,12 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-25.5 parent: 2 + - uid: 8658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-15.5 + parent: 2 - uid: 9352 components: - type: Transform @@ -18065,12 +18144,6 @@ entities: - type: Transform pos: -38.5,-4.5 parent: 2 - - uid: 12579 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-26.5 - parent: 2 - uid: 13477 components: - type: Transform @@ -18105,12 +18178,6 @@ entities: rot: 3.141592653589793 rad pos: -10.715748,19.456495 parent: 2 - - uid: 14442 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-15.5 - parent: 2 - uid: 14444 components: - type: Transform @@ -18338,6 +18405,11 @@ entities: - type: Transform pos: -13.5,24.5 parent: 2 + - uid: 160 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 2 - uid: 267 components: - type: Transform @@ -18973,11 +19045,21 @@ entities: - type: Transform pos: -8.5,27.5 parent: 2 + - uid: 1096 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 2 - uid: 1119 components: - type: Transform pos: -2.5,28.5 parent: 2 + - uid: 1121 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 2 - uid: 1130 components: - type: Transform @@ -19023,6 +19105,11 @@ entities: - type: Transform pos: 41.5,-33.5 parent: 2 + - uid: 1413 + components: + - type: Transform + pos: 19.5,-31.5 + parent: 2 - uid: 1441 components: - type: Transform @@ -19053,6 +19140,16 @@ entities: - type: Transform pos: 38.5,-33.5 parent: 2 + - uid: 1632 + components: + - type: Transform + pos: 15.5,-21.5 + parent: 2 + - uid: 1636 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 2 - uid: 1674 components: - type: Transform @@ -19078,6 +19175,36 @@ entities: - type: Transform pos: 40.5,-5.5 parent: 2 + - uid: 1723 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 2 + - uid: 1728 + components: + - type: Transform + pos: 20.5,-33.5 + parent: 2 + - uid: 1729 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 2 + - uid: 1736 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 2 + - uid: 1737 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 2 + - uid: 1796 + components: + - type: Transform + pos: 45.5,20.5 + parent: 2 - uid: 1799 components: - type: Transform @@ -19103,6 +19230,11 @@ entities: - type: Transform pos: -3.5,-39.5 parent: 2 + - uid: 1978 + components: + - type: Transform + pos: 43.5,20.5 + parent: 2 - uid: 1988 components: - type: Transform @@ -19113,6 +19245,16 @@ entities: - type: Transform pos: -8.5,-41.5 parent: 2 + - uid: 2191 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 2 + - uid: 2197 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 2 - uid: 2206 components: - type: Transform @@ -19168,6 +19310,26 @@ entities: - type: Transform pos: 33.5,-40.5 parent: 2 + - uid: 2231 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 2 + - uid: 2254 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 2 + - uid: 2255 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 2 + - uid: 2258 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 2 - uid: 2271 components: - type: Transform @@ -19178,6 +19340,11 @@ entities: - type: Transform pos: 28.5,-39.5 parent: 2 + - uid: 2315 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 2 - uid: 2341 components: - type: Transform @@ -19218,6 +19385,11 @@ entities: - type: Transform pos: 23.5,-37.5 parent: 2 + - uid: 2430 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 2 - uid: 2435 components: - type: Transform @@ -19228,11 +19400,31 @@ entities: - type: Transform pos: 22.5,-35.5 parent: 2 + - uid: 2461 + components: + - type: Transform + pos: 22.5,-33.5 + parent: 2 + - uid: 2468 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 2 + - uid: 2484 + components: + - type: Transform + pos: 45.5,18.5 + parent: 2 - uid: 2495 components: - type: Transform pos: 23.5,-35.5 parent: 2 + - uid: 2513 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 2 - uid: 2514 components: - type: Transform @@ -19263,6 +19455,11 @@ entities: - type: Transform pos: 26.5,-2.5 parent: 2 + - uid: 2747 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 - uid: 2753 components: - type: Transform @@ -19308,36 +19505,26 @@ entities: - type: Transform pos: 12.5,-32.5 parent: 2 - - uid: 2830 - components: - - type: Transform - pos: 27.5,-19.5 - parent: 2 - - uid: 2831 - components: - - type: Transform - pos: 26.5,-19.5 - parent: 2 - - uid: 2832 - components: - - type: Transform - pos: 25.5,-19.5 - parent: 2 - - uid: 2839 - components: - - type: Transform - pos: 24.5,-20.5 - parent: 2 - - uid: 2840 - components: - - type: Transform - pos: 24.5,-19.5 - parent: 2 - uid: 2842 components: - type: Transform pos: -31.5,-40.5 parent: 2 + - uid: 2903 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 + - uid: 2905 + components: + - type: Transform + pos: 44.5,20.5 + parent: 2 + - uid: 2906 + components: + - type: Transform + pos: 45.5,19.5 + parent: 2 - uid: 2929 components: - type: Transform @@ -19358,11 +19545,26 @@ entities: - type: Transform pos: 23.5,-38.5 parent: 2 + - uid: 2978 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 2 - uid: 2986 components: - type: Transform pos: -8.5,-40.5 parent: 2 + - uid: 2987 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 2 + - uid: 2988 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 2 - uid: 2995 components: - type: Transform @@ -19373,11 +19575,26 @@ entities: - type: Transform pos: 1.5,-5.5 parent: 2 + - uid: 2997 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 2 + - uid: 2998 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 2 - uid: 3011 components: - type: Transform pos: -10.5,-36.5 parent: 2 + - uid: 3015 + components: + - type: Transform + pos: 19.5,-30.5 + parent: 2 - uid: 3036 components: - type: Transform @@ -19748,6 +19965,11 @@ entities: - type: Transform pos: 40.5,12.5 parent: 2 + - uid: 3559 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 2 - uid: 3578 components: - type: Transform @@ -19758,6 +19980,11 @@ entities: - type: Transform pos: -30.5,-13.5 parent: 2 + - uid: 3733 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 2 - uid: 3811 components: - type: Transform @@ -20688,21 +20915,6 @@ entities: - type: Transform pos: 12.5,-25.5 parent: 2 - - uid: 5545 - components: - - type: Transform - pos: 12.5,-24.5 - parent: 2 - - uid: 5548 - components: - - type: Transform - pos: 12.5,-23.5 - parent: 2 - - uid: 5549 - components: - - type: Transform - pos: 12.5,-22.5 - parent: 2 - uid: 5550 components: - type: Transform @@ -20718,85 +20930,20 @@ entities: - type: Transform pos: 14.5,-21.5 parent: 2 - - uid: 5559 - components: - - type: Transform - pos: 22.5,-19.5 - parent: 2 - - uid: 5560 - components: - - type: Transform - pos: 17.5,-21.5 - parent: 2 - - uid: 5561 - components: - - type: Transform - pos: 18.5,-21.5 - parent: 2 - uid: 5562 components: - type: Transform - pos: 19.5,-21.5 - parent: 2 - - uid: 5563 - components: - - type: Transform - pos: 20.5,-21.5 - parent: 2 - - uid: 5564 - components: - - type: Transform - pos: 21.5,-21.5 - parent: 2 - - uid: 5565 - components: - - type: Transform - pos: 21.5,-20.5 - parent: 2 - - uid: 5566 - components: - - type: Transform - pos: 21.5,-19.5 - parent: 2 - - uid: 5567 - components: - - type: Transform - pos: 21.5,-18.5 - parent: 2 - - uid: 5568 - components: - - type: Transform - pos: 21.5,-17.5 - parent: 2 - - uid: 5569 - components: - - type: Transform - pos: 21.5,-16.5 - parent: 2 - - uid: 5570 - components: - - type: Transform - pos: 21.5,-15.5 + pos: 28.5,-22.5 parent: 2 - uid: 5571 components: - type: Transform - pos: 21.5,-14.5 - parent: 2 - - uid: 5572 - components: - - type: Transform - pos: 21.5,-13.5 + pos: 15.5,-17.5 parent: 2 - uid: 5573 components: - type: Transform - pos: 20.5,-13.5 - parent: 2 - - uid: 5574 - components: - - type: Transform - pos: 19.5,-13.5 + pos: 21.5,-20.5 parent: 2 - uid: 5577 components: @@ -20813,75 +20960,25 @@ entities: - type: Transform pos: 14.5,-27.5 parent: 2 - - uid: 5582 - components: - - type: Transform - pos: 17.5,-22.5 - parent: 2 - - uid: 5583 - components: - - type: Transform - pos: 17.5,-23.5 - parent: 2 - - uid: 5584 - components: - - type: Transform - pos: 17.5,-24.5 - parent: 2 - - uid: 5585 - components: - - type: Transform - pos: 17.5,-26.5 - parent: 2 - uid: 5586 components: - type: Transform - pos: 17.5,-27.5 + pos: 28.5,-21.5 parent: 2 - - uid: 5587 + - uid: 5610 components: - type: Transform - pos: 17.5,-25.5 + pos: 26.5,-26.5 parent: 2 - - uid: 5588 + - uid: 5611 components: - type: Transform - pos: 18.5,-27.5 + pos: 19.5,-29.5 parent: 2 - - uid: 5589 + - uid: 5612 components: - type: Transform - pos: 18.5,-29.5 - parent: 2 - - uid: 5590 - components: - - type: Transform - pos: 18.5,-30.5 - parent: 2 - - uid: 5591 - components: - - type: Transform - pos: 18.5,-31.5 - parent: 2 - - uid: 5592 - components: - - type: Transform - pos: 18.5,-28.5 - parent: 2 - - uid: 5593 - components: - - type: Transform - pos: 19.5,-31.5 - parent: 2 - - uid: 5594 - components: - - type: Transform - pos: 16.5,-27.5 - parent: 2 - - uid: 5595 - components: - - type: Transform - pos: 16.5,-21.5 + pos: 20.5,-21.5 parent: 2 - uid: 5720 components: @@ -21398,51 +21495,56 @@ entities: - type: Transform pos: 9.5,-21.5 parent: 2 + - uid: 5966 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 2 + - uid: 5967 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 2 + - uid: 5968 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 2 + - uid: 5969 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 2 + - uid: 5976 + components: + - type: Transform + pos: 19.5,-27.5 + parent: 2 - uid: 5979 components: - type: Transform - pos: 14.5,-16.5 - parent: 2 - - uid: 5980 - components: - - type: Transform - pos: 15.5,-16.5 - parent: 2 - - uid: 5981 - components: - - type: Transform - pos: 16.5,-16.5 - parent: 2 - - uid: 5982 - components: - - type: Transform - pos: 16.5,-17.5 - parent: 2 - - uid: 5983 - components: - - type: Transform - pos: 16.5,-18.5 + pos: 19.5,-21.5 parent: 2 - uid: 5984 components: - type: Transform - pos: 17.5,-18.5 - parent: 2 - - uid: 5985 - components: - - type: Transform - pos: 18.5,-18.5 + pos: 19.5,-28.5 parent: 2 - uid: 5986 components: - type: Transform - pos: 18.5,-17.5 + pos: 28.5,-17.5 parent: 2 - uid: 5987 components: - type: Transform pos: -3.5,-9.5 parent: 2 + - uid: 6003 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 2 - uid: 6015 components: - type: Transform @@ -21458,6 +21560,11 @@ entities: - type: Transform pos: 5.5,-5.5 parent: 2 + - uid: 6030 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 2 - uid: 6069 components: - type: Transform @@ -21833,6 +21940,11 @@ entities: - type: Transform pos: -21.5,33.5 parent: 2 + - uid: 6826 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 2 - uid: 6839 components: - type: Transform @@ -23323,6 +23435,16 @@ entities: - type: Transform pos: 42.5,-5.5 parent: 2 + - uid: 8107 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 2 + - uid: 8185 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 2 - uid: 8239 components: - type: Transform @@ -23353,6 +23475,11 @@ entities: - type: Transform pos: -6.5,30.5 parent: 2 + - uid: 8250 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 2 - uid: 8251 components: - type: Transform @@ -23383,6 +23510,21 @@ entities: - type: Transform pos: -2.5,20.5 parent: 2 + - uid: 8357 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 2 + - uid: 8497 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 2 + - uid: 8498 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 2 - uid: 8511 components: - type: Transform @@ -23578,21 +23720,6 @@ entities: - type: Transform pos: 44.5,-27.5 parent: 2 - - uid: 8890 - components: - - type: Transform - pos: 23.5,-31.5 - parent: 2 - - uid: 8891 - components: - - type: Transform - pos: 24.5,-31.5 - parent: 2 - - uid: 8892 - components: - - type: Transform - pos: 25.5,-31.5 - parent: 2 - uid: 8893 components: - type: Transform @@ -23813,6 +23940,11 @@ entities: - type: Transform pos: 28.5,-44.5 parent: 2 + - uid: 9003 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 2 - uid: 9057 components: - type: Transform @@ -24133,6 +24265,16 @@ entities: - type: Transform pos: 46.5,3.5 parent: 2 + - uid: 9216 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 2 + - uid: 9219 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 2 - uid: 9220 components: - type: Transform @@ -24168,31 +24310,6 @@ entities: - type: Transform pos: 44.5,12.5 parent: 2 - - uid: 9231 - components: - - type: Transform - pos: 44.5,17.5 - parent: 2 - - uid: 9232 - components: - - type: Transform - pos: 44.5,18.5 - parent: 2 - - uid: 9233 - components: - - type: Transform - pos: 44.5,19.5 - parent: 2 - - uid: 9234 - components: - - type: Transform - pos: 44.5,20.5 - parent: 2 - - uid: 9235 - components: - - type: Transform - pos: 44.5,21.5 - parent: 2 - uid: 9236 components: - type: Transform @@ -24223,21 +24340,6 @@ entities: - type: Transform pos: 49.5,17.5 parent: 2 - - uid: 9242 - components: - - type: Transform - pos: 43.5,19.5 - parent: 2 - - uid: 9243 - components: - - type: Transform - pos: 42.5,19.5 - parent: 2 - - uid: 9244 - components: - - type: Transform - pos: 42.5,18.5 - parent: 2 - uid: 9245 components: - type: Transform @@ -24868,6 +24970,11 @@ entities: - type: Transform pos: 29.5,24.5 parent: 2 + - uid: 9752 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 2 - uid: 9798 components: - type: Transform @@ -26708,6 +26815,26 @@ entities: - type: Transform pos: -17.5,-48.5 parent: 2 + - uid: 10715 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 2 + - uid: 10719 + components: + - type: Transform + pos: 15.5,-19.5 + parent: 2 + - uid: 10760 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 2 + - uid: 10909 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 2 - uid: 10925 components: - type: Transform @@ -26738,6 +26865,11 @@ entities: - type: Transform pos: -44.5,-12.5 parent: 2 + - uid: 11340 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 2 - uid: 11589 components: - type: Transform @@ -26748,6 +26880,11 @@ entities: - type: Transform pos: 36.5,-15.5 parent: 2 + - uid: 12047 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 - uid: 12085 components: - type: Transform @@ -26858,6 +26995,11 @@ entities: - type: Transform pos: 32.5,-15.5 parent: 2 + - uid: 12552 + components: + - type: Transform + pos: 22.5,-31.5 + parent: 2 - uid: 12570 components: - type: Transform @@ -27178,140 +27320,15 @@ entities: - type: Transform pos: 33.5,-27.5 parent: 2 - - uid: 12647 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 2 - - uid: 12648 - components: - - type: Transform - pos: 29.5,-17.5 - parent: 2 - - uid: 12649 - components: - - type: Transform - pos: 28.5,-17.5 - parent: 2 - - uid: 12650 - components: - - type: Transform - pos: 28.5,-18.5 - parent: 2 - - uid: 12651 - components: - - type: Transform - pos: 28.5,-19.5 - parent: 2 - - uid: 12652 - components: - - type: Transform - pos: 28.5,-20.5 - parent: 2 - - uid: 12653 - components: - - type: Transform - pos: 28.5,-21.5 - parent: 2 - - uid: 12654 - components: - - type: Transform - pos: 28.5,-22.5 - parent: 2 - - uid: 12655 - components: - - type: Transform - pos: 28.5,-23.5 - parent: 2 - - uid: 12656 - components: - - type: Transform - pos: 28.5,-24.5 - parent: 2 - - uid: 12657 - components: - - type: Transform - pos: 27.5,-24.5 - parent: 2 - - uid: 12667 - components: - - type: Transform - pos: 26.5,-24.5 - parent: 2 - - uid: 12668 - components: - - type: Transform - pos: 25.5,-24.5 - parent: 2 - - uid: 12669 - components: - - type: Transform - pos: 24.5,-24.5 - parent: 2 - - uid: 12675 - components: - - type: Transform - pos: 24.5,-18.5 - parent: 2 - - uid: 12676 - components: - - type: Transform - pos: 23.5,-24.5 - parent: 2 - - uid: 12677 - components: - - type: Transform - pos: 23.5,-25.5 - parent: 2 - - uid: 12678 - components: - - type: Transform - pos: 23.5,-26.5 - parent: 2 - - uid: 12679 - components: - - type: Transform - pos: 23.5,-27.5 - parent: 2 - - uid: 12680 - components: - - type: Transform - pos: 22.5,-27.5 - parent: 2 - uid: 12681 components: - type: Transform - pos: 21.5,-27.5 - parent: 2 - - uid: 12682 - components: - - type: Transform - pos: 20.5,-27.5 - parent: 2 - - uid: 12683 - components: - - type: Transform - pos: 20.5,-26.5 - parent: 2 - - uid: 12684 - components: - - type: Transform - pos: 20.5,-25.5 - parent: 2 - - uid: 12687 - components: - - type: Transform - pos: 20.5,-24.5 + pos: 26.5,-17.5 parent: 2 - uid: 12688 components: - type: Transform - pos: 27.5,-29.5 - parent: 2 - - uid: 12689 - components: - - type: Transform - pos: 27.5,-28.5 + pos: 25.5,-17.5 parent: 2 - uid: 12690 components: @@ -27328,16 +27345,6 @@ entities: - type: Transform pos: 30.5,-28.5 parent: 2 - - uid: 12693 - components: - - type: Transform - pos: 22.5,-14.5 - parent: 2 - - uid: 12694 - components: - - type: Transform - pos: 23.5,-14.5 - parent: 2 - uid: 12695 components: - type: Transform @@ -27373,6 +27380,16 @@ entities: - type: Transform pos: 20.5,-35.5 parent: 2 + - uid: 12721 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 2 + - uid: 12723 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 - uid: 12859 components: - type: Transform @@ -27698,6 +27715,11 @@ entities: - type: Transform pos: -14.5,-35.5 parent: 2 + - uid: 14915 + components: + - type: Transform + pos: 42.5,-9.5 + parent: 2 - uid: 14926 components: - type: Transform @@ -28243,6 +28265,36 @@ entities: - type: Transform pos: 35.5,-32.5 parent: 2 + - uid: 16445 + components: + - type: Transform + pos: 43.5,18.5 + parent: 2 + - uid: 16446 + components: + - type: Transform + pos: 43.5,19.5 + parent: 2 + - uid: 16447 + components: + - type: Transform + pos: 40.5,0.5 + parent: 2 + - uid: 16448 + components: + - type: Transform + pos: 40.5,-0.5 + parent: 2 + - uid: 16449 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 2 + - uid: 16450 + components: + - type: Transform + pos: 42.5,-0.5 + parent: 2 - proto: CableApcStack entities: - uid: 5136 @@ -28287,7 +28339,7 @@ entities: - uid: 16402 components: - type: Transform - pos: 31.323063,-18.144903 + pos: 32.093784,-17.025135 parent: 2 - proto: CablecuffsBroken entities: @@ -28398,6 +28450,16 @@ entities: - type: Transform pos: 14.5,-58.5 parent: 2 + - uid: 1031 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 + - uid: 1060 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 2 - uid: 1062 components: - type: Transform @@ -28408,11 +28470,6 @@ entities: - type: Transform pos: 32.5,-20.5 parent: 2 - - uid: 1079 - components: - - type: Transform - pos: 27.5,-19.5 - parent: 2 - uid: 1080 components: - type: Transform @@ -28428,11 +28485,6 @@ entities: - type: Transform pos: 38.5,-10.5 parent: 2 - - uid: 1090 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 2 - uid: 1103 components: - type: Transform @@ -28443,16 +28495,16 @@ entities: - type: Transform pos: 33.5,-1.5 parent: 2 + - uid: 1110 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 2 - uid: 1117 components: - type: Transform pos: 36.5,-20.5 parent: 2 - - uid: 1121 - components: - - type: Transform - pos: 26.5,-20.5 - parent: 2 - uid: 1145 components: - type: Transform @@ -28808,10 +28860,20 @@ entities: - type: Transform pos: 53.5,-26.5 parent: 2 - - uid: 1636 + - uid: 1731 components: - type: Transform - pos: 31.5,-19.5 + pos: 15.5,-16.5 + parent: 2 + - uid: 1971 + components: + - type: Transform + pos: 45.5,18.5 + parent: 2 + - uid: 1990 + components: + - type: Transform + pos: 43.5,20.5 parent: 2 - uid: 1993 components: @@ -28833,16 +28895,46 @@ entities: - type: Transform pos: 31.5,38.5 parent: 2 + - uid: 1997 + components: + - type: Transform + pos: 43.5,19.5 + parent: 2 + - uid: 2017 + components: + - type: Transform + pos: 43.5,17.5 + parent: 2 - uid: 2186 components: - type: Transform pos: 32.5,-10.5 parent: 2 + - uid: 2328 + components: + - type: Transform + pos: 15.5,-19.5 + parent: 2 - uid: 2407 components: - type: Transform pos: 10.5,-57.5 parent: 2 + - uid: 2413 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 2 + - uid: 2414 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 2 + - uid: 2483 + components: + - type: Transform + pos: 45.5,20.5 + parent: 2 - uid: 2500 components: - type: Transform @@ -28853,11 +28945,6 @@ entities: - type: Transform pos: 12.5,-34.5 parent: 2 - - uid: 2545 - components: - - type: Transform - pos: 30.5,-19.5 - parent: 2 - uid: 2547 components: - type: Transform @@ -28878,16 +28965,6 @@ entities: - type: Transform pos: 54.5,-24.5 parent: 2 - - uid: 2560 - components: - - type: Transform - pos: 26.5,-21.5 - parent: 2 - - uid: 2561 - components: - - type: Transform - pos: 26.5,-19.5 - parent: 2 - uid: 2565 components: - type: Transform @@ -28923,6 +29000,16 @@ entities: - type: Transform pos: 34.5,-10.5 parent: 2 + - uid: 2638 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 2 + - uid: 2642 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 2 - uid: 2645 components: - type: Transform @@ -28968,6 +29055,11 @@ entities: - type: Transform pos: 33.5,-15.5 parent: 2 + - uid: 2709 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 2 - uid: 2710 components: - type: Transform @@ -28978,11 +29070,6 @@ entities: - type: Transform pos: 52.5,-13.5 parent: 2 - - uid: 2729 - components: - - type: Transform - pos: 26.5,-22.5 - parent: 2 - uid: 2731 components: - type: Transform @@ -29003,11 +29090,6 @@ entities: - type: Transform pos: 12.5,-32.5 parent: 2 - - uid: 2750 - components: - - type: Transform - pos: 28.5,-19.5 - parent: 2 - uid: 2751 components: - type: Transform @@ -29093,6 +29175,11 @@ entities: - type: Transform pos: 13.5,-39.5 parent: 2 + - uid: 2831 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 2 - uid: 2843 components: - type: Transform @@ -29143,65 +29230,10 @@ entities: - type: Transform pos: 11.5,-37.5 parent: 2 - - uid: 2901 + - uid: 2919 components: - type: Transform - pos: 21.5,-13.5 - parent: 2 - - uid: 2902 - components: - - type: Transform - pos: 21.5,-14.5 - parent: 2 - - uid: 2903 - components: - - type: Transform - pos: 21.5,-15.5 - parent: 2 - - uid: 2904 - components: - - type: Transform - pos: 21.5,-16.5 - parent: 2 - - uid: 2905 - components: - - type: Transform - pos: 21.5,-17.5 - parent: 2 - - uid: 2906 - components: - - type: Transform - pos: 21.5,-18.5 - parent: 2 - - uid: 2907 - components: - - type: Transform - pos: 21.5,-19.5 - parent: 2 - - uid: 2908 - components: - - type: Transform - pos: 21.5,-20.5 - parent: 2 - - uid: 2909 - components: - - type: Transform - pos: 21.5,-21.5 - parent: 2 - - uid: 2910 - components: - - type: Transform - pos: 20.5,-21.5 - parent: 2 - - uid: 2911 - components: - - type: Transform - pos: 19.5,-21.5 - parent: 2 - - uid: 2912 - components: - - type: Transform - pos: 18.5,-21.5 + pos: 45.5,19.5 parent: 2 - uid: 2936 components: @@ -29233,51 +29265,6 @@ entities: - type: Transform pos: -20.5,-30.5 parent: 2 - - uid: 3012 - components: - - type: Transform - pos: 17.5,-21.5 - parent: 2 - - uid: 3014 - components: - - type: Transform - pos: 15.5,-27.5 - parent: 2 - - uid: 3015 - components: - - type: Transform - pos: 16.5,-27.5 - parent: 2 - - uid: 3016 - components: - - type: Transform - pos: 17.5,-27.5 - parent: 2 - - uid: 3017 - components: - - type: Transform - pos: 17.5,-26.5 - parent: 2 - - uid: 3018 - components: - - type: Transform - pos: 17.5,-25.5 - parent: 2 - - uid: 3019 - components: - - type: Transform - pos: 17.5,-24.5 - parent: 2 - - uid: 3020 - components: - - type: Transform - pos: 17.5,-22.5 - parent: 2 - - uid: 3021 - components: - - type: Transform - pos: 17.5,-23.5 - parent: 2 - uid: 3040 components: - type: Transform @@ -29443,6 +29430,11 @@ entities: - type: Transform pos: 35.5,33.5 parent: 2 + - uid: 3616 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 2 - uid: 3665 components: - type: Transform @@ -29458,6 +29450,21 @@ entities: - type: Transform pos: 33.5,-12.5 parent: 2 + - uid: 3856 + components: + - type: Transform + pos: 15.5,-21.5 + parent: 2 + - uid: 3904 + components: + - type: Transform + pos: 42.5,17.5 + parent: 2 + - uid: 3905 + components: + - type: Transform + pos: 43.5,18.5 + parent: 2 - uid: 3907 components: - type: Transform @@ -29508,6 +29515,16 @@ entities: - type: Transform pos: 9.5,-12.5 parent: 2 + - uid: 4597 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 2 + - uid: 4599 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 2 - uid: 4749 components: - type: Transform @@ -30508,31 +30525,6 @@ entities: - type: Transform pos: 12.5,-6.5 parent: 2 - - uid: 6825 - components: - - type: Transform - pos: 20.5,-13.5 - parent: 2 - - uid: 6826 - components: - - type: Transform - pos: 19.5,-13.5 - parent: 2 - - uid: 6827 - components: - - type: Transform - pos: 18.5,-13.5 - parent: 2 - - uid: 6828 - components: - - type: Transform - pos: 17.5,-13.5 - parent: 2 - - uid: 6829 - components: - - type: Transform - pos: 16.5,-13.5 - parent: 2 - uid: 6830 components: - type: Transform @@ -31013,6 +31005,11 @@ entities: - type: Transform pos: 34.5,36.5 parent: 2 + - uid: 7812 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 2 - uid: 7863 components: - type: Transform @@ -31068,6 +31065,11 @@ entities: - type: Transform pos: 35.5,-9.5 parent: 2 + - uid: 7902 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 2 - uid: 8047 components: - type: Transform @@ -31123,6 +31125,11 @@ entities: - type: Transform pos: 35.5,53.5 parent: 2 + - uid: 8325 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 2 - uid: 8374 components: - type: Transform @@ -31203,6 +31210,16 @@ entities: - type: Transform pos: 37.5,-10.5 parent: 2 + - uid: 9204 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 2 + - uid: 9233 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 2 - uid: 9406 components: - type: Transform @@ -31543,20 +31560,10 @@ entities: - type: Transform pos: 44.5,21.5 parent: 2 - - uid: 9475 - components: - - type: Transform - pos: 44.5,19.5 - parent: 2 - uid: 9476 components: - type: Transform - pos: 44.5,18.5 - parent: 2 - - uid: 9477 - components: - - type: Transform - pos: 44.5,17.5 + pos: 31.5,-22.5 parent: 2 - uid: 9482 components: @@ -31893,6 +31900,11 @@ entities: - type: Transform pos: -18.5,-38.5 parent: 2 + - uid: 9750 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 2 - uid: 9973 components: - type: Transform @@ -31948,6 +31960,21 @@ entities: - type: Transform pos: -6.5,-41.5 parent: 2 + - uid: 12625 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 2 + - uid: 12651 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 2 + - uid: 12774 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 2 - uid: 12775 components: - type: Transform @@ -31958,26 +31985,6 @@ entities: - type: Transform pos: 12.5,-59.5 parent: 2 - - uid: 12808 - components: - - type: Transform - pos: 23.5,-14.5 - parent: 2 - - uid: 12809 - components: - - type: Transform - pos: 24.5,-14.5 - parent: 2 - - uid: 12810 - components: - - type: Transform - pos: 24.5,-15.5 - parent: 2 - - uid: 12811 - components: - - type: Transform - pos: 22.5,-14.5 - parent: 2 - uid: 13333 components: - type: Transform @@ -32018,6 +32025,16 @@ entities: - type: Transform pos: 32.5,-13.5 parent: 2 + - uid: 14405 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 2 + - uid: 14422 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 2 - uid: 14503 components: - type: Transform @@ -32232,6 +32249,11 @@ entities: parent: 2 - proto: CableHVStack10 entities: + - uid: 167 + components: + - type: Transform + pos: 25.877134,-23.859426 + parent: 2 - uid: 8285 components: - type: Transform @@ -32779,6 +32801,11 @@ entities: - type: Transform pos: 17.5,-11.5 parent: 2 + - uid: 1061 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 2 - uid: 1142 components: - type: Transform @@ -32864,11 +32891,6 @@ entities: - type: Transform pos: 34.5,-20.5 parent: 2 - - uid: 1382 - components: - - type: Transform - pos: 54.5,-27.5 - parent: 2 - uid: 1383 components: - type: Transform @@ -32929,31 +32951,11 @@ entities: - type: Transform pos: 50.5,-26.5 parent: 2 - - uid: 1432 - components: - - type: Transform - pos: 29.5,-17.5 - parent: 2 - - uid: 1433 - components: - - type: Transform - pos: 29.5,-18.5 - parent: 2 - uid: 1435 components: - type: Transform pos: 56.5,-26.5 parent: 2 - - uid: 1437 - components: - - type: Transform - pos: 30.5,-18.5 - parent: 2 - - uid: 1438 - components: - - type: Transform - pos: 31.5,-18.5 - parent: 2 - uid: 1440 components: - type: Transform @@ -33074,6 +33076,16 @@ entities: - type: Transform pos: 40.5,-4.5 parent: 2 + - uid: 1722 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 2 + - uid: 1735 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 2 - uid: 1769 components: - type: Transform @@ -33084,6 +33096,11 @@ entities: - type: Transform pos: 35.5,-32.5 parent: 2 + - uid: 1829 + components: + - type: Transform + pos: 45.5,20.5 + parent: 2 - uid: 2011 components: - type: Transform @@ -33159,6 +33176,16 @@ entities: - type: Transform pos: 28.5,-30.5 parent: 2 + - uid: 2465 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 2 + - uid: 2471 + components: + - type: Transform + pos: 45.5,18.5 + parent: 2 - uid: 2516 components: - type: Transform @@ -33214,6 +33241,11 @@ entities: - type: Transform pos: 32.5,-20.5 parent: 2 + - uid: 2694 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 2 - uid: 2702 components: - type: Transform @@ -33234,11 +33266,6 @@ entities: - type: Transform pos: 46.5,-14.5 parent: 2 - - uid: 2747 - components: - - type: Transform - pos: 24.5,-15.5 - parent: 2 - uid: 2790 components: - type: Transform @@ -33264,20 +33291,90 @@ entities: - type: Transform pos: 6.5,-28.5 parent: 2 + - uid: 2839 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 2 + - uid: 2887 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 2 + - uid: 2890 + components: + - type: Transform + pos: 26.5,-25.5 + parent: 2 - uid: 2896 components: - type: Transform pos: 38.5,-3.5 parent: 2 + - uid: 2901 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 2 + - uid: 2902 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 2 + - uid: 2904 + components: + - type: Transform + pos: 45.5,19.5 + parent: 2 + - uid: 2931 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 2933 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 2945 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - uid: 2946 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 2 + - uid: 2948 + components: + - type: Transform + pos: 37.5,8.5 + parent: 2 + - uid: 2961 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2 + - uid: 2962 + components: + - type: Transform + pos: 35.5,8.5 + parent: 2 + - uid: 2972 + components: + - type: Transform + pos: 26.5,-30.5 + parent: 2 - uid: 2982 components: - type: Transform pos: 53.5,-27.5 parent: 2 - - uid: 2983 + - uid: 2984 components: - type: Transform - pos: 52.5,-27.5 + pos: 54.5,-27.5 parent: 2 - uid: 2985 components: @@ -33289,6 +33386,11 @@ entities: - type: Transform pos: -15.5,-33.5 parent: 2 + - uid: 3014 + components: + - type: Transform + pos: 54.5,-13.5 + parent: 2 - uid: 3045 components: - type: Transform @@ -33454,11 +33556,6 @@ entities: - type: Transform pos: 55.5,-13.5 parent: 2 - - uid: 3559 - components: - - type: Transform - pos: 45.5,12.5 - parent: 2 - uid: 3580 components: - type: Transform @@ -33489,21 +33586,16 @@ entities: - type: Transform pos: 35.5,-13.5 parent: 2 - - uid: 3904 + - uid: 3956 components: - type: Transform - pos: 24.5,-17.5 + pos: 26.5,-27.5 parent: 2 - uid: 3987 components: - type: Transform pos: 37.5,-3.5 parent: 2 - - uid: 4032 - components: - - type: Transform - pos: 54.5,-13.5 - parent: 2 - uid: 4255 components: - type: Transform @@ -34024,16 +34116,36 @@ entities: - type: Transform pos: -43.5,-13.5 parent: 2 + - uid: 5545 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 2 - uid: 5558 components: - type: Transform pos: 9.5,-30.5 parent: 2 + - uid: 5559 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 2 + - uid: 5561 + components: + - type: Transform + pos: 31.5,-22.5 + parent: 2 - uid: 5580 components: - type: Transform pos: 9.5,-31.5 parent: 2 + - uid: 5581 + components: + - type: Transform + pos: 57.5,-27.5 + parent: 2 - uid: 5596 components: - type: Transform @@ -34059,46 +34171,6 @@ entities: - type: Transform pos: 7.5,-27.5 parent: 2 - - uid: 5607 - components: - - type: Transform - pos: 21.5,-13.5 - parent: 2 - - uid: 5608 - components: - - type: Transform - pos: 21.5,-14.5 - parent: 2 - - uid: 5609 - components: - - type: Transform - pos: 21.5,-15.5 - parent: 2 - - uid: 5610 - components: - - type: Transform - pos: 21.5,-16.5 - parent: 2 - - uid: 5611 - components: - - type: Transform - pos: 21.5,-17.5 - parent: 2 - - uid: 5612 - components: - - type: Transform - pos: 21.5,-18.5 - parent: 2 - - uid: 5613 - components: - - type: Transform - pos: 21.5,-19.5 - parent: 2 - - uid: 5614 - components: - - type: Transform - pos: 22.5,-19.5 - parent: 2 - uid: 5626 components: - type: Transform @@ -34714,66 +34786,6 @@ entities: - type: Transform pos: 10.5,-13.5 parent: 2 - - uid: 5967 - components: - - type: Transform - pos: 20.5,-18.5 - parent: 2 - - uid: 5968 - components: - - type: Transform - pos: 19.5,-18.5 - parent: 2 - - uid: 5969 - components: - - type: Transform - pos: 18.5,-18.5 - parent: 2 - - uid: 5970 - components: - - type: Transform - pos: 17.5,-18.5 - parent: 2 - - uid: 5971 - components: - - type: Transform - pos: 16.5,-18.5 - parent: 2 - - uid: 5972 - components: - - type: Transform - pos: 16.5,-17.5 - parent: 2 - - uid: 5973 - components: - - type: Transform - pos: 16.5,-16.5 - parent: 2 - - uid: 5974 - components: - - type: Transform - pos: 15.5,-16.5 - parent: 2 - - uid: 5975 - components: - - type: Transform - pos: 14.5,-16.5 - parent: 2 - - uid: 5976 - components: - - type: Transform - pos: 14.5,-18.5 - parent: 2 - - uid: 5977 - components: - - type: Transform - pos: 15.5,-18.5 - parent: 2 - - uid: 5978 - components: - - type: Transform - pos: 14.5,-17.5 - parent: 2 - uid: 5988 components: - type: Transform @@ -35949,11 +35961,6 @@ entities: - type: Transform pos: 48.5,-0.5 parent: 2 - - uid: 7711 - components: - - type: Transform - pos: 22.5,-17.5 - parent: 2 - uid: 7835 components: - type: Transform @@ -35999,15 +36006,10 @@ entities: - type: Transform pos: 19.5,38.5 parent: 2 - - uid: 7943 + - uid: 7901 components: - type: Transform - pos: 24.5,-14.5 - parent: 2 - - uid: 7952 - components: - - type: Transform - pos: 23.5,-14.5 + pos: 20.5,-13.5 parent: 2 - uid: 8070 components: @@ -36019,16 +36021,6 @@ entities: - type: Transform pos: 57.5,-13.5 parent: 2 - - uid: 8185 - components: - - type: Transform - pos: 22.5,-14.5 - parent: 2 - - uid: 8235 - components: - - type: Transform - pos: 23.5,-17.5 - parent: 2 - uid: 8237 components: - type: Transform @@ -36054,6 +36046,11 @@ entities: - type: Transform pos: 41.5,12.5 parent: 2 + - uid: 8361 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 2 - uid: 8507 components: - type: Transform @@ -36064,11 +36061,6 @@ entities: - type: Transform pos: 45.5,14.5 parent: 2 - - uid: 8509 - components: - - type: Transform - pos: 45.5,13.5 - parent: 2 - uid: 8510 components: - type: Transform @@ -36204,26 +36196,6 @@ entities: - type: Transform pos: 16.5,-13.5 parent: 2 - - uid: 8655 - components: - - type: Transform - pos: 17.5,-13.5 - parent: 2 - - uid: 8656 - components: - - type: Transform - pos: 18.5,-13.5 - parent: 2 - - uid: 8657 - components: - - type: Transform - pos: 19.5,-13.5 - parent: 2 - - uid: 8658 - components: - - type: Transform - pos: 20.5,-13.5 - parent: 2 - uid: 8678 components: - type: Transform @@ -36294,21 +36266,6 @@ entities: - type: Transform pos: 40.5,4.5 parent: 2 - - uid: 9073 - components: - - type: Transform - pos: 40.5,5.5 - parent: 2 - - uid: 9074 - components: - - type: Transform - pos: 40.5,7.5 - parent: 2 - - uid: 9075 - components: - - type: Transform - pos: 40.5,6.5 - parent: 2 - uid: 9076 components: - type: Transform @@ -36489,70 +36446,20 @@ entities: - type: Transform pos: 45.5,21.5 parent: 2 - - uid: 9203 - components: - - type: Transform - pos: 44.5,20.5 - parent: 2 - - uid: 9204 - components: - - type: Transform - pos: 44.5,19.5 - parent: 2 - - uid: 9205 - components: - - type: Transform - pos: 44.5,21.5 - parent: 2 - uid: 9206 components: - type: Transform - pos: 44.5,17.5 + pos: 43.5,14.5 parent: 2 - - uid: 9211 + - uid: 9243 components: - type: Transform - pos: 44.5,12.5 + pos: 42.5,14.5 parent: 2 - - uid: 9212 + - uid: 9244 components: - type: Transform - pos: 44.5,11.5 - parent: 2 - - uid: 9213 - components: - - type: Transform - pos: 44.5,10.5 - parent: 2 - - uid: 9214 - components: - - type: Transform - pos: 44.5,9.5 - parent: 2 - - uid: 9215 - components: - - type: Transform - pos: 44.5,8.5 - parent: 2 - - uid: 9216 - components: - - type: Transform - pos: 44.5,7.5 - parent: 2 - - uid: 9217 - components: - - type: Transform - pos: 44.5,6.5 - parent: 2 - - uid: 9218 - components: - - type: Transform - pos: 44.5,5.5 - parent: 2 - - uid: 9219 - components: - - type: Transform - pos: 44.5,18.5 + pos: 19.5,-13.5 parent: 2 - uid: 9282 components: @@ -37044,51 +36951,16 @@ entities: - type: Transform pos: 31.5,8.5 parent: 2 - - uid: 9750 - components: - - type: Transform - pos: 33.5,8.5 - parent: 2 - - uid: 9751 - components: - - type: Transform - pos: 34.5,8.5 - parent: 2 - - uid: 9752 - components: - - type: Transform - pos: 35.5,8.5 - parent: 2 - uid: 9753 components: - type: Transform pos: 36.5,8.5 parent: 2 - - uid: 9754 - components: - - type: Transform - pos: 32.5,8.5 - parent: 2 - - uid: 9755 - components: - - type: Transform - pos: 38.5,8.5 - parent: 2 - uid: 9756 components: - type: Transform pos: 39.5,8.5 parent: 2 - - uid: 9757 - components: - - type: Transform - pos: 40.5,8.5 - parent: 2 - - uid: 9758 - components: - - type: Transform - pos: 37.5,8.5 - parent: 2 - uid: 9759 components: - type: Transform @@ -37979,11 +37851,6 @@ entities: - type: Transform pos: 12.5,17.5 parent: 2 - - uid: 10719 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 2 - uid: 10754 components: - type: Transform @@ -37994,70 +37861,10 @@ entities: - type: Transform pos: 27.5,-30.5 parent: 2 - - uid: 10758 + - uid: 10766 components: - type: Transform - pos: 27.5,-29.5 - parent: 2 - - uid: 10801 - components: - - type: Transform - pos: 27.5,-28.5 - parent: 2 - - uid: 10802 - components: - - type: Transform - pos: 27.5,-27.5 - parent: 2 - - uid: 10855 - components: - - type: Transform - pos: 27.5,-26.5 - parent: 2 - - uid: 10856 - components: - - type: Transform - pos: 27.5,-25.5 - parent: 2 - - uid: 10908 - components: - - type: Transform - pos: 28.5,-25.5 - parent: 2 - - uid: 10909 - components: - - type: Transform - pos: 29.5,-25.5 - parent: 2 - - uid: 10910 - components: - - type: Transform - pos: 29.5,-24.5 - parent: 2 - - uid: 10911 - components: - - type: Transform - pos: 29.5,-23.5 - parent: 2 - - uid: 10912 - components: - - type: Transform - pos: 29.5,-22.5 - parent: 2 - - uid: 10913 - components: - - type: Transform - pos: 29.5,-21.5 - parent: 2 - - uid: 10914 - components: - - type: Transform - pos: 29.5,-20.5 - parent: 2 - - uid: 10916 - components: - - type: Transform - pos: 29.5,-19.5 + pos: 51.5,-27.5 parent: 2 - uid: 10917 components: @@ -38309,6 +38116,16 @@ entities: - type: Transform pos: 31.5,-2.5 parent: 2 + - uid: 12550 + components: + - type: Transform + pos: 44.5,14.5 + parent: 2 + - uid: 12559 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 2 - uid: 12567 components: - type: Transform @@ -38324,11 +38141,66 @@ entities: - type: Transform pos: 32.5,-4.5 parent: 2 + - uid: 12609 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 2 - uid: 12626 components: - type: Transform pos: 35.5,-31.5 parent: 2 + - uid: 12653 + components: + - type: Transform + pos: 27.5,-24.5 + parent: 2 + - uid: 12654 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 2 + - uid: 12668 + components: + - type: Transform + pos: 26.5,-24.5 + parent: 2 + - uid: 12675 + components: + - type: Transform + pos: 26.5,-20.5 + parent: 2 + - uid: 12677 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 2 + - uid: 12683 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 2 + - uid: 12693 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 2 + - uid: 12744 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 2 + - uid: 12770 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 2 + - uid: 12809 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 2 - uid: 12860 components: - type: Transform @@ -38339,6 +38211,11 @@ entities: - type: Transform pos: -14.5,-34.5 parent: 2 + - uid: 12941 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 2 - uid: 13417 components: - type: Transform @@ -38589,6 +38466,26 @@ entities: - type: Transform pos: 33.5,-30.5 parent: 2 + - uid: 14611 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - uid: 14664 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 2 + - uid: 14666 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 2 + - uid: 14686 + components: + - type: Transform + pos: 33.5,0.5 + parent: 2 - uid: 14736 components: - type: Transform @@ -38939,36 +38836,6 @@ entities: - type: Transform pos: 38.5,-18.5 parent: 2 - - uid: 15666 - components: - - type: Transform - pos: 24.5,-18.5 - parent: 2 - - uid: 15667 - components: - - type: Transform - pos: 24.5,-19.5 - parent: 2 - - uid: 15668 - components: - - type: Transform - pos: 25.5,-19.5 - parent: 2 - - uid: 15669 - components: - - type: Transform - pos: 26.5,-19.5 - parent: 2 - - uid: 15670 - components: - - type: Transform - pos: 27.5,-19.5 - parent: 2 - - uid: 15671 - components: - - type: Transform - pos: 28.5,-19.5 - parent: 2 - uid: 15771 components: - type: Transform @@ -39099,6 +38966,61 @@ entities: - type: Transform pos: 38.5,-13.5 parent: 2 + - uid: 16437 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 2 + - uid: 16438 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 2 + - uid: 16439 + components: + - type: Transform + pos: 44.5,20.5 + parent: 2 + - uid: 16440 + components: + - type: Transform + pos: 43.5,20.5 + parent: 2 + - uid: 16441 + components: + - type: Transform + pos: 43.5,19.5 + parent: 2 + - uid: 16442 + components: + - type: Transform + pos: 43.5,18.5 + parent: 2 + - uid: 16443 + components: + - type: Transform + pos: 43.5,17.5 + parent: 2 + - uid: 16444 + components: + - type: Transform + pos: 42.5,17.5 + parent: 2 + - uid: 16455 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 2 + - uid: 16456 + components: + - type: Transform + pos: 3.5,-39.5 + parent: 2 + - uid: 16457 + components: + - type: Transform + pos: 4.5,-39.5 + parent: 2 - proto: CableMVStack entities: - uid: 5135 @@ -39212,6 +39134,13 @@ entities: - type: Transform pos: -33.3829,-20.528595 parent: 2 +- proto: CannabisSeeds + entities: + - uid: 15668 + components: + - type: Transform + pos: -13.084935,-44.300785 + parent: 2 - proto: CapacitorStockPart entities: - uid: 16401 @@ -39240,10 +39169,15 @@ entities: - type: Transform pos: 40.5,-29.5 parent: 2 - - uid: 14218 + - uid: 2549 components: - type: Transform - pos: 19.5,-39.5 + pos: 16.5,-25.5 + parent: 2 + - uid: 14407 + components: + - type: Transform + pos: 40.5,-39.5 parent: 2 - proto: Carpet entities: @@ -39413,6 +39347,12 @@ entities: - type: Transform pos: 41.5,-2.5 parent: 2 + - uid: 163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-20.5 + parent: 2 - uid: 171 components: - type: Transform @@ -39615,18 +39555,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-37.5 parent: 2 - - uid: 1132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-21.5 - parent: 2 - - uid: 1133 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-22.5 - parent: 2 - uid: 1134 components: - type: Transform @@ -39639,12 +39567,6 @@ entities: rot: 3.141592653589793 rad pos: 41.5,-10.5 parent: 2 - - uid: 1139 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-20.5 - parent: 2 - uid: 1154 components: - type: Transform @@ -39777,6 +39699,11 @@ entities: - type: Transform pos: 33.5,-6.5 parent: 2 + - uid: 1433 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 2 - uid: 1442 components: - type: Transform @@ -39822,12 +39749,34 @@ entities: - type: Transform pos: -22.5,41.5 parent: 2 + - uid: 1716 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 2 + - uid: 1717 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 - uid: 2006 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-10.5 parent: 2 + - uid: 2100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-23.5 + parent: 2 + - uid: 2130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 2 - uid: 2331 components: - type: Transform @@ -39864,11 +39813,50 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,-39.5 parent: 2 + - uid: 2343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-23.5 + parent: 2 - uid: 2369 components: - type: Transform pos: 16.5,-55.5 parent: 2 + - uid: 2380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-24.5 + parent: 2 + - uid: 2437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-23.5 + parent: 2 + - uid: 2438 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 2 + - uid: 2439 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 2 + - uid: 2446 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 2 + - uid: 2456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-20.5 + parent: 2 - uid: 2522 components: - type: Transform @@ -39889,6 +39877,11 @@ entities: - type: Transform pos: -25.5,-13.5 parent: 2 + - uid: 2561 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 - uid: 2566 components: - type: Transform @@ -40005,6 +39998,26 @@ entities: - type: Transform pos: 16.5,-50.5 parent: 2 + - uid: 2907 + components: + - type: Transform + pos: 19.5,-31.5 + parent: 2 + - uid: 2908 + components: + - type: Transform + pos: 19.5,-30.5 + parent: 2 + - uid: 2915 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 2 + - uid: 2918 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 2 - uid: 2950 components: - type: Transform @@ -40077,11 +40090,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-9.5 parent: 2 - - uid: 5067 - components: - - type: Transform - pos: 15.5,-27.5 - parent: 2 - uid: 5477 components: - type: Transform @@ -40129,6 +40137,12 @@ entities: - type: Transform pos: 41.5,-11.5 parent: 2 + - uid: 5946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-30.5 + parent: 2 - uid: 6040 components: - type: Transform @@ -40170,16 +40184,23 @@ entities: - type: Transform pos: -25.5,-12.5 parent: 2 + - uid: 7944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-30.5 + parent: 2 + - uid: 8104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-26.5 + parent: 2 - uid: 8112 components: - type: Transform pos: 14.5,-54.5 parent: 2 - - uid: 8250 - components: - - type: Transform - pos: 26.5,-27.5 - parent: 2 - uid: 8288 components: - type: Transform @@ -40200,11 +40221,6 @@ entities: - type: Transform pos: 31.5,-11.5 parent: 2 - - uid: 8292 - components: - - type: Transform - pos: 27.5,-21.5 - parent: 2 - uid: 8293 components: - type: Transform @@ -40220,11 +40236,6 @@ entities: - type: Transform pos: 31.5,-8.5 parent: 2 - - uid: 8322 - components: - - type: Transform - pos: 25.5,-21.5 - parent: 2 - uid: 8323 components: - type: Transform @@ -40290,26 +40301,6 @@ entities: - type: Transform pos: 22.5,-11.5 parent: 2 - - uid: 8355 - components: - - type: Transform - pos: 25.5,-29.5 - parent: 2 - - uid: 8356 - components: - - type: Transform - pos: 25.5,-28.5 - parent: 2 - - uid: 8357 - components: - - type: Transform - pos: 25.5,-27.5 - parent: 2 - - uid: 8358 - components: - - type: Transform - pos: 26.5,-29.5 - parent: 2 - uid: 8359 components: - type: Transform @@ -40320,11 +40311,6 @@ entities: - type: Transform pos: 42.5,-31.5 parent: 2 - - uid: 8361 - components: - - type: Transform - pos: 26.5,-28.5 - parent: 2 - uid: 8362 components: - type: Transform @@ -40645,6 +40631,11 @@ entities: - type: Transform pos: 32.5,31.5 parent: 2 + - uid: 9007 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 2 - uid: 9122 components: - type: Transform @@ -40655,6 +40646,24 @@ entities: - type: Transform pos: -2.5,24.5 parent: 2 + - uid: 9203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-13.5 + parent: 2 + - uid: 9212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-25.5 + parent: 2 + - uid: 9215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-13.5 + parent: 2 - uid: 10426 components: - type: Transform @@ -41687,24 +41696,6 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,22.5 parent: 2 - - uid: 10713 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,17.5 - parent: 2 - - uid: 10714 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,18.5 - parent: 2 - - uid: 10715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,19.5 - parent: 2 - uid: 10720 components: - type: Transform @@ -41909,47 +41900,10 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,1.5 parent: 2 - - uid: 10759 + - uid: 10758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-13.5 - parent: 2 - - uid: 10760 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-14.5 - parent: 2 - - uid: 10761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-15.5 - parent: 2 - - uid: 10763 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-21.5 - parent: 2 - - uid: 10764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-21.5 - parent: 2 - - uid: 10765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-21.5 - parent: 2 - - uid: 10766 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-21.5 + pos: 29.5,-22.5 parent: 2 - uid: 10767 components: @@ -41969,30 +41923,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-27.5 parent: 2 - - uid: 10771 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-28.5 - parent: 2 - - uid: 10772 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-29.5 - parent: 2 - - uid: 10773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-30.5 - parent: 2 - - uid: 10774 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-31.5 - parent: 2 - uid: 10778 components: - type: Transform @@ -42107,18 +42037,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-25.5 parent: 2 - - uid: 10797 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-25.5 - parent: 2 - - uid: 10798 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-24.5 - parent: 2 - uid: 10807 components: - type: Transform @@ -42200,6 +42118,22 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-37.5 parent: 2 + - uid: 12551 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 2 + - uid: 12657 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 2 + - uid: 12667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-13.5 + parent: 2 - uid: 12672 components: - type: Transform @@ -43315,11 +43249,11 @@ entities: rot: 3.141592653589793 rad pos: 19.551804,39.69655 parent: 2 - - uid: 8940 + - uid: 9008 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.254124,-38.51852 + rot: 1.5707963267948966 rad + pos: 27.653366,-32.382816 parent: 2 - uid: 9609 components: @@ -43332,11 +43266,11 @@ entities: rot: 1.5707963267948966 rad pos: -32.44567,-11.355937 parent: 2 - - uid: 14407 + - uid: 14551 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.445717,-37.582207 + rot: 3.141592653589793 rad + pos: 28.622116,-33.257816 parent: 2 - uid: 16346 components: @@ -43904,6 +43838,13 @@ entities: rot: 3.141592653589793 rad pos: -33.52696,-26.57575 parent: 2 +- proto: CheapLighter + entities: + - uid: 15363 + components: + - type: Transform + pos: 23.159512,-15.37759 + parent: 2 - proto: CheapRollerBedSpawnFolded entities: - uid: 4101 @@ -44018,6 +43959,26 @@ entities: - type: Transform pos: 3.3094797,-0.10309982 parent: 2 + - uid: 15500 + components: + - type: Transform + pos: 24.347012,-15.736965 + parent: 2 + - uid: 15508 + components: + - type: Transform + pos: 23.487637,-15.53384 + parent: 2 + - uid: 15512 + components: + - type: Transform + pos: 23.862637,-15.19009 + parent: 2 + - uid: 15660 + components: + - type: Transform + pos: 24.550137,-15.25259 + parent: 2 - uid: 16382 components: - type: Transform @@ -44053,17 +44014,17 @@ entities: - uid: 14409 components: - type: Transform - pos: 32.441643,-37.480892 + pos: 28.465866,-32.445316 parent: 2 - uid: 14410 components: - type: Transform - pos: 33.488518,-38.059017 + pos: 28.153366,-33.11719 parent: 2 - uid: 14412 components: - type: Transform - pos: 33.207268,-38.246517 + pos: 28.028366,-32.945316 parent: 2 - uid: 14518 components: @@ -44075,6 +44036,41 @@ entities: - type: Transform pos: -4.4094725,-6.401611 parent: 2 + - uid: 15661 + components: + - type: Transform + pos: 23.378262,-15.736965 + parent: 2 + - uid: 15662 + components: + - type: Transform + pos: 23.190762,-15.393215 + parent: 2 + - uid: 15663 + components: + - type: Transform + pos: 23.987637,-15.06509 + parent: 2 + - uid: 15664 + components: + - type: Transform + pos: 24.112637,-15.768215 + parent: 2 + - uid: 15665 + components: + - type: Transform + pos: 24.706387,-15.455715 + parent: 2 + - uid: 15666 + components: + - type: Transform + pos: 23.831387,-15.393215 + parent: 2 + - uid: 15667 + components: + - type: Transform + pos: 24.034512,-14.97134 + parent: 2 - uid: 16383 components: - type: Transform @@ -44104,7 +44100,40 @@ entities: - uid: 14721 components: - type: Transform - pos: 48.574272,6.341091 + pos: 50.604645,7.3318005 + parent: 2 + - uid: 15267 + components: + - type: Transform + pos: 24.503262,-15.236965 + parent: 2 +- proto: CigCartonBlue + entities: + - uid: 15252 + components: + - type: Transform + pos: 23.550137,-15.268215 + parent: 2 +- proto: CigCartonGreen + entities: + - uid: 15273 + components: + - type: Transform + pos: 24.253262,-15.611965 + parent: 2 +- proto: CigCartonMixed + entities: + - uid: 15276 + components: + - type: Transform + pos: 24.065762,-15.37759 + parent: 2 +- proto: CigCartonRed + entities: + - uid: 15266 + components: + - type: Transform + pos: 23.487637,-15.65884 parent: 2 - proto: CircuitImprinter entities: @@ -44172,16 +44201,6 @@ entities: - type: Transform pos: 0.5,-29.5 parent: 2 - - uid: 2961 - components: - - type: Transform - pos: 18.5,-14.5 - parent: 2 - - uid: 2962 - components: - - type: Transform - pos: 17.5,-31.5 - parent: 2 - uid: 3067 components: - type: Transform @@ -44315,6 +44334,11 @@ entities: - type: Transform pos: 47.5,28.5 parent: 2 + - uid: 13544 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 2 - uid: 13631 components: - type: Transform @@ -44357,11 +44381,6 @@ entities: - type: Transform pos: -0.5,14.5 parent: 2 - - uid: 2963 - components: - - type: Transform - pos: 17.5,-30.5 - parent: 2 - uid: 2964 components: - type: Transform @@ -44409,7 +44428,7 @@ entities: - type: Transform pos: 10.5,-5.5 parent: 2 - - uid: 1157 + - uid: 1079 components: - type: Transform pos: 37.5,-31.5 @@ -44429,16 +44448,6 @@ entities: - type: Transform pos: 6.5,-22.5 parent: 2 - - uid: 2967 - components: - - type: Transform - pos: 17.5,-29.5 - parent: 2 - - uid: 2968 - components: - - type: Transform - pos: 19.5,-14.5 - parent: 2 - uid: 3006 components: - type: Transform @@ -44524,6 +44533,11 @@ entities: - type: Transform pos: 35.5,21.5 parent: 2 + - uid: 10764 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 2 - uid: 11349 components: - type: Transform @@ -44599,16 +44613,6 @@ entities: - type: Transform pos: -26.5,-11.5 parent: 2 - - uid: 2987 - components: - - type: Transform - pos: 15.5,-22.5 - parent: 2 - - uid: 2988 - components: - - type: Transform - pos: 20.5,-14.5 - parent: 2 - uid: 2989 components: - type: Transform @@ -44649,6 +44653,11 @@ entities: - type: Transform pos: -42.5,-16.5 parent: 2 + - uid: 5582 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 2 - uid: 6270 components: - type: Transform @@ -44729,6 +44738,11 @@ entities: - type: Transform pos: 33.5,29.5 parent: 2 + - uid: 13971 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 2 - uid: 14236 components: - type: Transform @@ -44793,11 +44807,31 @@ entities: - type: Transform pos: 13.5,-10.5 parent: 2 + - uid: 7907 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 8995 + components: + - type: Transform + pos: 46.5,6.5 + parent: 2 - uid: 14308 components: - type: Transform pos: 21.5,36.5 parent: 2 + - uid: 14639 + components: + - type: Transform + pos: -21.5,53.5 + parent: 2 + - uid: 14932 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 2 - proto: ClothingBackpackDuffelSurgeryFilled entities: - uid: 4066 @@ -44829,6 +44863,13 @@ entities: - type: Transform pos: -24.123486,14.509014 parent: 2 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 15108 + components: + - type: Transform + pos: 30.488945,-12.00023 + parent: 2 - proto: ClothingBeltUtilityFilled entities: - uid: 8493 @@ -44854,6 +44895,11 @@ entities: parent: 2 - proto: ClothingEyesGlassesMeson entities: + - uid: 2693 + components: + - type: Transform + pos: 28.678375,25.514599 + parent: 2 - uid: 6206 components: - type: Transform @@ -44990,10 +45036,10 @@ entities: parent: 2 - proto: ClothingHeadHatHardhatOrange entities: - - uid: 8497 + - uid: 5084 components: - type: Transform - pos: 25.797258,-21.152796 + pos: 24.286795,-23.132805 parent: 2 - proto: ClothingHeadHatHardhatRed entities: @@ -45007,8 +45053,22 @@ entities: - uid: 8057 components: - type: Transform - pos: 34.468143,-22.170101 + pos: 34.637638,-22.083765 parent: 2 + - type: HandheldLight + toggleActionEntity: 1565 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 1565 + - type: ActionsContainer - uid: 14373 components: - type: Transform @@ -45240,6 +45300,11 @@ entities: parent: 2 - proto: ClothingUnderSocksCoder entities: + - uid: 2482 + components: + - type: Transform + pos: 40.664803,-6.613131 + parent: 2 - uid: 15213 components: - type: Transform @@ -45443,6 +45508,11 @@ entities: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - proto: ComputerAtmosMonitoring entities: + - uid: 5067 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 2 - uid: 14788 components: - type: Transform @@ -45516,6 +45586,12 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,15.5 parent: 2 + - uid: 16431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-15.5 + parent: 2 - proto: ComputerCargoBounty entities: - uid: 4638 @@ -45906,30 +45982,32 @@ entities: - type: Transform pos: 36.5,-22.5 parent: 2 -- proto: CondenserMachineCircuitBoard - entities: - - uid: 7473 - components: - - type: Transform - pos: 24.581282,11.533271 - parent: 2 - proto: ContainmentFieldGenerator entities: - uid: 1550 components: - type: Transform + anchored: False pos: 42.5,-26.5 parent: 2 + - type: Physics + bodyType: Dynamic - uid: 1551 components: - type: Transform + anchored: False pos: 42.5,-27.5 parent: 2 + - type: Physics + bodyType: Dynamic - uid: 2536 components: - type: Transform + anchored: False pos: 42.5,-28.5 parent: 2 + - type: Physics + bodyType: Dynamic - uid: 2733 components: - type: Transform @@ -45940,6 +46018,13 @@ entities: - type: Transform pos: 50.5,-23.5 parent: 2 +- proto: ContainmentFieldGeneratorFlatpack + entities: + - uid: 168 + components: + - type: Transform + pos: 56.517628,-17.507584 + parent: 2 - proto: ConveyorBelt entities: - uid: 3249 @@ -46177,6 +46262,8 @@ entities: entities: - uid: 15672 components: + - type: MetaData + desc: 12 parts for the main body of an antimatter reactor, or for expanding an existing one. - type: Transform pos: 40.5,-12.5 parent: 2 @@ -46233,8 +46320,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -46251,10 +46338,8 @@ entities: showEnts: False occludes: True ents: - - 1253 - 1252 - - 1251 - - 1250 + - 1253 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -46307,11 +46392,6 @@ entities: - type: Transform pos: 8.5,-25.5 parent: 2 - - uid: 6290 - components: - - type: Transform - pos: 44.5,17.5 - parent: 2 - uid: 6291 components: - type: Transform @@ -46436,13 +46516,6 @@ entities: - type: Transform pos: 7.5,7.5 parent: 2 -- proto: CrateHydroponicsSeeds - entities: - - uid: 2137 - components: - - type: Transform - pos: 2.5,-38.5 - parent: 2 - proto: CrateHydroponicsTools entities: - uid: 2129 @@ -46455,6 +46528,23 @@ entities: - type: Transform pos: -11.5,-47.5 parent: 2 +- proto: CrateMaterialRandom + entities: + - uid: 8235 + components: + - type: Transform + pos: -10.5,31.5 + parent: 2 + - uid: 8276 + components: + - type: Transform + pos: 31.5,-20.5 + parent: 2 + - uid: 11101 + components: + - type: Transform + pos: 10.5,-31.5 + parent: 2 - proto: CrateMedicalSurgery entities: - uid: 4065 @@ -46495,6 +46585,18 @@ entities: - type: Transform pos: 7.5,5.5 parent: 2 +- proto: CrateTechBoardRandom + entities: + - uid: 5607 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - uid: 8073 + components: + - type: Transform + pos: 43.5,2.5 + parent: 2 - proto: CrateTrashCartJani entities: - uid: 15296 @@ -46539,13 +46641,6 @@ entities: - type: Transform pos: -11.210674,57.434536 parent: 2 -- proto: CrowbarRed - entities: - - uid: 8488 - components: - - type: Transform - pos: 25.429407,-27.474827 - parent: 2 - proto: CrowbarYellow entities: - uid: 8487 @@ -46933,10 +47028,10 @@ entities: parent: 2 - proto: DefaultStationBeaconEVAStorage entities: - - uid: 14577 + - uid: 1752 components: - type: Transform - pos: 17.5,-17.5 + pos: 19.5,-15.5 parent: 2 - proto: DefaultStationBeaconGravGen entities: @@ -47156,10 +47251,10 @@ entities: parent: 2 - proto: DefaultStationBeaconTEG entities: - - uid: 14611 + - uid: 6539 components: - type: Transform - pos: 26.5,-21.5 + pos: 23.5,-23.5 parent: 2 - proto: DefaultStationBeaconTelecoms entities: @@ -47327,6 +47422,12 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-16.5 parent: 2 + - uid: 2184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-30.5 + parent: 2 - uid: 2368 components: - type: Transform @@ -47339,6 +47440,12 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-32.5 parent: 2 + - uid: 3012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-30.5 + parent: 2 - uid: 3115 components: - type: Transform @@ -47779,6 +47886,12 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-30.5 parent: 2 + - uid: 5567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-24.5 + parent: 2 - uid: 9981 components: - type: Transform @@ -47963,18 +48076,42 @@ entities: - type: Transform pos: -3.5,-1.5 parent: 2 + - uid: 2183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-29.5 + parent: 2 + - uid: 2187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-30.5 + parent: 2 - uid: 2200 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,24.5 parent: 2 + - uid: 2412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-25.5 + parent: 2 - uid: 2885 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-31.5 parent: 2 + - uid: 3000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-30.5 + parent: 2 - uid: 3038 components: - type: Transform @@ -48035,12 +48172,36 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-30.5 parent: 2 + - uid: 5970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-30.5 + parent: 2 + - uid: 5978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-28.5 + parent: 2 - uid: 5996 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-3.5 parent: 2 + - uid: 8488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-27.5 + parent: 2 + - uid: 10443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-26.5 + parent: 2 - uid: 10532 components: - type: Transform @@ -48059,12 +48220,6 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-24.5 parent: 2 - - uid: 12941 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-24.5 - parent: 2 - uid: 12942 components: - type: Transform @@ -50575,6 +50730,11 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-37.5 parent: 2 + - uid: 10482 + components: + - type: Transform + pos: 29.5,-29.5 + parent: 2 - uid: 12929 components: - type: Transform @@ -50787,6 +50947,11 @@ entities: - type: Transform pos: -6.5,-16.5 parent: 2 + - uid: 2418 + components: + - type: Transform + pos: 29.5,-29.5 + parent: 2 - uid: 2812 components: - type: Transform @@ -51103,12 +51268,12 @@ entities: - uid: 14401 components: - type: Transform - pos: 32.695717,-37.28533 + pos: 28.684616,-32.226566 parent: 2 - uid: 14403 components: - type: Transform - pos: 32.351967,-37.050957 + pos: 28.278366,-32.070316 parent: 2 - uid: 14450 components: @@ -51360,6 +51525,17 @@ entities: parent: 2 - proto: EmergencyLight entities: + - uid: 100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-13.5 + parent: 2 + - uid: 2093 + components: + - type: Transform + pos: 1.5,-36.5 + parent: 2 - uid: 2515 components: - type: Transform @@ -51378,11 +51554,11 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-28.5 parent: 2 - - uid: 11353 + - uid: 10912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-20.5 + rot: 1.5707963267948966 rad + pos: 18.5,-15.5 parent: 2 - uid: 14986 components: @@ -51524,12 +51700,6 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-8.5 parent: 2 - - uid: 15500 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-13.5 - parent: 2 - uid: 15501 components: - type: Transform @@ -51565,24 +51735,12 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-22.5 parent: 2 - - uid: 15508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-28.5 - parent: 2 - uid: 15511 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-28.5 parent: 2 - - uid: 15512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-19.5 - parent: 2 - uid: 15513 components: - type: Transform @@ -51850,11 +52008,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-34.5 parent: 2 - - uid: 15563 - components: - - type: Transform - pos: 2.5,-36.5 - parent: 2 - uid: 15564 components: - type: Transform @@ -52066,15 +52219,25 @@ entities: - uid: 2534 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 44.5,-27.5 parent: 2 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 - uid: 2647 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 44.5,-28.5 parent: 2 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 - uid: 14838 components: - type: Transform @@ -52087,6 +52250,13 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,-17.5 parent: 2 +- proto: EmitterCircuitboard + entities: + - uid: 1179 + components: + - type: Transform + pos: 45.29731,-16.793638 + parent: 2 - proto: EthanolChemistryBottle entities: - uid: 385 @@ -52527,6 +52697,12 @@ entities: - 10849 - 10850 - 10851 + - uid: 10771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-25.5 + parent: 2 - uid: 11390 components: - type: MetaData @@ -52664,6 +52840,17 @@ entities: devices: - 10841 - 10840 + - uid: 12553 + components: + - type: MetaData + name: fire alarm (Engineering Locker Room) + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 13803 - uid: 13456 components: - type: MetaData @@ -52965,17 +53152,6 @@ entities: - type: DeviceList devices: - 10915 - - uid: 14664 - components: - - type: MetaData - name: fire alarm (Engineering Locker Room) - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-13.5 - parent: 2 - - type: DeviceList - devices: - - 13803 - uid: 14665 components: - type: MetaData @@ -52988,24 +53164,9 @@ entities: devices: - 13804 - 13805 - - 13832 - - 13833 - 13835 - 13834 - 13850 - - uid: 14666 - components: - - type: MetaData - name: fire alarm (TEG) - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-25.5 - parent: 2 - - type: DeviceList - devices: - - 13836 - - 13832 - - 13833 - uid: 14667 components: - type: MetaData @@ -53018,7 +53179,6 @@ entities: devices: - 13835 - 13834 - - 13836 - 13850 - uid: 14668 components: @@ -53270,10 +53430,10 @@ entities: parent: 2 - proto: FireAxeCabinetFilled entities: - - uid: 2187 + - uid: 12676 components: - type: Transform - pos: 30.5,-26.5 + pos: 30.5,-25.5 parent: 2 - uid: 15812 components: @@ -53286,7 +53446,7 @@ entities: - uid: 1914 components: - type: Transform - pos: 29.351881,-29.496101 + pos: 31.539288,-29.46528 parent: 2 - uid: 8474 components: @@ -53345,12 +53505,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,31.5 parent: 2 - - uid: 3616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-27.5 - parent: 2 - uid: 10880 components: - type: Transform @@ -53483,24 +53637,12 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-27.5 parent: 2 - - uid: 15903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-23.5 - parent: 2 - uid: 15905 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-20.5 parent: 2 - - uid: 15906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-16.5 - parent: 2 - uid: 15907 components: - type: Transform @@ -53867,9 +54009,9 @@ entities: - type: DeviceNetwork deviceLists: - 13800 - - 13947 + - 12553 - 8138 - - 14664 + - 12810 - uid: 13809 components: - type: Transform @@ -53905,7 +54047,7 @@ entities: - 12724 - 14667 - 14665 - - 14575 + - 14552 - uid: 13853 components: - type: Transform @@ -53946,6 +54088,26 @@ entities: - 11357 - 13789 - 14119 + - uid: 1028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5980 + - 14552 + - uid: 1029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5980 + - 12724 - uid: 1081 components: - type: Transform @@ -54061,6 +54223,16 @@ entities: - 13806 - 13817 - 14673 + - uid: 9755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5980 + - 14552 - uid: 10803 components: - type: Transform @@ -54846,28 +55018,6 @@ entities: - 11574 - 11575 - 15328 - - uid: 13832 - components: - - type: Transform - pos: 30.5,-18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12724 - - 12708 - - 14665 - - 14666 - - uid: 13833 - components: - - type: Transform - pos: 30.5,-19.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12724 - - 12708 - - 14665 - - 14666 - uid: 13834 components: - type: Transform @@ -54878,7 +55028,7 @@ entities: - 12724 - 14665 - 14667 - - 14575 + - 14552 - uid: 13835 components: - type: Transform @@ -54889,18 +55039,7 @@ entities: - 12724 - 14665 - 14667 - - 14575 - - uid: 13836 - components: - - type: Transform - pos: 27.5,-26.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12708 - - 14666 - - 14667 - - 14575 + - 14552 - uid: 14136 components: - type: Transform @@ -54951,16 +55090,16 @@ entities: parent: 2 - proto: FlashlightLantern entities: - - uid: 8498 - components: - - type: Transform - pos: 25.609758,-21.590296 - parent: 2 - uid: 8499 components: - type: Transform pos: 34.42089,-8.215996 parent: 2 + - uid: 10913 + components: + - type: Transform + pos: 24.50801,-23.654537 + parent: 2 - proto: FlippoLighter entities: - uid: 8615 @@ -54968,6 +55107,11 @@ entities: - type: Transform pos: 45.758858,-0.47734332 parent: 2 + - uid: 15307 + components: + - type: Transform + pos: 24.831387,-15.78384 + parent: 2 - proto: FloorDrain entities: - uid: 413 @@ -55097,6 +55241,13 @@ entities: - type: Transform pos: -1.4959033,38.699974 parent: 2 +- proto: FoodBowlBig + entities: + - uid: 16452 + components: + - type: Transform + pos: 0.36490655,-40.359383 + parent: 2 - proto: FoodBoxDonkpocketBerry entities: - uid: 10514 @@ -55273,31 +55424,8 @@ entities: - type: Transform pos: 37.078346,15.596962 parent: 2 -- proto: GasCanisterBrokenBase - entities: - - uid: 11340 - components: - - type: Transform - pos: 26.5,-41.5 - parent: 2 - proto: GasFilterFlipped entities: - - uid: 2328 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 2330 components: - type: Transform @@ -55313,6 +55441,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 5981 + components: + - type: Transform + pos: 25.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7391 + components: + - type: Transform + pos: 25.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7803 components: - type: Transform @@ -55325,53 +55467,59 @@ entities: color: '#03FCDFFF' - proto: GasMinerCarbonDioxide entities: - - uid: 1766 - components: - - type: Transform - pos: 20.5,-39.5 - parent: 2 -- proto: GasMinerNitrogenStation - entities: - - uid: 1763 - components: - - type: Transform - pos: 20.5,-35.5 - parent: 2 -- proto: GasMinerOxygenStation - entities: - - uid: 1762 - components: - - type: Transform - pos: 20.5,-37.5 - parent: 2 -- proto: GasMinerWaterVapor - entities: - - uid: 2343 + - uid: 5593 components: - type: Transform pos: 39.5,-39.5 parent: 2 -- proto: GasMixerFlipped +- proto: GasMinerNitrogenStation entities: - - uid: 2413 + - uid: 16435 components: - type: Transform - pos: 32.5,-35.5 + pos: 39.5,-35.5 parent: 2 - - uid: 2430 +- proto: GasMinerOxygenStation + entities: + - uid: 16436 components: - type: Transform - pos: 27.5,-34.5 + pos: 39.5,-37.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasOutletInjector +- proto: GasMinerWaterVapor entities: - - uid: 2231 + - uid: 3021 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 2 +- proto: GasMixer + entities: + - uid: 183 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-37.5 + pos: 18.5,-27.5 + parent: 2 + - uid: 871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-35.5 + parent: 2 + - uid: 1127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-34.5 + parent: 2 +- proto: GasOutletInjector + entities: + - uid: 1132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-30.5 parent: 2 - uid: 2232 components: @@ -55409,14 +55557,20 @@ entities: rot: 3.141592653589793 rad pos: 30.5,-43.5 parent: 2 - - uid: 2891 + - uid: 5602 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-24.5 + pos: 21.5,-37.5 parent: 2 - proto: GasPassiveVent entities: + - uid: 1137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-33.5 + parent: 2 - uid: 2415 components: - type: Transform @@ -55443,23 +55597,12 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-39.5 parent: 2 - - uid: 2709 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-29.5 - parent: 2 - uid: 3448 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-43.5 parent: 2 - - uid: 8325 - components: - - type: Transform - pos: 20.5,-24.5 - parent: 2 - uid: 8933 components: - type: Transform @@ -55605,6 +55748,61 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-17.5 + parent: 2 + - uid: 1155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-21.5 + parent: 2 + - uid: 1157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-26.5 + parent: 2 + - uid: 1182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-26.5 + parent: 2 + - uid: 1355 + components: + - type: Transform + anchored: False + pos: 25.697084,-27.806557 + parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 1449 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 2 + - uid: 1502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-20.5 + parent: 2 + - uid: 1548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-31.5 + parent: 2 + - uid: 1563 + components: + - type: Transform + pos: 27.5,-31.5 + parent: 2 - uid: 1851 components: - type: Transform @@ -55629,19 +55827,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2412 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2414 - components: - - type: Transform - pos: 32.5,-31.5 - parent: 2 - uid: 2425 components: - type: Transform @@ -55657,28 +55842,11 @@ entities: - type: Transform pos: 40.5,-38.5 parent: 2 - - uid: 2463 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-25.5 - parent: 2 - - uid: 2464 + - uid: 2448 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-22.5 - parent: 2 - - uid: 2483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-23.5 - parent: 2 - - uid: 2484 - components: - - type: Transform - pos: 28.5,-17.5 + pos: 17.5,-27.5 parent: 2 - uid: 2491 components: @@ -55710,23 +55878,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2946 + - uid: 2750 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,-36.5 - parent: 2 - - uid: 3903 - components: - - type: Transform - pos: 23.5,-24.5 - parent: 2 - - uid: 3905 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-31.5 + pos: 15.5,-13.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4260 components: - type: Transform @@ -55812,6 +55971,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 5609 + components: + - type: Transform + anchored: False + pos: 31.956865,-36.792206 + parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 6096 components: - type: Transform @@ -55836,6 +56004,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-33.5 + parent: 2 + - uid: 6630 + components: + - type: Transform + pos: 28.5,-35.5 + parent: 2 - uid: 7183 components: - type: Transform @@ -55852,12 +56031,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCDFFF' - - uid: 7814 + - uid: 8086 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-17.5 + pos: 31.5,-19.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8525 components: - type: Transform @@ -56093,14 +56274,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 9012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9026 components: - type: Transform @@ -56124,6 +56297,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 9127 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9169 components: - type: Transform @@ -57403,14 +57583,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12660 components: - type: Transform @@ -57663,50 +57835,35 @@ entities: color: '#0055CCFF' - proto: GasPipeBroken entities: - - uid: 1058 + - uid: 1124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-30.5 + parent: 2 + - uid: 1188 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-24.5 + pos: 26.5,-22.5 parent: 2 - - uid: 1061 - components: - - type: Transform - pos: 23.5,-20.5 - parent: 2 - - uid: 1110 + - uid: 1499 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-25.5 + pos: 24.5,-26.5 parent: 2 - - uid: 1111 - components: - - type: Transform - pos: 28.5,-21.5 - parent: 2 - - uid: 2513 - components: - - type: Transform - pos: 32.5,-33.5 - parent: 2 - - uid: 2549 + - uid: 1730 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,-17.5 + pos: 20.5,-26.5 parent: 2 - - uid: 2580 + - uid: 1741 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-31.5 - parent: 2 - - uid: 2695 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-31.5 + pos: 22.5,-20.5 parent: 2 - uid: 2696 components: @@ -57719,20 +57876,18 @@ entities: - type: Transform pos: 34.5,-31.5 parent: 2 - - uid: 3733 + - uid: 5985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-25.5 - parent: 2 - - uid: 15276 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-19.5 + pos: 27.5,-20.5 parent: 2 - proto: GasPipeFourway entities: + - uid: 2416 + components: + - type: Transform + pos: 32.5,-36.5 + parent: 2 - uid: 6468 components: - type: Transform @@ -57861,72 +58016,17 @@ entities: color: '#0055CCFF' - proto: GasPipeHalf entities: - - uid: 2310 + - uid: 9004 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-35.5 + pos: 34.5,-35.5 parent: 2 - - uid: 2482 + - uid: 10713 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-18.5 - parent: 2 - - uid: 2487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-25.5 - parent: 2 - - uid: 2488 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-20.5 - parent: 2 - - uid: 2509 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-23.5 - parent: 2 - - uid: 2693 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-31.5 - parent: 2 - - uid: 2984 - components: - - type: Transform - pos: 34.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7481 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-18.5 - parent: 2 - - uid: 7746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-17.5 - parent: 2 - - uid: 16407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-35.5 - parent: 2 - - uid: 16408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-37.5 + pos: 34.5,-37.5 parent: 2 - proto: GasPipeSensorDistribution entities: @@ -57939,18 +58039,17 @@ entities: color: '#0055CCFF' - proto: GasPipeSensorTEGCold entities: - - uid: 14280 + - uid: 1461 components: - type: Transform - pos: 28.5,-19.5 + pos: 21.5,-21.5 parent: 2 - proto: GasPipeSensorTEGHot entities: - - uid: 1209 + - uid: 1507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-25.5 + pos: 21.5,-26.5 parent: 2 - proto: GasPipeSensorWaste entities: @@ -57963,12 +58062,6 @@ entities: color: '#990000FF' - proto: GasPipeStraight entities: - - uid: 140 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-36.5 - parent: 2 - uid: 215 components: - type: Transform @@ -58717,41 +58810,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1128 + - uid: 1100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-23.5 + rot: -1.5707963267948966 rad + pos: 30.5,-21.5 parent: 2 - - uid: 1129 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-23.5 - parent: 2 - - uid: 1178 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-25.5 - parent: 2 - - uid: 1180 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-23.5 - parent: 2 - - uid: 1182 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-25.5 - parent: 2 - - uid: 1184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-25.5 + rot: -1.5707963267948966 rad + pos: 33.5,-36.5 parent: 2 - uid: 1211 components: @@ -58767,21 +58838,141 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1639 + - uid: 1382 components: - type: Transform - pos: 23.5,-26.5 + rot: 1.5707963267948966 rad + pos: 26.5,-31.5 parent: 2 - - uid: 1641 + - uid: 1438 + components: + - type: Transform + pos: 27.5,-33.5 + parent: 2 + - uid: 1469 + components: + - type: Transform + pos: 21.5,-27.5 + parent: 2 + - uid: 1474 + components: + - type: Transform + pos: 23.5,-28.5 + parent: 2 + - uid: 1476 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 2 + - uid: 1494 components: - type: Transform pos: 23.5,-29.5 parent: 2 + - uid: 1495 + components: + - type: Transform + anchored: False + pos: 33.732178,-32.222416 + parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 1497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-28.5 + parent: 2 + - uid: 1500 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 2 + - uid: 1505 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-28.5 + parent: 2 + - uid: 1508 + components: + - type: Transform + pos: 27.5,-32.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-29.5 + parent: 2 + - uid: 1557 + components: + - type: Transform + pos: 27.5,-34.5 + parent: 2 + - uid: 1600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-29.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-30.5 + parent: 2 + - uid: 1641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-27.5 + parent: 2 - uid: 1657 components: - type: Transform - pos: 23.5,-30.5 + rot: 3.141592653589793 rad + pos: 19.5,-32.5 parent: 2 + - uid: 1703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-29.5 + parent: 2 + - uid: 1704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-31.5 + parent: 2 + - uid: 1706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-30.5 + parent: 2 + - uid: 1708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-27.5 + parent: 2 + - uid: 2181 + components: + - type: Transform + anchored: False + pos: 21.308867,-23.332806 + parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 2242 components: - type: Transform @@ -58818,14 +59009,6 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,-38.5 parent: 2 - - uid: 2307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2324 components: - type: Transform @@ -58833,6 +59016,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 2329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2386 components: - type: Transform @@ -58967,11 +59158,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2416 - components: - - type: Transform - pos: 32.5,-34.5 - parent: 2 - uid: 2419 components: - type: Transform @@ -59062,6 +59248,15 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-37.5 parent: 2 + - uid: 2450 + components: + - type: Transform + anchored: False + pos: 23.156368,-26.875498 + parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 2452 components: - type: Transform @@ -59149,14 +59344,16 @@ entities: - uid: 2492 components: - type: Transform - pos: 25.5,-37.5 + rot: 1.5707963267948966 rad + pos: 18.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 2496 components: - type: Transform - pos: 27.5,-31.5 + rot: 1.5707963267948966 rad + pos: 18.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -59176,16 +59373,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2559 + - uid: 2545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2560 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-35.5 + pos: 30.5,-23.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2563 components: - type: Transform - pos: 32.5,-32.5 + rot: -1.5707963267948966 rad + pos: 24.5,-22.5 parent: 2 - uid: 2571 components: @@ -59204,37 +59412,10 @@ entities: - type: Transform pos: 30.5,-42.5 parent: 2 - - uid: 2642 - components: - - type: Transform - pos: 20.5,-26.5 - parent: 2 - - uid: 2692 + - uid: 2632 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-31.5 - parent: 2 - - uid: 2694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-31.5 - parent: 2 - - uid: 2721 - components: - - type: Transform - pos: 20.5,-25.5 - parent: 2 - - uid: 2732 - components: - - type: Transform - pos: 23.5,-27.5 - parent: 2 - - uid: 2890 - components: - - type: Transform - rot: 1.5707963267948966 rad pos: 22.5,-24.5 parent: 2 - uid: 2935 @@ -59245,21 +59426,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2945 - components: - - type: Transform - pos: 27.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2975 components: - type: Transform @@ -59348,11 +59514,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3956 + - uid: 3582 components: - type: Transform - pos: 23.5,-25.5 + rot: 3.141592653589793 rad + pos: 31.5,-22.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4245 components: - type: Transform @@ -59558,6 +59727,34 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5588 + components: + - type: Transform + pos: 34.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5589 + components: + - type: Transform + pos: 34.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5608 + components: + - type: Transform + anchored: False + pos: 27.779055,-36.999092 + parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 5613 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 2 - uid: 5944 components: - type: Transform @@ -59566,6 +59763,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCDFFF' + - uid: 5982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-36.5 + parent: 2 + - uid: 5983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-36.5 + parent: 2 - uid: 6039 components: - type: Transform @@ -59698,6 +59907,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6533 + components: + - type: Transform + pos: 32.5,-35.5 + parent: 2 - uid: 6631 components: - type: Transform @@ -59725,11 +59939,16 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 7485 + - uid: 6825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-18.5 + rot: 1.5707963267948966 rad + pos: 31.5,-36.5 + parent: 2 + - uid: 7473 + components: + - type: Transform + pos: 27.5,-19.5 parent: 2 - uid: 7927 components: @@ -59745,11 +59964,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8107 + - uid: 8075 components: - type: Transform - pos: 20.5,-27.5 + pos: 32.5,-18.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8234 components: - type: Transform @@ -59757,6 +59978,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8378 components: - type: Transform @@ -61060,13 +61289,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8911 - components: - - type: Transform - pos: 32.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8912 components: - type: Transform @@ -61074,13 +61296,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8949 - components: - - type: Transform - pos: 25.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8950 components: - type: Transform @@ -61134,30 +61349,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 9002 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9003 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9005 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9006 components: - type: Transform @@ -61293,6 +61484,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9227 components: - type: Transform @@ -61356,6 +61555,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 9475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9653 components: - type: Transform @@ -61486,6 +61701,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 10773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-36.5 + parent: 2 + - uid: 10802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-32.5 + parent: 2 - uid: 10931 components: - type: Transform @@ -66253,14 +66480,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12065 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12067 components: - type: Transform @@ -68271,62 +68490,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12553 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12554 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12555 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12556 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12559 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12564 components: - type: Transform @@ -68971,6 +69134,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1503 + components: + - type: Transform + anchored: False + pos: 25.026842,-24.944927 + parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 1613 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 2 - uid: 1618 components: - type: Transform @@ -68979,16 +69156,34 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2418 + - uid: 1711 components: - type: Transform - pos: 26.5,-34.5 + rot: 3.141592653589793 rad + pos: 25.5,-18.5 parent: 2 - - uid: 2471 + - uid: 1712 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-18.5 + pos: 27.5,-18.5 + parent: 2 + - uid: 2182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-22.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 2 + - uid: 2447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-18.5 parent: 2 - uid: 2485 components: @@ -69020,17 +69215,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2498 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-35.5 - parent: 2 - - uid: 2499 - components: - - type: Transform - pos: 33.5,-36.5 - parent: 2 - uid: 2511 components: - type: Transform @@ -69161,6 +69345,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 5973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-36.5 + parent: 2 - uid: 6042 components: - type: Transform @@ -69198,6 +69388,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 6538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-36.5 + parent: 2 + - uid: 7390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7475 components: - type: Transform @@ -69222,6 +69426,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7911 components: - type: Transform @@ -69238,6 +69450,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8547 components: - type: Transform @@ -69493,21 +69721,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8995 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9004 - components: - - type: Transform - pos: 31.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9010 components: - type: Transform @@ -69577,6 +69790,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 10772 + components: + - type: Transform + pos: 33.5,-34.5 + parent: 2 - uid: 10976 components: - type: Transform @@ -70168,14 +70386,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12047 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12063 components: - type: Transform @@ -70284,14 +70494,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12184 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12197 components: - type: Transform @@ -70570,12 +70772,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 13856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-36.5 - parent: 2 - uid: 13879 components: - type: Transform @@ -70664,6 +70860,18 @@ entities: color: '#990000FF' - proto: GasPort entities: + - uid: 1710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-28.5 + parent: 2 + - uid: 2451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-22.5 + parent: 2 - uid: 2574 components: - type: Transform @@ -70672,6 +70880,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 2580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-28.5 + parent: 2 - uid: 2626 components: - type: Transform @@ -70680,12 +70894,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-22.5 - parent: 2 - uid: 5480 components: - type: Transform @@ -70727,12 +70935,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1406 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-28.5 - parent: 2 - uid: 2384 components: - type: Transform @@ -70751,6 +70953,18 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-36.5 parent: 2 + - uid: 2454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-27.5 + parent: 2 + - uid: 2455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-27.5 + parent: 2 - uid: 2501 components: - type: Transform @@ -70820,18 +71034,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#5883E8FF' - - uid: 7486 - components: - - type: Transform - pos: 20.5,-28.5 - parent: 2 - proto: GasThermoMachineFreezer entities: - - uid: 10440 + - uid: 153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-27.5 + rot: 3.141592653589793 rad + pos: 26.5,-41.5 + parent: 2 + - uid: 1713 + components: + - type: Transform + pos: 18.5,-20.5 parent: 2 - uid: 15723 components: @@ -70853,19 +71067,24 @@ entities: targetTemperature: 200.15 - proto: GasThermoMachineHeater entities: - - uid: 9127 + - uid: 2573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-28.5 + pos: 17.5,-20.5 parent: 2 -- proto: GasValve - entities: - - uid: 1398 + - uid: 5587 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-21.5 + pos: 27.5,-41.5 + parent: 2 +- proto: GasValve + entities: + - uid: 1501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-28.5 parent: 2 - uid: 2497 components: @@ -70993,6 +71212,17 @@ entities: - 816 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5980 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2532 components: - type: Transform @@ -71025,6 +71255,28 @@ entities: - 12732 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1718 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12724 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4464 components: - type: Transform @@ -71072,7 +71324,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14575 + - 14552 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7554 @@ -71268,28 +71520,6 @@ entities: - 12724 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12708 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12724 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9028 components: - type: Transform @@ -71316,7 +71546,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13947 + - 12810 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10412 @@ -72048,17 +72278,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12550 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13798 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12562 components: - type: Transform @@ -72332,6 +72551,17 @@ entities: - 11291 - type: AtmosPipeColor color: '#990000FF' + - uid: 2463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5980 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2691 components: - type: Transform @@ -72352,6 +72582,17 @@ entities: - 13852 - type: AtmosPipeColor color: '#990000FF' + - uid: 3278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12724 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4480 components: - type: Transform @@ -72498,6 +72739,16 @@ entities: - 1136 - type: AtmosPipeColor color: '#990000FF' + - uid: 8358 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13799 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8382 components: - type: Transform @@ -72660,17 +72911,6 @@ entities: - 3330 - type: AtmosPipeColor color: '#990000FF' - - uid: 9007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-19.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12708 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9011 components: - type: Transform @@ -72679,18 +72919,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14575 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9015 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12724 + - 14552 - type: AtmosPipeColor color: '#990000FF' - uid: 9018 @@ -72711,7 +72940,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13947 + - 12810 - type: AtmosPipeColor color: '#990000FF' - uid: 10444 @@ -72747,6 +72976,17 @@ entities: - 13797 - type: AtmosPipeColor color: '#990000FF' + - uid: 10855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1718 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10996 components: - type: Transform @@ -73330,28 +73570,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13798 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12561 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-13.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13799 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12659 components: - type: Transform @@ -73554,50 +73772,26 @@ entities: color: '#990000FF' - proto: GasVolumePump entities: - - uid: 1123 + - uid: 2458 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-20.5 + pos: 22.5,-22.5 parent: 2 - - uid: 1124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-20.5 - parent: 2 - - uid: 1127 + - uid: 2462 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-22.5 - parent: 2 - - uid: 1179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-22.5 + pos: 24.5,-24.5 parent: 2 - proto: Girder entities: - - uid: 2918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-22.5 - parent: 2 - uid: 2924 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-30.5 parent: 2 - - uid: 2931 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-28.5 - parent: 2 - uid: 2932 components: - type: Transform @@ -73697,16 +73891,6 @@ entities: rot: 3.141592653589793 rad pos: 45.5,3.5 parent: 2 - - uid: 8099 - components: - - type: Transform - pos: 43.5,17.5 - parent: 2 - - uid: 8104 - components: - - type: Transform - pos: 43.5,18.5 - parent: 2 - uid: 8108 components: - type: Transform @@ -73751,6 +73935,18 @@ entities: - type: Transform pos: 42.5,-3.5 parent: 2 +- proto: GrenadeFoamDart + entities: + - uid: 2327 + components: + - type: Transform + pos: 17.19725,-30.234056 + parent: 2 + - uid: 5585 + components: + - type: Transform + pos: 17.75975,-31.71843 + parent: 2 - proto: Grille entities: - uid: 19 @@ -73834,11 +74030,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,56.5 parent: 2 - - uid: 871 - components: - - type: Transform - pos: 61.5,-23.5 - parent: 2 - uid: 1108 components: - type: Transform @@ -73859,6 +74050,23 @@ entities: - type: Transform pos: 34.5,-4.5 parent: 2 + - uid: 1178 + components: + - type: Transform + pos: 53.5,-28.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-19.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-19.5 + parent: 2 - uid: 1337 components: - type: Transform @@ -73889,91 +74097,11 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,-21.5 parent: 2 - - uid: 1461 - components: - - type: Transform - pos: 48.5,-12.5 - parent: 2 - - uid: 1494 - components: - - type: Transform - pos: 49.5,-12.5 - parent: 2 - - uid: 1495 - components: - - type: Transform - pos: 50.5,-12.5 - parent: 2 - - uid: 1496 - components: - - type: Transform - pos: 56.5,-12.5 - parent: 2 - - uid: 1497 - components: - - type: Transform - pos: 57.5,-12.5 - parent: 2 - - uid: 1498 - components: - - type: Transform - pos: 58.5,-12.5 - parent: 2 - - uid: 1499 - components: - - type: Transform - pos: 61.5,-15.5 - parent: 2 - - uid: 1500 - components: - - type: Transform - pos: 61.5,-16.5 - parent: 2 - - uid: 1501 - components: - - type: Transform - pos: 61.5,-17.5 - parent: 2 - - uid: 1502 - components: - - type: Transform - pos: 61.5,-25.5 - parent: 2 - - uid: 1503 - components: - - type: Transform - pos: 61.5,-24.5 - parent: 2 - uid: 1504 components: - type: Transform pos: 58.5,-28.5 parent: 2 - - uid: 1505 - components: - - type: Transform - pos: 57.5,-28.5 - parent: 2 - - uid: 1506 - components: - - type: Transform - pos: 56.5,-28.5 - parent: 2 - - uid: 1507 - components: - - type: Transform - pos: 48.5,-28.5 - parent: 2 - - uid: 1508 - components: - - type: Transform - pos: 49.5,-28.5 - parent: 2 - - uid: 1509 - components: - - type: Transform - pos: 50.5,-28.5 - parent: 2 - uid: 1510 components: - type: Transform @@ -74134,26 +74262,11 @@ entities: - type: Transform pos: 50.5,-10.5 parent: 2 - - uid: 1548 - components: - - type: Transform - pos: 49.5,-10.5 - parent: 2 - uid: 1583 components: - type: Transform pos: 34.5,-16.5 parent: 2 - - uid: 1735 - components: - - type: Transform - pos: 14.5,-17.5 - parent: 2 - - uid: 1736 - components: - - type: Transform - pos: 14.5,-18.5 - parent: 2 - uid: 1744 components: - type: Transform @@ -74297,6 +74410,11 @@ entities: - type: Transform pos: 37.5,-37.5 parent: 2 + - uid: 2304 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 2 - uid: 2306 components: - type: Transform @@ -74312,11 +74430,6 @@ entities: - type: Transform pos: 37.5,-39.5 parent: 2 - - uid: 2321 - components: - - type: Transform - pos: 22.5,-23.5 - parent: 2 - uid: 2344 components: - type: Transform @@ -74413,26 +74526,16 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-39.5 parent: 2 + - uid: 2457 + components: + - type: Transform + pos: 54.5,-28.5 + parent: 2 - uid: 2460 components: - type: Transform pos: 34.5,-14.5 parent: 2 - - uid: 2461 - components: - - type: Transform - pos: 28.5,-26.5 - parent: 2 - - uid: 2465 - components: - - type: Transform - pos: 22.5,-24.5 - parent: 2 - - uid: 2466 - components: - - type: Transform - pos: 22.5,-25.5 - parent: 2 - uid: 2474 components: - type: Transform @@ -74540,10 +74643,10 @@ entities: - type: Transform pos: 36.5,-13.5 parent: 2 - - uid: 2683 + - uid: 2659 components: - type: Transform - pos: 30.5,-22.5 + pos: 53.5,-12.5 parent: 2 - uid: 2738 components: @@ -74560,12 +74663,6 @@ entities: - type: Transform pos: 39.5,59.5 parent: 2 - - uid: 2847 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-4.5 - parent: 2 - uid: 2869 components: - type: Transform @@ -75402,10 +75499,11 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,38.5 parent: 2 - - uid: 5602 + - uid: 5568 components: - type: Transform - pos: 26.5,-26.5 + rot: 3.141592653589793 rad + pos: 23.5,-19.5 parent: 2 - uid: 6004 components: @@ -75437,6 +75535,11 @@ entities: - type: Transform pos: 0.5,-43.5 parent: 2 + - uid: 6139 + components: + - type: Transform + pos: 61.5,-19.5 + parent: 2 - uid: 6169 components: - type: Transform @@ -75823,6 +75926,11 @@ entities: - type: Transform pos: 13.5,40.5 parent: 2 + - uid: 6532 + components: + - type: Transform + pos: 52.5,-28.5 + parent: 2 - uid: 6549 components: - type: Transform @@ -75880,6 +75988,16 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,13.5 parent: 2 + - uid: 6827 + components: + - type: Transform + pos: 61.5,-20.5 + parent: 2 + - uid: 6828 + components: + - type: Transform + pos: 58.5,-12.5 + parent: 2 - uid: 7101 components: - type: Transform @@ -75996,6 +76114,16 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,34.5 parent: 2 + - uid: 7485 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 2 + - uid: 7486 + components: + - type: Transform + pos: 24.5,-30.5 + parent: 2 - uid: 7660 components: - type: Transform @@ -76951,6 +77079,11 @@ entities: - type: Transform pos: 29.5,51.5 parent: 2 + - uid: 8892 + components: + - type: Transform + pos: 23.5,-28.5 + parent: 2 - uid: 8946 components: - type: Transform @@ -76984,6 +77117,18 @@ entities: - type: Transform pos: 38.5,-11.5 parent: 2 + - uid: 9211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-19.5 + parent: 2 + - uid: 9232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-19.5 + parent: 2 - uid: 9314 components: - type: Transform @@ -77031,6 +77176,11 @@ entities: - type: Transform pos: 38.5,60.5 parent: 2 + - uid: 9754 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 2 - uid: 9997 components: - type: Transform @@ -77070,6 +77220,11 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-55.5 parent: 2 + - uid: 10797 + components: + - type: Transform + pos: 61.5,-25.5 + parent: 2 - uid: 10800 components: - type: Transform @@ -77086,6 +77241,11 @@ entities: - type: Transform pos: -29.5,-35.5 parent: 2 + - uid: 12561 + components: + - type: Transform + pos: 61.5,-21.5 + parent: 2 - uid: 12673 components: - type: Transform @@ -77109,6 +77269,16 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-46.5 parent: 2 + - uid: 13748 + components: + - type: Transform + pos: 48.5,-12.5 + parent: 2 + - uid: 13947 + components: + - type: Transform + pos: 61.5,-15.5 + parent: 2 - uid: 13973 components: - type: Transform @@ -77272,6 +77442,11 @@ entities: - type: Transform pos: 49.5,12.5 parent: 2 + - uid: 14404 + components: + - type: Transform + pos: 54.5,-12.5 + parent: 2 - uid: 14451 components: - type: Transform @@ -77307,6 +77482,11 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-6.5 parent: 2 + - uid: 15199 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 2 - uid: 15271 components: - type: Transform @@ -77609,6 +77789,31 @@ entities: - type: Transform pos: -41.5,-39.5 parent: 2 + - uid: 16453 + components: + - type: Transform + pos: 4.5,-39.5 + parent: 2 + - uid: 16454 + components: + - type: Transform + pos: 3.5,-39.5 + parent: 2 + - uid: 16458 + components: + - type: Transform + pos: 3.5,-35.5 + parent: 2 + - uid: 16459 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 2 + - uid: 16461 + components: + - type: Transform + pos: 52.5,-12.5 + parent: 2 - proto: GrilleSpawner entities: - uid: 314 @@ -77731,6 +77936,21 @@ entities: - type: Transform pos: -74.5,-20.5 parent: 2 + - uid: 3823 + components: + - type: Transform + pos: 48.5,-28.5 + parent: 2 + - uid: 4031 + components: + - type: Transform + pos: 49.5,-10.5 + parent: 2 + - uid: 4032 + components: + - type: Transform + pos: 51.5,-4.5 + parent: 2 - uid: 6339 components: - type: Transform @@ -78007,12 +78227,39 @@ entities: parent: 2 - proto: HeatExchanger entities: - - uid: 3278 + - uid: 5583 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-17.5 + pos: 24.5,-18.5 parent: 2 + - uid: 5584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-18.5 + parent: 2 + - uid: 5590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-17.5 + parent: 2 + - uid: 5591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-17.5 + parent: 2 + - uid: 5595 + components: + - type: Transform + anchored: False + pos: 22.958916,-30.897873 + parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic - proto: HighSecArmoryLocked entities: - uid: 1901 @@ -78185,10 +78432,10 @@ entities: parent: 2 - proto: HolopadEngineeringAtmosTeg entities: - - uid: 14772 + - uid: 2464 components: - type: Transform - pos: 29.5,-21.5 + pos: 29.5,-24.5 parent: 2 - proto: HolopadEngineeringBreakroom entities: @@ -78262,10 +78509,10 @@ entities: parent: 2 - proto: HolopadGeneralEVAStorage entities: - - uid: 14782 + - uid: 9205 components: - type: Transform - pos: 16.5,-18.5 + pos: 20.5,-13.5 parent: 2 - proto: HolopadGeneralLounge entities: @@ -78677,10 +78924,10 @@ entities: parent: 2 - proto: Igniter entities: - - uid: 16086 + - uid: 4537 components: - type: Transform - pos: 25.53323,-29.068619 + pos: 27.425327,-26.450254 parent: 2 - proto: InflatableDoor entities: @@ -78689,11 +78936,6 @@ entities: - type: Transform pos: 23.5,29.5 parent: 2 - - uid: 5946 - components: - - type: Transform - pos: 27.5,-19.5 - parent: 2 - uid: 13788 components: - type: Transform @@ -78722,27 +78964,11 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-26.5 parent: 2 - - uid: 3000 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-23.5 - parent: 2 - - uid: 6030 - components: - - type: Transform - pos: 24.5,-18.5 - parent: 2 - uid: 7317 components: - type: Transform pos: -6.5,54.5 parent: 2 - - uid: 7802 - components: - - type: Transform - pos: 26.5,-19.5 - parent: 2 - uid: 10379 components: - type: Transform @@ -79068,19 +79294,41 @@ entities: - uid: 1733 components: - type: Transform - pos: 15.481375,-19.251846 + pos: 21.593834,-14.542587 parent: 2 + - type: GasTank + toggleActionEntity: 9012 + - type: Jetpack + toggleActionEntity: 9009 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 9009 + - 9012 - uid: 1734 components: - type: Transform - pos: 15.512625,-19.595596 + pos: 21.578209,-14.323837 parent: 2 + - type: GasTank + toggleActionEntity: 9016 + - type: Jetpack + toggleActionEntity: 9015 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 9015 + - 9016 - proto: Joint entities: - uid: 14420 components: - type: Transform - pos: 32.58913,-37.039413 + pos: 28.622116,-32.039066 parent: 2 - proto: KitchenElectricGrill entities: @@ -79370,6 +79618,22 @@ entities: - Pressed: Toggle - proto: LockableButtonCommand entities: + - uid: 8657 + components: + - type: MetaData + name: lockable button (EVA Emergency Access) + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2840: + - Pressed: Toggle + - Pressed: DoorBolt + 2466: + - Pressed: Toggle + - Pressed: DoorBolt - uid: 11097 components: - type: MetaData @@ -79403,22 +79667,6 @@ entities: - Pressed: Toggle 15279: - Pressed: Toggle - - uid: 14443 - components: - - type: MetaData - name: lockable button (EVA Emergency Access) - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-15.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1710: - - Pressed: Toggle - - Pressed: DoorBolt - 1712: - - Pressed: Toggle - - Pressed: DoorBolt - proto: LockableButtonDetective entities: - uid: 13949 @@ -79433,6 +79681,19 @@ entities: linkedPorts: 14003: - Pressed: Toggle +- proto: LockableButtonEngineering + entities: + - uid: 2911 + components: + - type: MetaData + name: lockable button (Blast Door) + - type: Transform + pos: 21.5,-32.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12655: + - Pressed: Toggle - proto: LockableButtonHeadOfPersonnel entities: - uid: 16196 @@ -79449,10 +79710,6 @@ entities: - Pressed: Toggle 3989: - Pressed: Toggle - 16194: - - Pressed: Toggle - 16193: - - Pressed: Toggle - proto: LockableButtonHeadOfSecurity entities: - uid: 16185 @@ -79747,15 +80004,20 @@ entities: - type: Transform pos: 27.5,-10.5 parent: 2 - - uid: 8072 + - uid: 5569 components: - type: Transform - pos: 26.5,-13.5 + pos: 25.5,-13.5 parent: 2 - - uid: 8087 + - uid: 5572 components: - type: Transform - pos: 26.5,-14.5 + pos: 24.5,-13.5 + parent: 2 + - uid: 12811 + components: + - type: Transform + pos: 23.5,-13.5 parent: 2 - proto: LockerEvidence entities: @@ -79812,11 +80074,6 @@ entities: parent: 2 - proto: LockerMedicalFilled entities: - - uid: 4043 - components: - - type: Transform - pos: 37.5,17.5 - parent: 2 - uid: 4044 components: - type: Transform @@ -79832,6 +80089,16 @@ entities: - type: Transform pos: 40.5,17.5 parent: 2 + - uid: 9121 + components: + - type: Transform + pos: 38.5,20.5 + parent: 2 + - uid: 10916 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 - proto: LockerMedicineFilled entities: - uid: 3998 @@ -79955,11 +80222,6 @@ entities: parent: 2 - proto: LockerSecurityFilled entities: - - uid: 2019 - components: - - type: Transform - pos: -0.5,-16.5 - parent: 2 - uid: 2020 components: - type: Transform @@ -79980,6 +80242,16 @@ entities: - type: Transform pos: -33.5,-33.5 parent: 2 + - uid: 10801 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 + - uid: 12382 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 - proto: LockerSteel entities: - uid: 3430 @@ -80090,11 +80362,6 @@ entities: parent: 2 - proto: LootSpawnerIndustrialFluff entities: - - uid: 1997 - components: - - type: Transform - pos: 25.5,-29.5 - parent: 2 - uid: 2748 components: - type: Transform @@ -80177,47 +80444,15 @@ entities: - type: Transform pos: 30.5,21.5 parent: 2 - - uid: 4063 - components: - - type: Transform - pos: 39.5,20.5 - parent: 2 - uid: 4550 components: - type: Transform pos: 33.5,19.5 parent: 2 -- proto: LootSpawnerRandomCrateEngineering - entities: - - uid: 1565 + - uid: 10774 components: - type: Transform - pos: 28.5,-5.5 - parent: 2 - - uid: 11101 - components: - - type: Transform - pos: 28.5,-8.5 - parent: 2 - - uid: 15249 - components: - - type: Transform - pos: 24.5,-14.5 - parent: 2 - - uid: 15250 - components: - - type: Transform - pos: 43.5,2.5 - parent: 2 - - uid: 15252 - components: - - type: Transform - pos: -10.5,31.5 - parent: 2 - - uid: 15307 - components: - - type: Transform - pos: 31.5,-20.5 + pos: 37.5,17.5 parent: 2 - proto: LootSpawnerScienceMinor entities: @@ -80329,6 +80564,17 @@ entities: parent: 2 - proto: MachineFrame entities: + - uid: 1463 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 2 + - uid: 2310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-16.5 + parent: 2 - uid: 2507 components: - type: Transform @@ -80384,6 +80630,12 @@ entities: - type: Transform pos: -15.5,14.5 parent: 2 + - uid: 16430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-14.5 + parent: 2 - proto: MachineFrameDestroyed entities: - uid: 677 @@ -80391,6 +80643,11 @@ entities: - type: Transform pos: 26.5,38.5 parent: 2 + - uid: 1732 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 2 - uid: 5167 components: - type: Transform @@ -80406,11 +80663,6 @@ entities: - type: Transform pos: 35.5,-28.5 parent: 2 - - uid: 9120 - components: - - type: Transform - pos: 24.5,-12.5 - parent: 2 - uid: 12381 components: - type: Transform @@ -80542,6 +80794,11 @@ entities: parent: 2 - proto: MaintenanceInsulsSpawner entities: + - uid: 1076 + components: + - type: Transform + pos: 43.5,17.5 + parent: 2 - uid: 2472 components: - type: Transform @@ -80552,6 +80809,11 @@ entities: - type: Transform pos: 41.5,-0.5 parent: 2 + - uid: 11353 + components: + - type: Transform + pos: -22.5,9.5 + parent: 2 - uid: 14524 components: - type: Transform @@ -80564,6 +80826,16 @@ entities: - type: Transform pos: -21.5,11.5 parent: 2 + - uid: 1066 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 2 + - uid: 2692 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 - uid: 13693 components: - type: Transform @@ -80614,11 +80886,6 @@ entities: - type: Transform pos: 51.5,9.5 parent: 2 - - uid: 13736 - components: - - type: Transform - pos: 46.5,6.5 - parent: 2 - uid: 13737 components: - type: Transform @@ -80629,15 +80896,10 @@ entities: - type: Transform pos: -2.5,-30.5 parent: 2 - - uid: 13747 + - uid: 15070 components: - type: Transform - pos: 10.5,-31.5 - parent: 2 - - uid: 13748 - components: - - type: Transform - pos: 17.5,-24.5 + pos: 48.5,6.5 parent: 2 - uid: 15265 components: @@ -80696,11 +80958,6 @@ entities: - type: Transform pos: -42.5,-14.5 parent: 2 - - uid: 13701 - components: - - type: Transform - pos: -22.5,9.5 - parent: 2 - uid: 13707 components: - type: Transform @@ -80751,11 +81008,6 @@ entities: - type: Transform pos: 6.5,-31.5 parent: 2 - - uid: 13749 - components: - - type: Transform - pos: 23.5,-15.5 - parent: 2 - uid: 15261 components: - type: Transform @@ -80798,11 +81050,6 @@ entities: - type: Transform pos: 10.5,-25.5 parent: 2 - - uid: 15267 - components: - - type: Transform - pos: 42.5,17.5 - parent: 2 - uid: 16071 components: - type: Transform @@ -80933,7 +81180,7 @@ entities: - uid: 4050 components: - type: Transform - pos: 36.554417,17.508957 + pos: 35.424763,19.667336 parent: 2 - uid: 4058 components: @@ -81102,6 +81349,11 @@ entities: - type: Transform pos: -20.5,20.5 parent: 2 + - uid: 5972 + components: + - type: Transform + pos: 40.5,-35.5 + parent: 2 - uid: 6296 components: - type: Transform @@ -81122,11 +81374,6 @@ entities: - type: Transform pos: 44.5,29.5 parent: 2 - - uid: 12625 - components: - - type: Transform - pos: 19.5,-35.5 - parent: 2 - uid: 14206 components: - type: Transform @@ -81256,6 +81503,16 @@ entities: - type: Transform pos: 37.5,-27.5 parent: 2 + - uid: 1398 + components: + - type: Transform + pos: 40.5,-37.5 + parent: 2 + - uid: 2909 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 2 - uid: 5306 components: - type: Transform @@ -81286,11 +81543,6 @@ entities: - type: Transform pos: 22.5,32.5 parent: 2 - - uid: 12382 - components: - - type: Transform - pos: 19.5,-37.5 - parent: 2 - uid: 14215 components: - type: Transform @@ -81668,10 +81920,10 @@ entities: parent: 2 - proto: PlaqueAtmos entities: - - uid: 15273 + - uid: 1766 components: - type: Transform - pos: 23.5,-32.5 + pos: 28.5,-29.5 parent: 2 - proto: PlasmaCanister entities: @@ -81680,16 +81932,21 @@ entities: - type: Transform pos: 40.5,-26.5 parent: 2 - - uid: 2438 - components: - - type: Transform - pos: 40.5,-37.5 - parent: 2 - uid: 2726 components: - type: Transform pos: 40.5,-27.5 parent: 2 + - uid: 2910 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 2 + - uid: 8249 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 2 - proto: PlasmaReinforcedWindowDirectional entities: - uid: 12827 @@ -82002,6 +82259,13 @@ entities: - type: Transform pos: -18.5,-47.5 parent: 2 +- proto: PosterLegitFoamForceAd + entities: + - uid: 2970 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 2 - proto: PosterLegitNanotrasenLogo entities: - uid: 3227 @@ -82346,11 +82610,11 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,9.5 parent: 2 - - uid: 1153 + - uid: 1099 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,-12.5 + pos: 21.5,-31.5 parent: 2 - uid: 3119 components: @@ -82374,6 +82638,12 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-8.5 parent: 2 + - uid: 5671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-31.5 + parent: 2 - uid: 6512 components: - type: Transform @@ -82385,10 +82655,11 @@ entities: - type: Transform pos: -33.5,28.5 parent: 2 - - uid: 8073 + - uid: 7481 components: - type: Transform - pos: 41.5,-8.5 + rot: 3.141592653589793 rad + pos: 23.5,-31.5 parent: 2 - uid: 8084 components: @@ -82402,12 +82673,6 @@ entities: rot: 3.141592653589793 rad pos: 42.5,-6.5 parent: 2 - - uid: 10443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-12.5 - parent: 2 - uid: 11519 components: - type: Transform @@ -82419,6 +82684,12 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-41.5 parent: 2 + - uid: 12678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-17.5 + parent: 2 - uid: 12701 components: - type: Transform @@ -82430,18 +82701,6 @@ entities: - type: Transform pos: 28.5,-1.5 parent: 2 - - uid: 12717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-28.5 - parent: 2 - - uid: 12740 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-28.5 - parent: 2 - uid: 12741 components: - type: Transform @@ -82626,19 +82885,8 @@ entities: - uid: 13543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-29.5 - parent: 2 - - uid: 13544 - components: - - type: Transform - pos: 19.5,-13.5 - parent: 2 - - uid: 13545 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-14.5 + rot: 1.5707963267948966 rad + pos: 23.5,-12.5 parent: 2 - uid: 13546 components: @@ -82857,12 +83105,6 @@ entities: - type: Transform pos: -53.5,-28.5 parent: 2 - - uid: 14686 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-24.5 - parent: 2 - uid: 14687 components: - type: Transform @@ -83006,12 +83248,22 @@ entities: parent: 2 - proto: Poweredlight entities: + - uid: 140 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 2 - uid: 318 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-27.5 parent: 2 + - uid: 1654 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 2 - uid: 2204 components: - type: Transform @@ -83042,6 +83294,17 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-34.5 parent: 2 + - uid: 5945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-26.5 + parent: 2 + - uid: 5977 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 2 - uid: 7451 components: - type: Transform @@ -83105,12 +83368,6 @@ entities: - type: Transform pos: 38.5,-14.5 parent: 2 - - uid: 12723 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-25.5 - parent: 2 - uid: 12738 components: - type: Transform @@ -83257,11 +83514,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-34.5 parent: 2 - - uid: 12835 - components: - - type: Transform - pos: 3.5,-36.5 - parent: 2 - uid: 12836 components: - type: Transform @@ -83545,12 +83797,23 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,20.5 parent: 2 + - uid: 13701 + components: + - type: Transform + pos: 41.5,-8.5 + parent: 2 - uid: 13968 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,29.5 parent: 2 + - uid: 14782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-15.5 + parent: 2 - uid: 15422 components: - type: Transform @@ -83567,12 +83830,6 @@ entities: - type: Transform pos: -6.5,-12.5 parent: 2 - - uid: 15660 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-18.5 - parent: 2 - uid: 15939 components: - type: Transform @@ -83708,12 +83965,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,23.5 parent: 2 - - uid: 13628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-17.5 - parent: 2 - uid: 13964 components: - type: Transform @@ -83907,18 +84158,23 @@ entities: parent: 2 - proto: PoweredWarmSmallLight entities: - - uid: 1066 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-6.5 - parent: 2 - uid: 1068 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-15.5 parent: 2 + - uid: 1655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-34.5 + parent: 2 + - uid: 1726 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 2 - uid: 2202 components: - type: Transform @@ -83947,24 +84203,12 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,-10.5 parent: 2 - - uid: 8276 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-26.5 - parent: 2 - uid: 8371 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,13.5 parent: 2 - - uid: 9630 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-31.5 - parent: 2 - uid: 10621 components: - type: Transform @@ -84016,12 +84260,6 @@ entities: - type: Transform pos: 5.5,3.5 parent: 2 - - uid: 12837 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-34.5 - parent: 2 - uid: 12838 components: - type: Transform @@ -84074,11 +84312,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-39.5 parent: 2 - - uid: 12862 - components: - - type: Transform - pos: 0.5,-32.5 - parent: 2 - uid: 12866 components: - type: Transform @@ -84137,6 +84370,18 @@ entities: - type: Transform pos: 31.5,26.5 parent: 2 + - uid: 13736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-27.5 + parent: 2 + - uid: 13747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-6.5 + parent: 2 - uid: 14111 components: - type: Transform @@ -84154,6 +84399,12 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-2.5 parent: 2 + - uid: 14912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-27.5 + parent: 2 - uid: 15594 components: - type: Transform @@ -84223,6 +84474,12 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,1.5 parent: 2 + - uid: 16460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-34.5 + parent: 2 - proto: Protolathe entities: - uid: 16379 @@ -84290,11 +84547,6 @@ entities: - type: Transform pos: 35.5,-3.5 parent: 2 - - uid: 1713 - components: - - type: Transform - pos: 15.5,-19.5 - parent: 2 - uid: 1841 components: - type: Transform @@ -84305,11 +84557,6 @@ entities: - type: Transform pos: 39.5,-8.5 parent: 2 - - uid: 2632 - components: - - type: Transform - pos: 22.5,-30.5 - parent: 2 - uid: 2633 components: - type: Transform @@ -84320,6 +84567,11 @@ entities: - type: Transform pos: 36.5,-23.5 parent: 2 + - uid: 2683 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 2 - uid: 2741 components: - type: Transform @@ -84526,6 +84778,11 @@ entities: - type: Transform pos: 43.5,-6.5 parent: 2 + - uid: 12556 + components: + - type: Transform + pos: 25.5,-32.5 + parent: 2 - uid: 12742 components: - type: Transform @@ -84547,11 +84804,6 @@ entities: - type: Transform pos: 42.5,5.5 parent: 2 - - uid: 15266 - components: - - type: Transform - pos: 42.5,17.5 - parent: 2 - uid: 16045 components: - type: Transform @@ -84657,18 +84909,18 @@ entities: rot: 3.141592653589793 rad pos: 4.5,2.5 parent: 2 - - uid: 1563 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-16.5 - parent: 2 - uid: 7644 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,47.5 parent: 2 + - uid: 7802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-15.5 + parent: 2 - uid: 14307 components: - type: Transform @@ -84770,30 +85022,12 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,32.5 parent: 2 - - uid: 16279 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-14.5 - parent: 2 - - uid: 16281 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-15.5 - parent: 2 - uid: 16283 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-7.5 parent: 2 - - uid: 16284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-16.5 - parent: 2 - uid: 16287 components: - type: Transform @@ -85413,6 +85647,16 @@ entities: - type: Transform pos: -13.5,-22.5 parent: 2 + - uid: 2314 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 2 + - uid: 5549 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 2 - uid: 8128 components: - type: Transform @@ -85448,6 +85692,11 @@ entities: - type: Transform pos: 25.5,39.5 parent: 2 + - uid: 12717 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 2 - uid: 12786 components: - type: Transform @@ -85818,36 +86067,16 @@ entities: - type: Transform pos: 37.5,-13.5 parent: 2 - - uid: 14912 - components: - - type: Transform - pos: 37.5,-7.5 - parent: 2 - uid: 14914 components: - type: Transform pos: 34.5,-2.5 parent: 2 - - uid: 14915 - components: - - type: Transform - pos: 25.5,-14.5 - parent: 2 - - uid: 14916 - components: - - type: Transform - pos: 27.5,-16.5 - parent: 2 - uid: 14917 components: - type: Transform pos: 27.5,-9.5 parent: 2 - - uid: 14918 - components: - - type: Transform - pos: 23.5,-13.5 - parent: 2 - uid: 14919 components: - type: Transform @@ -85883,11 +86112,6 @@ entities: - type: Transform pos: 42.5,-17.5 parent: 2 - - uid: 14927 - components: - - type: Transform - pos: 24.5,-28.5 - parent: 2 - uid: 14929 components: - type: Transform @@ -85903,11 +86127,6 @@ entities: - type: Transform pos: 35.5,-33.5 parent: 2 - - uid: 14932 - components: - - type: Transform - pos: 22.5,-21.5 - parent: 2 - uid: 14936 components: - type: Transform @@ -86193,6 +86412,11 @@ entities: - type: Transform pos: -29.5,30.5 parent: 2 + - uid: 15249 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 2 - uid: 15591 components: - type: Transform @@ -86227,11 +86451,6 @@ entities: - type: Transform pos: -20.5,25.5 parent: 2 - - uid: 14404 - components: - - type: Transform - pos: 36.5,10.5 - parent: 2 - uid: 14416 components: - type: Transform @@ -86379,20 +86598,10 @@ entities: - type: Transform pos: 32.5,-42.5 parent: 2 - - uid: 2314 - components: - - type: Transform - pos: 22.5,-23.5 - parent: 2 - - uid: 2315 - components: - - type: Transform - pos: 22.5,-24.5 - parent: 2 - uid: 2317 components: - type: Transform - pos: 22.5,-25.5 + pos: 23.5,-28.5 parent: 2 - uid: 2318 components: @@ -86404,6 +86613,11 @@ entities: - type: Transform pos: 31.5,-42.5 parent: 2 + - uid: 2326 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 2 - uid: 2381 components: - type: Transform @@ -86422,6 +86636,11 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-35.5 parent: 2 + - uid: 2967 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 2 - uid: 5153 components: - type: Transform @@ -86437,8 +86656,24 @@ entities: - type: Transform pos: -21.5,24.5 parent: 2 + - uid: 5974 + components: + - type: Transform + pos: 24.5,-30.5 + parent: 2 + - uid: 12687 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 2 - proto: ReinforcedWindow entities: + - uid: 79 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-19.5 + parent: 2 - uid: 325 components: - type: Transform @@ -86447,7 +86682,8 @@ entities: - uid: 1122 components: - type: Transform - pos: 30.5,-22.5 + rot: 3.141592653589793 rad + pos: 25.5,-19.5 parent: 2 - uid: 1125 components: @@ -86519,16 +86755,6 @@ entities: - type: Transform pos: 34.5,-16.5 parent: 2 - - uid: 1737 - components: - - type: Transform - pos: 14.5,-17.5 - parent: 2 - - uid: 1738 - components: - - type: Transform - pos: 14.5,-18.5 - parent: 2 - uid: 1745 components: - type: Transform @@ -86600,6 +86826,11 @@ entities: - type: Transform pos: 0.5,-41.5 parent: 2 + - uid: 2137 + components: + - type: Transform + pos: 3.5,-35.5 + parent: 2 - uid: 2208 components: - type: Transform @@ -86670,10 +86901,11 @@ entities: - type: Transform pos: 45.5,-11.5 parent: 2 - - uid: 2892 + - uid: 2963 components: - type: Transform - pos: 26.5,-26.5 + rot: 3.141592653589793 rad + pos: 23.5,-19.5 parent: 2 - uid: 3193 components: @@ -87327,11 +87559,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-34.5 parent: 2 - - uid: 8249 - components: - - type: Transform - pos: 28.5,-26.5 - parent: 2 - uid: 8786 components: - type: Transform @@ -87350,12 +87577,39 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-42.5 parent: 2 + - uid: 10763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-19.5 + parent: 2 + - uid: 12554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-19.5 + parent: 2 - uid: 12713 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-39.5 parent: 2 + - uid: 12835 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 2 + - uid: 12837 + components: + - type: Transform + pos: 3.5,-39.5 + parent: 2 + - uid: 12862 + components: + - type: Transform + pos: 4.5,-39.5 + parent: 2 - uid: 12879 components: - type: Transform @@ -87444,6 +87698,11 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-6.5 parent: 2 + - uid: 14918 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 2 - uid: 14934 components: - type: Transform @@ -87495,7 +87754,7 @@ entities: - uid: 16085 components: - type: Transform - pos: 40.723774,-31.505486 + pos: 27.644077,-26.481504 parent: 2 - proto: ResearchAndDevelopmentServer entities: @@ -87649,11 +87908,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-2.5 parent: 2 - - uid: 14639 - components: - - type: Transform - pos: 36.5,-7.5 - parent: 2 - uid: 14640 components: - type: Transform @@ -87705,6 +87959,11 @@ entities: rot: 3.141592653589793 rad pos: -21.5,13.5 parent: 2 + - uid: 14916 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 2 - proto: Screwdriver entities: - uid: 6208 @@ -87758,23 +88017,6 @@ entities: - type: Transform pos: 27.340157,37.101376 parent: 2 -- proto: ShardGlassReinforced - entities: - - uid: 15363 - components: - - type: Transform - pos: 27.305939,-20.319242 - parent: 2 - - uid: 15664 - components: - - type: Transform - pos: 24.850214,-19.334867 - parent: 2 - - uid: 15665 - components: - - type: Transform - pos: 28.334589,-19.319242 - parent: 2 - proto: SheetGlass entities: - uid: 6573 @@ -87823,10 +88065,8 @@ entities: - uid: 1251 components: - type: Transform - parent: 1249 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 35.553658,-4.4178224 + parent: 2 - proto: SheetPlastic entities: - uid: 6572 @@ -87844,24 +88084,17 @@ entities: - uid: 1072 components: - type: Transform - pos: 27.149055,-15.4506 + pos: 27.173573,-15.335665 parent: 2 - proto: SheetRGlass entities: - uid: 1250 components: - type: Transform - parent: 1249 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 37.506783,-4.4334474 + parent: 2 - proto: SheetSteel entities: - - uid: 2636 - components: - - type: Transform - pos: 22.577665,-30.35228 - parent: 2 - uid: 2886 components: - type: Transform @@ -87887,6 +88120,16 @@ entities: - type: Transform pos: -9.539493,22.367113 parent: 2 + - uid: 12557 + components: + - type: Transform + pos: 27.53975,-25.585697 + parent: 2 + - uid: 12684 + components: + - type: Transform + pos: 25.478117,-32.50736 + parent: 2 - uid: 15303 components: - type: Transform @@ -87899,11 +88142,6 @@ entities: - type: Transform pos: 37.594734,-4.4439025 parent: 2 - - uid: 7812 - components: - - type: Transform - pos: 25.567467,-27.737255 - parent: 2 - uid: 8273 components: - type: Transform @@ -88225,18 +88463,6 @@ entities: - type: Transform pos: 8.5,-16.5 parent: 2 - - uid: 16193 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-18.5 - parent: 2 - - uid: 16194 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-17.5 - parent: 2 - proto: ShuttleConsoleCircuitboard entities: - uid: 2192 @@ -88278,6 +88504,18 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-3.5 parent: 2 + - uid: 2449 + components: + - type: MetaData + name: signal button (Blast Door) + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12655: + - Pressed: Toggle - uid: 2643 components: - type: MetaData @@ -88354,18 +88592,6 @@ entities: linkedPorts: 9968: - Pressed: Toggle - - uid: 12608 - components: - - type: MetaData - name: signal button (Blast Door) - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-26.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2468: - - Pressed: Toggle - uid: 14428 components: - type: MetaData @@ -89320,6 +89546,11 @@ entities: parent: 2 - proto: SignDirectionalSolar entities: + - uid: 1615 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 2 - uid: 15068 components: - type: Transform @@ -89330,12 +89561,6 @@ entities: - type: Transform pos: 13.5,-28.5 parent: 2 - - uid: 15070 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-12.5 - parent: 2 - uid: 15071 components: - type: Transform @@ -89384,11 +89609,6 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,30.5 parent: 2 - - uid: 15988 - components: - - type: Transform - pos: 18.5,-22.5 - parent: 2 - uid: 15989 components: - type: Transform @@ -89452,30 +89672,27 @@ entities: - type: Transform pos: 61.5,-28.5 parent: 2 - - uid: 1355 - components: - - type: Transform - pos: 53.5,-28.5 - parent: 2 - uid: 1448 components: - type: Transform pos: 44.5,-18.5 parent: 2 - - uid: 1449 - components: - - type: Transform - pos: 53.5,-12.5 - parent: 2 - uid: 1450 components: - type: Transform pos: 61.5,-12.5 parent: 2 - - uid: 1600 + - uid: 1496 components: - type: Transform - pos: 61.5,-20.5 + rot: 1.5707963267948966 rad + pos: 50.5,-12.5 + parent: 2 + - uid: 1498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-12.5 parent: 2 - uid: 1601 components: @@ -89513,11 +89730,6 @@ entities: - type: Transform pos: -29.5,-27.5 parent: 2 - - uid: 6139 - components: - - type: Transform - pos: 22.5,-15.5 - parent: 2 - uid: 6283 components: - type: Transform @@ -89528,6 +89740,30 @@ entities: - type: Transform pos: 8.5,-29.5 parent: 2 + - uid: 7945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-17.5 + parent: 2 + - uid: 8292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-23.5 + parent: 2 + - uid: 8355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-28.5 + parent: 2 + - uid: 8911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-28.5 + parent: 2 - uid: 10472 components: - type: Transform @@ -89555,16 +89791,16 @@ entities: parent: 2 - proto: SignEngine entities: + - uid: 75 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 2 - uid: 12736 components: - type: Transform pos: 38.5,-8.5 parent: 2 - - uid: 12744 - components: - - type: Transform - pos: 30.5,-17.5 - parent: 2 - uid: 12745 components: - type: Transform @@ -89592,11 +89828,10 @@ entities: parent: 2 - proto: SignEVA entities: - - uid: 1719 + - uid: 10759 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-14.5 + pos: 17.5,-12.5 parent: 2 - proto: SignExamroom entities: @@ -89607,16 +89842,16 @@ entities: parent: 2 - proto: SignFlammableMed entities: + - uid: 5548 + components: + - type: Transform + pos: 27.5,-29.5 + parent: 2 - uid: 6138 components: - type: Transform pos: 30.5,-24.5 parent: 2 - - uid: 12774 - components: - - type: Transform - pos: 22.5,-26.5 - parent: 2 - uid: 15260 components: - type: Transform @@ -89735,16 +89970,16 @@ entities: - type: Transform pos: 34.5,-41.5 parent: 2 - - uid: 12770 - components: - - type: Transform - pos: 22.5,-20.5 - parent: 2 - uid: 12772 components: - type: Transform pos: 27.5,17.5 parent: 2 + - uid: 15250 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 2 - proto: SignPlaque entities: - uid: 10366 @@ -89894,10 +90129,10 @@ entities: - type: Transform pos: 2.5,-19.5 parent: 2 - - uid: 12768 + - uid: 12679 components: - type: Transform - pos: 29.5,-26.5 + pos: 28.5,-25.5 parent: 2 - uid: 12771 components: @@ -90224,7 +90459,7 @@ entities: - uid: 15614 components: - type: Transform - pos: 30.43975,-11.320211 + pos: 30.423004,-11.108994 parent: 2 - proto: SoapNT entities: @@ -90540,6 +90775,11 @@ entities: - type: Transform pos: 11.5,-53.5 parent: 2 + - uid: 15248 + components: + - type: Transform + pos: 13.5,-55.5 + parent: 2 - uid: 15759 components: - type: Transform @@ -90565,6 +90805,46 @@ entities: - type: Transform pos: 12.5,-59.5 parent: 2 + - uid: 16276 + components: + - type: Transform + pos: 35.5,50.5 + parent: 2 + - uid: 16278 + components: + - type: Transform + pos: 35.5,52.5 + parent: 2 + - uid: 16279 + components: + - type: Transform + pos: 31.5,56.5 + parent: 2 + - uid: 16281 + components: + - type: Transform + pos: 33.5,46.5 + parent: 2 + - uid: 16284 + components: + - type: Transform + pos: 34.5,42.5 + parent: 2 + - uid: 16318 + components: + - type: Transform + pos: 35.5,44.5 + parent: 2 + - uid: 16319 + components: + - type: Transform + pos: 11.5,-43.5 + parent: 2 + - uid: 16320 + components: + - type: Transform + pos: 11.5,-51.5 + parent: 2 - uid: 16350 components: - type: Transform @@ -90590,6 +90870,16 @@ entities: - type: Transform pos: 32.5,58.5 parent: 2 + - uid: 16407 + components: + - type: Transform + pos: 11.5,-59.5 + parent: 2 + - uid: 16408 + components: + - type: Transform + pos: 10.5,-53.5 + parent: 2 - proto: SolarPanelBroken entities: - uid: 1299 @@ -90810,15 +91100,15 @@ entities: parent: 2 - proto: SpaceHeaterAnchored entities: - - uid: 8075 + - uid: 2729 components: - type: Transform - pos: 24.5,-30.5 + pos: 27.5,-30.5 parent: 2 - - uid: 10439 + - uid: 2892 components: - type: Transform - pos: 25.5,-30.5 + pos: 28.5,-30.5 parent: 2 - proto: SpacemenFigureSpawner entities: @@ -90917,11 +91207,6 @@ entities: - type: Transform pos: 23.5,-10.5 parent: 2 - - uid: 15248 - components: - - type: Transform - pos: 25.5,-28.5 - parent: 2 - uid: 16215 components: - type: Transform @@ -91137,6 +91422,11 @@ entities: parent: 2 - proto: SpawnPointCargoTechnician entities: + - uid: 8942 + components: + - type: Transform + pos: 8.5,38.5 + parent: 2 - uid: 10498 components: - type: Transform @@ -91265,16 +91555,16 @@ entities: parent: 2 - proto: SpawnPointMedicalIntern entities: - - uid: 10474 - components: - - type: Transform - pos: 37.5,18.5 - parent: 2 - uid: 10475 components: - type: Transform pos: 38.5,18.5 parent: 2 + - uid: 12184 + components: + - type: Transform + pos: 40.5,18.5 + parent: 2 - proto: SpawnPointMime entities: - uid: 348 @@ -91419,6 +91709,11 @@ entities: - type: Transform pos: -25.5,15.5 parent: 2 + - uid: 10765 + components: + - type: Transform + pos: -14.5,24.5 + parent: 2 - proto: SpawnPointSecurityCadet entities: - uid: 10483 @@ -91433,6 +91728,11 @@ entities: parent: 2 - proto: SpawnPointSecurityOfficer entities: + - uid: 1090 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 - uid: 10485 components: - type: Transform @@ -91477,6 +91777,11 @@ entities: - type: Transform pos: 27.5,-14.5 parent: 2 + - uid: 12065 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 2 - uid: 14822 components: - type: Transform @@ -91522,6 +91827,18 @@ entities: parent: 2 - proto: StairDark entities: + - uid: 1058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-14.5 + parent: 2 + - uid: 1059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-13.5 + parent: 2 - uid: 6665 components: - type: Transform @@ -91677,23 +91994,12 @@ entities: rot: 3.141592653589793 rad pos: 7.5,32.5 parent: 2 - - uid: 16276 - components: - - type: Transform - pos: 33.5,-16.5 - parent: 2 - uid: 16277 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-5.5 parent: 2 - - uid: 16278 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-14.5 - parent: 2 - uid: 16282 components: - type: Transform @@ -91805,16 +92111,6 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,-6.5 parent: 2 - - uid: 16319 - components: - - type: Transform - pos: 16.5,-16.5 - parent: 2 - - uid: 16320 - components: - - type: Transform - pos: 15.5,-16.5 - parent: 2 - uid: 16321 components: - type: Transform @@ -92056,11 +92352,17 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-18.5 parent: 2 - - uid: 2017 + - uid: 9073 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-18.5 + rot: 1.5707963267948966 rad + pos: 26.5,-14.5 + parent: 2 + - uid: 9074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-13.5 parent: 2 - proto: Stool entities: @@ -92163,16 +92465,26 @@ entities: - type: Transform pos: 38.5,-26.5 parent: 2 - - uid: 2439 - components: - - type: Transform - pos: 40.5,-35.5 - parent: 2 - uid: 2555 components: - type: Transform pos: 39.5,-26.5 parent: 2 + - uid: 4043 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 2 + - uid: 4063 + components: + - type: Transform + pos: 27.5,-27.5 + parent: 2 + - uid: 10714 + components: + - type: Transform + pos: 19.5,-35.5 + parent: 2 - proto: SubstationBasic entities: - uid: 674 @@ -92189,13 +92501,6 @@ entities: - type: Transform pos: 40.5,-3.5 parent: 2 - - uid: 2708 - components: - - type: MetaData - name: substation (Engineering) - - type: Transform - pos: 24.5,-15.5 - parent: 2 - uid: 2777 components: - type: MetaData @@ -92210,10 +92515,17 @@ entities: - type: Transform pos: -30.5,-27.5 parent: 2 - - uid: 4139 + - uid: 3903 components: - type: MetaData name: substation (Medical) + - type: Transform + pos: 42.5,17.5 + parent: 2 + - uid: 4139 + components: + - type: MetaData + name: substation (Engineering) - type: Transform pos: 43.5,1.5 parent: 2 @@ -92322,6 +92634,16 @@ entities: parent: 2 - proto: SuitStorageEngi entities: + - uid: 2323 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 2 + - uid: 2325 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 2 - uid: 8055 components: - type: Transform @@ -92339,38 +92661,43 @@ entities: parent: 2 - proto: SuitStorageEVA entities: - - uid: 1726 + - uid: 83 components: - type: Transform - pos: 17.5,-16.5 + pos: 21.5,-17.5 parent: 2 - uid: 1727 components: - type: Transform pos: 18.5,-16.5 parent: 2 - - uid: 1728 + - uid: 7746 components: - type: Transform - pos: 19.5,-16.5 + pos: 21.5,-15.5 + parent: 2 + - uid: 10856 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 2 + - uid: 10908 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 2 + - uid: 12648 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 2 + - uid: 12708 + components: + - type: Transform + pos: 18.5,-17.5 parent: 2 - proto: SuitStorageEVAAlternate entities: - - uid: 1729 - components: - - type: Transform - pos: 17.5,-19.5 - parent: 2 - - uid: 1730 - components: - - type: Transform - pos: 18.5,-19.5 - parent: 2 - - uid: 1731 - components: - - type: Transform - pos: 19.5,-19.5 - parent: 2 - uid: 4250 components: - type: Transform @@ -92916,6 +93243,31 @@ entities: - SurveillanceCameraEngineering nameSet: True id: E12 - Atmos West + - uid: 14577 + components: + - type: MetaData + name: camera (E10 - TEG East) + - type: Transform + pos: 28.5,-24.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: E10 - TEG East + - uid: 14772 + components: + - type: MetaData + name: camera (E20 - TEG West) + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-22.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: E20 - TEG West - uid: 15096 components: - type: MetaData @@ -93066,19 +93418,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: E04 - Engineering South - - uid: 15108 - components: - - type: MetaData - name: camera (E10 - TEG) - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-24.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: E10 - TEG - uid: 15110 components: - type: MetaData @@ -93106,6 +93445,18 @@ entities: id: E16 - Containment Field - proto: SurveillanceCameraGeneral entities: + - uid: 12647 + components: + - type: MetaData + name: camera (G22 - EVA Storage) + - type: Transform + pos: 19.5,-18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G22 - EVA Storage - uid: 15133 components: - type: MetaData @@ -93375,18 +93726,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: G21 - Tool Room - - uid: 15199 - components: - - type: MetaData - name: camera (G22 - EVA Storage) - - type: Transform - pos: 15.5,-19.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: G22 - EVA Storage - uid: 15201 components: - type: MetaData @@ -94393,6 +94732,11 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-20.5 parent: 2 + - uid: 9005 + components: + - type: Transform + pos: 28.5,-32.5 + parent: 2 - uid: 9401 components: - type: Transform @@ -94549,12 +94893,6 @@ entities: - type: Transform pos: 10.5,28.5 parent: 2 - - uid: 14405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-37.5 - parent: 2 - uid: 15215 components: - type: Transform @@ -94742,6 +95080,24 @@ entities: rot: 3.141592653589793 rad pos: 27.5,5.5 parent: 2 + - uid: 2123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-40.5 + parent: 2 + - uid: 2124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-40.5 + parent: 2 + - uid: 2127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-40.5 + parent: 2 - uid: 2251 components: - type: Transform @@ -94795,11 +95151,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,19.5 parent: 2 - - uid: 4003 - components: - - type: Transform - pos: 36.5,17.5 - parent: 2 - uid: 4013 components: - type: Transform @@ -94940,6 +95291,12 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,19.5 parent: 2 + - uid: 9217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-25.5 + parent: 2 - uid: 9504 components: - type: Transform @@ -94970,6 +95327,11 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-44.5 parent: 2 + - uid: 12808 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 2 - uid: 12856 components: - type: Transform @@ -95332,12 +95694,6 @@ entities: - type: Transform pos: 34.5,3.5 parent: 2 - - uid: 5084 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,20.5 - parent: 2 - uid: 6721 components: - type: Transform @@ -95349,6 +95705,11 @@ entities: - type: Transform pos: 36.5,15.5 parent: 2 + - uid: 9075 + components: + - type: Transform + pos: 37.5,17.5 + parent: 2 - uid: 13519 components: - type: Transform @@ -95533,33 +95894,6 @@ entities: - type: Transform pos: -11.5,-34.5 parent: 2 - - uid: 2123 - components: - - type: Transform - pos: -0.5,-40.5 - parent: 2 - - uid: 2124 - components: - - type: Transform - pos: 0.5,-40.5 - parent: 2 - - uid: 2127 - components: - - type: Transform - pos: 1.5,-40.5 - parent: 2 - - uid: 2181 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-28.5 - parent: 2 - - uid: 2183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-29.5 - parent: 2 - uid: 2189 components: - type: Transform @@ -95763,11 +96097,6 @@ entities: - type: Transform pos: -34.5,-46.5 parent: 2 - - uid: 6361 - components: - - type: Transform - pos: 25.5,-27.5 - parent: 2 - uid: 6390 components: - type: Transform @@ -95837,6 +96166,12 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-15.5 parent: 2 + - uid: 8099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-15.5 + parent: 2 - uid: 9396 components: - type: Transform @@ -96044,26 +96379,26 @@ entities: parent: 2 - proto: TegCenter entities: - - uid: 1155 + - uid: 10798 components: - type: Transform - pos: 26.5,-21.5 + pos: 23.5,-23.5 parent: 2 - proto: TegCirculator entities: - - uid: 2459 + - uid: 1095 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-20.5 + pos: 23.5,-22.5 parent: 2 - type: PointLight color: '#FF3300FF' - - uid: 2462 + - uid: 7814 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,-22.5 + pos: 23.5,-24.5 parent: 2 - type: PointLight color: '#FF3300FF' @@ -96153,37 +96488,52 @@ entities: - uid: 2535 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 43.5,-27.5 parent: 2 + - type: Physics + bodyType: Dynamic - uid: 2572 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 43.5,-28.5 parent: 2 + - type: Physics + bodyType: Dynamic - uid: 6378 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 43.5,-26.5 parent: 2 + - type: Physics + bodyType: Dynamic - proto: TeslaGenerator entities: - uid: 1174 components: - type: Transform + anchored: True rot: 3.141592653589793 rad pos: 53.5,-20.5 parent: 2 + - type: Physics + bodyType: Static - proto: TeslaGroundingRod entities: - uid: 1443 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 45.5,-27.5 parent: 2 + - type: Physics + bodyType: Dynamic - uid: 1458 components: - type: Transform @@ -96199,9 +96549,12 @@ entities: - uid: 6377 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 45.5,-28.5 parent: 2 + - type: Physics + bodyType: Dynamic - proto: ThrusterFlatpack entities: - uid: 6180 @@ -96216,6 +96569,13 @@ entities: - type: Transform pos: -39.499214,-42.809715 parent: 2 +- proto: TobaccoSeeds + entities: + - uid: 15669 + components: + - type: Transform + pos: -12.81931,-47.75391 + parent: 2 - proto: ToiletDirtyWater entities: - uid: 2164 @@ -96283,6 +96643,7 @@ entities: pos: -37.43985,-19.687504 parent: 2 - type: Contraband + allowedJobs: [] allowedDepartments: - Security severity: Minor @@ -96600,11 +96961,6 @@ entities: - type: Transform pos: -35.5,-42.5 parent: 2 - - uid: 9121 - components: - - type: Transform - pos: 23.5,-12.5 - parent: 2 - uid: 15844 components: - type: Transform @@ -96664,6 +97020,13 @@ entities: - type: Transform pos: 7.5,-6.5 parent: 2 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 5574 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 2 - proto: VendingMachineBooze entities: - uid: 8593 @@ -96742,11 +97105,6 @@ entities: - type: Transform pos: -20.5,-6.5 parent: 2 - - uid: 13514 - components: - - type: Transform - pos: -23.5,-17.5 - parent: 2 - proto: VendingMachineClothing entities: - uid: 4174 @@ -96860,10 +97218,10 @@ entities: parent: 2 - proto: VendingMachineMediDrobe entities: - - uid: 4027 + - uid: 10914 components: - type: Transform - pos: 38.5,20.5 + pos: 36.5,17.5 parent: 2 - proto: VendingMachineNutri entities: @@ -96877,6 +97235,13 @@ entities: - type: Transform pos: -9.5,-46.5 parent: 2 +- proto: VendingMachinePride + entities: + - uid: 13514 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 - proto: VendingMachineRoboDrobe entities: - uid: 6735 @@ -96914,10 +97279,10 @@ entities: parent: 2 - proto: VendingMachineSecDrobe entities: - - uid: 5671 + - uid: 9120 components: - type: Transform - pos: 2.5,-18.5 + pos: -0.5,-16.5 parent: 2 - proto: VendingMachineSeeds entities: @@ -96928,6 +97293,11 @@ entities: parent: 2 - proto: VendingMachineSeedsUnlocked entities: + - uid: 1576 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 2 - uid: 14196 components: - type: Transform @@ -96954,10 +97324,10 @@ entities: - type: Transform pos: 43.5,-30.5 parent: 2 - - uid: 1732 + - uid: 1738 components: - type: Transform - pos: 16.5,-19.5 + pos: 21.5,-13.5 parent: 2 - uid: 4199 components: @@ -97125,11 +97495,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-7.5 parent: 2 - - uid: 1059 - components: - - type: Transform - pos: 24.5,-26.5 - parent: 2 - uid: 1077 components: - type: Transform @@ -97155,6 +97520,12 @@ entities: - type: Transform pos: 30.5,-0.5 parent: 2 + - uid: 1093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-17.5 + parent: 2 - uid: 1094 components: - type: Transform @@ -97180,12 +97551,6 @@ entities: - type: Transform pos: 34.5,0.5 parent: 2 - - uid: 1137 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-25.5 - parent: 2 - uid: 1138 components: - type: Transform @@ -97196,22 +97561,6 @@ entities: - type: Transform pos: 41.5,-13.5 parent: 2 - - uid: 1159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-13.5 - parent: 2 - - uid: 1188 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 2 - - uid: 1189 - components: - - type: Transform - pos: 24.5,-16.5 - parent: 2 - uid: 1191 components: - type: Transform @@ -97330,12 +97679,6 @@ entities: - type: Transform pos: 37.5,-32.5 parent: 2 - - uid: 1413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-22.5 - parent: 2 - uid: 1421 components: - type: Transform @@ -97346,17 +97689,18 @@ entities: - type: Transform pos: 39.5,-40.5 parent: 2 + - uid: 1432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-14.5 + parent: 2 - uid: 1453 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-13.5 parent: 2 - - uid: 1463 - components: - - type: Transform - pos: 53.5,-12.5 - parent: 2 - uid: 1465 components: - type: Transform @@ -97367,26 +97711,11 @@ entities: - type: Transform pos: 55.5,-12.5 parent: 2 - - uid: 1469 - components: - - type: Transform - pos: 61.5,-20.5 - parent: 2 - uid: 1471 components: - type: Transform pos: 61.5,-18.5 parent: 2 - - uid: 1474 - components: - - type: Transform - pos: 53.5,-28.5 - parent: 2 - - uid: 1476 - components: - - type: Transform - pos: 54.5,-28.5 - parent: 2 - uid: 1478 components: - type: Transform @@ -97417,35 +97746,6 @@ entities: - type: Transform pos: 61.5,-13.5 parent: 2 - - uid: 1557 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-22.5 - parent: 2 - - uid: 1611 - components: - - type: Transform - pos: 22.5,-20.5 - parent: 2 - - uid: 1613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-22.5 - parent: 2 - - uid: 1615 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-22.5 - parent: 2 - - uid: 1632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-19.5 - parent: 2 - uid: 1640 components: - type: Transform @@ -97468,51 +97768,11 @@ entities: - type: Transform pos: 38.5,-8.5 parent: 2 - - uid: 1703 - components: - - type: Transform - pos: 17.5,-15.5 - parent: 2 - - uid: 1706 - components: - - type: Transform - pos: 19.5,-15.5 - parent: 2 - uid: 1707 components: - type: Transform pos: 14.5,-15.5 parent: 2 - - uid: 1708 - components: - - type: Transform - pos: 14.5,-16.5 - parent: 2 - - uid: 1711 - components: - - type: Transform - pos: 15.5,-20.5 - parent: 2 - - uid: 1716 - components: - - type: Transform - pos: 20.5,-17.5 - parent: 2 - - uid: 1718 - components: - - type: Transform - pos: 20.5,-19.5 - parent: 2 - - uid: 1722 - components: - - type: Transform - pos: 18.5,-20.5 - parent: 2 - - uid: 1723 - components: - - type: Transform - pos: 17.5,-20.5 - parent: 2 - uid: 1739 components: - type: Transform @@ -97575,6 +97835,11 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-23.5 parent: 2 + - uid: 1763 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 2 - uid: 1764 components: - type: Transform @@ -97954,6 +98219,12 @@ entities: - type: Transform pos: -1.5,-36.5 parent: 2 + - uid: 1979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,19.5 + parent: 2 - uid: 1981 components: - type: Transform @@ -98006,6 +98277,12 @@ entities: - type: Transform pos: 4.5,-31.5 parent: 2 + - uid: 2019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-18.5 + parent: 2 - uid: 2059 components: - type: Transform @@ -98056,11 +98333,6 @@ entities: - type: Transform pos: 5.5,-39.5 parent: 2 - - uid: 2093 - components: - - type: Transform - pos: 3.5,-35.5 - parent: 2 - uid: 2097 components: - type: Transform @@ -98081,22 +98353,6 @@ entities: - type: Transform pos: 2.5,-41.5 parent: 2 - - uid: 2182 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-26.5 - parent: 2 - - uid: 2184 - components: - - type: Transform - pos: 19.5,-27.5 - parent: 2 - - uid: 2191 - components: - - type: Transform - pos: 19.5,-30.5 - parent: 2 - uid: 2213 components: - type: Transform @@ -98113,16 +98369,6 @@ entities: - type: Transform pos: 38.5,-32.5 parent: 2 - - uid: 2255 - components: - - type: Transform - pos: 22.5,-32.5 - parent: 2 - - uid: 2258 - components: - - type: Transform - pos: 21.5,-32.5 - parent: 2 - uid: 2261 components: - type: Transform @@ -98244,6 +98490,29 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-34.5 parent: 2 + - uid: 2459 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 2 + - uid: 2498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-19.5 + parent: 2 + - uid: 2499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-19.5 + parent: 2 + - uid: 2509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-16.5 + parent: 2 - uid: 2518 components: - type: Transform @@ -98265,11 +98534,6 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,-2.5 parent: 2 - - uid: 2530 - components: - - type: Transform - pos: 24.5,-27.5 - parent: 2 - uid: 2544 components: - type: Transform @@ -98280,11 +98544,10 @@ entities: - type: Transform pos: 34.5,-7.5 parent: 2 - - uid: 2573 + - uid: 2559 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-13.5 + pos: 18.5,-19.5 parent: 2 - uid: 2599 components: @@ -98296,10 +98559,11 @@ entities: - type: Transform pos: 25.5,-5.5 parent: 2 - - uid: 2638 + - uid: 2636 components: - type: Transform - pos: 20.5,-30.5 + rot: 1.5707963267948966 rad + pos: 57.5,-28.5 parent: 2 - uid: 2639 components: @@ -98327,11 +98591,6 @@ entities: - type: Transform pos: 16.5,-32.5 parent: 2 - - uid: 2659 - components: - - type: Transform - pos: 18.5,-32.5 - parent: 2 - uid: 2662 components: - type: Transform @@ -98357,6 +98616,12 @@ entities: - type: Transform pos: 39.5,-13.5 parent: 2 + - uid: 2732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-17.5 + parent: 2 - uid: 2746 components: - type: Transform @@ -98390,16 +98655,29 @@ entities: rot: 3.141592653589793 rad pos: -24.5,45.5 parent: 2 - - uid: 2978 - components: - - type: Transform - pos: 24.5,-29.5 - parent: 2 - uid: 2993 components: - type: Transform pos: -31.5,29.5 parent: 2 + - uid: 3018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-28.5 + parent: 2 + - uid: 3019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-24.5 + parent: 2 + - uid: 3020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-17.5 + parent: 2 - uid: 3031 components: - type: Transform @@ -98955,6 +99233,12 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,26.5 parent: 2 + - uid: 4003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-12.5 + parent: 2 - uid: 4005 components: - type: Transform @@ -98967,10 +99251,11 @@ entities: rot: 3.141592653589793 rad pos: -24.5,52.5 parent: 2 - - uid: 4031 + - uid: 4027 components: - type: Transform - pos: 30.5,-26.5 + rot: 1.5707963267948966 rad + pos: 57.5,-12.5 parent: 2 - uid: 4127 components: @@ -100174,6 +100459,16 @@ entities: - type: Transform pos: 40.5,-7.5 parent: 2 + - uid: 5560 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 2 + - uid: 5565 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 2 - uid: 5997 components: - type: Transform @@ -100838,11 +101133,6 @@ entities: - type: Transform pos: 31.5,-3.5 parent: 2 - - uid: 7907 - components: - - type: Transform - pos: 36.5,-7.5 - parent: 2 - uid: 7917 components: - type: Transform @@ -100932,16 +101222,6 @@ entities: rot: 3.141592653589793 rad pos: 49.5,13.5 parent: 2 - - uid: 7944 - components: - - type: Transform - pos: 22.5,-29.5 - parent: 2 - - uid: 7945 - components: - - type: Transform - pos: 21.5,-28.5 - parent: 2 - uid: 7965 components: - type: Transform @@ -101160,12 +101440,23 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,49.5 parent: 2 + - uid: 8655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,18.5 + parent: 2 - uid: 8828 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,47.5 parent: 2 + - uid: 8891 + components: + - type: Transform + pos: 29.5,-25.5 + parent: 2 - uid: 8927 components: - type: Transform @@ -101186,12 +101477,56 @@ entities: - type: Transform pos: 18.5,-40.5 parent: 2 + - uid: 9002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-19.5 + parent: 2 + - uid: 9017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-22.5 + parent: 2 - uid: 9041 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,35.5 parent: 2 + - uid: 9213 + components: + - type: Transform + pos: 27.5,-29.5 + parent: 2 + - uid: 9234 + components: + - type: Transform + pos: 24.5,-31.5 + parent: 2 + - uid: 9242 + components: + - type: Transform + pos: 24.5,-28.5 + parent: 2 + - uid: 9630 + components: + - type: Transform + pos: 20.5,-28.5 + parent: 2 + - uid: 9758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-18.5 + parent: 2 + - uid: 10440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-27.5 + parent: 2 - uid: 10537 components: - type: Transform @@ -101202,6 +101537,16 @@ entities: - type: Transform pos: -5.5,-42.5 parent: 2 + - uid: 10910 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 2 + - uid: 10911 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 2 - uid: 10924 components: - type: Transform @@ -101223,6 +101568,57 @@ entities: - type: Transform pos: -7.5,58.5 parent: 2 + - uid: 12555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-16.5 + parent: 2 + - uid: 12558 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 2 + - uid: 12579 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 2 + - uid: 12656 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 2 + - uid: 12669 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 2 + - uid: 12680 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 2 + - uid: 12689 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 2 + - uid: 12733 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 2 + - uid: 12740 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 2 + - uid: 12768 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 2 - uid: 12926 components: - type: Transform @@ -101235,17 +101631,51 @@ entities: rot: 3.141592653589793 rad pos: -24.5,46.5 parent: 2 + - uid: 13545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,16.5 + parent: 2 - uid: 13616 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-3.5 parent: 2 + - uid: 13628 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 2 - uid: 13723 components: - type: Transform pos: 25.5,35.5 parent: 2 + - uid: 13749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,16.5 + parent: 2 + - uid: 13798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,16.5 + parent: 2 + - uid: 13832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,19.5 + parent: 2 + - uid: 13833 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 2 - uid: 14190 components: - type: Transform @@ -101544,21 +101974,11 @@ entities: - type: Transform pos: 35.5,0.5 parent: 2 - - uid: 75 - components: - - type: Transform - pos: 29.5,-26.5 - parent: 2 - uid: 76 components: - type: Transform pos: 25.5,-14.5 parent: 2 - - uid: 79 - components: - - type: Transform - pos: 25.5,-15.5 - parent: 2 - uid: 81 components: - type: Transform @@ -101569,11 +101989,6 @@ entities: - type: Transform pos: 25.5,-8.5 parent: 2 - - uid: 83 - components: - - type: Transform - pos: 18.5,-23.5 - parent: 2 - uid: 87 components: - type: Transform @@ -101604,11 +102019,6 @@ entities: - type: Transform pos: 36.5,-26.5 parent: 2 - - uid: 100 - components: - - type: Transform - pos: 23.5,-16.5 - parent: 2 - uid: 101 components: - type: Transform @@ -101694,51 +102104,16 @@ entities: - type: Transform pos: 37.5,-40.5 parent: 2 - - uid: 153 - components: - - type: Transform - pos: 19.5,-28.5 - parent: 2 - - uid: 155 - components: - - type: Transform - pos: 20.5,-22.5 - parent: 2 - - uid: 160 - components: - - type: Transform - pos: 52.5,-12.5 - parent: 2 - - uid: 163 - components: - - type: Transform - pos: 54.5,-12.5 - parent: 2 - uid: 165 components: - type: Transform pos: 61.5,-22.5 parent: 2 - - uid: 167 - components: - - type: Transform - pos: 61.5,-21.5 - parent: 2 - - uid: 168 - components: - - type: Transform - pos: 61.5,-19.5 - parent: 2 - uid: 177 components: - type: Transform pos: 51.5,-28.5 parent: 2 - - uid: 183 - components: - - type: Transform - pos: 52.5,-28.5 - parent: 2 - uid: 184 components: - type: Transform @@ -101840,21 +102215,6 @@ entities: - type: Transform pos: 34.5,-1.5 parent: 2 - - uid: 1028 - components: - - type: Transform - pos: 19.5,-26.5 - parent: 2 - - uid: 1029 - components: - - type: Transform - pos: 18.5,-24.5 - parent: 2 - - uid: 1031 - components: - - type: Transform - pos: 22.5,-18.5 - parent: 2 - uid: 1032 components: - type: Transform @@ -101880,40 +102240,15 @@ entities: - type: Transform pos: -12.5,-23.5 parent: 2 - - uid: 1076 - components: - - type: Transform - pos: 18.5,-15.5 - parent: 2 - uid: 1085 components: - type: Transform pos: 14.5,-19.5 parent: 2 - - uid: 1093 + - uid: 1111 components: - type: Transform - pos: 20.5,-15.5 - parent: 2 - - uid: 1095 - components: - - type: Transform - pos: 20.5,-16.5 - parent: 2 - - uid: 1096 - components: - - type: Transform - pos: 20.5,-20.5 - parent: 2 - - uid: 1099 - components: - - type: Transform - pos: 19.5,-20.5 - parent: 2 - - uid: 1100 - components: - - type: Transform - pos: 16.5,-20.5 + pos: 17.5,-19.5 parent: 2 - uid: 1112 components: @@ -102221,11 +102556,6 @@ entities: - type: Transform pos: 2.5,-31.5 parent: 2 - - uid: 1576 - components: - - type: Transform - pos: 2.5,-35.5 - parent: 2 - uid: 1607 components: - type: Transform @@ -102246,6 +102576,11 @@ entities: - type: Transform pos: -13.5,-32.5 parent: 2 + - uid: 1639 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 2 - uid: 1645 components: - type: Transform @@ -102266,16 +102601,6 @@ entities: - type: Transform pos: -1.5,-40.5 parent: 2 - - uid: 1654 - components: - - type: Transform - pos: 3.5,-39.5 - parent: 2 - - uid: 1655 - components: - - type: Transform - pos: 4.5,-39.5 - parent: 2 - uid: 1660 components: - type: Transform @@ -102361,16 +102686,6 @@ entities: - type: Transform pos: -0.5,-41.5 parent: 2 - - uid: 1741 - components: - - type: Transform - pos: 19.5,-32.5 - parent: 2 - - uid: 1752 - components: - - type: Transform - pos: 19.5,-29.5 - parent: 2 - uid: 1756 components: - type: Transform @@ -102381,11 +102696,6 @@ entities: - type: Transform pos: 21.5,-38.5 parent: 2 - - uid: 1796 - components: - - type: Transform - pos: 23.5,-32.5 - parent: 2 - uid: 1800 components: - type: Transform @@ -102426,11 +102736,6 @@ entities: - type: Transform pos: 39.5,-36.5 parent: 2 - - uid: 1829 - components: - - type: Transform - pos: 21.5,-30.5 - parent: 2 - uid: 1830 components: - type: Transform @@ -102591,11 +102896,6 @@ entities: - type: Transform pos: 22.5,-12.5 parent: 2 - - uid: 1971 - components: - - type: Transform - pos: 25.5,-26.5 - parent: 2 - uid: 1972 components: - type: Transform @@ -102606,16 +102906,6 @@ entities: - type: Transform pos: 42.5,-13.5 parent: 2 - - uid: 1978 - components: - - type: Transform - pos: 22.5,-21.5 - parent: 2 - - uid: 1979 - components: - - type: Transform - pos: 24.5,-28.5 - parent: 2 - uid: 1980 components: - type: Transform @@ -102858,6 +103148,11 @@ entities: - type: Transform pos: -46.5,-28.5 parent: 2 + - uid: 2321 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 2 - uid: 2322 components: - type: Transform @@ -102883,6 +103178,11 @@ entities: - type: Transform pos: -68.5,-28.5 parent: 2 + - uid: 2530 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 2 - uid: 2635 components: - type: Transform @@ -102933,11 +103233,29 @@ entities: - type: Transform pos: -51.5,-10.5 parent: 2 + - uid: 2695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-12.5 + parent: 2 + - uid: 2708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-12.5 + parent: 2 - uid: 2715 components: - type: Transform pos: -47.5,-14.5 parent: 2 + - uid: 2721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-16.5 + parent: 2 - uid: 2723 components: - type: Transform @@ -103008,6 +103326,17 @@ entities: - type: Transform pos: 24.5,13.5 parent: 2 + - uid: 2832 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 2 + - uid: 2847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-23.5 + parent: 2 - uid: 2889 components: - type: Transform @@ -103088,6 +103417,12 @@ entities: - type: Transform pos: 26.5,25.5 parent: 2 + - uid: 2983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-16.5 + parent: 2 - uid: 3003 components: - type: Transform @@ -103114,6 +103449,18 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-34.5 parent: 2 + - uid: 3016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-28.5 + parent: 2 + - uid: 3017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-28.5 + parent: 2 - uid: 3028 components: - type: Transform @@ -103905,11 +104252,6 @@ entities: - type: Transform pos: 36.5,-29.5 parent: 2 - - uid: 3856 - components: - - type: Transform - pos: 23.5,-13.5 - parent: 2 - uid: 3860 components: - type: Transform @@ -104448,11 +104790,6 @@ entities: - type: Transform pos: 29.5,-15.5 parent: 2 - - uid: 4537 - components: - - type: Transform - pos: 22.5,-26.5 - parent: 2 - uid: 4544 components: - type: Transform @@ -104498,16 +104835,6 @@ entities: - type: Transform pos: 50.5,16.5 parent: 2 - - uid: 4597 - components: - - type: Transform - pos: 21.5,-29.5 - parent: 2 - - uid: 4599 - components: - - type: Transform - pos: 21.5,-26.5 - parent: 2 - uid: 4660 components: - type: Transform @@ -104753,6 +105080,17 @@ entities: - type: Transform pos: 8.5,41.5 parent: 2 + - uid: 5563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,19.5 + parent: 2 + - uid: 5570 + components: + - type: Transform + pos: 20.5,-31.5 + parent: 2 - uid: 5953 components: - type: Transform @@ -104801,6 +105139,12 @@ entities: - type: Transform pos: -19.5,-50.5 parent: 2 + - uid: 7215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-14.5 + parent: 2 - uid: 7223 components: - type: Transform @@ -104830,12 +105174,28 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,26.5 parent: 2 + - uid: 8509 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 2 - uid: 8617 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,44.5 parent: 2 + - uid: 8656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,17.5 + parent: 2 + - uid: 8890 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 2 - uid: 8926 components: - type: Transform @@ -104858,6 +105218,11 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,55.5 parent: 2 + - uid: 10474 + components: + - type: Transform + pos: 28.5,-25.5 + parent: 2 - uid: 10535 components: - type: Transform @@ -104868,6 +105233,11 @@ entities: - type: Transform pos: -4.5,-42.5 parent: 2 + - uid: 10761 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 - uid: 11862 components: - type: Transform @@ -104884,6 +105254,27 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-36.5 parent: 2 + - uid: 12608 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 2 + - uid: 12649 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 2 + - uid: 12650 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 2 + - uid: 12682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-16.5 + parent: 2 - uid: 12902 components: - type: Transform @@ -104917,6 +105308,34 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,44.5 parent: 2 + - uid: 13836 + components: + - type: Transform + pos: 15.5,-24.5 + parent: 2 + - uid: 13856 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 2 + - uid: 13979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,16.5 + parent: 2 + - uid: 13980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,17.5 + parent: 2 + - uid: 13981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,18.5 + parent: 2 - uid: 14189 components: - type: Transform @@ -104997,6 +105416,18 @@ entities: - type: Transform pos: -7.5,-42.5 parent: 2 + - uid: 14442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-28.5 + parent: 2 + - uid: 14443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-29.5 + parent: 2 - uid: 14519 components: - type: Transform @@ -105848,17 +106279,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,1.5 parent: 2 - - uid: 1704 - components: - - type: Transform - pos: 17.5,-14.5 - parent: 2 - - uid: 2197 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,16.5 - parent: 2 - uid: 2290 components: - type: Transform @@ -105888,18 +106308,6 @@ entities: - type: Transform pos: 23.5,35.5 parent: 2 - - uid: 2915 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-25.5 - parent: 2 - - uid: 2919 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-24.5 - parent: 2 - uid: 2921 components: - type: Transform @@ -106311,12 +106719,6 @@ entities: - type: Transform pos: -5.5,33.5 parent: 2 - - uid: 3582 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,16.5 - parent: 2 - uid: 3617 components: - type: Transform @@ -106334,12 +106736,6 @@ entities: - type: Transform pos: 24.5,-4.5 parent: 2 - - uid: 3622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,16.5 - parent: 2 - uid: 3625 components: - type: Transform @@ -106552,11 +106948,6 @@ entities: - type: Transform pos: 34.5,20.5 parent: 2 - - uid: 3823 - components: - - type: Transform - pos: 41.5,19.5 - parent: 2 - uid: 3824 components: - type: Transform @@ -107622,6 +108013,11 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-3.5 parent: 2 + - uid: 1133 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 2 - uid: 1263 components: - type: Transform @@ -108115,26 +108511,6 @@ entities: - type: Transform pos: 8.5,-27.5 parent: 2 - - uid: 6532 - components: - - type: Transform - pos: 16.5,-26.5 - parent: 2 - - uid: 6533 - components: - - type: Transform - pos: 16.5,-23.5 - parent: 2 - - uid: 6538 - components: - - type: Transform - pos: 15.5,-23.5 - parent: 2 - - uid: 6539 - components: - - type: Transform - pos: 15.5,-26.5 - parent: 2 - uid: 6540 components: - type: Transform @@ -108150,11 +108526,6 @@ entities: - type: Transform pos: 13.5,-23.5 parent: 2 - - uid: 6630 - components: - - type: Transform - pos: 13.5,-22.5 - parent: 2 - uid: 6654 components: - type: Transform @@ -108511,11 +108882,6 @@ entities: - type: Transform pos: 43.5,13.5 parent: 2 - - uid: 7215 - components: - - type: Transform - pos: 43.5,16.5 - parent: 2 - uid: 7224 components: - type: Transform @@ -108541,16 +108907,6 @@ entities: - type: Transform pos: 16.5,27.5 parent: 2 - - uid: 7390 - components: - - type: Transform - pos: 41.5,17.5 - parent: 2 - - uid: 7391 - components: - - type: Transform - pos: 41.5,18.5 - parent: 2 - uid: 7463 components: - type: Transform @@ -109535,48 +109891,48 @@ entities: parent: 2 - proto: WarningCO2 entities: - - uid: 2380 + - uid: 14280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-38.5 + pos: 37.5,-38.5 parent: 2 - proto: WarningN2 entities: - - uid: 2254 + - uid: 14218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-34.5 + pos: 37.5,-34.5 parent: 2 - proto: WarningO2 entities: - - uid: 2454 + - uid: 13985 + components: + - type: Transform + pos: 37.5,-36.5 + parent: 2 +- proto: WarningPlasma + entities: + - uid: 13984 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-36.5 parent: 2 -- proto: WarningPlasma - entities: - - uid: 2326 - components: - - type: Transform - pos: 37.5,-36.5 - parent: 2 - proto: WarningTritium entities: - - uid: 2327 + - uid: 13983 components: - type: Transform - pos: 37.5,-34.5 + rot: 1.5707963267948966 rad + pos: 22.5,-34.5 parent: 2 - proto: WarningWaste entities: - - uid: 2325 + - uid: 13982 components: - type: Transform - pos: 37.5,-38.5 + rot: 1.5707963267948966 rad + pos: 22.5,-38.5 parent: 2 - proto: WaterCooler entities: @@ -109637,11 +109993,6 @@ entities: - type: Transform pos: 2.5,-29.5 parent: 2 - - uid: 2972 - components: - - type: Transform - pos: 16.5,-25.5 - parent: 2 - uid: 4824 components: - type: Transform @@ -109686,10 +110037,10 @@ entities: parent: 2 - proto: WaterVaporCanister entities: - - uid: 2437 + - uid: 5564 components: - type: Transform - pos: 40.5,-39.5 + pos: 19.5,-39.5 parent: 2 - uid: 8140 components: @@ -109735,6 +110086,18 @@ entities: - type: Transform pos: -4.9341073,-22.457027 parent: 2 +- proto: WeaponRifleFoam + entities: + - uid: 2968 + components: + - type: Transform + pos: 17.525375,-30.562181 + parent: 2 + - uid: 9231 + components: + - type: Transform + pos: 17.57225,-31.343431 + parent: 2 - proto: WeaponSubMachineGunWt550 entities: - uid: 5643 @@ -109790,6 +110153,11 @@ entities: parent: 2 - proto: WelderMini entities: + - uid: 2487 + components: + - type: Transform + pos: 28.490875,25.780224 + parent: 2 - uid: 8484 components: - type: Transform @@ -109802,11 +110170,6 @@ entities: - type: Transform pos: 6.5,-25.5 parent: 2 - - uid: 2970 - components: - - type: Transform - pos: 16.5,-24.5 - parent: 2 - uid: 4399 components: - type: Transform @@ -110601,18 +110964,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-27.5 parent: 2 - - uid: 1990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-27.5 - parent: 2 - - uid: 2100 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-28.5 - parent: 2 - uid: 2888 components: - type: Transform @@ -110858,12 +111209,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-35.5 parent: 2 - - uid: 5945 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-17.5 - parent: 2 - uid: 6360 components: - type: Transform @@ -111015,24 +111360,6 @@ entities: - type: Transform pos: -13.5,26.5 parent: 2 - - uid: 15661 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-18.5 - parent: 2 - - uid: 15662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-19.5 - parent: 2 - - uid: 15663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-17.5 - parent: 2 - uid: 16165 components: - type: Transform diff --git a/Resources/Prototypes/Maps/elkridge.yml b/Resources/Prototypes/Maps/elkridge.yml index f0b71e9921..bbf5193d13 100644 --- a/Resources/Prototypes/Maps/elkridge.yml +++ b/Resources/Prototypes/Maps/elkridge.yml @@ -2,8 +2,8 @@ id: Elkridge mapName: 'Elkridge Depot' mapPath: /Maps/elkridge.yml - minPlayers: 7 - maxPlayers: 35 + minPlayers: 15 + maxPlayers: 45 stations: Elkridge: stationProto: StandardNanotrasenStation @@ -38,7 +38,7 @@ #medical ChiefMedicalOfficer: [ 1, 1 ] Chemist: [ 2, 2 ] - MedicalDoctor: [ 3, 3 ] + MedicalDoctor: [ 2, 3 ] MedicalIntern: [ 2, 2 ] Paramedic: [ 1, 1 ] Psychologist: [ 1, 1 ] From fe064adaecf3acd3bc4896214fa4d6efaeb759cd Mon Sep 17 00:00:00 2001 From: IProduceWidgets <107586145+IProduceWidgets@users.noreply.github.com> Date: Sun, 9 Feb 2025 20:24:10 -0500 Subject: [PATCH 168/313] Allows pacifists to throw Items with DamageOnLand (#31060) --- .../Damage/Components/DamageOnLandComponent.cs | 6 ++++++ .../Damage/Systems/DamageOnLandSystem.cs | 17 +++-------------- 2 files changed, 9 insertions(+), 14 deletions(-) diff --git a/Content.Server/Damage/Components/DamageOnLandComponent.cs b/Content.Server/Damage/Components/DamageOnLandComponent.cs index b7c5644f82..b2af72bd12 100644 --- a/Content.Server/Damage/Components/DamageOnLandComponent.cs +++ b/Content.Server/Damage/Components/DamageOnLandComponent.cs @@ -5,10 +5,16 @@ namespace Content.Server.Damage.Components [RegisterComponent] public sealed partial class DamageOnLandComponent : Component { + /// + /// Should this entity be damaged when it lands regardless of its resistances? + /// [DataField("ignoreResistances")] [ViewVariables(VVAccess.ReadWrite)] public bool IgnoreResistances = false; + /// + /// How much damage. + /// [DataField("damage", required: true)] [ViewVariables(VVAccess.ReadWrite)] public DamageSpecifier Damage = default!; diff --git a/Content.Server/Damage/Systems/DamageOnLandSystem.cs b/Content.Server/Damage/Systems/DamageOnLandSystem.cs index 2e72e76e6d..3cf103e6ee 100644 --- a/Content.Server/Damage/Systems/DamageOnLandSystem.cs +++ b/Content.Server/Damage/Systems/DamageOnLandSystem.cs @@ -1,10 +1,12 @@ using Content.Server.Damage.Components; -using Content.Shared.CombatMode.Pacification; using Content.Shared.Damage; using Content.Shared.Throwing; namespace Content.Server.Damage.Systems { + /// + /// Damages the thrown item when it lands. + /// public sealed class DamageOnLandSystem : EntitySystem { [Dependency] private readonly DamageableSystem _damageableSystem = default!; @@ -13,19 +15,6 @@ namespace Content.Server.Damage.Systems { base.Initialize(); SubscribeLocalEvent(DamageOnLand); - SubscribeLocalEvent(OnAttemptPacifiedThrow); - } - - /// - /// Prevent Pacified entities from throwing damaging items. - /// - private void OnAttemptPacifiedThrow(Entity ent, ref AttemptPacifiedThrowEvent args) - { - // Allow healing projectiles, forbid any that do damage: - if (ent.Comp.Damage.AnyPositive()) - { - args.Cancel("pacified-cannot-throw"); - } } private void DamageOnLand(EntityUid uid, DamageOnLandComponent component, ref LandEvent args) From 2f30bc3c0d8afb3fa1f451905a79c5a4140bfbbb Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 10 Feb 2025 01:25:18 +0000 Subject: [PATCH 169/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 69bfa6c871..a98359da59 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Jophire - changes: - - message: VIM mech now can open maintenance doors! - type: Add - id: 7425 - time: '2024-09-23T13:08:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32302 - author: lzk228 changes: - message: Cadet PDA now has wanted list cartridge preinstalled. @@ -3897,3 +3890,10 @@ id: 7924 time: '2025-02-09T23:24:13.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34988 +- author: IProduceWidgets + changes: + - message: Pacifists can throw things that break. + type: Fix + id: 7925 + time: '2025-02-10T01:24:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31060 From 03bab30fc692f8b00bc44622105af4bd5091a12b Mon Sep 17 00:00:00 2001 From: GaussiArson <193122004+GaussiArson@users.noreply.github.com> Date: Sun, 9 Feb 2025 21:33:55 -0500 Subject: [PATCH 170/313] Wooden Grip for Antique Laser Pistol (#34886) * wooden grip on antique laser, changes description to match. * darker grip * update meta.json * redesigned shape similar to ps3moira, edited mag to match, changed lights colors to match each other * fixing an only SLIGHTLY catastrophic fuckup with an experimental inhand sprite that I didn't mean to save and sleepily added to the previous commit * I DID IT AGAIN --------- Co-authored-by: gaussiarson-admin --- .../Weapons/Guns/Battery/battery_guns.yml | 2 +- .../Guns/Battery/antiquelasergun.rsi/base.png | Bin 1035 -> 1020 bytes .../Guns/Battery/antiquelasergun.rsi/icon.png | Bin 1040 -> 1043 bytes .../antiquelasergun.rsi/inhand-left.png | Bin 655 -> 480 bytes .../antiquelasergun.rsi/mag-unshaded-1.png | Bin 168 -> 173 bytes .../antiquelasergun.rsi/mag-unshaded-2.png | Bin 179 -> 185 bytes .../antiquelasergun.rsi/mag-unshaded-3.png | Bin 177 -> 187 bytes .../antiquelasergun.rsi/mag-unshaded-4.png | Bin 196 -> 205 bytes .../Battery/antiquelasergun.rsi/meta.json | 2 +- 9 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml index 28cfe6b1a9..c51aef5fe8 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -550,7 +550,7 @@ name: antique laser pistol parent: [BaseWeaponBatterySmall, BaseGrandTheftContraband] id: WeaponAntiqueLaser - description: This is an antique laser pistol. All craftsmanship is of the highest quality. It is decorated with assistant leather and chrome. The object menaces with spikes of energy. + description: This is an antique laser pistol. All craftsmanship is of the highest quality. It is decorated with a mahogany grip and chrome filigree. The object menaces with spikes of energy. On the item is an image of a captain and a clown. The clown is dead. The captain is striking a heroic pose. components: - type: Sprite sprite: Objects/Weapons/Guns/Battery/antiquelasergun.rsi diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/base.png index 003858cf9d9011a7a0c5c407ff724bc8135b9424..d3b86df95e71752351c7a55e5a6ff73528f66c3f 100644 GIT binary patch delta 999 zcmVb_-BYyw^b5ch_0Itp)=>Px&wn;=mR9J=Wmd{TkWf;dlV>|p9ft4S% ztze?!tb@ckp~fY>5DspH8sotOky{TNHJYB}ApQg1+(eU2JQ)urD{dghUnk0j>?S6r z##nYzDG8(%idi}qW|-F3Lz$t4Y18$x7rvKy^SsZz-|u{%_kVfcfeT#V0uLEdvk6sI zg*!G3qiLQW#>U4)<+#!iYqmzP8F4fk^!-McQyz3$wjgrsjQB_sci;xx;7O-twEH5tu(ACxTKxFNrqoV_W zQmNG7LeREt5q}DW*t<0TzZTA{eBM@GEEe(nTHB;Azmf39PfxziouwOI z{La!1?^z!Muq=y0p}_F)Fp8o8@QAyRt{+6!e`==Nl>LohV3qZbTvQsqKx?hn71_ng1t4C6`=NWru1jlhiC=^1|G|vea zu1oXt^M6Dl5icIJZ5x`Lh~;vbAfR6!A$@P#69K1fRk8lzk6-Wd?2}=N#i9fVP1AhK zx42j&yl^e{>-$_T2OycI3DmWrABJRGT)i^ZV0}Fbg#w0QuyxeMVKu^G4CAkLn4t707pPi2-N3l@sp|xfc^b_;_*12-MUR@f0S@I%=Gkh1EGsR zARtMSgyT5Kvg|t0TmV2k9&a@bKsX$xvtYmW@9@go3sg^t1A%~4tyaCfYPE{H@#@iP z4+!AgfpQk^-M@8It9Qr0mL!=40AIqk1=NdZ2d}<4C*At_HUP)lzqR|?1upRL@gIaY Vl|A9(&N~1A002ovPDHLkV1nV$SMTn0nX+K`LTO42i5uW}DVvVrnvJ z{CP-!vy<&4TilCazcA$Yd-=WhzVm(W{RYl)j{iFp`z98P0e_%r8m4IqX}|Q^t4ew$ zeWrl9Pjh^@aaGuDnx-kHXuNQm005&!@9+-rtX^wVRr_&LEK!DnXi~lNc zVf+0vol7Q@c)eZ#+U@pT0sx6bf^R=~{>(|ANoTBeWZ?yF)s>mv!sfTQeok^uR9-crEl^M46Ibi3WVQ?R?Mq3hqDtakw@ zl}bZNeDv;Hy!`swsdLe2)FNXivA@4>Nq=;71c2M^?h_~!3IODC069vf5`{v6_4RcC z;_*1uY88M^r$fD72fzb#E<8#;p9dfi2%J(xlIWM>6BZU0I6gjBd_Eu0p8};;tBG2z zcIqu7k$;F%E|&)`AvqzMrYY0Y)57I-DZkvh!xN7^Os!TEQXM-9X_HF%{eCN^tJCSg zJ-3s@sQW;U)p7eze*WPmk3SOR;NU<3L?V%JEZ^E%zhtrmLlaAcLLmSlOCaSR8yi!6 zJ|7bk6958Gip3(ju2U|TMJN=a^-z%)zXA7~Z-3BeG}zhM0l+W}+-|orK0ZF0z~tm4 zQ&Urzrr8hJYSC;qr7B9Z*|bIpV0n3&?d@%<)v7olZgssKl}g3(2iq7rpgsy{WHK2?1uB(_EGq!rZdY;q8r~0yM1o{8$;`|QPhUh_ z{`eZI$7lU7o6O#9jYi{?&Fyv%FF_;{8E~{CnM?{m93CEuR4Rq)@!^>Y6AT7fU0t>O z?2oFdip%9vy4|iqzxR}Zo6rfFOomh{HE&XlU@(Yhs{g%z_R`z*P6(^2s`Pq2>s+tb zLpGirLwi7uR5Ti;)oQW1xjB-^Q_sBwfcAG=QJMyTW5P2NkWDD}vayEY*6&BkXVMF0Q*07*qoM6N<$f(|C=hyVZp diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/icon.png b/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/icon.png index 88be89b378008138417f791c22e480d438159c55..099c45a0af01e4b111d880caa9ce84b462981f7a 100644 GIT binary patch delta 1022 zcmVPx&%}GQ-R9J=WmCsKjWf;dlV>`4|=*o}U zj*E$kT?RMI2{kV1g>Y~cYK#XDWJx^qXf!>^LHq~2xrrv5crqSL4B5a*Jy|wnH!+$T zW7*kCNtSekBGR$YVHjTzWrpd}7Ch~R&t={`@B6&Zcb?~Y-+vb_xZr}vjMQ!-nM?|I ztm}H)b!YjWwMXy~M*sn!D2iu)4Glz#Q&CzI-YPH&A3tE;XVzC(8m#+T5AjcGzzc|;rR4PR{90s6X zub&72P*s&5zkKuDL0^44w>JEt5bfp| znx>&?T1NryhMnwwkpQ_|&dWd~5)pu~ZTsXDKaXWuEzkMt>Z)XI{UI(7_M!~-0#L4)Y*tJ* z{yviW`+xgIFx(?0)t4B3VF=r{MJyIWRaGw&E^e0Q=H^Hw5}rM1Sr)Xp5o@&?K|s4Q zME?FmPXs_$R~GQW>Up{J(@8aJGz>pGgIvA(`85`T#VPtEGQ{0Yb(en7QaWo2ar0K+hl zWm)R(?(Qt0x3`zRzCH$J%PWDKetm0SGELJvN&qu6Gb}GJQ!bZ zz;_H=F(_N&`nA!f)cY|E16|kII0&=v1el(lK6${Bv&bLknVg(te0-dGz3!a?_Z~3pg+1xk4Z}aYfR%9|60dN5H#2`7+ zupd`l0PO7SkWQ!h{PrC}eG2h-oT;g)rgwlYfj~f#BnjKLk!9J2$i&Gyw5< zoKRom{eSJoJkD`o_uY4K90#}Y{B-I80i3!}9>sn8Hx3&0?)tYbNu~kNGT^xd_(hzD s*Wa0yZvSuxfWwEsp4aVy3m!lJ0Z9p+l7Mkv%>V!Z07*qoM6N<$f{TLbF8}}l delta 1019 zcmV<7mg`!Bw zrr^pp>PEpb3l~|6l9ev(U*M)V3t_;OxDce+cBL-F)Wr-4QW;E%AsNP!H%&Xiq>0H( z<8_hV*Vi`5bZ{fs4?^xex#yhkednC}0@t|4{~f})iN#_7xPRSlEX$J0K6`vDrcLuo z0q=)G+#4H{PMh297M5k%`+PocuU&m&NXxPahr_mEI-8Y!&h^E#Y4RwUJZCGH%TE7u z58aOd;c%Enqhasgm1q8k;>>^F;p1F8eO0_uB50aMEEcm>aAh(X_V)Iu*Xx+3iInnE zfPV`W&+qqBtAEub4i#J;kB6C=8M(E!1%TJ<#aSjU0vU#dacd64Ffa^bC;=64nB7SdAb*?9+6wr5J_*Q9r*k$1ySr`- zVIYYwKlzZi-&?zME*g#6WSk@p4i0STo6RNwx~}&KzLnuxy$p<1UWoB6o5=55`D|Jw$>||D#5_S3ZYO4K&lcb z`A0@ZgwN+=Y-|ib0wSN!V;Ba-Vo`=dAsSERd4J;v&_8&eTCK*;&JF;kX`<`87#$rQ zPGEd|oQa7EEX(QzY&59X>q-?-uh;ES0$5pDVS9U;Oj|I16WtFgSiY}Ym)dk6jFU6z)XSXfw~)oR&OpzeWKEH+#LK+ez4 z+kX>qQGrY*!`*uY_7DGL|KXAR_KQyeNT<_%6)2TTs;mHXIvvsXZTL7O5($#YBvVsU zyfllv_0@N19-sZYYBFcD)oQg%HeJ^Tmmm^}oO5&{nM_JR9vvOYR4Rq$@!^>W6AT7f zU0t>PoF7fogv;d;olZy4>pgMqChUiFI&@7cl^Uu>Fc`!$(R<&&a`Pj)r-U_46Wwmt zKG*GbQH|%sz#dQ|6^%w|G#YGfZVn~#;;U}~;QqTMM7{U-tzW_`6Hra4_NuW4;lZP( p_~!ec0I>e}^|6VsagF~B{sGB?!L^Lk>A?U1002ovPDHLkV1jIE^vwVO diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/inhand-left.png index c05ed4833f97ba5703b5165f5c1ba9cacfb3069f..329ae1044e9693b4748a2bbcbe06ca31461f22b0 100644 GIT binary patch delta 454 zcmV;%0XhDU1>ggaB!2;OQb$4nuFf3k0004+NklM{CWAa+%qos?H4hTYD z=JB>T_xCTKUvoOW+xY_dGx-<*n8#Zy2z?_*;#haV({|SiLSHT}Z)JRSj?w5EcEbh$ zY~D9J$3M(wuz&rh;`t!-#d~}%YU^IF(O+k$=@ehhZrE5X7E1H=dOay`*7|LIxc?$f z(~x$&L_|bHL_|bHL`3_OW!c_x0UjV(merce$lYKkO^jb}dw_J(#N-s!)XfE` z@Bk^#Q>T{p4ycn0P*KhfxWftD{@{Pz8`jAMsQ4~BP(PK{4ycn0P+=lFpgkW@H5Z`b wr|dvgM$S*wT!4y$$qtyj-)DA!h=@pw4|;I;Z39SR>Hq)$07*qoM6N<$g3y@Jb^rhX delta 630 zcmaFB+|N2erJl3EBeIx*f$sU^!&cVY0GdNdUtl&VUah96c6NatFMUb(B&%FP-@Fx}l3t_3Tql4Y6k@ zqC(PYcPA^JtvP%0+q*mGwikc$GFKMp<7y}fVQ5**q##o-%J6Un1BW}SgM}8up+Lr% zM*a2rXF@l&s45(?ZgXW&^}pWvnp@@Qq{{O`5iCAp-WM+xUOwX&{_*>c&Xlyg1Wrx^ zk;0sQhtf2?S+Nmj-reyZHr{p&T4$l|a`Ljw6zvCUI~cU;S2f5#4J^K}!adr4|IDf9 zMc?pE5K#3mKDSG@-Z*sKo+Gd9+|0^OeBBhnFx5V^;qRX6dneafTi;GAEnS<>Wb*8* zOw*+0Gi0)P^%i{p^I!je)LUz=6?<(iF~%&wVlejn9qbv&q&-)YN-kNl5kw$zvHe!HjIzOERh;Rn07=zQ=dIC#`Hq{K6XW zsYE`$iQB^Z{ek8B2Uxx8-dO%SvfOh^oqXj{EyIz2J1(p*fAF=IU9p1o$y@G%h4Jql;+nWVyyPxuTwLDp zG~XaUzJYsTHTw;}raAAwJ0H8Y*Z>@@Kv&u@7PhNRVu@JC!TGZx^prw85kJSJzX3_B3hFZBv=^F&2cF1Ldk3hWnDs$Ewb7_fYFx^eLN$JMEeTA3w) x;970k5BVd<9rh{}i}W-F8h{ip5M^LUxPozlN`1bki(^PcYjT1F>*53v9)koGw?I4P$Mq7kXE!!(eEYw?=9DLs&JhhE z_oV*|W?dCH;IfL1Ps_Stg+PLW(JHrt8WOBe7-prc&k$v6Q;6fR{$W$MRYlz8NK@&2 s$$#u04FlGnkpr3B(-dgHmBGqT%*(CTHfQ%b1|aZs^<#Be=akR{0E+B07ytkO diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-2.png b/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-2.png index df4767bff9f12031025afa4e86f88b1353c07f6a..6b302b7c312a3c30aa0a9aaa68c5706e00b204d0 100644 GIT binary patch delta 157 zcmV;O0Al~M0l5K?B!2;OQb$4nuFf3k0001UNklF%Cdb5CqU!oy+KGUFAE0 z-YpzJ!g-v-8I-G_5cy$5Xw0iNKeNd+e*qEsJ7Yq%naAE+cWVD}fnir*I_x(d?M6$; zoB^;IuymV2mKTvLuY9F4146#eRd=3c@4#*S2oD9GT`3U}krpp37+DYvjcf=$00000 LNkvXXu0mjfNa8;t delta 151 zcmdnVxS4T+N_~~5i(^PcYjT1F>*53v9)koGw?I4P$Mrdn?(p#RHB4-5Z2V}=%&e?F<*Y->m)@p811=86St+X3wrp)I!5r3w zdUabxL|uLyXu8bvU-*oKhW2vzgBoCadYGyh7_3=%H3fQ%IRqGhz|+;wWt~$(69DJD BH30ws diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-3.png b/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-3.png index fcbbc48af1ac28a75265f6eeae6a54825f4ee72a..34470086a1f57480cde471dbbc275a18f6f4357f 100644 GIT binary patch delta 159 zcmV;Q0AT;I0lNW^B!2;OQb$4nuFf3k0001WNklu?>JA6a>&aJ6ED{1!pk! z#?~#|$6c(L!SY+!U?kydqK)^eA98`C06;|kj-Jp!S}8M|x%PTgU`YzZWIdi^oUGXM zqH^X4fE&O%GsAfi5y^Sw`Gf}O+GFm=H%@RA2o20u-2a(GL>NTAwgZ!U65Xt7QFH(R N002ovPDHLkV1fskM&tkh delta 149 zcmV;G0BZlc0kHv)B!75GL_t(oh3(X_34kyV1<-$Dp}0|+OdvRe*o#ZJrj;{jcNS@c zM3M;6=D+F}Kiok`03!OCq?Be6jdeOeR*lv?bxNtf<^3U_*`uB6rO1;Jv(E00000NkvXXu0mjf2~b7R delta 168 zcmV;Z09XIb0mK22B!7!ZL_t(oh3(X_4Z<)Gh2j4pgg|V-1lfXBk_oZ}b7T_cU;#RM zpgM|x;tHJ$E6w|=ll6Q)$+E%BR;Em7l%l5T5p;>%mTe|96wMx5X1*7hvVNtGo^2|! zY5N8P2+$j}ix8kE= Date: Sun, 9 Feb 2025 23:13:27 -0400 Subject: [PATCH 171/313] Move CloneAppearance to Shared (#35017) * Move CloneAppearance - Move CloneAppearance from HumanoidAppearanceSystem to SharedHumanoidAppearanceSystem * CR - Fix the sins of the past --- .../Systems/HumanoidAppearanceSystem.cs | 34 ------------------- .../SharedHumanoidAppearanceSystem.cs | 28 +++++++++++++++ 2 files changed, 28 insertions(+), 34 deletions(-) diff --git a/Content.Server/Humanoid/Systems/HumanoidAppearanceSystem.cs b/Content.Server/Humanoid/Systems/HumanoidAppearanceSystem.cs index 505ad4f16c..9e719bda66 100644 --- a/Content.Server/Humanoid/Systems/HumanoidAppearanceSystem.cs +++ b/Content.Server/Humanoid/Systems/HumanoidAppearanceSystem.cs @@ -20,40 +20,6 @@ public sealed partial class HumanoidAppearanceSystem : SharedHumanoidAppearanceS SubscribeLocalEvent>(OnVerbsRequest); } - // this was done enough times that it only made sense to do it here - - /// - /// Clones a humanoid's appearance to a target mob, provided they both have humanoid components. - /// - /// Source entity to fetch the original appearance from. - /// Target entity to apply the source entity's appearance to. - /// Source entity's humanoid component. - /// Target entity's humanoid component. - public void CloneAppearance(EntityUid source, EntityUid target, HumanoidAppearanceComponent? sourceHumanoid = null, - HumanoidAppearanceComponent? targetHumanoid = null) - { - if (!Resolve(source, ref sourceHumanoid) || !Resolve(target, ref targetHumanoid)) - { - return; - } - - targetHumanoid.Species = sourceHumanoid.Species; - targetHumanoid.SkinColor = sourceHumanoid.SkinColor; - targetHumanoid.EyeColor = sourceHumanoid.EyeColor; - targetHumanoid.Age = sourceHumanoid.Age; - SetSex(target, sourceHumanoid.Sex, false, targetHumanoid); - targetHumanoid.CustomBaseLayers = new(sourceHumanoid.CustomBaseLayers); - targetHumanoid.MarkingSet = new(sourceHumanoid.MarkingSet); - - targetHumanoid.Gender = sourceHumanoid.Gender; - if (TryComp(target, out var grammar)) - { - grammar.Gender = sourceHumanoid.Gender; - } - - Dirty(target, targetHumanoid); - } - /// /// Removes a marking from a humanoid by ID. /// diff --git a/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs b/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs index 64c60436f6..8133ca4c98 100644 --- a/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs +++ b/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs @@ -132,6 +132,34 @@ public abstract class SharedHumanoidAppearanceSystem : EntitySystem Dirty(uid, humanoid); } + /// + /// Clones a humanoid's appearance to a target mob, provided they both have humanoid components. + /// + /// Source entity to fetch the original appearance from. + /// Target entity to apply the source entity's appearance to. + /// Source entity's humanoid component. + /// Target entity's humanoid component. + public void CloneAppearance(EntityUid source, EntityUid target, HumanoidAppearanceComponent? sourceHumanoid = null, + HumanoidAppearanceComponent? targetHumanoid = null) + { + if (!Resolve(source, ref sourceHumanoid) || !Resolve(target, ref targetHumanoid)) + return; + + targetHumanoid.Species = sourceHumanoid.Species; + targetHumanoid.SkinColor = sourceHumanoid.SkinColor; + targetHumanoid.EyeColor = sourceHumanoid.EyeColor; + targetHumanoid.Age = sourceHumanoid.Age; + SetSex(target, sourceHumanoid.Sex, false, targetHumanoid); + targetHumanoid.CustomBaseLayers = new(sourceHumanoid.CustomBaseLayers); + targetHumanoid.MarkingSet = new(sourceHumanoid.MarkingSet); + + targetHumanoid.Gender = sourceHumanoid.Gender; + if (TryComp(target, out var grammar)) + grammar.Gender = sourceHumanoid.Gender; + + Dirty(target, targetHumanoid); + } + /// /// Sets the visibility for multiple layers at once on a humanoid's sprite. /// From 1c8e7443ae7f3a14c32f78709e75e04d9d304eed Mon Sep 17 00:00:00 2001 From: Zachary Higgs Date: Sun, 9 Feb 2025 23:36:01 -0400 Subject: [PATCH 172/313] Move DnaComponent to shared (#35012) * Move DnaComponent to shared - Add Using statements to AdminSystem and StationRecordsSystem to point to Content.Shared.Forensics * Proper namespacing * Revert an un-intended change * Add Networking to DNA Component * CR - Remove ("dna") * CR - add back ("dna") tag --- .../Administration/Systems/AdminSystem.cs | 1 + Content.Server/Body/Systems/BloodstreamSystem.cs | 1 + Content.Server/Forensics/Components/DnaComponent.cs | 11 ----------- Content.Server/Forensics/Systems/ForensicsSystem.cs | 1 + Content.Server/Implants/SubdermalImplantSystem.cs | 1 + .../StationRecords/Systems/StationRecordsSystem.cs | 1 + Content.Shared/Forensics/Components/DnaComponent.cs | 13 +++++++++++++ 7 files changed, 18 insertions(+), 11 deletions(-) delete mode 100644 Content.Server/Forensics/Components/DnaComponent.cs create mode 100644 Content.Shared/Forensics/Components/DnaComponent.cs diff --git a/Content.Server/Administration/Systems/AdminSystem.cs b/Content.Server/Administration/Systems/AdminSystem.cs index eb29617f49..c1b08437de 100644 --- a/Content.Server/Administration/Systems/AdminSystem.cs +++ b/Content.Server/Administration/Systems/AdminSystem.cs @@ -11,6 +11,7 @@ using Content.Server.StationRecords.Systems; using Content.Shared.Administration; using Content.Shared.Administration.Events; using Content.Shared.CCVar; +using Content.Shared.Forensics.Components; using Content.Shared.GameTicking; using Content.Shared.Hands.Components; using Content.Shared.IdentityManagement; diff --git a/Content.Server/Body/Systems/BloodstreamSystem.cs b/Content.Server/Body/Systems/BloodstreamSystem.cs index 198123cc5f..d04a993226 100644 --- a/Content.Server/Body/Systems/BloodstreamSystem.cs +++ b/Content.Server/Body/Systems/BloodstreamSystem.cs @@ -13,6 +13,7 @@ using Content.Shared.Damage.Prototypes; using Content.Shared.Drunk; using Content.Shared.FixedPoint; using Content.Shared.Forensics; +using Content.Shared.Forensics.Components; using Content.Shared.HealthExaminable; using Content.Shared.Mobs.Systems; using Content.Shared.Popups; diff --git a/Content.Server/Forensics/Components/DnaComponent.cs b/Content.Server/Forensics/Components/DnaComponent.cs deleted file mode 100644 index 78857f9f31..0000000000 --- a/Content.Server/Forensics/Components/DnaComponent.cs +++ /dev/null @@ -1,11 +0,0 @@ -namespace Content.Server.Forensics; - -/// -/// This component is for mobs that have DNA. -/// -[RegisterComponent] -public sealed partial class DnaComponent : Component -{ - [DataField("dna"), ViewVariables(VVAccess.ReadWrite)] - public string DNA = String.Empty; -} diff --git a/Content.Server/Forensics/Systems/ForensicsSystem.cs b/Content.Server/Forensics/Systems/ForensicsSystem.cs index 34529aba4a..c1595dd0c1 100644 --- a/Content.Server/Forensics/Systems/ForensicsSystem.cs +++ b/Content.Server/Forensics/Systems/ForensicsSystem.cs @@ -10,6 +10,7 @@ using Content.Shared.Chemistry.Reagent; using Content.Shared.Chemistry.Components.SolutionManager; using Content.Shared.DoAfter; using Content.Shared.Forensics; +using Content.Shared.Forensics.Components; using Content.Shared.Interaction; using Content.Shared.Interaction.Events; using Content.Shared.Inventory; diff --git a/Content.Server/Implants/SubdermalImplantSystem.cs b/Content.Server/Implants/SubdermalImplantSystem.cs index cb41e55ba5..15b1d76b0d 100644 --- a/Content.Server/Implants/SubdermalImplantSystem.cs +++ b/Content.Server/Implants/SubdermalImplantSystem.cs @@ -6,6 +6,7 @@ using Content.Server.Store.Components; using Content.Server.Store.Systems; using Content.Shared.Cuffs.Components; using Content.Shared.Forensics; +using Content.Shared.Forensics.Components; using Content.Shared.Humanoid; using Content.Shared.Implants; using Content.Shared.Implants.Components; diff --git a/Content.Server/StationRecords/Systems/StationRecordsSystem.cs b/Content.Server/StationRecords/Systems/StationRecordsSystem.cs index 6dbc58f4d3..d4f0aa1f28 100644 --- a/Content.Server/StationRecords/Systems/StationRecordsSystem.cs +++ b/Content.Server/StationRecords/Systems/StationRecordsSystem.cs @@ -2,6 +2,7 @@ using System.Diagnostics.CodeAnalysis; using Content.Server.Access.Systems; using Content.Server.Forensics; using Content.Shared.Access.Components; +using Content.Shared.Forensics.Components; using Content.Shared.GameTicking; using Content.Shared.Inventory; using Content.Shared.PDA; diff --git a/Content.Shared/Forensics/Components/DnaComponent.cs b/Content.Shared/Forensics/Components/DnaComponent.cs new file mode 100644 index 0000000000..0dfa92146b --- /dev/null +++ b/Content.Shared/Forensics/Components/DnaComponent.cs @@ -0,0 +1,13 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Forensics.Components; + +/// +/// This component is for mobs that have DNA. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class DnaComponent : Component +{ + [DataField("dna"), AutoNetworkedField] + public string DNA = String.Empty; +} From 0bb1dfc58258fcd6245b53de2d1263379cce845c Mon Sep 17 00:00:00 2001 From: Myra Date: Mon, 10 Feb 2025 05:54:30 +0100 Subject: [PATCH 173/313] Put robust toolbox back to a versioned commit (#35011) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index c4a5752c2a..1a7e490e4b 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit c4a5752c2affee874f0b9be3b07b86a55a91bf0a +Subproject commit 1a7e490e4b00200bfa3ebebc6d9b12cb1ec82adf From a269850a737322d83ca2ee754279a1e3f9af3f40 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 10 Feb 2025 16:18:24 +1100 Subject: [PATCH 174/313] Gravity well improvements (#35027) * Gravity well improvements - Fixed persistence - Removed dummy fields - Performance * Update Content.Server/Singularity/Components/GravityWellComponent.cs --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../Components/GravityWellComponent.cs | 20 +++------ .../EntitySystems/GravityWellSystem.cs | 44 ++++++++----------- 2 files changed, 26 insertions(+), 38 deletions(-) diff --git a/Content.Server/Singularity/Components/GravityWellComponent.cs b/Content.Server/Singularity/Components/GravityWellComponent.cs index 58a314fa8b..fb419d8831 100644 --- a/Content.Server/Singularity/Components/GravityWellComponent.cs +++ b/Content.Server/Singularity/Components/GravityWellComponent.cs @@ -7,22 +7,20 @@ namespace Content.Server.Singularity.Components; /// The server-side version of . /// Primarily managed by . /// -[RegisterComponent] +[RegisterComponent, AutoGenerateComponentPause] public sealed partial class GravityWellComponent : Component { /// /// The maximum range at which the gravity well can push/pull entities. /// - [DataField("maxRange")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float MaxRange; /// /// The minimum range at which the gravity well can push/pull entities. /// This is effectively hardfloored at . /// - [DataField("minRange")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float MinRange = 0f; /// @@ -30,8 +28,7 @@ public sealed partial class GravityWellComponent : Component /// Negative values accelerate entities away from the gravity well. /// Actual acceleration scales with the inverse of the distance to the singularity. /// - [DataField("baseRadialAcceleration")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float BaseRadialAcceleration = 0.0f; /// @@ -39,8 +36,7 @@ public sealed partial class GravityWellComponent : Component /// Positive tangential acceleration is counter-clockwise. /// Actual acceleration scales with the inverse of the distance to the singularity. /// - [DataField("baseTangentialAcceleration")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float BaseTangentialAcceleration = 0.0f; #region Update Timing @@ -56,16 +52,14 @@ public sealed partial class GravityWellComponent : Component /// /// The next time at which this gravity well should pulse. /// - [ViewVariables(VVAccess.ReadOnly)] - [Access(typeof(GravityWellSystem))] + [DataField, Access(typeof(GravityWellSystem)), AutoPausedField] public TimeSpan NextPulseTime { get; internal set; } = default!; /// /// The last time this gravity well pulsed. /// [ViewVariables(VVAccess.ReadOnly)] - [Access(typeof(GravityWellSystem))] - public TimeSpan LastPulseTime { get; internal set; } = default!; + public TimeSpan LastPulseTime => NextPulseTime - TargetPulsePeriod; #endregion Update Timing } diff --git a/Content.Server/Singularity/EntitySystems/GravityWellSystem.cs b/Content.Server/Singularity/EntitySystems/GravityWellSystem.cs index 7dcf3ef1ae..6f2137b0d0 100644 --- a/Content.Server/Singularity/EntitySystems/GravityWellSystem.cs +++ b/Content.Server/Singularity/EntitySystems/GravityWellSystem.cs @@ -39,6 +39,8 @@ public sealed class GravityWellSystem : SharedGravityWellSystem private EntityQuery _gridQuery; private EntityQuery _physicsQuery; + private HashSet _entSet = new(); + public override void Initialize() { base.Initialize(); @@ -46,12 +48,17 @@ public sealed class GravityWellSystem : SharedGravityWellSystem _mapQuery = GetEntityQuery(); _gridQuery = GetEntityQuery(); _physicsQuery = GetEntityQuery(); - SubscribeLocalEvent(OnGravityWellStartup); + SubscribeLocalEvent(OnGravityWellMapInit); var vvHandle = _vvManager.GetTypeHandler(); vvHandle.AddPath(nameof(GravityWellComponent.TargetPulsePeriod), (_, comp) => comp.TargetPulsePeriod, SetPulsePeriod); } + private void OnGravityWellMapInit(Entity ent, ref MapInitEvent args) + { + ent.Comp.NextPulseTime = _timing.CurTime + ent.Comp.TargetPulsePeriod; + } + public override void Shutdown() { var vvHandle = _vvManager.GetTypeHandler(); @@ -73,6 +80,7 @@ public sealed class GravityWellSystem : SharedGravityWellSystem while (query.MoveNext(out var uid, out var gravWell, out var xform)) { var curTime = _timing.CurTime; + if (gravWell.NextPulseTime <= curTime) Update(uid, curTime - gravWell.LastPulseTime, gravWell, xform); } @@ -103,8 +111,7 @@ public sealed class GravityWellSystem : SharedGravityWellSystem if(!Resolve(uid, ref gravWell)) return; - gravWell.LastPulseTime = _timing.CurTime; - gravWell.NextPulseTime = gravWell.LastPulseTime + gravWell.TargetPulsePeriod; + gravWell.NextPulseTime += gravWell.TargetPulsePeriod; if (gravWell.MaxRange < 0.0f || !Resolve(uid, ref xform)) return; @@ -195,15 +202,18 @@ public sealed class GravityWellSystem : SharedGravityWellSystem if (mapPos == MapCoordinates.Nullspace) return; // No gravpulses in nullspace please. + _entSet.Clear(); var epicenter = mapPos.Position; var minRange2 = MathF.Max(minRange * minRange, MinGravPulseRange); // Cache square value for speed. Also apply a sane minimum value to the minimum value so that div/0s don't happen. - var bodyQuery = GetEntityQuery(); - var xformQuery = GetEntityQuery(); + _lookup.GetEntitiesInRange(mapPos.MapId, + epicenter, + maxRange, + _entSet, + flags: LookupFlags.Dynamic | LookupFlags.Sundries); - foreach(var entity in _lookup.GetEntitiesInRange(mapPos.MapId, epicenter, maxRange, flags: LookupFlags.Dynamic | LookupFlags.Sundries)) + foreach (var entity in _entSet) { - if (!bodyQuery.TryGetComponent(entity, out var physics) - || physics.BodyType == BodyType.Static) + if (!_physicsQuery.TryGetComponent(entity, out var physics)) { continue; } @@ -214,7 +224,7 @@ public sealed class GravityWellSystem : SharedGravityWellSystem if(!CanGravPulseAffect(entity)) continue; - var displacement = epicenter - _transform.GetWorldPosition(entity, xformQuery); + var displacement = epicenter - _transform.GetWorldPosition(entity); var distance2 = displacement.LengthSquared(); if (distance2 < minRange2) continue; @@ -263,20 +273,4 @@ public sealed class GravityWellSystem : SharedGravityWellSystem } #endregion Getters/Setters - - #region Event Handlers - - /// - /// Resets the pulse timings of the gravity well when the components starts up. - /// - /// The uid of the gravity well to start up. - /// The state of the gravity well to start up. - /// The startup prompt arguments. - public void OnGravityWellStartup(EntityUid uid, GravityWellComponent comp, ComponentStartup args) - { - comp.LastPulseTime = _timing.CurTime; - comp.NextPulseTime = comp.LastPulseTime + comp.TargetPulsePeriod; - } - - #endregion Event Handlers } From a280009bbb16f7a405f4aaf6b48d4d160b0365e0 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Mon, 10 Feb 2025 10:05:19 +0100 Subject: [PATCH 175/313] Cleanup and fix disposal pipes (#34986) --- .../Structures/Piping/Disposal/pipes.yml | 43 ++++++++++--------- 1 file changed, 22 insertions(+), 21 deletions(-) diff --git a/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml b/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml index afeba380ae..fca28e99a6 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml @@ -9,6 +9,8 @@ - Disposal components: - type: Sprite + drawdepth: ThickPipe + sprite: Structures/Piping/disposal.rsi visible: false - type: Appearance - type: SubFloorHide @@ -78,8 +80,6 @@ description: A BBP (big broken pipe). components: - type: Sprite - drawdepth: ThickPipe - sprite: Structures/Piping/disposal.rsi layers: - map: [ "pipe" ] state: pipe-b @@ -94,8 +94,6 @@ description: A huge pipe segment used for constructing disposal systems. components: - type: Sprite - drawdepth: ThickPipe - sprite: Structures/Piping/disposal.rsi layers: - map: [ "pipe" ] state: conpipe-s @@ -114,6 +112,8 @@ - type: Construction graph: DisposalPipe node: pipe + containers: + - DisposalTransit - type: entity id: DisposalTagger @@ -122,8 +122,6 @@ description: A pipe that tags entities for routing. components: - type: Sprite - drawdepth: ThickPipe - sprite: Structures/Piping/disposal.rsi layers: - map: [ "pipe" ] state: conpipe-tagger @@ -148,6 +146,8 @@ - type: Construction graph: DisposalPipe node: tagger + containers: + - DisposalTagger - type: entity id: DisposalTrunk @@ -156,8 +156,6 @@ description: A pipe trunk used as an entry point for disposal systems. components: - type: Sprite - drawdepth: ThickPipe - sprite: Structures/Piping/disposal.rsi layers: - map: [ "pipe" ] state: conpipe-t @@ -184,6 +182,8 @@ - type: Construction graph: DisposalPipe node: trunk + containers: + - DisposalEntry - type: entity id: DisposalRouter @@ -192,8 +192,6 @@ description: A three-way router. Entities with matching tags get routed to the side via configurable filters. components: - type: Sprite - drawdepth: ThickPipe - sprite: Structures/Piping/disposal.rsi layers: - map: [ "pipe" ] state: conpipe-j1s @@ -232,6 +230,8 @@ - type: Construction graph: DisposalPipe node: router + containers: + - DisposalRouter - type: entity id: DisposalRouterFlipped @@ -240,8 +240,6 @@ suffix: flipped components: - type: Sprite - drawdepth: ThickPipe - sprite: Structures/Piping/disposal.rsi layers: - map: [ "pipe" ] state: conpipe-j2s @@ -273,6 +271,8 @@ - SubfloorMask - type: Construction node: routerflipped + containers: + - DisposalRouter - type: entity id: DisposalJunction @@ -281,8 +281,6 @@ description: A three-way junction. The arrow indicates where items exit. components: - type: Sprite - drawdepth: ThickPipe - sprite: Structures/Piping/disposal.rsi layers: - map: [ "pipe" ] state: conpipe-j1 @@ -316,6 +314,8 @@ - type: Construction graph: DisposalPipe node: junction + containers: + - DisposalJunction - type: entity id: DisposalJunctionFlipped @@ -324,8 +324,6 @@ suffix: flipped components: - type: Sprite - drawdepth: ThickPipe - sprite: Structures/Piping/disposal.rsi layers: - map: [ "pipe" ] state: conpipe-j2 @@ -357,6 +355,8 @@ - SubfloorMask - type: Construction node: junctionflipped + containers: + - DisposalJunction - type: entity id: DisposalYJunction @@ -365,8 +365,6 @@ description: A three-way junction with another exit point. components: - type: Sprite - drawdepth: ThickPipe - sprite: Structures/Piping/disposal.rsi layers: - map: [ "pipe" ] state: conpipe-y @@ -397,6 +395,8 @@ - type: Construction graph: DisposalPipe node: yJunction + containers: + - DisposalJunction - type: entity id: DisposalBend @@ -405,8 +405,6 @@ description: A tube bent at a 90 degree angle. components: - type: Sprite - drawdepth: ThickPipe - sprite: Structures/Piping/disposal.rsi layers: - map: [ "pipe" ] state: conpipe-c @@ -433,6 +431,8 @@ - type: Construction graph: DisposalPipe node: bend + containers: + - DisposalBend - type: entity parent: DisposalJunction @@ -441,7 +441,6 @@ description: A signal-controlled three-way router. components: - type: Sprite - drawdepth: ThickPipe layers: - map: [ "pipe" ] state: signal-router-free @@ -472,6 +471,8 @@ - type: Construction graph: DisposalPipe node: signal_router + containers: + - DisposalSignalRouter - type: entity parent: DisposalSignalRouter From b18c5ff980fcd78a70dfe7d5eeda026a3bbcd3e6 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 10 Feb 2025 09:06:31 +0000 Subject: [PATCH 176/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a98359da59..4ef3720384 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: Cadet PDA now has wanted list cartridge preinstalled. - type: Fix - id: 7426 - time: '2024-09-23T21:49:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32399 - author: Vasilis changes: - message: Removed the age requirement for command jobs. @@ -3897,3 +3890,10 @@ id: 7925 time: '2025-02-10T01:24:10.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31060 +- author: lzk228 + changes: + - message: Deconstructing disposal pipes will no longer delete all the contents. + type: Fix + id: 7926 + time: '2025-02-10T09:05:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34986 From 3b3c28666994cc6665e70dffb493f9d3f7d63b2e Mon Sep 17 00:00:00 2001 From: TemporalOroboros Date: Mon, 10 Feb 2025 03:40:25 -0800 Subject: [PATCH 177/313] Purges the one remaining use of TransformComponent.WorldPosition in content. (#34943) --- .../UserInterface/Systems/Viewport/ViewportUIController.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Content.Client/UserInterface/Systems/Viewport/ViewportUIController.cs b/Content.Client/UserInterface/Systems/Viewport/ViewportUIController.cs index 613f71e79b..ffee14ad9a 100644 --- a/Content.Client/UserInterface/Systems/Viewport/ViewportUIController.cs +++ b/Content.Client/UserInterface/Systems/Viewport/ViewportUIController.cs @@ -3,6 +3,7 @@ using Content.Client.UserInterface.Systems.Gameplay; using Content.Shared.CCVar; using Robust.Client.Graphics; using Robust.Client.Player; +using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controllers; using Robust.Shared.Configuration; using Robust.Shared.Timing; @@ -15,6 +16,7 @@ public sealed class ViewportUIController : UIController [Dependency] private readonly IPlayerManager _playerMan = default!; [Dependency] private readonly IEntityManager _entMan = default!; [Dependency] private readonly IConfigurationManager _configurationManager = default!; + [UISystemDependency] private readonly SharedTransformSystem? _transformSystem = default!; public static readonly Vector2i ViewportSize = (EyeManager.PixelsPerMeter * 21, EyeManager.PixelsPerMeter * 15); public const int ViewportHeight = 15; private MainViewport? Viewport => UIManager.ActiveScreen?.GetWidget(); @@ -93,7 +95,7 @@ public sealed class ViewportUIController : UIController _entMan.TryGetComponent(ent, out EyeComponent? eye); if (eye?.Eye == _eyeManager.CurrentEye - && _entMan.GetComponent(ent.Value).WorldPosition == default) + && (_transformSystem is null || _transformSystem.GetWorldPosition(ent.Value) == default)) return; // nothing to worry about, the player is just in null space... actually that is probably a problem? // Currently, this shouldn't happen. This likely happened because the main eye was set to null. When this From b6ec43035ace5c56d1099f1b9e4cd8862a6f872e Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Mon, 10 Feb 2025 03:45:41 -0800 Subject: [PATCH 178/313] remove redundant `rainbowcarpplush` yaml lines (#35033) --- Resources/Prototypes/Entities/Objects/Fun/toys.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index caa67f8b89..879f886d91 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -713,7 +713,6 @@ - type: RgbLightController layers: [ 0 ] - type: Item - heldPrefix: rainbowcarpplush inhandVisuals: left: - state: rainbowcarpplush-inhand-left From e4fe9c463830d78bc555c2da16b1866d8ecc9450 Mon Sep 17 00:00:00 2001 From: TemporalOroboros Date: Mon, 10 Feb 2025 03:46:27 -0800 Subject: [PATCH 179/313] Purge the one remaining use of TransformComponent.AttachParent (#34941) --- .../EntitySystems/ContainmentFieldGeneratorSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs b/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs index bda7d20a8e..5c6d50ffd3 100644 --- a/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs +++ b/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs @@ -320,7 +320,7 @@ public sealed class ContainmentFieldGeneratorSystem : EntitySystem var newField = Spawn(firstGen.Comp.CreatedField, currentCoords); var fieldXForm = Transform(newField); - fieldXForm.AttachParent(firstGen); + _transformSystem.SetParent(newField, fieldXForm, firstGen); if (dirVec.GetDir() == Direction.East || dirVec.GetDir() == Direction.West) { var angle = fieldXForm.LocalPosition.ToAngle(); From 96cb951555347f47f886d1f7524a8e8a92292eff Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 10 Feb 2025 22:58:05 +1100 Subject: [PATCH 180/313] Tweak viewport nullspace check (#35037) * Tweak viewport nullspace check WorldPos being 0,0 is sussy-a. * a --- .../Systems/Viewport/ViewportUIController.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Content.Client/UserInterface/Systems/Viewport/ViewportUIController.cs b/Content.Client/UserInterface/Systems/Viewport/ViewportUIController.cs index ffee14ad9a..338b5fc7e5 100644 --- a/Content.Client/UserInterface/Systems/Viewport/ViewportUIController.cs +++ b/Content.Client/UserInterface/Systems/Viewport/ViewportUIController.cs @@ -6,6 +6,7 @@ using Robust.Client.Player; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controllers; using Robust.Shared.Configuration; +using Robust.Shared.Map; using Robust.Shared.Timing; namespace Content.Client.UserInterface.Systems.Viewport; @@ -95,8 +96,11 @@ public sealed class ViewportUIController : UIController _entMan.TryGetComponent(ent, out EyeComponent? eye); if (eye?.Eye == _eyeManager.CurrentEye - && (_transformSystem is null || _transformSystem.GetWorldPosition(ent.Value) == default)) - return; // nothing to worry about, the player is just in null space... actually that is probably a problem? + && _entMan.GetComponent(ent.Value).MapID == MapId.Nullspace) + { + // nothing to worry about, the player is just in null space... actually that is probably a problem? + return; + } // Currently, this shouldn't happen. This likely happened because the main eye was set to null. When this // does happen it can create hard to troubleshoot bugs, so lets print some helpful warnings: From 9d48f66a61e32dd1d59f21db8a7dd5ac5d35898e Mon Sep 17 00:00:00 2001 From: Zachary Higgs Date: Mon, 10 Feb 2025 10:51:44 -0400 Subject: [PATCH 181/313] Create a Armor CoeffientQuery (#35024) * Create a Armor CoeffientQuery - add Armor Coefficent Query Event for InventoryRelay system * CR - cleanup, comments and fix typos * CR - Remove Whitespace * typos * on't --------- Co-authored-by: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> --- Content.Shared/Armor/ArmorComponent.cs | 22 +++++++++++++++++++ Content.Shared/Armor/SharedArmorSystem.cs | 14 ++++++++++++ .../Inventory/InventorySystem.Relay.cs | 2 ++ 3 files changed, 38 insertions(+) diff --git a/Content.Shared/Armor/ArmorComponent.cs b/Content.Shared/Armor/ArmorComponent.cs index fd04c5d29c..8ffbb5a4f8 100644 --- a/Content.Shared/Armor/ArmorComponent.cs +++ b/Content.Shared/Armor/ArmorComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Damage; +using Content.Shared.Inventory; using Robust.Shared.GameStates; using Robust.Shared.Utility; @@ -30,3 +31,24 @@ public sealed partial class ArmorComponent : Component /// [ByRefEvent] public record struct ArmorExamineEvent(FormattedMessage Msg); + +/// +/// A Relayed inventory event, gets the total Armor for all Inventory slots defined by the Slotflags in TargetSlots +/// +public sealed class CoefficientQueryEvent : EntityEventArgs, IInventoryRelayEvent +{ + /// + /// All slots to relay to + /// + public SlotFlags TargetSlots { get; set; } + + /// + /// The Total of all Coefficients. + /// + public DamageModifierSet DamageModifiers { get; set; } = new DamageModifierSet(); + + public CoefficientQueryEvent(SlotFlags slots) + { + TargetSlots = slots; + } +} diff --git a/Content.Shared/Armor/SharedArmorSystem.cs b/Content.Shared/Armor/SharedArmorSystem.cs index 010ee5e65b..bea875256f 100644 --- a/Content.Shared/Armor/SharedArmorSystem.cs +++ b/Content.Shared/Armor/SharedArmorSystem.cs @@ -19,11 +19,25 @@ public abstract class SharedArmorSystem : EntitySystem { base.Initialize(); + SubscribeLocalEvent>(OnCoefficientQuery); SubscribeLocalEvent>(OnDamageModify); SubscribeLocalEvent>(OnBorgDamageModify); SubscribeLocalEvent>(OnArmorVerbExamine); } + /// + /// Get the total Damage reduction value of all equipment caught by the relay. + /// + /// The item that's being relayed to + /// The event, contains the running count of armor percentage as a coefficient + private void OnCoefficientQuery(Entity ent, ref InventoryRelayedEvent args) + { + foreach (var armorCoefficient in ent.Comp.Modifiers.Coefficients) + { + args.Args.DamageModifiers.Coefficients[armorCoefficient.Key] = args.Args.DamageModifiers.Coefficients.TryGetValue(armorCoefficient.Key, out var coefficient) ? coefficient * armorCoefficient.Value : armorCoefficient.Value; + } + } + private void OnDamageModify(EntityUid uid, ArmorComponent component, InventoryRelayedEvent args) { args.Args.Damage = DamageSpecifier.ApplyModifierSet(args.Args.Damage, component.Modifiers); diff --git a/Content.Shared/Inventory/InventorySystem.Relay.cs b/Content.Shared/Inventory/InventorySystem.Relay.cs index bb5dd02ab3..94a32f5ef3 100644 --- a/Content.Shared/Inventory/InventorySystem.Relay.cs +++ b/Content.Shared/Inventory/InventorySystem.Relay.cs @@ -1,3 +1,4 @@ +using Content.Shared.Armor; using Content.Shared.Chat; using Content.Shared.Chemistry; using Content.Shared.Chemistry.Hypospray.Events; @@ -40,6 +41,7 @@ public partial class InventorySystem SubscribeLocalEvent(RelayInventoryEvent); SubscribeLocalEvent(RelayInventoryEvent); SubscribeLocalEvent(RelayInventoryEvent); + SubscribeLocalEvent(RelayInventoryEvent); // by-ref events SubscribeLocalEvent(RefRelayInventoryEvent); From 54aeceb96c6e69dfaaf0a20f9224ab97082b7573 Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Mon, 10 Feb 2025 21:13:15 +0100 Subject: [PATCH 182/313] Vulture test server config (#35005) * Test Vulture server config * skreee * weh * color! * comment * Update Resources/ConfigPresets/WizardsDen/vulture.toml Co-authored-by: Hannah Giovanna Dawson * Update Resources/ConfigPresets/WizardsDen/vulture.toml Co-authored-by: Hannah Giovanna Dawson --------- Co-authored-by: Hannah Giovanna Dawson --- Resources/ConfigPresets/WizardsDen/vulture.toml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Resources/ConfigPresets/WizardsDen/vulture.toml b/Resources/ConfigPresets/WizardsDen/vulture.toml index 95aecb284a..304920410f 100644 --- a/Resources/ConfigPresets/WizardsDen/vulture.toml +++ b/Resources/ConfigPresets/WizardsDen/vulture.toml @@ -1,7 +1,15 @@ # Configuration preset used on Wizard's Den Leviathan [game] -hostname = "[EN] Wizard's Den Vulture [US East 2]" +hostname = "[EN][Testing] Wizard's Den Vulture [US East 2]" +desc = "Official English testing server for Space Station 14.\nVanilla, roleplay ruleset.\n\nYou can play with the newest changes to the game here, but these changes may not be final or stable, and may be reverted before the next stable release.\nPlease report bugs on our GitHub, forum, or community Discord." [hub] tags = "lang:en,region:am_n_e,rp:low" + +[server] +# This needs to be specified even though it's identical to the hostname, because fallback lobby name is "Lobby " which would be too long and go out of bounds +lobby_name = "[EN][Testing] Wizard's Den Vulture [US East 2]" + +[chat] +motd = "\n########################################################\n\n[font size=17]This is a test server. You can play with the newest changes to the game, but these [color=red]changes may not be final or stable[/color], and may be reverted. Please report bugs via our GitHub, forum, or community Discord.[/font]\n\n########################################################\n" From dc1edbe3b5bc215fb1ea0070ed67a212638513ef Mon Sep 17 00:00:00 2001 From: ToxicSonicFan04 <167356917+ToxicSonicFan04@users.noreply.github.com> Date: Mon, 10 Feb 2025 12:45:32 -0800 Subject: [PATCH 183/313] Amber Armory Restock (#35045) --- Resources/Maps/amber.yml | 433 ++++++++++++++++++++-------- Resources/Prototypes/Maps/amber.yml | 2 +- 2 files changed, 316 insertions(+), 119 deletions(-) diff --git a/Resources/Maps/amber.yml b/Resources/Maps/amber.yml index bb07d04813..eb2dba6e11 100644 --- a/Resources/Maps/amber.yml +++ b/Resources/Maps/amber.yml @@ -129,7 +129,7 @@ entities: version: 6 -2,0: ind: -2,0 - tiles: DgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAMwAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAAMwAAAAADMwAAAAABMwAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAACIwAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAAMwAAAAABMwAAAAADMwAAAAACHAAAAAACHAAAAAADHAAAAAABHAAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAALwAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAACHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAAIwAAAAABIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAD + tiles: HAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAACQAAAAADHAAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAACQAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAACQAAAAACHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAADHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAACQAAAAADHAAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABHAAAAAAALgAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAMwAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAAMwAAAAADMwAAAAABMwAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAACIwAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAAMwAAAAABMwAAAAADMwAAAAACHAAAAAACHAAAAAADHAAAAAABHAAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAALwAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAACHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAAIwAAAAABIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAD version: 6 -2,1: ind: -2,1 @@ -161,7 +161,7 @@ entities: version: 6 -3,0: ind: -3,0 - tiles: LgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAAAHAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAAAHAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAAHAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -3,1: ind: -3,1 @@ -496,13 +496,11 @@ entities: color: '#DE3A3A96' id: Bot decals: - 14552: -23,6 14553: -23,4 14554: -21,5 14555: -21,4 14556: -21,3 14557: -21,2 - 14558: -22,2 14559: -23,2 - node: color: '#FFFFFFFF' @@ -1917,7 +1915,6 @@ entities: decals: 9349: -30,1 14560: -23,3 - 14561: -23,5 14562: -25,5 14563: -25,3 14564: -26,8 @@ -1981,6 +1978,11 @@ entities: 18350: 33,16 18351: 32,16 18352: 31,16 + - node: + color: '#DE3A3A96' + id: DeliveryGreyscale + decals: + 20090: -23,5 - node: cleanable: True zIndex: 1 @@ -3180,7 +3182,6 @@ entities: 11551: -21,4 11553: -23,3 11554: -23,4 - 11555: -23,5 11559: -24,-2 11560: -25,-2 11561: -27,-2 @@ -12256,7 +12257,8 @@ entities: 0: 34958 1: 12288 -8,-2: - 0: 65034 + 0: 64522 + 7: 512 -9,-2: 0: 64904 1: 3 @@ -12286,14 +12288,16 @@ entities: -6,-3: 0: 53727 -6,-2: - 0: 65039 + 0: 64527 + 7: 512 -6,-1: - 0: 65422 + 0: 65420 + 7: 2 -6,-5: 0: 64511 -6,0: 0: 59907 - 7: 1024 + 8: 1024 -8,-8: 0: 65535 -8,-9: @@ -14480,6 +14484,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -14589,6 +14608,20 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 3686 + - uid: 23312 + components: + - type: Transform + parent: 23311 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 23311 + - uid: 23314 + components: + - type: Transform + parent: 23313 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 23313 - proto: ActionToggleLight entities: - uid: 121 @@ -28309,6 +28342,15 @@ entities: - type: Transform pos: -28.489655,-38.298656 parent: 2 +- proto: BoxBeanbag + entities: + - uid: 16029 + components: + - type: Transform + parent: 14645 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: BoxBodyBag entities: - uid: 448 @@ -28359,7 +28401,7 @@ entities: - uid: 3955 components: - type: Transform - pos: -27.009739,15.621929 + pos: -27.031143,15.570824 parent: 2 - proto: BoxFolderBlack entities: @@ -28451,7 +28493,7 @@ entities: - uid: 92 components: - type: Transform - pos: -27.519772,6.606838 + pos: -26.883673,15.703636 parent: 2 - proto: BoxInflatable entities: @@ -28490,6 +28532,15 @@ entities: - type: Transform pos: -54.49606,-31.291697 parent: 2 +- proto: BoxLethalshot + entities: + - uid: 15168 + components: + - type: Transform + parent: 14645 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: BoxLightbulb entities: - uid: 8656 @@ -28963,11 +29014,10 @@ entities: parent: 2 - proto: ButtonFrameJanitor entities: - - uid: 1247 + - uid: 407 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-2.5 + pos: -18.5,0.5 parent: 2 - uid: 16116 components: @@ -63239,12 +63289,17 @@ entities: - uid: 2599 components: - type: Transform - pos: -20.651012,5.6188574 + pos: -20.614132,6.803402 parent: 2 - uid: 14105 components: - type: Transform - pos: -20.400887,5.5041943 + pos: -20.591784,6.61318 + parent: 2 + - uid: 23309 + components: + - type: Transform + pos: -20.58104,6.4969034 parent: 2 - proto: ClothingMaskBreath entities: @@ -63385,24 +63440,36 @@ entities: - type: Transform pos: 27.65064,-12.475961 parent: 2 +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 245 + components: + - type: Transform + pos: -21.188942,6.61409 + parent: 2 + - uid: 416 + components: + - type: Transform + pos: -21.173317,6.52034 + parent: 2 + - uid: 23307 + components: + - type: Transform + pos: -21.286655,6.6918373 + parent: 2 - proto: ClothingOuterArmorReflective entities: - uid: 627 components: - type: Transform - pos: -21.27595,6.6553745 - parent: 2 - - uid: 8729 - components: - - type: Transform - pos: -21.263597,6.5225677 + pos: -20.224054,6.715275 parent: 2 - proto: ClothingOuterArmorRiot entities: - uid: 6250 components: - type: Transform - pos: -20.638523,5.589691 + pos: -20.871235,6.678402 parent: 2 - type: GroupExamine group: @@ -63436,7 +63503,12 @@ entities: - uid: 6885 components: - type: Transform - pos: -20.471773,5.495876 + pos: -20.888659,6.503805 + parent: 2 + - uid: 23308 + components: + - type: Transform + pos: -20.888659,6.610859 parent: 2 - proto: ClothingOuterCoatLabChem entities: @@ -63478,12 +63550,12 @@ entities: - uid: 19589 components: - type: Transform - pos: -20.669172,5.685884 + pos: -22.740864,4.6130686 parent: 2 - uid: 19998 components: - type: Transform - pos: -20.408627,5.5503736 + pos: -22.725239,4.683381 parent: 2 - type: GroupExamine group: @@ -63512,6 +63584,11 @@ entities: priority: 0 component: Armor title: null + - uid: 23317 + components: + - type: Transform + pos: -22.725239,4.511506 + parent: 2 - proto: ClothingOuterWinterBar entities: - uid: 7386 @@ -64091,12 +64168,6 @@ entities: parent: 2 - proto: computerBodyScanner entities: - - uid: 453 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,10.5 - parent: 2 - uid: 14114 components: - type: Transform @@ -64501,6 +64572,12 @@ entities: parent: 2 - proto: ComputerTelevision entities: + - uid: 1297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-42.5 + parent: 2 - uid: 7593 components: - type: Transform @@ -65165,8 +65242,11 @@ entities: - uid: 4184 components: - type: Transform + anchored: True pos: -22.5,2.5 parent: 2 + - type: Physics + bodyType: Static - proto: CrateServiceBoozeDispenser entities: - uid: 2764 @@ -66006,10 +66086,11 @@ entities: parent: 2 - proto: DefibrillatorCabinetFilled entities: - - uid: 447 + - uid: 453 components: - type: Transform - pos: -30.5,12.5 + rot: 1.5707963267948966 rad + pos: -29.5,9.5 parent: 2 - uid: 5482 components: @@ -71889,6 +71970,13 @@ entities: - type: Transform pos: 26.5,-33.5 parent: 2 +- proto: DresserWardenFilled + entities: + - uid: 3145 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 2 - proto: DrinkBeerBottleFull entities: - uid: 4302 @@ -76057,13 +76145,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 4655 - components: - - type: Transform - pos: -17.5,-34.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 9834 components: - type: Transform @@ -76087,13 +76168,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 13019 - components: - - type: Transform - pos: -39.5,-22.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 14062 components: - type: Transform @@ -76101,13 +76175,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 14126 - components: - - type: Transform - pos: -48.5,-45.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 14495 components: - type: Transform @@ -106967,8 +107034,11 @@ entities: - uid: 2207 components: - type: Transform + anchored: True pos: -21.5,2.5 parent: 2 + - type: Physics + bodyType: Static - type: EntityStorage air: volume: 200 @@ -107004,22 +107074,43 @@ entities: - uid: 19954 components: - type: Transform + anchored: True pos: -20.5,4.5 parent: 2 + - type: Physics + bodyType: Static +- proto: GunSafePistolMk58 + entities: + - uid: 8729 + components: + - type: Transform + anchored: True + pos: -20.5,5.5 + parent: 2 + - type: Physics + bodyType: Static - proto: GunSafeRifleLecter entities: - uid: 19580 components: - type: Transform + anchored: True pos: -20.5,3.5 parent: 2 + - type: Physics + bodyType: Static - proto: GunSafeShotgunKammerer entities: - uid: 3956 components: + - type: MetaData + desc: A standard-issue Nanotrasen storage unit, contains 2 kammerer shotguns. - type: Transform + anchored: True pos: -20.5,2.5 parent: 2 + - type: Physics + bodyType: Static - proto: GyroscopeUnanchored entities: - uid: 21926 @@ -108058,6 +108149,8 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,-2.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 16102 components: - type: Transform @@ -108099,6 +108192,18 @@ entities: - type: Transform pos: -1.404727,-55.421238 parent: 2 +- proto: JetpackSecurityFilled + entities: + - uid: 23318 + components: + - type: Transform + pos: -22.334614,4.6755686 + parent: 2 + - uid: 23319 + components: + - type: Transform + pos: -22.311176,4.589631 + parent: 2 - proto: Jug entities: - uid: 12111 @@ -109481,6 +109586,11 @@ entities: - type: Transform pos: -26.5,17.5 parent: 2 + - uid: 17715 + components: + - type: Transform + pos: -23.5,17.5 + parent: 2 - proto: LockerWallMedicalFilled entities: - uid: 21456 @@ -109489,13 +109599,46 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,2.5 parent: 2 -- proto: LockerWardenFilled +- proto: LockerWardenFilledHardsuit entities: - uid: 14645 components: - type: Transform - pos: -22.5,-3.5 + anchored: True + pos: -22.5,-5.5 parent: 2 + - type: Physics + bodyType: Static + - 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: + - 15168 + - 16029 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerWeldingSuppliesFilled entities: - uid: 951 @@ -112700,11 +112843,16 @@ entities: parent: 2 - proto: PortableFlasher entities: - - uid: 17715 + - uid: 19570 components: - type: Transform - pos: -22.5,4.5 + anchored: False + pos: -24.5,4.5 parent: 2 + - type: TriggerOnProximity + enabled: False + - type: Physics + bodyType: Dynamic - proto: PortableGeneratorJrPacman entities: - uid: 5702 @@ -113289,12 +113437,6 @@ entities: rot: 3.141592653589793 rad pos: -14.5,-15.5 parent: 2 - - uid: 2896 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,0.5 - parent: 2 - uid: 4143 components: - type: Transform @@ -113368,6 +113510,11 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,-0.5 parent: 2 + - uid: 23306 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 2 - proto: PowerDrill entities: - uid: 4425 @@ -116971,6 +117118,11 @@ entities: - type: Transform pos: 25.5,-58.5 parent: 2 + - uid: 14126 + components: + - type: Transform + pos: -22.5,4.5 + parent: 2 - uid: 14188 components: - type: Transform @@ -117155,12 +117307,6 @@ entities: - type: Transform pos: 52.5,-60.5 parent: 2 - - uid: 19570 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,5.5 - parent: 2 - uid: 19904 components: - type: Transform @@ -123426,6 +123572,19 @@ entities: actions: !type:Container ents: - 5100 + - uid: 23311 + components: + - type: Transform + pos: -21.509254,6.5594025 + parent: 2 + - type: Blocking + blockingToggleActionEntity: 23312 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 23312 - proto: RiotLaserShield entities: - uid: 632 @@ -123433,6 +123592,11 @@ entities: - type: Transform pos: -21.73,6.63 parent: 2 + - uid: 23310 + components: + - type: Transform + pos: -21.509254,6.6375275 + parent: 2 - proto: RiotShield entities: - uid: 3686 @@ -123448,6 +123612,19 @@ entities: actions: !type:Container ents: - 22750 + - uid: 23313 + components: + - type: Transform + pos: -21.478004,6.457841 + parent: 2 + - type: Blocking + blockingToggleActionEntity: 23314 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 23314 - proto: RobocopCircuitBoard entities: - uid: 16469 @@ -123660,7 +123837,7 @@ entities: parent: 2 - proto: SecurityTechFab entities: - - uid: 19546 + - uid: 23315 components: - type: Transform pos: -22.5,6.5 @@ -123670,7 +123847,7 @@ entities: - uid: 505 components: - type: Transform - pos: -26.553318,15.678647 + pos: -26.50823,15.627335 parent: 2 - proto: SeedExtractor entities: @@ -124025,11 +124202,6 @@ entities: - type: Transform pos: 8.238255,18.595078 parent: 2 - - uid: 3145 - components: - - type: Transform - pos: -20.667923,6.48617 - parent: 2 - uid: 4238 components: - type: Transform @@ -124107,7 +124279,7 @@ entities: - uid: 14425 components: - type: Transform - pos: -20.355423,6.705071 + pos: -27.496094,6.6315174 parent: 2 - uid: 16603 components: @@ -124801,13 +124973,10 @@ entities: parent: 2 - proto: SignalButton entities: - - uid: 1297 + - uid: 1247 components: - - type: MetaData - name: Janitor Light - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-2.5 + pos: -18.5,0.5 parent: 2 - type: DeviceLinkSource linkedPorts: @@ -128231,23 +128400,33 @@ entities: parent: 2 - proto: SpawnPointSecurityCadet entities: - - uid: 416 + - uid: 4655 components: - type: Transform - pos: -27.5,16.5 + pos: -25.5,12.5 parent: 2 - - uid: 417 + - uid: 23316 + components: + - type: Transform + pos: -25.5,11.5 + parent: 2 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 12452 components: - type: Transform pos: -26.5,16.5 parent: 2 -- proto: SpawnPointSecurityOfficer - entities: - uid: 12650 components: - type: Transform pos: -23.5,16.5 parent: 2 + - uid: 13019 + components: + - type: Transform + pos: -27.5,16.5 + parent: 2 - uid: 15016 components: - type: Transform @@ -128258,11 +128437,6 @@ entities: - type: Transform pos: -25.5,16.5 parent: 2 - - uid: 15168 - components: - - type: Transform - pos: -22.5,16.5 - parent: 2 - proto: SpawnPointServiceWorker entities: - uid: 22779 @@ -128540,6 +128714,11 @@ entities: parent: 2 - proto: StasisBed entities: + - uid: 417 + components: + - type: Transform + pos: -30.5,10.5 + parent: 2 - uid: 6573 components: - type: Transform @@ -128971,12 +129150,12 @@ entities: - uid: 3561 components: - type: Transform - pos: -20.47044,6.5382667 + pos: -27.563713,0.6023197 parent: 2 - uid: 5118 components: - type: Transform - pos: -20.720564,6.5591145 + pos: -27.657381,0.62545776 parent: 2 - proto: SubstationBasic entities: @@ -129236,6 +129415,24 @@ entities: - type: Transform pos: -30.5,-5.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 11806 components: - type: Transform @@ -129255,13 +129452,6 @@ entities: - type: Transform pos: 26.5,-35.5 parent: 2 -- proto: SuitStorageWarden - entities: - - uid: 16029 - components: - - type: Transform - pos: -22.5,-5.5 - parent: 2 - proto: SurveillanceCameraCommand entities: - uid: 2990 @@ -133785,10 +133975,10 @@ entities: parent: 2 - proto: VendingMachineSec entities: - - uid: 407 + - uid: 19546 components: - type: Transform - pos: -23.5,17.5 + pos: -22.5,17.5 parent: 2 - proto: VendingMachineSecDrobe entities: @@ -133878,6 +134068,13 @@ entities: - type: Transform pos: -53.5,-31.5 parent: 2 +- proto: VendingMachineWallMedical + entities: + - uid: 447 + components: + - type: Transform + pos: -30.5,12.5 + parent: 2 - proto: VendingMachineYouTool entities: - uid: 3385 @@ -148332,13 +148529,6 @@ entities: - type: Transform pos: 32.5,-29.5 parent: 2 -- proto: WardrobeSecurityFilled - entities: - - uid: 12452 - components: - - type: Transform - pos: -22.5,17.5 - parent: 2 - proto: WardrobeYellowFilled entities: - uid: 2311 @@ -148494,11 +148684,6 @@ entities: parent: 2 - proto: WeaponCapacitorRecharger entities: - - uid: 245 - components: - - type: Transform - pos: -20.5,6.5 - parent: 2 - uid: 378 components: - type: Transform @@ -148509,6 +148694,11 @@ entities: - type: Transform pos: -27.5,3.5 parent: 2 + - uid: 2896 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 - uid: 13661 components: - type: Transform @@ -148536,6 +148726,13 @@ entities: - type: Transform pos: -24.54724,13.558739 parent: 2 +- proto: WeaponShotgunEnforcer + entities: + - uid: 23320 + components: + - type: Transform + pos: -22.484701,-3.1598477 + parent: 2 - proto: WeaponSubMachineGunWt550 entities: - uid: 14803 diff --git a/Resources/Prototypes/Maps/amber.yml b/Resources/Prototypes/Maps/amber.yml index 02e277ec62..b2d09e911d 100644 --- a/Resources/Prototypes/Maps/amber.yml +++ b/Resources/Prototypes/Maps/amber.yml @@ -2,7 +2,7 @@ id: Amber mapName: 'Amber' mapPath: /Maps/amber.yml - minPlayers: 7 + minPlayers: 15 maxPlayers: 60 stations: Amber: From 4b58d7a09f18b9a6302bec95da00a568921ba295 Mon Sep 17 00:00:00 2001 From: Nox Date: Mon, 10 Feb 2025 12:45:42 -0800 Subject: [PATCH 184/313] Fland Armory Restock (#35044) * Upped cyborgs from 2 to 5, updated armory stock, did some button QOL, gave warden a enforcer. * Fixed a few more buttons --- Resources/Maps/fland.yml | 4256 ++++++++++++++++----------- Resources/Prototypes/Maps/fland.yml | 14 +- 2 files changed, 2529 insertions(+), 1741 deletions(-) diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index b46b44b704..d5f7599a00 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -128,7 +128,7 @@ entities: version: 6 1,-1: ind: 1,-1 - tiles: HwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACHwAAAAABHwAAAAAANAAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAA + tiles: HwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACHwAAAAABHwAAAAAANAAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAA version: 6 -1,-2: ind: -1,-2 @@ -148,7 +148,7 @@ entities: version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAALgAAAAAAeQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAeQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAALgAAAAAAeQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAeQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAeQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAALgAAAAAAeQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAB version: 6 -3,-1: ind: -3,-1 @@ -160,7 +160,7 @@ entities: version: 6 -3,0: ind: -3,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAeQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAeQAAAAACAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAABAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAeQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAXQAAAAACZAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADZAAAAAAAXQAAAAABXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAD + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAeQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAeQAAAAACAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAABAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAeQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAXQAAAAACZAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADZAAAAAAAXQAAAAABXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAD version: 6 -4,0: ind: -4,0 @@ -192,15 +192,15 @@ entities: version: 6 -1,4: ind: -1,4 - tiles: HwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAcAAAAAACcAAAAAAAHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADbQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAPwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAA + tiles: HwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAcAAAAAACcAAAAAAAHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADbQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAPwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAA version: 6 -2,4: ind: -2,4 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAQAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAHwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACTwAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADTwAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAACTwAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAADHwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAGAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAQAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAHwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACTwAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADTwAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAACTwAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAGAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAA version: 6 -3,4: ind: -3,4 - tiles: AAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAATQAAAAABTQAAAAADfgAAAAAAfgAAAAAATQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAQAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAQAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAATQAAAAABTQAAAAADfgAAAAAAfgAAAAAATQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAQAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAQAAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAATwAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATwAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAA version: 6 -2,5: ind: -2,5 @@ -208,7 +208,7 @@ entities: version: 6 -3,5: ind: -3,5 - tiles: AAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,4: ind: -4,4 @@ -224,7 +224,7 @@ entities: version: 6 0,4: ind: 0,4 - tiles: cAAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANAAAAAABcAAAAAAAHwAAAAAAcAAAAAABcAAAAAACfgAAAAAAcAAAAAACbAAAAAAAXQAAAAABXQAAAAACXQAAAAADHwAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAABcAAAAAABfgAAAAAAcAAAAAACfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAADcAAAAAADcAAAAAAAfgAAAAAAcAAAAAACfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAXQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACHwAAAAACcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAFBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAAAAAAAAAA + tiles: cAAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANAAAAAABcAAAAAAAHwAAAAAAcAAAAAABcAAAAAACfgAAAAAAcAAAAAACbAAAAAAAXQAAAAABXQAAAAACXQAAAAADHwAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAABcAAAAAABfgAAAAAAcAAAAAACfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAADcAAAAAADcAAAAAAAfgAAAAAAcAAAAAACfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAXQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACHwAAAAACcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAGBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 @@ -232,7 +232,7 @@ entities: version: 6 1,0: ind: 1,0 - tiles: HwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACbAAAAAAAHwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAACbAAAAAAAHwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAACbAAAAAAAHwAAAAADfgAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAADbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABHwAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADbAAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAADMQAAAAAAMQAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACbAAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAABXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAA + tiles: HwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACbAAAAAAAHwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAACbAAAAAAAHwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAACbAAAAAAAHwAAAAADfgAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAADbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABHwAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADbAAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAADMQAAAAAAMQAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACbAAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAACbAAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAA version: 6 2,1: ind: 2,1 @@ -240,7 +240,7 @@ entities: version: 6 2,0: ind: 2,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAADcAAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAADbAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAcAAAAAADcAAAAAABcAAAAAABcAAAAAADcAAAAAABcAAAAAABbAAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAABcAAAAAADcAAAAAABbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAHwAAAAABMQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAbAAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAABbAAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADLgAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAAALgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAACfgAAAAAAHwAAAAAAHwAAAAACLgAAAAAAHwAAAAACfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAAAbAAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABLgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAD + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAADcAAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAADbAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAcAAAAAADcAAAAAABcAAAAAABcAAAAAADcAAAAAABcAAAAAABbAAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAABcAAAAAADcAAAAAABbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAHwAAAAABMQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAbAAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAABbAAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADLgAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAAALgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAACfgAAAAAAHwAAAAAAHwAAAAACLgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABLgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAD version: 6 2,-1: ind: 2,-1 @@ -256,7 +256,7 @@ entities: version: 6 1,4: ind: 1,4 - tiles: fgAAAAAAcAAAAAAAcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAcAAAAAAAcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,2: ind: 2,2 @@ -280,7 +280,7 @@ entities: version: 6 2,-2: ind: 2,-2 - tiles: bAAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAXQAAAAADcAAAAAAAXQAAAAACfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABOAAAAAAAHwAAAAAAUQAAAAAAUQAAAAAAHwAAAAACXQAAAAAAcAAAAAACXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABOAAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAXQAAAAACcAAAAAABXQAAAAADfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABbAAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAATQAAAAABeQAAAAAATQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADcAAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABeQAAAAAAeQAAAAAAeQAAAAACeQAAAAADfgAAAAAAXQAAAAABcAAAAAACcAAAAAABcAAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAABcAAAAAABcAAAAAABcAAAAAABeQAAAAABeQAAAAACeQAAAAADeQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABHwAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAATQAAAAACTQAAAAAATQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAADHwAAAAACXQAAAAABfgAAAAAATQAAAAADTQAAAAADTQAAAAADXQAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABHwAAAAADXQAAAAADfgAAAAAATQAAAAADTQAAAAAATQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAXQAAAAADMQAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAADXQAAAAADXQAAAAABXQAAAAADbAAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAADcAAAAAABcAAAAAADcAAAAAACcAAAAAADcAAAAAAAXQAAAAAAXQAAAAADXQAAAAABbAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAABcAAAAAACcAAAAAADcAAAAAAD + tiles: bAAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAXQAAAAADcAAAAAAAXQAAAAACfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABOAAAAAAAHwAAAAAAUQAAAAAAUQAAAAAAHwAAAAACXQAAAAAAcAAAAAACXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABOAAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAXQAAAAACcAAAAAABXQAAAAADfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABbAAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAATQAAAAABeQAAAAAATQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADcAAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAeQAAAAAAeQAAAAACeQAAAAADfgAAAAAAXQAAAAABcAAAAAACcAAAAAABcAAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAABcAAAAAABcAAAAAABcAAAAAABXQAAAAAAeQAAAAACeQAAAAADeQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABHwAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAATQAAAAACTQAAAAAATQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAADHwAAAAACXQAAAAABfgAAAAAATQAAAAADTQAAAAADTQAAAAADXQAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABHwAAAAADXQAAAAADfgAAAAAATQAAAAADTQAAAAAATQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAXQAAAAADMQAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAADXQAAAAADXQAAAAABXQAAAAADbAAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAADcAAAAAABcAAAAAADcAAAAAACcAAAAAADcAAAAAAAXQAAAAAAXQAAAAADXQAAAAABbAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAABcAAAAAACcAAAAAADcAAAAAAD version: 6 3,-2: ind: 3,-2 @@ -308,27 +308,27 @@ entities: version: 6 -3,-3: ind: -3,-3 - tiles: BwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABBwAAAAADBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABBwAAAAADBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAADHwAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: fgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: fgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAbAAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAbAAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACXQAAAAABXQAAAAACXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACXQAAAAADXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADXQAAAAADXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACXQAAAAABXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAbAAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAbAAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACXQAAAAABXQAAAAACXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACXQAAAAADXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADXQAAAAADXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACXQAAAAABXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-6: ind: -3,-6 @@ -344,11 +344,11 @@ entities: version: 6 -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAGBwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAHBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAGBwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAHBwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-2: ind: 4,-2 @@ -368,7 +368,7 @@ entities: version: 6 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATQAAAAAATQAAAAACTQAAAAAAfgAAAAAATQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATQAAAAAATQAAAAADTQAAAAADTQAAAAADTQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAAAMQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADTQAAAAABXQAAAAACfgAAAAAAbQAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAABbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAATQAAAAACTQAAAAABXQAAAAACfgAAAAAAbQAAAAAAcAAAAAACXQAAAAADXQAAAAABXQAAAAACcAAAAAADbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAcAAAAAACXQAAAAABbQAAAAAAXQAAAAADcAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAATQAAAAAATQAAAAACTQAAAAAAfgAAAAAATQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAADTQAAAAADTQAAAAADTQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAAAMQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADTQAAAAABXQAAAAACfgAAAAAAbQAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAABbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAATQAAAAACTQAAAAABXQAAAAACfgAAAAAAbQAAAAAAcAAAAAACXQAAAAADXQAAAAABXQAAAAACcAAAAAADbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAcAAAAAACXQAAAAABbQAAAAAAXQAAAAADcAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 1,-4: ind: 1,-4 @@ -376,11 +376,11 @@ entities: version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAFBwAAAAAABwAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAGBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACTQAAAAABTQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAALgAAAAAALgAAAAAATQAAAAABTQAAAAAATQAAAAAATQAAAAABfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAbQAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAATQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAATQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAFBwAAAAAAfgAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAGBwAAAAADBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAABwAAAAAEBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACTQAAAAABTQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAALgAAAAAALgAAAAAATQAAAAABTQAAAAAATQAAAAAATQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAbQAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAATQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAATQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAGBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAABfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAABwAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAADfgAAAAAAcAAAAAABcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAegAAAAACegAAAAADfgAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAACfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAACfgAAAAAAcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAcAAAAAADfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAABegAAAAABegAAAAABegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAGBwAAAAAGBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAABfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAABwAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAADfgAAAAAAcAAAAAABcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAegAAAAACegAAAAADfgAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAACfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAACfgAAAAAAcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAcAAAAAADfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAABegAAAAABegAAAAABegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAegAAAAAA version: 6 8,1: ind: 8,1 @@ -392,7 +392,7 @@ entities: version: 6 5,-4: ind: 5,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAAEBwAAAAAGBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMgAAAAABMgAAAAAAMgAAAAAAMgAAAAACMgAAAAADMgAAAAACMgAAAAABMgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAMgAAAAAAMgAAAAACMgAAAAADMgAAAAABMgAAAAAAMgAAAAADMgAAAAACMgAAAAABBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMgAAAAACMgAAAAADMgAAAAACMgAAAAADMgAAAAABMgAAAAAAMgAAAAADMgAAAAACBwAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAfgAAAAAAegAAAAABfgAAAAAAMgAAAAAAMgAAAAABMgAAAAABMgAAAAADMgAAAAABMgAAAAABMgAAAAABMgAAAAACfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAABfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAABegAAAAADegAAAAACfgAAAAAAegAAAAADegAAAAABegAAAAABfgAAAAAAegAAAAABfgAAAAAAegAAAAABfgAAAAAAegAAAAABegAAAAACegAAAAADegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAAEBwAAAAAGBwAAAAAFBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMgAAAAABMgAAAAAAMgAAAAAAMgAAAAACMgAAAAADMgAAAAACMgAAAAABMgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAMgAAAAAAMgAAAAACMgAAAAADMgAAAAABMgAAAAAAMgAAAAADMgAAAAACMgAAAAABBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMgAAAAACMgAAAAADMgAAAAACMgAAAAADMgAAAAABMgAAAAAAMgAAAAADMgAAAAACBwAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAfgAAAAAAegAAAAABfgAAAAAAMgAAAAAAMgAAAAABMgAAAAABMgAAAAADMgAAAAABMgAAAAABMgAAAAABMgAAAAACfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAABfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAABegAAAAADegAAAAACfgAAAAAAegAAAAADegAAAAABegAAAAABfgAAAAAAegAAAAABfgAAAAAAegAAAAABfgAAAAAAegAAAAABegAAAAACegAAAAADegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 5,-3: ind: 5,-3 @@ -408,7 +408,7 @@ entities: version: 6 6,-4: ind: 6,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAADfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAADfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAABBwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAA version: 6 6,-5: ind: 6,-5 @@ -424,23 +424,23 @@ entities: version: 6 7,-2: ind: 7,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACfgAAAAAATwAAAAAAHwAAAAABHwAAAAACHwAAAAADTwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAADAAAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAADTwAAAAAAHwAAAAAAHwAAAAACHwAAAAACTwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAACBwAAAAAHfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAABTwAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAABBwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAACAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAfgAAAAAAZAAAAAAAXQAAAAACZAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACfgAAAAAATwAAAAAAHwAAAAABHwAAAAACHwAAAAADTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADAAAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAADTwAAAAAAHwAAAAAAHwAAAAACHwAAAAACTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAHfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAABTwAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAABBwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAfgAAAAAAZAAAAAAAXQAAAAACZAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,-3: ind: 7,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAA version: 6 8,-2: ind: 8,-2 - tiles: BwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACfgAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 8,-3: ind: 8,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,-1: ind: 7,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAZAAAAAAAXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZAAAAAAAXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAABBwAAAAADBwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAZAAAAAAAXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZAAAAAAAXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 6,-1: ind: 6,-1 @@ -448,11 +448,11 @@ entities: version: 6 8,-1: ind: 8,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 8,0: ind: 8,0 - tiles: BwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADfwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACfwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACfwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAABwAAAAAAfwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAADfwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACfwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,0: ind: 7,0 @@ -468,7 +468,7 @@ entities: version: 6 7,1: ind: 7,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfwAAAAAABwAAAAAEfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAABwAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAABwAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfwAAAAAABwAAAAADfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAegAAAAACegAAAAAAfgAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAegAAAAABegAAAAADfgAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQAAAAAAAegAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQAAAAAAAegAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQAAAAAAAegAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfwAAAAAABwAAAAAEfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAADfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQAAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQAAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQAAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAA version: 6 6,1: ind: 6,1 @@ -480,7 +480,7 @@ entities: version: 6 7,2: ind: 7,2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACfwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAACfwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAGBwAAAAAAfwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAHBwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAABBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAAAHwAAAAAB + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAABwAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACfwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAACfwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAGBwAAAAAAfwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAHBwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAABBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAAAHwAAAAAB version: 6 6,2: ind: 6,2 @@ -488,19 +488,19 @@ entities: version: 6 8,2: ind: 8,2 - tiles: fgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAACBwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAABwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAFBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAHBwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 8,3: ind: 8,3 - tiles: EQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: EQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,3: ind: 7,3 - tiles: HwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAOAAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAADOAAAAAAAfgAAAAAATwAAAAAAEQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAACOAAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAABOAAAAAAAOAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAHBwAAAAAFBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAF + tiles: HwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAOAAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAADOAAAAAAAfgAAAAAATwAAAAAAEQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAACOAAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAABOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAHBwAAAAAFBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAF version: 6 8,4: ind: 8,4 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,4: ind: 7,4 @@ -508,11 +508,11 @@ entities: version: 6 6,3: ind: 6,3 - tiles: HwAAAAAAHwAAAAADfgAAAAAAHwAAAAADEQAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAABfgAAAAAAHwAAAAADEQAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACEQAAAAAAEQAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAACfgAAAAAABwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAADEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAADHwAAAAABfgAAAAAABwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAA + tiles: HwAAAAAAHwAAAAADfgAAAAAAHwAAAAADEQAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAABfgAAAAAAHwAAAAADEQAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACEQAAAAAAEQAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAADEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAA version: 6 6,4: ind: 6,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,3: ind: 5,3 @@ -536,15 +536,15 @@ entities: version: 6 3,3: ind: 3,3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAACegAAAAACegAAAAACegAAAAADegAAAAADegAAAAADBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAABwAAAAAGBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAHwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAAAegAAAAABegAAAAADHwAAAAABHwAAAAACHwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAACegAAAAABegAAAAADegAAAAADegAAAAADegAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAABLwAAAAADLwAAAAAAJwAAAAADLwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAbQAAAAAAHwAAAAADegAAAAACLwAAAAAALwAAAAACJwAAAAADLwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAegAAAAABLwAAAAABLwAAAAAAEQAAAAAALwAAAAADBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAHwAAAAAAegAAAAAALwAAAAACLwAAAAADLwAAAAADLwAAAAABBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAADLwAAAAADLwAAAAAALwAAAAACLwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAABegAAAAADegAAAAABegAAAAACegAAAAAAegAAAAABDgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAAADgAAAAADfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAACbQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAACegAAAAACegAAAAACegAAAAADegAAAAADegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAABwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAHwAAAAABBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAAAegAAAAABegAAAAADHwAAAAABHwAAAAACHwAAAAABBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAACegAAAAABegAAAAADegAAAAADegAAAAADegAAAAACBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAABLwAAAAADLwAAAAAAJwAAAAADLwAAAAABBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAbQAAAAAAHwAAAAADegAAAAACLwAAAAAALwAAAAACJwAAAAADLwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAegAAAAABLwAAAAABLwAAAAAAEQAAAAAALwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAHwAAAAAAegAAAAAALwAAAAACLwAAAAADLwAAAAADLwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAADLwAAAAADLwAAAAAALwAAAAACLwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAABegAAAAADegAAAAABegAAAAACegAAAAAAegAAAAABDgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAAADgAAAAADfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAACbQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 - tiles: cAAAAAAAcAAAAAACfgAAAAAAcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAABfgAAAAAAcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAcAAAAAAAcAAAAAADfgAAAAAAcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAADgAAAAABfgAAAAAAfgAAAAAAfgAAAAAADgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAADDgAAAAAADgAAAAACDgAAAAABDgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAABDgAAAAABDgAAAAACfgAAAAAADgAAAAAADgAAAAACDgAAAAAB + tiles: cAAAAAAAcAAAAAACfgAAAAAAcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAABfgAAAAAAcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAABBwAAAAAABwAAAAAAcAAAAAAAcAAAAAADfgAAAAAAcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAADfgAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAACBwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAADgAAAAABfgAAAAAAfgAAAAAAfgAAAAAADgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAADDgAAAAAADgAAAAACDgAAAAABDgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAABDgAAAAABDgAAAAACfgAAAAAADgAAAAAADgAAAAACDgAAAAAB version: 6 3,4: ind: 3,4 - tiles: DgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAA + tiles: DgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAA version: 6 4,4: ind: 4,4 @@ -552,7 +552,7 @@ entities: version: 6 2,4: ind: 2,4 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAADgAAAAABDgAAAAACDgAAAAAADgAAAAADfgAAAAAAfgAAAAAAfgAAAAAADgAAAAABfgAAAAAADgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAADgAAAAABDgAAAAACDgAAAAAADgAAAAADfgAAAAAAfgAAAAAAfgAAAAAADgAAAAABfgAAAAAADgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAABBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 6,-6: ind: 6,-6 @@ -576,7 +576,7 @@ entities: version: 6 0,5: ind: 0,5 - tiles: AAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAABwAAAAAABwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,5: ind: 1,5 @@ -618,7 +618,6 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 1598: 38,13 3591: 58,-30 4105: 30,50 5749: 91,1 @@ -776,11 +775,6 @@ entities: 1181: 4,21 1182: 7,25 1183: 7,26 - 1537: 33,3 - 1538: 30,3 - 1539: 27,3 - 1550: 36,2 - 1551: 36,3 1570: 30,14 1571: 31,10 1572: 31,11 @@ -795,8 +789,6 @@ entities: 1593: 33,14 1594: 34,12 1595: 33,12 - 1669: 14,9 - 1670: 14,10 1708: 33,21 1709: 33,22 1726: 12,-26 @@ -935,7 +927,6 @@ entities: 3713: 52,-17 3714: 52,-18 3826: 22,36 - 3827: 23,36 3844: 18,38 3845: 18,36 3846: 17,36 @@ -956,7 +947,6 @@ entities: 4650: 45,-40 4651: 45,-39 4652: 45,-38 - 4708: 32,-27 4709: 37,-22 4710: 36,-22 4711: 34,-22 @@ -1093,6 +1083,22 @@ entities: 8772: 120,49 8773: 96,49 8774: 89,47 + 8813: 36,12 + 8814: 36,11 + 8840: 37,12 + 8841: 38,12 + 8842: 39,12 + 8843: 38,14 + 8844: 37,14 + 8855: 14,13 + 8856: 14,14 + 8858: 27,14 + 8859: 36,1 + 8860: 33,1 + 8861: 30,1 + 8862: 27,1 + 8873: 32,-27 + 8874: 4,30 - node: cleanable: True color: '#FFFFFFFF' @@ -1192,6 +1198,9 @@ entities: 8767: 93,2 8768: 92,2 8769: 91,2 + 8851: 14,11 + 8852: 14,10 + 8853: 14,9 - node: color: '#FFFFFFFF' id: BoxGreyscale @@ -1415,12 +1424,12 @@ entities: color: '#DE3A3A96' id: BrickTileSteelCornerNw decals: - 1509: 36,3 - 1510: 33,3 - 1511: 30,3 - 1512: 27,3 1553: 27,14 5715: 17,19 + 8864: 27,3 + 8865: 30,3 + 8866: 33,3 + 8867: 36,3 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw @@ -1742,11 +1751,11 @@ entities: 1522: 27,2 1523: 30,2 1524: 33,2 - 1525: 36,2 1559: 27,10 1560: 27,12 1561: 27,13 5718: 17,18 + 8868: 36,2 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW @@ -2029,12 +2038,12 @@ entities: 1692: 27,16 1853: 41,9 1970: 15,9 - 1974: 14,12 2572: 11,-13 3505: 41,-24 4131: 21,53 4142: 26,53 4979: 71,-11 + 8857: 14,12 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw @@ -2168,7 +2177,7 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteInnerSw decals: - 1973: 15,12 + 8849: 15,12 - node: color: '#FF81C996' id: BrickTileWhiteInnerSw @@ -2944,7 +2953,6 @@ entities: 1772: 23,27 1855: 41,10 1971: 15,10 - 1972: 15,11 1976: 14,13 2038: 27,29 2052: 23,29 @@ -2953,6 +2961,7 @@ entities: 2574: 11,-11 3507: 41,-23 3508: 41,-22 + 8847: 15,11 - node: color: '#EFB34196' id: BrickTileWhiteLineW @@ -3451,7 +3460,6 @@ entities: 3790: 24,38 3791: 23,38 3792: 23,37 - 3793: 23,36 3794: 24,37 3795: 25,37 3796: 25,36 @@ -3480,6 +3488,7 @@ entities: 4398: 29,43 4399: 28,43 4400: 27,43 + 8870: 23,36 - node: color: '#A4610696' id: CheckerNESW @@ -4128,7 +4137,6 @@ entities: 3325: 45,-16 3326: 44,-16 3797: 25,36 - 3798: 23,36 3799: 22,36 3800: 21,36 3801: 20,36 @@ -4172,6 +4180,7 @@ entities: 7914: 122,6 7915: 121,6 7916: 121,7 + 8869: 23,36 - node: color: '#D4D4D428' id: CheckerNWSE @@ -4373,7 +4382,6 @@ entities: 1536: 37,4 1569: 27,11 1652: 38,8 - 1671: 14,11 1707: 29,26 1710: 6,-26 1711: 6,-25 @@ -4450,7 +4458,6 @@ entities: 4715: 36,-20 4716: 35,-20 4717: 34,-20 - 4718: 32,-20 4783: -6,68 5075: 66,-19 5076: 71,-17 @@ -6511,9 +6518,6 @@ entities: color: '#DE3A3A60' id: FullTileOverlayGreyscale decals: - 1404: 37,13 - 1405: 36,14 - 1406: 36,13 1407: 36,12 1408: 36,11 1409: 36,10 @@ -6574,6 +6578,13 @@ entities: 3359: 42,-19 4977: 70,-10 4978: 72,-12 + 8832: 37,12 + 8833: 38,12 + 8834: 39,12 + 8835: 39,14 + 8838: 38,14 + 8839: 37,14 + 8846: 36,14 - node: color: '#EFB34137' id: FullTileOverlayGreyscale @@ -9743,11 +9754,6 @@ entities: decals: 2690: 15,-11 7512: 65,-54 - - node: - color: '#646464A1' - id: ThreeQuarterTileOverlayGreyscale - decals: - 4707: 32,-26 - node: color: '#79150096' id: ThreeQuarterTileOverlayGreyscale @@ -9902,11 +9908,6 @@ entities: decals: 2692: 15,-14 7514: 65,-52 - - node: - color: '#646464A1' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 4706: 32,-27 - node: color: '#79150096' id: ThreeQuarterTileOverlayGreyscale270 @@ -11451,9 +11452,6 @@ entities: 1583: 23,20 1584: 24,20 1585: 25,20 - 1596: 39,12 - 1597: 38,12 - 1672: 14,11 1823: 42,25 1880: 46,7 2146: -2,40 @@ -12226,7 +12224,8 @@ entities: 1,1: 0: 1919 1,2: - 0: 16315 + 0: 16187 + 1: 128 1,3: 0: 61559 1,-1: @@ -12262,9 +12261,11 @@ entities: 4,1: 0: 49081 4,2: - 0: 65520 + 0: 65488 + 1: 32 4,3: - 0: 65535 + 0: 61439 + 1: 4096 -5,0: 0: 61006 -4,1: @@ -12361,19 +12362,19 @@ entities: 0: 65535 -2,6: 0: 47 - 1: 60928 + 2: 60928 -2,7: 0: 61441 - 1: 238 + 2: 238 -2,8: 0: 65295 -1,5: 0: 53247 -1,6: 0: 52429 - 1: 4352 + 2: 4352 -1,7: - 1: 17 + 2: 17 0: 56524 -1,8: 0: 65487 @@ -12491,9 +12492,9 @@ entities: 0: 61152 -8,-3: 0: 41504 - 2: 128 + 3: 128 -9,-3: - 2: 240 + 3: 240 0: 61440 -8,-2: 0: 65522 @@ -12502,14 +12503,14 @@ entities: -9,-1: 0: 46065 -7,-3: - 2: 116 + 3: 116 0: 28672 -7,-2: 0: 65520 -7,-4: - 2: 17476 + 3: 17476 -7,-5: - 2: 17476 + 3: 17476 -6,-4: 0: 32759 -6,-3: @@ -12756,9 +12757,9 @@ entities: 0: 65527 -5,-8: 0: 34944 - 3: 768 + 4: 768 -4,-8: - 3: 1536 + 4: 1536 -4,-7: 0: 32624 -5,-7: @@ -12788,9 +12789,9 @@ entities: 0,-6: 0: 65295 0,-8: - 3: 3276 + 4: 3276 0,-9: - 3: 49152 + 4: 49152 0: 206 1,-7: 0: 61422 @@ -12855,7 +12856,7 @@ entities: 8,-5: 0: 65295 -8,-8: - 3: 768 + 4: 768 0: 34944 -8,-7: 0: 65528 @@ -12863,19 +12864,19 @@ entities: 0: 65524 -8,-6: 0: 8866 - 2: 32768 + 3: 32768 -9,-6: 0: 255 - 2: 61440 + 3: 61440 -7,-7: 0: 65534 -7,-6: 0: 112 - 2: 28672 + 3: 28672 -7,-8: - 3: 1604 + 4: 1604 -7,-9: - 3: 17476 + 4: 17476 0: 34952 -6,-8: 0: 10098 @@ -12884,7 +12885,7 @@ entities: -6,-6: 0: 30583 -6,-9: - 3: 8738 + 4: 8738 0: 34952 -11,8: 0: 3084 @@ -12909,210 +12910,210 @@ entities: -9,4: 0: 30576 -12,-4: - 3: 4369 - 2: 17476 + 4: 4369 + 3: 17476 -12,-5: - 3: 4369 - 2: 17476 + 4: 4369 + 3: 17476 -12,-3: - 3: 4369 - 2: 52420 + 4: 4369 + 3: 52420 -13,-3: - 3: 240 + 4: 240 -12,-2: - 3: 273 - 2: 3272 + 4: 273 + 3: 3272 -12,-1: 0: 20206 -13,-1: - 3: 61440 + 4: 61440 -12,0: 0: 3838 -11,-3: - 2: 65520 + 3: 65520 -11,-2: - 2: 4087 + 3: 4087 0: 16384 -11,-1: 0: 25702 -11,0: 0: 3830 -10,-3: - 2: 4368 + 3: 4368 0: 17472 -10,-1: 0: 32624 -10,-2: 0: 61156 -12,-6: - 3: 4368 - 2: 52416 + 4: 4368 + 3: 52416 -13,-6: - 3: 192 + 4: 192 -11,-6: - 2: 65520 + 3: 65520 -11,-8: - 3: 4368 + 4: 4368 0: 34952 -11,-9: 0: 63692 - 3: 17 + 4: 17 -11,-7: - 3: 4369 + 4: 4369 0: 52424 -10,-8: 0: 13107 - 3: 34952 + 4: 34952 -10,-7: 0: 65523 -10,-6: - 2: 4368 + 3: 4368 0: 17476 -10,-9: 0: 13107 - 3: 34952 + 4: 34952 -9,-8: - 3: 256 + 4: 256 0: 17472 -13,0: 0: 192 - 3: 62002 + 4: 62002 -12,2: - 3: 3840 + 4: 3840 -13,2: - 3: 3840 + 4: 3840 -12,1: 0: 2246 -11,1: 0: 25344 -11,2: - 3: 256 + 4: 256 0: 52462 -10,0: 0: 65520 -10,2: 0: 1537 -16,0: - 3: 36349 + 4: 36349 0: 20480 -16,-1: 0: 21845 - 3: 34952 + 4: 34952 -17,0: - 3: 36349 + 4: 36349 0: 20480 -16,1: 0: 21845 - 3: 34952 + 4: 34952 -17,1: - 3: 34952 + 4: 34952 0: 21845 -16,2: 0: 21845 - 3: 34952 + 4: 34952 -17,2: - 3: 34952 + 4: 34952 0: 21845 -16,3: - 3: 248 + 4: 248 -17,3: - 3: 248 + 4: 248 -15,0: - 3: 36349 + 4: 36349 0: 20480 -15,1: 0: 21845 - 3: 34952 + 4: 34952 -15,2: 0: 21845 - 3: 34952 + 4: 34952 -15,3: - 3: 248 + 4: 248 -15,-1: 0: 21845 - 3: 34952 + 4: 34952 -14,0: - 3: 50677 + 4: 50677 0: 4096 -14,1: 0: 4369 - 3: 17476 + 4: 17476 -14,2: 0: 4369 - 3: 19524 + 4: 19524 -14,3: - 3: 116 + 4: 116 -14,-1: 0: 4369 - 3: 50244 + 4: 50244 -16,-3: - 3: 35056 + 4: 35056 0: 20480 -17,-3: - 3: 35056 + 4: 35056 0: 20480 -16,-2: 0: 21845 - 3: 34952 + 4: 34952 -17,-2: - 3: 34952 + 4: 34952 0: 21845 -17,-1: - 3: 34952 + 4: 34952 0: 21845 -15,-3: - 3: 35056 + 4: 35056 0: 20480 -15,-2: 0: 21845 - 3: 34952 + 4: 34952 -14,-3: - 3: 17648 + 4: 17648 0: 4096 -14,-2: 0: 4369 - 3: 17476 + 4: 17476 -19,0: - 3: 63929 + 4: 63929 0: 64 -19,-1: - 3: 63624 + 4: 63624 -18,0: - 3: 36092 + 4: 36092 0: 16384 -19,1: - 3: 34952 + 4: 34952 -19,2: - 3: 34952 + 4: 34952 -19,3: - 3: 136 + 4: 136 -18,3: - 3: 248 + 4: 248 -18,-1: 0: 17476 - 3: 34952 + 4: 34952 -18,1: 0: 17476 - 3: 34952 + 4: 34952 -18,2: 0: 17476 - 3: 34952 + 4: 34952 -19,-3: - 3: 34944 + 4: 34944 -18,-3: - 3: 35056 + 4: 35056 0: 16384 -19,-2: - 3: 34952 + 4: 34952 -18,-2: 0: 17476 - 3: 34952 + 4: 34952 -11,9: - 3: 3148 + 4: 3148 -11,10: 0: 35852 -10,9: - 3: 273 + 4: 273 0: 52428 -10,10: 0: 57231 @@ -13121,21 +13122,21 @@ entities: -10,12: 0: 3276 -12,14: - 3: 17648 + 4: 17648 -13,14: - 3: 240 + 4: 240 -12,15: - 3: 17476 + 4: 17476 -12,16: - 3: 17476 + 4: 17476 -11,14: - 3: 240 + 4: 240 -11,15: 0: 43136 -11,16: 0: 57898 -10,14: - 3: 16 + 4: 16 0: 52428 -10,15: 0: 65520 @@ -13170,7 +13171,7 @@ entities: -2,18: 0: 56793 -2,19: - 3: 16 + 4: 16 0: 8 -1,17: 0: 53757 @@ -13194,11 +13195,11 @@ entities: 0: 15289 -8,19: 0: 960 - 3: 8192 + 4: 8192 -9,19: 0: 2279 -8,20: - 3: 8738 + 4: 8738 -7,18: 0: 3838 -7,19: @@ -13246,13 +13247,13 @@ entities: -10,20: 0: 18019 -8,21: - 3: 12834 + 4: 12834 -9,21: - 3: 32768 + 4: 32768 -8,22: - 3: 8738 + 4: 8738 -8,23: - 3: 34 + 4: 34 -12,21: 0: 204 -11,21: @@ -13260,13 +13261,13 @@ entities: -10,21: 0: 47104 -10,22: - 3: 4 + 4: 4 -16,14: - 3: 224 + 4: 224 -15,14: - 3: 240 + 4: 240 -14,14: - 3: 240 + 4: 240 1,13: 0: 65485 1,14: @@ -13344,7 +13345,8 @@ entities: 5,7: 0: 35771 5,3: - 0: 48123 + 0: 35835 + 1: 12288 5,8: 0: 4095 6,4: @@ -13565,7 +13567,7 @@ entities: 0: 3003 8,13: 0: 65280 - 3: 4 + 4: 4 8,14: 0: 47931 8,15: @@ -13576,11 +13578,11 @@ entities: 0: 65504 5,19: 0: 11 - 3: 17472 + 4: 17472 5,16: 0: 61152 5,20: - 3: 17476 + 4: 17476 6,17: 0: 273 6,18: @@ -13600,7 +13602,7 @@ entities: 10,11: 0: 65294 10,9: - 3: 546 + 4: 546 10,10: 0: 61166 10,12: @@ -13610,7 +13612,7 @@ entities: 11,11: 0: 65291 11,9: - 3: 546 + 4: 546 0: 34952 12,8: 0: 4095 @@ -13821,7 +13823,7 @@ entities: 15,-6: 0: 56607 15,-9: - 3: 29952 + 4: 29952 0: 519 16,-8: 0: 43691 @@ -13833,9 +13835,9 @@ entities: 0: 46079 4,-10: 0: 4096 - 3: 32768 + 4: 32768 5,-10: - 3: 4096 + 4: 4096 0: 43144 5,-12: 0: 35498 @@ -13876,7 +13878,7 @@ entities: 2,-10: 0: 30576 3,-10: - 3: 28672 + 4: 28672 8,-13: 0: 56797 9,-12: @@ -13991,13 +13993,13 @@ entities: 0: 3313 -11,-12: 0: 35007 - 3: 4096 + 4: 4096 -11,-11: - 3: 17 + 4: 17 0: 43144 -11,-10: 0: 52367 - 3: 4352 + 4: 4352 -11,-13: 0: 36863 -10,-12: @@ -14006,7 +14008,7 @@ entities: 0: 64443 -10,-10: 0: 13115 - 3: 34816 + 4: 34816 -10,-13: 0: 13107 -9,-12: @@ -14015,19 +14017,19 @@ entities: 0: 30591 -9,-10: 0: 7 - 3: 3840 + 4: 3840 -8,-12: 0: 28775 -8,-11: 0: 30503 -8,-10: 0: 7 - 3: 3840 + 4: 3840 -8,-13: 0: 16384 -7,-10: 0: 32769 - 3: 20224 + 4: 20224 -7,-11: 0: 9836 -7,-13: @@ -14036,19 +14038,19 @@ entities: 0: 32768 -6,-12: 0: 4108 - 3: 16384 + 4: 16384 -6,-10: - 3: 12100 + 4: 12100 0: 32768 -6,-13: 0: 4096 - 3: 16384 + 4: 16384 -6,-11: - 3: 17476 + 4: 17476 -5,-12: 0: 1 -8,-16: - 3: 102 + 4: 102 0: 24576 -9,-16: 0: 65419 @@ -14057,7 +14059,7 @@ entities: -9,-15: 0: 15 -8,-17: - 3: 25668 + 4: 25668 -7,-16: 0: 1 -7,-15: @@ -14068,17 +14070,17 @@ entities: 0: 18028 -6,-15: 0: 6 - 3: 64 + 4: 64 -6,-17: 0: 51328 -12,-17: 0: 4352 - 3: 17648 + 4: 17648 -13,-16: 0: 4478 -12,-16: 0: 60992 - 3: 4 + 4: 4 -12,-15: 0: 3812 -13,-15: @@ -14093,42 +14095,42 @@ entities: 0: 63711 -11,-17: 0: 4352 - 3: 34968 + 4: 34968 -11,-16: - 3: 136 + 4: 136 0: 32768 -10,-16: - 3: 17 + 4: 17 0: 64580 -10,-15: 0: 13119 -10,-14: 0: 13107 -10,-17: - 3: 4096 + 4: 4096 0: 16384 -9,-17: 0: 32768 -13,-17: 0: 51200 -11,-18: - 3: 34824 + 4: 34824 -11,-20: - 3: 34952 + 4: 34952 -11,-21: - 3: 34816 + 4: 34816 -11,-19: - 3: 34952 + 4: 34952 -8,-20: - 3: 17476 + 4: 17476 -8,-21: - 3: 17408 + 4: 17408 -8,-19: - 3: 17476 + 4: 17476 -8,-18: - 3: 17412 + 4: 17412 -7,-18: - 3: 112 + 4: 112 0: 34816 -6,-18: 0: 2 @@ -14139,17 +14141,17 @@ entities: -5,-19: 0: 8960 -15,-15: - 3: 128 + 4: 128 -14,-15: - 3: 48 + 4: 48 0: 52428 -15,-14: - 3: 128 + 4: 128 -14,-14: - 3: 4400 + 4: 4400 0: 52428 -14,-13: - 3: 4369 + 4: 4369 0: 17608 -14,-12: 0: 140 @@ -14196,12 +14198,12 @@ entities: 17,-13: 0: 65535 17,-11: - 4: 52416 + 5: 52416 18,-12: 0: 255 18,-11: - 4: 4368 - 5: 52416 + 5: 4368 + 6: 52416 18,-10: 0: 65520 18,-13: @@ -14209,7 +14211,7 @@ entities: 19,-12: 0: 255 19,-11: - 5: 4368 + 6: 4368 0: 52416 19,-10: 0: 65520 @@ -14317,7 +14319,7 @@ entities: 0: 15135 7,-16: 0: 4096 - 3: 50176 + 4: 50176 7,-15: 0: 30576 7,-14: @@ -14372,84 +14374,84 @@ entities: 0: 65481 32,4: 0: 21845 - 3: 8738 + 4: 8738 32,3: - 3: 62196 + 4: 62196 32,5: 0: 1365 - 3: 61986 + 4: 61986 32,6: - 3: 65535 + 4: 65535 31,5: - 3: 61986 + 4: 61986 0: 1365 31,6: - 3: 65535 + 4: 65535 32,7: 0: 21845 - 3: 8738 + 4: 8738 32,8: 0: 21845 - 3: 41506 + 4: 41506 33,5: - 3: 61994 + 4: 61994 0: 1365 33,6: - 3: 63479 + 4: 63479 33,4: 0: 21845 - 3: 8746 + 4: 8746 33,3: - 3: 29424 + 4: 29424 33,7: 0: 21845 - 3: 10786 + 4: 10786 33,8: 0: 21845 - 3: 10786 + 4: 10786 34,4: - 3: 4369 + 4: 4369 34,5: - 3: 61713 + 4: 61713 34,6: - 3: 63961 + 4: 63961 0: 32 34,7: - 3: 4369 + 4: 4369 34,3: - 3: 4368 + 4: 4368 34,8: - 3: 4369 + 4: 4369 22,-20: - 3: 8750 + 4: 8750 22,-19: - 3: 8738 + 4: 8738 22,-18: - 3: 8738 + 4: 8738 22,-17: - 3: 8738 + 4: 8738 22,-16: - 3: 34 + 4: 34 0: 64768 23,-20: - 3: 50255 + 4: 50255 23,-19: - 3: 50244 + 4: 50244 23,-18: - 3: 50244 + 4: 50244 23,-17: - 3: 3140 + 4: 3140 24,-20: - 3: 61455 + 4: 61455 0: 3840 24,-19: - 3: 61440 + 4: 61440 0: 3855 24,-18: - 3: 61440 + 4: 61440 0: 3855 24,-17: - 3: 3840 + 4: 3840 0: 15 21,-16: 0: 65280 @@ -14497,21 +14499,21 @@ entities: 0: 65535 22,-11: 0: 13107 - 2: 2184 + 3: 2184 22,-10: 0: 13107 - 2: 2184 + 3: 2184 22,-9: 0: 13107 - 6: 2184 + 7: 2184 22,-8: 0: 16383 23,-11: - 2: 819 + 3: 819 23,-10: - 2: 819 + 3: 819 23,-9: - 6: 819 + 7: 819 23,-8: 0: 4095 24,-12: @@ -14532,7 +14534,7 @@ entities: 0: 30503 22,-7: 0: 13107 - 2: 2184 + 3: 2184 22,-6: 0: 64387 22,-5: @@ -14540,7 +14542,7 @@ entities: 22,-4: 0: 61883 23,-7: - 2: 819 + 3: 819 0: 2184 23,-6: 0: 65392 @@ -14612,71 +14614,71 @@ entities: 0: 3581 26,-17: 0: 57345 - 3: 3918 + 4: 3918 27,-16: 0: 4368 - 3: 17476 + 4: 17476 27,-15: 0: 4369 - 3: 17476 + 4: 17476 27,-13: 0: 256 - 3: 17476 + 4: 17476 27,-12: - 3: 18022 + 4: 18022 0: 16 27,-17: - 3: 20224 + 4: 20224 0: 15 27,-14: - 3: 17476 + 4: 17476 25,-20: - 3: 61455 + 4: 61455 0: 3840 25,-19: 0: 3855 - 3: 61440 + 4: 61440 25,-18: 0: 3855 - 3: 61440 + 4: 61440 25,-17: 0: 15 - 3: 3840 + 4: 3840 26,-20: - 3: 65103 + 4: 65103 0: 256 26,-19: 0: 257 - 3: 65102 + 4: 65102 26,-18: 0: 257 - 3: 65102 + 4: 65102 26,-21: - 3: 5616 + 4: 5616 0: 16384 27,-20: - 3: 61455 + 4: 61455 0: 3840 27,-19: 0: 3855 - 3: 61440 + 4: 61440 27,-18: 0: 3855 - 3: 61440 + 4: 61440 27,-21: - 3: 4368 + 4: 4368 28,-20: - 3: 61455 + 4: 61455 0: 3840 28,-19: 0: 3855 - 3: 61440 + 4: 61440 28,-18: 0: 3855 - 3: 61440 + 4: 61440 28,-17: 0: 15 - 3: 3840 + 4: 3840 25,-11: 0: 3003 25,-10: @@ -14687,33 +14689,33 @@ entities: 0: 1423 26,-11: 0: 10239 - 3: 49152 + 4: 49152 26,-10: 0: 2 - 2: 60928 - 3: 12 + 3: 60928 + 4: 12 26,-9: - 2: 14 + 3: 14 0: 58880 - 3: 2048 + 4: 2048 26,-8: 0: 119 27,-11: 0: 17 - 3: 62532 + 4: 62532 27,-10: - 3: 239 + 4: 239 0: 26112 27,-9: - 3: 18272 + 4: 18272 0: 6 27,-8: - 3: 22357 + 4: 22357 0: 32768 28,-11: - 3: 12288 + 4: 12288 28,-10: - 3: 51 + 4: 51 0: 34944 25,-6: 0: 62259 @@ -14721,10 +14723,10 @@ entities: 0: 64399 25,-4: 0: 40715 - 3: 16384 + 4: 16384 26,-6: 0: 61440 - 3: 128 + 4: 128 26,-5: 0: 64799 26,-4: @@ -14734,7 +14736,7 @@ entities: 27,-5: 0: 63247 27,-7: - 3: 1877 + 4: 1877 0: 10376 27,-4: 0: 65287 @@ -14748,7 +14750,7 @@ entities: 0: 61152 28,-4: 0: 16167 - 3: 16384 + 4: 16384 29,-8: 0: 247 29,-7: @@ -14775,16 +14777,16 @@ entities: 0: 12556 31,-6: 0: 78 - 3: 3072 + 4: 3072 31,-7: 0: 50244 31,-9: 0: 26146 32,-8: 0: 51 - 3: 34952 + 4: 34952 32,-6: - 3: 256 + 4: 256 0: 58444 28,-9: 0: 2180 @@ -14792,11 +14794,11 @@ entities: 0: 2527 30,-10: 0: 10096 - 3: 32768 + 4: 32768 30,-9: 0: 54 31,-10: - 3: 12288 + 4: 12288 0: 1224 31,-11: 0: 32768 @@ -14804,11 +14806,11 @@ entities: 0: 61168 32,-9: 0: 29832 - 3: 32768 + 4: 32768 32,-5: 0: 204 32,-7: - 3: 8 + 4: 8 0: 34816 33,-7: 0: 36310 @@ -14817,24 +14819,24 @@ entities: 33,-8: 0: 8192 28,-3: - 3: 5389 + 4: 5389 0: 43762 27,-3: 0: 241 - 3: 7938 + 4: 7938 28,-2: - 3: 20817 + 4: 20817 0: 44714 27,-2: - 3: 7953 + 4: 7953 28,-1: - 3: 1297 + 4: 1297 0: 64170 27,-1: - 3: 3857 + 4: 3857 0: 61440 28,0: - 3: 77 + 4: 77 0: 3890 29,-3: 0: 56797 @@ -14856,7 +14858,7 @@ entities: 0: 28945 31,-3: 0: 28915 - 3: 8 + 4: 8 31,-2: 0: 63351 31,-1: @@ -14873,30 +14875,30 @@ entities: 0: 24687 25,-3: 0: 48121 - 3: 1030 + 4: 1030 25,-2: 0: 49083 - 3: 16448 + 4: 16448 25,-1: 0: 64443 - 3: 1024 + 4: 1024 25,0: 0: 3993 - 3: 70 + 4: 70 26,-3: - 3: 7945 + 4: 7945 0: 240 26,-2: - 3: 7953 + 4: 7953 26,-1: - 3: 3857 + 4: 3857 0: 61440 26,0: - 3: 9 + 4: 9 0: 4080 27,0: 0: 4081 - 3: 2 + 4: 2 32,0: 0: 51340 33,-3: @@ -14913,12 +14915,12 @@ entities: 0: 49072 32,2: 0: 3 - 3: 17480 + 4: 17480 31,2: 0: 8 - 3: 4368 + 4: 4368 31,3: - 3: 62193 + 4: 62193 33,1: 0: 16 28,1: @@ -14941,24 +14943,24 @@ entities: 0: 64256 29,3: 0: 30475 - 3: 32768 + 4: 32768 29,4: 0: 26231 - 3: 34952 + 4: 34952 30,2: 0: 29440 - 3: 34816 + 4: 34816 30,3: 0: 3 - 3: 61960 + 4: 61960 30,1: 0: 28262 30,4: 0: 21845 - 3: 8738 + 4: 8738 31,4: 0: 21845 - 3: 8738 + 4: 8738 24,1: 0: 32766 23,1: @@ -15025,33 +15027,33 @@ entities: 0: 59142 29,7: 0: 30020 - 3: 34952 + 4: 34952 29,5: 0: 26214 - 3: 34952 + 4: 34952 29,8: 0: 26181 - 3: 34952 + 4: 34952 29,6: 0: 19660 - 3: 32768 + 4: 32768 30,5: 0: 1365 - 3: 61986 + 4: 61986 30,6: - 3: 65535 + 4: 65535 30,7: 0: 21845 - 3: 8738 + 4: 8738 30,8: 0: 21845 - 3: 41506 + 4: 41506 31,7: 0: 21845 - 3: 8738 + 4: 8738 31,8: 0: 21845 - 3: 41506 + 4: 41506 24,5: 0: 61695 23,5: @@ -15128,7 +15130,7 @@ entities: 0: 52701 30,9: 0: 65024 - 3: 226 + 4: 226 30,10: 0: 3854 30,11: @@ -15136,7 +15138,7 @@ entities: 30,12: 0: 64443 31,9: - 3: 242 + 4: 242 0: 61440 31,10: 0: 3855 @@ -15145,7 +15147,7 @@ entities: 31,12: 0: 64732 32,9: - 3: 242 + 4: 242 0: 12288 32,10: 0: 14799 @@ -15186,18 +15188,18 @@ entities: 32,12: 0: 17749 33,9: - 3: 35058 + 4: 35058 33,10: 0: 29488 - 3: 8 + 4: 8 33,11: 0: 32767 33,12: 0: 13111 34,9: - 3: 17 + 4: 17 34,10: - 3: 16 + 4: 16 32,13: 0: 13893 31,13: @@ -15214,7 +15216,7 @@ entities: 0: 3 33,13: 0: 12595 - 3: 32768 + 4: 32768 33,14: 0: 16247 33,15: @@ -15247,7 +15249,7 @@ entities: 0: 63628 29,17: 0: 256 - 3: 8192 + 4: 8192 28,18: 0: 8 29,18: @@ -15294,22 +15296,22 @@ entities: 0: 61668 20,14: 0: 255 - 3: 8192 + 4: 8192 19,14: 0: 255 20,15: - 3: 8946 + 4: 8946 19,15: - 3: 240 + 4: 240 20,16: - 3: 65522 + 4: 65522 21,13: 0: 61440 21,14: 0: 31 - 3: 3072 + 4: 3072 21,15: - 3: 240 + 4: 240 21,12: 0: 34952 21,11: @@ -15320,31 +15322,31 @@ entities: 0: 61472 22,14: 0: 52367 - 3: 256 + 4: 256 22,15: - 3: 16 + 4: 16 0: 52428 22,11: 0: 65282 22,16: 0: 52428 - 3: 4368 + 4: 4368 23,15: 0: 4593 23,16: 0: 7953 19,16: - 3: 65520 + 4: 65520 20,17: - 3: 15 + 4: 15 19,17: - 3: 15 + 4: 15 21,16: - 3: 65520 + 4: 65520 21,17: - 3: 15 + 4: 15 22,17: - 3: 1 + 4: 1 0: 36044 22,18: 0: 2252 @@ -15382,11 +15384,11 @@ entities: 0: 65535 16,15: 0: 11 - 3: 4352 + 4: 4352 15,15: 0: 15 16,16: - 3: 65521 + 4: 65521 17,12: 0: 65535 17,13: @@ -15405,11 +15407,11 @@ entities: 0: 13175 18,15: 0: 3 - 3: 13184 + 4: 13184 18,11: 0: 30707 18,16: - 3: 65523 + 4: 65523 17,9: 0: 65359 17,10: @@ -15448,10 +15450,10 @@ entities: 0: 56799 14,15: 0: 4381 - 3: 17408 + 4: 17408 14,16: 0: 12305 - 3: 2244 + 4: 2244 9,13: 0: 65484 9,14: @@ -15471,156 +15473,156 @@ entities: 11,16: 0: 28879 12,18: - 3: 33012 + 4: 33012 0: 28672 11,18: - 3: 240 + 4: 240 0: 61440 12,19: - 3: 32911 + 4: 32911 0: 28784 11,19: - 3: 15 + 4: 15 0: 61680 12,20: - 3: 32911 + 4: 32911 0: 28784 12,17: 0: 8 - 3: 17408 + 4: 17408 13,17: 0: 4379 - 3: 19456 + 4: 19456 13,18: - 3: 12789 + 4: 12789 0: 49152 13,19: - 3: 12607 + 4: 12607 0: 49344 13,20: - 3: 12607 + 4: 12607 0: 49344 14,17: - 3: 12032 + 4: 12032 0: 34 14,18: - 3: 754 + 4: 754 0: 61440 14,19: - 3: 15 + 4: 15 0: 61680 14,20: - 3: 15 + 4: 15 0: 61680 15,16: - 3: 4080 + 4: 4080 15,17: - 3: 3840 + 4: 3840 15,18: - 3: 240 + 4: 240 0: 28672 15,19: - 3: 15 + 4: 15 0: 28784 15,20: - 3: 15 + 4: 15 0: 28784 16,17: - 3: 4383 + 4: 4383 16,18: - 3: 4369 + 4: 4369 16,19: - 3: 4369 + 4: 4369 16,20: - 3: 4369 + 4: 4369 17,16: - 3: 65520 + 4: 65520 17,17: - 3: 15 + 4: 15 18,17: - 3: 15 + 4: 15 8,17: 0: 24584 9,17: 0: 717 10,17: 0: 239 - 3: 4352 + 4: 4352 10,18: - 3: 4593 + 4: 4593 0: 49152 10,19: - 3: 4383 + 4: 4383 0: 49344 10,20: - 3: 4383 + 4: 4383 0: 49344 11,17: 0: 7 11,20: - 3: 15 + 4: 15 0: 61680 29,-20: - 3: 29767 + 4: 29767 0: 256 29,-19: 0: 257 - 3: 29764 + 4: 29764 29,-18: 0: 257 - 3: 29764 + 4: 29764 29,-17: 0: 1 - 3: 1860 + 4: 1860 12,21: - 3: 61583 + 4: 61583 0: 112 11,21: - 3: 61455 + 4: 61455 0: 240 12,22: - 3: 3140 + 4: 3140 13,21: - 3: 61759 + 4: 61759 0: 192 13,22: - 3: 1860 + 4: 1860 0: 1 14,21: - 3: 61455 + 4: 61455 0: 240 15,21: - 3: 61455 + 4: 61455 0: 112 16,21: - 3: 4369 + 4: 4369 8,21: - 3: 61440 + 4: 61440 7,21: - 3: 61440 + 4: 61440 9,21: - 3: 61440 + 4: 61440 10,21: - 3: 61727 + 4: 61727 0: 192 0,21: - 3: 61440 + 4: 61440 -1,21: - 3: 49152 + 4: 49152 1,20: 0: 57232 1,21: - 3: 61986 + 4: 61986 2,21: - 3: 61440 + 4: 61440 3,21: - 3: 61440 + 4: 61440 4,21: - 3: 61440 + 4: 61440 5,21: - 3: 62532 + 4: 62532 6,21: - 3: 61440 + 4: 61440 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -15637,6 +15639,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 235 moles: @@ -15738,13 +15755,23 @@ entities: - uid: 13351 components: - type: Transform - pos: 31.45508,12.761587 - parent: 13329 + parent: 32207 + - type: Physics + canCollide: False - uid: 26234 components: - type: Transform pos: 86.510315,-15.505127 parent: 13329 +- proto: ActionToggleBlock + entities: + - uid: 10647 + components: + - type: Transform + parent: 10646 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 10646 - proto: AirAlarm entities: - uid: 609 @@ -17736,11 +17763,6 @@ entities: parent: 13329 - proto: AirlockArmoryGlassLocked entities: - - uid: 9361 - components: - - type: Transform - pos: 37.5,13.5 - parent: 13329 - uid: 9362 components: - type: Transform @@ -19486,7 +19508,7 @@ entities: pos: -15.5,-4.5 parent: 13329 - type: Door - secondsUntilStateChange: -4273.221 + secondsUntilStateChange: -10469.685 state: Opening - type: DeviceLinkSource lastSignals: @@ -21808,13 +21830,6 @@ entities: - type: Transform pos: 19.5,27.5 parent: 13329 - - uid: 8925 - components: - - type: MetaData - name: Security Locker Room APC - - type: Transform - pos: 34.5,15.5 - parent: 13329 - uid: 9991 components: - type: MetaData @@ -21845,6 +21860,14 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-15.5 parent: 13329 + - uid: 10644 + components: + - type: MetaData + name: Security Lockers APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,10.5 + parent: 13329 - uid: 10792 components: - type: MetaData @@ -28575,7 +28598,7 @@ entities: parent: 13329 - proto: BannerSecurity entities: - - uid: 9442 + - uid: 2198 components: - type: Transform pos: 36.5,14.5 @@ -28876,16 +28899,6 @@ entities: - type: Transform pos: 39.5,1.5 parent: 13329 - - uid: 9646 - components: - - type: Transform - pos: 42.5,1.5 - parent: 13329 - - uid: 9651 - components: - - type: Transform - pos: 44.5,1.5 - parent: 13329 - uid: 10302 components: - type: Transform @@ -29217,6 +29230,16 @@ entities: parent: 13329 - proto: BedsheetMedical entities: + - uid: 1653 + components: + - type: Transform + pos: 9.5,50.5 + parent: 13329 + - uid: 8780 + components: + - type: Transform + pos: 15.5,51.5 + parent: 13329 - uid: 9647 components: - type: Transform @@ -29228,12 +29251,22 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,1.5 parent: 13329 + - uid: 15511 + components: + - type: Transform + pos: 15.5,50.5 + parent: 13329 - uid: 17402 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,57.5 parent: 13329 + - uid: 18587 + components: + - type: Transform + pos: 9.5,51.5 + parent: 13329 - uid: 18727 components: - type: Transform @@ -29475,12 +29508,7 @@ entities: - type: Transform pos: -46.5,-10.5 parent: 13329 - - uid: 8641 - components: - - type: Transform - pos: 22.5,10.5 - parent: 13329 - - uid: 8642 + - uid: 7239 components: - type: Transform pos: 22.5,11.5 @@ -29556,8 +29584,61 @@ entities: rot: 1.5707963267948966 rad pos: 129.5,-3.5 parent: 13329 + - uid: 35939 + components: + - type: Transform + pos: 22.5,10.5 + parent: 13329 - proto: BlastDoorOpen entities: + - uid: 9391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,0.5 + parent: 13329 + - uid: 9392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,0.5 + parent: 13329 + - uid: 9393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,0.5 + parent: 13329 + - uid: 9394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,0.5 + parent: 13329 + - uid: 9395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,0.5 + parent: 13329 + - uid: 9396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,0.5 + parent: 13329 + - uid: 9397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,0.5 + parent: 13329 + - uid: 9398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,0.5 + parent: 13329 - uid: 9400 components: - type: Transform @@ -29583,6 +29664,18 @@ entities: - type: Transform pos: 52.5,24.5 parent: 13329 + - uid: 10638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,0.5 + parent: 13329 + - uid: 10645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,0.5 + parent: 13329 - uid: 14605 components: - type: Transform @@ -30129,15 +30222,30 @@ entities: parent: 13329 - proto: BoxBeanbag entities: + - uid: 7314 + components: + - type: Transform + pos: 16.481295,11.471256 + parent: 13329 + - uid: 8640 + components: + - type: Transform + pos: 16.61324,11.471256 + parent: 13329 - uid: 10642 components: - type: Transform - pos: 19.441084,9.497059 + pos: 31.342075,13.304442 parent: 13329 - - uid: 10643 + - uid: 18486 components: - type: Transform - pos: 19.441084,9.700184 + pos: 16.557684,11.471256 + parent: 13329 + - uid: 18500 + components: + - type: Transform + pos: 16.41185,11.464312 parent: 13329 - uid: 29510 components: @@ -30161,6 +30269,11 @@ entities: - type: Transform pos: 7.559045,47.574802 parent: 13329 + - uid: 35992 + components: + - type: Transform + pos: 45.68641,3.780618 + parent: 13329 - proto: BoxBottle entities: - uid: 18489 @@ -30220,7 +30333,7 @@ entities: - uid: 10688 components: - type: Transform - pos: 19.137007,15.606925 + pos: 19.610106,15.633911 parent: 13329 - proto: BoxFolderBlack entities: @@ -30475,15 +30588,30 @@ entities: parent: 13329 - proto: BoxLethalshot entities: - - uid: 10634 + - uid: 8667 components: - type: Transform - pos: 17.534834,11.575184 + pos: 16.66185,11.429589 parent: 13329 - - uid: 10635 + - uid: 8669 components: - type: Transform - pos: 17.519209,11.684559 + pos: 16.606295,11.429589 + parent: 13329 + - uid: 8674 + components: + - type: Transform + pos: 16.557684,11.429589 + parent: 13329 + - uid: 8819 + components: + - type: Transform + pos: 16.446573,11.429589 + parent: 13329 + - uid: 9340 + components: + - type: Transform + pos: 31.685825,13.288817 parent: 13329 - proto: BoxLightMixed entities: @@ -30527,6 +30655,18 @@ entities: - type: Transform pos: 122.54931,-2.3429494 parent: 13329 +- proto: BoxMagazinePistol + entities: + - uid: 10778 + components: + - type: Transform + pos: 31.581856,17.594582 + parent: 13329 + - uid: 16654 + components: + - type: Transform + pos: 29.863941,22.58788 + parent: 13329 - proto: BoxMousetrap entities: - uid: 1645 @@ -30553,18 +30693,6 @@ entities: - type: Transform pos: 19.561905,38.478992 parent: 13329 -- proto: BoxShotgunSlug - entities: - - uid: 10633 - components: - - type: Transform - pos: 17.066084,11.684559 - parent: 13329 - - uid: 10644 - components: - - type: Transform - pos: 17.066084,11.559559 - parent: 13329 - proto: BoxSterileMask entities: - uid: 18905 @@ -30609,12 +30737,7 @@ entities: - uid: 10694 components: - type: Transform - pos: 18.829138,15.606031 - parent: 13329 - - uid: 10695 - components: - - type: Transform - pos: 31.688059,12.85841 + pos: 19.040033,15.5982 parent: 13329 - proto: BriefcaseBrown entities: @@ -30774,12 +30897,38 @@ entities: parent: 13329 - proto: ButtonFrameCaution entities: + - uid: 10692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,38.5 + parent: 13329 + - uid: 20066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,11.5 + parent: 13329 - uid: 27081 components: - type: Transform rot: -1.5707963267948966 rad pos: 127.5,-2.5 parent: 13329 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 8648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.484993,12.760994 + parent: 13329 + - uid: 8666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.478048,12.226272 + parent: 13329 - proto: ButtonFrameExit entities: - uid: 20552 @@ -34670,6 +34819,11 @@ entities: - type: Transform pos: -1.5,45.5 parent: 13329 + - uid: 8664 + components: + - type: Transform + pos: 36.5,13.5 + parent: 13329 - uid: 8687 components: - type: Transform @@ -35065,11 +35219,6 @@ entities: - type: Transform pos: 19.5,27.5 parent: 13329 - - uid: 8766 - components: - - type: Transform - pos: 19.5,26.5 - parent: 13329 - uid: 8767 components: - type: Transform @@ -35135,11 +35284,6 @@ entities: - type: Transform pos: 18.5,26.5 parent: 13329 - - uid: 8780 - components: - - type: Transform - pos: 17.5,26.5 - parent: 13329 - uid: 8781 components: - type: Transform @@ -35330,11 +35474,6 @@ entities: - type: Transform pos: 20.5,14.5 parent: 13329 - - uid: 8819 - components: - - type: Transform - pos: 22.5,12.5 - parent: 13329 - uid: 8820 components: - type: Transform @@ -35890,16 +36029,6 @@ entities: - type: Transform pos: 34.5,13.5 parent: 13329 - - uid: 8932 - components: - - type: Transform - pos: 34.5,14.5 - parent: 13329 - - uid: 8933 - components: - - type: Transform - pos: 34.5,15.5 - parent: 13329 - uid: 8934 components: - type: Transform @@ -35915,21 +36044,6 @@ entities: - type: Transform pos: 35.5,9.5 parent: 13329 - - uid: 8937 - components: - - type: Transform - pos: 35.5,12.5 - parent: 13329 - - uid: 8938 - components: - - type: Transform - pos: 36.5,12.5 - parent: 13329 - - uid: 8939 - components: - - type: Transform - pos: 37.5,12.5 - parent: 13329 - uid: 8940 components: - type: Transform @@ -35940,11 +36054,6 @@ entities: - type: Transform pos: 44.5,6.5 parent: 13329 - - uid: 8942 - components: - - type: Transform - pos: 37.5,14.5 - parent: 13329 - uid: 8943 components: - type: Transform @@ -36465,6 +36574,21 @@ entities: - type: Transform pos: 46.5,22.5 parent: 13329 + - uid: 9420 + components: + - type: Transform + pos: 35.5,13.5 + parent: 13329 + - uid: 9433 + components: + - type: Transform + pos: 32.5,10.5 + parent: 13329 + - uid: 9445 + components: + - type: Transform + pos: 33.5,10.5 + parent: 13329 - uid: 10794 components: - type: Transform @@ -59246,15 +59370,10 @@ entities: - type: Transform pos: 17.5,-21.5 parent: 13329 - - uid: 10291 + - uid: 10696 components: - type: Transform - pos: 23.5,12.5 - parent: 13329 - - uid: 10292 - components: - - type: Transform - pos: 22.5,12.5 + pos: 28.5,0.5 parent: 13329 - uid: 11012 components: @@ -68456,6 +68575,51 @@ entities: - type: Transform pos: 86.5,3.5 parent: 13329 + - uid: 35979 + components: + - type: Transform + pos: 27.5,0.5 + parent: 13329 + - uid: 35980 + components: + - type: Transform + pos: 30.5,0.5 + parent: 13329 + - uid: 35981 + components: + - type: Transform + pos: 31.5,0.5 + parent: 13329 + - uid: 35982 + components: + - type: Transform + pos: 33.5,0.5 + parent: 13329 + - uid: 35983 + components: + - type: Transform + pos: 34.5,0.5 + parent: 13329 + - uid: 35984 + components: + - type: Transform + pos: 36.5,0.5 + parent: 13329 + - uid: 35985 + components: + - type: Transform + pos: 37.5,0.5 + parent: 13329 + - uid: 35986 + components: + - type: Transform + pos: 38.5,0.5 + parent: 13329 + - uid: 35987 + components: + - type: Transform + pos: 39.5,0.5 + parent: 13329 - proto: CableHVStack entities: - uid: 26657 @@ -68740,6 +68904,11 @@ entities: - type: Transform pos: -19.5,32.5 parent: 13329 + - uid: 1348 + components: + - type: Transform + pos: 32.5,10.5 + parent: 13329 - uid: 1898 components: - type: Transform @@ -70790,31 +70959,6 @@ entities: - type: Transform pos: 43.5,16.5 parent: 13329 - - uid: 9119 - components: - - type: Transform - pos: 34.5,15.5 - parent: 13329 - - uid: 9120 - components: - - type: Transform - pos: 34.5,14.5 - parent: 13329 - - uid: 9121 - components: - - type: Transform - pos: 34.5,13.5 - parent: 13329 - - uid: 9122 - components: - - type: Transform - pos: 34.5,12.5 - parent: 13329 - - uid: 9123 - components: - - type: Transform - pos: 34.5,11.5 - parent: 13329 - uid: 9124 components: - type: Transform @@ -71260,6 +71404,11 @@ entities: - type: Transform pos: 22.5,19.5 parent: 13329 + - uid: 10643 + components: + - type: Transform + pos: 33.5,10.5 + parent: 13329 - uid: 10823 components: - type: Transform @@ -89220,12 +89369,6 @@ entities: - type: Transform pos: 39.5,10.5 parent: 13329 - - uid: 9653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,1.5 - parent: 13329 - uid: 10153 components: - type: Transform @@ -89342,24 +89485,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-24.5 parent: 13329 - - uid: 15501 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-29.5 - parent: 13329 - - uid: 15508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-15.5 - parent: 13329 - - uid: 15511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-16.5 - parent: 13329 - uid: 15538 components: - type: Transform @@ -90037,6 +90162,12 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,56.5 parent: 13329 + - uid: 6968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5223,-29.434305 + parent: 13329 - uid: 9384 components: - type: Transform @@ -90312,11 +90443,6 @@ entities: - type: Transform pos: 83.5,-41.5 parent: 13329 - - uid: 35339 - components: - - type: Transform - pos: 31.5,7.5 - parent: 13329 - proto: ChairOfficeLight entities: - uid: 15343 @@ -90851,6 +90977,11 @@ entities: parent: 13329 - proto: ChemistryHotplate entities: + - uid: 10636 + components: + - type: Transform + pos: 21.5,39.5 + parent: 13329 - uid: 18362 components: - type: Transform @@ -91024,11 +91155,6 @@ entities: parent: 13329 - proto: CircuitImprinter entities: - - uid: 15309 - components: - - type: Transform - pos: 35.5,-19.5 - parent: 13329 - uid: 15506 components: - type: Transform @@ -91050,29 +91176,11 @@ entities: parent: 13329 - proto: ClosetBombFilled entities: - - uid: 9440 + - uid: 10640 components: - type: Transform - pos: 36.5,11.5 + pos: 38.5,12.5 parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 15366 components: - type: Transform @@ -93270,33 +93378,10 @@ entities: - 0 - 0 - 0 - - uid: 9441 + - uid: 10695 components: - type: Transform - pos: 36.5,12.5 - parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13391 - components: - - type: Transform - pos: 16.5,15.5 + pos: 39.5,12.5 parent: 13329 - uid: 18692 components: @@ -93925,6 +94010,11 @@ entities: - 0 - proto: ClosetRadiationSuitFilled entities: + - uid: 15308 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 13329 - uid: 15367 components: - type: Transform @@ -93971,6 +94061,11 @@ entities: - 0 - 0 - 0 + - uid: 23565 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 13329 - uid: 23568 components: - type: Transform @@ -94722,6 +94817,13 @@ entities: - type: Transform pos: 76.55065,10.666498 parent: 13329 +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 14372 + components: + - type: Transform + pos: 35.60128,-23.42127 + parent: 13329 - proto: ClothingBackpackSatchelLeather entities: - uid: 6580 @@ -94872,16 +94974,6 @@ entities: parent: 13329 - proto: ClothingEyesGlassesSunglasses entities: - - uid: 10696 - components: - - type: Transform - pos: 21.021912,9.466003 - parent: 13329 - - uid: 10697 - components: - - type: Transform - pos: 21.021912,9.591003 - parent: 13329 - uid: 32535 components: - type: Transform @@ -95034,11 +95126,6 @@ entities: parent: 13329 - proto: ClothingHandsGlovesColorYellow entities: - - uid: 6968 - components: - - type: Transform - pos: 4.403781,30.501423 - parent: 13329 - uid: 26249 components: - type: Transform @@ -95066,11 +95153,6 @@ entities: - type: Transform pos: 77.503525,-25.483427 parent: 13329 - - uid: 33812 - components: - - type: Transform - pos: 37.542885,36.57493 - parent: 13329 - proto: ClothingHandsGlovesFingerless entities: - uid: 32126 @@ -95235,13 +95317,6 @@ entities: - type: Transform pos: -17.52614,16.568653 parent: 13329 -- proto: ClothingHeadHatCardborg - entities: - - uid: 20066 - components: - - type: Transform - pos: 33.52294,-26.147404 - parent: 13329 - proto: ClothingHeadHatChef entities: - uid: 10446 @@ -95491,6 +95566,48 @@ entities: - type: Transform pos: 112.55392,23.481916 parent: 13329 +- proto: ClothingHeadHelmetBasic + entities: + - uid: 8942 + components: + - type: Transform + pos: 17.435272,13.586082 + parent: 13329 + - uid: 10292 + components: + - type: Transform + pos: 17.612356,13.315249 + parent: 13329 + - uid: 10525 + components: + - type: Transform + pos: 17.60194,13.429832 + parent: 13329 + - uid: 10593 + components: + - type: Transform + pos: 17.60194,13.523582 + parent: 13329 + - uid: 10673 + components: + - type: Transform + pos: 17.424856,13.690249 + parent: 13329 + - uid: 10674 + components: + - type: Transform + pos: 17.435272,13.523582 + parent: 13329 + - uid: 10682 + components: + - type: Transform + pos: 17.612356,13.627749 + parent: 13329 + - uid: 13323 + components: + - type: Transform + pos: 17.435272,13.419415 + parent: 13329 - proto: ClothingHeadHelmetEVA entities: - uid: 5415 @@ -95506,20 +95623,35 @@ entities: parent: 13329 - proto: ClothingHeadHelmetRiot entities: - - uid: 10654 + - uid: 35958 components: - type: Transform - pos: 18.486015,13.337078 + pos: 18.374508,13.634324 parent: 13329 - - uid: 10655 + - uid: 35959 components: - type: Transform - pos: 18.486015,13.337078 + pos: 18.374508,13.519741 parent: 13329 - - uid: 10656 + - uid: 35960 components: - type: Transform - pos: 18.486015,13.337078 + pos: 18.374508,13.415574 + parent: 13329 + - uid: 35961 + components: + - type: Transform + pos: 18.759924,13.655157 + parent: 13329 + - uid: 35962 + components: + - type: Transform + pos: 18.759924,13.561407 + parent: 13329 + - uid: 35963 + components: + - type: Transform + pos: 18.759924,13.436407 parent: 13329 - proto: ClothingHeadHelmetTemplar entities: @@ -95554,18 +95686,6 @@ entities: - type: Transform pos: 12.429535,-32.530125 parent: 13329 -- proto: ClothingHeadsetRobotics - entities: - - uid: 32207 - components: - - type: Transform - pos: 36.660496,-23.34851 - parent: 13329 - - uid: 34244 - components: - - type: Transform - pos: 36.64324,-23.319489 - parent: 13329 - proto: ClothingHeadsetScience entities: - uid: 15494 @@ -95627,21 +95747,6 @@ entities: - type: Transform pos: -1.4137464,49.175823 parent: 13329 - - uid: 18484 - components: - - type: Transform - pos: 21.404108,39.529633 - parent: 13329 - - uid: 18485 - components: - - type: Transform - pos: 21.435358,39.607758 - parent: 13329 - - uid: 18486 - components: - - type: Transform - pos: 21.332224,39.46711 - parent: 13329 - uid: 31660 components: - type: Transform @@ -95708,16 +95813,6 @@ entities: parent: 13329 - proto: ClothingMaskGasSecurity entities: - - uid: 9445 - components: - - type: Transform - pos: 38.406982,14.572508 - parent: 13329 - - uid: 9446 - components: - - type: Transform - pos: 38.610107,14.463133 - parent: 13329 - uid: 10155 components: - type: Transform @@ -95873,37 +95968,77 @@ entities: parent: 13329 - proto: ClothingOuterArmorBasic entities: - - uid: 16653 + - uid: 7313 components: - type: Transform - pos: 19.353907,13.4972 + pos: 17.28944,13.346499 parent: 13329 - - uid: 16654 + - uid: 9418 components: - type: Transform - pos: 19.353907,13.4972 + pos: 17.799856,13.544415 parent: 13329 - - uid: 16655 + - uid: 10649 components: - type: Transform - pos: 19.353907,13.4972 + pos: 17.799856,13.471499 + parent: 13329 + - uid: 10669 + components: + - type: Transform + pos: 17.268606,13.440249 + parent: 13329 + - uid: 13339 + components: + - type: Transform + pos: 17.78944,13.658999 + parent: 13329 + - uid: 35954 + components: + - type: Transform + pos: 17.810272,13.356915 + parent: 13329 + - uid: 35955 + components: + - type: Transform + pos: 17.247772,13.669415 + parent: 13329 + - uid: 35956 + components: + - type: Transform + pos: 17.25819,13.565249 parent: 13329 - proto: ClothingOuterArmorBulletproof entities: - - uid: 10663 + - uid: 1349 components: - type: Transform - pos: 19.548515,13.446453 + pos: 19.343298,13.405157 parent: 13329 - - uid: 10664 + - uid: 8637 components: - type: Transform - pos: 19.548515,13.446453 + pos: 19.332882,13.603074 parent: 13329 - - uid: 10665 + - uid: 8642 components: - type: Transform - pos: 19.548515,13.446453 + pos: 19.655758,13.603074 + parent: 13329 + - uid: 10697 + components: + - type: Transform + pos: 19.343298,13.519741 + parent: 13329 + - uid: 35870 + components: + - type: Transform + pos: 19.655758,13.394741 + parent: 13329 + - uid: 35940 + components: + - type: Transform + pos: 19.655758,13.488491 parent: 13329 - proto: ClothingOuterArmorReflective entities: @@ -95924,27 +96059,35 @@ entities: parent: 13329 - proto: ClothingOuterArmorRiot entities: - - uid: 10657 + - uid: 9121 components: - type: Transform - pos: 18.68914,13.524578 + pos: 18.36409,13.363491 parent: 13329 - - uid: 10658 + - uid: 9434 components: - type: Transform - pos: 18.68914,13.524578 + pos: 18.77034,13.373907 parent: 13329 - - uid: 10659 + - uid: 9435 components: - type: Transform - pos: 18.68914,13.524578 + pos: 18.36409,13.540574 parent: 13329 -- proto: ClothingOuterCardborg - entities: - - uid: 20065 + - uid: 10641 components: - type: Transform - pos: 33.538567,-26.459904 + pos: 18.77034,13.478074 + parent: 13329 + - uid: 10676 + components: + - type: Transform + pos: 18.77034,13.571824 + parent: 13329 + - uid: 18358 + components: + - type: Transform + pos: 18.353674,13.446824 parent: 13329 - proto: ClothingOuterCoatBomber entities: @@ -95987,28 +96130,6 @@ entities: - type: Transform pos: 53.592335,-42.45482 parent: 13329 -- proto: ClothingOuterHardsuitSecurity - entities: - - uid: 9436 - components: - - type: Transform - pos: 39.420284,12.540021 - parent: 13329 - - uid: 9437 - components: - - type: Transform - pos: 39.576534,12.461896 - parent: 13329 - - uid: 9438 - components: - - type: Transform - pos: 38.40466,12.602521 - parent: 13329 - - uid: 9439 - components: - - type: Transform - pos: 38.607784,12.508771 - parent: 13329 - proto: ClothingOuterPonchoClassic entities: - uid: 32178 @@ -96267,6 +96388,45 @@ entities: - type: Transform pos: 29.434042,-31.389341 parent: 13329 +- proto: ClothingUniformJumpskirtJanimaid + entities: + - uid: 10780 + components: + - type: Transform + parent: 10779 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11848 + components: + - type: Transform + parent: 10779 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtJanimaidmini + entities: + - uid: 13795 + components: + - type: Transform + parent: 10779 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14000 + components: + - type: Transform + parent: 10779 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtTacticalMaid + entities: + - uid: 18630 + components: + - type: Transform + pos: 15.520247,17.554167 + parent: 13329 - proto: ClothingUniformJumpsuitAncient entities: - uid: 32231 @@ -97297,11 +97457,11 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,10.5 parent: 13329 - - uid: 9374 + - uid: 9441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,14.5 + rot: 3.141592653589793 rad + pos: 21.5,1.5 parent: 13329 - uid: 10148 components: @@ -97417,12 +97577,6 @@ entities: parent: 13329 - proto: ComputerMedicalRecords entities: - - uid: 9648 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,3.5 - parent: 13329 - uid: 18561 components: - type: Transform @@ -97629,6 +97783,12 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,11.5 parent: 13329 + - uid: 15501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,28.5 + parent: 13329 - uid: 18927 components: - type: Transform @@ -97748,6 +97908,31 @@ entities: parent: 13329 - proto: ComputerTelevision entities: + - uid: 9338 + components: + - type: Transform + pos: 15.5,39.5 + parent: 13329 + - uid: 10771 + components: + - type: Transform + pos: 30.5,3.5 + parent: 13329 + - uid: 10772 + components: + - type: Transform + pos: 27.5,3.5 + parent: 13329 + - uid: 10773 + components: + - type: Transform + pos: 33.5,3.5 + parent: 13329 + - uid: 10774 + components: + - type: Transform + pos: 36.5,3.5 + parent: 13329 - uid: 26083 components: - type: Transform @@ -98725,11 +98910,6 @@ entities: - type: Transform pos: 12.5,-25.5 parent: 13329 - - uid: 31726 - components: - - type: Transform - pos: 7.5,9.5 - parent: 13329 - uid: 32741 components: - type: Transform @@ -98765,6 +98945,11 @@ entities: - 0 - 0 - 0 + - uid: 9379 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 13329 - uid: 18647 components: - type: Transform @@ -99088,37 +99273,12 @@ entities: showEnts: False occludes: True ent: null -- proto: CrateSecurityNonlethal - entities: - - uid: 10607 - components: - - type: Transform - pos: 15.5,9.5 - parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateSecurityTrackingMindshieldImplants entities: - - uid: 10597 + - uid: 10637 components: - type: Transform - pos: 14.5,13.5 + pos: 14.5,12.5 parent: 13329 - proto: CrateServiceJanitorialSupplies entities: @@ -99145,6 +99305,45 @@ entities: - 0 - 0 - 0 +- proto: CrateTrashCartJani + entities: + - uid: 10779 + components: + - type: Transform + pos: 7.5,9.5 + parent: 13329 + - 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: + - 10780 + - 11848 + - 13795 + - 14000 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrayonBox entities: - uid: 1126 @@ -99950,6 +100149,11 @@ entities: text: Lab - proto: DefaultStationBeaconSecurity entities: + - uid: 8937 + components: + - type: Transform + pos: 35.5,12.5 + parent: 13329 - uid: 23731 components: - type: Transform @@ -99981,13 +100185,6 @@ entities: parent: 13329 - type: NavMapBeacon text: Solitary - - uid: 26292 - components: - - type: Transform - pos: 36.5,12.5 - parent: 13329 - - type: NavMapBeacon - text: Sec Gear - uid: 26293 components: - type: Transform @@ -110305,6 +110502,25 @@ entities: - type: Transform pos: 52.5,-37.5 parent: 13329 +- proto: DresserWardenFilled + entities: + - uid: 32207 + components: + - type: Transform + pos: 31.5,12.5 + parent: 13329 + - type: Storage + storedItems: + 13351: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 13351 - proto: DrinkAbsintheBottleFull entities: - uid: 1176 @@ -110997,10 +111213,15 @@ entities: canCollide: False - proto: EncryptionKeyRobo entities: + - uid: 10270 + components: + - type: Transform + pos: 39.726936,-19.8334 + parent: 13329 - uid: 20061 components: - type: Transform - pos: 32.491222,-19.448307 + pos: 39.289436,-19.8334 parent: 13329 - proto: EncryptionKeyScience entities: @@ -111028,15 +111249,10 @@ entities: canCollide: False - proto: ExosuitFabricator entities: - - uid: 15307 + - uid: 8766 components: - type: Transform - pos: 34.5,-19.5 - parent: 13329 - - uid: 15308 - components: - - type: Transform - pos: 36.5,-19.5 + pos: 35.5,-19.5 parent: 13329 - proto: ExplosivesSignMed entities: @@ -111576,11 +111792,6 @@ entities: - type: Transform pos: 30.5,14.5 parent: 13329 - - uid: 9454 - components: - - type: Transform - pos: 21.5,1.5 - parent: 13329 - uid: 11662 components: - type: Transform @@ -111601,6 +111812,11 @@ entities: - type: Transform pos: 11.5,-10.5 parent: 13329 + - uid: 15309 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 13329 - uid: 15310 components: - type: Transform @@ -111721,11 +111937,6 @@ entities: - type: Transform pos: -28.5,17.5 parent: 13329 - - uid: 35194 - components: - - type: Transform - pos: 15.5,-12.5 - parent: 13329 - proto: filingCabinetRandom entities: - uid: 2211 @@ -111788,11 +111999,6 @@ entities: - type: Transform pos: 41.5,42.5 parent: 13329 - - uid: 35193 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 13329 - proto: filingCabinetTallRandom entities: - uid: 6571 @@ -111800,11 +112006,6 @@ entities: - type: Transform pos: -28.5,55.5 parent: 13329 - - uid: 10270 - components: - - type: Transform - pos: 28.5,28.5 - parent: 13329 - uid: 11720 components: - type: Transform @@ -115135,11 +115336,6 @@ entities: - type: Transform pos: 27.50318,19.856941 parent: 13329 - - uid: 10698 - components: - - type: Transform - pos: 20.110102,9.557616 - parent: 13329 - uid: 31493 components: - type: Transform @@ -115276,11 +115472,6 @@ entities: - type: Transform pos: -40.346107,75.63652 parent: 13329 - - uid: 10780 - components: - - type: Transform - pos: 15.496946,17.498087 - parent: 13329 - uid: 34735 components: - type: Transform @@ -115478,20 +115669,6 @@ entities: parent: 13329 - type: Fixtures fixtures: {} - - uid: 23564 - components: - - type: Transform - pos: 85.5,-3.5 - parent: 13329 - - type: Fixtures - fixtures: {} - - uid: 23565 - components: - - type: Transform - pos: 87.5,-3.5 - parent: 13329 - - type: Fixtures - fixtures: {} - uid: 26360 components: - type: Transform @@ -115544,6 +115721,13 @@ entities: parent: 13329 - type: Fixtures fixtures: {} + - uid: 35998 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 13329 + - type: Fixtures + fixtures: {} - proto: FloorTileItemBar entities: - uid: 34161 @@ -116341,13 +116525,6 @@ entities: - type: Transform pos: 46.5,29.5 parent: 13329 -- proto: FoodDonutJellyChocolate - entities: - - uid: 10267 - components: - - type: Transform - pos: 31.501001,17.616497 - parent: 13329 - proto: FoodFrozenSnowconeClown entities: - uid: 34796 @@ -156780,16 +156957,6 @@ entities: - type: Transform pos: 34.5,8.5 parent: 13329 - - uid: 7313 - components: - - type: Transform - pos: 37.5,12.5 - parent: 13329 - - uid: 7314 - components: - - type: Transform - pos: 37.5,14.5 - parent: 13329 - uid: 7315 components: - type: Transform @@ -156940,11 +157107,6 @@ entities: - type: Transform pos: 19.5,23.5 parent: 13329 - - uid: 8637 - components: - - type: Transform - pos: 22.5,12.5 - parent: 13329 - uid: 9242 components: - type: Transform @@ -157116,11 +157278,6 @@ entities: - type: Transform pos: 20.5,-33.5 parent: 13329 - - uid: 10779 - components: - - type: Transform - pos: 14.5,17.5 - parent: 13329 - uid: 11000 components: - type: Transform @@ -157456,12 +157613,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,-25.5 parent: 13329 - - uid: 14372 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-25.5 - parent: 13329 - uid: 14377 components: - type: Transform @@ -161857,12 +162008,6 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,17.5 parent: 13329 - - uid: 31759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,17.5 - parent: 13329 - uid: 31820 components: - type: Transform @@ -161918,9 +162063,93 @@ entities: entities: - uid: 27875 components: + - type: MetaData + desc: A standard-issue Nanotrasen storage unit, containing 10 disabler pistols. - type: Transform + anchored: True pos: 20.5,15.5 parent: 13329 + - type: Physics + bodyType: Static + - 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: + - 8645 + - 9646 + - 9476 + - 9475 + - 9473 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafePistolMk58 + entities: + - uid: 10650 + components: + - type: MetaData + desc: A standard-issue Nanotrasen storage unit, containing 6 Mk58 pistols. + - type: Transform + anchored: True + pos: 21.5,15.5 + parent: 13329 + - type: Physics + bodyType: Static + - 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: + - 10651 + - 10652 + - 10653 + - 10654 + - 10655 + - 10656 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: Gyroscope entities: - uid: 31777 @@ -162226,22 +162455,11 @@ entities: parent: 13329 - proto: HolopadCargoBay entities: - - uid: 35866 + - uid: 9653 components: - type: Transform - pos: 10.5,-22.5 + pos: 6.5,-17.5 parent: 13329 - - uid: 35870 - components: - - type: MetaData - name: holopad (Cargo - Cargo Bay Secondary) - - type: Transform - pos: -1.5,-13.5 - parent: 13329 - - type: Label - currentLabel: Cargo - Cargo Bay Secondary - - type: NameModifier - baseName: holopad - uid: 35926 components: - type: MetaData @@ -162255,10 +162473,10 @@ entities: baseName: holopad - proto: HolopadCargoBayLongRange entities: - - uid: 35865 + - uid: 9648 components: - type: Transform - pos: 10.5,-24.5 + pos: 10.5,-23.5 parent: 13329 - proto: HolopadCargoBreakroom entities: @@ -162269,10 +162487,10 @@ entities: parent: 13329 - proto: HolopadCargoFront entities: - - uid: 35863 + - uid: 10267 components: - type: Transform - pos: 6.5,-17.5 + pos: 6.5,-11.5 parent: 13329 - proto: HolopadCargoSalvageBay entities: @@ -162774,17 +162992,11 @@ entities: currentLabel: Security - Front North - type: NameModifier baseName: holopad - - uid: 35864 + - uid: 35996 components: - - type: MetaData - name: holopad (Security - Front South) - type: Transform - pos: 20.5,2.5 + pos: 24.5,-1.5 parent: 13329 - - type: Label - currentLabel: Security - Front South - - type: NameModifier - baseName: holopad - proto: HolopadSecurityInterrogation entities: - uid: 35860 @@ -162981,11 +163193,6 @@ entities: - type: Transform pos: 33.5,-24.5 parent: 13329 - - uid: 20040 - components: - - type: Transform - pos: 35.5,-24.5 - parent: 13329 - uid: 20041 components: - type: Transform @@ -163491,6 +163698,28 @@ entities: - type: Transform pos: 52.65521,42.350925 parent: 13329 +- proto: JetpackSecurityFilled + entities: + - uid: 9122 + components: + - type: Transform + pos: 16.58022,15.48953 + parent: 13329 + - uid: 9123 + components: + - type: Transform + pos: 16.309385,15.499947 + parent: 13329 + - uid: 9419 + components: + - type: Transform + pos: 16.601051,15.73953 + parent: 13329 + - uid: 10648 + components: + - type: Transform + pos: 16.351051,15.749947 + parent: 13329 - proto: Jukebox entities: - uid: 32340 @@ -163961,6 +164190,114 @@ entities: - type: Transform pos: 109.51193,52.554314 parent: 13329 +- proto: LockableButtonArmory + entities: + - uid: 7262 + components: + - type: MetaData + name: lockable button (Open Armory) + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.479801,12.762985 + parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 10681: + - Pressed: Open + - Pressed: AutoClose + 10680: + - Pressed: Open + - Pressed: AutoClose + 10679: + - Pressed: Open + - Pressed: AutoClose + 10678: + - Pressed: Open + - Pressed: AutoClose + 10685: + - Pressed: Open + - Pressed: AutoClose + 10684: + - Pressed: Open + - Pressed: AutoClose + 10683: + - Pressed: Open + - Pressed: AutoClose + 10687: + - Pressed: Open + - Pressed: AutoClose + 10686: + - Pressed: Open + - Pressed: AutoClose + 26338: + - Pressed: Open + - Pressed: AutoClose + 35939: + - Pressed: Open + 35970: + - Pressed: Open + - Pressed: AutoClose + 35969: + - Pressed: Open + - Pressed: AutoClose + 9361: + - Pressed: Open + - Pressed: AutoClose + 10677: + - Pressed: Open + - Pressed: AutoClose + 7239: + - Pressed: Open + - type: Label + currentLabel: Open Armory + - type: NameModifier + baseName: lockable button + - uid: 9454 + components: + - type: MetaData + name: lockable button (Close Armory) + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.478048,12.226272 + parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 26338: + - Pressed: Close + 10681: + - Pressed: Close + 10680: + - Pressed: Close + 10679: + - Pressed: Close + 10678: + - Pressed: Close + 10685: + - Pressed: Close + 10684: + - Pressed: Close + 10683: + - Pressed: Close + 10687: + - Pressed: Close + 10686: + - Pressed: Close + 35970: + - Pressed: Close + 35969: + - Pressed: Close + 35939: + - Pressed: Close + 10677: + - Pressed: Close + 9361: + - Pressed: Close + 7239: + - Pressed: Close + - type: Label + currentLabel: Close Armory + - type: NameModifier + baseName: lockable button - proto: LockerAtmosphericsFilledHardsuit entities: - uid: 23864 @@ -164523,6 +164860,17 @@ entities: - 0 - 0 - 0 + - uid: 8933 + components: + - type: MetaData + name: evidence locker (Cell 3) + - type: Transform + pos: 33.5,7.5 + parent: 13329 + - type: Label + currentLabel: Cell 3 + - type: NameModifier + baseName: evidence locker - uid: 9515 components: - type: Transform @@ -164845,6 +165193,28 @@ entities: - 0 - 0 - 0 + - uid: 10670 + components: + - type: MetaData + name: evidence locker (Cell 1) + - type: Transform + pos: 31.5,7.5 + parent: 13329 + - type: Label + currentLabel: Cell 1 + - type: NameModifier + baseName: evidence locker + - uid: 10671 + components: + - type: MetaData + name: evidence locker (Cell 2) + - type: Transform + pos: 32.5,7.5 + parent: 13329 + - type: Label + currentLabel: Cell 2 + - type: NameModifier + baseName: evidence locker - uid: 15348 components: - type: Transform @@ -164914,6 +165284,17 @@ entities: - 0 - 0 - 0 + - uid: 35995 + components: + - type: MetaData + name: evidence locker (Cell 4) + - type: Transform + pos: 34.5,7.5 + parent: 13329 + - type: Label + currentLabel: Cell 4 + - type: NameModifier + baseName: evidence locker - proto: LockerFreezer entities: - uid: 1209 @@ -165154,29 +165535,8 @@ entities: - type: Transform pos: 43.5,3.5 parent: 13329 - - uid: 18358 - components: - - type: Transform - pos: 22.5,36.5 - parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + - type: Lock + locked: False - uid: 18592 components: - type: Transform @@ -165536,6 +165896,21 @@ entities: - 0 - 0 - 0 + - uid: 8662 + components: + - type: Transform + pos: 38.5,14.5 + parent: 13329 + - uid: 8663 + components: + - type: Transform + pos: 37.5,14.5 + parent: 13329 + - uid: 8938 + components: + - type: Transform + pos: 36.5,11.5 + parent: 13329 - uid: 9427 components: - type: Transform @@ -165674,6 +166049,11 @@ entities: - 0 - 0 - 0 + - uid: 9446 + components: + - type: Transform + pos: 37.5,12.5 + parent: 13329 - uid: 9453 components: - type: Transform @@ -166024,50 +166404,75 @@ entities: parent: 13329 - proto: MagazinePistol entities: - - uid: 10645 - components: - - type: Transform - pos: 18.329765,15.572898 - parent: 13329 - - uid: 10646 - components: - - type: Transform - pos: 18.454765,15.572898 - parent: 13329 - - uid: 10647 - components: - - type: Transform - pos: 18.611015,15.572898 - parent: 13329 - - uid: 10648 - components: - - type: Transform - pos: 17.673515,13.447898 - parent: 13329 - - uid: 10649 - components: - - type: Transform - pos: 17.673515,13.447898 - parent: 13329 - - uid: 10650 - components: - - type: Transform - pos: 17.673515,13.447898 - parent: 13329 - uid: 10651 components: - type: Transform - pos: 17.673515,13.447898 - parent: 13329 + parent: 10650 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 10652 components: - type: Transform - pos: 17.673515,13.447898 - parent: 13329 - - uid: 10653 + parent: 10650 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10654 components: - type: Transform - pos: 17.673515,13.447898 + parent: 10650 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10655 + components: + - type: Transform + parent: 10650 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazinePistolSubMachineGun + entities: + - uid: 10599 + components: + - type: Transform + pos: 19.56134,11.494171 + parent: 13329 + - uid: 10627 + components: + - type: Transform + pos: 19.339119,11.466393 + parent: 13329 + - uid: 10628 + components: + - type: Transform + pos: 19.290506,11.4455595 + parent: 13329 + - uid: 10629 + components: + - type: Transform + pos: 19.401619,11.466393 + parent: 13329 + - uid: 10630 + components: + - type: Transform + pos: 19.457174,11.473337 + parent: 13329 + - uid: 10634 + components: + - type: Transform + pos: 19.51273,11.4872265 + parent: 13329 + - uid: 18484 + components: + - type: Transform + pos: 19.62384,11.494171 + parent: 13329 + - uid: 35865 + components: + - type: Transform + pos: 19.589119,11.494171 parent: 13329 - proto: MagazinePistolSubMachineGunTopMounted entities: @@ -166083,45 +166488,45 @@ entities: parent: 13329 - proto: MagazineRifle entities: - - uid: 10669 + - uid: 10597 components: - type: Transform - pos: 16.40789,12.540203 + pos: 16.408554,12.667782 parent: 13329 - - uid: 10670 + - uid: 10607 components: - type: Transform - pos: 16.517265,12.540203 + pos: 16.408554,12.417782 parent: 13329 - - uid: 10671 + - uid: 10622 components: - type: Transform - pos: 16.59539,12.524578 + pos: 16.408554,12.306671 parent: 13329 - - uid: 10672 + - uid: 10631 components: - type: Transform - pos: 16.72039,12.524578 + pos: 16.74883,12.515004 parent: 13329 - - uid: 10673 + - uid: 10632 components: - type: Transform - pos: 16.423515,12.383953 + pos: 16.74883,12.417782 parent: 13329 - - uid: 10674 + - uid: 18351 components: - type: Transform - pos: 16.53289,12.383953 + pos: 16.741886,12.327504 parent: 13329 - - uid: 10675 + - uid: 18464 components: - type: Transform - pos: 16.65789,12.383953 + pos: 16.755775,12.640004 parent: 13329 - - uid: 10676 + - uid: 18485 components: - type: Transform - pos: 16.75164,12.383953 + pos: 16.408554,12.515004 parent: 13329 - proto: MailingUnit entities: @@ -166403,6 +166808,11 @@ entities: parent: 13329 - proto: MaintenanceWeaponSpawner entities: + - uid: 9120 + components: + - type: Transform + pos: 37.5,36.5 + parent: 13329 - uid: 20553 components: - type: Transform @@ -166534,16 +166944,21 @@ entities: parent: 13329 - proto: MedicalBed entities: + - uid: 7234 + components: + - type: Transform + pos: 44.5,1.5 + parent: 13329 + - uid: 7238 + components: + - type: Transform + pos: 42.5,1.5 + parent: 13329 - uid: 13321 components: - type: Transform pos: 9.5,50.5 parent: 13329 - - uid: 18642 - components: - - type: Transform - pos: 9.5,47.5 - parent: 13329 - uid: 18655 components: - type: Transform @@ -166574,6 +166989,16 @@ entities: - type: Transform pos: 15.5,55.5 parent: 13329 + - uid: 35193 + components: + - type: Transform + pos: 9.5,51.5 + parent: 13329 + - uid: 35997 + components: + - type: Transform + pos: 15.5,51.5 + parent: 13329 - proto: MedicalScanner entities: - uid: 26066 @@ -166607,12 +167032,17 @@ entities: - type: Transform pos: 4.605341,67.929634 parent: 13329 + - uid: 35993 + components: + - type: Transform + pos: 44.62391,3.593118 + parent: 13329 - proto: MedkitBurnFilled entities: - uid: 10566 components: - type: Transform - pos: 45.19371,3.579205 + pos: 44.90516,3.655618 parent: 13329 - uid: 18830 components: @@ -166651,7 +167081,7 @@ entities: - uid: 10565 components: - type: Transform - pos: 44.66246,3.579205 + pos: 44.452034,3.639993 parent: 13329 - uid: 11784 components: @@ -166724,6 +167154,11 @@ entities: - type: Transform pos: 4.636591,67.00776 parent: 13329 + - uid: 35994 + components: + - type: Transform + pos: 45.09266,3.530618 + parent: 13329 - proto: MicroManipulatorStockPart entities: - uid: 15531 @@ -167305,30 +167740,12 @@ entities: - 0 - 0 - 0 - - uid: 20045 + - uid: 20040 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-26.5 parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: MouseTimedSpawner entities: - uid: 32253 @@ -167343,11 +167760,6 @@ entities: - type: Transform pos: 3.467094,-17.544365 parent: 13329 - - uid: 13350 - components: - - type: Transform - pos: 29.328402,9.501672 - parent: 13329 - uid: 19752 components: - type: Transform @@ -167928,21 +168340,16 @@ entities: parent: 13329 - proto: PaperBin10 entities: - - uid: 9379 - components: - - type: Transform - pos: 31.5,12.5 - parent: 13329 - - uid: 10692 - components: - - type: Transform - pos: 14.5,14.5 - parent: 13329 - uid: 11872 components: - type: Transform pos: 21.5,-9.5 parent: 13329 + - uid: 20046 + components: + - type: Transform + pos: 31.5,9.5 + parent: 13329 - uid: 29476 components: - type: Transform @@ -168263,7 +168670,7 @@ entities: - uid: 9380 components: - type: Transform - pos: 31.499893,12.484022 + pos: 31.24836,9.434689 parent: 13329 - uid: 10322 components: @@ -168519,6 +168926,34 @@ entities: rot: 1.5707963267948966 rad pos: 99.5,-15.5 parent: 13329 +- proto: PlasmaWindoorSecureArmoryLocked + entities: + - uid: 26292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,13.5 + parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 32364: + - DoorStatus: Close +- proto: PlasmaWindoorSecureSecurityLocked + entities: + - uid: 32364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,13.5 + parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 26292: + - DoorStatus: Close - proto: PlasticFlapsAirtightClear entities: - uid: 11498 @@ -168614,11 +169049,6 @@ entities: - type: Transform pos: 76.471954,53.52606 parent: 13329 - - uid: 18555 - components: - - type: Transform - pos: 15.544871,39.57073 - parent: 13329 - proto: PlushieRGBee entities: - uid: 32722 @@ -168652,18 +169082,33 @@ entities: - uid: 9471 components: - type: Transform + anchored: False pos: 14.5,9.5 parent: 13329 + - type: TriggerOnProximity + enabled: False + - type: Physics + bodyType: Dynamic - uid: 9472 components: - type: Transform + anchored: False pos: 14.5,10.5 parent: 13329 - - uid: 9473 + - type: TriggerOnProximity + enabled: False + - type: Physics + bodyType: Dynamic + - uid: 10657 components: - type: Transform + anchored: False pos: 14.5,11.5 parent: 13329 + - type: TriggerOnProximity + enabled: False + - type: Physics + bodyType: Dynamic - proto: PortableGeneratorJrPacman entities: - uid: 10145 @@ -170114,6 +170559,11 @@ entities: - type: Transform pos: 51.5,40.5 parent: 13329 + - uid: 35194 + components: + - type: Transform + pos: 9.5,47.5 + parent: 13329 - uid: 35627 components: - type: Transform @@ -170936,14 +171386,6 @@ entities: parent: 13329 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,9.5 - parent: 13329 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11568 components: - type: Transform @@ -171504,6 +171946,12 @@ entities: parent: 13329 - type: ApcPowerReceiver powerLoad: 0 + - uid: 16655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,9.5 + parent: 13329 - uid: 18507 components: - type: Transform @@ -175555,20 +176003,10 @@ entities: - type: Transform pos: 19.5,13.5 parent: 13329 - - uid: 9377 + - uid: 9341 components: - type: Transform - pos: 31.5,13.5 - parent: 13329 - - uid: 9434 - components: - - type: Transform - pos: 39.5,12.5 - parent: 13329 - - uid: 9435 - components: - - type: Transform - pos: 38.5,12.5 + pos: 16.5,15.5 parent: 13329 - uid: 10618 components: @@ -175590,6 +176028,11 @@ entities: - type: Transform pos: 11.5,5.5 parent: 13329 + - uid: 11567 + components: + - type: Transform + pos: 20.5,9.5 + parent: 13329 - uid: 11669 components: - type: Transform @@ -175691,6 +176134,11 @@ entities: rot: 3.141592653589793 rad pos: 52.5,44.5 parent: 13329 + - uid: 18499 + components: + - type: Transform + pos: 19.5,9.5 + parent: 13329 - uid: 18663 components: - type: Transform @@ -175711,12 +176159,6 @@ entities: - type: Transform pos: 30.5,-46.5 parent: 13329 - - uid: 20035 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-19.5 - parent: 13329 - uid: 21324 components: - type: Transform @@ -180273,16 +180715,6 @@ entities: - type: Transform pos: 32.5,12.5 parent: 13329 - - uid: 7238 - components: - - type: Transform - pos: 37.5,12.5 - parent: 13329 - - uid: 7239 - components: - - type: Transform - pos: 37.5,14.5 - parent: 13329 - uid: 7240 components: - type: Transform @@ -180493,11 +180925,6 @@ entities: - type: Transform pos: 19.5,23.5 parent: 13329 - - uid: 8640 - components: - - type: Transform - pos: 22.5,12.5 - parent: 13329 - uid: 9246 components: - type: Transform @@ -183110,67 +183537,6 @@ entities: - type: Transform pos: 2.5444062,26.628166 parent: 13329 - - uid: 8645 - components: - - type: MetaData - name: Armory Blast Doors - - type: Transform - pos: 29.673782,9.548224 - parent: 13329 - - type: DeviceLinkSource - linkedPorts: - 8641: - - Pressed: Toggle - 8642: - - Pressed: Toggle - - uid: 9399 - components: - - type: MetaData - name: Perma Window Blast Doors - - type: Transform - pos: 31.745594,9.565589 - parent: 13329 - - type: DeviceLinkSource - linkedPorts: - 9405: - - Pressed: Toggle - 9404: - - Pressed: Toggle - 9403: - - Pressed: Toggle - 9401: - - Pressed: Toggle - 9400: - - Pressed: Toggle - - uid: 9406 - components: - - type: MetaData - name: Cell Window Shutters - - type: Transform - pos: 31.410873,9.561931 - parent: 13329 - - type: DeviceLinkSource - linkedPorts: - 9389: - - Pressed: Toggle - 9390: - - Pressed: Toggle - 9391: - - Pressed: Toggle - 9392: - - Pressed: Toggle - 9393: - - Pressed: Toggle - 9394: - - Pressed: Toggle - 9395: - - Pressed: Toggle - 9396: - - Pressed: Toggle - 9397: - - Pressed: Toggle - 9398: - - Pressed: Toggle - uid: 11854 components: - type: MetaData @@ -183203,22 +183569,79 @@ entities: - type: Transform pos: 52.512157,-5.393109 parent: 13329 +- proto: RiotBulletShield + entities: + - uid: 10594 + components: + - type: Transform + pos: 16.823153,13.388165 + parent: 13329 + - uid: 35949 + components: + - type: Transform + pos: 16.823153,13.586082 + parent: 13329 + - uid: 35952 + components: + - type: Transform + pos: 16.823153,13.492332 + parent: 13329 + - uid: 35953 + components: + - type: Transform + pos: 16.833569,13.336082 + parent: 13329 +- proto: RiotLaserShield + entities: + - uid: 10621 + components: + - type: Transform + pos: 16.333569,13.471499 + parent: 13329 + - uid: 10646 + components: + - type: Transform + pos: 16.323153,13.377749 + parent: 13329 + - type: Blocking + blockingToggleActionEntity: 10647 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 10647 + - uid: 13391 + components: + - type: Transform + pos: 16.343985,13.533999 + parent: 13329 + - uid: 35950 + components: + - type: Transform + pos: 16.343985,13.586082 + parent: 13329 - proto: RiotShield entities: - - uid: 10660 + - uid: 13392 components: - type: Transform - pos: 19.173515,13.383953 + pos: 16.573153,13.429832 parent: 13329 - - uid: 10661 + - uid: 35339 components: - type: Transform - pos: 19.173515,13.383953 + pos: 16.583569,13.346499 parent: 13329 - - uid: 10662 + - uid: 35866 components: - type: Transform - pos: 19.173515,13.383953 + pos: 16.562735,13.627749 + parent: 13329 + - uid: 35951 + components: + - type: Transform + pos: 16.573153,13.523582 parent: 13329 - proto: RobocopCircuitBoard entities: @@ -183467,16 +183890,16 @@ entities: parent: 13329 - proto: SecurityTechFab entities: + - uid: 9381 + components: + - type: Transform + pos: 15.5,15.5 + parent: 13329 - uid: 10140 components: - type: Transform pos: 31.5,26.5 parent: 13329 - - uid: 10778 - components: - - type: Transform - pos: 21.5,15.5 - parent: 13329 - proto: SeedExtractor entities: - uid: 1359 @@ -183511,6 +183934,11 @@ entities: - type: Transform pos: 50.554005,-16.478584 parent: 13329 + - uid: 20065 + components: + - type: Transform + pos: 36.52436,-19.442776 + parent: 13329 - uid: 26132 components: - type: Transform @@ -183589,11 +184017,6 @@ entities: - type: Transform pos: -31.002823,-44.471146 parent: 13329 - - uid: 20067 - components: - - type: Transform - pos: 39.52294,-21.288029 - parent: 13329 - uid: 26546 components: - type: Transform @@ -183621,10 +184044,10 @@ entities: - type: Transform pos: 55.58817,-14.4869995 parent: 13329 - - uid: 18351 + - uid: 36003 components: - type: Transform - pos: 14.455807,14.614824 + pos: 39.58631,-21.255276 parent: 13329 - proto: SheetRGlass entities: @@ -183748,7 +184171,12 @@ entities: - uid: 27876 components: - type: Transform - pos: 14.455807,14.599199 + pos: 21.551386,9.52861 + parent: 13329 + - uid: 36002 + components: + - type: Transform + pos: 39.36756,-21.2709 parent: 13329 - proto: SheetUranium entities: @@ -183819,6 +184247,8 @@ entities: - type: Transform pos: 3.5,7.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 1493 components: - type: Transform @@ -184045,56 +184475,6 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,32.5 parent: 13329 - - uid: 9389 - components: - - type: Transform - pos: 27.5,0.5 - parent: 13329 - - uid: 9390 - components: - - type: Transform - pos: 28.5,0.5 - parent: 13329 - - uid: 9391 - components: - - type: Transform - pos: 30.5,0.5 - parent: 13329 - - uid: 9392 - components: - - type: Transform - pos: 31.5,0.5 - parent: 13329 - - uid: 9393 - components: - - type: Transform - pos: 33.5,0.5 - parent: 13329 - - uid: 9394 - components: - - type: Transform - pos: 34.5,0.5 - parent: 13329 - - uid: 9395 - components: - - type: Transform - pos: 36.5,0.5 - parent: 13329 - - uid: 9396 - components: - - type: Transform - pos: 37.5,0.5 - parent: 13329 - - uid: 9397 - components: - - type: Transform - pos: 38.5,0.5 - parent: 13329 - - uid: 9398 - components: - - type: Transform - pos: 39.5,0.5 - parent: 13329 - uid: 10588 components: - type: Transform @@ -184115,6 +184495,23 @@ entities: - type: Transform pos: 50.5,16.5 parent: 13329 + - uid: 10658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,42.5 + parent: 13329 + - uid: 10659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,42.5 + parent: 13329 + - uid: 10661 + components: + - type: Transform + pos: 16.5,37.5 + parent: 13329 - uid: 10879 components: - type: Transform @@ -184176,21 +184573,6 @@ entities: - type: Transform pos: 20.5,42.5 parent: 13329 - - uid: 18499 - components: - - type: Transform - pos: 21.5,42.5 - parent: 13329 - - uid: 18500 - components: - - type: Transform - pos: 22.5,42.5 - parent: 13329 - - uid: 18501 - components: - - type: Transform - pos: 24.5,42.5 - parent: 13329 - uid: 18502 components: - type: Transform @@ -184202,12 +184584,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,36.5 parent: 13329 - - uid: 18504 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,37.5 - parent: 13329 - uid: 18505 components: - type: Transform @@ -184537,17 +184913,6 @@ entities: linkedPorts: 1432: - Pressed: Toggle - - uid: 1494 - components: - - type: Transform - pos: 6.5,11.5 - parent: 13329 - - type: DeviceLinkSource - linkedPorts: - 1493: - - Pressed: Toggle - 1492: - - Pressed: Toggle - uid: 4523 components: - type: Transform @@ -184683,37 +185048,6 @@ entities: - Pressed: Toggle 15303: - Pressed: Toggle - - uid: 18464 - components: - - type: Transform - pos: 26.5,38.5 - parent: 13329 - - type: DeviceLinkSource - linkedPorts: - 18463: - - Pressed: Toggle - 18462: - - Pressed: Toggle - 18461: - - Pressed: Toggle - 18460: - - Pressed: Toggle - 18502: - - Pressed: Toggle - 18501: - - Pressed: Toggle - 18500: - - Pressed: Toggle - 18499: - - Pressed: Toggle - 18498: - - Pressed: Toggle - 18503: - - Pressed: Toggle - 18504: - - Pressed: Toggle - 18505: - - Pressed: Toggle - uid: 20585 components: - type: Transform @@ -185010,6 +185344,252 @@ entities: - Pressed: Toggle 35590: - Pressed: Toggle +- proto: SignalSwitchDirectional + entities: + - uid: 6941 + components: + - type: MetaData + name: Switch (Front Shutters) (Front Shutters) + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,11.5 + parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 1493: + - On: Open + - Off: Close + 1492: + - On: Open + - Off: Close + 15508: + - On: Open + - On: AutoClose + - Off: Close + 9406: + - On: Open + - On: AutoClose + - Off: Close + - type: Label + currentLabel: Front Shutters + - type: NameModifier + baseName: Switch (Front Shutters) + - uid: 9389 + components: + - type: MetaData + name: Switch (Front Blast Doors) + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.571575,9.73718 + parent: 13329 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 10638: + - On: Open + - Off: Close + 10645: + - On: Open + - Off: Close + 9397: + - On: Open + - Off: Close + 9398: + - On: Open + - Off: Close + 9396: + - On: Open + - Off: Close + 9395: + - On: Open + - Off: Close + 9394: + - On: Open + - Off: Close + 9393: + - On: Open + - Off: Close + 9392: + - On: Open + - Off: Close + 9391: + - On: Open + - Off: Close + - type: Label + currentLabel: Front Blast Doors + - type: NameModifier + baseName: Switch + - uid: 9390 + components: + - type: MetaData + name: Switch (Perma Blast Doors) + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.571575,9.466347 + parent: 13329 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 9405: + - On: Open + - Off: Close + 9404: + - On: Open + - Off: Close + 9403: + - On: Open + - Off: Close + 9401: + - On: Open + - Off: Close + 9400: + - On: Open + - Off: Close + - type: Label + currentLabel: Perma Blast Doors + - type: NameModifier + baseName: Switch + - uid: 10662 + components: + - type: MetaData + name: Switch (Window Shutters) + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,38.5 + parent: 13329 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 18502: + - On: Open + - Off: Close + 10658: + - On: Open + - Off: Close + 10659: + - On: Open + - Off: Close + 18498: + - On: Open + - Off: Close + 18463: + - On: Open + - Off: Close + 18462: + - On: Open + - Off: Close + 18461: + - On: Open + - Off: Close + 18460: + - On: Open + - Off: Close + 18503: + - On: Open + - Off: Close + 10661: + - On: Open + - Off: Close + 18505: + - On: Open + - Off: Close + - type: Label + currentLabel: Window Shutters + - type: NameModifier + baseName: Switch + - uid: 13350 + components: + - type: MetaData + name: Switch (Cell Blast Doors) (Cell Blast Doors) + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,4.5 + parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 10638: + - On: Open + - Off: Close + 10645: + - On: Open + - Off: Close + - type: Label + currentLabel: Cell Blast Doors + - type: NameModifier + baseName: Switch (Cell Blast Doors) + - uid: 35971 + components: + - type: MetaData + name: Switch (Cell Blast Doors) (Cell Blast Doors) + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,4.5 + parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 9397: + - On: Open + - Off: Close + 9398: + - On: Open + - Off: Close + - type: Label + currentLabel: Cell Blast Doors + - type: NameModifier + baseName: Switch (Cell Blast Doors) + - uid: 35972 + components: + - type: MetaData + name: Switch (Cell Blast Doors) (Cell Blast Doors) + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,4.5 + parent: 13329 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 9396: + - On: Open + - Off: Close + 9395: + - On: Open + - Off: Close + - type: Label + currentLabel: Cell Blast Doors + - type: NameModifier + baseName: Switch (Cell Blast Doors) + - uid: 35973 + components: + - type: MetaData + name: Switch (Cell Blast Doors) (Cell Blast Doors) + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,4.5 + parent: 13329 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 9394: + - On: Open + - Off: Close + 9393: + - On: Open + - Off: Close + 9392: + - On: Open + - Off: Close + 9391: + - On: Open + - Off: Close + - type: Label + currentLabel: Cell Blast Doors + - type: NameModifier + baseName: Switch (Cell Blast Doors) - proto: SignAnomaly entities: - uid: 20083 @@ -185154,13 +185734,6 @@ entities: - type: Transform pos: 19.5,42.5 parent: 13329 -- proto: SignCloning - entities: - - uid: 18587 - components: - - type: Transform - pos: 16.5,47.5 - parent: 13329 - proto: SignConference entities: - uid: 31544 @@ -185405,14 +185978,6 @@ entities: rot: 3.141592653589793 rad pos: 53.5,-3.5 parent: 13329 -- proto: SignDirectionalJanitor - entities: - - uid: 1653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,7.5 - parent: 13329 - proto: SignDirectionalLibrary entities: - uid: 19107 @@ -185725,10 +186290,10 @@ entities: parent: 13329 - proto: SignExamroom entities: - - uid: 18747 + - uid: 20067 components: - type: Transform - pos: 16.5,56.5 + pos: 16.5,47.5 parent: 13329 - uid: 34483 components: @@ -185813,6 +186378,13 @@ entities: - type: Transform pos: 17.5,24.5 parent: 13329 +- proto: SignJanitor + entities: + - uid: 23564 + components: + - type: Transform + pos: 1.5,11.5 + parent: 13329 - proto: SignKiddiePlaque entities: - uid: 6307 @@ -186660,11 +187232,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-39.5 parent: 13329 - - uid: 20042 - components: - - type: Transform - pos: 32.5,-25.5 - parent: 13329 - uid: 28915 components: - type: Transform @@ -186688,6 +187255,12 @@ entities: rot: -1.5707963267948966 rad pos: 126.5,2.5 parent: 13329 + - uid: 34244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-25.5 + parent: 13329 - proto: SinkEmpty entities: - uid: 15333 @@ -189807,6 +190380,21 @@ entities: parent: 13329 - proto: SpawnPointBorg entities: + - uid: 1494 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 13329 + - uid: 20042 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 13329 + - uid: 20060 + components: + - type: Transform + pos: 37.5,-21.5 + parent: 13329 - uid: 24412 components: - type: Transform @@ -190237,18 +190825,48 @@ entities: parent: 13329 - proto: SpawnPointSecurityCadet entities: - - uid: 10773 + - uid: 9444 components: - type: Transform - pos: 35.5,11.5 + pos: 28.5,18.5 parent: 13329 - - uid: 10774 + - uid: 10664 components: - type: Transform - pos: 35.5,12.5 + pos: 28.5,24.5 + parent: 13329 + - uid: 10666 + components: + - type: Transform + pos: 28.5,22.5 + parent: 13329 + - uid: 10672 + components: + - type: Transform + pos: 28.5,20.5 + parent: 13329 + - uid: 35937 + components: + - type: Transform + pos: 32.5,22.5 + parent: 13329 + - uid: 35974 + components: + - type: Transform + pos: 32.5,20.5 parent: 13329 - proto: SpawnPointSecurityOfficer entities: + - uid: 10663 + components: + - type: Transform + pos: 39.5,13.5 + parent: 13329 + - uid: 10665 + components: + - type: Transform + pos: 35.5,13.5 + parent: 13329 - uid: 10767 components: - type: Transform @@ -190269,16 +190887,26 @@ entities: - type: Transform pos: 34.5,10.5 parent: 13329 - - uid: 10771 + - uid: 35938 + components: + - type: Transform + pos: 37.5,13.5 + parent: 13329 + - uid: 35976 + components: + - type: Transform + pos: 38.5,13.5 + parent: 13329 + - uid: 35977 + components: + - type: Transform + pos: 36.5,13.5 + parent: 13329 + - uid: 35978 components: - type: Transform pos: 35.5,10.5 parent: 13329 - - uid: 10772 - components: - - type: Transform - pos: 35.5,13.5 - parent: 13329 - proto: SpawnPointServiceWorker entities: - uid: 1163 @@ -190487,6 +191115,11 @@ entities: parent: 13329 - proto: StasisBed entities: + - uid: 8932 + components: + - type: Transform + pos: 46.5,1.5 + parent: 13329 - uid: 18576 components: - type: Transform @@ -191714,22 +192347,60 @@ entities: parent: 13329 - proto: SuitStorageSec entities: + - uid: 9438 + components: + - type: Transform + pos: 15.5,9.5 + parent: 13329 + - uid: 9439 + components: + - type: Transform + pos: 14.5,13.5 + parent: 13329 - uid: 10602 components: - type: Transform pos: 16.5,9.5 parent: 13329 + - uid: 10668 + components: + - type: Transform + pos: 18.5,9.5 + parent: 13329 + - uid: 10675 + components: + - type: Transform + pos: 14.5,14.5 + parent: 13329 - uid: 10689 components: - type: Transform pos: 17.5,9.5 parent: 13329 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: SuitStorageWarden entities: - - uid: 10525 + - uid: 9436 components: - type: Transform - pos: 18.5,9.5 + pos: 27.5,14.5 parent: 13329 - proto: SurveillanceCameraCommand entities: @@ -194878,11 +195549,6 @@ entities: - type: Transform pos: 6.5,30.5 parent: 13329 - - uid: 6941 - components: - - type: Transform - pos: 4.5,30.5 - parent: 13329 - uid: 6942 components: - type: Transform @@ -194948,11 +195614,6 @@ entities: - type: Transform pos: 27.5,9.5 parent: 13329 - - uid: 8646 - components: - - type: Transform - pos: 31.5,12.5 - parent: 13329 - uid: 9355 components: - type: Transform @@ -194963,10 +195624,15 @@ entities: - type: Transform pos: 31.5,14.5 parent: 13329 - - uid: 9418 + - uid: 9399 components: - type: Transform - pos: 36.5,10.5 + pos: 10.5,47.5 + parent: 13329 + - uid: 9440 + components: + - type: Transform + pos: 36.5,12.5 parent: 13329 - uid: 9452 components: @@ -195129,6 +195795,11 @@ entities: - type: Transform pos: 49.5,6.5 parent: 13329 + - uid: 10639 + components: + - type: Transform + pos: 31.5,13.5 + parent: 13329 - uid: 10885 components: - type: Transform @@ -195459,6 +196130,11 @@ entities: - type: Transform pos: -11.5,22.5 parent: 13329 + - uid: 15307 + components: + - type: Transform + pos: 36.5,-19.5 + parent: 13329 - uid: 15311 components: - type: Transform @@ -195785,10 +196461,10 @@ entities: - type: Transform pos: 34.5,-39.5 parent: 13329 - - uid: 20046 + - uid: 20035 components: - type: Transform - pos: 33.5,-26.5 + pos: 9.5,47.5 parent: 13329 - uid: 20051 components: @@ -196176,6 +196852,11 @@ entities: - type: Transform pos: -24.5,74.5 parent: 13329 + - uid: 31726 + components: + - type: Transform + pos: 35.5,-23.5 + parent: 13329 - uid: 31745 components: - type: Transform @@ -196521,16 +197202,6 @@ entities: - type: Transform pos: 53.5,62.5 parent: 13329 - - uid: 35337 - components: - - type: Transform - pos: 33.5,7.5 - parent: 13329 - - uid: 35338 - components: - - type: Transform - pos: 32.5,7.5 - parent: 13329 - uid: 35414 components: - type: Transform @@ -196842,11 +197513,6 @@ entities: - type: Transform pos: 8.5,55.5 parent: 13329 - - uid: 11848 - components: - - type: Transform - pos: 9.5,51.5 - parent: 13329 - uid: 18533 components: - type: Transform @@ -196882,16 +197548,6 @@ entities: - type: Transform pos: 9.5,56.5 parent: 13329 - - uid: 18630 - components: - - type: Transform - pos: 10.5,47.5 - parent: 13329 - - uid: 18641 - components: - - type: Transform - pos: 15.5,51.5 - parent: 13329 - uid: 18649 components: - type: Transform @@ -197184,11 +197840,6 @@ entities: - type: Transform pos: 31.5,9.5 parent: 13329 - - uid: 9444 - components: - - type: Transform - pos: 38.5,14.5 - parent: 13329 - uid: 9654 components: - type: Transform @@ -197274,16 +197925,6 @@ entities: - type: Transform pos: 21.5,9.5 parent: 13329 - - uid: 10593 - components: - - type: Transform - pos: 20.5,9.5 - parent: 13329 - - uid: 10594 - components: - - type: Transform - pos: 19.5,9.5 - parent: 13329 - uid: 10595 components: - type: Transform @@ -197294,11 +197935,6 @@ entities: - type: Transform pos: 19.5,15.5 parent: 13329 - - uid: 10599 - components: - - type: Transform - pos: 14.5,14.5 - parent: 13329 - uid: 13342 components: - type: Transform @@ -199456,11 +200092,6 @@ entities: - type: Transform pos: 31.5,-25.5 parent: 13329 - - uid: 13795 - components: - - type: Transform - pos: 36.5,-25.5 - parent: 13329 - uid: 13834 components: - type: Transform @@ -199804,11 +200435,6 @@ entities: - type: Transform pos: -17.430689,-11.518743 parent: 13329 - - uid: 9382 - components: - - type: Transform - pos: 31.578018,13.515272 - parent: 13329 - uid: 11672 components: - type: Transform @@ -199873,11 +200499,6 @@ entities: - type: Transform pos: 6.466281,21.629694 parent: 13329 - - uid: 9381 - components: - - type: Transform - pos: 31.468643,13.702772 - parent: 13329 - uid: 16640 components: - type: Transform @@ -200423,10 +201044,10 @@ entities: parent: 13329 - proto: VendingMachineChemicals entities: - - uid: 13392 + - uid: 10291 components: - type: Transform - pos: 25.5,38.5 + pos: 22.5,36.5 parent: 13329 - proto: VendingMachineCigs entities: @@ -200744,6 +201365,11 @@ entities: parent: 13329 - proto: VendingMachineMedical entities: + - uid: 9437 + components: + - type: Transform + pos: 41.5,3.5 + parent: 13329 - uid: 10261 components: - type: Transform @@ -200785,10 +201411,10 @@ entities: parent: 13329 - proto: VendingMachineRoboDrobe entities: - - uid: 14000 + - uid: 20045 components: - type: Transform - pos: 27.5,-27.5 + pos: 32.5,-19.5 parent: 13329 - proto: VendingMachineRobotics entities: @@ -200882,7 +201508,7 @@ entities: parent: 13329 - proto: VendingMachineTankDispenserEVA entities: - - uid: 9433 + - uid: 8657 components: - type: Transform pos: 39.5,14.5 @@ -200999,6 +201625,11 @@ entities: - type: Transform pos: 80.5,1.5 parent: 13329 + - uid: 31759 + components: + - type: Transform + pos: 4.5,30.5 + parent: 13329 - proto: WallmountGeneratorAPUElectronics entities: - uid: 13127 @@ -203899,11 +204530,6 @@ entities: - type: Transform pos: 33.5,8.5 parent: 13329 - - uid: 7234 - components: - - type: Transform - pos: 37.5,8.5 - parent: 13329 - uid: 7235 components: - type: Transform @@ -203934,11 +204560,6 @@ entities: - type: Transform pos: 35.5,15.5 parent: 13329 - - uid: 7262 - components: - - type: Transform - pos: 34.5,15.5 - parent: 13329 - uid: 7263 components: - type: Transform @@ -204799,6 +205420,18 @@ entities: - type: Transform pos: 7.5,19.5 parent: 13329 + - uid: 8654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,15.5 + parent: 13329 + - uid: 8665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,12.5 + parent: 13329 - uid: 9614 components: - type: Transform @@ -205159,6 +205792,11 @@ entities: - type: Transform pos: 52.5,-3.5 parent: 13329 + - uid: 10698 + components: + - type: Transform + pos: 37.5,8.5 + parent: 13329 - uid: 11552 components: - type: Transform @@ -218518,11 +219156,6 @@ entities: - type: Transform pos: 15.5,18.5 parent: 13329 - - uid: 7602 - components: - - type: Transform - pos: 14.5,18.5 - parent: 13329 - uid: 7603 components: - type: Transform @@ -220253,6 +220886,22 @@ entities: - type: Transform pos: 16.5,64.5 parent: 13329 + - uid: 18641 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 13329 + - uid: 18642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,17.5 + parent: 13329 + - uid: 18747 + components: + - type: Transform + pos: 35.5,-24.5 + parent: 13329 - uid: 18872 components: - type: Transform @@ -223298,6 +223947,12 @@ entities: - type: Transform pos: 96.5,-49.5 parent: 13329 + - uid: 36000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,18.5 + parent: 13329 - proto: WallSolidRust entities: - uid: 2696 @@ -223700,13 +224355,6 @@ entities: - type: Transform pos: 87.5,-51.5 parent: 13329 -- proto: WallWeaponCapacitorRecharger - entities: - - uid: 9420 - components: - - type: Transform - pos: 37.5,8.5 - parent: 13329 - proto: WardrobeBlackFilled entities: - uid: 29207 @@ -224049,121 +224697,6 @@ entities: - 0 - proto: WardrobePrisonFilled entities: - - uid: 9337 - components: - - type: Transform - pos: 27.5,3.5 - parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9338 - components: - - type: Transform - pos: 30.5,3.5 - parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9339 - components: - - type: Transform - pos: 33.5,3.5 - parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9340 - components: - - type: Transform - pos: 36.5,3.5 - parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9341 - components: - - type: Transform - pos: 36.5,2.5 - parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 10434 components: - type: Transform @@ -224256,31 +224789,45 @@ entities: - 0 - 0 - 0 -- proto: WardrobeRobotics - entities: - - uid: 20060 + - uid: 35988 components: - type: Transform - pos: 30.5,-26.5 + anchored: True + pos: 33.5,1.5 + parent: 13329 + - type: Physics + bodyType: Static + - uid: 35989 + components: + - type: Transform + anchored: True + pos: 30.5,1.5 + parent: 13329 + - type: Physics + bodyType: Static + - uid: 35990 + components: + - type: Transform + anchored: True + pos: 27.5,1.5 + parent: 13329 + - type: Physics + bodyType: Static + - uid: 35991 + components: + - type: Transform + anchored: True + pos: 36.5,1.5 + parent: 13329 + - type: Physics + bodyType: Static +- proto: WardrobeRobotics + entities: + - uid: 35999 + components: + - type: Transform + pos: 27.5,-27.5 parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeSalvageFilled entities: - uid: 11651 @@ -224568,15 +225115,20 @@ entities: - type: Transform pos: -35.5,49.5 parent: 13329 + - uid: 8925 + components: + - type: Transform + pos: 36.5,12.5 + parent: 13329 - uid: 9387 components: - type: Transform pos: 27.5,9.5 parent: 13329 - - uid: 9419 + - uid: 9442 components: - type: Transform - pos: 36.5,10.5 + pos: 18.5,15.5 parent: 13329 - uid: 9447 components: @@ -224618,11 +225170,6 @@ entities: - type: Transform pos: 21.5,9.5 parent: 13329 - - uid: 10622 - components: - - type: Transform - pos: 20.5,9.5 - parent: 13329 - uid: 11820 components: - type: Transform @@ -224658,23 +225205,49 @@ entities: - type: Transform pos: 61.5,45.5 parent: 13329 + - uid: 35975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,13.5 + parent: 13329 - proto: WeaponDisabler entities: - - uid: 10627 + - uid: 8645 components: - type: Transform - pos: 16.534834,13.543934 - parent: 13329 - - uid: 10628 + parent: 27875 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9473 components: - type: Transform - pos: 16.534834,13.465809 - parent: 13329 - - uid: 10629 + parent: 27875 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9475 components: - type: Transform - pos: 16.534834,13.340809 - parent: 13329 + parent: 27875 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9476 + components: + - type: Transform + parent: 27875 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9646 + components: + - type: Transform + parent: 27875 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponDisablerPractice entities: - uid: 10257 @@ -224684,20 +225257,45 @@ entities: parent: 13329 - proto: WeaponLaserCarbine entities: - - uid: 10636 + - uid: 9119 components: - type: Transform - pos: 18.581709,11.700184 + pos: 20.462889,9.392429 parent: 13329 - - uid: 10637 + - uid: 9374 components: - type: Transform - pos: 18.581709,11.606434 + pos: 20.462889,9.496596 parent: 13329 - - uid: 10638 + - uid: 9383 components: - type: Transform - pos: 18.581709,11.497059 + pos: 20.462889,9.277846 + parent: 13329 + - uid: 10633 + components: + - type: Transform + pos: 20.45247,9.621596 + parent: 13329 + - uid: 35957 + components: + - type: Transform + pos: 19.504555,9.579929 + parent: 13329 + - uid: 35964 + components: + - type: Transform + pos: 19.504555,9.454929 + parent: 13329 + - uid: 35965 + components: + - type: Transform + pos: 19.51497,9.329929 + parent: 13329 + - uid: 35966 + components: + - type: Transform + pos: 19.525389,9.215346 parent: 13329 - proto: WeaponLaserCarbinePractice entities: @@ -224718,37 +225316,48 @@ entities: parent: 13329 - proto: WeaponPistolMk58 entities: - - uid: 10639 + - uid: 10653 components: - type: Transform - pos: 17.56414,13.229148 - parent: 13329 - - uid: 10640 + parent: 10650 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10656 components: - type: Transform - pos: 17.56414,13.354148 - parent: 13329 - - uid: 10641 - components: - - type: Transform - pos: 17.56414,13.463523 - parent: 13329 + parent: 10650 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponRifleLecter entities: - - uid: 10666 - components: - - type: Transform - pos: 19.43914,12.477703 - parent: 13329 - uid: 10667 components: - type: Transform - pos: 19.423515,12.602703 + pos: 19.47671,12.726559 parent: 13329 - - uid: 10668 + - uid: 32366 components: - type: Transform - pos: 19.43914,12.321453 + pos: 19.469765,12.497393 + parent: 13329 + - uid: 33812 + components: + - type: Transform + pos: 19.469765,12.351559 + parent: 13329 + - uid: 35337 + components: + - type: Transform + pos: 19.469765,12.608503 + parent: 13329 +- proto: WeaponShotgunEnforcer + entities: + - uid: 9339 + components: + - type: Transform + pos: 31.498325,13.851317 parent: 13329 - proto: WeaponShotgunHandmade entities: @@ -224760,37 +225369,47 @@ entities: parent: 13329 - proto: WeaponShotgunKammerer entities: - - uid: 10630 + - uid: 8641 components: - type: Transform - pos: 16.519209,11.668934 + pos: 17.450855,11.716393 parent: 13329 - - uid: 10631 + - uid: 8649 components: - type: Transform - pos: 16.503584,11.559559 + pos: 17.4578,11.5080595 parent: 13329 - - uid: 10632 + - uid: 35863 components: - type: Transform - pos: 16.503584,11.403309 + pos: 17.450855,11.605282 + parent: 13329 + - uid: 35864 + components: + - type: Transform + pos: 17.4578,11.403893 parent: 13329 - proto: WeaponSubMachineGunDrozd entities: - - uid: 1348 + - uid: 16653 components: - type: Transform - pos: 19.52061,11.77124 + pos: 18.624111,11.348337 parent: 13329 - - uid: 1349 + - uid: 18501 components: - type: Transform - pos: 19.536236,11.443115 + pos: 18.617167,11.646949 parent: 13329 - - uid: 13339 + - uid: 18504 components: - type: Transform - pos: 19.536236,11.630615 + pos: 18.617167,11.459449 + parent: 13329 + - uid: 18555 + components: + - type: Transform + pos: 18.617167,11.5497265 parent: 13329 - proto: WeaponSubMachineGunWt550 entities: @@ -224975,6 +225594,30 @@ entities: - type: Transform pos: -6.5,15.5 parent: 13329 + - uid: 7602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-15.5 + parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 15258: + - DoorStatus: Close + - uid: 8646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-17.5 + parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 15259: + - DoorStatus: Close - uid: 9385 components: - type: Transform @@ -225041,6 +225684,42 @@ entities: - type: Transform pos: 58.5,43.5 parent: 13329 + - uid: 31762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,37.5 + parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13328: + - DoorStatus: Close + - uid: 32363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-7.5 + parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9651: + - DoorStatus: Close + - uid: 36001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-13.5 + parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 15325: + - DoorStatus: Close - proto: WindoorBarKitchenLocked entities: - uid: 1220 @@ -225098,6 +225777,18 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,35.5 parent: 13329 +- proto: WindoorJanitorLocked + entities: + - uid: 9406 + components: + - type: Transform + pos: 3.5,8.5 + parent: 13329 + - uid: 15508 + components: + - type: Transform + pos: 4.5,8.5 + parent: 13329 - proto: WindoorKitchenHydroponicsLocked entities: - uid: 1224 @@ -225138,12 +225829,6 @@ entities: parent: 13329 - proto: WindoorSecureArmoryLocked entities: - - uid: 8649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,13.5 - parent: 13329 - uid: 9364 components: - type: Transform @@ -225166,56 +225851,88 @@ entities: rot: 3.141592653589793 rad pos: 16.5,13.5 parent: 13329 + - type: Airlock + autoClose: False - uid: 10679 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,13.5 parent: 13329 + - type: Airlock + autoClose: False - uid: 10680 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,13.5 parent: 13329 + - type: Airlock + autoClose: False - uid: 10681 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,13.5 parent: 13329 - - uid: 10682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,12.5 - parent: 13329 + - type: Airlock + autoClose: False - uid: 10683 components: - type: Transform pos: 17.5,11.5 parent: 13329 + - type: Airlock + autoClose: False - uid: 10684 components: - type: Transform pos: 16.5,11.5 parent: 13329 + - type: Airlock + autoClose: False - uid: 10685 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,12.5 parent: 13329 + - type: Airlock + autoClose: False - uid: 10686 components: - type: Transform pos: 19.5,11.5 parent: 13329 + - type: Airlock + autoClose: False - uid: 10687 components: - type: Transform pos: 18.5,11.5 parent: 13329 + - type: Airlock + autoClose: False + - uid: 26338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,12.5 + parent: 13329 + - type: Airlock + autoClose: False + - uid: 35969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,9.5 + parent: 13329 + - uid: 35970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,9.5 + parent: 13329 - proto: WindoorSecureAtmosphericsLocked entities: - uid: 14804 @@ -225274,23 +225991,39 @@ entities: - type: Transform pos: 22.5,42.5 parent: 13329 - - uid: 13323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,37.5 - parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10660: + - DoorStatus: Close + 9337: + - DoorStatus: Close - uid: 13328 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,37.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 31762: + - DoorStatus: Close - uid: 18458 components: - type: Transform pos: 21.5,42.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 10660: + - DoorStatus: Close + 9337: + - DoorStatus: Close - proto: WindoorSecureCommandLocked entities: - uid: 30210 @@ -225366,6 +226099,32 @@ entities: parent: 13329 - proto: WindoorSecureMedicalLocked entities: + - uid: 9337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,42.5 + parent: 13329 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 11718: + - DoorStatus: Close + 18458: + - DoorStatus: Close + - uid: 10660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,42.5 + parent: 13329 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 18458: + - DoorStatus: Close - uid: 18827 components: - type: Transform @@ -225403,12 +226162,24 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-15.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7602: + - DoorStatus: Close - uid: 15259 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-17.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8646: + - DoorStatus: Close - uid: 15324 components: - type: Transform @@ -225420,6 +226191,12 @@ entities: - type: Transform pos: 53.5,-13.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 36001: + - DoorStatus: Close - uid: 15329 components: - type: Transform @@ -225458,24 +226235,12 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-9.5 parent: 13329 - - uid: 2198 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-7.5 - parent: 13329 - uid: 4606 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,48.5 parent: 13329 - - uid: 8648 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,13.5 - parent: 13329 - uid: 9333 components: - type: MetaData @@ -225508,12 +226273,28 @@ entities: rot: 3.141592653589793 rad pos: 37.5,4.5 parent: 13329 + - uid: 9361 + components: + - type: Transform + pos: 16.5,15.5 + parent: 13329 - uid: 9423 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,2.5 parent: 13329 + - uid: 9651 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 32363: + - DoorStatus: Close - uid: 10244 components: - type: Transform @@ -226279,62 +227060,12 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,3.5 parent: 13329 - - uid: 8654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,12.5 - parent: 13329 - - uid: 8657 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,12.5 - parent: 13329 - - uid: 8662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,12.5 - parent: 13329 - - uid: 8663 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,12.5 - parent: 13329 - - uid: 8664 - components: - - type: Transform - pos: 19.5,12.5 - parent: 13329 - - uid: 8665 - components: - - type: Transform - pos: 18.5,12.5 - parent: 13329 - - uid: 8666 - components: - - type: Transform - pos: 17.5,12.5 - parent: 13329 - - uid: 8667 - components: - - type: Transform - pos: 16.5,12.5 - parent: 13329 - uid: 8668 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,12.5 parent: 13329 - - uid: 8669 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,12.5 - parent: 13329 - uid: 8670 components: - type: Transform @@ -226359,12 +227090,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,13.5 parent: 13329 - - uid: 8674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,13.5 - parent: 13329 - uid: 8675 components: - type: Transform @@ -226383,6 +227108,24 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,13.5 parent: 13329 + - uid: 8939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 13329 + - uid: 9377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,15.5 + parent: 13329 + - uid: 9382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,13.5 + parent: 13329 - uid: 9461 components: - type: Transform @@ -226446,18 +227189,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,9.5 parent: 13329 - - uid: 9475 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,10.5 - parent: 13329 - - uid: 9476 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,11.5 - parent: 13329 - uid: 10243 components: - type: Transform @@ -226518,11 +227249,11 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,15.5 parent: 13329 - - uid: 10621 + - uid: 10635 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,9.5 + pos: 14.5,10.5 parent: 13329 - uid: 11489 components: @@ -227588,13 +228319,70 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,56.5 parent: 13329 -- proto: Wirecutter - entities: - - uid: 9383 + - uid: 35338 components: - type: Transform - pos: 31.515518,13.593397 + rot: 1.5707963267948966 rad + pos: 18.5,12.5 parent: 13329 + - uid: 35941 + components: + - type: Transform + pos: 17.5,13.5 + parent: 13329 + - uid: 35942 + components: + - type: Transform + pos: 18.5,13.5 + parent: 13329 + - uid: 35943 + components: + - type: Transform + pos: 19.5,13.5 + parent: 13329 + - uid: 35944 + components: + - type: Transform + pos: 16.5,13.5 + parent: 13329 + - uid: 35945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,11.5 + parent: 13329 + - uid: 35946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,11.5 + parent: 13329 + - uid: 35947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,11.5 + parent: 13329 + - uid: 35948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,11.5 + parent: 13329 + - uid: 35967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,9.5 + parent: 13329 + - uid: 35968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,9.5 + parent: 13329 +- proto: Wirecutter + entities: - uid: 32412 components: - type: Transform diff --git a/Resources/Prototypes/Maps/fland.yml b/Resources/Prototypes/Maps/fland.yml index 1528cbfbf3..e169acbe1d 100644 --- a/Resources/Prototypes/Maps/fland.yml +++ b/Resources/Prototypes/Maps/fland.yml @@ -24,15 +24,15 @@ Bartender: [ 2, 2 ] Botanist: [ 3, 3 ] Chef: [ 2, 2 ] - Janitor: [ 3, 3 ] + Janitor: [ 4, 4 ] Chaplain: [ 1, 1 ] Librarian: [ 1, 1 ] ServiceWorker: [ 2, 2 ] - Reporter: [ 1, 1 ] + Reporter: [ 2, 2 ] #engineering ChiefEngineer: [ 1, 1 ] AtmosphericTechnician: [ 3, 3 ] - StationEngineer: [ 5, 5 ] + StationEngineer: [ 6, 6 ] TechnicalAssistant: [ 4, 4 ] #medical ChiefMedicalOfficer: [ 1, 1 ] @@ -47,14 +47,14 @@ #security HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] - SecurityOfficer: [ 8, 8 ] + SecurityOfficer: [ 10, 10 ] Detective: [ 1, 1 ] - SecurityCadet: [ 4, 4 ] + SecurityCadet: [ 6, 6 ] Lawyer: [ 2, 2 ] #supply Quartermaster: [ 1, 1 ] SalvageSpecialist: [ 3, 3 ] - CargoTechnician: [ 4, 4 ] + CargoTechnician: [ 6, 6 ] #civilian Passenger: [ -1, -1 ] Clown: [ 1, 1 ] @@ -62,4 +62,4 @@ Musician: [ 1, 1 ] #silicon StationAi: [ 1, 1 ] - Borg: [ 2, 2 ] + Borg: [ 5, 5 ] From 2219487df250e1e974ecd6e3d10e8390e6f4ef20 Mon Sep 17 00:00:00 2001 From: keronshb <54602815+keronshb@users.noreply.github.com> Date: Mon, 10 Feb 2025 17:13:17 -0500 Subject: [PATCH 185/313] Wizard Fix - Rod Polymorph - Prevent gibbing & slows speed (#34992) --- Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml b/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml index 0bee05aa6a..bbadf4f220 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml @@ -66,13 +66,13 @@ suffix: Wizard components: - type: ImmovableRod - minSpeed: 35 + maxSpeed: 25 destroyTiles: false randomizeVelocity: false shouldGib: false damage: types: - Blunt: 200 + Blunt: 190 - type: MovementIgnoreGravity gravityState: true - type: InputMover From 36bf5543523fbd7c805fc296f2619e9a7a17f849 Mon Sep 17 00:00:00 2001 From: themias <89101928+themias@users.noreply.github.com> Date: Mon, 10 Feb 2025 17:17:57 -0500 Subject: [PATCH 186/313] Fix pacified players attacking with mechs (#34954) --- Content.Shared/ActionBlocker/ActionBlockerSystem.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Shared/ActionBlocker/ActionBlockerSystem.cs b/Content.Shared/ActionBlocker/ActionBlockerSystem.cs index 8a4b5baffd..6152699ccb 100644 --- a/Content.Shared/ActionBlocker/ActionBlockerSystem.cs +++ b/Content.Shared/ActionBlocker/ActionBlockerSystem.cs @@ -199,7 +199,8 @@ namespace Content.Shared.ActionBlocker { var containerEv = new CanAttackFromContainerEvent(uid, target); RaiseLocalEvent(uid, containerEv); - return containerEv.CanAttack; + if (!containerEv.CanAttack) + return false; } var ev = new AttackAttemptEvent(uid, target, weapon, disarm); From 724f87e62a42a7f713e4a065f11cb45faef2d01d Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 10 Feb 2025 22:19:07 +0000 Subject: [PATCH 187/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 4ef3720384..184c63caa8 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Vasilis - changes: - - message: Removed the age requirement for command jobs. - type: Tweak - id: 7427 - time: '2024-09-24T00:31:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32340 - author: whatston3 changes: - message: Area insert items can pick up single item sets when clicking on the floor. @@ -3897,3 +3890,10 @@ id: 7926 time: '2025-02-10T09:05:24.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34986 +- author: themias + changes: + - message: Pacified players can no longer attack living creatures with mechs + type: Fix + id: 7927 + time: '2025-02-10T22:17:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34954 From d849a0434b2c858a9e01c404bb42cff5d85ea438 Mon Sep 17 00:00:00 2001 From: SpaceManiac Date: Mon, 10 Feb 2025 16:45:52 -0800 Subject: [PATCH 188/313] Fix character menu button not untoggling when window closes (#33712) --- .../Character/CharacterUIController.cs | 35 +++++++++++-------- 1 file changed, 21 insertions(+), 14 deletions(-) diff --git a/Content.Client/UserInterface/Systems/Character/CharacterUIController.cs b/Content.Client/UserInterface/Systems/Character/CharacterUIController.cs index c9251000a3..e69f577407 100644 --- a/Content.Client/UserInterface/Systems/Character/CharacterUIController.cs +++ b/Content.Client/UserInterface/Systems/Character/CharacterUIController.cs @@ -56,19 +56,20 @@ public sealed class CharacterUIController : UIController, IOnStateEntered(); LayoutContainer.SetAnchorPreset(_window, LayoutContainer.LayoutPreset.CenterTop); - + _window.OnClose += DeactivateButton; + _window.OnOpen += ActivateButton; CommandBinds.Builder .Bind(ContentKeyFunctions.OpenCharacterMenu, - InputCmdHandler.FromDelegate(_ => ToggleWindow())) - .Register(); + InputCmdHandler.FromDelegate(_ => ToggleWindow())) + .Register(); } public void OnStateExited(GameplayState state) { if (_window != null) { - _window.Dispose(); + _window.Close(); _window = null; } @@ -105,18 +106,27 @@ public sealed class CharacterUIController : UIController, IOnStateEntered CharacterButton!.Pressed = false; - private void ActivateButton() => CharacterButton!.Pressed = true; + private void ActivateButton() + { + if (CharacterButton == null) + { + return; + } + + CharacterButton.Pressed = true; + } private void CharacterUpdated(CharacterData data) { @@ -150,7 +160,7 @@ public sealed class CharacterUIController : UIController, IOnStateEntered Date: Mon, 10 Feb 2025 21:15:36 -0500 Subject: [PATCH 189/313] Don't force-show storage windows when their contents change (#35048) --- Content.Client/Storage/Systems/StorageSystem.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Content.Client/Storage/Systems/StorageSystem.cs b/Content.Client/Storage/Systems/StorageSystem.cs index ab4d9407b2..70e02c4693 100644 --- a/Content.Client/Storage/Systems/StorageSystem.cs +++ b/Content.Client/Storage/Systems/StorageSystem.cs @@ -74,10 +74,6 @@ public sealed class StorageSystem : SharedStorageSystem { containerBui.Hide(); } - else - { - storageBui.Show(); - } } } From 371a513d9a0cdc785daf65b04a7eb55ba4f52bff Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 11 Feb 2025 02:16:43 +0000 Subject: [PATCH 190/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 184c63caa8..7f9ad23870 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: whatston3 - changes: - - message: Area insert items can pick up single item sets when clicking on the floor. - type: Fix - id: 7428 - time: '2024-09-24T14:23:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32153 - author: LordEclipse changes: - message: The Antimov Law Board is now available in both the Traitor and Nuclear @@ -3897,3 +3890,11 @@ id: 7927 time: '2025-02-10T22:17:57.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34954 +- author: sowelipililimute + changes: + - message: Smart equipping into your backpack w/ a nested storage window open no + longer bugs out + type: Fix + id: 7928 + time: '2025-02-11T02:15:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35048 From 4abadf9f99afe2e2bd0ba4eb281890252394700e Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Mon, 10 Feb 2025 21:36:58 -0500 Subject: [PATCH 191/313] Display radio frequencies with a decimal place (#35046) --- Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs | 2 +- .../Locale/en-US/radio/components/encryption-key-component.ftl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs b/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs index 7b050273db..94d839a420 100644 --- a/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs +++ b/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs @@ -230,7 +230,7 @@ public sealed partial class EncryptionKeySystem : EntitySystem ("color", proto.Color), ("key", key), ("id", proto.LocalizedName), - ("freq", proto.Frequency))); + ("freq", proto.Frequency / 10f))); } if (defaultChannel != null && _protoManager.TryIndex(defaultChannel, out proto)) diff --git a/Resources/Locale/en-US/radio/components/encryption-key-component.ftl b/Resources/Locale/en-US/radio/components/encryption-key-component.ftl index d595cd3790..5bdf3faeb2 100644 --- a/Resources/Locale/en-US/radio/components/encryption-key-component.ftl +++ b/Resources/Locale/en-US/radio/components/encryption-key-component.ftl @@ -6,5 +6,5 @@ encryption-keys-are-locked = Encryption key slots are locked! encryption-keys-panel-locked = Open maintenance panel first! examine-encryption-channels-prefix = Available frequencies: -examine-encryption-channel = [color={$color}]{$key} for {$id} ({$freq})[/color] +examine-encryption-channel = [color={$color}]{$key} for {$id} ({NATURALFIXED($freq, 1)})[/color] examine-encryption-default-channel = The default channel is [color={$color}]{$channel}[/color]. From a8715dc6a7912a209ad7cd018015d8909afc5fbe Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 11 Feb 2025 02:38:04 +0000 Subject: [PATCH 192/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 7f9ad23870..6c84efea98 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: LordEclipse - changes: - - message: The Antimov Law Board is now available in both the Traitor and Nuclear - Operative Uplinks, 14 and 24 TC respectively. - type: Add - id: 7429 - time: '2024-09-24T15:06:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31916 - author: lzk228 changes: - message: Freezer electronics added to autolathe, with which you can craft locker @@ -3898,3 +3890,10 @@ id: 7928 time: '2025-02-11T02:15:36.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35048 +- author: Tayrtahn + changes: + - message: Radio frequencies are now displayed with a decimal point. + type: Tweak + id: 7929 + time: '2025-02-11T02:36:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35046 From d351f3223079e90ecbc785efc1786104f325bd8d Mon Sep 17 00:00:00 2001 From: themias <89101928+themias@users.noreply.github.com> Date: Mon, 10 Feb 2025 21:52:26 -0500 Subject: [PATCH 193/313] Fix multiple research consoles exploit (#34334) --- Content.Server/Research/Systems/ResearchSystem.Console.cs | 8 +++++++- .../Research/Systems/ResearchSystem.Technology.cs | 2 +- .../Research/Components/TechnologyDatabaseComponent.cs | 7 +++++++ Content.Shared/Research/Systems/SharedResearchSystem.cs | 3 +++ 4 files changed, 18 insertions(+), 2 deletions(-) diff --git a/Content.Server/Research/Systems/ResearchSystem.Console.cs b/Content.Server/Research/Systems/ResearchSystem.Console.cs index c227aee7f0..baaf06ea71 100644 --- a/Content.Server/Research/Systems/ResearchSystem.Console.cs +++ b/Content.Server/Research/Systems/ResearchSystem.Console.cs @@ -21,6 +21,7 @@ public sealed partial class ResearchSystem SubscribeLocalEvent(OnPointsChanged); SubscribeLocalEvent(OnConsoleRegistrationChanged); SubscribeLocalEvent(OnConsoleDatabaseModified); + SubscribeLocalEvent(OnConsoleDatabaseSynchronized); SubscribeLocalEvent(OnEmagged); } @@ -100,6 +101,12 @@ public sealed partial class ResearchSystem } private void OnConsoleDatabaseModified(EntityUid uid, ResearchConsoleComponent component, ref TechnologyDatabaseModifiedEvent args) + { + SyncClientWithServer(uid); + UpdateConsoleInterface(uid, component); + } + + private void OnConsoleDatabaseSynchronized(EntityUid uid, ResearchConsoleComponent component, ref TechnologyDatabaseSynchronizedEvent args) { UpdateConsoleInterface(uid, component); } @@ -114,5 +121,4 @@ public sealed partial class ResearchSystem args.Handled = true; } - } diff --git a/Content.Server/Research/Systems/ResearchSystem.Technology.cs b/Content.Server/Research/Systems/ResearchSystem.Technology.cs index 7578d316c5..360985b4b6 100644 --- a/Content.Server/Research/Systems/ResearchSystem.Technology.cs +++ b/Content.Server/Research/Systems/ResearchSystem.Technology.cs @@ -23,7 +23,7 @@ public sealed partial class ResearchSystem Dirty(primaryUid, primaryDb); - var ev = new TechnologyDatabaseModifiedEvent(); + var ev = new TechnologyDatabaseSynchronizedEvent(); RaiseLocalEvent(primaryUid, ref ev); } diff --git a/Content.Shared/Research/Components/TechnologyDatabaseComponent.cs b/Content.Shared/Research/Components/TechnologyDatabaseComponent.cs index fc317454c9..4f976869f7 100644 --- a/Content.Shared/Research/Components/TechnologyDatabaseComponent.cs +++ b/Content.Shared/Research/Components/TechnologyDatabaseComponent.cs @@ -55,3 +55,10 @@ public sealed partial class TechnologyDatabaseComponent : Component /// [ByRefEvent] public readonly record struct TechnologyDatabaseModifiedEvent; + +/// +/// Event raised on a database after being synchronized +/// with the values from another database. +/// +[ByRefEvent] +public readonly record struct TechnologyDatabaseSynchronizedEvent; diff --git a/Content.Shared/Research/Systems/SharedResearchSystem.cs b/Content.Shared/Research/Systems/SharedResearchSystem.cs index 06e12e0798..bca1ae4888 100644 --- a/Content.Shared/Research/Systems/SharedResearchSystem.cs +++ b/Content.Shared/Research/Systems/SharedResearchSystem.cs @@ -227,6 +227,9 @@ public abstract class SharedResearchSystem : EntitySystem return; component.MainDiscipline = prototype.Discipline; Dirty(uid, component); + + var ev = new TechnologyDatabaseModifiedEvent(); + RaiseLocalEvent(uid, ref ev); } /// [ByRefEvent] - public record struct GetUsedEntityEvent() + public record struct GetUsedEntityEvent(EntityUid User) { + public EntityUid User = User; public EntityUid? Used = null; public bool Handled => Used != null; diff --git a/Content.Shared/Inventory/VirtualItem/SharedVirtualItemSystem.cs b/Content.Shared/Inventory/VirtualItem/SharedVirtualItemSystem.cs index 8e62c5163d..9eac60adc4 100644 --- a/Content.Shared/Inventory/VirtualItem/SharedVirtualItemSystem.cs +++ b/Content.Shared/Inventory/VirtualItem/SharedVirtualItemSystem.cs @@ -46,6 +46,8 @@ public abstract class SharedVirtualItemSystem : EntitySystem SubscribeLocalEvent(OnBeforeRangedInteract); SubscribeLocalEvent(OnGettingInteractedWithAttemptEvent); + + SubscribeLocalEvent(OnGetUsedEntity); } /// @@ -81,6 +83,23 @@ public abstract class SharedVirtualItemSystem : EntitySystem args.Cancelled = true; } + private void OnGetUsedEntity(Entity ent, ref GetUsedEntityEvent args) + { + if (args.Handled) + return; + + // if the user is holding the real item the virtual item points to, + // we allow them to use it in the interaction + foreach (var hand in _handsSystem.EnumerateHands(args.User)) + { + if (hand.HeldEntity == ent.Comp.BlockingEntity) + { + args.Used = ent.Comp.BlockingEntity; + return; + } + } + } + #region Hands /// From 224a95b103b8fc0ebe1b54e7de093e902afdad7b Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 11 Feb 2025 03:30:44 +0000 Subject: [PATCH 201/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f1d5fa7181..21bfb4e40e 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,15 +1,4 @@ Entries: -- author: ArchRBX - changes: - - message: The AstroNav PDA cartridge has now been added, which turns your PDA into - a handheld GPS - type: Add - - message: The AstroNav cartridge has been added to the QM locker, and comes preinstalled - on salvage PDA's - type: Add - id: 7432 - time: '2024-09-24T17:02:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32194 - author: PJB3005 changes: - message: Fixed some people's preferences taking ages to load, hopefully. @@ -3901,3 +3890,10 @@ id: 7931 time: '2025-02-11T03:23:11.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34421 +- author: themias + changes: + - message: You can no longer use pulled objects as tools. + type: Fix + id: 7932 + time: '2025-02-11T03:29:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34587 From 66ff1aa37d314f477d3bf103fee0e8237a4cf213 Mon Sep 17 00:00:00 2001 From: TemporalOroboros Date: Mon, 10 Feb 2025 21:08:17 -0800 Subject: [PATCH 202/313] Fix references to obsolete TryGetContainingContainer override (#34912) --- Content.Server/Explosion/EntitySystems/TriggerSystem.cs | 2 +- Content.Shared/Inventory/InventorySystem.Helpers.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs index 57847551aa..53f6dfacf8 100644 --- a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs +++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs @@ -126,7 +126,7 @@ namespace Content.Server.Explosion.EntitySystems private void HandleShockTrigger(Entity shockOnTrigger, ref TriggerEvent args) { - if (!_container.TryGetContainingContainer(shockOnTrigger, out var container)) + if (!_container.TryGetContainingContainer(shockOnTrigger.Owner, out var container)) return; var containerEnt = container.Owner; diff --git a/Content.Shared/Inventory/InventorySystem.Helpers.cs b/Content.Shared/Inventory/InventorySystem.Helpers.cs index 7e325abe21..746342e2f1 100644 --- a/Content.Shared/Inventory/InventorySystem.Helpers.cs +++ b/Content.Shared/Inventory/InventorySystem.Helpers.cs @@ -40,7 +40,7 @@ public partial class InventorySystem /// public bool TryGetContainingSlot(Entity entity, [NotNullWhen(true)] out SlotDefinition? slot) { - if (!_containerSystem.TryGetContainingContainer(entity.Owner, out var container, entity.Comp2, entity.Comp1)) + if (!_containerSystem.TryGetContainingContainer(entity, out var container)) { slot = null; return false; From a2ac503201796f8f0fa5c8434f26d2f41a20476f Mon Sep 17 00:00:00 2001 From: chromiumboy <50505512+chromiumboy@users.noreply.github.com> Date: Tue, 11 Feb 2025 00:25:30 -0600 Subject: [PATCH 203/313] Sentry turrets - Part 1: Art assets (#35025) * Initial commit * Updated sprites * Updated base.png and base_shadow.png * Updated meta file --- .../projectiles_tg.rsi/heavylaser.png | Bin 340 -> 371 bytes .../projectiles_tg.rsi/heavylaser_flash.png | Bin 0 -> 2015 bytes .../Projectiles/projectiles_tg.rsi/meta.json | 8 +- .../projectiles_tg.rsi/omnilaser.png | Bin 275 -> 205 bytes .../projectiles_tg.rsi/omnilaser_flash.png | Bin 0 -> 1877 bytes .../Guns/Turrets/sentry_turret.rsi/base.png | Bin 0 -> 3121 bytes .../Turrets/sentry_turret.rsi/base_shadow.png | Bin 0 -> 912 bytes .../sentry_turret.rsi/cover_closed.png | Bin 0 -> 422 bytes .../sentry_turret.rsi/cover_closing.png | Bin 0 -> 2618 bytes .../sentry_turret.rsi/cover_light_on.png | Bin 0 -> 94 bytes .../Turrets/sentry_turret.rsi/cover_open.png | Bin 0 -> 182 bytes .../sentry_turret.rsi/cover_opening.png | Bin 0 -> 2596 bytes .../Turrets/sentry_turret.rsi/destroyed.png | Bin 0 -> 4347 bytes .../Guns/Turrets/sentry_turret.rsi/lethal.png | Bin 0 -> 612 bytes .../Guns/Turrets/sentry_turret.rsi/meta.json | 94 ++++++++++++++++++ .../Guns/Turrets/sentry_turret.rsi/panel.png | Bin 0 -> 198 bytes .../Guns/Turrets/sentry_turret.rsi/stun.png | Bin 0 -> 616 bytes .../Turrets/sentry_turret.rsi/support.png | Bin 0 -> 256 bytes .../Wallmounts/turret_controls.rsi/base.png | Bin 0 -> 186 bytes .../Wallmounts/turret_controls.rsi/lethal.png | Bin 0 -> 162 bytes .../Wallmounts/turret_controls.rsi/meta.json | 44 ++++++++ .../Wallmounts/turret_controls.rsi/safe.png | Bin 0 -> 156 bytes .../Wallmounts/turret_controls.rsi/stun.png | Bin 0 -> 180 bytes .../Wallmounts/turret_controls.rsi/wires.png | Bin 0 -> 155 bytes 24 files changed, 145 insertions(+), 1 deletion(-) create mode 100644 Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/heavylaser_flash.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/omnilaser_flash.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/base.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/base_shadow.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_closed.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_closing.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_light_on.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_open.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_opening.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/destroyed.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/lethal.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/meta.json create mode 100644 Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/panel.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/stun.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/support.png create mode 100644 Resources/Textures/Structures/Wallmounts/turret_controls.rsi/base.png create mode 100644 Resources/Textures/Structures/Wallmounts/turret_controls.rsi/lethal.png create mode 100644 Resources/Textures/Structures/Wallmounts/turret_controls.rsi/meta.json create mode 100644 Resources/Textures/Structures/Wallmounts/turret_controls.rsi/safe.png create mode 100644 Resources/Textures/Structures/Wallmounts/turret_controls.rsi/stun.png create mode 100644 Resources/Textures/Structures/Wallmounts/turret_controls.rsi/wires.png diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/heavylaser.png b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/heavylaser.png index 4db201c77cb1642fc0edc27a878319a164e6d7ed..8d84a0e82860c23a20fbeb595f3d3f1bd0e65fb2 100644 GIT binary patch delta 345 zcmV-f0jB=c0`mfpBYy!pNklETWJP2o(em?ob;-2&pY$+=8@d5$_&7J;c56pI0G-D1;Cu zHC$a`fFSXFfFef%gi5KdwHzJsMi^*z39!qLvMYq6DSiqGsHaShSA3pa-1W58qfbnBGro{#qu_yV|l zbb0w4skgE$uhkz7{g+q(3t#~(fCaDsdH`9van`FnZ~zX@dbKA@H@yIaN~v9bl(p@W zzZj2gbFQs5Yf@!MLZwuZBZI^{?ZS@{sXL-0{wHR@#1;D|rc~?prn$gBv*oh)TyP~H rXo(x=!fG*@R*T8hG#?HcP6uD#wGWtL9u|hr00000NkvXXu0mjf&@GgD delta 314 zcmV-A0mc6F0@MPKBYyx1a7bBm000ie000ie0hKEb8vpH-l5#UHSA2dh#TS=Ok63Q(xws`I#bZi%!cxp_mu$CylEQo z&&pG7-blID+eckLe+sa{+uf>w15&nB2pXWnU9b>E4-poEMSq|GUicTl7C?}QXuu%c z2CII1q9RgWLM8S`Gpb7EBQO;O7@0kUzYk|PpA8V0r!Wba3fHB_R7BE$V2)w{0~o*n z1~7mIs7mO5t{q=5aBL9(w9~Gwx^VCKBpI`?fv$eXFU)^biF^bduI0N@Myr2 z6%7bI1ve(l9y0|9B21CO(SQI#P{T=pF$6W74DbLdH8V*mgE M07*qoM6N<$f>Ke0CjbBd diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/heavylaser_flash.png b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/heavylaser_flash.png new file mode 100644 index 0000000000000000000000000000000000000000..89e765b9e6b2143461dcd84df52701eac6223d61 GIT binary patch literal 2015 zcmV<52O#)~P)N)M{xwYs1d-g{U#yA&^pwB?*mOPLl!>w0W#xI31~f_A~yvUcdz_t zzYO+jmp%GlfqEP?dGBpaz$)Jj>jJtc?DFf|9QT7J53SK<|6W~gP)d9#X}k=zu?e&% zK<%x31>CapX{UfkARzZ&6HI_rZmD<5mT$P^t`)lM_>mz7+HO#nEMPO}M?lGK^K}86 z+`cd%enJwaQP#3j+yrFP+**NZ0k7P>(jj0xb2*#?$j{ena`-KafK6Jcm6bF~H660K z`9A4jsoWY`C4L&EgOJ={sTQ!xC!BxYYx+NmWn@r|HH7VT%dp|VM-m_PdYIV@mk=Au zVc0T^#|Lqe<243&>Yf;9j+Wkf=73s#uD`585xFR!3(U_H&zGP+(|zIuk;q|=_s5v;G4a*qxbo_9X3MkU2K5hMDagXg zxt$*iv@B0kni^NJ3FbLw%qyi89Q`OofuBkV)d z&vWJVDc*f`igzdjaum!Vpa=|rY@HlO`DfY_#=d9arGiO3iV6h9V8^|%cc;z^F(=K`QbPorzlC{iSM!}mt{}3w z9ubpN{5)=-kEFwfBk5#0bFey7EMS6eGTqzv3=AGuaaXrI{$DGdUq7VhN_wgV@WpWXWK6`%&34X4yeO`+!5cd`xH3od2Mg zVm?8+7-gX64DWE5<=6?;*_a&5>f72dXbw0iWvg*|YG{Zorghb9ya5fR1Wgk_p|pw+ zQ{ixGSZy{eRu?4&O7l_7#WA#Mlq-YP;UpLovS~XmS2fuwgQ;`@w>wXZ+fN}qjLSR4 zp7f+aTe!@r!2&r_*rHPm_w{jTmz&xjw_sRRC3+LkDHe+yd;MjOyc}R6dYqvX!`OWe zEH(#bDTl>bCZDY$J#I%g(ukQSAD<*!IEf-alrzkxKpLI5M$0_3#xPj4vc%s9r@5Xn z;0*B*7l+;muy~z|NLvV{31Vub;u*UBGQqk202hXOIs4uK-cXGG-eHm?S>O?d(*>eT zb3>b=zq?405;k;VDCQd$YD#5>C}IQJFnQ_?Q8Lu0*wmzR5Fd-Eqnc(SSF|Fsim%_a zly&#i06GJwqU?NZkh3S>BojS=#t7bq6aynUoajKF3lyoLOp-D&bUHlK98L=#Vge?9 zpdAQ=p`l45lN5d1=<|xIfN(Nl5~j$Uxn!NYlG`3mgqE%1wXeRsla z-*d=Rn;tByt)L#e_%J=Z&cfkWJv1&0a`4DP>h)%t+83epT5`E0bLRy(ePkb}2G8N9 zm;DT}u`WwwX@Na^%H7?VODYZLQP4&zU1>Qe7f7PQlFh*C$~xT+>P27~sKAvq!stke z+=UVeN;qVi^mr7TQ(=}19PWAnZ@^Dx@;vpk^3+YIh-L~r*KZO%7&%Io+57vJ4YBb9 z6cPc#i%hJ}qdb2hNqe}&vU&@DIGE$=c{rvAMg8)RmyYXlYe-2uN_vi21soD4BVZl< z{l7ux3)%Jxuv`F56zVi+^5mUXIoPFM0wvpSnZfZ>N7R=(o_+sgDV3gMN>0D8-3NLn xC`n8xIsN{ZE8vr;Ej>rS8i$`zAD2bMe*wj7QC|s2qBsBm002ovPDHLkV1h4*!lM8H literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/meta.json index 19d8b15dcc..d7b6a34f54 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/tgstation/tgstation/tree/88d7dbfc105fbf40284d7b7c4587f8d23c0ac3ac", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/tree/88d7dbfc105fbf40284d7b7c4587f8d23c0ac3ac, modified by chromiumboy.", "size": { "x": 32, "y": 32 @@ -10,6 +10,9 @@ { "name": "omnilaser" }, + { + "name": "omnilaser_flash" + }, { "name": "omnilaser_greyscale" }, @@ -49,6 +52,9 @@ }, { "name": "heavylaser" + }, + { + "name": "heavylaser_flash" } ] } \ No newline at end of file diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/omnilaser.png b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/omnilaser.png index 34ddcc86ba5f7aa04c1a6bd99aa28a9d58f07e7c..94f0b18ca927b4d97a11f97e813736d35f9bf340 100644 GIT binary patch delta 177 zcmbQtbe3^~O8pd17srr@!^sH}tWz3#&+m{hvwOVg2!~sjPI`hs>w-NZQF6RfBfZusOK5J2neE-x2m}vbZBKt<)ihD)^ncEO zp~(qAP<6hhJI39Bx5Q7b^uP*cH(7&M4T0=ERtZ-aotJ1i8fnZ*Xzmvv4FO#or{MtlGO delta 247 zcmV9C;|ga;U~9qLlN+k&+x`|EQ$yR_;A9{@(ohkH7FtsuoB)M zUSr!Z1VrroKcD~wC_n)UP{98Hc&_t&=Q%HBdH$Q}Kq7lYclS=>1IZV}dkuug0oD*w xP966Du@|XmBn-N(E{KNRXB$#7zUO+K5(aE6SIu z66yy)AXSaThlaLF8yb?ZA%F-MMNmO$leAWX6A`c}u}!dJJNUBe^*MXap39t>w;$HD zphlIQSUex+9nJgyKmW@-53dxvB`yM9`A617zX-$_!^<9gJ|-SpeAO(3^9dk?5dBL` z3|FISGdL^SAyE_T3?tanjmeFTP+r^;{DBbe3gPMFF_Ax!4No)^E8h?1)J&=RyHNh~ z6EQt>D5j4-{bclH44#b1t7qVLiFf8vd?X0J6>X_E_HI#L_mWgkWpcBueaKmt%Wka+ zjTQY{ri5FTm5#*dj^w=iBYWAW6+xCoult=~NyV({b*D_I$V`}Rw;gi1X-h_*k8;1H zTI{(kS6z&LH;b>DfloXWlef-Gcm0<{!<1A*Zr-G8_3cqrx9X&tkwn+3Ri{tqZrv1r zZcG=I7u*BK)?)a}AFJ&;reV^&U{30FCjFY+n9MFilg3=4r~I=S9n%V(&!x|GW4Q1s z*ezIGpXvCwF@)EvON=RP&~T~TWinSuHKpbi_F40NWA<8eTBcOfk1s0j`O-b{(wXPN z7mwWQS8I2~_uv0eJjcfW2DT{LEeNPd)(;-YgM}=p$W%-k*<{jIxt+${^qz`^OEZ&a z3i*94Uln{yaLk0Zwyvcg6}RpCV0@(cq0;eBQ7@VPP>dhANl23Dfjkhov-*GfBRu+< zH-~pmJT6=#)6p=rAaj{$r@FU1GVRLinx>v?>Ai2oH{^b(uwUOnOAfNTbeBZYeMds_hfC-@Q;u%FR+eNjEdOT=Gc~C-4HffJJ7lg>bHlf0 zz2U|w3uRRP^-F&6k)DHwzN_#WMtXh%hKPyyoP- zp1}|LmOk3CA8ol461gCVsuBb(U56D`ZE#A@yh6voX;XS~nN>kzm|2#YFfN)E%wC_l z{EbaB6H!qRVqD)A)r2dXUbC|)J<&J+j!9cOg|b_U)gUxe+0sbAh{mT<>9cEAjuck! z88~3fSYGKGO$Ktt(-n8nGJ7;4i!EiL1IB6UzjcJm3oGE#fn zjMyw@2wI!EvAPPm;tsj1L!Q;X9t>~#cj`9}U1HU$<0j=g26D;A3+<2h z%_+5RuiN+AL|$v?EtW!w}tFDyjkf5P;i zM`u;6^2IYZWK%z_<}KQePa@* zbhXUM+xz8{#D{)eykjE7S0+dv$b+$r#_jBQxT>$_Cz@tlY2>)zZEB7QzUh?AtVEDn z);>5GmD{JX()AZ6On+XG+*yf!JH&YWVfXGad~rr!#Th+^q&7L_LAe*TTy_5y|JFTn znU?Rxww`SJAfx*;GX6Y`%geqr{X|IaioIm(-e-#+FBskM^xIEL95QZv>wRIrnxpSO z{FeD`-;nrbQr`5!nf`Z5rIkbL&9z&&IKJR(F>#4x$F%amL4IYy#50HWy(0|mjSUHo z==sMG&EkIXe|*G6@dYcR=&0hrr$6Y!OLxa-_UY`pn!8tGaKM@={lBzv42zwZc%Rg6A;uUMI~OiSUzH<%=ofb3|A((%oFM)i-4`WK`__sr P00000NkvXXu0mjf%_O-$ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/base.png new file mode 100644 index 0000000000000000000000000000000000000000..ebe0cac05956b0fbbc8e4cb81e87b6c99769b751 GIT binary patch literal 3121 zcmV-149@e3P)4#k6Q2_X7e=x`hJe5b8>E05b17bRO^`l-ySzrEcIhgWDp#&tx)%2Z@&P2=sCp0% zHv-G>j4&7sXGkPmxVnGw*YDnFwRg9>cPC4U28`oKx}E*a&g{(W%*vuI8PSKmy+HQ= z&#$kR&U36y1|bN7fQZPlENj)^*Y@}6xLl@xfBszfeKVP831MfG!MANY{P(Jaz`?(n zOo)hR^6OXl`sZ4WZYGmJRR}wq4n7f)ZQCmq0ta6JI?#RA&ZdLEN+H;`9S{-S5mB|# zAR?mb9CXj~EC`2dL}~$GP*Vb9S<$CYpUCsP$k*}&ztic&u8pVhnEw6wGdm5iZ98xr zC-tJuS_oghe4$dQM9pTCh=@j`5lyGl+*Um3>gp=;y$1&el&J;){M*~xRFjwsFmoZ~ zP2%Dk4u?vg%Txn6&1N&L2N#RQ+*afL{XG#8{rK@C@_lIp9<}&RPfzLS=xFKv4-XHa zfHL0$0Dgk~TO!wWGZTV>{ms?%Vet)z!&ptIHX7juT~!=^CvLTggN;TbC5B;}XR}%O z4BNJ28H$Q5(~KYYOjSSKWbx@Nf}N<SG zS7<-^Z}{B0mrPKh%cfa(T%F`o2%T z?^BvM#BrSPIh{^tL9l$xJgHPFQK?i4|Ar7k0r1?0ZYnjc5LA3;nHf{1xX!#Ff zHkbATE`-7=nc=pdj|pL@ctTkw)YgFtNz6PvJQzPb?z5r>e6H12GGV^yuYyLS(bB#! z7!1PAct>1~^NlJ%ZbLN$m(g%I409x|>n=p67;~->0XFDWIRSjr&y&O)6$d{Q09%a# z5z*6l9P3S}lK32$7;O4*3n2v2<;-jU(Fw%Tx}iv$wA<|^@QH|ao?l`A30Pqu zv;YGBT@_qJ(TwSgFEfE@R=tTE%C){ysmKE{2tgLKS#aWk3=)enf~m{x zKxWk>1Hsf4Hdz!VS`Q~C^8*=?uCK49|KD!6a}h!Y&q)1Q+qQ#wN?l4Yk-8e7&D_h& zOVDbyq_4^R+~0}fvb3J(S%|WA_5dTWWJ37e!532*GLVs3)`_wUCQMW+6>BgU{Bhum zxvLL*djbDJgrBPk5;Xw=p+AVSEYAI-fXiA4Sp=WfdkwrL12;6TdV$y(@0M~9KwR|# zJ4{)L5JY$Iy~-Z5;6qCTq7E{U&en+l(@a_t9WT`ziKbF_VI+NCm5)pXz{6}&`nn}~ zX~E}po4f$nw(S5(F+`=hg;?UTB|cwmG?p^8pp%mmqe5hD4FC{HwendDAqsr_?fX6* z9v%jrPKPeL-OxOOYWw?2CK4_t|NL>eOw~q%=H)U$6b~jsuyj-s5n#2^Am8^R-;2y( zRyJA$pI2%lRm}N0KR+keb?Iq5rsvmJOWePrgdo;P@#?*A7Z(ft0S5;M;nyb!=d z2$l*EruFe?($E!v3iu*L3E|-2fVfwrvj_0KE^6gR@u4aNWiKeN`uHrs2Y;PThg{bs z$8i=`zG^X+SR{5c9*3F$)2hP<_Jla^s36O5+O{43=z^N2e8Uucaq`3AaKY@rrBsOn zo?l-r>=U*9eR>*?$#q>N@I^jUHs*o|eyi1@e!oxkdOfUd*UUjeXiB$X*@ROBS{Da5qywX*S;#^0gmpZ`Q*P{T+rR_u5sBtgmAaJOW!UojQQaE zr>y0-AOjz!B(G{PUDD+Po(YcyObGTL-cBAo7idih#aJo@v00hHET75UVizi2mikBhi+`F8ww$`+ikkPzYlBMSLKFc(g=PKOz8*#lZO|VHV=j8=#DRo z%4LgTX%DDWDwgMY;m@kvP(Eofv8E~nK6!X>5CZQ^Od`ZWaKlTblJ@wrl!$CG6m--| z=f{)~_{fCdIL-nHd>nD|&1N$cLcibF<^!MMMaVKCa9$9F%fP?vc9%Ma)-D+*ri5i_ zU_`jwH|J)D14cyj_3Kw^wOU%mV{pp{g8}t=y#?(?6}XrbyzF)(6L_xc(#N;ArBwIY zrK82tJ~1846Ki+7yWwibhRaPxv)K&6Cn6&O;B&oRZ{boX?2UZ~1bnJ*3wzStRRWP+eVkZ@e^V(Nd(&Sh24bYVWCUehr_CeJY8-DnSheNGBsOo>+} za9UM!^;+`&VQ(+^t6B|2TZYo?znje<%ex-wx!81({wQZJWqzjnH{8sc`{6e_qEUf8Td%8-ptd% zxb~OV+#p3;uh;49?2HD3L1r0Aq=V=A{;(AZuZ#7cELj+Mo@e1kFqvsu>rI#+i1@xw z)kY&sLtv7~ii&5by_Rk`v4C_>o{*A@CzXe#Q%4`1mk8oEHcICTLwQYmN1S;IhfiW5p6}S#tsh0LOT^ zUr2WoK07;GI^&gfrtm5>9F<0$C9m5iyrcouMuVbyqQnwyUV_5w;yL(4W*0f(Gt=ob z97on1!FfSxI_H^dLf&_hW)=q=9v%iF_(`21AYP$BM5*qP$2v-2=q- zd(`!$X_83sFOHA7+}_@%?pt129DpX|Jew2pd?s(w(ESdywGe=~nsiqmOn|H& zQk77AwJuE>D-i&%XiL+aaM|tB$G11*bTERak8f{u+3jZ1q`~L5)|)WwrAenEpL9}p zdJ_0Nx08kslS?$-MFY^Gg4Ke}OSd_}ahx#l;XSu1njl^mgY<$}n*KY09~p@KNmm7| zs8_^tss~dzW6<5B7kQ$y%GFj z652r)NFd-3>C+E#e|FM^K7NL!9|FD=30K5VulrVXx#f5mnD}X&-kZVyy#^f$`m%JR z#ks(r4?)oY(I`#L45lA!jT}MeW~@8`0cNEOjd}n(SOo|1Ds^c97U&HG8IwcbJOIT4 zr#s5Qt`#OXbY}~+K2ks_hxsZ8oYJ+1sq8$;Pzqq7X411-9)Qpl0c33bxp78*rCuph<0PRKzbT7Bl)o)<%`9paYUUOndM literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_closed.png b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_closed.png new file mode 100644 index 0000000000000000000000000000000000000000..e3fa8b0c1d72c86bf331da2718c42a0d9cef949c GIT binary patch literal 422 zcmV;X0a^ZuP)}0kDO648j3yX)ZyS_krB{0Q}~0JOC=`0Rt)A+(bV>C0-h~bGyha2wSp4=0+Oh{oYE6-_2rZ)l=XW424j^U>P?cy QNB{r;07*qoM6N<$f-K>!kpKVy literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_closing.png b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_closing.png new file mode 100644 index 0000000000000000000000000000000000000000..60c3ee0ebe599e9ae5ff30ede7249ee434433af0 GIT binary patch literal 2618 zcmV-A3dQw_P)d;WS4r(3ey`|W&R&+PnkA3DP{YwZJeeHez$RJ7-Y-*G{QVfZU@??0u< z@bGsd_ukaR=NJXQqX5T9kBN~=goD4E=zmiP|6QX0ml%GBfu|B55`s&@5`VW4{!JqO zyF&P1ApEX2`6(ilBtJ!jlH|uk=vt7^5upb891&`ekBQK=BA+5cP4X!s)FdAgp=(J# zCPEAHF%epj9}?k(Q4_VUb@YdNLCfe5^@5hs@Am@j0m7yNNDo00!%twPyeou%le5w- zF$`%B&>=_#P*VX^05ugr1yGY%2RKV{-HK?u2GFet9fH*KJm4|Do(HUL4`|g3^hgpo zl58P@9?C}!bjQkAj_o3maYehaq zgqq}2M1Y2!(n4VM0aeMzL})=iCPEAHLn7!pK-jw0(I4ssEu%lw3tC3M-wU({2%8EZ zJp@S%KkhJuEudNqLp7$HoMA|NfDS<_fSL-R0;s6~Du9~AI>1?q>sCbLHGpnK=n$l) z=K+uL^*ms0dqAsRphuFxkz@-IR_Rb4vY0?n#)RWft`87ROFW8G02*-`BRZ$?F%tajH=lgOCmG+(gxlQQH1qj9=rfzmp4=P5Cv``+QOk#&Lgf4R zrjU=}yUz^~5W24<{$jCsl7a|bqu{fLgxPF{65w8wNRC}Ke60@<#@BU#u=S<8pjol} zd}(}AeSrTF!pwWYBKi5x8J|53^`}~{VNz3HPCPQY-)b~IdIEyBmmBV=N?n>V^i&v z09d~B1EoITtnxJOB(fQHPI$&KAo4lI55phHABN!qxaTMm0H~ke6S|h}wT}K!FK8M4p)W{>c#c*Nkr05j#5s`AV2U(a@;5jG~_H6-IyQcNYYxHeC`|b z3q`++Z%p2~FU8Nr?>&+_C?VFd6D;!q^Yg(2B6Z`rEYy(Y^N+a%jD8e+EWj3vg-Okr z2(=%KgjcU#6^($qyE}GT2=xb2V+4%vTne9S7=9OfiBQ8h1aKQq!7tVLDd4l~12~CE zwes^N@xOonj{3ZP`<8{DR3Ctu)(2>PfYt}7(M{_Egz>dLKo~!18p@f1Ijhh~=I2Y} zchU=yb;s{8yXBD4Hl{J`&FTm#S8iv$44 zZybsyb0QWaFZEu?&lkhn!?{MDaczv*L$0y>v_y$OUe3LcpS5<+nE&eoE+ramtv$?% z=mPlrIfNF#-_y-FVN(HA02M$@1yBLhRDkug$!tZmUJF=j_dWb;e~zBA2&4L0YxgF# z6#*@hxZ4n^em*(KnaEzsJ`v>C$5yFD2?B>dWoqXigWPq@9)WY8yg!W{FO>eNhP2J{{8*^ z6H+mA@5k_aV8+rJW1f7JQV2-N&ky0J5>N_1W>wr*oNUZ_|XR7w#=jXQy01AFB^YMFR+H?y%V<&R#$o5MW zvXoznkfr>3U=!&U+3UD9#_S;1*nU6&`~Yry6A1vepJV`x^#QjM~8 zsMQ_kF~2D%=N6sma6a_dOvf0roiam${Q86`;%(y8@|HtB(vUY0nHhfD)Vcoh`PxdbJ55+eXy2~!Cuk(}$V z{HX+T?}PkYA^LSEK-%;?fPtTroD1Qv)HJjN0Xf*I$+@I;fSZsCML{kB*pXlizXSm} z_%VZ$b7S~D^(Ar%pd5eA0TX6 zA25}@Aj&i>W&S&Um{zSmKvaNruMZFvVBPBjLCK4E3QGU%uEcz~^-&`HJnABV-9b zaRCAuV-Shswb#fswjU4xzkyq~A_2hm6CZ*w;%b_;783HewRWq;waE-Y403)Yl8W_? z-`+E@Xx)OMoa+aPB`$!q78|c$Lu6+7ZBfVT<@2|=<2>dkJ_NP+&{6)+WbLW0?>CuQ z5Ql(L$+`Z=pEEH{emEZ55#56Rp zGM(J-_dmDDM+I<6$XWPkVpfI#BMJUWd8+?Epa#CU06r0+Z42L?V|{?Q01z3-hqRhW c#weKtjbph+M!xhV04`jfM&dA+k{fJ&1r{0kJ>@SrrW-K$udNL9kJl z>?*VDy(A0^GNnQT62TVP0>K1QZg0>1>)t=U&-cIgJ?Htn&vV`cyNl*hl8TZ507zL{ zQ0))5`{8uJ#1B=#yfp~`@MTM?$(4J*t+;ACplzkIZC4`Z)Ky{zP?B-@MXg2Dx+F>~ zSzfO+%l!sg@>tpl$wyt%F{Xt(s0<-fnE0T#+4;F<8`-VJLKEdHEg zCS&W{+GV`fRDN0E`>}Ort&j8bd25?jeNGV++ND4QlgvTY`=-kvM}4XdsJ*izj=e|5 zJrL}?w6`i{vyY#GJ9PT%1?W^Rn`o%mz}x$!E~?)2;oHL3?T|(BTo!mYP4BAE(dtFn z8P$oneD?wV%O0#T^Ox7^$cc()hM;Rqimdj>8|Zd9tM;eRlbM4zUo`|8x!eJ}@RJk9 zAnS<_MgpO|{vH0l<_znGgA2-$);}0QD}^t_Y9&0YR!lT&<7j4^zA|7sX!o}b>5k1B z|EyLeTjyC-9i*!VQejpk591yD{F&8eIur7 z#fgj2E7-yEZ|qnO``9YIKpHP-zf96yHgaM)drrycS)b5F1y5O}cn0n>9<1CQKulDe zF$dvJD0x6l6mgBh*imou?-{AhL%>@pRg6p^0{>`Xij^(aWM;zxEQnMc;%KzcQTsR_?n~r0;X!3_GrELb$vXUp%N3!PnOXT_QL+$Ov`O(Xv6 zbnKIW0o0XI40a#1%+&238Q_m%>=fL-K(rRDBgkH~KM=rrkkad+I!tQUr>#69Z2j4c zo@JC7QUCZ(o&Q%C+%AG+qf1AMXsb1)(rt}TM?z+`*As(=-`G^R4Zo3`VO88cH>K~_ z4AEhS!LS12WWb%Y!dU0Rar9miZwe0;LRV|oaEwn&*tw%&Y2Or%AK6R#v~)su@jB;{ zuaRRJDeFVSda-v&9Rdj0U-h9a-G1q<&s6KksmJwPPB^+94SkZ{?^6Q9g5wi_vD&&h zi>2ZbB@M=;;_;d_(?jN!ID80aVEbn^@>GcKA{g{cO)x%PJ~-?msRtju?ol(TKvnBK zysBp1e?{NW8!7i^acwrqIT1D+YCVzfsq2)Lb{xw~QUGd3;7B|Vjf`BFibZl7k8TEO zzx@#lEJAThL%_Xxbpc3@Zo%j+N7d{?2(1@1Pd9sLF|=<4po(tW#m^#>q!{{lEbEdl z!tT(hKrME(Mqg#Sa35l35% zV*3X3y8NwQ#5MdH9oy2f?9~9Z+XzCx4xXBoDxg?Y;)*bUk1X-u1T2XrBPH=tYMlCvX7zy z`Z8pwv@D1UR4Hx&9$Ghob#iNsQww1{kwn4uHTX8W%tYHtg0r{?OQCC0m|@@dv=uxye3B%0Q0s&TaL;!oV>h?(5DFpBA-IIh zCYXK}hlLFtVJwV%NrHue6FN4W2Xjt7oYvW%7cgzAoU;l^*vB+U;9+7P0@^jA1UohX=J${$lLCjg}S`sH)3DNJ>1tO4X+(3~?#2DX~`ETk5 zznziK#D8mV_cz^wR|uuGcd|X5m~Ma5*qbf}LdT~!bC)0fXkfiE6~^JaPPv{lHrztL zZpocHJFcs^diohM!Hnl(X#CB#bO3y2ixn9GqS3`$xMG3BHFF}&2=|j@!y5?%DAz3> z7XFLN{c@t%A*`4=0mt)kjlr5dRkY~{Ix7IA1CG6q(~jMw1``2Gtnf*teiKT-wY@sEtQ9dk8U&+U60Ie1&0mf77<=0k=)CEoEX+{dfOg*=%?c=ZRSX3Lan4nNmEW~2KBsqW%$o??_Lw zmn_I9Ggt9LU-n3b4(XOc;*&p${!c7)tYu=BfNB&@)xu^6lD#lU@9;Fpy&}hXtWv4! zM1fATcKrs}2+(Yg`qAK9CA%3On%Cgfn641;ug3eg9;NUrBN`@<8#Cs?Nqiy|iy5l6 zthDS^M7c~Ap3mVv3_F_U@5Tmmk(EX!vc+`nE*Np>?FJ?vAO1by3n) zrrOy(w2XZ^DOBbsB+r4$F*(S(aN8;kgQr~F?9-w+r2qW{Q!YcN5%Q+utR%Xl94qOd z$}7^70n^(+UU@D&cWa>H>v>1r|5+NE7reU cf;th<$~hBa7TbtE{QUuz7cNrEDeh5!0neDnDF6Tf literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/destroyed.png b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/destroyed.png new file mode 100644 index 0000000000000000000000000000000000000000..b08a630e8d91ef21bd240e5d6c1886f55a25b5cf GIT binary patch literal 4347 zcmV)2!+Z9uOt`JEW8Oeh%_4!iYWorG->+qA_aAkx9#?2QA4u` zZR`Z)LMWjGZQ3BP@x}|+@FJ}Qwn~hsD=bjJa$;P=YwugwXL|13xmWi`cI3tfg6&wo zGxMD}XXc#w&fEY_#FK=3dv(?S*LQXTZk`i3&LF&e`BDdfU@#asYVf1|{Ww1`fEQa^ zhOdj&sw*XQA7}8#$H&F@N2LS~{$jNX0H`*b;`f)LQ7l%gx>F@|A9wHpV0?W1NR`0B zmw?vYJ}YqC!RNBDuyCmED49%J0$eN>1L59Y{lEgyHVd$8)QJ>}#kK-6F)@LKg$2vs z9VYmhOvdgbdTnhDFSfQ^J-6FuqfSI`w-TnOr_tBfhmnyH06@81#`gC1q0ji4nHiKy zCGm42kr3a9LLuRv_?qBZ0R;Z?^0Kc%94N5uN;qthC!eNihTkU=36x4D@s+I4tpx;} zDqwSS)766`kq7|b;>C;5G|jgwa_b8Hw5OVUl}ZI;V`GTLVy4fpudiciX$iHpHMD&V zpvK+0B2Ci}kH?S7{~oIAt5hlgfTg7+EG;crer|AR2&)HQ2OYNGZ8zIwvn!X&jyg=f zxl*Z!&L@*e+YVVpmVVk-J=1NZy1BUtAM0RCC3IWOwwak306;pOw$-|wjE#*UpU(pT zve~RF=i-W*tOsP~tsZ>(>JS%xJ*JJoO7K@4J zShd5!uQr=ltX555x%A9EM9ZU&$4m1$O<9~eNizhC(1^8*7W7uaYtFh4(!v9U4b zB>2ytKcVpW4{WVG#n#GGtXA(Ml}edhV58AMqtQSnlkpu?lJuX;tw5LQvweMi=>B90GtWjGRy`pv{zOsfy8R> zoJb^0E|B^#9KDIuwRbUa;i~v2yCC{o)nvLbIH)^W_*Jr6y^qa5ub}e37pR9{;+J1P z!gn8>!kz0=%C$gV54aM#2>^L_kjv#PJ1}tJs&NrL8?^ka41RrQClK!K)j8-CJ<5QT zN+rvF{Pp_+wyG}-|2G`Hsr>BJ)Rf^l;oe@|ZN#b?KTW_7-~SoFRZq|As_*OsR%$iV z;zYZk_4Rer4CEG2c>D)etM`?Q;QIQyX&vF9a|^f>jkdHL4*o0st^kAnsrn!*kuUmQ zMYZ18?VjWv6i*sC(+~=U5DJA%ThKzGfZ^y(G3eB_ck%Cct{B_{$GmLSk%;+p`z=(`npoOVjt-rhFk zspO2UG7zh+t=aA-&z}!RZ-uTS&Ipkt!(I*#h0EAv`Hcf5G@=Cvp$s4-> zQuy+V9}U2(fRU}hB9HG%3WWl~2x2&T6JZ4L<4%|OR!QtxB6f(*g6uHkJ+5e zN-I%4i@sU`anNC%(z{-xaQa(%j^BhJ-^nM!73mrr{v~u+S&daO-FM;lgXqWkH?iKQk6;thjs8m z=L<(6G~sv_v{I=cpU<~E5o_y_0o)QuA$W^KCg-Y>nMb04w^{h?_v4BJ zozRK5S$xF-+zi3acu(Yr6tGgO1**-a&hq$2q6B$6_@-!&?dXT^NVvYU6IiTP^-IyH z=Oey01Vkpjk-S53J26`Qz0-cQO#!t3C2ozZeYcc6Kj6!3Xifl5CX+fP#V9XxaQ@)f zI^|`B$`eCFbRNw=^^71kcs4O}G zguOk3MMnGk9lOYb&x*f4KQI6qGv$3`?(6pUHp=C)YbCf+08cc{%*-I0%?ic=apx0> z1VW*Z!9v=>jOO4IQ~TAcR{-|;KQecpa`<%I>1Lf;snr52wHm^`z53?s*BBig72wkt z8;yqe{FyUn#P@EM;MxMX%*@P)PEAc2k0m7w@oW)R;L}m1>ac|RqG=lH#iCfJqW%4@ zis4OpyJF*r2T@^FHir`J;{JMf9>F)}hD zd@@Z64isv&nFih?o*q*A9QFGiA2PCNvm-OoC4ux_L363D8LE$Bz8&& zg+ii$j#Dt5DxlG5Ae+q!m#YGw_rt9c9M1wTlF#Q6i9}p0z$y4o=6VE6LRP}m)RZV2 z;=3Xzxq3<|6B&V&z`-Xa%WMd@N^rae*zw~zYnpeY-9BH{hi4CNM|@tV-3%5ZW{y9#UqoPU29TTMIgRqfJ1 ziONDJRJ5gZy71CE5$*36Q-_3%rqR_~)8erZWeIt=i?{r+RYN9{U0ZUBJIHe8BEJ>B1MuxrBkfdN66$k+|56)DBGujuAVyO z`Q(a}uzKp05`4~(CYH3FCCFnlC_r_@sN%KTc37blKSDv4l?4L(%xJPg0)WbdNC{q9 zeK<(1$lwF}H2AHRrv_GbJ~IQV|@P?TM@3cUXH-#r1oyakuz1vx5L z?t+NzFflPqF zq_(yul)$sD*=!bLV`B!NY&Y{}XJ-SSfBv~XIXS7{yLZoZKj!D>P1oY^!x(Z$G$Cc5 z&%w{-a)P?p(aAW5SmQ{KIL}!Z0CcYot-t* zI$QBrod{Qgd=e+OKfJdmu%SE@fnQr&LyeuZwdFwO>#x5yU0MV{oQPe#c+t>Vx4V(Z z>C@sgi-S*tAXmjFN%7z+g2~BA-7omE5~io80YI*S(5WxO(da%inkDe~xUFc6o)2XB zk(^w#z+Hu#tsr+n^2HkbcXsIoqR;yw4_lFs?dbP*{j)oZaHRm^zPCD*_fwNa?Z|vf zs@`ms)wJ8~xKV(YXQ+UdZ-bHh?#Tk`J39d|J_S^N}+iwCPNxS;!g zJ{cL&+dKI~|D;kW>Q}h8S6{4FmHGINUWEBAw!l77 ziFlKg5v8oCe1@9KqobpOC)&{pkok~uWe6QO z%N!X3p;D)6xm?aLj*hkfephEW99Fs=4nFbZRrfZxgP+NFJ1Vm9qtatR(B&jq zazR9t%IEV4g+f9xo%BkrfC_vvd3o^k>JEBW08zz>BX7miY)6eS39UQdeQ?SEKCsVL zCiZkHl`>2MKNXut8i;Y>gWo6K?q3;?jWjm@ydnw|X!fa!_1Y;ta}SX}HwXaOTDfm{ zkAcb(Wp{L}vZ1{E9@xJ$d-BFE`p@M>X%Lm?3|zP>s#N5~P{oIIDn!1bt?llO&kS$S z2-ky#VhyWxNghi_D}V<(`F!3)$|V4Jc@9~C4F2%mp666H<#vYm_Drl~ZefvkeiD7K ztJ#&u*3pZw(=yRiDuqX-#|YPhCh%znyRA-_lY%_GAg>4fWe$D|raQs{=J^1GMNlwv6vx&M>V%js?@o~ z5cu=+^N7V_rXmT|YqO3M_?D5dTX&?Y4554sU6$e2?GXKulYkH7vW$-11v#|@Rp?Lk zU3M>nQ;F*RE^?&|tp&0>I*#DmT7VNvpxH>p8uaovK2zON(^UsTa&j<{NQjq=@(YuW z8~7~)F_uO!M5LRWo5<($q5_--&q2~O4bPuHN96Qr$G20dZnfft81k)L)DG?Qj~n=o z6kw$U8Zb$t(GatrVt~l$(*XYF_P4rYnJQvv*F@h_EWp>7<>h5l8PstD-*ydXwI;|Z zi%=+JsEHyFi(j literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/lethal.png b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/lethal.png new file mode 100644 index 0000000000000000000000000000000000000000..3a43309e62582fcf4c85e56537166f3d0a4d0702 GIT binary patch literal 612 zcmV-q0-ODbP)h&iNEgu4-@W+fFvJ`3cCpZG6C`D?Fu+<1ONa40Jg;~ z+8APSAv21y*Xyww-(rk3-OyJ-EF!_m;B@T+3!yBdD`o#iQ!wk)mhwQxLMWPzY~{d$ z`bYc~6Q&q&cn3Pz8i4ptQV>isK%_`{AjZ@P@Mc1$jlf~wZ0o_Zi;g=QYhLD3Jyv`c zjkTWFu^4ktSGS9>rU@g@*BtZcP3?LYq+!DF7JI!o=E;oWej9ovC0?#?E_MaZT>D}X z*6Ka;f!9+jF4z8zNzY?b7Gmm^yU%C%zNEo=pk8?N~Jv2E>na2Y)>?nQ4*mP&g5bya;Q3JmmR0 zy^FAx_@2{Oy<-9+&(|E&b0kRQcTc8B2$?@WaV`J=0002q_ul*x-~UuA@hPUxVR|AK y;p<{j8DJ??Rud$WK$#;UOrEB(1^@s6DtrO7>`i{3oe-A*0000c*_ws$)-XvyE6g#l?H3P#^QBOXGD v-%>sQ&-AbZ^RK?=(wQ4Ky{9kWNxtu;qv}kje!6G@9me44>gTe~DWM4fI-pGl literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/stun.png b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/stun.png new file mode 100644 index 0000000000000000000000000000000000000000..72ebd8d2bd6b4678399eccb68de6b86bb7367289 GIT binary patch literal 616 zcmV-u0+;=XP)XWl{-4n^Lx!UJx78>zIrl6Ldfy+iG2Y80002+zV_xn@%>M+5}#!1 z9Hu*B5ndOQ$^c8DvYH@~1j-x(LSe)yoY40000#ArXh)PT$DOtjOc~wxi8+ zMPxf;Wcw^n4bN0g*MtwMj9i!HK2@iCpOAN~*z)ZZ31c6SGycr(-56; zZl>-J#fWsJw&viCVo_d+thaXe`p9}JurE(Ce(@qAn~~vwCA;CVJoO39_N?Ds+=PDQ z|L|cdKVaD@E@QXj^?UbNi+hcqm2ceqcTb{(MQZ`mFOkFVdQ&MBb@ E0AiZkclg?aRr^#+U_kbA4Y)@A|mvv4FO#s#hMDG9q literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/lethal.png b/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/lethal.png new file mode 100644 index 0000000000000000000000000000000000000000..f204a4d392a93d63bda88fef866b00938b4cf8ab GIT binary patch literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^3P9|@!3HF&`%2dVsZ387$B>MBZ*M5_9X8-$y)eHi zCO7>}VAWOu{+=}n3&NIWUanT*+PL<}5kCfof39aE-Gkz_A9$>KwkPJm3$^O~_Ol8n zrChdI+jcuX{=>^JOh6;;P3PS=*EJOvSv>oVNQ&-n#>*SU8E(y+lxJ6;I9F#QPz8gh LtDnm{r-UW|TNFH` literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/meta.json new file mode 100644 index 0000000000..7684d02279 --- /dev/null +++ b/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/meta.json @@ -0,0 +1,44 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/blob/b4363f59f5feacbc48c29aea4eb7794ad358cd92/icons/obj/device.dmi. Modified by chromiumboy.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "safe", + "delays": [ + [ + 0.2, + 2.0 + ] + ] + }, + { + "name": "stun", + "delays": [ + [ + 0.2, + 1.0 + ] + ] + }, + { + "name": "lethal", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "wires" + } + ] +} diff --git a/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/safe.png b/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/safe.png new file mode 100644 index 0000000000000000000000000000000000000000..f47615f626bd5f44187fe5b0064e3c300b2ec168 GIT binary patch literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^3P9|@!3HF&`%2dVsbo(V$B>MBZ*T16Z7|?raA==u zBVueQVmz~rO@&KGg=JUvCDpo1Hv}0N>Nkdjgh zW#u2dx{?WK+I*?=@|R-+dfp|se?1WKmfh#L7Q>d@z+2AA*W=n7feIKrUHx3vIVCg! E0P9XP<^TWy literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/stun.png b/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/stun.png new file mode 100644 index 0000000000000000000000000000000000000000..1ca04be32f1768b978aada21b95ebab1b177f838 GIT binary patch literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^3P9|@!3HF&`%2e=C{Gv1kc@k8Z|vo5P!MQ)czKp> z0nhSXiZ>4AN;EJQ@c-Vt;L;H$CzXreGgtJ@Z*KEvVPJTmt<(8bBP`nd`>g|Y9Tnm6 z=38~j>|bu$cJ}gCX8Y=b=$%c=C-MOeXE-2W*%c`@gTEr&s44stW9Z&FCM^zj2j0)% bW5_6DdZuJ=d+?XYVUS8sS3j3^P6Im=4;rWfpZC&J&fKwWnQN9BaW|J%>2H_QZszY~(UlvYX#oIKp4JAJFEJWnt? z!-?g!b*mXCNllM4WED-|KY5$i#FXEr Date: Mon, 10 Feb 2025 22:35:05 -0800 Subject: [PATCH 204/313] Put screwdrivers in the vendomat (#35059) Increased vendomat Wirecutter stock from 1 to 2. Increased vendomat Screwdriver stock from 0 to 2. --- .../Catalog/VendingMachines/Inventories/vendomat.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/vendomat.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/vendomat.yml index d3b804f901..78b69899b9 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/vendomat.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/vendomat.yml @@ -3,7 +3,8 @@ startingInventory: RemoteSignaller: 1 Igniter: 2 - Wirecutter: 1 + Wirecutter: 2 + Screwdriver: 2 CableApcStack: 2 FlashlightLantern: 2 PowerCellSmallPrinted: 3 From e023c78c34fbd5ca8c068bc242f6cb0b52c1ee56 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 11 Feb 2025 06:36:13 +0000 Subject: [PATCH 205/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 21bfb4e40e..fb4932615e 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: PJB3005 - changes: - - message: Fixed some people's preferences taking ages to load, hopefully. - type: Fix - id: 7433 - time: '2024-09-24T20:43:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32434 - author: Moomoobeef changes: - message: Most papers are no longer considered trash. @@ -3897,3 +3890,10 @@ id: 7932 time: '2025-02-11T03:29:37.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34587 +- author: Nox38 + changes: + - message: Vendomats now contain 2 Screwdrivers, and an addition Wirecutter. + type: Tweak + id: 7933 + time: '2025-02-11T06:35:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35059 From 8d51a1fc15ba988469ed9ce072f97bd7262bb6a5 Mon Sep 17 00:00:00 2001 From: Theodore Lukin <66275205+pheenty@users.noreply.github.com> Date: Tue, 11 Feb 2025 16:36:45 +0700 Subject: [PATCH 206/313] buff python (#33306) --- Resources/Prototypes/Catalog/uplink_catalog.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index 3f3221d14b..7e3b939781 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -19,11 +19,11 @@ name: uplink-revolver-python-name description: uplink-revolver-python-desc productEntity: WeaponRevolverPythonAP - discountCategory: usualDiscounts + discountCategory: rareDiscounts discountDownTo: - Telecrystal: 4 + Telecrystal: 2 cost: - Telecrystal: 8 # Originally was 13 TC but was not used due to high cost + Telecrystal: 4 # Originally was 13 and then 8 TC but was not used due to high cost categories: - UplinkWeaponry @@ -1963,11 +1963,11 @@ name: uplink-revolver-cap-gun-fake-name description: uplink-revolver-cap-gun-fake-desc productEntity: RevolverCapGunFake - discountCategory: usualDiscounts + discountCategory: rareDiscounts discountDownTo: - Telecrystal: 5 + Telecrystal: 3 cost: - Telecrystal: 9 + Telecrystal: 5 categories: - UplinkJob conditions: From dbcd86a9830f649050107935e2c0003a7a512e66 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 11 Feb 2025 09:37:52 +0000 Subject: [PATCH 207/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index fb4932615e..51ec52f55a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Moomoobeef - changes: - - message: Most papers are no longer considered trash. - type: Tweak - id: 7434 - time: '2024-09-24T21:58:46.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32343 - author: goet changes: - message: Vending machines can be hacked again. @@ -3897,3 +3890,10 @@ id: 7933 time: '2025-02-11T06:35:05.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35059 +- author: pheenty + changes: + - message: Python now costs only 4 TC! + type: Tweak + id: 7934 + time: '2025-02-11T09:36:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33306 From 41223107356553ccbc7ba4f8b95e4f9049873d09 Mon Sep 17 00:00:00 2001 From: SpaceManiac Date: Tue, 11 Feb 2025 01:59:50 -0800 Subject: [PATCH 208/313] Fix 38 non-obsolete warnings (#33794) --- Content.Client/DoAfter/DoAfterSystem.cs | 2 ++ .../GameTicking/Managers/ClientGameTicker.cs | 2 ++ .../UI/InstrumentBoundUserInterface.cs | 2 -- Content.Client/Lobby/LobbyUIController.cs | 1 - .../UI/StationMapBeaconControl.xaml.cs | 2 -- .../Visualizers/CableVisualizerSystem.cs | 10 +++++--- Content.Client/Shuttles/UI/DockObject.xaml.cs | 10 -------- .../Shuttles/UI/DockingScreen.xaml.cs | 10 -------- Content.Client/Sprite/ContentSpriteSystem.cs | 25 +++++++++++++------ .../Controls/FancyTree/FancyTree.xaml.cs | 2 -- Content.Client/Voting/VotingSystem.cs | 4 --- .../Anomaly/Effects/InnerBodyAnomalySystem.cs | 3 --- .../Consoles/AtmosAlertsComputerSystem.cs | 6 +---- .../Botany/Systems/BotanySystem.Seed.cs | 3 --- .../EntitySystems/HypospraySystem.cs | 4 --- .../SolutionInjectWhileEmbeddedSystem.cs | 15 +---------- .../Discord/WebhookMessages/VoteWebhooks.cs | 3 --- .../EntitySystems/ExplosionSystem.cs | 4 --- .../Forensics/Systems/ForensicPadSystem.cs | 1 - Content.Server/Ghost/GhostSystem.cs | 5 ++-- .../NameIdentifier/NameIdentifierSystem.cs | 1 - .../Salvage/SalvageSystem.Magnet.cs | 19 +++++++++++--- .../Station/Systems/StationSpawningSystem.cs | 4 --- .../Managers/VoteManager.DefaultVotes.cs | 5 +--- Content.Server/Voting/Managers/VoteManager.cs | 4 +-- .../Doors/Systems/SharedDoorSystem.cs | 1 - .../GameTicking/SharedGameTicker.cs | 5 +++- .../Interaction/SharedInteractionSystem.cs | 4 --- .../SharedEntityStorageSystem.cs | 2 -- 29 files changed, 55 insertions(+), 104 deletions(-) diff --git a/Content.Client/DoAfter/DoAfterSystem.cs b/Content.Client/DoAfter/DoAfterSystem.cs index b00904a1fe..5802059537 100644 --- a/Content.Client/DoAfter/DoAfterSystem.cs +++ b/Content.Client/DoAfter/DoAfterSystem.cs @@ -30,7 +30,9 @@ public sealed class DoAfterSystem : SharedDoAfterSystem _overlay.RemoveOverlay(); } +#pragma warning disable RA0028 // No base call in overriden function public override void Update(float frameTime) +#pragma warning restore RA0028 // No base call in overriden function { // Currently this only predicts do afters initiated by the player. diff --git a/Content.Client/GameTicking/Managers/ClientGameTicker.cs b/Content.Client/GameTicking/Managers/ClientGameTicker.cs index fcf5ae91a4..3d5775a3c5 100644 --- a/Content.Client/GameTicking/Managers/ClientGameTicker.cs +++ b/Content.Client/GameTicking/Managers/ClientGameTicker.cs @@ -43,6 +43,8 @@ namespace Content.Client.GameTicking.Managers public override void Initialize() { + base.Initialize(); + SubscribeNetworkEvent(JoinLobby); SubscribeNetworkEvent(JoinGame); SubscribeNetworkEvent(ConnectionStatus); diff --git a/Content.Client/Instruments/UI/InstrumentBoundUserInterface.cs b/Content.Client/Instruments/UI/InstrumentBoundUserInterface.cs index 4816ce8c36..13397e2d9f 100644 --- a/Content.Client/Instruments/UI/InstrumentBoundUserInterface.cs +++ b/Content.Client/Instruments/UI/InstrumentBoundUserInterface.cs @@ -2,7 +2,6 @@ using Content.Shared.ActionBlocker; using Content.Shared.Instruments.UI; using Content.Shared.Interaction; using Robust.Client.Audio.Midi; -using Robust.Client.GameObjects; using Robust.Client.Player; using Robust.Client.UserInterface; @@ -13,7 +12,6 @@ namespace Content.Client.Instruments.UI public IEntityManager Entities => EntMan; [Dependency] public readonly IMidiManager MidiManager = default!; [Dependency] public readonly IFileDialogManager FileDialogManager = default!; - [Dependency] public readonly IPlayerManager PlayerManager = default!; [Dependency] public readonly ILocalizationManager Loc = default!; public readonly InstrumentSystem Instruments; diff --git a/Content.Client/Lobby/LobbyUIController.cs b/Content.Client/Lobby/LobbyUIController.cs index 56dc9d6d41..cea8248e9f 100644 --- a/Content.Client/Lobby/LobbyUIController.cs +++ b/Content.Client/Lobby/LobbyUIController.cs @@ -43,7 +43,6 @@ public sealed class LobbyUIController : UIController, IOnStateEntered { - [Dependency] private readonly IEntityManager _entMan = default!; - public readonly EntityCoordinates BeaconPosition; public Action? OnPressed; public string? Label => BeaconNameLabel.Text; diff --git a/Content.Client/Power/Visualizers/CableVisualizerSystem.cs b/Content.Client/Power/Visualizers/CableVisualizerSystem.cs index aa518d4019..60fb0d127a 100644 --- a/Content.Client/Power/Visualizers/CableVisualizerSystem.cs +++ b/Content.Client/Power/Visualizers/CableVisualizerSystem.cs @@ -4,14 +4,18 @@ using Robust.Client.GameObjects; namespace Content.Client.Power.Visualizers; -public sealed class CableVisualizerSystem : VisualizerSystem +public sealed class CableVisualizerSystem : EntitySystem { + [Dependency] private readonly AppearanceSystem _appearanceSystem = default!; + public override void Initialize() { + base.Initialize(); + SubscribeLocalEvent(OnAppearanceChange, after: new[] { typeof(SubFloorHideSystem) }); } - protected override void OnAppearanceChange(EntityUid uid, CableVisualizerComponent component, ref AppearanceChangeEvent args) + private void OnAppearanceChange(EntityUid uid, CableVisualizerComponent component, ref AppearanceChangeEvent args) { if (args.Sprite == null) return; @@ -23,7 +27,7 @@ public sealed class CableVisualizerSystem : VisualizerSystem(uid, WireVisVisuals.ConnectedMask, out var mask, args.Component)) + if (!_appearanceSystem.TryGetData(uid, WireVisVisuals.ConnectedMask, out var mask, args.Component)) mask = WireVisDirFlags.None; args.Sprite.LayerSetState(0, $"{component.StatePrefix}{(int) mask}"); diff --git a/Content.Client/Shuttles/UI/DockObject.xaml.cs b/Content.Client/Shuttles/UI/DockObject.xaml.cs index d7d565a23e..3aae64ced2 100644 --- a/Content.Client/Shuttles/UI/DockObject.xaml.cs +++ b/Content.Client/Shuttles/UI/DockObject.xaml.cs @@ -1,24 +1,14 @@ -using System.Text; using Content.Shared.Shuttles.BUIStates; -using Content.Shared.Shuttles.Systems; -using JetBrains.Annotations; using Robust.Client.AutoGenerated; using Robust.Client.Graphics; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; -using Robust.Shared.Map; namespace Content.Client.Shuttles.UI; [GenerateTypedNameReferences] public sealed partial class DockObject : PanelContainer { - [PublicAPI] - public event Action? UndockPressed; - - [PublicAPI] - public event Action? ViewPressed; - public BoxContainer ContentsContainer => Contents; public DockObject() diff --git a/Content.Client/Shuttles/UI/DockingScreen.xaml.cs b/Content.Client/Shuttles/UI/DockingScreen.xaml.cs index c0aa794214..97943c6973 100644 --- a/Content.Client/Shuttles/UI/DockingScreen.xaml.cs +++ b/Content.Client/Shuttles/UI/DockingScreen.xaml.cs @@ -163,16 +163,6 @@ public sealed partial class DockingScreen : BoxContainer } dockContainer.AddDock(dock, DockingControl); - - dockContainer.ViewPressed += () => - { - OnDockPress(dock); - }; - - dockContainer.UndockPressed += () => - { - UndockRequest?.Invoke(dock.Entity); - }; } } diff --git a/Content.Client/Sprite/ContentSpriteSystem.cs b/Content.Client/Sprite/ContentSpriteSystem.cs index da0547666b..831978f904 100644 --- a/Content.Client/Sprite/ContentSpriteSystem.cs +++ b/Content.Client/Sprite/ContentSpriteSystem.cs @@ -3,12 +3,12 @@ using System.Numerics; using System.Threading; using System.Threading.Tasks; using Content.Client.Administration.Managers; -using Content.Shared.Database; using Content.Shared.Verbs; using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.UserInterface; using Robust.Shared.ContentPack; +using Robust.Shared.Exceptions; using Robust.Shared.Timing; using Robust.Shared.Utility; using SixLabors.ImageSharp; @@ -24,6 +24,7 @@ public sealed class ContentSpriteSystem : EntitySystem [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IResourceManager _resManager = default!; [Dependency] private readonly IUserInterfaceManager _ui = default!; + [Dependency] private readonly IRuntimeLog _runtimeLog = default!; private ContentSpriteControl _control = new(); @@ -42,12 +43,12 @@ public sealed class ContentSpriteSystem : EntitySystem { base.Shutdown(); - foreach (var queued in _control._queuedTextures) + foreach (var queued in _control.QueuedTextures) { queued.Tcs.SetCanceled(); } - _control._queuedTextures.Clear(); + _control.QueuedTextures.Clear(); _ui.RootControl.RemoveChild(_control); } @@ -103,7 +104,7 @@ public sealed class ContentSpriteSystem : EntitySystem var texture = _clyde.CreateRenderTarget(new Vector2i(size.X, size.Y), new RenderTargetFormatParameters(RenderTargetColorFormat.Rgba8Srgb), name: "export"); var tcs = new TaskCompletionSource(cancelToken); - _control._queuedTextures.Enqueue((texture, direction, entity, includeId, tcs)); + _control.QueuedTextures.Enqueue((texture, direction, entity, includeId, tcs)); await tcs.Task; } @@ -113,13 +114,21 @@ public sealed class ContentSpriteSystem : EntitySystem if (!_adminManager.IsAdmin()) return; + var target = ev.Target; Verb verb = new() { Text = Loc.GetString("export-entity-verb-get-data-text"), Category = VerbCategory.Debug, - Act = () => + Act = async () => { - Export(ev.Target); + try + { + await Export(target); + } + catch (Exception e) + { + _runtimeLog.LogException(e, $"{nameof(ContentSpriteSystem)}.{nameof(Export)}"); + } }, }; @@ -141,7 +150,7 @@ public sealed class ContentSpriteSystem : EntitySystem Direction Direction, EntityUid Entity, bool IncludeId, - TaskCompletionSource Tcs)> _queuedTextures = new(); + TaskCompletionSource Tcs)> QueuedTextures = new(); private ISawmill _sawmill; @@ -155,7 +164,7 @@ public sealed class ContentSpriteSystem : EntitySystem { base.Draw(handle); - while (_queuedTextures.TryDequeue(out var queued)) + while (QueuedTextures.TryDequeue(out var queued)) { if (queued.Tcs.Task.IsCanceled) continue; diff --git a/Content.Client/UserInterface/Controls/FancyTree/FancyTree.xaml.cs b/Content.Client/UserInterface/Controls/FancyTree/FancyTree.xaml.cs index 6cf7622ea4..e231004868 100644 --- a/Content.Client/UserInterface/Controls/FancyTree/FancyTree.xaml.cs +++ b/Content.Client/UserInterface/Controls/FancyTree/FancyTree.xaml.cs @@ -7,7 +7,6 @@ using Robust.Client.ResourceManagement; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; -using Robust.Shared.Graphics; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -96,7 +95,6 @@ public sealed partial class FancyTree : Control private void LoadIcons() { IconColor = TryGetStyleProperty(StylePropertyIconColor, out Color color) ? color : Color.White; - string? path; if (!TryGetStyleProperty(StylePropertyIconExpanded, out IconExpanded)) IconExpanded = _resCache.GetTexture(DefaultIconExpanded); diff --git a/Content.Client/Voting/VotingSystem.cs b/Content.Client/Voting/VotingSystem.cs index dd74e1ccb1..9fea4d153f 100644 --- a/Content.Client/Voting/VotingSystem.cs +++ b/Content.Client/Voting/VotingSystem.cs @@ -1,15 +1,11 @@ -using Content.Client.Ghost; using Content.Shared.Voting; namespace Content.Client.Voting; public sealed class VotingSystem : EntitySystem { - public event Action? VotePlayerListResponse; //Provides a list of players elligble for vote actions - [Dependency] private readonly GhostSystem _ghostSystem = default!; - public override void Initialize() { base.Initialize(); diff --git a/Content.Server/Anomaly/Effects/InnerBodyAnomalySystem.cs b/Content.Server/Anomaly/Effects/InnerBodyAnomalySystem.cs index b75be37638..5380a1aa0a 100644 --- a/Content.Server/Anomaly/Effects/InnerBodyAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/InnerBodyAnomalySystem.cs @@ -4,7 +4,6 @@ using Content.Server.Chat.Managers; using Content.Server.Jittering; using Content.Server.Mind; using Content.Server.Stunnable; -using Content.Shared.Actions; using Content.Shared.Anomaly; using Content.Shared.Anomaly.Components; using Content.Shared.Anomaly.Effects; @@ -24,8 +23,6 @@ public sealed class InnerBodyAnomalySystem : SharedInnerBodyAnomalySystem { [Dependency] private readonly IAdminLogManager _adminLog = default!; [Dependency] private readonly AnomalySystem _anomaly = default!; - [Dependency] private readonly ActionContainerSystem _actionContainer = default!; - [Dependency] private readonly SharedActionsSystem _actions = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly BodySystem _body = default!; [Dependency] private readonly IChatManager _chat = default!; diff --git a/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs b/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs index 2d35ae5973..6e3a11b5f9 100644 --- a/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs +++ b/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs @@ -10,10 +10,8 @@ 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.Timing; using System.Diagnostics.CodeAnalysis; using System.Linq; @@ -25,11 +23,9 @@ 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; @@ -54,7 +50,7 @@ public sealed class AtmosAlertsComputerSystem : SharedAtmosAlertsComputerSystem SubscribeLocalEvent(OnDeviceAnchorChanged); } - #region Event handling + #region Event handling private void OnConsoleInit(EntityUid uid, AtmosAlertsComputerComponent component, ComponentInit args) { diff --git a/Content.Server/Botany/Systems/BotanySystem.Seed.cs b/Content.Server/Botany/Systems/BotanySystem.Seed.cs index 76421daf2e..81645be34f 100644 --- a/Content.Server/Botany/Systems/BotanySystem.Seed.cs +++ b/Content.Server/Botany/Systems/BotanySystem.Seed.cs @@ -10,7 +10,6 @@ using Content.Shared.Random; using Content.Shared.Random.Helpers; using Robust.Server.GameObjects; using Robust.Shared.Map; -using Robust.Shared.Physics.Systems; using Robust.Shared.Prototypes; using Robust.Shared.Random; using System.Diagnostics.CodeAnalysis; @@ -25,10 +24,8 @@ public sealed partial class BotanySystem : EntitySystem [Dependency] private readonly AppearanceSystem _appearance = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly SharedHandsSystem _hands = default!; - [Dependency] private readonly SharedPointLightSystem _light = default!; [Dependency] private readonly SharedSolutionContainerSystem _solutionContainerSystem = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; - [Dependency] private readonly FixtureSystem _fixtureSystem = default!; [Dependency] private readonly RandomHelperSystem _randomHelper = default!; public override void Initialize() diff --git a/Content.Server/Chemistry/EntitySystems/HypospraySystem.cs b/Content.Server/Chemistry/EntitySystems/HypospraySystem.cs index 8345aa3c3d..d537c2ffdd 100644 --- a/Content.Server/Chemistry/EntitySystems/HypospraySystem.cs +++ b/Content.Server/Chemistry/EntitySystems/HypospraySystem.cs @@ -12,10 +12,7 @@ using Content.Shared.Interaction.Events; using Content.Shared.Mobs.Components; using Content.Shared.Timing; using Content.Shared.Weapons.Melee.Events; -using Content.Server.Interaction; using Content.Server.Body.Components; -using Robust.Shared.GameStates; -using System.Diagnostics.CodeAnalysis; using System.Linq; using Robust.Server.Audio; @@ -24,7 +21,6 @@ namespace Content.Server.Chemistry.EntitySystems; public sealed class HypospraySystem : SharedHypospraySystem { [Dependency] private readonly AudioSystem _audio = default!; - [Dependency] private readonly InteractionSystem _interaction = default!; public override void Initialize() { diff --git a/Content.Server/Chemistry/EntitySystems/SolutionInjectWhileEmbeddedSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionInjectWhileEmbeddedSystem.cs index 2baeba9da1..eb805a9099 100644 --- a/Content.Server/Chemistry/EntitySystems/SolutionInjectWhileEmbeddedSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/SolutionInjectWhileEmbeddedSystem.cs @@ -1,14 +1,6 @@ -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; @@ -19,16 +11,11 @@ namespace Content.Server.Chemistry.EntitySystems; 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); } diff --git a/Content.Server/Discord/WebhookMessages/VoteWebhooks.cs b/Content.Server/Discord/WebhookMessages/VoteWebhooks.cs index 74953d10fa..9e147fced2 100644 --- a/Content.Server/Discord/WebhookMessages/VoteWebhooks.cs +++ b/Content.Server/Discord/WebhookMessages/VoteWebhooks.cs @@ -1,9 +1,7 @@ using Content.Server.GameTicking; using Content.Server.Voting; using Robust.Server; -using Robust.Shared.Configuration; using Robust.Shared.Utility; -using System.Diagnostics; using System.Text.Json; using System.Text.Json.Nodes; @@ -11,7 +9,6 @@ namespace Content.Server.Discord.WebhookMessages; public sealed class VoteWebhooks : IPostInjectInit { - [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly IEntitySystemManager _entSys = default!; [Dependency] private readonly DiscordWebhook _discord = default!; [Dependency] private readonly IBaseServer _baseServer = default!; diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs index 0962674504..beffbd6d68 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs @@ -3,10 +3,8 @@ using System.Numerics; using Content.Server.Administration.Logs; using Content.Server.Atmos.Components; using Content.Server.Chat.Managers; -using Content.Server.Explosion.Components; using Content.Server.NodeContainer.EntitySystems; using Content.Server.NPC.Pathfinding; -using Content.Shared.Armor; using Content.Shared.Camera; using Content.Shared.CCVar; using Content.Shared.Damage; @@ -18,8 +16,6 @@ using Content.Shared.GameTicking; using Content.Shared.Inventory; using Content.Shared.Projectiles; using Content.Shared.Throwing; -using Content.Shared.Explosion.Components; -using Content.Shared.Explosion.EntitySystems; using Robust.Server.GameStates; using Robust.Server.Player; using Robust.Shared.Audio.Systems; diff --git a/Content.Server/Forensics/Systems/ForensicPadSystem.cs b/Content.Server/Forensics/Systems/ForensicPadSystem.cs index a3f5627cdb..71bbcfb44a 100644 --- a/Content.Server/Forensics/Systems/ForensicPadSystem.cs +++ b/Content.Server/Forensics/Systems/ForensicPadSystem.cs @@ -17,7 +17,6 @@ namespace Content.Server.Forensics [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] private readonly InventorySystem _inventory = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly LabelSystem _label = default!; public override void Initialize() diff --git a/Content.Server/Ghost/GhostSystem.cs b/Content.Server/Ghost/GhostSystem.cs index 25319557ae..4220f1231e 100644 --- a/Content.Server/Ghost/GhostSystem.cs +++ b/Content.Server/Ghost/GhostSystem.cs @@ -57,7 +57,6 @@ namespace Content.Server.Ghost [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly MobThresholdSystem _mobThresholdSystem = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly IConfigurationManager _configurationManager = default!; [Dependency] private readonly IChatManager _chatManager = default!; [Dependency] private readonly SharedMindSystem _mind = default!; @@ -503,7 +502,7 @@ namespace Content.Server.Ghost var playerEntity = mind.CurrentEntity; if (playerEntity != null && viaCommand) - _adminLogger.Add(LogType.Mind, $"{EntityManager.ToPrettyString(playerEntity.Value):player} is attempting to ghost via command"); + _adminLog.Add(LogType.Mind, $"{EntityManager.ToPrettyString(playerEntity.Value):player} is attempting to ghost via command"); var handleEv = new GhostAttemptHandleEvent(mind, canReturnGlobal); RaiseLocalEvent(handleEv); @@ -575,7 +574,7 @@ namespace Content.Server.Ghost } if (playerEntity != null) - _adminLogger.Add(LogType.Mind, $"{EntityManager.ToPrettyString(playerEntity.Value):player} ghosted{(!canReturn ? " (non-returnable)" : "")}"); + _adminLog.Add(LogType.Mind, $"{EntityManager.ToPrettyString(playerEntity.Value):player} ghosted{(!canReturn ? " (non-returnable)" : "")}"); var ghost = SpawnGhost((mindId, mind), position, canReturn); diff --git a/Content.Server/NameIdentifier/NameIdentifierSystem.cs b/Content.Server/NameIdentifier/NameIdentifierSystem.cs index 6db6e0ff56..273e9407fd 100644 --- a/Content.Server/NameIdentifier/NameIdentifierSystem.cs +++ b/Content.Server/NameIdentifier/NameIdentifierSystem.cs @@ -14,7 +14,6 @@ public sealed class NameIdentifierSystem : EntitySystem [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IRobustRandom _robustRandom = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; - [Dependency] private readonly ILogManager _logManager = default!; /// /// Free IDs available per . diff --git a/Content.Server/Salvage/SalvageSystem.Magnet.cs b/Content.Server/Salvage/SalvageSystem.Magnet.cs index 81db78fb20..dd61aad274 100644 --- a/Content.Server/Salvage/SalvageSystem.Magnet.cs +++ b/Content.Server/Salvage/SalvageSystem.Magnet.cs @@ -2,19 +2,20 @@ using System.Linq; using System.Numerics; using System.Threading.Tasks; using Content.Server.Salvage.Magnet; -using Content.Shared.Humanoid; using Content.Shared.Mobs.Components; using Content.Shared.Procedural; using Content.Shared.Radio; using Content.Shared.Salvage.Magnet; using Robust.Server.Maps; +using Robust.Shared.Exceptions; using Robust.Shared.Map; -using Robust.Shared.Map.Components; namespace Content.Server.Salvage; public sealed partial class SalvageSystem { + [Dependency] private readonly IRuntimeLog _runtimeLog = default!; + [ValidatePrototypeId] private const string MagnetChannel = "Supply"; @@ -45,7 +46,19 @@ public sealed partial class SalvageSystem return; } - TakeMagnetOffer((station.Value, dataComp), args.Index, (uid, component)); + var index = args.Index; + async void TryTakeMagnetOffer() + { + try + { + await TakeMagnetOffer((station.Value, dataComp), index, (uid, component)); + } + catch (Exception e) + { + _runtimeLog.LogException(e, $"{nameof(SalvageSystem)}.{nameof(TakeMagnetOffer)}"); + } + } + TryTakeMagnetOffer(); } private void OnMagnetStartup(EntityUid uid, SalvageMagnetComponent component, ComponentStartup args) diff --git a/Content.Server/Station/Systems/StationSpawningSystem.cs b/Content.Server/Station/Systems/StationSpawningSystem.cs index 3dd4995371..de4b36df26 100644 --- a/Content.Server/Station/Systems/StationSpawningSystem.cs +++ b/Content.Server/Station/Systems/StationSpawningSystem.cs @@ -4,8 +4,6 @@ using Content.Server.Humanoid; using Content.Server.IdentityManagement; using Content.Server.Mind.Commands; using Content.Server.PDA; -using Content.Server.Shuttles.Systems; -using Content.Server.Spawners.EntitySystems; using Content.Server.Station.Components; using Content.Shared.Access.Components; using Content.Shared.Access.Systems; @@ -39,10 +37,8 @@ public sealed class StationSpawningSystem : SharedStationSpawningSystem { [Dependency] private readonly SharedAccessSystem _accessSystem = default!; [Dependency] private readonly ActorSystem _actors = default!; - [Dependency] private readonly ArrivalsSystem _arrivalsSystem = default!; [Dependency] private readonly IdCardSystem _cardSystem = default!; [Dependency] private readonly IConfigurationManager _configurationManager = default!; - [Dependency] private readonly ContainerSpawnPointSystem _containerSpawnPointSystem = default!; [Dependency] private readonly HumanoidAppearanceSystem _humanoidSystem = default!; [Dependency] private readonly IdentitySystem _identity = default!; [Dependency] private readonly MetaDataSystem _metaSystem = default!; diff --git a/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs b/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs index fb99b3cfad..187295a073 100644 --- a/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs +++ b/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs @@ -1,7 +1,6 @@ using System.Linq; using Content.Server.Administration; using Content.Server.Administration.Managers; -using Content.Server.Database; using Content.Server.Discord.WebhookMessages; using Content.Server.GameTicking; using Content.Server.GameTicking.Presets; @@ -11,7 +10,6 @@ using Content.Server.RoundEnd; using Content.Shared.CCVar; using Content.Shared.Chat; using Content.Shared.Database; -using Content.Shared.Ghost; using Content.Shared.Players; using Content.Shared.Players.PlayTimeTracking; using Content.Shared.Voting; @@ -27,14 +25,13 @@ namespace Content.Server.Voting.Managers [Dependency] private readonly IPlayerLocator _locator = default!; [Dependency] private readonly ILogManager _logManager = default!; [Dependency] private readonly IBanManager _bans = default!; - [Dependency] private readonly IServerDbManager _dbManager = default!; [Dependency] private readonly VoteWebhooks _voteWebhooks = default!; private VotingSystem? _votingSystem; private RoleSystem? _roleSystem; private GameTicker? _gameTicker; - private static readonly Dictionary> _voteTypesToEnableCVars = new() + private static readonly Dictionary> VoteTypesToEnableCVars = new() { {StandardVoteType.Restart, CCVars.VoteRestartEnabled}, {StandardVoteType.Preset, CCVars.VotePresetEnabled}, diff --git a/Content.Server/Voting/Managers/VoteManager.cs b/Content.Server/Voting/Managers/VoteManager.cs index 10b975fdca..94e637638e 100644 --- a/Content.Server/Voting/Managers/VoteManager.cs +++ b/Content.Server/Voting/Managers/VoteManager.cs @@ -65,7 +65,7 @@ namespace Content.Server.Voting.Managers DirtyCanCallVoteAll(); }); - foreach (var kvp in _voteTypesToEnableCVars) + foreach (var kvp in VoteTypesToEnableCVars) { _cfg.OnValueChanged(kvp.Value, _ => { @@ -346,7 +346,7 @@ namespace Content.Server.Voting.Managers if (!_cfg.GetCVar(CCVars.VoteEnabled)) return false; // Specific standard vote types can be disabled with cvars. - if (voteType != null && _voteTypesToEnableCVars.TryGetValue(voteType.Value, out var cvar) && !_cfg.GetCVar(cvar)) + if (voteType != null && VoteTypesToEnableCVars.TryGetValue(voteType.Value, out var cvar) && !_cfg.GetCVar(cvar)) return false; // Cannot start vote if vote is already active (as non-admin). diff --git a/Content.Shared/Doors/Systems/SharedDoorSystem.cs b/Content.Shared/Doors/Systems/SharedDoorSystem.cs index f2dcd443e9..23bea0cdf1 100644 --- a/Content.Shared/Doors/Systems/SharedDoorSystem.cs +++ b/Content.Shared/Doors/Systems/SharedDoorSystem.cs @@ -23,7 +23,6 @@ using Robust.Shared.Timing; using Robust.Shared.Audio.Systems; using Robust.Shared.Network; using Robust.Shared.Map.Components; -using Robust.Shared.Physics; namespace Content.Shared.Doors.Systems; diff --git a/Content.Shared/GameTicking/SharedGameTicker.cs b/Content.Shared/GameTicking/SharedGameTicker.cs index 5126a6bdc4..015889b152 100644 --- a/Content.Shared/GameTicking/SharedGameTicker.cs +++ b/Content.Shared/GameTicking/SharedGameTicker.cs @@ -41,7 +41,10 @@ namespace Content.Shared.GameTicking private void OnRecordingStart(MappingDataNode metadata, List events) { - metadata["roundId"] = new ValueDataNode(RoundId.ToString()); + if (RoundId != 0) + { + metadata["roundId"] = new ValueDataNode(RoundId.ToString()); + } } public TimeSpan RoundDuration() diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index 1eb7bd112d..2f09f3e549 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -28,7 +28,6 @@ using Content.Shared.UserInterface; using Content.Shared.Verbs; using Content.Shared.Wall; using JetBrains.Annotations; -using Robust.Shared.Configuration; using Robust.Shared.Containers; using Robust.Shared.Input; using Robust.Shared.Input.Binding; @@ -38,7 +37,6 @@ using Robust.Shared.Physics; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; using Robust.Shared.Player; -using Robust.Shared.Random; using Robust.Shared.Serialization; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -65,12 +63,10 @@ namespace Content.Shared.Interaction [Dependency] private readonly UseDelaySystem _useDelay = default!; [Dependency] private readonly PullingSystem _pullSystem = default!; [Dependency] private readonly InventorySystem _inventory = default!; - [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly TagSystem _tagSystem = default!; [Dependency] private readonly SharedUserInterfaceSystem _ui = default!; [Dependency] private readonly SharedStrippableSystem _strippable = default!; [Dependency] private readonly SharedPlayerRateLimitManager _rateLimit = default!; - [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly ISharedChatManager _chat = default!; private EntityQuery _ignoreUiRangeQuery; diff --git a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs index 829f574ad1..5b0f331234 100644 --- a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs @@ -9,7 +9,6 @@ using Content.Shared.Interaction; using Content.Shared.Item; using Content.Shared.Lock; using Content.Shared.Movement.Events; -using Content.Shared.Placeable; using Content.Shared.Popups; using Content.Shared.Storage.Components; using Content.Shared.Tools.Systems; @@ -34,7 +33,6 @@ public abstract class SharedEntityStorageSystem : EntitySystem [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; - [Dependency] private readonly PlaceableSurfaceSystem _placeableSurface = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedContainerSystem _container = default!; From 5eceaf3e339f57632a900aec289968b883919f36 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Tue, 11 Feb 2025 10:01:59 +0000 Subject: [PATCH 209/313] Remove batong etc from emagged autolathe (#35014) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Resources/Prototypes/Entities/Structures/Machines/lathe.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 2616effd47..78757b1cea 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -133,7 +133,6 @@ - type: EmagLatheRecipes emagStaticPacks: - SecurityAmmoStatic - - SecurityWeaponsStatic - type: BlueprintReceiver whitelist: tags: From dc67a5a0ba591ae2c8219ab900920fd24b591b0d Mon Sep 17 00:00:00 2001 From: TemporalOroboros Date: Tue, 11 Feb 2025 02:06:43 -0800 Subject: [PATCH 210/313] Purges uses of TransformComponent.WorldMatrix and TransformComponent.InvWorldMatrix (#34944) --- Content.Client/Maps/GridDraggingSystem.cs | 4 ++-- .../Systems/ShuttleSystem.EmergencyConsole.cs | 15 +++++++++------ .../EntitySystems/ExplosionGridTileFlood.cs | 7 ++++--- .../EntitySystems/ExplosionSystem.GridMap.cs | 3 +-- .../EntitySystems/ExplosionSystem.TileFill.cs | 3 +-- Content.Server/GameTicking/GameTicker.Spawning.cs | 2 +- .../NPC/Pathfinding/PathfindingSystem.Distance.cs | 2 +- .../NPC/Pathfinding/PathfindingSystem.cs | 2 +- 8 files changed, 20 insertions(+), 18 deletions(-) diff --git a/Content.Client/Maps/GridDraggingSystem.cs b/Content.Client/Maps/GridDraggingSystem.cs index a4883f73cf..5440f1624f 100644 --- a/Content.Client/Maps/GridDraggingSystem.cs +++ b/Content.Client/Maps/GridDraggingSystem.cs @@ -102,7 +102,7 @@ public sealed class GridDraggingSystem : SharedGridDraggingSystem if (!_mapManager.TryFindGridAt(mousePos, out var gridUid, out var grid)) return; - StartDragging(gridUid, Vector2.Transform(mousePos.Position, Transform(gridUid).InvWorldMatrix)); + StartDragging(gridUid, Vector2.Transform(mousePos.Position, _transformSystem.GetInvWorldMatrix(gridUid))); } if (!TryComp(_dragging, out TransformComponent? xform)) @@ -117,7 +117,7 @@ public sealed class GridDraggingSystem : SharedGridDraggingSystem return; } - var localToWorld = Vector2.Transform(_localPosition, xform.WorldMatrix); + var localToWorld = Vector2.Transform(_localPosition, _transformSystem.GetWorldMatrix(xform)); if (localToWorld.EqualsApprox(mousePos.Position, 0.01f)) return; diff --git a/Content.Client/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs b/Content.Client/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs index 73c11de279..56b54c176a 100644 --- a/Content.Client/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs +++ b/Content.Client/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs @@ -23,7 +23,7 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem if (_enableShuttlePosition) { - _overlay = new EmergencyShuttleOverlay(EntityManager); + _overlay = new EmergencyShuttleOverlay(EntityManager.TransformQuery, XformSystem); overlayManager.AddOverlay(_overlay); RaiseNetworkEvent(new EmergencyShuttleRequestPositionMessage()); } @@ -57,23 +57,26 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem /// public sealed class EmergencyShuttleOverlay : Overlay { - private IEntityManager _entManager; + private readonly EntityQuery _transformQuery; + private readonly SharedTransformSystem _transformSystem; public override OverlaySpace Space => OverlaySpace.WorldSpace; public EntityUid? StationUid; public Box2? Position; - public EmergencyShuttleOverlay(IEntityManager entManager) + public EmergencyShuttleOverlay(EntityQuery transformQuery, SharedTransformSystem transformSystem) { - _entManager = entManager; + _transformQuery = transformQuery; + _transformSystem = transformSystem; } protected override void Draw(in OverlayDrawArgs args) { - if (Position == null || !_entManager.TryGetComponent(StationUid, out var xform)) return; + if (Position == null || !_transformQuery.TryGetComponent(StationUid, out var xform)) + return; - args.WorldHandle.SetTransform(xform.WorldMatrix); + args.WorldHandle.SetTransform(_transformSystem.GetWorldMatrix(xform)); args.WorldHandle.DrawRect(Position.Value, Color.Red.WithAlpha(100)); args.WorldHandle.SetTransform(Matrix3x2.Identity); } diff --git a/Content.Server/Explosion/EntitySystems/ExplosionGridTileFlood.cs b/Content.Server/Explosion/EntitySystems/ExplosionGridTileFlood.cs index 556e3771d2..fd5a895481 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionGridTileFlood.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionGridTileFlood.cs @@ -73,13 +73,14 @@ public sealed class ExplosionGridTileFlood : ExplosionTileFlood var transformSystem = entityManager.System(); var transform = entityManager.GetComponent(Grid.Owner); - var size = (float) Grid.TileSize; + var size = (float)Grid.TileSize; _matrix.M31 = size / 2; _matrix.M32 = size / 2; Matrix3x2.Invert(spaceMatrix, out var invSpace); - _matrix *= transform.WorldMatrix * invSpace; - var relativeAngle = transformSystem.GetWorldRotation(transform) - spaceAngle; + var (_, relativeAngle, worldMatrix) = transformSystem.GetWorldPositionRotationMatrix(transform); + relativeAngle -= spaceAngle; + _matrix *= worldMatrix * invSpace; _offset = relativeAngle.RotateVec(new Vector2(size / 4, size / 4)); } diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs index be6b9148a4..3be64e1776 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs @@ -71,8 +71,7 @@ public sealed partial class ExplosionSystem { var targetGrid = Comp(referenceGrid.Value); var xform = Transform(referenceGrid.Value); - targetAngle = _transformSystem.GetWorldRotation(xform); - targetMatrix = xform.InvWorldMatrix; + (_, targetAngle, targetMatrix) = _transformSystem.GetWorldPositionRotationInvMatrix(xform); tileSize = targetGrid.TileSize; } diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs index 2946748e5d..43cc45beac 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs @@ -89,8 +89,7 @@ public sealed partial class ExplosionSystem if (referenceGrid != null) { var xform = Transform(Comp(referenceGrid.Value).Owner); - spaceMatrix = xform.WorldMatrix; - spaceAngle = _transformSystem.GetWorldRotation(xform); + (_, spaceAngle, spaceMatrix) = _transformSystem.GetWorldPositionRotationMatrix(xform); } // is the explosion starting on a grid? diff --git a/Content.Server/GameTicking/GameTicker.Spawning.cs b/Content.Server/GameTicking/GameTicker.Spawning.cs index f6bf7c635e..ed1246f789 100644 --- a/Content.Server/GameTicking/GameTicker.Spawning.cs +++ b/Content.Server/GameTicking/GameTicker.Spawning.cs @@ -423,7 +423,7 @@ namespace Content.Server.GameTicking { var gridXform = Transform(gridUid); - return new EntityCoordinates(gridUid, Vector2.Transform(toMap.Position, gridXform.InvWorldMatrix)); + return new EntityCoordinates(gridUid, Vector2.Transform(toMap.Position, _transform.GetInvWorldMatrix(gridXform))); } return spawn; diff --git a/Content.Server/NPC/Pathfinding/PathfindingSystem.Distance.cs b/Content.Server/NPC/Pathfinding/PathfindingSystem.Distance.cs index b986ed5259..2348b25cbf 100644 --- a/Content.Server/NPC/Pathfinding/PathfindingSystem.Distance.cs +++ b/Content.Server/NPC/Pathfinding/PathfindingSystem.Distance.cs @@ -36,7 +36,7 @@ public sealed partial class PathfindingSystem return Vector2.Zero; } - endPos = Vector2.Transform(Vector2.Transform(endPos, endXform.WorldMatrix), startXform.InvWorldMatrix); + endPos = Vector2.Transform(Vector2.Transform(endPos, _transform.GetWorldMatrix(endXform)), _transform.GetInvWorldMatrix(startXform)); } // TODO: Numerics when we changeover. diff --git a/Content.Server/NPC/Pathfinding/PathfindingSystem.cs b/Content.Server/NPC/Pathfinding/PathfindingSystem.cs index b2958f0ccb..525f2417ce 100644 --- a/Content.Server/NPC/Pathfinding/PathfindingSystem.cs +++ b/Content.Server/NPC/Pathfinding/PathfindingSystem.cs @@ -405,7 +405,7 @@ namespace Content.Server.NPC.Pathfinding return null; } - var localPos = Vector2.Transform(coordinates.ToMapPos(EntityManager, _transform), xform.InvWorldMatrix); + var localPos = Vector2.Transform(coordinates.ToMapPos(EntityManager, _transform), _transform.GetInvWorldMatrix(xform)); var origin = GetOrigin(localPos); if (!TryGetChunk(origin, comp, out var chunk)) From b0cacc7f1431278ab7f25e65e219392f3dcb568f Mon Sep 17 00:00:00 2001 From: qwerltaz Date: Tue, 11 Feb 2025 11:44:11 +0100 Subject: [PATCH 211/313] fix conveyor belt default linking (#32688) --- Resources/Prototypes/Entities/Structures/conveyor.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Resources/Prototypes/Entities/Structures/conveyor.yml b/Resources/Prototypes/Entities/Structures/conveyor.yml index 2e94026c15..17c8f2e434 100644 --- a/Resources/Prototypes/Entities/Structures/conveyor.yml +++ b/Resources/Prototypes/Entities/Structures/conveyor.yml @@ -35,6 +35,11 @@ - DoorPassable hard: False - type: Conveyor + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: BasicDevice + - type: WirelessNetworkConnection + range: 200 - type: DeviceLinkSink ports: - Reverse From 9db50c9ee262f273c0f1516fea866d57af6aa622 Mon Sep 17 00:00:00 2001 From: War Pigeon <54217755+minus1over12@users.noreply.github.com> Date: Tue, 11 Feb 2025 05:47:19 -0600 Subject: [PATCH 212/313] Add additional holiday gear to jobs (#34207) * Jobs react to more holidays * Replace taser with Weh auto-injector * Give cargo techs a box on box(ing) day --- .../Objects/Specific/Medical/hypospray.yml | 30 +++++++++++++++++++ .../Roles/Jobs/Cargo/cargo_technician.yml | 4 +++ .../Roles/Jobs/Civilian/botanist.yml | 4 +++ .../Engineering/atmospheric_technician.yml | 4 +++ .../Roles/Jobs/Medical/medical_doctor.yml | 4 +++ .../Prototypes/Roles/Jobs/Wildcards/boxer.yml | 4 +++ .../Roles/Jobs/Wildcards/zookeeper.yml | 4 +++ 7 files changed, 54 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml index 067d40bbff..c002f9c671 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml @@ -546,3 +546,33 @@ - id: Hypopen sound: path: /Audio/Effects/unwrap.ogg + +- type: entity + name: weh auto-injector + parent: ChemicalMedipen + id: WehMedipen + description: A rapid dose of Weh. Contains juice that makes you Weh. + components: + - type: Sprite + sprite: Objects/Specific/Medical/medipen.rsi + layers: + - state: medipen + map: [ "enum.SolutionContainerLayers.Fill" ] + - type: SolutionContainerVisuals + maxFillLevels: 1 + changeColor: false + emptySpriteName: medipen_empty + - type: SolutionContainerManager + solutions: + pen: + maxVol: 60 + reagents: + - ReagentId: JuiceThatMakesYouWeh + Quantity: 60 + - type: Hypospray + solutionName: pen + transferAmount: 1 + onlyAffectsMobs: false + injectOnly: true + - type: Tag + tags: [] diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml b/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml index 655e103bca..cd71ab05b5 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml @@ -11,6 +11,10 @@ - Maintenance extendedAccess: - Salvage + special: + - !type:GiveItemOnHolidaySpecial + holiday: BoxingDay + prototype: BoxCardboard - type: startingGear id: CargoTechGear diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml b/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml index dd25a2abe2..47c1ccca02 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml @@ -13,6 +13,10 @@ extendedAccess: - Kitchen - Bar + special: + - !type:GiveItemOnHolidaySpecial + holiday: FourTwenty + prototype: CannabisSeeds - type: startingGear id: BotanistGear diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml b/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml index 9810b48571..55c5cfaa06 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml @@ -15,6 +15,10 @@ - Engineering - External - Atmospherics + special: + - !type:GiveItemOnHolidaySpecial + holiday: FirefighterDay + prototype: FireAxe - type: startingGear id: AtmosphericTechnicianGear diff --git a/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml b/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml index 11a8d10188..c23401f0fb 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml @@ -15,6 +15,10 @@ - Maintenance extendedAccess: - Chemistry + special: + - !type:GiveItemOnHolidaySpecial + holiday: DoctorDay + prototype: WehMedipen - type: startingGear id: DoctorGear diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml index e2f8de9609..8eb28c273e 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml @@ -9,6 +9,10 @@ access: - Service - Maintenance + special: + - !type:GiveItemOnHolidaySpecial + holiday: BoxingDay + prototype: ClothingHandsGlovesBoxingRigged - type: startingGear id: BoxerGear diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml index 32c98ed487..879a5a3af4 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml @@ -9,6 +9,10 @@ access: - Service - Maintenance + special: + - !type:GiveItemOnHolidaySpecial + holiday: MonkeyDay + prototype: MonkeyCubeBox - type: startingGear id: ZookeeperGear From 0feeaba0bd819071a55d626db22be268fdfb3ba6 Mon Sep 17 00:00:00 2001 From: T Date: Tue, 11 Feb 2025 12:17:33 +0000 Subject: [PATCH 213/313] Increase the price of bulletproof armor. (#34541) Update cargo_security.yml --- Resources/Prototypes/Catalog/Cargo/cargo_security.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_security.yml b/Resources/Prototypes/Catalog/Cargo/cargo_security.yml index d2bbe255cb..93b55fbb24 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_security.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_security.yml @@ -4,7 +4,7 @@ sprite: Clothing/OuterClothing/Armor/bulletproof.rsi state: icon product: CrateSecurityArmor - cost: 725 + cost: 1250 category: cargoproduct-category-name-security group: market From c699bd9cd80f3148dc0baa9a8b8dbe80291cb670 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 11 Feb 2025 12:18:40 +0000 Subject: [PATCH 214/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 51ec52f55a..78cf9c7c61 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: goet - changes: - - message: Vending machines can be hacked again. - type: Fix - id: 7435 - time: '2024-09-25T05:21:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32431 - author: themias changes: - message: Agent ID card can now only copy access within interaction range. @@ -3897,3 +3890,10 @@ id: 7934 time: '2025-02-11T09:36:45.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33306 +- author: centcomofficer24 + changes: + - message: Increased the armor crates price from 725 spesos to 1250 spesos. + type: Tweak + id: 7935 + time: '2025-02-11T12:17:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34541 From a62ffdc74005d169e9b7351decd4da678bbb7506 Mon Sep 17 00:00:00 2001 From: Killerqu00 <47712032+Killerqu00@users.noreply.github.com> Date: Tue, 11 Feb 2025 15:06:22 +0100 Subject: [PATCH 215/313] Move contraband text to a separate examine tab (#32250) --- Content.Shared/Contraband/ContrabandSystem.cs | 115 ++++++++++-------- .../en-US/contraband/contraband-severity.ftl | 3 + .../Interface/VerbIcons/ATTRIBUTION.txt | 2 +- 3 files changed, 71 insertions(+), 49 deletions(-) diff --git a/Content.Shared/Contraband/ContrabandSystem.cs b/Content.Shared/Contraband/ContrabandSystem.cs index ff18a08cef..7e5446da74 100644 --- a/Content.Shared/Contraband/ContrabandSystem.cs +++ b/Content.Shared/Contraband/ContrabandSystem.cs @@ -4,8 +4,10 @@ using Content.Shared.CCVar; using Content.Shared.Examine; using Content.Shared.Localizations; using Content.Shared.Roles; +using Content.Shared.Verbs; using Robust.Shared.Configuration; using Robust.Shared.Prototypes; +using Robust.Shared.Utility; namespace Content.Shared.Contraband; @@ -17,22 +19,18 @@ public sealed class ContrabandSystem : EntitySystem [Dependency] private readonly IConfigurationManager _configuration = default!; [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly SharedIdCardSystem _id = default!; + [Dependency] private readonly ExamineSystemShared _examine = default!; private bool _contrabandExamineEnabled; /// public override void Initialize() { - SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent>(OnDetailedExamine); Subs.CVar(_configuration, CCVars.ContrabandExamine, SetContrabandExamine, true); } - private void SetContrabandExamine(bool val) - { - _contrabandExamineEnabled = val; - } - public void CopyDetails(EntityUid uid, ContrabandComponent other, ContrabandComponent? contraband = null) { if (!Resolve(uid, ref contraband)) @@ -44,59 +42,80 @@ public sealed class ContrabandSystem : EntitySystem Dirty(uid, contraband); } - private void OnExamined(Entity ent, ref ExaminedEvent args) + private void OnDetailedExamine(EntityUid ent,ContrabandComponent component, ref GetVerbsEvent args) { + if (!_contrabandExamineEnabled) return; + // CanAccess is not used here, because we want people to be able to examine legality in strip menu. + if (!args.CanInteract) + return; + // two strings: // one, the actual informative 'this is restricted' // then, the 'you can/shouldn't carry this around' based on the ID the user is wearing - - using (args.PushGroup(nameof(ContrabandComponent))) + var localizedDepartments = component.AllowedDepartments.Select(p => Loc.GetString("contraband-department-plural", ("department", Loc.GetString(_proto.Index(p).Name)))); + var localizedJobs = component.AllowedJobs.Select(p => Loc.GetString("contraband-job-plural", ("job", _proto.Index(p).LocalizedName))); + var severity = _proto.Index(component.Severity); + String departmentExamineMessage; + if (severity.ShowDepartmentsAndJobs) { - var localizedDepartments = ent.Comp.AllowedDepartments.Select(p => Loc.GetString("contraband-department-plural", ("department", Loc.GetString(_proto.Index(p).Name)))); - var localizedJobs = ent.Comp.AllowedJobs.Select(p => Loc.GetString("contraband-job-plural", ("job", _proto.Index(p).LocalizedName))); + //creating a combined list of jobs and departments for the restricted text + var list = ContentLocalizationManager.FormatList(localizedDepartments.Concat(localizedJobs).ToList()); + // department restricted text + departmentExamineMessage = Loc.GetString("contraband-examine-text-Restricted-department", ("departments", list)); + } + else + { + departmentExamineMessage = Loc.GetString(severity.ExamineText); + } - var severity = _proto.Index(ent.Comp.Severity); - if (severity.ShowDepartmentsAndJobs) + // text based on ID card + List> departments = new(); + var jobId = ""; + if (_id.TryFindIdCard(args.User, out var id)) + { + departments = id.Comp.JobDepartments; + if (id.Comp.LocalizedJobTitle is not null) { - //creating a combined list of jobs and departments for the restricted text - var list = ContentLocalizationManager.FormatList(localizedDepartments.Concat(localizedJobs).ToList()); - - // department restricted text - args.PushMarkup(Loc.GetString("contraband-examine-text-Restricted-department", ("departments", list))); - } - else - { - args.PushMarkup(Loc.GetString(severity.ExamineText)); - } - - // text based on ID card - List> departments = new(); - var jobId = ""; - - if (_id.TryFindIdCard(args.Examiner, out var id)) - { - departments = id.Comp.JobDepartments; - if (id.Comp.LocalizedJobTitle is not null) - { - jobId = id.Comp.LocalizedJobTitle; - } - } - - // for the jobs we compare the localized string in case you use an agent ID or custom job name that is not a prototype - if (departments.Intersect(ent.Comp.AllowedDepartments).Any() - || localizedJobs.Contains(jobId)) - { - // you are allowed to use this! - args.PushMarkup(Loc.GetString("contraband-examine-text-in-the-clear")); - } - else - { - // straight to jail! - args.PushMarkup(Loc.GetString("contraband-examine-text-avoid-carrying-around")); + jobId = id.Comp.LocalizedJobTitle; } } + + String carryingMessage; + // either its fully restricted, you have no departments, or your departments dont intersect with the restricted departments + if (departments.Intersect(component.AllowedDepartments).Any() + || localizedJobs.Contains(jobId)) + { + carryingMessage = Loc.GetString("contraband-examine-text-in-the-clear"); + } + else + { + // otherwise fine to use :tm: + carryingMessage = Loc.GetString("contraband-examine-text-avoid-carrying-around"); + } + + var examineMarkup = GetContrabandExamine(departmentExamineMessage, carryingMessage); + _examine.AddDetailedExamineVerb(args, + component, + examineMarkup, + Loc.GetString("contraband-examinable-verb-text"), + "/Textures/Interface/VerbIcons/lock.svg.192dpi.png", + Loc.GetString("contraband-examinable-verb-message")); + } + + private FormattedMessage GetContrabandExamine(String deptMessage, String carryMessage) + { + var msg = new FormattedMessage(); + msg.AddMarkupOrThrow(deptMessage); + msg.PushNewline(); + msg.AddMarkupOrThrow(carryMessage); + return msg; + } + + private void SetContrabandExamine(bool val) + { + _contrabandExamineEnabled = val; } } diff --git a/Resources/Locale/en-US/contraband/contraband-severity.ftl b/Resources/Locale/en-US/contraband/contraband-severity.ftl index 68bb11930a..d79ecfa4b2 100644 --- a/Resources/Locale/en-US/contraband/contraband-severity.ftl +++ b/Resources/Locale/en-US/contraband/contraband-severity.ftl @@ -8,5 +8,8 @@ contraband-examine-text-Syndicate = [color=crimson]This item is highly illegal S contraband-examine-text-avoid-carrying-around = [color=red][italic]You probably want to avoid visibly carrying this around without a good reason.[/italic][/color] contraband-examine-text-in-the-clear = [color=green][italic]You should be in the clear to visibly carry this around.[/italic][/color] +contraband-examinable-verb-text = Legality +contraband-examinable-verb-message = Check legality of this item. + contraband-department-plural = {$department} contraband-job-plural = {MAKEPLURAL($job)} diff --git a/Resources/Textures/Interface/VerbIcons/ATTRIBUTION.txt b/Resources/Textures/Interface/VerbIcons/ATTRIBUTION.txt index 5b1320b450..1c71df2d5c 100644 --- a/Resources/Textures/Interface/VerbIcons/ATTRIBUTION.txt +++ b/Resources/Textures/Interface/VerbIcons/ATTRIBUTION.txt @@ -9,4 +9,4 @@ unlock.svg by Delapouite under CC BY 3.0 https://game-icons.net/1x1/delapouite/padlock-open.html bubbles.svg by Lorc under CC BY 3.0 -https://game-icons.net/1x1/lorc/bubbles.html \ No newline at end of file +https://game-icons.net/1x1/lorc/bubbles.html From 527f4ae6f27afe7c79c6615dcfd6a78c3a65fcfd Mon Sep 17 00:00:00 2001 From: Theodore Lukin <66275205+pheenty@users.noreply.github.com> Date: Tue, 11 Feb 2025 23:15:13 +0700 Subject: [PATCH 216/313] make interrogator lamp security contraband (#35064) --- Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml b/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml index bffa8ca134..fdb4e29aea 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml @@ -131,7 +131,7 @@ - type: entity name: interrogator lamp id: LampInterrogator - parent: BaseLamp + parent: [ BaseLamp, BaseRestrictedContraband ] description: Ultra-bright lamp for the bad cop. components: - type: Sprite From c197d3db37d34da2e76927d28e717852f2511f4a Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 11 Feb 2025 16:16:21 +0000 Subject: [PATCH 217/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 78cf9c7c61..d25eeb745c 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: themias - changes: - - message: Agent ID card can now only copy access within interaction range. - type: Fix - id: 7436 - time: '2024-09-25T15:41:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32445 - author: Myra changes: - message: Silicon with no laws will not have binary channel access. @@ -3897,3 +3890,10 @@ id: 7935 time: '2025-02-11T12:17:33.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34541 +- author: pheenty + changes: + - message: The interrogator lamp is now considered security contraband. + type: Tweak + id: 7936 + time: '2025-02-11T16:15:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35064 From 15b28936dfed9d2c3136230cfc90a436074c89b7 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Wed, 12 Feb 2025 04:30:24 +1100 Subject: [PATCH 218/313] Add loadout names (#31303) * Add loadout names Did it for AI, breaking change for pgsql + migrations in general. Nothing atm uses it. * the box * Spawning cherry pick * Fix nit * revert * Final cleanup * Real * Name UI fix * Migrations * a * Review * Re-run migrations --------- Co-authored-by: Pieter-Jan Briers --- .../Lobby/UI/HumanoidProfileEditor.xaml.cs | 7 + .../Lobby/UI/Loadouts/LoadoutWindow.xaml | 4 +- .../Lobby/UI/Loadouts/LoadoutWindow.xaml.cs | 20 + .../20250211131539_LoadoutNames.Designer.cs | 2117 +++++++++++++++++ .../Postgres/20250211131539_LoadoutNames.cs | 29 + .../PostgresServerDbContextModelSnapshot.cs | 5 + .../20250211131517_LoadoutNames.Designer.cs | 2041 ++++++++++++++++ .../Sqlite/20250211131517_LoadoutNames.cs | 29 + .../SqliteServerDbContextModelSnapshot.cs | 5 + Content.Server.Database/Model.cs | 6 + Content.Server/Database/ServerDbBase.cs | 2 + .../Preferences/HumanoidCharacterProfile.cs | 1 + .../Preferences/Loadouts/RoleLoadout.cs | 34 +- .../Loadouts/RoleLoadoutPrototype.cs | 6 + .../Station/SharedStationSpawningSystem.cs | 5 + .../Locale/en-US/preferences/loadouts.ftl | 2 +- .../Prototypes/Loadouts/role_loadouts.yml | 6 + 17 files changed, 4314 insertions(+), 5 deletions(-) create mode 100644 Content.Server.Database/Migrations/Postgres/20250211131539_LoadoutNames.Designer.cs create mode 100644 Content.Server.Database/Migrations/Postgres/20250211131539_LoadoutNames.cs create mode 100644 Content.Server.Database/Migrations/Sqlite/20250211131517_LoadoutNames.Designer.cs create mode 100644 Content.Server.Database/Migrations/Sqlite/20250211131517_LoadoutNames.cs diff --git a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs index 0f618cb71c..97a70987e9 100644 --- a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs +++ b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs @@ -1015,6 +1015,13 @@ namespace Content.Client.Lobby.UI _loadoutWindow.RefreshLoadouts(roleLoadout, session, collection); _loadoutWindow.OpenCenteredLeft(); + _loadoutWindow.OnNameChanged += name => + { + roleLoadout.EntityName = name; + Profile = Profile.WithLoadout(roleLoadout); + SetDirty(); + }; + _loadoutWindow.OnLoadoutPressed += (loadoutGroup, loadoutProto) => { roleLoadout.AddLoadout(loadoutGroup, loadoutProto, _prototypeManager); diff --git a/Content.Client/Lobby/UI/Loadouts/LoadoutWindow.xaml b/Content.Client/Lobby/UI/Loadouts/LoadoutWindow.xaml index 87d11005be..e4e44f75a9 100644 --- a/Content.Client/Lobby/UI/Loadouts/LoadoutWindow.xaml +++ b/Content.Client/Lobby/UI/Loadouts/LoadoutWindow.xaml @@ -5,17 +5,15 @@ SetSize="800 800" MinSize="800 128"> - diff --git a/Content.Client/Lobby/UI/Loadouts/LoadoutWindow.xaml.cs b/Content.Client/Lobby/UI/Loadouts/LoadoutWindow.xaml.cs index aab2a56ff6..fee27225ec 100644 --- a/Content.Client/Lobby/UI/Loadouts/LoadoutWindow.xaml.cs +++ b/Content.Client/Lobby/UI/Loadouts/LoadoutWindow.xaml.cs @@ -1,7 +1,9 @@ using System.Numerics; using Content.Client.UserInterface.Controls; +using Content.Shared.Dataset; using Content.Shared.Preferences; using Content.Shared.Preferences.Loadouts; +using Content.Shared.Random.Helpers; using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.XAML; using Robust.Shared.Player; @@ -13,6 +15,7 @@ namespace Content.Client.Lobby.UI.Loadouts; [GenerateTypedNameReferences] public sealed partial class LoadoutWindow : FancyWindow { + public event Action? OnNameChanged; public event Action, ProtoId>? OnLoadoutPressed; public event Action, ProtoId>? OnLoadoutUnpressed; @@ -25,6 +28,23 @@ public sealed partial class LoadoutWindow : FancyWindow RobustXamlLoader.Load(this); Profile = profile; var protoManager = collection.Resolve(); + RoleNameEdit.IsValid = text => text.Length <= HumanoidCharacterProfile.MaxLoadoutNameLength; + + // Hide if we can't edit the name. + if (!proto.CanCustomizeName) + { + RoleNameBox.Visible = false; + } + else + { + var name = loadout.EntityName; + + RoleNameEdit.ToolTip = Loc.GetString( + "loadout-name-edit-tooltip", + ("max", HumanoidCharacterProfile.MaxLoadoutNameLength)); + RoleNameEdit.Text = name ?? string.Empty; + RoleNameEdit.OnTextChanged += args => OnNameChanged?.Invoke(args.Text); + } // Hide if no groups if (proto.Groups.Count == 0) diff --git a/Content.Server.Database/Migrations/Postgres/20250211131539_LoadoutNames.Designer.cs b/Content.Server.Database/Migrations/Postgres/20250211131539_LoadoutNames.Designer.cs new file mode 100644 index 0000000000..b6bd8e24ed --- /dev/null +++ b/Content.Server.Database/Migrations/Postgres/20250211131539_LoadoutNames.Designer.cs @@ -0,0 +1,2117 @@ +// +using System; +using System.Net; +using System.Text.Json; +using Content.Server.Database; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; +using NpgsqlTypes; + +#nullable disable + +namespace Content.Server.Database.Migrations.Postgres +{ + [DbContext(typeof(PostgresServerDbContext))] + [Migration("20250211131539_LoadoutNames")] + partial class LoadoutNames + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("AdminRankId") + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + b.Property("Deadminned") + .HasColumnType("boolean") + .HasColumnName("deadminned"); + + b.Property("Suspended") + .HasColumnType("boolean") + .HasColumnName("suspended"); + + b.Property("Title") + .HasColumnType("text") + .HasColumnName("title"); + + b.HasKey("UserId") + .HasName("PK_admin"); + + b.HasIndex("AdminRankId") + .HasDatabaseName("IX_admin_admin_rank_id"); + + b.ToTable("admin", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_flag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminId") + .HasColumnType("uuid") + .HasColumnName("admin_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flag"); + + b.Property("Negative") + .HasColumnType("boolean") + .HasColumnName("negative"); + + b.HasKey("Id") + .HasName("PK_admin_flag"); + + b.HasIndex("AdminId") + .HasDatabaseName("IX_admin_flag_admin_id"); + + b.HasIndex("Flag", "AdminId") + .IsUnique(); + + b.ToTable("admin_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Id") + .HasColumnType("integer") + .HasColumnName("admin_log_id"); + + b.Property("Date") + .HasColumnType("timestamp with time zone") + .HasColumnName("date"); + + b.Property("Impact") + .HasColumnType("smallint") + .HasColumnName("impact"); + + b.Property("Json") + .IsRequired() + .HasColumnType("jsonb") + .HasColumnName("json"); + + b.Property("Message") + .IsRequired() + .HasColumnType("text") + .HasColumnName("message"); + + b.Property("Type") + .HasColumnType("integer") + .HasColumnName("type"); + + b.HasKey("RoundId", "Id") + .HasName("PK_admin_log"); + + b.HasIndex("Date"); + + b.HasIndex("Message") + .HasAnnotation("Npgsql:TsVectorConfig", "english"); + + NpgsqlIndexBuilderExtensions.HasMethod(b.HasIndex("Message"), "GIN"); + + b.HasIndex("Type") + .HasDatabaseName("IX_admin_log_type"); + + b.ToTable("admin_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("LogId") + .HasColumnType("integer") + .HasColumnName("log_id"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.HasKey("RoundId", "LogId", "PlayerUserId") + .HasName("PK_admin_log_player"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_log_player_player_user_id"); + + b.ToTable("admin_log_player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_messages_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("uuid") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("boolean") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("uuid") + .HasColumnName("deleted_by_id"); + + b.Property("Dismissed") + .HasColumnType("boolean") + .HasColumnName("dismissed"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("character varying(4096)") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Seen") + .HasColumnType("boolean") + .HasColumnName("seen"); + + b.HasKey("Id") + .HasName("PK_admin_messages"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_messages_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_messages_round_id"); + + b.ToTable("admin_messages", null, t => + { + t.HasCheckConstraint("NotDismissedAndSeen", "NOT dismissed OR seen"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_notes_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("uuid") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("boolean") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("uuid") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("character varying(4096)") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Secret") + .HasColumnType("boolean") + .HasColumnName("secret"); + + b.Property("Severity") + .HasColumnType("integer") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_admin_notes"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_notes_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_notes_round_id"); + + b.ToTable("admin_notes", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_admin_rank"); + + b.ToTable("admin_rank", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_rank_flag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminRankId") + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flag"); + + b.HasKey("Id") + .HasName("PK_admin_rank_flag"); + + b.HasIndex("AdminRankId"); + + b.HasIndex("Flag", "AdminRankId") + .IsUnique(); + + b.ToTable("admin_rank_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_watchlists_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("uuid") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("boolean") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("uuid") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("character varying(4096)") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.HasKey("Id") + .HasName("PK_admin_watchlists"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_watchlists_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_watchlists_round_id"); + + b.ToTable("admin_watchlists", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("antag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AntagName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("antag_name"); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_antag"); + + b.HasIndex("ProfileId", "AntagName") + .IsUnique(); + + b.ToTable("antag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AssignedUserId", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("assigned_user_id_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_assigned_user_id"); + + b.HasIndex("UserId") + .IsUnique(); + + b.HasIndex("UserName") + .IsUnique(); + + b.ToTable("assigned_user_id", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.BanTemplate", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("ban_template_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AutoDelete") + .HasColumnType("boolean") + .HasColumnName("auto_delete"); + + b.Property("ExemptFlags") + .HasColumnType("integer") + .HasColumnName("exempt_flags"); + + b.Property("Hidden") + .HasColumnType("boolean") + .HasColumnName("hidden"); + + b.Property("Length") + .HasColumnType("interval") + .HasColumnName("length"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("text") + .HasColumnName("reason"); + + b.Property("Severity") + .HasColumnType("integer") + .HasColumnName("severity"); + + b.Property("Title") + .IsRequired() + .HasColumnType("text") + .HasColumnName("title"); + + b.HasKey("Id") + .HasName("PK_ban_template"); + + b.ToTable("ban_template", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Blacklist", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("UserId") + .HasName("PK_blacklist"); + + b.ToTable("blacklist", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("connection_log_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Address") + .IsRequired() + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("Denied") + .HasColumnType("smallint") + .HasColumnName("denied"); + + b.Property("ServerId") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasDefaultValue(0) + .HasColumnName("server_id"); + + b.Property("Time") + .HasColumnType("timestamp with time zone") + .HasColumnName("time"); + + b.Property("Trust") + .HasColumnType("real") + .HasColumnName("trust"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_connection_log"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_connection_log_server_id"); + + b.HasIndex("Time"); + + b.HasIndex("UserId"); + + b.ToTable("connection_log", null, t => + { + t.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.IPIntelCache", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("ipintel_cache_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Address") + .IsRequired() + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("Score") + .HasColumnType("real") + .HasColumnName("score"); + + b.Property("Time") + .HasColumnType("timestamp with time zone") + .HasColumnName("time"); + + b.HasKey("Id") + .HasName("PK_ipintel_cache"); + + b.ToTable("ipintel_cache", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("job_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("JobName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("job_name"); + + b.Property("Priority") + .HasColumnType("integer") + .HasColumnName("priority"); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_job"); + + b.HasIndex("ProfileId"); + + b.HasIndex("ProfileId", "JobName") + .IsUnique(); + + b.HasIndex(new[] { "ProfileId" }, "IX_job_one_high_priority") + .IsUnique() + .HasFilter("priority = 3"); + + b.ToTable("job", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.PlayTime", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("play_time_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("PlayerId") + .HasColumnType("uuid") + .HasColumnName("player_id"); + + b.Property("TimeSpent") + .HasColumnType("interval") + .HasColumnName("time_spent"); + + b.Property("Tracker") + .IsRequired() + .HasColumnType("text") + .HasColumnName("tracker"); + + b.HasKey("Id") + .HasName("PK_play_time"); + + b.HasIndex("PlayerId", "Tracker") + .IsUnique(); + + b.ToTable("play_time", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("player_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("FirstSeenTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("first_seen_time"); + + b.Property("LastReadRules") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_read_rules"); + + b.Property("LastSeenAddress") + .IsRequired() + .HasColumnType("inet") + .HasColumnName("last_seen_address"); + + b.Property("LastSeenTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_seen_time"); + + b.Property("LastSeenUserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("last_seen_user_name"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_player"); + + b.HasAlternateKey("UserId") + .HasName("ak_player_user_id"); + + b.HasIndex("LastSeenUserName"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("player", null, t => + { + t.HasCheckConstraint("LastSeenAddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= last_seen_address"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("preference_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminOOCColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("admin_ooc_color"); + + b.Property("SelectedCharacterSlot") + .HasColumnType("integer") + .HasColumnName("selected_character_slot"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_preference"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("preference", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("profile_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Age") + .HasColumnType("integer") + .HasColumnName("age"); + + b.Property("CharacterName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("char_name"); + + b.Property("EyeColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("eye_color"); + + b.Property("FacialHairColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("facial_hair_color"); + + b.Property("FacialHairName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("facial_hair_name"); + + b.Property("FlavorText") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flavor_text"); + + b.Property("Gender") + .IsRequired() + .HasColumnType("text") + .HasColumnName("gender"); + + b.Property("HairColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("hair_color"); + + b.Property("HairName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("hair_name"); + + b.Property("Markings") + .HasColumnType("jsonb") + .HasColumnName("markings"); + + b.Property("PreferenceId") + .HasColumnType("integer") + .HasColumnName("preference_id"); + + b.Property("PreferenceUnavailable") + .HasColumnType("integer") + .HasColumnName("pref_unavailable"); + + b.Property("Sex") + .IsRequired() + .HasColumnType("text") + .HasColumnName("sex"); + + b.Property("SkinColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("skin_color"); + + b.Property("Slot") + .HasColumnType("integer") + .HasColumnName("slot"); + + b.Property("SpawnPriority") + .HasColumnType("integer") + .HasColumnName("spawn_priority"); + + b.Property("Species") + .IsRequired() + .HasColumnType("text") + .HasColumnName("species"); + + b.HasKey("Id") + .HasName("PK_profile"); + + b.HasIndex("PreferenceId") + .HasDatabaseName("IX_profile_preference_id"); + + b.HasIndex("Slot", "PreferenceId") + .IsUnique(); + + b.ToTable("profile", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadout", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("profile_loadout_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("LoadoutName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("loadout_name"); + + b.Property("ProfileLoadoutGroupId") + .HasColumnType("integer") + .HasColumnName("profile_loadout_group_id"); + + b.HasKey("Id") + .HasName("PK_profile_loadout"); + + b.HasIndex("ProfileLoadoutGroupId"); + + b.ToTable("profile_loadout", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadoutGroup", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("profile_loadout_group_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("GroupName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("group_name"); + + b.Property("ProfileRoleLoadoutId") + .HasColumnType("integer") + .HasColumnName("profile_role_loadout_id"); + + b.HasKey("Id") + .HasName("PK_profile_loadout_group"); + + b.HasIndex("ProfileRoleLoadoutId"); + + b.ToTable("profile_loadout_group", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileRoleLoadout", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("profile_role_loadout_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("EntityName") + .HasMaxLength(256) + .HasColumnType("character varying(256)") + .HasColumnName("entity_name"); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.Property("RoleName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("role_name"); + + b.HasKey("Id") + .HasName("PK_profile_role_loadout"); + + b.HasIndex("ProfileId"); + + b.ToTable("profile_role_loadout", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.RoleWhitelist", b => + { + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("RoleId") + .HasColumnType("text") + .HasColumnName("role_id"); + + b.HasKey("PlayerUserId", "RoleId") + .HasName("PK_role_whitelists"); + + b.ToTable("role_whitelists", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("round_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ServerId") + .HasColumnType("integer") + .HasColumnName("server_id"); + + b.Property("StartDate") + .HasColumnType("timestamp with time zone") + .HasColumnName("start_date"); + + b.HasKey("Id") + .HasName("PK_round"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_round_server_id"); + + b.HasIndex("StartDate"); + + b.ToTable("round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_server"); + + b.ToTable("server", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_ban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Address") + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("AutoDelete") + .HasColumnType("boolean") + .HasColumnName("auto_delete"); + + b.Property("BanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("uuid") + .HasColumnName("banning_admin"); + + b.Property("ExemptFlags") + .HasColumnType("integer") + .HasColumnName("exempt_flags"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("Hidden") + .HasColumnType("boolean") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("text") + .HasColumnName("reason"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("integer") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_ban_round_id"); + + b.ToTable("server_ban", null, t => + { + t.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanExemption", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("Flags") + .HasColumnType("integer") + .HasColumnName("flags"); + + b.HasKey("UserId") + .HasName("PK_server_ban_exemption"); + + b.ToTable("server_ban_exemption", null, t => + { + t.HasCheckConstraint("FlagsNotZero", "flags != 0"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_ban_hit_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("ConnectionId") + .HasColumnType("integer") + .HasColumnName("connection_id"); + + b.HasKey("Id") + .HasName("PK_server_ban_hit"); + + b.HasIndex("BanId") + .HasDatabaseName("IX_server_ban_hit_ban_id"); + + b.HasIndex("ConnectionId") + .HasDatabaseName("IX_server_ban_hit_connection_id"); + + b.ToTable("server_ban_hit", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_role_ban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Address") + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("BanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("uuid") + .HasColumnName("banning_admin"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("Hidden") + .HasColumnType("boolean") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("text") + .HasColumnName("reason"); + + b.Property("RoleId") + .IsRequired() + .HasColumnType("text") + .HasColumnName("role_id"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("integer") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_role_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_role_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_role_ban_round_id"); + + b.ToTable("server_role_ban", null, t => + { + t.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("role_unban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("uuid") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_role_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_role_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("unban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("uuid") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("trait_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.Property("TraitName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("trait_name"); + + b.HasKey("Id") + .HasName("PK_trait"); + + b.HasIndex("ProfileId", "TraitName") + .IsUnique(); + + b.ToTable("trait", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.UploadedResourceLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("uploaded_resource_log_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Data") + .IsRequired() + .HasColumnType("bytea") + .HasColumnName("data"); + + b.Property("Date") + .HasColumnType("timestamp with time zone") + .HasColumnName("date"); + + b.Property("Path") + .IsRequired() + .HasColumnType("text") + .HasColumnName("path"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_uploaded_resource_log"); + + b.ToTable("uploaded_resource_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Whitelist", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("UserId") + .HasName("PK_whitelist"); + + b.ToTable("whitelist", (string)null); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.Property("PlayersId") + .HasColumnType("integer") + .HasColumnName("players_id"); + + b.Property("RoundsId") + .HasColumnType("integer") + .HasColumnName("rounds_id"); + + b.HasKey("PlayersId", "RoundsId") + .HasName("PK_player_round"); + + b.HasIndex("RoundsId") + .HasDatabaseName("IX_player_round_rounds_id"); + + b.ToTable("player_round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.HasOne("Content.Server.Database.AdminRank", "AdminRank") + .WithMany("Admins") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_admin_rank_admin_rank_id"); + + b.Navigation("AdminRank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.HasOne("Content.Server.Database.Admin", "Admin") + .WithMany("Flags") + .HasForeignKey("AdminId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_flag_admin_admin_id"); + + b.Navigation("Admin"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany("AdminLogs") + .HasForeignKey("RoundId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_round_round_id"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminLogs") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_player_player_user_id"); + + b.HasOne("Content.Server.Database.AdminLog", "Log") + .WithMany("Players") + .HasForeignKey("RoundId", "LogId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_admin_log_round_id_log_id"); + + b.Navigation("Log"); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminMessagesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminMessagesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminMessagesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminMessagesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_messages_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_messages_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminNotesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminNotesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminNotesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminNotesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_notes_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_notes_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.HasOne("Content.Server.Database.AdminRank", "Rank") + .WithMany("Flags") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_rank_flag_admin_rank_admin_rank_id"); + + b.Navigation("Rank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminWatchlistsCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminWatchlistsDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminWatchlistsLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminWatchlistsReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_watchlists_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_watchlists_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Antags") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_antag_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("ConnectionLogs") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.SetNull) + .IsRequired() + .HasConstraintName("FK_connection_log_server_server_id"); + + b.OwnsOne("Content.Server.Database.TypedHwid", "HWId", b1 => + { + b1.Property("ConnectionLogId") + .HasColumnType("integer") + .HasColumnName("connection_log_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasDefaultValue(0) + .HasColumnName("hwid_type"); + + b1.HasKey("ConnectionLogId"); + + b1.ToTable("connection_log"); + + b1.WithOwner() + .HasForeignKey("ConnectionLogId") + .HasConstraintName("FK_connection_log_connection_log_connection_log_id"); + }); + + b.Navigation("HWId"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Jobs") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_job_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.OwnsOne("Content.Server.Database.TypedHwid", "LastSeenHWId", b1 => + { + b1.Property("PlayerId") + .HasColumnType("integer") + .HasColumnName("player_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("bytea") + .HasColumnName("last_seen_hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasDefaultValue(0) + .HasColumnName("last_seen_hwid_type"); + + b1.HasKey("PlayerId"); + + b1.ToTable("player"); + + b1.WithOwner() + .HasForeignKey("PlayerId") + .HasConstraintName("FK_player_player_player_id"); + }); + + b.Navigation("LastSeenHWId"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.HasOne("Content.Server.Database.Preference", "Preference") + .WithMany("Profiles") + .HasForeignKey("PreferenceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_preference_preference_id"); + + b.Navigation("Preference"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadout", b => + { + b.HasOne("Content.Server.Database.ProfileLoadoutGroup", "ProfileLoadoutGroup") + .WithMany("Loadouts") + .HasForeignKey("ProfileLoadoutGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_loadout_profile_loadout_group_profile_loadout_group~"); + + b.Navigation("ProfileLoadoutGroup"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadoutGroup", b => + { + b.HasOne("Content.Server.Database.ProfileRoleLoadout", "ProfileRoleLoadout") + .WithMany("Groups") + .HasForeignKey("ProfileRoleLoadoutId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_loadout_group_profile_role_loadout_profile_role_loa~"); + + b.Navigation("ProfileRoleLoadout"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileRoleLoadout", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Loadouts") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_role_loadout_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.RoleWhitelist", b => + { + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("JobWhitelists") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_role_whitelists_player_player_user_id"); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("Rounds") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_round_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_ban_round_round_id"); + + b.OwnsOne("Content.Server.Database.TypedHwid", "HWId", b1 => + { + b1.Property("ServerBanId") + .HasColumnType("integer") + .HasColumnName("server_ban_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasDefaultValue(0) + .HasColumnName("hwid_type"); + + b1.HasKey("ServerBanId"); + + b1.ToTable("server_ban"); + + b1.WithOwner() + .HasForeignKey("ServerBanId") + .HasConstraintName("FK_server_ban_server_ban_server_ban_id"); + }); + + b.Navigation("CreatedBy"); + + b.Navigation("HWId"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithMany("BanHits") + .HasForeignKey("BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_server_ban_ban_id"); + + b.HasOne("Content.Server.Database.ConnectionLog", "Connection") + .WithMany("BanHits") + .HasForeignKey("ConnectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_connection_log_connection_id"); + + b.Navigation("Ban"); + + b.Navigation("Connection"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerRoleBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerRoleBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_role_ban_round_round_id"); + + b.OwnsOne("Content.Server.Database.TypedHwid", "HWId", b1 => + { + b1.Property("ServerRoleBanId") + .HasColumnType("integer") + .HasColumnName("server_role_ban_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasDefaultValue(0) + .HasColumnName("hwid_type"); + + b1.HasKey("ServerRoleBanId"); + + b1.ToTable("server_role_ban"); + + b1.WithOwner() + .HasForeignKey("ServerRoleBanId") + .HasConstraintName("FK_server_role_ban_server_role_ban_server_role_ban_id"); + }); + + b.Navigation("CreatedBy"); + + b.Navigation("HWId"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.HasOne("Content.Server.Database.ServerRoleBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerRoleUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_role_unban_server_role_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_unban_server_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Traits") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_trait_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.HasOne("Content.Server.Database.Player", null) + .WithMany() + .HasForeignKey("PlayersId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_player_players_id"); + + b.HasOne("Content.Server.Database.Round", null) + .WithMany() + .HasForeignKey("RoundsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_round_rounds_id"); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Navigation("Players"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Navigation("Admins"); + + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Navigation("BanHits"); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Navigation("AdminLogs"); + + b.Navigation("AdminMessagesCreated"); + + b.Navigation("AdminMessagesDeleted"); + + b.Navigation("AdminMessagesLastEdited"); + + b.Navigation("AdminMessagesReceived"); + + b.Navigation("AdminNotesCreated"); + + b.Navigation("AdminNotesDeleted"); + + b.Navigation("AdminNotesLastEdited"); + + b.Navigation("AdminNotesReceived"); + + b.Navigation("AdminServerBansCreated"); + + b.Navigation("AdminServerBansLastEdited"); + + b.Navigation("AdminServerRoleBansCreated"); + + b.Navigation("AdminServerRoleBansLastEdited"); + + b.Navigation("AdminWatchlistsCreated"); + + b.Navigation("AdminWatchlistsDeleted"); + + b.Navigation("AdminWatchlistsLastEdited"); + + b.Navigation("AdminWatchlistsReceived"); + + b.Navigation("JobWhitelists"); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Navigation("Profiles"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Navigation("Antags"); + + b.Navigation("Jobs"); + + b.Navigation("Loadouts"); + + b.Navigation("Traits"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadoutGroup", b => + { + b.Navigation("Loadouts"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileRoleLoadout", b => + { + b.Navigation("Groups"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Navigation("AdminLogs"); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Navigation("ConnectionLogs"); + + b.Navigation("Rounds"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Navigation("BanHits"); + + b.Navigation("Unban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Navigation("Unban"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Content.Server.Database/Migrations/Postgres/20250211131539_LoadoutNames.cs b/Content.Server.Database/Migrations/Postgres/20250211131539_LoadoutNames.cs new file mode 100644 index 0000000000..3b331f33df --- /dev/null +++ b/Content.Server.Database/Migrations/Postgres/20250211131539_LoadoutNames.cs @@ -0,0 +1,29 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Content.Server.Database.Migrations.Postgres +{ + /// + public partial class LoadoutNames : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "entity_name", + table: "profile_role_loadout", + type: "character varying(256)", + maxLength: 256, + nullable: true); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "entity_name", + table: "profile_role_loadout"); + } + } +} diff --git a/Content.Server.Database/Migrations/Postgres/PostgresServerDbContextModelSnapshot.cs b/Content.Server.Database/Migrations/Postgres/PostgresServerDbContextModelSnapshot.cs index e528cb70fe..a8744fcd65 100644 --- a/Content.Server.Database/Migrations/Postgres/PostgresServerDbContextModelSnapshot.cs +++ b/Content.Server.Database/Migrations/Postgres/PostgresServerDbContextModelSnapshot.cs @@ -975,6 +975,11 @@ namespace Content.Server.Database.Migrations.Postgres NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + b.Property("EntityName") + .HasMaxLength(256) + .HasColumnType("character varying(256)") + .HasColumnName("entity_name"); + b.Property("ProfileId") .HasColumnType("integer") .HasColumnName("profile_id"); diff --git a/Content.Server.Database/Migrations/Sqlite/20250211131517_LoadoutNames.Designer.cs b/Content.Server.Database/Migrations/Sqlite/20250211131517_LoadoutNames.Designer.cs new file mode 100644 index 0000000000..5e54eec94b --- /dev/null +++ b/Content.Server.Database/Migrations/Sqlite/20250211131517_LoadoutNames.Designer.cs @@ -0,0 +1,2041 @@ +// +using System; +using Content.Server.Database; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace Content.Server.Database.Migrations.Sqlite +{ + [DbContext(typeof(SqliteServerDbContext))] + [Migration("20250211131517_LoadoutNames")] + partial class LoadoutNames + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "8.0.0"); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("AdminRankId") + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Deadminned") + .HasColumnType("INTEGER") + .HasColumnName("deadminned"); + + b.Property("Suspended") + .HasColumnType("INTEGER") + .HasColumnName("suspended"); + + b.Property("Title") + .HasColumnType("TEXT") + .HasColumnName("title"); + + b.HasKey("UserId") + .HasName("PK_admin"); + + b.HasIndex("AdminRankId") + .HasDatabaseName("IX_admin_admin_rank_id"); + + b.ToTable("admin", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_flag_id"); + + b.Property("AdminId") + .HasColumnType("TEXT") + .HasColumnName("admin_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flag"); + + b.Property("Negative") + .HasColumnType("INTEGER") + .HasColumnName("negative"); + + b.HasKey("Id") + .HasName("PK_admin_flag"); + + b.HasIndex("AdminId") + .HasDatabaseName("IX_admin_flag_admin_id"); + + b.HasIndex("Flag", "AdminId") + .IsUnique(); + + b.ToTable("admin_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Id") + .HasColumnType("INTEGER") + .HasColumnName("admin_log_id"); + + b.Property("Date") + .HasColumnType("TEXT") + .HasColumnName("date"); + + b.Property("Impact") + .HasColumnType("INTEGER") + .HasColumnName("impact"); + + b.Property("Json") + .IsRequired() + .HasColumnType("jsonb") + .HasColumnName("json"); + + b.Property("Message") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("Type") + .HasColumnType("INTEGER") + .HasColumnName("type"); + + b.HasKey("RoundId", "Id") + .HasName("PK_admin_log"); + + b.HasIndex("Date"); + + b.HasIndex("Type") + .HasDatabaseName("IX_admin_log_type"); + + b.ToTable("admin_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("LogId") + .HasColumnType("INTEGER") + .HasColumnName("log_id"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.HasKey("RoundId", "LogId", "PlayerUserId") + .HasName("PK_admin_log_player"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_log_player_player_user_id"); + + b.ToTable("admin_log_player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_messages_id"); + + b.Property("CreatedAt") + .HasColumnType("TEXT") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("TEXT") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("INTEGER") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("TEXT") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("TEXT") + .HasColumnName("deleted_by_id"); + + b.Property("Dismissed") + .HasColumnType("INTEGER") + .HasColumnName("dismissed"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Seen") + .HasColumnType("INTEGER") + .HasColumnName("seen"); + + b.HasKey("Id") + .HasName("PK_admin_messages"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_messages_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_messages_round_id"); + + b.ToTable("admin_messages", null, t => + { + t.HasCheckConstraint("NotDismissedAndSeen", "NOT dismissed OR seen"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_notes_id"); + + b.Property("CreatedAt") + .HasColumnType("TEXT") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("TEXT") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("INTEGER") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("TEXT") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("TEXT") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Secret") + .HasColumnType("INTEGER") + .HasColumnName("secret"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_admin_notes"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_notes_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_notes_round_id"); + + b.ToTable("admin_notes", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_admin_rank"); + + b.ToTable("admin_rank", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_flag_id"); + + b.Property("AdminRankId") + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flag"); + + b.HasKey("Id") + .HasName("PK_admin_rank_flag"); + + b.HasIndex("AdminRankId"); + + b.HasIndex("Flag", "AdminRankId") + .IsUnique(); + + b.ToTable("admin_rank_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_watchlists_id"); + + b.Property("CreatedAt") + .HasColumnType("TEXT") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("TEXT") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("INTEGER") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("TEXT") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("TEXT") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.HasKey("Id") + .HasName("PK_admin_watchlists"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_watchlists_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_watchlists_round_id"); + + b.ToTable("admin_watchlists", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("antag_id"); + + b.Property("AntagName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("antag_name"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_antag"); + + b.HasIndex("ProfileId", "AntagName") + .IsUnique(); + + b.ToTable("antag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AssignedUserId", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("assigned_user_id_id"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_assigned_user_id"); + + b.HasIndex("UserId") + .IsUnique(); + + b.HasIndex("UserName") + .IsUnique(); + + b.ToTable("assigned_user_id", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.BanTemplate", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("ban_template_id"); + + b.Property("AutoDelete") + .HasColumnType("INTEGER") + .HasColumnName("auto_delete"); + + b.Property("ExemptFlags") + .HasColumnType("INTEGER") + .HasColumnName("exempt_flags"); + + b.Property("Hidden") + .HasColumnType("INTEGER") + .HasColumnName("hidden"); + + b.Property("Length") + .HasColumnType("TEXT") + .HasColumnName("length"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("reason"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.Property("Title") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("title"); + + b.HasKey("Id") + .HasName("PK_ban_template"); + + b.ToTable("ban_template", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Blacklist", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("UserId") + .HasName("PK_blacklist"); + + b.ToTable("blacklist", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("connection_log_id"); + + b.Property("Address") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("Denied") + .HasColumnType("INTEGER") + .HasColumnName("denied"); + + b.Property("ServerId") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0) + .HasColumnName("server_id"); + + b.Property("Time") + .HasColumnType("TEXT") + .HasColumnName("time"); + + b.Property("Trust") + .HasColumnType("REAL") + .HasColumnName("trust"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_connection_log"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_connection_log_server_id"); + + b.HasIndex("Time"); + + b.HasIndex("UserId"); + + b.ToTable("connection_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.IPIntelCache", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("ipintel_cache_id"); + + b.Property("Address") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("Score") + .HasColumnType("REAL") + .HasColumnName("score"); + + b.Property("Time") + .HasColumnType("TEXT") + .HasColumnName("time"); + + b.HasKey("Id") + .HasName("PK_ipintel_cache"); + + b.HasIndex("Address") + .IsUnique(); + + b.ToTable("ipintel_cache", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("job_id"); + + b.Property("JobName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("job_name"); + + b.Property("Priority") + .HasColumnType("INTEGER") + .HasColumnName("priority"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_job"); + + b.HasIndex("ProfileId"); + + b.HasIndex("ProfileId", "JobName") + .IsUnique(); + + b.HasIndex(new[] { "ProfileId" }, "IX_job_one_high_priority") + .IsUnique() + .HasFilter("priority = 3"); + + b.ToTable("job", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.PlayTime", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("play_time_id"); + + b.Property("PlayerId") + .HasColumnType("TEXT") + .HasColumnName("player_id"); + + b.Property("TimeSpent") + .HasColumnType("TEXT") + .HasColumnName("time_spent"); + + b.Property("Tracker") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("tracker"); + + b.HasKey("Id") + .HasName("PK_play_time"); + + b.HasIndex("PlayerId", "Tracker") + .IsUnique(); + + b.ToTable("play_time", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("player_id"); + + b.Property("FirstSeenTime") + .HasColumnType("TEXT") + .HasColumnName("first_seen_time"); + + b.Property("LastReadRules") + .HasColumnType("TEXT") + .HasColumnName("last_read_rules"); + + b.Property("LastSeenAddress") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_seen_address"); + + b.Property("LastSeenTime") + .HasColumnType("TEXT") + .HasColumnName("last_seen_time"); + + b.Property("LastSeenUserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_seen_user_name"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_player"); + + b.HasAlternateKey("UserId") + .HasName("ak_player_user_id"); + + b.HasIndex("LastSeenUserName"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("preference_id"); + + b.Property("AdminOOCColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("admin_ooc_color"); + + b.Property("SelectedCharacterSlot") + .HasColumnType("INTEGER") + .HasColumnName("selected_character_slot"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_preference"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("preference", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.Property("Age") + .HasColumnType("INTEGER") + .HasColumnName("age"); + + b.Property("CharacterName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("char_name"); + + b.Property("EyeColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("eye_color"); + + b.Property("FacialHairColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("facial_hair_color"); + + b.Property("FacialHairName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("facial_hair_name"); + + b.Property("FlavorText") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flavor_text"); + + b.Property("Gender") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("gender"); + + b.Property("HairColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("hair_color"); + + b.Property("HairName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("hair_name"); + + b.Property("Markings") + .HasColumnType("jsonb") + .HasColumnName("markings"); + + b.Property("PreferenceId") + .HasColumnType("INTEGER") + .HasColumnName("preference_id"); + + b.Property("PreferenceUnavailable") + .HasColumnType("INTEGER") + .HasColumnName("pref_unavailable"); + + b.Property("Sex") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("sex"); + + b.Property("SkinColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("skin_color"); + + b.Property("Slot") + .HasColumnType("INTEGER") + .HasColumnName("slot"); + + b.Property("SpawnPriority") + .HasColumnType("INTEGER") + .HasColumnName("spawn_priority"); + + b.Property("Species") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("species"); + + b.HasKey("Id") + .HasName("PK_profile"); + + b.HasIndex("PreferenceId") + .HasDatabaseName("IX_profile_preference_id"); + + b.HasIndex("Slot", "PreferenceId") + .IsUnique(); + + b.ToTable("profile", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadout", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("profile_loadout_id"); + + b.Property("LoadoutName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("loadout_name"); + + b.Property("ProfileLoadoutGroupId") + .HasColumnType("INTEGER") + .HasColumnName("profile_loadout_group_id"); + + b.HasKey("Id") + .HasName("PK_profile_loadout"); + + b.HasIndex("ProfileLoadoutGroupId"); + + b.ToTable("profile_loadout", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadoutGroup", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("profile_loadout_group_id"); + + b.Property("GroupName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("group_name"); + + b.Property("ProfileRoleLoadoutId") + .HasColumnType("INTEGER") + .HasColumnName("profile_role_loadout_id"); + + b.HasKey("Id") + .HasName("PK_profile_loadout_group"); + + b.HasIndex("ProfileRoleLoadoutId"); + + b.ToTable("profile_loadout_group", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileRoleLoadout", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("profile_role_loadout_id"); + + b.Property("EntityName") + .HasMaxLength(256) + .HasColumnType("TEXT") + .HasColumnName("entity_name"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.Property("RoleName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("role_name"); + + b.HasKey("Id") + .HasName("PK_profile_role_loadout"); + + b.HasIndex("ProfileId"); + + b.ToTable("profile_role_loadout", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.RoleWhitelist", b => + { + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("RoleId") + .HasColumnType("TEXT") + .HasColumnName("role_id"); + + b.HasKey("PlayerUserId", "RoleId") + .HasName("PK_role_whitelists"); + + b.ToTable("role_whitelists", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("ServerId") + .HasColumnType("INTEGER") + .HasColumnName("server_id"); + + b.Property("StartDate") + .HasColumnType("TEXT") + .HasColumnName("start_date"); + + b.HasKey("Id") + .HasName("PK_round"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_round_server_id"); + + b.HasIndex("StartDate"); + + b.ToTable("round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_id"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_server"); + + b.ToTable("server", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_ban_id"); + + b.Property("Address") + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("AutoDelete") + .HasColumnType("INTEGER") + .HasColumnName("auto_delete"); + + b.Property("BanTime") + .HasColumnType("TEXT") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("banning_admin"); + + b.Property("ExemptFlags") + .HasColumnType("INTEGER") + .HasColumnName("exempt_flags"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("Hidden") + .HasColumnType("INTEGER") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("reason"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_ban_round_id"); + + b.ToTable("server_ban", null, t => + { + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanExemption", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("Flags") + .HasColumnType("INTEGER") + .HasColumnName("flags"); + + b.HasKey("UserId") + .HasName("PK_server_ban_exemption"); + + b.ToTable("server_ban_exemption", null, t => + { + t.HasCheckConstraint("FlagsNotZero", "flags != 0"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_ban_hit_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("ConnectionId") + .HasColumnType("INTEGER") + .HasColumnName("connection_id"); + + b.HasKey("Id") + .HasName("PK_server_ban_hit"); + + b.HasIndex("BanId") + .HasDatabaseName("IX_server_ban_hit_ban_id"); + + b.HasIndex("ConnectionId") + .HasDatabaseName("IX_server_ban_hit_connection_id"); + + b.ToTable("server_ban_hit", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_role_ban_id"); + + b.Property("Address") + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("BanTime") + .HasColumnType("TEXT") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("banning_admin"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("Hidden") + .HasColumnType("INTEGER") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("reason"); + + b.Property("RoleId") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("role_id"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_role_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_role_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_role_ban_round_id"); + + b.ToTable("server_role_ban", null, t => + { + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("role_unban_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("TEXT") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_role_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_role_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("unban_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("TEXT") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("trait_id"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.Property("TraitName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("trait_name"); + + b.HasKey("Id") + .HasName("PK_trait"); + + b.HasIndex("ProfileId", "TraitName") + .IsUnique(); + + b.ToTable("trait", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.UploadedResourceLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("uploaded_resource_log_id"); + + b.Property("Data") + .IsRequired() + .HasColumnType("BLOB") + .HasColumnName("data"); + + b.Property("Date") + .HasColumnType("TEXT") + .HasColumnName("date"); + + b.Property("Path") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("path"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_uploaded_resource_log"); + + b.ToTable("uploaded_resource_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Whitelist", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("UserId") + .HasName("PK_whitelist"); + + b.ToTable("whitelist", (string)null); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.Property("PlayersId") + .HasColumnType("INTEGER") + .HasColumnName("players_id"); + + b.Property("RoundsId") + .HasColumnType("INTEGER") + .HasColumnName("rounds_id"); + + b.HasKey("PlayersId", "RoundsId") + .HasName("PK_player_round"); + + b.HasIndex("RoundsId") + .HasDatabaseName("IX_player_round_rounds_id"); + + b.ToTable("player_round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.HasOne("Content.Server.Database.AdminRank", "AdminRank") + .WithMany("Admins") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_admin_rank_admin_rank_id"); + + b.Navigation("AdminRank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.HasOne("Content.Server.Database.Admin", "Admin") + .WithMany("Flags") + .HasForeignKey("AdminId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_flag_admin_admin_id"); + + b.Navigation("Admin"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany("AdminLogs") + .HasForeignKey("RoundId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_round_round_id"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminLogs") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_player_player_user_id"); + + b.HasOne("Content.Server.Database.AdminLog", "Log") + .WithMany("Players") + .HasForeignKey("RoundId", "LogId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_admin_log_round_id_log_id"); + + b.Navigation("Log"); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminMessagesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminMessagesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminMessagesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminMessagesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_messages_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_messages_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminNotesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminNotesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminNotesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminNotesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_notes_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_notes_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.HasOne("Content.Server.Database.AdminRank", "Rank") + .WithMany("Flags") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_rank_flag_admin_rank_admin_rank_id"); + + b.Navigation("Rank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminWatchlistsCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminWatchlistsDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminWatchlistsLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminWatchlistsReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_watchlists_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_watchlists_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Antags") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_antag_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("ConnectionLogs") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.SetNull) + .IsRequired() + .HasConstraintName("FK_connection_log_server_server_id"); + + b.OwnsOne("Content.Server.Database.TypedHwid", "HWId", b1 => + { + b1.Property("ConnectionLogId") + .HasColumnType("INTEGER") + .HasColumnName("connection_log_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0) + .HasColumnName("hwid_type"); + + b1.HasKey("ConnectionLogId"); + + b1.ToTable("connection_log"); + + b1.WithOwner() + .HasForeignKey("ConnectionLogId") + .HasConstraintName("FK_connection_log_connection_log_connection_log_id"); + }); + + b.Navigation("HWId"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Jobs") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_job_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.OwnsOne("Content.Server.Database.TypedHwid", "LastSeenHWId", b1 => + { + b1.Property("PlayerId") + .HasColumnType("INTEGER") + .HasColumnName("player_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("BLOB") + .HasColumnName("last_seen_hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0) + .HasColumnName("last_seen_hwid_type"); + + b1.HasKey("PlayerId"); + + b1.ToTable("player"); + + b1.WithOwner() + .HasForeignKey("PlayerId") + .HasConstraintName("FK_player_player_player_id"); + }); + + b.Navigation("LastSeenHWId"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.HasOne("Content.Server.Database.Preference", "Preference") + .WithMany("Profiles") + .HasForeignKey("PreferenceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_preference_preference_id"); + + b.Navigation("Preference"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadout", b => + { + b.HasOne("Content.Server.Database.ProfileLoadoutGroup", "ProfileLoadoutGroup") + .WithMany("Loadouts") + .HasForeignKey("ProfileLoadoutGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_loadout_profile_loadout_group_profile_loadout_group_id"); + + b.Navigation("ProfileLoadoutGroup"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadoutGroup", b => + { + b.HasOne("Content.Server.Database.ProfileRoleLoadout", "ProfileRoleLoadout") + .WithMany("Groups") + .HasForeignKey("ProfileRoleLoadoutId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_loadout_group_profile_role_loadout_profile_role_loadout_id"); + + b.Navigation("ProfileRoleLoadout"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileRoleLoadout", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Loadouts") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_role_loadout_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.RoleWhitelist", b => + { + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("JobWhitelists") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_role_whitelists_player_player_user_id"); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("Rounds") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_round_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_ban_round_round_id"); + + b.OwnsOne("Content.Server.Database.TypedHwid", "HWId", b1 => + { + b1.Property("ServerBanId") + .HasColumnType("INTEGER") + .HasColumnName("server_ban_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0) + .HasColumnName("hwid_type"); + + b1.HasKey("ServerBanId"); + + b1.ToTable("server_ban"); + + b1.WithOwner() + .HasForeignKey("ServerBanId") + .HasConstraintName("FK_server_ban_server_ban_server_ban_id"); + }); + + b.Navigation("CreatedBy"); + + b.Navigation("HWId"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithMany("BanHits") + .HasForeignKey("BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_server_ban_ban_id"); + + b.HasOne("Content.Server.Database.ConnectionLog", "Connection") + .WithMany("BanHits") + .HasForeignKey("ConnectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_connection_log_connection_id"); + + b.Navigation("Ban"); + + b.Navigation("Connection"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerRoleBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerRoleBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_role_ban_round_round_id"); + + b.OwnsOne("Content.Server.Database.TypedHwid", "HWId", b1 => + { + b1.Property("ServerRoleBanId") + .HasColumnType("INTEGER") + .HasColumnName("server_role_ban_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0) + .HasColumnName("hwid_type"); + + b1.HasKey("ServerRoleBanId"); + + b1.ToTable("server_role_ban"); + + b1.WithOwner() + .HasForeignKey("ServerRoleBanId") + .HasConstraintName("FK_server_role_ban_server_role_ban_server_role_ban_id"); + }); + + b.Navigation("CreatedBy"); + + b.Navigation("HWId"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.HasOne("Content.Server.Database.ServerRoleBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerRoleUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_role_unban_server_role_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_unban_server_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Traits") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_trait_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.HasOne("Content.Server.Database.Player", null) + .WithMany() + .HasForeignKey("PlayersId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_player_players_id"); + + b.HasOne("Content.Server.Database.Round", null) + .WithMany() + .HasForeignKey("RoundsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_round_rounds_id"); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Navigation("Players"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Navigation("Admins"); + + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Navigation("BanHits"); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Navigation("AdminLogs"); + + b.Navigation("AdminMessagesCreated"); + + b.Navigation("AdminMessagesDeleted"); + + b.Navigation("AdminMessagesLastEdited"); + + b.Navigation("AdminMessagesReceived"); + + b.Navigation("AdminNotesCreated"); + + b.Navigation("AdminNotesDeleted"); + + b.Navigation("AdminNotesLastEdited"); + + b.Navigation("AdminNotesReceived"); + + b.Navigation("AdminServerBansCreated"); + + b.Navigation("AdminServerBansLastEdited"); + + b.Navigation("AdminServerRoleBansCreated"); + + b.Navigation("AdminServerRoleBansLastEdited"); + + b.Navigation("AdminWatchlistsCreated"); + + b.Navigation("AdminWatchlistsDeleted"); + + b.Navigation("AdminWatchlistsLastEdited"); + + b.Navigation("AdminWatchlistsReceived"); + + b.Navigation("JobWhitelists"); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Navigation("Profiles"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Navigation("Antags"); + + b.Navigation("Jobs"); + + b.Navigation("Loadouts"); + + b.Navigation("Traits"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadoutGroup", b => + { + b.Navigation("Loadouts"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileRoleLoadout", b => + { + b.Navigation("Groups"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Navigation("AdminLogs"); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Navigation("ConnectionLogs"); + + b.Navigation("Rounds"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Navigation("BanHits"); + + b.Navigation("Unban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Navigation("Unban"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Content.Server.Database/Migrations/Sqlite/20250211131517_LoadoutNames.cs b/Content.Server.Database/Migrations/Sqlite/20250211131517_LoadoutNames.cs new file mode 100644 index 0000000000..bc13e9e59f --- /dev/null +++ b/Content.Server.Database/Migrations/Sqlite/20250211131517_LoadoutNames.cs @@ -0,0 +1,29 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Content.Server.Database.Migrations.Sqlite +{ + /// + public partial class LoadoutNames : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "entity_name", + table: "profile_role_loadout", + type: "TEXT", + maxLength: 256, + nullable: true); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "entity_name", + table: "profile_role_loadout"); + } + } +} diff --git a/Content.Server.Database/Migrations/Sqlite/SqliteServerDbContextModelSnapshot.cs b/Content.Server.Database/Migrations/Sqlite/SqliteServerDbContextModelSnapshot.cs index 370fcc13ca..6c463c5bcb 100644 --- a/Content.Server.Database/Migrations/Sqlite/SqliteServerDbContextModelSnapshot.cs +++ b/Content.Server.Database/Migrations/Sqlite/SqliteServerDbContextModelSnapshot.cs @@ -921,6 +921,11 @@ namespace Content.Server.Database.Migrations.Sqlite .HasColumnType("INTEGER") .HasColumnName("profile_role_loadout_id"); + b.Property("EntityName") + .HasMaxLength(256) + .HasColumnType("TEXT") + .HasColumnName("entity_name"); + b.Property("ProfileId") .HasColumnType("INTEGER") .HasColumnName("profile_id"); diff --git a/Content.Server.Database/Model.cs b/Content.Server.Database/Model.cs index 4e3efddc47..bd62bdda9b 100644 --- a/Content.Server.Database/Model.cs +++ b/Content.Server.Database/Model.cs @@ -480,6 +480,12 @@ namespace Content.Server.Database /// public string RoleName { get; set; } = string.Empty; + /// + /// Custom name of the role loadout if it supports it. + /// + [MaxLength(256)] + public string? EntityName { get; set; } + /// /// Store the saved loadout groups. These may get validated and removed when loaded at runtime. /// diff --git a/Content.Server/Database/ServerDbBase.cs b/Content.Server/Database/ServerDbBase.cs index ccbaf276cd..030c2b4bb5 100644 --- a/Content.Server/Database/ServerDbBase.cs +++ b/Content.Server/Database/ServerDbBase.cs @@ -222,6 +222,7 @@ namespace Content.Server.Database { var loadout = new RoleLoadout(role.RoleName) { + EntityName = role.EntityName, }; foreach (var group in role.Groups) @@ -319,6 +320,7 @@ namespace Content.Server.Database var dz = new ProfileRoleLoadout() { RoleName = role, + EntityName = loadouts.EntityName ?? string.Empty, }; foreach (var (group, groupLoadouts) in loadouts.SelectedLoadouts) diff --git a/Content.Shared/Preferences/HumanoidCharacterProfile.cs b/Content.Shared/Preferences/HumanoidCharacterProfile.cs index 35daa55bbc..16064e61ac 100644 --- a/Content.Shared/Preferences/HumanoidCharacterProfile.cs +++ b/Content.Shared/Preferences/HumanoidCharacterProfile.cs @@ -29,6 +29,7 @@ namespace Content.Shared.Preferences private static readonly Regex ICNameCaseRegex = new(@"^(?\w)|\b(?\w)(?=\w*$)"); public const int MaxNameLength = 32; + public const int MaxLoadoutNameLength = 32; public const int MaxDescLength = 512; /// diff --git a/Content.Shared/Preferences/Loadouts/RoleLoadout.cs b/Content.Shared/Preferences/Loadouts/RoleLoadout.cs index 6ba9f9018f..47f2d62784 100644 --- a/Content.Shared/Preferences/Loadouts/RoleLoadout.cs +++ b/Content.Shared/Preferences/Loadouts/RoleLoadout.cs @@ -22,6 +22,11 @@ public sealed partial class RoleLoadout : IEquatable [DataField] public Dictionary, List> SelectedLoadouts = new(); + /// + /// Loadout specific name. + /// + public string? EntityName; + /* * Loadout-specific data used for validation. */ @@ -42,6 +47,8 @@ public sealed partial class RoleLoadout : IEquatable weh.SelectedLoadouts.Add(selected.Key, new List(selected.Value)); } + weh.EntityName = EntityName; + return weh; } @@ -55,10 +62,34 @@ public sealed partial class RoleLoadout : IEquatable if (!protoManager.TryIndex(Role, out var roleProto)) { + EntityName = null; SelectedLoadouts.Clear(); return; } + // Remove name not allowed. + if (!roleProto.CanCustomizeName) + { + EntityName = null; + } + + // Validate name length + // TODO: Probably allow regex to be supplied? + if (EntityName != null) + { + var name = EntityName.Trim(); + + if (name.Length > HumanoidCharacterProfile.MaxNameLength) + { + EntityName = name[..HumanoidCharacterProfile.MaxNameLength]; + } + + if (name.Length == 0) + { + EntityName = null; + } + } + // In some instances we might not have picked up a new group for existing data. foreach (var groupProto in roleProto.Groups) { @@ -322,7 +353,8 @@ public sealed partial class RoleLoadout : IEquatable if (!Role.Equals(other.Role) || SelectedLoadouts.Count != other.SelectedLoadouts.Count || - Points != other.Points) + Points != other.Points || + EntityName != other.EntityName) { return false; } diff --git a/Content.Shared/Preferences/Loadouts/RoleLoadoutPrototype.cs b/Content.Shared/Preferences/Loadouts/RoleLoadoutPrototype.cs index 92b2d3ef0e..3521ad0095 100644 --- a/Content.Shared/Preferences/Loadouts/RoleLoadoutPrototype.cs +++ b/Content.Shared/Preferences/Loadouts/RoleLoadoutPrototype.cs @@ -16,6 +16,12 @@ public sealed partial class RoleLoadoutPrototype : IPrototype [IdDataField] public string ID { get; } = string.Empty; + /// + /// Can the user edit their entity name for this role loadout? + /// + [DataField] + public bool CanCustomizeName; + /// /// Should we use a random name for this loadout? /// diff --git a/Content.Shared/Station/SharedStationSpawningSystem.cs b/Content.Shared/Station/SharedStationSpawningSystem.cs index 4c21b61d3d..dc14366717 100644 --- a/Content.Shared/Station/SharedStationSpawningSystem.cs +++ b/Content.Shared/Station/SharedStationSpawningSystem.cs @@ -68,6 +68,11 @@ public abstract class SharedStationSpawningSystem : EntitySystem { string? name = null; + if (roleProto.CanCustomizeName) + { + name = loadout.EntityName; + } + if (string.IsNullOrEmpty(name) && PrototypeManager.TryIndex(roleProto.NameDataset, out var nameData)) { name = Loc.GetString(_random.Pick(nameData.Values)); diff --git a/Resources/Locale/en-US/preferences/loadouts.ftl b/Resources/Locale/en-US/preferences/loadouts.ftl index 60e8350cd3..d88c2c9d60 100644 --- a/Resources/Locale/en-US/preferences/loadouts.ftl +++ b/Resources/Locale/en-US/preferences/loadouts.ftl @@ -1,6 +1,6 @@ # Name loadout-name-edit-label = Custom name -loadout-name-edit-tooltip = 32 characters max. If no name is specified a random one may be chosen for you. +loadout-name-edit-tooltip = {$max} characters max. If no name is specified a random one may be chosen for you. # Restrictions loadout-restrictions = Restrictions diff --git a/Resources/Prototypes/Loadouts/role_loadouts.yml b/Resources/Prototypes/Loadouts/role_loadouts.yml index 05f6ecfa02..a456b54c94 100644 --- a/Resources/Prototypes/Loadouts/role_loadouts.yml +++ b/Resources/Prototypes/Loadouts/role_loadouts.yml @@ -26,9 +26,15 @@ - GroupSpeciesBreathTool # Silicons +#- type: roleLoadout +# id: JobBorg +# nameDataset: roleloadout doesn't support both so need to update that first. +# canCustomizeName: true + - type: roleLoadout id: JobStationAi nameDataset: NamesAI + canCustomizeName: true # Civilian - type: roleLoadout From 0b2d70088ccc993a9ab3dc60a5894838f6c9fe02 Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Tue, 11 Feb 2025 20:32:05 +0300 Subject: [PATCH 219/313] Update BuildChecker.csproj (#35072) --- BuildChecker/BuildChecker.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BuildChecker/BuildChecker.csproj b/BuildChecker/BuildChecker.csproj index 63d16fa970..4bd7fcf78c 100644 --- a/BuildChecker/BuildChecker.csproj +++ b/BuildChecker/BuildChecker.csproj @@ -12,12 +12,12 @@ You want to handle the Build, Clean and Rebuild tasks to prevent missing task er If you want to learn more about these kinds of things, check out Microsoft's official documentation about MSBuild: https://docs.microsoft.com/en-us/visualstudio/msbuild/msbuild --> - + python3 py -3 {C899FCA4-7037-4E49-ABC2-44DE72487110} - .NETFramework, Version=v4.7.2 + net4.7.2 false From 7b38a99d23e482fdf0907b240f6894d591aab0f8 Mon Sep 17 00:00:00 2001 From: Theodore Lukin <66275205+pheenty@users.noreply.github.com> Date: Wed, 12 Feb 2025 00:48:27 +0700 Subject: [PATCH 220/313] give CE atmos gas mask (#35063) --- Resources/Prototypes/Catalog/Fills/Lockers/heads.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 9a640a8fa2..0145259dac 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -168,7 +168,7 @@ id: FillChiefEngineerHardsuit table: !type:AllSelector children: - - id: ClothingMaskBreath + - id: ClothingMaskGasAtmos - id: ClothingOuterHardsuitEngineeringWhite - id: ClothingShoesBootsMagAdv - id: JetpackVoidFilled From 5c598ae90f6bc726b331843616b8524b1c48fb42 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 11 Feb 2025 17:49:33 +0000 Subject: [PATCH 221/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index d25eeb745c..2dca204acd 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Myra - changes: - - message: Silicon with no laws will not have binary channel access. - type: Remove - id: 7437 - time: '2024-09-25T16:49:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32385 - author: august-sun changes: - message: Rolling pins are now craftable. @@ -3897,3 +3890,10 @@ id: 7936 time: '2025-02-11T16:15:14.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35064 +- author: pheenty + changes: + - message: Chief Engineer's hardsuit storage unit now has an atmospheric gas mask. + type: Add + id: 7937 + time: '2025-02-11T17:48:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35063 From 78c951c7908ea9ca5546a4525a0a8cc85045f124 Mon Sep 17 00:00:00 2001 From: justdie12 <125140938+justdie12@users.noreply.github.com> Date: Tue, 11 Feb 2025 21:04:42 +0300 Subject: [PATCH 222/313] Fixed trooper uniform sprite (#35065) --- .../security_trooper.rsi/inhand-right.png | Bin 561 -> 574 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-right.png index 7a4841f09b6cb13c070f9eb60f2830b4150d48ea..d6327b1f97b5052ea74b0e1046c71b1f82fb6f51 100644 GIT binary patch delta 536 zcmV+z0_Xj)1il22F@N|;L_t(|obB1MZrV^7hT+$hh+sj143Q$s10Fgvm<6uEa;K_$ z7}z>_sybA?fNl(lyjGnm?tz==;xUsGA{LMlI++|1?7+d$=D7MFi2)nIcYYrk#0NqM zA%qY@2qAw^irt zj5tkcU0(w*9*-G~MgYuiZ^_QzJUm$Ww|g7M1AiTp`^5mFD6-Z;z`auR`+We0pFRSRBnkIQu?_;FC^F{i!*RKD_kbvh zthn1P{GhnoHE!{lvbl2u*pws*y11W!hKM?d%0Mm2F>5r#*nO?W^gu{wl6& zYpg?S2UN8+)}b|ksAumw#G%YuUb`G<9)OPSG6_X=b*sSz6v4! aH%~MhP7wvNgvt~E0000 z$>6P%rqZGG0lIle&{{ebzk^?*i^fb!9K6`bnA@Q^gw%3naeHgZ`GFT*IQQ~NNZB+5j$QGlC!>2m%1J{Uu3af*{~xHmjAFB*{}2V77Z4npeiN5psQYX1XUQ zWJN*e>I#6#WWsnn24H@B%XaZ#-(@J;CcHTbL-T`TvdRecx zb1m!j4nC~yyfW4X@LZnf^!t7CJU`03=d4T-pxf=5Mx#Ni)uP#K^8Uj|zI^_~YPDjy zT(VxT$+E2Sezx<+@B%R_AkNJ5NMJL_|bHL_|amsqBJz-3$O zTBQNFY-?Ss{0?x{*1A@!9sZkbt!qcu*1C3dZLMnu9awFxi2QGU0=cJ71^p0}yZ`_I N07*qoL Date: Wed, 12 Feb 2025 00:05:34 +0500 Subject: [PATCH 223/313] Make Advanced Spray more tolerable to use (#34209) * initial commit * Fixed the eject order * FINALLY got a new sprite, its ready to merge! * I FORGOT THE ATTRIBUTIONS DAMMIT * Remove extra whitespace * Sprite update! --- .../Entities/Clothing/Back/specific.yml | 20 +++++++++++++++--- .../Weapons/Guns/Basic/spraynozzle.yml | 5 ++++- Resources/Prototypes/tags.yml | 3 +++ .../waterbackpack.rsi/icon-filled.png | Bin 0 -> 1047 bytes .../Back/Backpacks/waterbackpack.rsi/icon.png | Bin 828 -> 829 bytes .../Backpacks/waterbackpack.rsi/meta.json | 5 ++++- 6 files changed, 28 insertions(+), 5 deletions(-) create mode 100644 Resources/Textures/Clothing/Back/Backpacks/waterbackpack.rsi/icon-filled.png diff --git a/Resources/Prototypes/Entities/Clothing/Back/specific.yml b/Resources/Prototypes/Entities/Clothing/Back/specific.yml index fcdecffc8f..9ff6871b3c 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/specific.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity parent: ClothingBackpack id: ClothingBackpackChameleon name: backpack @@ -20,10 +20,10 @@ type: ChameleonBoundUserInterface - type: entity - parent: Clothing + parent: [Clothing, ClothingSlotBase] id: ClothingBackpackWaterTank name: backpack water tank - description: Holds a large amount of fluids. Supplies to spray nozzles in your hands. + description: Holds a large amount of fluids. Supplies to spray nozzles in your hands, and has a slot on the side for said spray nozzles. components: - type: Tag tags: @@ -37,6 +37,20 @@ - type: Clothing slots: BACK sprite: Clothing/Back/Backpacks/waterbackpack.rsi + - type: ItemSlots + slots: + item: + priority: 2 + whitelist: + tags: + - SprayNozzle + - type: ItemMapper + mapLayers: + icon-filled: + whitelist: + tags: + - SprayNozzle + - type: Appearance - type: SolutionAmmoProvider solutionId: tank proto: BulletWaterShot diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/spraynozzle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/spraynozzle.yml index f2e93a607e..616a799aff 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/spraynozzle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/spraynozzle.yml @@ -1,9 +1,12 @@ -- type: entity +- type: entity id: WeaponSprayNozzle parent: BaseItem name: spray nozzle description: A high-powered spray nozzle used in conjunction with a backpack-mounted water tank. components: + - type: Tag + tags: + - SprayNozzle - type: Sprite sprite: Objects/Weapons/Guns/Basic/spraynozzle.rsi state: icon diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 805eb4d523..968805a7b6 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -1195,6 +1195,9 @@ - type: Tag id: Spray +- type: Tag + id: SprayNozzle + - type: Tag id: SpreaderIgnore diff --git a/Resources/Textures/Clothing/Back/Backpacks/waterbackpack.rsi/icon-filled.png b/Resources/Textures/Clothing/Back/Backpacks/waterbackpack.rsi/icon-filled.png new file mode 100644 index 0000000000000000000000000000000000000000..913b1a289d849677cc9b28e8f6157213d78e880c GIT binary patch literal 1047 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCik{1o(uwy2vD0D}`vwSZRsc7bq_8FgsM{yxLnm-$2qaT&~W`%gahG%*Dk; zRaLd9sHnZYJtih5D=W*&%1T>XJ1NGhamm*B=^OKxZ=JSzSE_k)t&g~+qA3{r^%N;o_zoF)1QB4nJ@a+d-Mhn(p6`-I*iEBhjaDG}zd16s2LqK9?UWuNc zYlwoWo}r#`&u(J{pqg!|5uRzDo>~kXKn^Q|6eBAGBar0<#L`eUC{{HXnZe>rK(-+x z6N3PdjsoJ$b{4RB7LW}By=9CHFMyE`qtPs707^|@XJ7%UG%zwYU|aw(6=Wmp0*Fad zfNT(80-DPNRvBbz0c1gS85$UXWb+(sBsj!_X9JU0ou`Xqh=u>!NjJj|Iqy?Q0l5`NbzJ62C_D@iaJq3U;Yf^EU$JphF-zd|uV+ea6hxFVR8LM}V`Or@n>oc{ zmU2YXuLN(S%`MDM3wancC0V1L)e{-RW>2?Vav>rjCMqW&sY@ks5A(EejtLufU5m-j z0}6;H6lc$7h!t5o_u9ID%q!lW+!nUWfa~{^8A+@b30bSxep*yqQ4&#+P~pq;#PG?k z7jtChPH7OlL}HBgAOqN_{qxQrFHHkufGQ4H($Ty zB?30GahtdYkyG%FxyAxkLl6de>KIu%&Bwq$2`&~WB45eot po^q_`IdEoXJ#WKFGggN`tb4y)4=Q|m@Bt`RJYD@<);T3K0RX{9whRCO literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Back/Backpacks/waterbackpack.rsi/icon.png b/Resources/Textures/Clothing/Back/Backpacks/waterbackpack.rsi/icon.png index 7a5eac53021b0522c4ca91026b36a4c278c9f39e..d6636224af71dbde9cf2915900f42465f6ea9695 100644 GIT binary patch literal 829 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCijk1o(uwy2vCHC@$|XJ7gf~7%o?*s;X*bWtEkc)!yFjV5--d6TY}H*2Tpo z+}$=K*rRdD*7)fg^OtX(ws}|a{LSs>-fw*Q{o2<*l?%2`zWnjz`=6iw{9ASB%lvDf zD^9#y_UzlSkH027_>#AFN6+;~N8f+X?Vnn-_rR1}kB)u#(R=%8&5U_9Q|Ba1o0i$x zF?rd_f@N!fjtYvu{u4+Ulmz(&|0fMFBrUyA0o2P`;1OBOz`(a3gc&VZgH?cn5+$w? zCBgY=CFO}lsSE*$nRz98ey$-3rh0~YM!)wkZv(2?mKx!i=IN=$zyaj2GDtD9GB5&J zUO+4jWrIRlgOM35&IDu|GBPm;0O=?o&TMA^i)R7ZAh4{Ak>Ld}GGH{Cr3^r+3G56k zK$QkY#s-WFAf|$BWL*F;X$p`H0!%=2nZPQ8EG>X6s4hbT1CZfc;_P0rb*=8V1=r@iReb-y?60_xv&`IkUsnBReUoRGaAL`a z{ZH0AHnte4z3!f9xR}{6XJtr0P{!|+hA+Y;LK{j&AL&#Javo-J*&!T}zVdaUh@gjU z+B3F;xkjQZn>iS4&26k_&p)58u|dNA67$TC=Uw`G;^E!dB34#RIk)xlr)>{w^xLJ9 zFgN!rZ@GrS%x4U1n|@!dx~g?!{d-4U*&A!jZ9D7*8|)T7Nc_Dcbiy^|1IpJvUjBUg z^=)hG+21nx_dIxCCO<#^zO_i^a^Vj*{RmJJREm8X&Uw>rD zmeZ>9^BvdlN&Nt1v<(O#tdOv`s}S~2iXQvGZ}J}d0Ac^6sH4&lmLjmS`TnzCBfSqbLfpM;576$~G}JQjNy5g*T?DX^DVgY$I1d z(=-%C0jQEtReu#lQP4E4dj9&wVF3Ch7l1G$(UgE;tWR=rfA$psnx>IVCP^lf)pLe( zfKw;EtbY8;@>(TFdt~a8Xh^_tJ~zL_My^086e68YbMx*4wj40%>0l+lODK{iamvxPUd z<+V*C3P7dbKfQR2&FR2qvvI@$&h8^5F7<2RaT76Tr{QHz;Sr~(;D}NuL*AZg6?=}GO&4*<5G~1r_>aa?s zQh#R-07PyKlhxBKX5uVn;$-zSksHI!73-j_2ZSukVrFKBU@(ZPswAE)RS6lgSS;4^ z?b{{*5Q#*D+wCU%PN&xq0xEBT-g6Fic6LZ45^dSE^o|SrC&ggLIHSI402VWGR(7AG ud?|d|wmr*_(y)J0)JDLH^FtiszratQKuTA(jZF&x0000 Date: Tue, 11 Feb 2025 19:06:41 +0000 Subject: [PATCH 224/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 2dca204acd..9c884a4870 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: august-sun - changes: - - message: Rolling pins are now craftable. - type: Tweak - id: 7438 - time: '2024-09-25T17:27:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32285 - author: BramvanZijp changes: - message: Fixed an issue that caused Doctors Delight to metabolize twice the normal @@ -3897,3 +3890,10 @@ id: 7937 time: '2025-02-11T17:48:27.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35063 +- author: Terraspark4941 + changes: + - message: The spray nozzle can now be stored inside the backpack water tank! + type: Tweak + id: 7938 + time: '2025-02-11T19:05:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34209 From 46b19291eae7311c3ee946e45432f0552328792d Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Tue, 11 Feb 2025 16:34:24 -0500 Subject: [PATCH 225/313] Fix followers getting sent to nullspace when target is polymorphed (#33878) * Add an event for polymorph actions * Subscribe FollowerSystem to the event * Add check that unfollow target is actually current target. * Make followers try to follow on state update; Dirty follower on follow. --- .../Polymorph/Systems/PolymorphSystem.cs | 8 ++++++++ .../Follower/Components/FollowerComponent.cs | 2 +- Content.Shared/Follower/FollowerSystem.cs | 20 ++++++++++++++++++- Content.Shared/Polymorph/PolymorphEvents.cs | 10 ++++++++++ 4 files changed, 38 insertions(+), 2 deletions(-) create mode 100644 Content.Shared/Polymorph/PolymorphEvents.cs diff --git a/Content.Server/Polymorph/Systems/PolymorphSystem.cs b/Content.Server/Polymorph/Systems/PolymorphSystem.cs index 1514d580dd..2c06ba3be9 100644 --- a/Content.Server/Polymorph/Systems/PolymorphSystem.cs +++ b/Content.Server/Polymorph/Systems/PolymorphSystem.cs @@ -267,6 +267,10 @@ public sealed partial class PolymorphSystem : EntitySystem if (PausedMap != null) _transform.SetParent(uid, targetTransformComp, PausedMap.Value); + // Raise an event to inform anything that wants to know about the entity swap + var ev = new PolymorphedEvent(uid, child, false); + RaiseLocalEvent(uid, ref ev); + return child; } @@ -339,6 +343,10 @@ public sealed partial class PolymorphSystem : EntitySystem // if an item polymorph was picked up, put it back down after reverting _transform.AttachToGridOrMap(parent, parentXform); + // Raise an event to inform anything that wants to know about the entity swap + var ev = new PolymorphedEvent(uid, parent, true); + RaiseLocalEvent(uid, ref ev); + _popup.PopupEntity(Loc.GetString("polymorph-revert-popup-generic", ("parent", Identity.Entity(uid, EntityManager)), ("child", Identity.Entity(parent, EntityManager))), diff --git a/Content.Shared/Follower/Components/FollowerComponent.cs b/Content.Shared/Follower/Components/FollowerComponent.cs index 15d23a7037..ede810293f 100644 --- a/Content.Shared/Follower/Components/FollowerComponent.cs +++ b/Content.Shared/Follower/Components/FollowerComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Follower.Components; [RegisterComponent] [Access(typeof(FollowerSystem))] -[NetworkedComponent, AutoGenerateComponentState] +[NetworkedComponent, AutoGenerateComponentState(RaiseAfterAutoHandleState = true)] public sealed partial class FollowerComponent : Component { [AutoNetworkedField, DataField("following")] diff --git a/Content.Shared/Follower/FollowerSystem.cs b/Content.Shared/Follower/FollowerSystem.cs index 0c7bc99c46..d1adaa014a 100644 --- a/Content.Shared/Follower/FollowerSystem.cs +++ b/Content.Shared/Follower/FollowerSystem.cs @@ -6,6 +6,7 @@ using Content.Shared.Ghost; using Content.Shared.Hands; using Content.Shared.Movement.Events; using Content.Shared.Movement.Pulling.Events; +using Content.Shared.Polymorph; using Content.Shared.Tag; using Content.Shared.Verbs; using Robust.Shared.Containers; @@ -38,10 +39,12 @@ public sealed class FollowerSystem : EntitySystem SubscribeLocalEvent(OnFollowerMove); SubscribeLocalEvent(OnPullStarted); SubscribeLocalEvent(OnFollowerTerminating); + SubscribeLocalEvent(OnAfterHandleState); SubscribeLocalEvent(OnFollowedAttempt); SubscribeLocalEvent(OnGotEquippedHand); SubscribeLocalEvent(OnFollowedTerminating); + SubscribeLocalEvent(OnFollowedPolymorphed); SubscribeLocalEvent(OnBeforeSave); } @@ -135,6 +138,11 @@ public sealed class FollowerSystem : EntitySystem StopFollowingEntity(uid, component.Following, deparent: false); } + private void OnAfterHandleState(Entity entity, ref AfterAutoHandleStateEvent args) + { + StartFollowingEntity(entity, entity.Comp.Following); + } + // Since we parent our observer to the followed entity, we need to detach // before they get deleted so that we don't get recursively deleted too. private void OnFollowedTerminating(EntityUid uid, FollowedComponent component, ref EntityTerminatingEvent args) @@ -142,6 +150,15 @@ public sealed class FollowerSystem : EntitySystem StopAllFollowers(uid, component); } + private void OnFollowedPolymorphed(Entity entity, ref PolymorphedEvent args) + { + foreach (var follower in entity.Comp.Following) + { + // Stop following the target's old entity and start following the new one + StartFollowingEntity(follower, args.NewEntity); + } + } + /// /// Makes an entity follow another entity, by parenting to it. /// @@ -202,6 +219,7 @@ public sealed class FollowerSystem : EntitySystem RaiseLocalEvent(follower, followerEv); RaiseLocalEvent(entity, entityEv); Dirty(entity, followedComp); + Dirty(follower, followerComp); } /// @@ -213,7 +231,7 @@ public sealed class FollowerSystem : EntitySystem if (!Resolve(target, ref followed, false)) return; - if (!HasComp(uid)) + if (!TryComp(uid, out var followerComp) || followerComp.Following != target) return; followed.Following.Remove(uid); diff --git a/Content.Shared/Polymorph/PolymorphEvents.cs b/Content.Shared/Polymorph/PolymorphEvents.cs new file mode 100644 index 0000000000..f2a478c34f --- /dev/null +++ b/Content.Shared/Polymorph/PolymorphEvents.cs @@ -0,0 +1,10 @@ +namespace Content.Shared.Polymorph; + +/// +/// Raised locally on an entity when it polymorphs into another entity +/// +/// EntityUid of the entity before the polymorph +/// EntityUid of the entity after the polymorph +/// Whether this polymorph event was a revert back to the original entity +[ByRefEvent] +public record struct PolymorphedEvent(EntityUid OldEntity, EntityUid NewEntity, bool IsRevert); From 072d2f4834f22c22b101de2b91ab8489e80221f2 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 11 Feb 2025 21:35:31 +0000 Subject: [PATCH 226/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 9c884a4870..1cf2e5cf5f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: BramvanZijp - changes: - - message: Fixed an issue that caused Doctors Delight to metabolize twice the normal - speed, which also halved its effectiveness. - type: Fix - id: 7439 - time: '2024-09-25T17:39:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32297 - author: Ilya246 changes: - message: Atmos gas sell prices significantly lowered. @@ -3897,3 +3889,11 @@ id: 7938 time: '2025-02-11T19:05:35.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34209 +- author: Tayrtahn + changes: + - message: Ghosts are no longer sent to the void if the player they are following + is polymorphed. + type: Fix + id: 7939 + time: '2025-02-11T21:34:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33878 From bf20b6bb6ebb898c0e8c8b02ec619a89f4c8a64c Mon Sep 17 00:00:00 2001 From: Spessmann <156740760+Spessmann@users.noreply.github.com> Date: Tue, 11 Feb 2025 13:44:18 -0800 Subject: [PATCH 227/313] Convex update (#35086) convex update #5 --- Resources/Maps/convex.yml | 1140 +++++++++++++++++++++++++------------ 1 file changed, 775 insertions(+), 365 deletions(-) diff --git a/Resources/Maps/convex.yml b/Resources/Maps/convex.yml index 5ffc726dbf..f0803aab52 100644 --- a/Resources/Maps/convex.yml +++ b/Resources/Maps/convex.yml @@ -72,19 +72,19 @@ entities: version: 6 1,4: ind: 1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAACAAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAACAAAAAABAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 1,5: ind: 1,5 - tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACAAAAAACAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACAAAAAABAgAAAAAACAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACAAAAAABAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACAAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 1,6: ind: 1,6 - tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACBQAAAAACBQAAAAACBQAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAABBQAAAAAABQAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAABBQAAAAADBQAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAD + tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADBQAAAAAABQAAAAADBQAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACBQAAAAAABQAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAADBQAAAAABBQAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAAC version: 6 1,7: ind: 1,7 - tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAADIQAAAAADIQAAAAADAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAABQAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAADAgAAAAAAIQAAAAABIQAAAAADAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAADBQAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAIAAAAAAAAgAAAAAABgAAAAAABgAAAAADBgAAAAABAgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAEAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAADAgAAAAAAAgAAAAAAIAAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAADBgAAAAAABgAAAAACBgAAAAAABgAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAABBgAAAAABBgAAAAACAgAAAAAABgAAAAAABgAAAAACBgAAAAACBgAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAADIQAAAAAAIQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAABQAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAADAgAAAAAAIQAAAAACIQAAAAABAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAACBQAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAIAAAAAAAAgAAAAAABgAAAAABBgAAAAABBgAAAAABAgAAAAAAIAAAAAAFIAAAAAAAIAAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAADBgAAAAAABgAAAAAABgAAAAADBgAAAAAAAgAAAAAAAgAAAAAAIAAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAACBgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAACBgAAAAADBgAAAAAAAgAAAAAABgAAAAACBgAAAAACBgAAAAAABgAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 1,8: ind: 1,8 @@ -96,35 +96,35 @@ entities: version: 6 10,2: ind: 10,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQAAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQAAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA version: 6 10,3: ind: 10,3 - tiles: AwAAAAABAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA + tiles: AwAAAAADAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA version: 6 10,4: ind: 10,4 - tiles: AgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAAABwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAAABwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAACBwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAACBwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAADBwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAABBwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,5: ind: 10,5 - tiles: AwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,6: ind: 10,6 - tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAACCAAAAAAACAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAADCAAAAAACCAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,7: ind: 10,7 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,8: ind: 10,8 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,9: ind: 10,9 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAAACgAAAAADCAAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAADCgAAAAAACAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAABCgAAAAABCAAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAADCgAAAAABCAAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 11,2: ind: 11,2 @@ -144,31 +144,31 @@ entities: version: 6 2,1: ind: 2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAACAAAAAACBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAAACAAAAAABCQAAAAAACAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACQAAAAAAAgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAACAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAACCAAAAAAACQAAAAAACAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAADCAAAAAABBQAAAAACAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAADCAAAAAAABQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAACCAAAAAABCQAAAAAACAAAAAADCAAAAAABCAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACQAAAAAAAgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAADAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAACCAAAAAAACQAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAACAAAAAAABQAAAAACAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAA version: 6 2,2: ind: 2,2 - tiles: AQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAAACAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAACAAAAAADCAAAAAACCAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAACCAAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAADCAAAAAABCAAAAAACAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAA + tiles: AQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAAACAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAACCAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAACAAAAAABCAAAAAABCAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAAACAAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAAACAAAAAACCAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAACCAAAAAAACAAAAAABAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAA version: 6 2,3: ind: 2,3 - tiles: AgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAACAgAAAAAACAAAAAABCAAAAAAACAAAAAACAgAAAAAACAAAAAACCgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAAACgAAAAAACAAAAAAACgAAAAABCAAAAAACCAAAAAAAFAAAAAAACAAAAAADCAAAAAABCAAAAAABAgAAAAAACAAAAAABCAAAAAABAgAAAAAACAAAAAACCgAAAAABCAAAAAABCAAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAAAFAAAAAAACAAAAAADCAAAAAABCAAAAAACAgAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAABFAAAAAAACAAAAAABCAAAAAABCAAAAAACAgAAAAAACAAAAAACCAAAAAABCAAAAAABCgAAAAADCAAAAAADCAAAAAABCAAAAAABCAAAAAAACAAAAAAACgAAAAADCAAAAAABAgAAAAAACAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAAAAgAAAAAACAAAAAADAgAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAABAgAAAAAACAAAAAAACAAAAAABCAAAAAACCgAAAAADCAAAAAACAgAAAAAACwAAAAAAAgAAAAAACAAAAAABCgAAAAACCAAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABAgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAAAAgAAAAAACwAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAADAgAAAAAACAAAAAAACAAAAAACCAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAACCgAAAAACCAAAAAABAgAAAAAACwAAAAACAgAAAAAACAAAAAAACgAAAAADCAAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAACCAAAAAABAgAAAAAACwAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAACAgAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAAACAAAAAACCAAAAAADCAAAAAACCgAAAAABCAAAAAABAgAAAAAACwAAAAADAgAAAAAACAAAAAABCgAAAAAACAAAAAADAgAAAAAACAAAAAADCAAAAAACCAAAAAAAFAAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAADAgAAAAAACwAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAADAgAAAAAACAAAAAABCAAAAAACCAAAAAABFAAAAAAACAAAAAAACAAAAAABCAAAAAABCgAAAAACCAAAAAACAgAAAAAACwAAAAACAgAAAAAACAAAAAAACgAAAAACCAAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAAAAgAAAAAACAAAAAAACgAAAAADCAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAACFAAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAACgAAAAADCAAAAAABCgAAAAADCAAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAADCgAAAAAACAAAAAAAFAAAAAAACAAAAAABCAAAAAABCAAAAAAAAgAAAAAACAAAAAADCgAAAAABCAAAAAACCAAAAAACCgAAAAADCAAAAAABCgAAAAABCAAAAAAACgAAAAAACAAAAAAACAAAAAACFAAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAACAAAAAABCAAAAAAD + tiles: AgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAADAgAAAAAACAAAAAACCAAAAAACCAAAAAAAAgAAAAAACAAAAAADCgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAADCgAAAAACCAAAAAABCgAAAAACCAAAAAACCAAAAAAAFAAAAAAACAAAAAABCAAAAAABCAAAAAAAAgAAAAAACAAAAAACCAAAAAACAgAAAAAACAAAAAADCgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAACCAAAAAACCAAAAAACFAAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAADCAAAAAAAFAAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAACAAAAAACCAAAAAADCAAAAAABCgAAAAACCAAAAAACCAAAAAAACAAAAAACCAAAAAABCAAAAAAACgAAAAABCAAAAAADAgAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAACAAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAACCgAAAAADCAAAAAAAAgAAAAAACwAAAAADAgAAAAAACAAAAAAACgAAAAABCAAAAAACAgAAAAAACAAAAAADCAAAAAADCAAAAAADAgAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAACCAAAAAAAAgAAAAAACwAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAADAgAAAAAACAAAAAABCAAAAAACCAAAAAACCgAAAAADCAAAAAACAgAAAAAACwAAAAACAgAAAAAACAAAAAACCgAAAAABCAAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAABAgAAAAAACwAAAAADAgAAAAAACAAAAAACCAAAAAACCAAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAAAFAAAAAAACAAAAAADCAAAAAABCAAAAAADCgAAAAADCAAAAAADAgAAAAAACwAAAAACAgAAAAAACAAAAAAACgAAAAADCAAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAADFAAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAACCAAAAAADAgAAAAAACwAAAAACAgAAAAAACAAAAAACCAAAAAABCAAAAAADAgAAAAAACAAAAAAACAAAAAADCAAAAAABFAAAAAAACAAAAAAACAAAAAABCAAAAAAACgAAAAAACAAAAAABAgAAAAAACwAAAAADAgAAAAAACAAAAAABCgAAAAABCAAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAAAAgAAAAAACAAAAAACCgAAAAABCAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAAAFAAAAAAACAAAAAADCAAAAAADCAAAAAABAgAAAAAAAgAAAAAACgAAAAABCAAAAAAACgAAAAADCAAAAAACCAAAAAACCAAAAAABCAAAAAACCAAAAAACCgAAAAADCAAAAAABFAAAAAAACAAAAAACCAAAAAAACAAAAAADAgAAAAAACAAAAAACCgAAAAAACAAAAAAACAAAAAACCgAAAAADCAAAAAABCgAAAAACCAAAAAABCgAAAAABCAAAAAADCAAAAAAAFAAAAAAACAAAAAACCAAAAAACCAAAAAABAgAAAAAACAAAAAAACAAAAAAC version: 6 2,4: ind: 2,4 - tiles: CAAAAAADCAAAAAABCAAAAAABCAAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAADCAAAAAABAgAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAACAAAAAABCgAAAAABAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAADCgAAAAACDAAAAAAADAAAAAADDAAAAAACDAAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAACAgAAAAAACAAAAAADCAAAAAADCAAAAAACAgAAAAAACAAAAAADCAAAAAACDAAAAAADDAAAAAADDAAAAAADDAAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAADBwAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAADAAAAAAADQAAAAAADAAAAAADDAAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAACAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAABBwAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAACCAAAAAACAgAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAABBwAAAAADBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAABAgAAAAAACAAAAAACCAAAAAADCAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAADAgAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABCAAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAADCAAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABCAAAAAABBwAAAAACBwAAAAADBwAAAAAABwAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAADCAAAAAADCAAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADCAAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAACAAAAAADCAAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACCAAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABAgAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAA + tiles: CAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAACCAAAAAADCAAAAAACCAAAAAABCAAAAAACAgAAAAAACAAAAAABCAAAAAACCAAAAAAAAgAAAAAACAAAAAADCgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAADCgAAAAACDAAAAAAADAAAAAABDAAAAAACDAAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAACAAAAAACCAAAAAADDAAAAAACDAAAAAACDAAAAAABDAAAAAABBwAAAAADBwAAAAAABwAAAAACBwAAAAACBwAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAADAAAAAADDQAAAAAADAAAAAABDAAAAAACAgAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAACAgAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAACAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAAACAAAAAACBwAAAAACBwAAAAADBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAACAAAAAACAgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAACBwAAAAACBwAAAAABBwAAAAADBwAAAAADBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAABCAAAAAAACAAAAAAACAAAAAADBwAAAAACBwAAAAACBwAAAAACBwAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABCAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAACAAAAAAACAAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAACAAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABCAAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAADAgAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAACAAAAAABCAAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAACAAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAA version: 6 2,5: ind: 2,5 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAAABQAAAAADBQAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAwAAAAADBQAAAAADAwAAAAADBQAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAABBQAAAAADBAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAAABQAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAADBQAAAAADBAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAADAwAAAAADBQAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACBAAAAAAABAAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAAABQAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAABBQAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABBQAAAAABBAAAAAAABAAAAAAABAAAAAAAAwAAAAAABQAAAAABAwAAAAADBQAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAADBAAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAC + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAADBQAAAAADBQAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACBAAAAAAABAAAAAAABAAAAAAAAwAAAAACBQAAAAADAwAAAAAABQAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAABQAAAAABBAAAAAAABAAAAAAAAgAAAAAAAwAAAAAABQAAAAABAwAAAAABBQAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABBQAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAABQAAAAABAwAAAAABBQAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACBAAAAAAABAAAAAAAAgAAAAAAAwAAAAACBQAAAAAAAwAAAAAABQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACBQAAAAAAAwAAAAACBQAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAACBQAAAAACBAAAAAAABAAAAAAABAAAAAAAAwAAAAAABQAAAAAAAwAAAAACBQAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAACBAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAB version: 6 2,6: ind: 2,6 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAACCwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAAACAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAACCAAAAAADCAAAAAAACAAAAAABCAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAADCAAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAgAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAABCAAAAAADAwAAAAAAAwAAAAAAAwAAAAAACAAAAAACCAAAAAADCAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCAAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAADAwAAAAADAgAAAAAAAwAAAAABAgAAAAAACgAAAAACCgAAAAABCgAAAAACAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAACgAAAAADCgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAB + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAACCwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAABCwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAgAAAAAACAAAAAACCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAACAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAAACAAAAAAAAwAAAAADAwAAAAACAwAAAAABCAAAAAADCAAAAAABCAAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAACAAAAAABCAAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAADAwAAAAABAgAAAAAAAwAAAAACAgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAACgAAAAACCgAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAAC version: 6 2,7: ind: 2,7 - tiles: AwAAAAADBQAAAAABBQAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACBQAAAAAABQAAAAACBQAAAAACAwAAAAABBQAAAAAABQAAAAACBQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAgAAAAAABQAAAAACAwAAAAADBQAAAAACAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAACCgAAAAABCgAAAAACCgAAAAACCAAAAAACCAAAAAADCAAAAAABAwAAAAAABQAAAAAAAwAAAAADBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACgAAAAAACgAAAAACCgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAABAgAAAAAAAwAAAAABAgAAAAAACwAAAAAACwAAAAACAgAAAAAACAAAAAADCgAAAAADCgAAAAADCgAAAAAACAAAAAADAgAAAAAACwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAgAAAAAACwAAAAABCwAAAAABAgAAAAAACAAAAAAACgAAAAAACgAAAAACCgAAAAABCAAAAAAAAgAAAAAACwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADBwAAAAABAgAAAAAABwAAAAAABwAAAAABFgAAAAADBwAAAAABAgAAAAAABwAAAAADAgAAAAAACwAAAAABCwAAAAADCwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAABAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAAAAgAAAAAACwAAAAACCwAAAAACCwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAACAgAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAACAgAAAAAACwAAAAACCwAAAAACCwAAAAADAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAFgAAAAAGBwAAAAADBwAAAAACAgAAAAAABwAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAACwAAAAAACwAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAABFgAAAAACBwAAAAACAwAAAAACCwAAAAABCwAAAAABAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAACBQAAAAABBQAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAABQAAAAADBQAAAAABBQAAAAAAAwAAAAABBQAAAAACBQAAAAACBQAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABQAAAAADAwAAAAADBQAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAAACgAAAAABCgAAAAADCgAAAAADCAAAAAABCAAAAAABCAAAAAAAAwAAAAACBQAAAAAAAwAAAAACBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCgAAAAABCgAAAAAACgAAAAABCAAAAAACAgAAAAAAAgAAAAAAAwAAAAADBQAAAAACAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAACwAAAAADCwAAAAADAgAAAAAACAAAAAABCgAAAAACCgAAAAACCgAAAAABCAAAAAADAgAAAAAACwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAgAAAAAACwAAAAAACwAAAAABAgAAAAAACAAAAAADCgAAAAADCgAAAAADCgAAAAACCAAAAAADAgAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAABwAAAAAAAgAAAAAABwAAAAADBwAAAAADFgAAAAAGBwAAAAABAgAAAAAABwAAAAACAgAAAAAACwAAAAADCwAAAAACCwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADAgAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAADAgAAAAAACwAAAAAACwAAAAACCwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAADBwAAAAACAgAAAAAACwAAAAADCwAAAAABCwAAAAACAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAFgAAAAAGBwAAAAACBwAAAAABAgAAAAAABwAAAAACAgAAAAAABwAAAAACAgAAAAAAAgAAAAAACwAAAAABCwAAAAACAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAACFgAAAAADBwAAAAADAwAAAAACCwAAAAADCwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 2,8: ind: 2,8 @@ -184,43 +184,43 @@ entities: version: 6 3,1: ind: 3,1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADBAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAADBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAABQAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADBQAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADBAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABBAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACBQAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABBQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACBAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 3,10: ind: 3,10 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAwAAAAAAAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAACAwAAAAAABAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAwAAAAACAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAwAAAAAAAwAAAAACCAAAAAABCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAADAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACBAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAABBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAABBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAACAAAAAABBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAwAAAAADAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAwAAAAAAAwAAAAAABAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAABAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAwAAAAAAAwAAAAADCAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAwAAAAADAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAABAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAACAAAAAACBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAACAAAAAABBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAACAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAA version: 6 3,3: ind: 3,3 - tiles: CAAAAAACCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAACBwAAAAABAgAAAAAADAAAAAABDAAAAAACAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAACBwAAAAABDAAAAAACDAAAAAACDAAAAAADAgAAAAAABwAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAAABwAAAAADAgAAAAAADAAAAAAADAAAAAABAgAAAAAABwAAAAAACAAAAAADCAAAAAADCAAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADCAAAAAACCAAAAAADCAAAAAACCAAAAAAACAAAAAACCAAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAADCAAAAAAAAgAAAAAABwAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAAACAAAAAADCAAAAAAACAAAAAABAgAAAAAAAwAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAABAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAABAgAAAAAAAwAAAAACCAAAAAACCAAAAAACCAAAAAACCAAAAAACCAAAAAADCAAAAAABAgAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAAACAAAAAABAgAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAABCAAAAAABCAAAAAACCAAAAAABCAAAAAACAgAAAAAACgAAAAACCAAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAACgAAAAABAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAABAgAAAAAACgAAAAABCgAAAAAACgAAAAABCgAAAAABCgAAAAACCgAAAAAACgAAAAABBQAAAAAAAgAAAAAACgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAADAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAD + tiles: CAAAAAAACAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAgAAAAAADAAAAAAADAAAAAABAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAAABwAAAAABDAAAAAABDAAAAAABDAAAAAAAAgAAAAAABwAAAAABCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAACBwAAAAADAgAAAAAADAAAAAADDAAAAAAAAgAAAAAABwAAAAADCAAAAAABCAAAAAABCAAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABCAAAAAACCAAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAAACAAAAAAAAgAAAAAABwAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAAACAAAAAABCAAAAAADAgAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAACCAAAAAADCAAAAAACCAAAAAACAgAAAAAAAwAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAADCAAAAAACCAAAAAACAgAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAACAgAAAAAAAwAAAAABCAAAAAABCAAAAAABCAAAAAADCAAAAAABCAAAAAADCAAAAAADAgAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAACCAAAAAABCAAAAAADCAAAAAACAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAABCAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAADCAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAADCAAAAAADCAAAAAACAgAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAADCAAAAAACCAAAAAACAgAAAAAACgAAAAADCAAAAAADCAAAAAADCAAAAAABCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAACgAAAAACAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAABAgAAAAAACgAAAAAACgAAAAADCgAAAAABCgAAAAADCgAAAAABCgAAAAACCgAAAAADBQAAAAABAgAAAAAACgAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAABAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAA version: 6 3,4: ind: 3,4 - tiles: CAAAAAAACAAAAAAACgAAAAAACgAAAAADBQAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABCgAAAAADCAAAAAACCgAAAAAACgAAAAABBQAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACCAAAAAABCAAAAAAACAAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAACAAAAAABCAAAAAADCAAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAABCAAAAAACCAAAAAACCAAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAACCAAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAACCQAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAACAAAAAADCgAAAAADCgAAAAADCAAAAAADCAAAAAABAgAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAA + tiles: CAAAAAACCAAAAAAACgAAAAAACgAAAAABBQAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABCgAAAAACCAAAAAABCgAAAAAACgAAAAADBQAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADCAAAAAABCAAAAAACCAAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABAgAAAAAACAAAAAADCAAAAAADCAAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAACCAAAAAAACAAAAAAACAAAAAABAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAACCQAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAgAAAAAACAAAAAAACgAAAAABCgAAAAABCAAAAAACCAAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAA version: 6 3,5: ind: 3,5 - tiles: AwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAAACAAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAADFAAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAAACAAAAAAACAAAAAADBQAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAADFAAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAAACAAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACFAAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAADCAAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADFAAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAADCAAAAAABBQAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABFAAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAACBQAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAwAAAAACBQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAAABQAAAAAAAwAAAAAABQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAABBQAAAAADAwAAAAADBQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABFAAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAD + tiles: AwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAAACAAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAAACAAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABFAAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAABCAAAAAABBQAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADFAAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAACCAAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADFAAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAFAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACFAAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAAABQAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADFAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAAABQAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAABBQAAAAADAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAABBQAAAAAAAwAAAAAABQAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAACBQAAAAABAwAAAAAABQAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAAAFAAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAD version: 6 3,6: ind: 3,6 - tiles: AwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABFAAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAABQAAAAAABQAAAAADBQAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADFAAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAAAEAAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAEAAAAAAAEQAAAAADEAAAAAAAEQAAAAABEAAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADFAAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAEAAAAAAAEQAAAAACEAAAAAABEQAAAAAAEAAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACFAAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAEAAAAAACEQAAAAACEAAAAAACEQAAAAABEAAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAACEAAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACCAAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABCgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADBQAAAAACBQAAAAABBQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADFAAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAADEAAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAEAAAAAAAEQAAAAABEAAAAAAAEQAAAAABEAAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAFAAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAEAAAAAABEQAAAAABEAAAAAACEQAAAAADEAAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACFAAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAEAAAAAACEQAAAAADEAAAAAAAEQAAAAACEAAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAEAAAAAABEAAAAAABEAAAAAADEAAAAAADEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAACAAAAAAACAAAAAACCAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAACAAAAAABAgAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAACgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 3,7: ind: 3,7 - tiles: AwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACFAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAABAwAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADFAAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAACwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAEAAAAAADEAAAAAADEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAABCwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAADAgAAAAAAEAAAAAABAgAAAAAAEAAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAADAgAAAAAAEAAAAAACAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAABCwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAABCwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAACCwAAAAABCwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAACCwAAAAABCwAAAAABAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAABCwAAAAAACwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAA + tiles: AwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABFAAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAABAwAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADFAAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADCwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAAAEAAAAAACEAAAAAADEAAAAAADCwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAADAgAAAAAAEAAAAAABAgAAAAAAEAAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAACwAAAAAACwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAACCwAAAAACCwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAACCwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAADCwAAAAACCwAAAAADAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAADCwAAAAABCwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAA version: 6 3,8: ind: 3,8 - tiles: AAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAIgAAAAAAIgAAAAACIgAAAAABAgAAAAAAIgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAABIgAAAAAAAgAAAAAAIgAAAAAAAgAAAAAAAgAAAAAAIgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAADAgAAAAAAIgAAAAADIgAAAAADIgAAAAACIgAAAAACAgAAAAAAIgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAAAAgAAAAAAAgAAAAAAIgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAIgAAAAACIgAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAIgAAAAABAgAAAAAAIgAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAADIgAAAAAAIgAAAAAAIgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAAAIgAAAAACIgAAAAACIgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAA + tiles: AAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAIgAAAAADIgAAAAACIgAAAAAAAgAAAAAAIgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAACIgAAAAABAgAAAAAAIgAAAAABAgAAAAAAAgAAAAAAIgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAAAAgAAAAAAIgAAAAABIgAAAAADIgAAAAACIgAAAAACAgAAAAAAIgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAABAgAAAAAAAgAAAAAAIgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAIgAAAAABIgAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAIgAAAAACAgAAAAAAIgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAADIgAAAAACIgAAAAABIgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAADIgAAAAAAIgAAAAADIgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAA version: 6 3,9: ind: 3,9 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACIwAAAAACEwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIwAAAAAAHgAAAAAAIwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAACIwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAHgAAAAAAIwAAAAADHgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAACgAAAAABFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAABCgAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAACgAAAAABAgAAAAAAEwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACgAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABCgAAAAAAAwAAAAACEwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAAEAgAAAAAAAwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACIwAAAAACEwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIwAAAAAAHgAAAAAAIwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAADIwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAHgAAAAAAIwAAAAADHgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAACgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAABCgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADCgAAAAABAgAAAAAAEwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACgAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABCgAAAAABAwAAAAADEwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAACAgAAAAAAAwAAAAAD version: 6 4,0: ind: 4,0 @@ -228,35 +228,35 @@ entities: version: 6 4,1: ind: 4,1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,10: ind: 4,10 - tiles: AwAAAAABEwAAAAAEAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAACJAAAAAAAAgAAAAAAJAAAAAABJAAAAAACAgAAAAAAJAAAAAABAwAAAAACAwAAAAADAwAAAAACFgAAAAADBwAAAAADAgAAAAAAAgAAAAAAFgAAAAACAgAAAAAAJAAAAAADAgAAAAAAJAAAAAABJAAAAAADJAAAAAACJAAAAAACJAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAACBwAAAAABFgAAAAADAgAAAAAAJAAAAAABJAAAAAAAJAAAAAABJAAAAAADJAAAAAABJAAAAAABJAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABwAAAAAAFgAAAAAAFgAAAAACBwAAAAABFgAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AwAAAAAAEwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAAAJAAAAAADAgAAAAAAJAAAAAADJAAAAAADAgAAAAAAJAAAAAABAwAAAAABAwAAAAABAwAAAAADFgAAAAACBwAAAAABAgAAAAAAAgAAAAAAFgAAAAAFAgAAAAAAJAAAAAADAgAAAAAAJAAAAAAAJAAAAAAAJAAAAAADJAAAAAABJAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAABwAAAAAAFgAAAAAFAgAAAAAAJAAAAAADJAAAAAABJAAAAAAAJAAAAAADJAAAAAACJAAAAAAAJAAAAAACAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABwAAAAACFgAAAAADFgAAAAAABwAAAAACFgAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,2: ind: 4,2 - tiles: AgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAD + tiles: AgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAAC version: 6 4,3: ind: 4,3 - tiles: AgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAACBwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAADBwAAAAADBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAADBwAAAAADBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAABBwAAAAABBwAAAAADBwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAADBwAAAAACBwAAAAADBwAAAAACHwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAADHwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACHwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAABBwAAAAACBwAAAAADHwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAACAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAABwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAADFAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAA + tiles: AgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAACBwAAAAADBwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAABwAAAAADBwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAADBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACAwAAAAADAwAAAAAAAwAAAAADAgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAACAwAAAAACAwAAAAACAwAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAADBwAAAAABBwAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAABBwAAAAADAwAAAAADAwAAAAAAAwAAAAACAgAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAgAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAABHwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAABwAAAAABBwAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABHwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAABHwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAACHwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADFAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAB version: 6 4,4: ind: 4,4 - tiles: AwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAFAAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAACCAAAAAAAAgAAAAAACwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAADBwAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAABCAAAAAABAgAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAABAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAADCAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAABCAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAADAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAACgAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAAACAAAAAABCAAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAABCAAAAAAACAAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAABCAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAABCAAAAAABCAAAAAABCAAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAFAAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAACAgAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAADCAAAAAABAgAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAACAgAAAAAACwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAACAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAADCAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAABAgAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAAACAAAAAACCAAAAAABAgAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAABCAAAAAABCAAAAAABCAAAAAADCAAAAAADAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAACgAAAAADCAAAAAACCAAAAAACCAAAAAACCAAAAAACCAAAAAABCAAAAAACCAAAAAACCAAAAAADCAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAABCAAAAAAACAAAAAABCAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAACAAAAAACCAAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAABCAAAAAADCAAAAAAACAAAAAACCAAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 4,5: ind: 4,5 - tiles: AgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAACAwAAAAAABQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAADAwAAAAABAwAAAAAABQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADBQAAAAAAAwAAAAADAwAAAAACBQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAADCAAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAEQAAAAABEQAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAABAgAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAADAgAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAABEAAAAAACEAAAAAACEAAAAAADAgAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAAAAgAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAADEAAAAAACEAAAAAACEAAAAAABEAAAAAADAgAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAABAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEAAAAAACEQAAAAACEQAAAAABEAAAAAABEQAAAAABEQAAAAADEQAAAAADAgAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAABAgAAAAAAEQAAAAABEQAAAAACEQAAAAAAEAAAAAAAEQAAAAACEQAAAAACEAAAAAACEQAAAAAAEQAAAAAAEQAAAAAC + tiles: AgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAAAAwAAAAABAwAAAAADBQAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAABAwAAAAADAwAAAAAABQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAABQAAAAABAwAAAAABAwAAAAACBQAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAADCAAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAEQAAAAACEQAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAABEAAAAAACEAAAAAACEAAAAAABEAAAAAACEAAAAAAAEAAAAAACAgAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAAAAgAAAAAAEAAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAACEAAAAAACEAAAAAABEAAAAAADAgAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAABAgAAAAAAEAAAAAABEAAAAAACEAAAAAADEAAAAAADEAAAAAAAEAAAAAACEAAAAAAAEAAAAAACEAAAAAADEAAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAADAgAAAAAAEQAAAAACEQAAAAABEQAAAAADEAAAAAACEQAAAAABEQAAAAADEAAAAAADEQAAAAADEQAAAAAAEQAAAAACAgAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAADAgAAAAAAEQAAAAAAEQAAAAADEQAAAAAAEAAAAAADEQAAAAABEQAAAAABEAAAAAADEQAAAAACEQAAAAABEQAAAAAC version: 6 4,6: ind: 4,6 - tiles: AgAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAADEAAAAAABEAAAAAACEAAAAAACEAAAAAADEAAAAAAAEAAAAAACAgAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAABAgAAAAAAEAAAAAAAEAAAAAAAEQAAAAAAEQAAAAADEQAAAAADEQAAAAADEQAAAAABEQAAAAADEAAAAAABEAAAAAABAgAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAACEAAAAAABEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACAgAAAAAAEQAAAAABEQAAAAADEQAAAAACEAAAAAABEQAAAAABEQAAAAADEAAAAAADEQAAAAADEQAAAAAAEQAAAAACAgAAAAAAEAAAAAABEAAAAAAAEAAAAAABEAAAAAABAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEAAAAAAAEQAAAAAAEQAAAAADEAAAAAACEQAAAAAAEQAAAAABEQAAAAACAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAAAEQAAAAABAgAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAACEAAAAAACEAAAAAACEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAACEQAAAAABAgAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACAgAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAADEQAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAAAEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAADEAAAAAADEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAACwAAAAAACwAAAAADCwAAAAACCwAAAAAACwAAAAABCwAAAAACCwAAAAABCwAAAAABCwAAAAABCwAAAAACCwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AgAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAACEAAAAAACEAAAAAABEAAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAABAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACAgAAAAAAEAAAAAABEAAAAAAAEQAAAAAAEQAAAAABEQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEAAAAAADEAAAAAABAgAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAADEAAAAAABEAAAAAACEAAAAAABEAAAAAACEAAAAAABEAAAAAABEAAAAAACEAAAAAABEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAACAgAAAAAAEQAAAAADEQAAAAABEQAAAAAAEAAAAAADEQAAAAADEQAAAAADEAAAAAACEQAAAAADEQAAAAADEQAAAAAAAgAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAACAgAAAAAAEQAAAAABEQAAAAADEQAAAAACEAAAAAACEQAAAAACEQAAAAADEAAAAAABEQAAAAACEQAAAAACEQAAAAAAAgAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAADEQAAAAABAgAAAAAAEAAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAABEAAAAAABEAAAAAABEAAAAAADAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAACEQAAAAACAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAACAgAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAAAEQAAAAAAAgAAAAAAEAAAAAABEAAAAAACEAAAAAADEAAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAACEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAACwAAAAABCwAAAAAACwAAAAAACwAAAAADCwAAAAABCwAAAAADCwAAAAAACwAAAAAACwAAAAADCwAAAAADCwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 4,7: ind: 4,7 - tiles: AwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAADEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACBQAAAAACBQAAAAADBQAAAAADAwAAAAACAgAAAAAAAwAAAAADEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAABEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACBQAAAAACBQAAAAABBQAAAAADAwAAAAADAgAAAAAAAwAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 4,8: ind: 4,8 @@ -264,7 +264,7 @@ entities: version: 6 4,9: ind: 4,9 - tiles: BAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAABJAAAAAACJAAAAAADJAAAAAAAJAAAAAAAJAAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAAAJAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: BAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAAAJAAAAAADJAAAAAADJAAAAAAAJAAAAAAAJAAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAAAJAAAAAADAgAAAAAAAgAAAAAAAgAAAAAA version: 6 5,0: ind: 5,0 @@ -272,43 +272,43 @@ entities: version: 6 5,1: ind: 5,1 - tiles: AwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAFAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADFAAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAC + tiles: AwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADFAAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAFAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAQAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAQAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAB version: 6 5,10: ind: 5,10 - tiles: JAAAAAAAJAAAAAABJAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAABAgAAAAAAJAAAAAABAgAAAAAAJAAAAAACJAAAAAACAgAAAAAAAgAAAAAAJQAAAAAAJQAAAAADJQAAAAABJQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAACJAAAAAAAJAAAAAABAgAAAAAAJAAAAAAAAgAAAAAAJQAAAAADJQAAAAACAgAAAAAAJQAAAAABJQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAAAJQAAAAABAgAAAAAAJQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAJQAAAAACAgAAAAAAAgAAAAAAJQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAJQAAAAACJQAAAAACAgAAAAAAJQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAJgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAJgAAAAAAAgAAAAAAJgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAJgAAAAAAJgAAAAAAAgAAAAAAJgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA + tiles: JAAAAAADJAAAAAABJAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAACAgAAAAAAJAAAAAABAgAAAAAAJAAAAAABJAAAAAADAgAAAAAAAgAAAAAAJQAAAAABJQAAAAAAJQAAAAACJQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAABJAAAAAABJAAAAAAAAgAAAAAAJAAAAAADAgAAAAAAJQAAAAADJQAAAAABAgAAAAAAJQAAAAACJQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAABJQAAAAACAgAAAAAAJQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAJQAAAAACAgAAAAAAAgAAAAAAJQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAJQAAAAADJQAAAAAAAgAAAAAAJQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAJgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADEwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAJgAAAAAAAgAAAAAAJgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAJgAAAAAAJgAAAAAAAgAAAAAAJgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA version: 6 5,2: ind: 5,2 - tiles: AAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAAACAAAAAAACAAAAAADCAAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAABCAAAAAAACAAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABBwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAAA + tiles: AAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAAACAAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAADCAAAAAAACAAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAABwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAB version: 6 5,3: ind: 5,3 - tiles: BwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAACBwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACBwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAABwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAAABwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADBwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAgAAAAAABwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADBwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAABwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAgAAAAAA + tiles: BwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACBwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABBwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADBwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACBwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADBwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABBwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAABwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAA version: 6 5,4: ind: 5,4 - tiles: AwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAACwAAAAACCwAAAAABCwAAAAACCwAAAAAACwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAACwAAAAADCwAAAAACCwAAAAADCwAAAAABCwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAAACAAAAAADCgAAAAABCgAAAAAACgAAAAACCAAAAAAACAAAAAABAgAAAAAACAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAAACAAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAADCAAAAAACCAAAAAAACAAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAADCAAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAABwAAAAACBwAAAAAACgAAAAACCgAAAAABCgAAAAABCgAAAAADCAAAAAADCgAAAAABCgAAAAACCgAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAABwAAAAABBwAAAAAABwAAAAABCAAAAAACCAAAAAACCAAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAABCAAAAAACCAAAAAADCAAAAAADCAAAAAABCAAAAAADCAAAAAAACAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACCAAAAAADCAAAAAACCgAAAAABCgAAAAADCgAAAAACCAAAAAAACAAAAAACAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAA + tiles: AwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAACwAAAAABCwAAAAADCwAAAAACCwAAAAABCwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACwAAAAACCwAAAAACCwAAAAABCwAAAAAACwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAgAAAAAACAAAAAACCAAAAAAACgAAAAADCgAAAAACCgAAAAABCAAAAAACCAAAAAADAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAADCAAAAAABCAAAAAABCAAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAADCAAAAAACCAAAAAACCAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAABwAAAAABBwAAAAAACgAAAAAACgAAAAADCgAAAAADCgAAAAABCAAAAAACCgAAAAAACgAAAAAACgAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAABCAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAADCAAAAAADCAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAABwAAAAAABwAAAAACBwAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAADCAAAAAADCAAAAAADCAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAACCAAAAAABCAAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACCAAAAAACCAAAAAACCgAAAAACCgAAAAAACgAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAA version: 6 5,5: ind: 5,5 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAABAgAAAAAACAAAAAACCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAABCAAAAAADCAAAAAADCAAAAAADCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAADAgAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAACAgAAAAAACAAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAABAgAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAACCAAAAAADCAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAACAgAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 5,6: ind: 5,6 - tiles: EAAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAAAAgAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAFQAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAADAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAFQAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAFQAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAABEAAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADFQAAAAAAAgAAAAAAEAAAAAABEAAAAAABEAAAAAADAgAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAAwAAAAABAwAAAAACAwAAAAABFQAAAAAAAwAAAAACFQAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAADEAAAAAADEAAAAAAAEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACFQAAAAAAEAAAAAABEAAAAAACEAAAAAACEAAAAAABAgAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAABEAAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAABFQAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAADAgAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACEAAAAAADEAAAAAABEAAAAAADEAAAAAAAEAAAAAABEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADEAAAAAADEAAAAAAAEAAAAAACEAAAAAAAEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAEAAAAAABEAAAAAAAEAAAAAABEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: EAAAAAADEAAAAAABEAAAAAABEAAAAAACEAAAAAABEAAAAAAAEAAAAAACEAAAAAACEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAACAgAAAAAAEAAAAAACEAAAAAAAEAAAAAACEAAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACFQAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAABAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABFQAAAAAAAgAAAAAAEAAAAAABEAAAAAACEAAAAAACAgAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAFQAAAAAAAgAAAAAAEAAAAAABEAAAAAABEAAAAAAAAgAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAAAEAAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAFQAAAAAAAgAAAAAAEAAAAAABEAAAAAABEAAAAAABAgAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACAwAAAAADAwAAAAACAwAAAAADFQAAAAAAAwAAAAAAFQAAAAAAEAAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAABEAAAAAACEAAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABFQAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAABAgAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAABEAAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAACFQAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAAgAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAEAAAAAADEAAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAADEAAAAAABEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACEAAAAAADEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 5,7: ind: 5,7 - tiles: AwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAFAAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACCAAAAAABCAAAAAABCAAAAAABCAAAAAAACAAAAAAACAAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADFAAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACCAAAAAACCAAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADCAAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAACAAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABCAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADCAAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAABQAAAAABBQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAABBQAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAC + tiles: AwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAACCAAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADCAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACFAAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAADCAAAAAABCAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABCAAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADCAAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABCAAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAADCAAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABBQAAAAABBQAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAADBQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAB version: 6 5,8: ind: 5,8 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAB + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAD version: 6 5,9: ind: 5,9 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAABJAAAAAACAgAAAAAAJAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAABAgAAAAAAJAAAAAADJAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAB + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAACJAAAAAAAAgAAAAAAJAAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAABAgAAAAAAJAAAAAACJAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAB version: 6 6,0: ind: 6,0 @@ -316,147 +316,147 @@ entities: version: 6 6,1: ind: 6,1 - tiles: AgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAACAAAAAADAgAAAAAACAAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAACAAAAAADCAAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABCAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAACAAAAAACCAAAAAACAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAACAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAABFAAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAB + tiles: AgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAACAAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAACAAAAAADCAAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAACAAAAAABCAAAAAABAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAFAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADFAAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAA version: 6 6,10: ind: 6,10 - tiles: CAAAAAACCAAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAABAgAAAAAAAwAAAAAABQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCgAAAAABCgAAAAADCgAAAAAACAAAAAACCAAAAAACAgAAAAAAAwAAAAABBQAAAAADBQAAAAACBQAAAAAABQAAAAACBQAAAAAABQAAAAABBQAAAAACCAAAAAABCAAAAAAACgAAAAABCQAAAAAACgAAAAACCAAAAAABCAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAACgAAAAADCgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAADBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBwAAAAACAgAAAAAAFgAAAAAFBwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAADBwAAAAACAgAAAAAAAwAAAAADAgAAAAAAEwAAAAAEAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAABwAAAAAABwAAAAADFgAAAAAGBwAAAAABBwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAABCAAAAAADCAAAAAACCAAAAAADCAAAAAABCAAAAAACCAAAAAADAgAAAAAAAwAAAAADBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCgAAAAACCgAAAAAACgAAAAABCAAAAAAACAAAAAADAgAAAAAAAwAAAAADBQAAAAAABQAAAAAABQAAAAACBQAAAAAABQAAAAADBQAAAAABBQAAAAADCAAAAAACCAAAAAABCgAAAAADCQAAAAAACgAAAAACCAAAAAADCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAACgAAAAACCgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAABBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABwAAAAADAgAAAAAAFgAAAAAGBwAAAAADBwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAABwAAAAACBwAAAAADAgAAAAAAAwAAAAABAgAAAAAAEwAAAAAEAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAGBwAAAAACBwAAAAADFgAAAAABBwAAAAADBwAAAAACAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,2: ind: 6,2 - tiles: AwAAAAACAwAAAAADAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAADAgAAAAAAAwAAAAABAwAAAAACAgAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAABAwAAAAADAwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAACAgAAAAAAAwAAAAACAwAAAAABAgAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAADCAAAAAACCAAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACBwAAAAADBwAAAAACBwAAAAADBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAADBwAAAAACBwAAAAADBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAACAwAAAAADAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAABAgAAAAAAAwAAAAACAwAAAAADAgAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAADBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAABCAAAAAAAAwAAAAAAAwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAACAAAAAACCAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADBwAAAAABBwAAAAABBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADBwAAAAACBwAAAAADBwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 6,3: ind: 6,3 - tiles: AwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAFAAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAADFAAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAABwAAAAACBwAAAAACFgAAAAAGAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAADBwAAAAADAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAACGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAABwAAAAACGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABAwAAAAAAAwAAAAAB + tiles: AwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADFAAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAACFAAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACFAAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAABwAAAAACBwAAAAACFgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAACGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAABwAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACBwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADBwAAAAADBwAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAADBwAAAAAAAwAAAAADAwAAAAAA version: 6 6,4: ind: 6,4 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAADBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAABBwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADFAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAFAAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADBwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAADBwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACFAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACFAAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAB version: 6 6,5: ind: 6,5 - tiles: AgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAACGwAAAAACAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAABGwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAADGwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACGwAAAAABGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAACwAAAAABBwAAAAACBwAAAAABBwAAAAADAgAAAAAAAwAAAAACFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAACwAAAAABCwAAAAABBwAAAAADBwAAAAABBwAAAAADAgAAAAAAAwAAAAACFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAACwAAAAACCwAAAAACBwAAAAAABwAAAAAABwAAAAABAwAAAAADAwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAACwAAAAABCwAAAAABBwAAAAACBwAAAAABBwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAACwAAAAADCwAAAAADBwAAAAABBwAAAAADBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAA + tiles: AgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAADGwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAgAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAACAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAABGwAAAAACAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAACwAAAAAABwAAAAADBwAAAAABBwAAAAADAgAAAAAAAwAAAAADFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAACwAAAAABCwAAAAABBwAAAAADBwAAAAABBwAAAAADAgAAAAAAAwAAAAADFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAACwAAAAADCwAAAAACBwAAAAACBwAAAAABBwAAAAAAAwAAAAADAwAAAAADFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAACwAAAAADCwAAAAADBwAAAAAABwAAAAACBwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAACwAAAAADCwAAAAABBwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAA version: 6 6,6: ind: 6,6 - tiles: AwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAABAwAAAAABAwAAAAADDwAAAAADDwAAAAADDwAAAAABDwAAAAADDwAAAAAADwAAAAABDwAAAAABDwAAAAAACwAAAAADCwAAAAAACwAAAAACCwAAAAAAFQAAAAAAAwAAAAACAwAAAAACAwAAAAACDwAAAAAADwAAAAADDwAAAAADDwAAAAACDwAAAAAADwAAAAABDwAAAAAADwAAAAABCwAAAAACCwAAAAAACwAAAAACCwAAAAACFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACCwAAAAAACwAAAAADCwAAAAAACwAAAAACFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAACCwAAAAAACwAAAAABCwAAAAACFQAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAACBwAAAAABAgAAAAAACwAAAAABCwAAAAACCwAAAAADCwAAAAADFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAADBwAAAAADBwAAAAACBwAAAAACAwAAAAABAgAAAAAAAwAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAADAwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAABBwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAAAAwAAAAABBwAAAAACBwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAACAwAAAAADBwAAAAADBwAAAAABBwAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAACBwAAAAADAgAAAAAAAwAAAAADAwAAAAADHAAAAAADHAAAAAADHAAAAAABHAAAAAAAAwAAAAACAwAAAAADBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAwAAAAACHAAAAAADHAAAAAADHAAAAAABHAAAAAADHAAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAC + tiles: AwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAAAAwAAAAADAwAAAAACDwAAAAACDwAAAAACDwAAAAABDwAAAAABDwAAAAAADwAAAAABDwAAAAACDwAAAAACCwAAAAADCwAAAAABCwAAAAABCwAAAAABFQAAAAAAAwAAAAADAwAAAAADAwAAAAABDwAAAAACDwAAAAABDwAAAAAADwAAAAABDwAAAAABDwAAAAABDwAAAAACDwAAAAABCwAAAAABCwAAAAAACwAAAAACCwAAAAADFQAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABCwAAAAACCwAAAAADCwAAAAACCwAAAAADFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAACFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAAABwAAAAACAgAAAAAACwAAAAABCwAAAAABCwAAAAAACwAAAAADFQAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAADBwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAgAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAAAAwAAAAABBwAAAAADBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAABAwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAADAwAAAAABBwAAAAADBwAAAAADBwAAAAACBwAAAAACBwAAAAADBwAAAAABBwAAAAABBwAAAAADAgAAAAAAAwAAAAACAwAAAAABHAAAAAABHAAAAAADHAAAAAACHAAAAAAAAwAAAAADAwAAAAACBwAAAAADBwAAAAABBwAAAAABBwAAAAADBwAAAAABBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAACHAAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAC version: 6 6,7: ind: 6,7 - tiles: CAAAAAABAgAAAAAAAwAAAAABHAAAAAADHAAAAAABHAAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAACAAAAAAAAgAAAAAAAwAAAAADHAAAAAABHAAAAAACHAAAAAACHAAAAAAAHAAAAAABHAAAAAABHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAADCAAAAAAAAgAAAAAAAwAAAAACAwAAAAABHAAAAAACHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAABHAAAAAAAHAAAAAABCAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADFAAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADFAAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAgAAAAAACwAAAAAACwAAAAACCwAAAAADAgAAAAAAAwAAAAACBQAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADBQAAAAABAwAAAAAABQAAAAAABQAAAAACBQAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: CAAAAAABAgAAAAAAAwAAAAADHAAAAAADHAAAAAADHAAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAAAHAAAAAACHAAAAAAAHAAAAAACCAAAAAACAgAAAAAAAwAAAAACHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAABHAAAAAABCAAAAAADAgAAAAAAAwAAAAAAAwAAAAADHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACCAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAFAAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADFAAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACwAAAAAACwAAAAABCwAAAAACAgAAAAAAAwAAAAAABQAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAAABQAAAAADAwAAAAABBQAAAAABBQAAAAADBQAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 6,8: ind: 6,8 - tiles: AwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAABCgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAACBQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAAACgAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAA + tiles: AwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAACCgAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAABBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAABCgAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAA version: 6 6,9: ind: 6,9 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADCgAAAAADCgAAAAADCgAAAAADAwAAAAAAAwAAAAACAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADCgAAAAADCgAAAAACCgAAAAACAwAAAAAAAwAAAAABAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAACAwAAAAAACgAAAAADCgAAAAACCgAAAAACAwAAAAACBQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAADAwAAAAADCgAAAAACCgAAAAADCgAAAAAAAwAAAAAABQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAABQAAAAADAwAAAAABCgAAAAAACgAAAAAACgAAAAADAwAAAAAABQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAABCAAAAAACCAAAAAACCAAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAwAAAAAABQAAAAADBQAAAAACBQAAAAAABQAAAAACBQAAAAAABQAAAAABBQAAAAAD + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACCgAAAAAACgAAAAADCgAAAAACAwAAAAABAwAAAAADAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAACgAAAAADCgAAAAADCgAAAAADAwAAAAABAwAAAAADAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAACCgAAAAAACgAAAAAACgAAAAAAAwAAAAABBQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAABCgAAAAACCgAAAAABCgAAAAABAwAAAAADBQAAAAABAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAADAwAAAAABCgAAAAABCgAAAAABCgAAAAACAwAAAAABBQAAAAADAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAAACAAAAAACCAAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAABAgAAAAAAAwAAAAADBQAAAAACBQAAAAABBQAAAAADBQAAAAABBQAAAAAABQAAAAAABQAAAAAD version: 6 7,1: ind: 7,1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAA version: 6 7,10: ind: 7,10 - tiles: BQAAAAAAAwAAAAADAgAAAAAACAAAAAAACgAAAAABCQAAAAAACgAAAAADCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABQAAAAACAwAAAAADAgAAAAAACAAAAAADCgAAAAABCgAAAAABCgAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAACHAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAFgAAAAAABwAAAAACAgAAAAAABwAAAAAAAgAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAACAgAAAAAAHAAAAAAAHAAAAAABAgAAAAAAHAAAAAABAgAAAAAAAAAAAAAABwAAAAACBwAAAAADAgAAAAAAFgAAAAAFFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAACAgAAAAAAHAAAAAABAgAAAAAAAAAAAAAABwAAAAAAAgAAAAAABwAAAAABBwAAAAACFAAAAAAAAgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABAgAAAAAAAgAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAFgAAAAAAFgAAAAACBwAAAAAAFAAAAAAAHAAAAAAAAgAAAAAAHAAAAAADAgAAAAAAAgAAAAAAHAAAAAABHAAAAAABAgAAAAAAHAAAAAADAgAAAAAAAAAAAAAABwAAAAAAFgAAAAAABwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BQAAAAABAwAAAAABAgAAAAAACAAAAAADCgAAAAADCQAAAAAACgAAAAADCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABQAAAAACAwAAAAAAAgAAAAAACAAAAAABCgAAAAADCgAAAAACCgAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAwAAAAACAgAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAABHAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAFgAAAAAABwAAAAABAgAAAAAABwAAAAACAgAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAABAgAAAAAAHAAAAAADHAAAAAAAAgAAAAAAHAAAAAADAgAAAAAAAAAAAAAABwAAAAADBwAAAAAAAgAAAAAAFgAAAAAGFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAAgAAAAAAHAAAAAADAgAAAAAAAAAAAAAABwAAAAABAgAAAAAABwAAAAAABwAAAAAAFAAAAAAAAgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAFgAAAAAAFgAAAAAABwAAAAABFAAAAAAAHAAAAAACAgAAAAAAHAAAAAABAgAAAAAAAgAAAAAAHAAAAAADHAAAAAAAAgAAAAAAHAAAAAAAAgAAAAAAAAAAAAAABwAAAAACFgAAAAAGBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,2: ind: 7,2 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAABEAAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAADEAAAAAACAgAAAAAAAwAAAAADBQAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAAB + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAACEAAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAADAgAAAAAAAwAAAAABBQAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAC version: 6 7,3: ind: 7,3 - tiles: AgAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAAAAgAAAAAAAwAAAAADBQAAAAACAwAAAAACAgAAAAAAAwAAAAADBQAAAAABAgAAAAAAEAAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAABEAAAAAACEAAAAAAAEAAAAAADAgAAAAAAAwAAAAACBQAAAAABAwAAAAABAgAAAAAAAwAAAAADBQAAAAAAAgAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAACAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAAABQAAAAADAgAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAEAAAAAABEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAABBQAAAAABBQAAAAADBQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADBwAAAAAABwAAAAADBwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABGgAAAAAAGgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADBwAAAAADBwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAC + tiles: AgAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAACAgAAAAAAAwAAAAACBQAAAAAAAwAAAAACAgAAAAAAAwAAAAABBQAAAAADAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAACAgAAAAAAAwAAAAABBQAAAAABAwAAAAAAAgAAAAAAAwAAAAAABQAAAAADAgAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAAAEAAAAAABEAAAAAABEAAAAAABEAAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAgAAAAAAEAAAAAADEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAABEAAAAAADEAAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADBQAAAAADBQAAAAABBQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABBwAAAAADBwAAAAADBwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADGgAAAAAAGgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADBwAAAAABBwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAD version: 6 7,4: ind: 7,4 - tiles: AwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADFAAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAAAFAAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAADFAAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAABFAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAABFAAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAD + tiles: AwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACFAAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAACFAAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAADAgAAAAAAAgAAAAAAAwAAAAAD version: 6 7,5: ind: 7,5 - tiles: AwAAAAABAwAAAAADAwAAAAAAAgAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAAAEAAAAAABEAAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAgAAAAAAEAAAAAAAEQAAAAADEQAAAAACEQAAAAABEQAAAAABEAAAAAACEAAAAAADEAAAAAACEAAAAAABEAAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAEAAAAAACEQAAAAADEQAAAAACEQAAAAAAEQAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAACEAAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAEAAAAAAAEQAAAAABEQAAAAAAEQAAAAADEQAAAAADEAAAAAADEAAAAAAAEAAAAAABEAAAAAACEAAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAEAAAAAAAEQAAAAACEQAAAAABEQAAAAACEQAAAAABEAAAAAACEAAAAAADAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAgAAAAAAEAAAAAAAEQAAAAAAEQAAAAADEQAAAAAAEQAAAAAAEAAAAAAAEAAAAAACAgAAAAAAEAAAAAABEAAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAEAAAAAADEAAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAACEAAAAAABAgAAAAAAEAAAAAADEAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADCwAAAAABCwAAAAABAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABCwAAAAACCwAAAAABAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABCwAAAAAACwAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABCwAAAAABCwAAAAABAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAACwAAAAACCwAAAAABAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAA + tiles: AwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAEAAAAAABEAAAAAABEAAAAAAAEAAAAAACEAAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAAAEAAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAEAAAAAADEQAAAAABEQAAAAABEQAAAAABEQAAAAACEAAAAAABEAAAAAAAEAAAAAACEAAAAAADEAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAEAAAAAADEQAAAAADEQAAAAACEQAAAAABEQAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAABEAAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAEAAAAAAAEQAAAAAAEQAAAAABEQAAAAADEQAAAAADEAAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAEAAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEAAAAAAAEAAAAAABAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAEAAAAAAAEQAAAAACEQAAAAADEQAAAAADEQAAAAABEAAAAAABEAAAAAADAgAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAgAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAACEAAAAAABEAAAAAABEAAAAAACAgAAAAAAEAAAAAADEAAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAACwAAAAAACwAAAAACAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABCwAAAAABCwAAAAABAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACCwAAAAAACwAAAAACAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACCwAAAAABCwAAAAACAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADCwAAAAADCwAAAAACAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAB version: 6 7,6: ind: 7,6 - tiles: AwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAADwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAADwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAABwAAAAACAwAAAAACHAAAAAACHAAAAAABHAAAAAADHAAAAAAAAwAAAAABAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAABBwAAAAAAAwAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABAwAAAAAAAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABBwAAAAACAwAAAAABHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAAAAwAAAAACAwAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAADAgAAAAAAAwAAAAADAwAAAAACHAAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAAAAwAAAAADAgAAAAAABwAAAAABPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAADAgAAAAAAAwAAAAAD + tiles: AwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACDwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACDwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAABwAAAAACAwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAwAAAAABAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAABwAAAAACAwAAAAADHAAAAAADHAAAAAABHAAAAAABHAAAAAACAwAAAAAAAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABBwAAAAABAwAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAABAwAAAAACAwAAAAACBwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAwAAAAACAwAAAAADHAAAAAADHAAAAAACHAAAAAACHAAAAAADHAAAAAABAwAAAAAAAgAAAAAABwAAAAACPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAADAgAAAAAAAwAAAAAB version: 6 7,7: ind: 7,7 - tiles: HAAAAAADHAAAAAABHAAAAAACHAAAAAABHAAAAAACHAAAAAACAwAAAAAAAgAAAAAABwAAAAADPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAACFAAAAAAAAwAAAAADHAAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAADHAAAAAAAAwAAAAADAgAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAADFAAAAAAAAwAAAAABHAAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAABAwAAAAADAwAAAAABAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABFAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAABAgAAAAAAAwAAAAABFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADFAAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACFAAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADFAAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAAABQAAAAADBQAAAAABBQAAAAABAwAAAAABAwAAAAABAwAAAAACBQAAAAACBQAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAABQAAAAACBQAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAAABQAAAAACBQAAAAADBQAAAAADAwAAAAACBQAAAAABBQAAAAAABQAAAAABAwAAAAADAgAAAAAAAwAAAAAABQAAAAABBQAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAADBQAAAAACBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAACBQAAAAADBQAAAAAD + tiles: HAAAAAACHAAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAADAwAAAAAAAgAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAACFAAAAAAAAwAAAAACHAAAAAABHAAAAAADHAAAAAAAHAAAAAABHAAAAAADHAAAAAAAAwAAAAAAAgAAAAAABwAAAAABPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAACFAAAAAAAAwAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAABAwAAAAAAAwAAAAADAgAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAACBwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACAgAAAAAAAwAAAAADFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAACFAAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACFAAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAABQAAAAAABQAAAAABBQAAAAACAwAAAAADAwAAAAAAAwAAAAADBQAAAAAABQAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAACBQAAAAACBQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACBQAAAAAABQAAAAACBQAAAAABAwAAAAAABQAAAAACBQAAAAACBQAAAAABAwAAAAACAgAAAAAAAwAAAAABBQAAAAADBQAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAACBQAAAAACBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACBQAAAAADBQAAAAAA version: 6 7,8: ind: 7,8 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAABQAAAAACBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAABQAAAAABBQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAACCgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAABQAAAAACAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADBQAAAAABAwAAAAADAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAACBQAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAADBQAAAAABAwAAAAACAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAAABQAAAAABBQAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAACCgAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCAAAAAACCAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAABQAAAAADBQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAAABQAAAAABBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAACCgAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACBQAAAAACAwAAAAACAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAADBQAAAAADAwAAAAADAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAADBQAAAAACAwAAAAABAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAADBQAAAAACAwAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAACBQAAAAACBQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAADCgAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAACAAAAAACCAAAAAADCAAAAAAC version: 6 7,9: ind: 7,9 - tiles: AQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAgAAAAAACAAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAADBQAAAAADBQAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAABQAAAAADBQAAAAADBQAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAADAwAAAAABAgAAAAAACAAAAAACCgAAAAACCgAAAAACCgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA + tiles: AQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAgAAAAAACAAAAAACCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAACAAAAAAACAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAABBQAAAAAABQAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACBQAAAAABBQAAAAAABQAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAADAwAAAAABAgAAAAAACAAAAAACCgAAAAACCgAAAAADCgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA version: 6 8,2: ind: 8,2 - tiles: AQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAwAAAAACBQAAAAACAwAAAAAABQAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAAABQAAAAABAwAAAAACBQAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAADCAAAAAABAgAAAAAAAwAAAAADAwAAAAAABQAAAAADAwAAAAADBQAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAAACAAAAAAAAgAAAAAA + tiles: AQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAACAwAAAAACBQAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAwAAAAADBQAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAABCAAAAAABAgAAAAAAAwAAAAAAAwAAAAADBQAAAAADAwAAAAAABQAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAAACAAAAAACAgAAAAAA version: 6 8,3: ind: 8,3 - tiles: AwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAAAwAAAAABAwAAAAACBQAAAAAAAwAAAAADBQAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABBQAAAAAAAwAAAAACBQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAABQAAAAACAwAAAAACBQAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADFAAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADFAAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAFAAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADFAAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAgAAAAAACAAAAAABAwAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAgAAAAAACAAAAAACFAAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAABCAAAAAABCAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAgAAAAAACAAAAAACAwAAAAACAgAAAAAACAAAAAABCgAAAAADCAAAAAACCAAAAAAACgAAAAADCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAACAAAAAACAgAAAAAAAgAAAAAA + tiles: AwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAwAAAAACAwAAAAAABQAAAAAAAwAAAAABBQAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACBQAAAAABAwAAAAADBQAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABBQAAAAAAAwAAAAADBQAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABFAAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABFAAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAADFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABFAAAAAAACAAAAAADCAAAAAACCAAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADFAAAAAAACAAAAAADCAAAAAACCAAAAAADCAAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABFAAAAAAACAAAAAADCAAAAAADCAAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAACAwAAAAADAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAgAAAAAACAAAAAACFAAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAABAgAAAAAACAAAAAADAwAAAAAAAgAAAAAACAAAAAAACgAAAAADCAAAAAAACAAAAAACCgAAAAACCAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAACAAAAAADAgAAAAAAAgAAAAAA version: 6 8,4: ind: 8,4 - tiles: AwAAAAADAgAAAAAACAAAAAADCgAAAAAACAAAAAAACAAAAAAACgAAAAACCAAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAACAwAAAAABAgAAAAAACAAAAAACCgAAAAACCAAAAAACCAAAAAACCgAAAAACCAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAADAwAAAAACAgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAACAAAAAADCgAAAAACCAAAAAACCAAAAAAACgAAAAABCAAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACCAAAAAACCAAAAAACCgAAAAACCAAAAAACCAAAAAADCgAAAAABCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAACCgAAAAACCAAAAAABCAAAAAACCgAAAAABCAAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAAAAgAAAAAACAAAAAACCgAAAAABCAAAAAACCAAAAAACCgAAAAABCAAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADAwAAAAABAgAAAAAACAAAAAADCgAAAAADCAAAAAADCAAAAAACCgAAAAAACAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABAwAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAAACAAAAAADCAAAAAADCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAACAAAAAACCAAAAAACCAAAAAAAAwAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAADCAAAAAABCAAAAAABCAAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAACCAAAAAADCAAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAACAAAAAACCgAAAAABCAAAAAADCAAAAAAACgAAAAACCAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAACAAAAAADCAAAAAAACgAAAAACCAAAAAAACAAAAAABCgAAAAABCAAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAADAgAAAAAACAAAAAABCgAAAAABCAAAAAAACAAAAAADCgAAAAABCAAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 8,5: ind: 8,5 - tiles: AwAAAAACAwAAAAADAgAAAAAACwAAAAAACwAAAAAACwAAAAABCwAAAAABCwAAAAAACwAAAAACCwAAAAACCwAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAACwAAAAADCwAAAAABCwAAAAABCwAAAAADCwAAAAADCwAAAAABCwAAAAACCwAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAwAAAAABAwAAAAAAAgAAAAAACwAAAAADCwAAAAABCwAAAAAACwAAAAABCwAAAAACCwAAAAAACwAAAAAACwAAAAACAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAACwAAAAACCwAAAAAACwAAAAACCwAAAAAACwAAAAAACwAAAAABCwAAAAACCwAAAAABAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAACAwAAAAABAwAAAAABAgAAAAAACAAAAAABCAAAAAADDgAAAAAADgAAAAABDgAAAAABDgAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAABAwAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAABDgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAABAwAAAAABAwAAAAAACAAAAAAACAAAAAABCAAAAAABDgAAAAADCAAAAAACCgAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAADCAAAAAAADgAAAAABCAAAAAAACAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAAACAAAAAADDgAAAAAADgAAAAAADgAAAAADDgAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACFAAAAAAAFAAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAB + tiles: AwAAAAADAwAAAAADAgAAAAAACwAAAAABCwAAAAABCwAAAAABCwAAAAABCwAAAAADCwAAAAACCwAAAAABCwAAAAACAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAACwAAAAACCwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAADCwAAAAABCwAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAwAAAAABAwAAAAAAAgAAAAAACwAAAAACCwAAAAADCwAAAAAACwAAAAABCwAAAAADCwAAAAABCwAAAAACCwAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAACwAAAAADCwAAAAAACwAAAAADCwAAAAADCwAAAAAACwAAAAADCwAAAAAACwAAAAACAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAABCAAAAAABDgAAAAADDgAAAAADDgAAAAADDgAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAAACAAAAAADDgAAAAACCAAAAAADCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAACAwAAAAACCAAAAAADCAAAAAACCAAAAAABDgAAAAAACAAAAAABCgAAAAADCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAACAAAAAADCAAAAAABDgAAAAADCAAAAAADCAAAAAAACAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAADDgAAAAADDgAAAAABDgAAAAACDgAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABFAAAAAAAFAAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAB version: 6 8,6: ind: 8,6 - tiles: AwAAAAACAwAAAAACFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADFAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAACAAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAgAAAAAACAAAAAACCAAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAACCAAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAACAAAAAADCAAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAACAAAAAABCAAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAACAAAAAADCAAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAAAAwAAAAABFAAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAADCAAAAAABAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAFAAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAACAAAAAACCAAAAAADAwAAAAAAAwAAAAABFAAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABFAAAAAAAAwAAAAACBQAAAAAAAwAAAAAABQAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAAAAwAAAAABBQAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAABAwAAAAAAFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABFAAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACFAAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAACAAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAACAAAAAACCAAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAABCAAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAACAAAAAABCAAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAACAAAAAACCAAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAACAAAAAADCAAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAACAwAAAAAAFAAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAABCAAAAAABAwAAAAABAwAAAAABFAAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAACAAAAAADCAAAAAACAwAAAAACAwAAAAADFAAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABFAAAAAAAAwAAAAACBQAAAAAAAwAAAAADBQAAAAACAwAAAAADAgAAAAAACAAAAAAACAAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAACAwAAAAAABQAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAA version: 6 8,7: ind: 8,7 - tiles: AwAAAAAAAwAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAACAwAAAAAABQAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADFAAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACFAAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAACgAAAAACCAAAAAAACAAAAAAACAAAAAADCgAAAAADAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABQAAAAAAAwAAAAADAgAAAAAACgAAAAAACAAAAAACCAAAAAACCAAAAAADCgAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBQAAAAACAwAAAAACAgAAAAAACgAAAAADCAAAAAADCAAAAAABCAAAAAADCgAAAAABAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBQAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBQAAAAAAAwAAAAABAwAAAAAAAwAAAAADBQAAAAACAwAAAAADBQAAAAACAwAAAAABBQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAACAwAAAAACAgAAAAAAAwAAAAACBQAAAAADAwAAAAADBQAAAAABAwAAAAAABQAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAD + tiles: AwAAAAACAwAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAACAwAAAAABBQAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAAAFAAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACFAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAACgAAAAABCAAAAAAACAAAAAAACAAAAAABCgAAAAADAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBQAAAAACAwAAAAACAgAAAAAACgAAAAAACAAAAAAACAAAAAAACAAAAAAACgAAAAADAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABQAAAAAAAwAAAAAAAgAAAAAACgAAAAABCAAAAAADCAAAAAAACAAAAAACCgAAAAACAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBQAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBQAAAAACAwAAAAABAwAAAAABAwAAAAABBQAAAAABAwAAAAABBQAAAAADAwAAAAAABQAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAADAwAAAAACAgAAAAAAAwAAAAAABQAAAAACAwAAAAABBQAAAAABAwAAAAACBQAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAD version: 6 8,8: ind: 8,8 - tiles: BQAAAAADAwAAAAADAgAAAAAAAwAAAAACBQAAAAABAwAAAAAABQAAAAACAwAAAAADBQAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABBQAAAAAABQAAAAACBQAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABBQAAAAABBQAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACQAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAABQAAAAAAAwAAAAADBQAAAAABBQAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABBQAAAAACAwAAAAACBQAAAAAABQAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADBQAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAABQAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAABQAAAAACAwAAAAACBQAAAAACBQAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAADBwAAAAACAwAAAAADAgAAAAAA + tiles: BQAAAAAAAwAAAAADAgAAAAAAAwAAAAADBQAAAAADAwAAAAAABQAAAAAAAwAAAAADBQAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABBQAAAAADBQAAAAADBQAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAABBQAAAAACBQAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABBQAAAAACAwAAAAAABQAAAAADBQAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADBQAAAAABAwAAAAABBQAAAAAABQAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACBQAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAABBQAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAABQAAAAAAAwAAAAABBQAAAAAABQAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACAwAAAAADAgAAAAAA version: 6 8,9: ind: 8,9 - tiles: CAAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAACBwAAAAAAAwAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAABAgAAAAAACAAAAAACAgAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAABCAAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAABAwAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAAAgAAAAAACAAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 9,2: ind: 9,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 9,3: ind: 9,3 - tiles: AwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAABQAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACBQAAAAACAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAABCAAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAABQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABBQAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADCAAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAAACAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAABCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAA version: 6 9,4: ind: 9,4 - tiles: CAAAAAACCAAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAACCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAADAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAB + tiles: CAAAAAABCAAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAABCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAB version: 6 9,5: ind: 9,5 - tiles: HQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: HQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 9,6: ind: 9,6 - tiles: AwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAADFAAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAFAAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAACAAAAAACCAAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCAAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAgAAAAAACAAAAAACCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAACAAAAAADCAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAACAAAAAADCAAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAACAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAACAAAAAAACAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADCAAAAAAACAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAACCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAA + tiles: AwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAADFAAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACFAAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAFAAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAACAAAAAABCAAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCAAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAACAAAAAACCAAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAACAAAAAADCAAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAACAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADCAAAAAAACAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABCAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACCAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAA version: 6 9,7: ind: 9,7 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAAABwAAAAADBwAAAAACBwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADBwAAAAABBwAAAAACBwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADBwAAAAACBwAAAAABBwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABBwAAAAADBwAAAAADBwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAABwAAAAABBwAAAAADBwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAC + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACBwAAAAAABwAAAAACBwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABBwAAAAAABwAAAAADBwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADBwAAAAAABwAAAAACBwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACBwAAAAABBwAAAAADBwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABBwAAAAACBwAAAAACBwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAD version: 6 9,8: ind: 9,8 - tiles: BwAAAAABBwAAAAABBwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAABwAAAAAABwAAAAACAgAAAAAABwAAAAAABwAAAAADAgAAAAAABwAAAAADBwAAAAACAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAABwAAAAACBwAAAAABAgAAAAAABwAAAAACBwAAAAAAAgAAAAAABwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAABwAAAAABBwAAAAAAAgAAAAAABwAAAAABBwAAAAACAgAAAAAABwAAAAADBwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAAABwAAAAACBwAAAAACBwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACBwAAAAACBwAAAAADBwAAAAACBwAAAAACBwAAAAABBwAAAAADBwAAAAABBwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAADFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAABwAAAAABBwAAAAACAgAAAAAABwAAAAACBwAAAAADAgAAAAAABwAAAAAABwAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAAAAgAAAAAABwAAAAACBwAAAAACAgAAAAAABwAAAAACBwAAAAADAgAAAAAABwAAAAAABwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAABAgAAAAAABwAAAAADBwAAAAADAgAAAAAABwAAAAABBwAAAAADAgAAAAAABwAAAAABBwAAAAAB + tiles: BwAAAAADBwAAAAACBwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAACAgAAAAAAHQAAAAAAHQAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAABwAAAAADBwAAAAACAgAAAAAABwAAAAADBwAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAABwAAAAACBwAAAAAAAgAAAAAABwAAAAABBwAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACBwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAABFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAABwAAAAACBwAAAAADAgAAAAAABwAAAAADBwAAAAADAgAAAAAABwAAAAADBwAAAAADAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAABAgAAAAAABwAAAAACBwAAAAAAAgAAAAAABwAAAAACBwAAAAAAAgAAAAAABwAAAAAABwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAAAAgAAAAAABwAAAAABBwAAAAACAgAAAAAABwAAAAABBwAAAAABAgAAAAAABwAAAAACBwAAAAAB version: 6 9,9: ind: 9,9 - tiles: AwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,6: ind: 0,6 @@ -12136,7 +12136,6 @@ entities: 8660: 115,171 9637: 142,145 10599: 159,143 - 10600: 159,135 10601: 156,135 10602: 153,135 10603: 153,143 @@ -12219,7 +12218,6 @@ entities: 8654: 115,167 10590: 156,133 10591: 153,133 - 10592: 159,133 10660: 107,44 10675: 108,38 12095: 125,110 @@ -12259,7 +12257,6 @@ entities: 10586: 158,141 10587: 152,133 10588: 155,133 - 10589: 158,133 10661: 104,44 10665: 104,38 13270: 143,121 @@ -12377,10 +12374,8 @@ entities: 10578: 153,142 10579: 156,142 10580: 159,142 - 10581: 159,134 10582: 156,134 10583: 153,134 - 10593: 159,134 10594: 156,134 10595: 153,134 10596: 153,142 @@ -12654,7 +12649,6 @@ entities: 10572: 152,142 10573: 155,142 10574: 158,142 - 10575: 158,134 10576: 155,134 10577: 152,134 10652: 104,45 @@ -19499,13 +19493,6 @@ entities: - type: Transform pos: 81.5,69.5 parent: 1 - - uid: 29740 - components: - - type: MetaData - name: dorm six airlock - - type: Transform - pos: 158.5,136.5 - parent: 1 - uid: 29741 components: - type: MetaData @@ -21615,6 +21602,13 @@ entities: rot: 1.5707963267948966 rad pos: 149.5,140.5 parent: 1 + - uid: 29787 + components: + - type: MetaData + name: dressing room glass airlock + - type: Transform + pos: 158.5,136.5 + parent: 1 - uid: 29824 components: - type: Transform @@ -27961,11 +27955,6 @@ entities: - type: Transform pos: 113.5,49.5 parent: 1 - - uid: 29764 - components: - - type: Transform - pos: 159.5,134.5 - parent: 1 - uid: 29765 components: - type: Transform @@ -28217,11 +28206,6 @@ entities: - type: Transform pos: 136.5,52.5 parent: 1 - - uid: 29760 - components: - - type: Transform - pos: 159.5,134.5 - parent: 1 - proto: BedsheetYellow entities: - uid: 22821 @@ -29839,11 +29823,6 @@ entities: - type: Transform pos: 156.5,136.5 parent: 1 - - uid: 29748 - components: - - type: Transform - pos: 159.5,136.5 - parent: 1 - uid: 29749 components: - type: Transform @@ -36726,6 +36705,11 @@ entities: - type: Transform pos: 81.5,126.5 parent: 1 + - uid: 15803 + components: + - type: Transform + pos: 93.5,130.5 + parent: 1 - uid: 15819 components: - type: Transform @@ -56629,11 +56613,6 @@ entities: - type: Transform pos: 69.5,49.5 parent: 1 - - uid: 2740 - components: - - type: Transform - pos: 102.5,149.5 - parent: 1 - uid: 2825 components: - type: Transform @@ -68579,11 +68558,6 @@ entities: - type: Transform pos: 102.5,144.5 parent: 1 - - uid: 26877 - components: - - type: Transform - pos: 100.5,149.5 - parent: 1 - uid: 26923 components: - type: Transform @@ -68634,11 +68608,6 @@ entities: - type: Transform pos: 145.5,114.5 parent: 1 - - uid: 29074 - components: - - type: Transform - pos: 101.5,149.5 - parent: 1 - uid: 29181 components: - type: Transform @@ -69774,6 +69743,21 @@ entities: - type: Transform pos: 103.5,127.5 parent: 1 + - uid: 37691 + components: + - type: Transform + pos: 99.5,148.5 + parent: 1 + - uid: 37692 + components: + - type: Transform + pos: 100.5,148.5 + parent: 1 + - uid: 37693 + components: + - type: Transform + pos: 101.5,148.5 + parent: 1 - proto: CableMV entities: - uid: 32 @@ -70076,6 +70060,11 @@ entities: - type: Transform pos: 62.5,84.5 parent: 1 + - uid: 2740 + components: + - type: Transform + pos: 122.5,122.5 + parent: 1 - uid: 2929 components: - type: Transform @@ -70731,6 +70720,11 @@ entities: - type: Transform pos: 45.5,126.5 parent: 1 + - uid: 6945 + components: + - type: Transform + pos: 122.5,123.5 + parent: 1 - uid: 6952 components: - type: Transform @@ -73126,6 +73120,11 @@ entities: - type: Transform pos: 135.5,85.5 parent: 1 + - uid: 13703 + components: + - type: Transform + pos: 127.5,136.5 + parent: 1 - uid: 13773 components: - type: Transform @@ -73284,7 +73283,7 @@ entities: - uid: 13918 components: - type: Transform - pos: 95.5,124.5 + pos: 125.5,136.5 parent: 1 - uid: 13920 components: @@ -73294,22 +73293,22 @@ entities: - uid: 13921 components: - type: Transform - pos: 94.5,124.5 + pos: 126.5,136.5 parent: 1 - uid: 13923 components: - type: Transform - pos: 94.5,125.5 + pos: 95.5,132.5 parent: 1 - uid: 13924 components: - type: Transform - pos: 94.5,126.5 + pos: 95.5,131.5 parent: 1 - uid: 13925 components: - type: Transform - pos: 94.5,127.5 + pos: 107.5,154.5 parent: 1 - uid: 13926 components: @@ -73319,17 +73318,17 @@ entities: - uid: 13927 components: - type: Transform - pos: 94.5,129.5 + pos: 100.5,154.5 parent: 1 - uid: 13928 components: - type: Transform - pos: 94.5,130.5 + pos: 106.5,154.5 parent: 1 - uid: 13929 components: - type: Transform - pos: 94.5,131.5 + pos: 103.5,154.5 parent: 1 - uid: 13930 components: @@ -73344,7 +73343,7 @@ entities: - uid: 13932 components: - type: Transform - pos: 95.5,136.5 + pos: 102.5,154.5 parent: 1 - uid: 13933 components: @@ -73374,7 +73373,7 @@ entities: - uid: 13938 components: - type: Transform - pos: 94.5,128.5 + pos: 101.5,154.5 parent: 1 - uid: 13939 components: @@ -73459,12 +73458,12 @@ entities: - uid: 13970 components: - type: Transform - pos: 121.5,136.5 + pos: 99.5,130.5 parent: 1 - uid: 13972 components: - type: Transform - pos: 121.5,138.5 + pos: 104.5,154.5 parent: 1 - uid: 13974 components: @@ -73504,17 +73503,17 @@ entities: - uid: 13981 components: - type: Transform - pos: 121.5,155.5 + pos: 115.5,137.5 parent: 1 - uid: 13982 components: - type: Transform - pos: 120.5,155.5 + pos: 116.5,137.5 parent: 1 - uid: 13983 components: - type: Transform - pos: 119.5,155.5 + pos: 102.5,132.5 parent: 1 - uid: 13984 components: @@ -73524,67 +73523,67 @@ entities: - uid: 13986 components: - type: Transform - pos: 118.5,155.5 + pos: 102.5,133.5 parent: 1 - uid: 13987 components: - type: Transform - pos: 115.5,155.5 + pos: 102.5,134.5 parent: 1 - uid: 13988 components: - type: Transform - pos: 113.5,155.5 + pos: 102.5,135.5 parent: 1 - uid: 13989 components: - type: Transform - pos: 116.5,155.5 + pos: 102.5,137.5 parent: 1 - uid: 13990 components: - type: Transform - pos: 112.5,155.5 + pos: 102.5,139.5 parent: 1 - uid: 13991 components: - type: Transform - pos: 111.5,155.5 + pos: 102.5,136.5 parent: 1 - uid: 13992 components: - type: Transform - pos: 105.5,155.5 + pos: 102.5,140.5 parent: 1 - uid: 13993 components: - type: Transform - pos: 110.5,155.5 + pos: 94.5,127.5 parent: 1 - uid: 13994 components: - type: Transform - pos: 109.5,155.5 + pos: 95.5,124.5 parent: 1 - uid: 13995 components: - type: Transform - pos: 107.5,155.5 + pos: 94.5,125.5 parent: 1 - uid: 13996 components: - type: Transform - pos: 108.5,155.5 + pos: 94.5,124.5 parent: 1 - uid: 13997 components: - type: Transform - pos: 106.5,155.5 + pos: 94.5,126.5 parent: 1 - uid: 13998 components: - type: Transform - pos: 104.5,155.5 + pos: 94.5,128.5 parent: 1 - uid: 13999 components: @@ -73594,27 +73593,22 @@ entities: - uid: 14000 components: - type: Transform - pos: 103.5,155.5 + pos: 94.5,129.5 parent: 1 - uid: 14001 components: - type: Transform - pos: 101.5,155.5 - parent: 1 - - uid: 14002 - components: - - type: Transform - pos: 102.5,155.5 + pos: 93.5,129.5 parent: 1 - uid: 14003 components: - type: Transform - pos: 100.5,155.5 + pos: 93.5,130.5 parent: 1 - uid: 14004 components: - type: Transform - pos: 99.5,155.5 + pos: 93.5,131.5 parent: 1 - uid: 14005 components: @@ -73624,32 +73618,32 @@ entities: - uid: 14006 components: - type: Transform - pos: 98.5,155.5 + pos: 99.5,154.5 parent: 1 - uid: 14007 components: - type: Transform - pos: 97.5,155.5 + pos: 98.5,154.5 parent: 1 - uid: 14008 components: - type: Transform - pos: 96.5,155.5 + pos: 97.5,154.5 parent: 1 - uid: 14009 components: - type: Transform - pos: 95.5,155.5 + pos: 96.5,154.5 parent: 1 - uid: 14010 components: - type: Transform - pos: 95.5,138.5 + pos: 100.5,130.5 parent: 1 - uid: 14011 components: - type: Transform - pos: 94.5,155.5 + pos: 95.5,154.5 parent: 1 - uid: 14012 components: @@ -73674,7 +73668,7 @@ entities: - uid: 14016 components: - type: Transform - pos: 96.5,136.5 + pos: 102.5,130.5 parent: 1 - uid: 14017 components: @@ -73699,7 +73693,7 @@ entities: - uid: 14021 components: - type: Transform - pos: 96.5,138.5 + pos: 101.5,130.5 parent: 1 - uid: 14022 components: @@ -73739,12 +73733,12 @@ entities: - uid: 14036 components: - type: Transform - pos: 120.5,136.5 + pos: 118.5,137.5 parent: 1 - uid: 14037 components: - type: Transform - pos: 120.5,138.5 + pos: 117.5,137.5 parent: 1 - uid: 14038 components: @@ -73881,6 +73875,11 @@ entities: - type: Transform pos: 120.5,151.5 parent: 1 + - uid: 14267 + components: + - type: Transform + pos: 102.5,138.5 + parent: 1 - uid: 14279 components: - type: Transform @@ -73894,7 +73893,7 @@ entities: - uid: 14356 components: - type: Transform - pos: 114.5,155.5 + pos: 95.5,133.5 parent: 1 - uid: 14357 components: @@ -73914,7 +73913,7 @@ entities: - uid: 14362 components: - type: Transform - pos: 94.5,132.5 + pos: 105.5,143.5 parent: 1 - uid: 14363 components: @@ -74506,6 +74505,11 @@ entities: - type: Transform pos: 92.5,47.5 parent: 1 + - uid: 15360 + components: + - type: Transform + pos: 106.5,143.5 + parent: 1 - uid: 15388 components: - type: Transform @@ -74659,137 +74663,122 @@ entities: - uid: 15790 components: - type: Transform - pos: 89.5,147.5 + pos: 107.5,143.5 parent: 1 - uid: 15791 components: - type: Transform - pos: 89.5,146.5 + pos: 108.5,143.5 parent: 1 - uid: 15792 components: - type: Transform - pos: 89.5,145.5 + pos: 109.5,143.5 parent: 1 - uid: 15793 components: - type: Transform - pos: 89.5,144.5 + pos: 110.5,143.5 parent: 1 - uid: 15794 components: - type: Transform - pos: 89.5,143.5 + pos: 111.5,143.5 parent: 1 - uid: 15795 components: - type: Transform - pos: 89.5,142.5 + pos: 112.5,143.5 parent: 1 - uid: 15796 components: - type: Transform - pos: 89.5,141.5 + pos: 113.5,143.5 parent: 1 - uid: 15797 components: - type: Transform - pos: 89.5,140.5 + pos: 114.5,142.5 parent: 1 - uid: 15798 components: - type: Transform - pos: 89.5,139.5 + pos: 114.5,141.5 parent: 1 - uid: 15799 components: - type: Transform - pos: 89.5,137.5 + pos: 114.5,140.5 parent: 1 - uid: 15800 components: - type: Transform - pos: 89.5,136.5 + pos: 114.5,138.5 parent: 1 - uid: 15801 components: - type: Transform - pos: 89.5,135.5 + pos: 114.5,139.5 parent: 1 - uid: 15802 components: - type: Transform - pos: 89.5,134.5 - parent: 1 - - uid: 15803 - components: - - type: Transform - pos: 89.5,133.5 + pos: 114.5,137.5 parent: 1 - uid: 15804 components: - type: Transform - pos: 89.5,132.5 - parent: 1 - - uid: 15805 - components: - - type: Transform - pos: 89.5,131.5 + pos: 114.5,143.5 parent: 1 - uid: 15806 components: - type: Transform - pos: 89.5,138.5 + pos: 102.5,141.5 parent: 1 - uid: 15807 components: - type: Transform - pos: 89.5,129.5 + pos: 104.5,143.5 parent: 1 - uid: 15808 components: - type: Transform - pos: 89.5,128.5 + pos: 102.5,143.5 parent: 1 - uid: 15809 components: - type: Transform - pos: 89.5,127.5 + pos: 103.5,143.5 parent: 1 - uid: 15810 components: - type: Transform - pos: 89.5,126.5 + pos: 102.5,142.5 parent: 1 - uid: 15811 components: - type: Transform - pos: 89.5,125.5 + pos: 124.5,122.5 parent: 1 - uid: 15812 components: - type: Transform - pos: 88.5,125.5 - parent: 1 - - uid: 15813 - components: - - type: Transform - pos: 88.5,124.5 + pos: 123.5,122.5 parent: 1 - uid: 15814 components: - type: Transform - pos: 88.5,123.5 + pos: 127.5,125.5 parent: 1 - uid: 15815 components: - type: Transform - pos: 88.5,122.5 + pos: 125.5,128.5 parent: 1 - uid: 15817 components: - type: Transform - pos: 92.5,130.5 + pos: 125.5,129.5 parent: 1 - uid: 15830 components: @@ -74799,27 +74788,27 @@ entities: - uid: 15831 components: - type: Transform - pos: 87.5,122.5 + pos: 125.5,125.5 parent: 1 - uid: 15832 components: - type: Transform - pos: 86.5,122.5 + pos: 125.5,126.5 parent: 1 - uid: 15833 components: - type: Transform - pos: 84.5,122.5 + pos: 125.5,127.5 parent: 1 - uid: 15834 components: - type: Transform - pos: 85.5,122.5 + pos: 126.5,125.5 parent: 1 - uid: 15835 components: - type: Transform - pos: 83.5,122.5 + pos: 123.5,128.5 parent: 1 - uid: 15836 components: @@ -76066,6 +76055,11 @@ entities: - type: Transform pos: 88.5,43.5 parent: 1 + - uid: 18199 + components: + - type: Transform + pos: 124.5,128.5 + parent: 1 - uid: 18237 components: - type: Transform @@ -82036,6 +82030,11 @@ entities: - type: Transform pos: 99.5,74.5 parent: 1 + - uid: 26729 + components: + - type: Transform + pos: 125.5,124.5 + parent: 1 - uid: 26865 components: - type: Transform @@ -82996,6 +82995,11 @@ entities: - type: Transform pos: 92.5,73.5 parent: 1 + - uid: 29074 + components: + - type: Transform + pos: 109.5,154.5 + parent: 1 - uid: 29078 components: - type: Transform @@ -83331,6 +83335,21 @@ entities: - type: Transform pos: 144.5,123.5 parent: 1 + - uid: 29740 + components: + - type: Transform + pos: 108.5,154.5 + parent: 1 + - uid: 29760 + components: + - type: Transform + pos: 125.5,122.5 + parent: 1 + - uid: 29786 + components: + - type: Transform + pos: 125.5,123.5 + parent: 1 - uid: 29852 components: - type: Transform @@ -83596,6 +83615,11 @@ entities: - type: Transform pos: 140.5,144.5 parent: 1 + - uid: 30211 + components: + - type: Transform + pos: 110.5,154.5 + parent: 1 - uid: 30358 components: - type: Transform @@ -83901,6 +83925,11 @@ entities: - type: Transform pos: 99.5,73.5 parent: 1 + - uid: 32021 + components: + - type: Transform + pos: 100.5,156.5 + parent: 1 - uid: 32094 components: - type: Transform @@ -84151,6 +84180,16 @@ entities: - type: Transform pos: 132.5,93.5 parent: 1 + - uid: 32418 + components: + - type: Transform + pos: 101.5,156.5 + parent: 1 + - uid: 32419 + components: + - type: Transform + pos: 102.5,156.5 + parent: 1 - uid: 32423 components: - type: Transform @@ -85491,6 +85530,26 @@ entities: - type: Transform pos: 156.5,131.5 parent: 1 + - uid: 37153 + components: + - type: Transform + pos: 103.5,156.5 + parent: 1 + - uid: 37178 + components: + - type: Transform + pos: 104.5,156.5 + parent: 1 + - uid: 37187 + components: + - type: Transform + pos: 106.5,156.5 + parent: 1 + - uid: 37192 + components: + - type: Transform + pos: 107.5,156.5 + parent: 1 - uid: 37223 components: - type: Transform @@ -85976,6 +86035,356 @@ entities: - type: Transform pos: 45.5,106.5 parent: 1 + - uid: 37610 + components: + - type: Transform + pos: 108.5,156.5 + parent: 1 + - uid: 37611 + components: + - type: Transform + pos: 109.5,156.5 + parent: 1 + - uid: 37649 + components: + - type: Transform + pos: 110.5,156.5 + parent: 1 + - uid: 37650 + components: + - type: Transform + pos: 111.5,156.5 + parent: 1 + - uid: 37651 + components: + - type: Transform + pos: 112.5,156.5 + parent: 1 + - uid: 37652 + components: + - type: Transform + pos: 88.5,137.5 + parent: 1 + - uid: 37653 + components: + - type: Transform + pos: 88.5,136.5 + parent: 1 + - uid: 37654 + components: + - type: Transform + pos: 88.5,135.5 + parent: 1 + - uid: 37655 + components: + - type: Transform + pos: 88.5,134.5 + parent: 1 + - uid: 37656 + components: + - type: Transform + pos: 88.5,133.5 + parent: 1 + - uid: 37657 + components: + - type: Transform + pos: 88.5,132.5 + parent: 1 + - uid: 37658 + components: + - type: Transform + pos: 88.5,130.5 + parent: 1 + - uid: 37659 + components: + - type: Transform + pos: 88.5,131.5 + parent: 1 + - uid: 37660 + components: + - type: Transform + pos: 102.5,131.5 + parent: 1 + - uid: 37661 + components: + - type: Transform + pos: 103.5,131.5 + parent: 1 + - uid: 37662 + components: + - type: Transform + pos: 104.5,131.5 + parent: 1 + - uid: 37663 + components: + - type: Transform + pos: 105.5,131.5 + parent: 1 + - uid: 37664 + components: + - type: Transform + pos: 106.5,131.5 + parent: 1 + - uid: 37665 + components: + - type: Transform + pos: 107.5,131.5 + parent: 1 + - uid: 37666 + components: + - type: Transform + pos: 108.5,131.5 + parent: 1 + - uid: 37667 + components: + - type: Transform + pos: 109.5,131.5 + parent: 1 + - uid: 37668 + components: + - type: Transform + pos: 110.5,131.5 + parent: 1 + - uid: 37669 + components: + - type: Transform + pos: 111.5,131.5 + parent: 1 + - uid: 37670 + components: + - type: Transform + pos: 112.5,131.5 + parent: 1 + - uid: 37671 + components: + - type: Transform + pos: 113.5,131.5 + parent: 1 + - uid: 37672 + components: + - type: Transform + pos: 114.5,131.5 + parent: 1 + - uid: 37673 + components: + - type: Transform + pos: 114.5,132.5 + parent: 1 + - uid: 37674 + components: + - type: Transform + pos: 114.5,133.5 + parent: 1 + - uid: 37675 + components: + - type: Transform + pos: 114.5,134.5 + parent: 1 + - uid: 37676 + components: + - type: Transform + pos: 114.5,135.5 + parent: 1 + - uid: 37677 + components: + - type: Transform + pos: 114.5,136.5 + parent: 1 + - uid: 37678 + components: + - type: Transform + pos: 101.5,137.5 + parent: 1 + - uid: 37679 + components: + - type: Transform + pos: 100.5,137.5 + parent: 1 + - uid: 37680 + components: + - type: Transform + pos: 99.5,137.5 + parent: 1 + - uid: 37681 + components: + - type: Transform + pos: 98.5,137.5 + parent: 1 + - uid: 37682 + components: + - type: Transform + pos: 98.5,130.5 + parent: 1 + - uid: 37683 + components: + - type: Transform + pos: 97.5,130.5 + parent: 1 + - uid: 37684 + components: + - type: Transform + pos: 96.5,130.5 + parent: 1 + - uid: 37685 + components: + - type: Transform + pos: 95.5,130.5 + parent: 1 + - uid: 37686 + components: + - type: Transform + pos: 99.5,153.5 + parent: 1 + - uid: 37687 + components: + - type: Transform + pos: 99.5,152.5 + parent: 1 + - uid: 37688 + components: + - type: Transform + pos: 99.5,151.5 + parent: 1 + - uid: 37689 + components: + - type: Transform + pos: 99.5,150.5 + parent: 1 + - uid: 37690 + components: + - type: Transform + pos: 99.5,149.5 + parent: 1 + - uid: 37694 + components: + - type: Transform + pos: 99.5,148.5 + parent: 1 + - uid: 37695 + components: + - type: Transform + pos: 100.5,148.5 + parent: 1 + - uid: 37696 + components: + - type: Transform + pos: 101.5,148.5 + parent: 1 + - uid: 37697 + components: + - type: Transform + pos: 102.5,148.5 + parent: 1 + - uid: 37698 + components: + - type: Transform + pos: 102.5,147.5 + parent: 1 + - uid: 37699 + components: + - type: Transform + pos: 102.5,146.5 + parent: 1 + - uid: 37700 + components: + - type: Transform + pos: 102.5,145.5 + parent: 1 + - uid: 37701 + components: + - type: Transform + pos: 102.5,144.5 + parent: 1 + - uid: 37702 + components: + - type: Transform + pos: 124.5,136.5 + parent: 1 + - uid: 37703 + components: + - type: Transform + pos: 123.5,136.5 + parent: 1 + - uid: 37704 + components: + - type: Transform + pos: 112.5,155.5 + parent: 1 + - uid: 37705 + components: + - type: Transform + pos: 113.5,155.5 + parent: 1 + - uid: 37706 + components: + - type: Transform + pos: 114.5,155.5 + parent: 1 + - uid: 37707 + components: + - type: Transform + pos: 115.5,155.5 + parent: 1 + - uid: 37708 + components: + - type: Transform + pos: 116.5,155.5 + parent: 1 + - uid: 37709 + components: + - type: Transform + pos: 118.5,155.5 + parent: 1 + - uid: 37710 + components: + - type: Transform + pos: 119.5,155.5 + parent: 1 + - uid: 37711 + components: + - type: Transform + pos: 120.5,155.5 + parent: 1 + - uid: 37712 + components: + - type: Transform + pos: 121.5,155.5 + parent: 1 + - uid: 37713 + components: + - type: Transform + pos: 88.5,138.5 + parent: 1 + - uid: 37714 + components: + - type: Transform + pos: 88.5,139.5 + parent: 1 + - uid: 37715 + components: + - type: Transform + pos: 89.5,139.5 + parent: 1 + - uid: 37716 + components: + - type: Transform + pos: 90.5,139.5 + parent: 1 + - uid: 37717 + components: + - type: Transform + pos: 91.5,139.5 + parent: 1 + - uid: 37718 + components: + - type: Transform + pos: 92.5,139.5 + parent: 1 + - uid: 37719 + components: + - type: Transform + pos: 93.5,139.5 + parent: 1 - proto: CableTerminal entities: - uid: 6147 @@ -87556,28 +87965,6 @@ entities: - type: Transform pos: 152.5,133.5 parent: 1 -- proto: CarpetWhite - entities: - - uid: 29786 - components: - - type: Transform - pos: 159.5,134.5 - parent: 1 - - uid: 29787 - components: - - type: Transform - pos: 159.5,133.5 - parent: 1 - - uid: 29788 - components: - - type: Transform - pos: 158.5,134.5 - parent: 1 - - uid: 29789 - components: - - type: Transform - pos: 158.5,133.5 - parent: 1 - proto: CartridgeCap entities: - uid: 35849 @@ -88577,12 +88964,6 @@ entities: rot: 3.141592653589793 rad pos: 89.5,80.5 parent: 1 - - uid: 12065 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 165.5,136.5 - parent: 1 - uid: 12425 components: - type: Transform @@ -88694,12 +89075,6 @@ entities: rot: 1.5707963267948966 rad pos: 95.5,56.5 parent: 1 - - uid: 13703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 162.5,138.5 - parent: 1 - uid: 14118 components: - type: Transform @@ -89188,12 +89563,6 @@ entities: - type: Transform pos: 60.5,128.5 parent: 1 - - uid: 18199 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 165.5,135.5 - parent: 1 - uid: 18231 components: - type: Transform @@ -89848,12 +90217,6 @@ entities: - type: Transform pos: 153.5,131.5 parent: 1 - - uid: 28791 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 165.5,134.5 - parent: 1 - uid: 29041 components: - type: Transform @@ -90123,11 +90486,6 @@ entities: - type: Transform pos: 164.5,141.5 parent: 1 - - uid: 30211 - components: - - type: Transform - pos: 164.5,138.5 - parent: 1 - uid: 30373 components: - type: Transform @@ -92695,16 +93053,6 @@ entities: rot: 3.141592653589793 rad pos: 71.5,158.5 parent: 1 - - uid: 32418 - components: - - type: Transform - pos: 164.5,136.5 - parent: 1 - - uid: 32419 - components: - - type: Transform - pos: 164.5,137.5 - parent: 1 - uid: 32420 components: - type: Transform @@ -98228,35 +98576,11 @@ entities: - type: Transform pos: 172.5,133.5 parent: 1 - - uid: 37153 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 165.5,131.5 - parent: 1 - uid: 37163 components: - type: Transform pos: 152.5,146.5 parent: 1 - - uid: 37178 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 165.5,132.5 - parent: 1 - - uid: 37187 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 165.5,133.5 - parent: 1 - - uid: 37192 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 164.5,131.5 - parent: 1 - uid: 37193 components: - type: Transform @@ -103154,6 +103478,24 @@ entities: - type: Transform pos: 91.5,131.5 parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 35442 components: - type: Transform @@ -104977,15 +105319,21 @@ entities: - uid: 24662 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: 102.5,150.5 parent: 1 + - type: Physics + bodyType: Dynamic - uid: 26980 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: 102.5,149.5 parent: 1 + - type: Physics + bodyType: Dynamic - proto: ConveyorBelt entities: - uid: 1438 @@ -106086,6 +106434,13 @@ entities: - type: Transform pos: 74.5,91.5 parent: 1 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 14002 + components: + - type: Transform + pos: 149.5,142.5 + parent: 1 - proto: DefaultStationBeaconDetectiveRoom entities: - uid: 13538 @@ -106100,6 +106455,13 @@ entities: - type: Transform pos: 158.5,80.5 parent: 1 +- proto: DefaultStationBeaconDorms + entities: + - uid: 15805 + components: + - type: Transform + pos: 155.5,138.5 + parent: 1 - proto: DefaultStationBeaconEngineering entities: - uid: 9021 @@ -119069,11 +119431,6 @@ entities: - type: Transform pos: 156.5,133.5 parent: 1 - - uid: 29796 - components: - - type: Transform - pos: 159.5,133.5 - parent: 1 - uid: 29797 components: - type: Transform @@ -120896,15 +121253,25 @@ entities: - uid: 24346 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: 102.5,152.5 parent: 1 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 - uid: 29056 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: 102.5,151.5 parent: 1 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 - proto: EncryptionKeyCommon entities: - uid: 25187 @@ -183839,6 +184206,11 @@ entities: rot: 1.5707963267948966 rad pos: 58.5,35.5 parent: 1 + - uid: 28791 + components: + - type: Transform + pos: 159.5,136.5 + parent: 1 - uid: 28903 components: - type: Transform @@ -195880,18 +196252,51 @@ entities: - uid: 2521 components: - type: Transform + anchored: False pos: 100.5,147.5 parent: 1 + - type: Physics + bodyType: Dynamic - uid: 10229 components: - type: Transform + anchored: False pos: 100.5,148.5 parent: 1 + - type: Physics + bodyType: Dynamic - uid: 15404 components: - type: Transform + anchored: False pos: 99.5,147.5 parent: 1 + - type: Physics + bodyType: Dynamic + - uid: 29788 + components: + - type: Transform + anchored: False + pos: 99.5,148.5 + parent: 1 + - type: Physics + bodyType: Dynamic + - uid: 29789 + components: + - type: Transform + anchored: False + pos: 99.5,149.5 + parent: 1 + - type: Physics + bodyType: Dynamic + - uid: 29796 + components: + - type: Transform + anchored: False + pos: 100.5,149.5 + parent: 1 + - type: Physics + bodyType: Dynamic - proto: RadioHandheld entities: - uid: 5205 @@ -202895,15 +203300,6 @@ entities: linkedPorts: 29745: - Pressed: DoorBolt - - uid: 29755 - components: - - type: Transform - pos: 159.5,136.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 29740: - - Pressed: DoorBolt - uid: 29756 components: - type: Transform @@ -204460,13 +204856,6 @@ entities: - type: Transform pos: 104.5,170.5 parent: 1 -- proto: SignRedSix - entities: - - uid: 32021 - components: - - type: Transform - pos: 159.49802,136.56282 - parent: 1 - proto: SignRedThree entities: - uid: 22845 @@ -204802,8 +205191,11 @@ entities: - uid: 29055 components: - type: Transform + anchored: False pos: 97.5,151.5 parent: 1 + - type: Physics + bodyType: Dynamic - proto: Sink entities: - uid: 34543 @@ -208180,6 +208572,12 @@ entities: rot: 3.141592653589793 rad pos: 61.5,23.5 parent: 1 + - uid: 15813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 164.5,131.5 + parent: 1 - uid: 20890 components: - type: Transform @@ -214566,11 +214964,6 @@ entities: - type: Transform pos: 71.5,61.5 parent: 1 - - uid: 29800 - components: - - type: Transform - pos: 158.5,133.5 - parent: 1 - uid: 29801 components: - type: Transform @@ -214967,18 +215360,15 @@ entities: - type: Transform pos: 101.5,139.5 parent: 1 - - uid: 14267 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 98.5,150.5 - parent: 1 - uid: 15368 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 97.5,149.5 parent: 1 + - type: Physics + bodyType: Dynamic - uid: 23877 components: - type: Transform @@ -214999,11 +215389,22 @@ entities: - type: Transform pos: 110.5,130.5 parent: 1 - - uid: 26729 + - uid: 29748 components: - type: Transform - pos: 97.5,150.5 + anchored: False + pos: 97.5,147.5 parent: 1 + - type: Physics + bodyType: Dynamic + - uid: 29800 + components: + - type: Transform + anchored: False + pos: 97.5,148.5 + parent: 1 + - type: Physics + bodyType: Dynamic - uid: 34032 components: - type: Transform @@ -215018,24 +215419,15 @@ entities: parent: 1 - proto: TeslaGroundingRod entities: - - uid: 2518 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 97.5,147.5 - parent: 1 - uid: 14268 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 98.5,147.5 parent: 1 - - uid: 15360 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 97.5,148.5 - parent: 1 + - type: Physics + bodyType: Dynamic - uid: 23852 components: - type: Transform @@ -215056,6 +215448,22 @@ entities: - type: Transform pos: 112.5,130.5 parent: 1 + - uid: 29755 + components: + - type: Transform + anchored: False + pos: 98.5,148.5 + parent: 1 + - type: Physics + bodyType: Dynamic + - uid: 29802 + components: + - type: Transform + anchored: False + pos: 98.5,149.5 + parent: 1 + - type: Physics + bodyType: Dynamic - proto: TimpaniInstrument entities: - uid: 26782 @@ -215490,11 +215898,6 @@ entities: - type: Transform pos: 122.5,108.5 parent: 1 - - uid: 29802 - components: - - type: Transform - pos: 158.5,133.5 - parent: 1 - uid: 29807 components: - type: Transform @@ -216078,10 +216481,10 @@ entities: - type: Transform pos: 109.5,64.5 parent: 1 - - uid: 37611 + - uid: 26877 components: - type: Transform - pos: 148.5,142.5 + pos: 159.5,135.5 parent: 1 - proto: VendingMachineCoffee entities: @@ -216252,10 +216655,10 @@ entities: parent: 1 - proto: VendingMachinePride entities: - - uid: 37610 + - uid: 29764 components: - type: Transform - pos: 160.5,139.5 + pos: 159.5,134.5 parent: 1 - proto: VendingMachineRobotics entities: @@ -216385,6 +216788,13 @@ entities: - type: Transform pos: 93.5,58.5 parent: 1 +- proto: VendingMachineWinter + entities: + - uid: 2518 + components: + - type: Transform + pos: 159.5,133.5 + parent: 1 - proto: VendingMachineYouTool entities: - uid: 16049 @@ -233578,11 +233988,6 @@ entities: - type: Transform pos: 159.5,144.5 parent: 1 - - uid: 6945 - components: - - type: Transform - pos: 159.5,136.5 - parent: 1 - uid: 6946 components: - type: Transform @@ -240784,6 +241189,11 @@ entities: - type: Transform pos: 107.5,23.5 parent: 1 + - uid: 12065 + components: + - type: Transform + pos: 159.5,136.5 + parent: 1 - uid: 12512 components: - type: Transform From a849d2c989c785e6b89720450ca83f5c5c36989c Mon Sep 17 00:00:00 2001 From: robinthedragon <92946919+robinthedragon@users.noreply.github.com> Date: Tue, 11 Feb 2025 18:06:53 -0500 Subject: [PATCH 228/313] ancient jumpsuit copyright info (#35061) * update meta.json with copyright info * unblob Co-authored-by: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> --------- Co-authored-by: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> --- .../Textures/Clothing/Uniforms/Jumpsuit/ancient.rsi/meta.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ancient.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ancient.rsi/meta.json index 2a6baf4b14..773c4d35c1 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ancient.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ancient.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit (Will update when PR'd), monkey made by brainfood1183 (github) for ss14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/662c08272acd7be79531550919f56f846726eabb/icons/mob/uniform.dmi, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 From 4603b477787959cfe9dce2d90e26811f9d3ca861 Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Tue, 11 Feb 2025 18:13:00 -0500 Subject: [PATCH 229/313] Limit maximum capacity of fillable cluster grenades (#34281) * Limit maximum capacity of fillable cluster grenades * Swap GrenadeCount method for component property --- .../Explosion/Components/ScatteringGrenadeComponent.cs | 8 +++++++- .../EntitySystems/SharedScatteringGrenadeSystem.cs | 6 +++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/Content.Shared/Explosion/Components/ScatteringGrenadeComponent.cs b/Content.Shared/Explosion/Components/ScatteringGrenadeComponent.cs index be27c49ffa..059ad189d1 100644 --- a/Content.Shared/Explosion/Components/ScatteringGrenadeComponent.cs +++ b/Content.Shared/Explosion/Components/ScatteringGrenadeComponent.cs @@ -27,7 +27,7 @@ public sealed partial class ScatteringGrenadeComponent : Component /// /// If we have a pre-fill how many more can we spawn. /// - [AutoNetworkedField] + [ViewVariables(VVAccess.ReadOnly), AutoNetworkedField] public int UnspawnedCount; /// @@ -36,6 +36,12 @@ public sealed partial class ScatteringGrenadeComponent : Component [DataField] public int Capacity = 3; + /// + /// Number of grenades currently contained in the cluster (both spawned and unspawned) + /// + [ViewVariables(VVAccess.ReadOnly)] + public int Count => UnspawnedCount + Container.ContainedEntities.Count; + /// /// Decides if contained entities trigger after getting launched /// diff --git a/Content.Shared/Explosion/EntitySystems/SharedScatteringGrenadeSystem.cs b/Content.Shared/Explosion/EntitySystems/SharedScatteringGrenadeSystem.cs index b704fbf86f..7b54b0f7d5 100644 --- a/Content.Shared/Explosion/EntitySystems/SharedScatteringGrenadeSystem.cs +++ b/Content.Shared/Explosion/EntitySystems/SharedScatteringGrenadeSystem.cs @@ -49,6 +49,10 @@ public abstract class SharedScatteringGrenadeSystem : EntitySystem if (entity.Comp.Whitelist == null) return; + // Make sure there's room for another grenade to be added + if (entity.Comp.Count >= entity.Comp.Capacity) + return; + if (args.Handled || !_whitelistSystem.IsValid(entity.Comp.Whitelist, args.Used)) return; @@ -65,6 +69,6 @@ public abstract class SharedScatteringGrenadeSystem : EntitySystem if (!TryComp(entity, out var appearanceComponent)) return; - _appearance.SetData(entity, ClusterGrenadeVisuals.GrenadesCounter, entity.Comp.UnspawnedCount + entity.Comp.Container.ContainedEntities.Count, appearanceComponent); + _appearance.SetData(entity, ClusterGrenadeVisuals.GrenadesCounter, entity.Comp.Count, appearanceComponent); } } From 4e394815552cbce1dbae84acee4f68c069cc1c82 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 11 Feb 2025 23:14:09 +0000 Subject: [PATCH 230/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1cf2e5cf5f..e29b858d59 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,13 +1,4 @@ Entries: -- author: Ilya246 - changes: - - message: Atmos gas sell prices significantly lowered. - type: Tweak - - message: Frezon now consumes significantly more tritium to produce. - type: Tweak - id: 7440 - time: '2024-09-26T12:46:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32407 - author: SlamBamActionman changes: - message: Trusted players can now initiate votekicks for serious rulebreaks, when @@ -3897,3 +3888,10 @@ id: 7939 time: '2025-02-11T21:34:24.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33878 +- author: Tayrtahn + changes: + - message: Clusterbangs now properly limit their maximum capacity. + type: Fix + id: 7940 + time: '2025-02-11T23:13:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34281 From daad17c97ddadc48ae46c03872284c32d25bd988 Mon Sep 17 00:00:00 2001 From: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Date: Tue, 11 Feb 2025 16:29:13 -0800 Subject: [PATCH 231/313] Add fultons as a T2 research (#34567) * commit * fixed --- Resources/Prototypes/Recipes/Lathes/Packs/engineering.yml | 2 ++ Resources/Prototypes/Research/industrial.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/engineering.yml b/Resources/Prototypes/Recipes/Lathes/Packs/engineering.yml index 63d529fe4c..cb868aa9c2 100644 --- a/Resources/Prototypes/Recipes/Lathes/Packs/engineering.yml +++ b/Resources/Prototypes/Recipes/Lathes/Packs/engineering.yml @@ -58,6 +58,8 @@ - PowerDrill - WelderExperimental - JawsOfLife + - Fulton + - FultonBeacon - type: latheRecipePack id: AtmosTools diff --git a/Resources/Prototypes/Research/industrial.yml b/Resources/Prototypes/Research/industrial.yml index a9cafa5fa9..c0f184f71b 100644 --- a/Resources/Prototypes/Research/industrial.yml +++ b/Resources/Prototypes/Research/industrial.yml @@ -166,6 +166,8 @@ - PowerDrill - JawsOfLife - BorgModuleAdvancedTool + - Fulton + - FultonBeacon - type: technology id: MassExcavation From 4dfe1c1b2959a706d29ac07bf28a9d014c76e88c Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 12 Feb 2025 00:30:20 +0000 Subject: [PATCH 232/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e29b858d59..23a8d2e78e 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: SlamBamActionman - changes: - - message: Trusted players can now initiate votekicks for serious rulebreaks, when - admins are unavailable. - type: Add - id: 7441 - time: '2024-09-26T16:32:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32005 - author: Beck Thompson changes: - message: Voice masks allow you to pick your speaking style again. @@ -3895,3 +3887,10 @@ id: 7940 time: '2025-02-11T23:13:00.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34281 +- author: beck-thompson + changes: + - message: Fultons are now part of the Advanced Tools T2 research! + type: Add + id: 7941 + time: '2025-02-12T00:29:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34567 From 5b394c2f5a14f6a0aab4f4e7c52288b2bf59c80c Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Wed, 12 Feb 2025 03:37:39 +0300 Subject: [PATCH 233/313] Fix energy katana resolve error (#35082) --- Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs b/Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs index d738f2dd8a..e17e2bc893 100644 --- a/Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs +++ b/Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs @@ -63,7 +63,7 @@ public abstract class SharedSpaceNinjaSystem : EntitySystem /// public void BindKatana(Entity ent, EntityUid katana) { - if (!NinjaQuery.Resolve(ent, ref ent.Comp) || ent.Comp.Katana != null) + if (!NinjaQuery.Resolve(ent, ref ent.Comp, false) || ent.Comp.Katana != null) return; ent.Comp.Katana = katana; From 129bcdfeb77eef561bcf5cd4c5ec72ba888a7651 Mon Sep 17 00:00:00 2001 From: Nox Date: Tue, 11 Feb 2025 16:43:10 -0800 Subject: [PATCH 234/313] Deathsquad revolver ammo fix (#34910) * Added AP version of mateba, and put it in the deathsquad starting equipment. * Update Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * Update Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml | 8 ++++++++ Resources/Prototypes/Roles/Jobs/CentComm/deathsquad.yml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml index 309c2c502d..b5bc7f6805 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml @@ -108,6 +108,14 @@ soundGunshot: path: /Audio/Weapons/Guns/Gunshots/mateba.ogg +- type: entity + parent: WeaponRevolverMateba + id: WeaponRevolverMatebaAP # For deathsquad + suffix: armor-piercing + components: + - type: RevolverAmmoProvider + proto: CartridgeMagnumAP + - type: entity name: Python parent: [BaseWeaponRevolver, BaseSyndicateContraband] diff --git a/Resources/Prototypes/Roles/Jobs/CentComm/deathsquad.yml b/Resources/Prototypes/Roles/Jobs/CentComm/deathsquad.yml index 5f731fa582..ae890f7061 100644 --- a/Resources/Prototypes/Roles/Jobs/CentComm/deathsquad.yml +++ b/Resources/Prototypes/Roles/Jobs/CentComm/deathsquad.yml @@ -31,7 +31,7 @@ storage: back: - WeaponPulsePistol - - WeaponRevolverMateba + - WeaponRevolverMatebaAP - SpeedLoaderMagnumAP - SpeedLoaderMagnumAP - BoxFlashbang From c5884983d8ab2b182391555d42383a3a3346a913 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 12 Feb 2025 00:44:16 +0000 Subject: [PATCH 235/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 23a8d2e78e..9064f2cf5f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Beck Thompson - changes: - - message: Voice masks allow you to pick your speaking style again. - type: Fix - id: 7442 - time: '2024-09-26T16:55:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30798 - author: august-sun changes: - message: Fixed collision properties of gas and volumetric pumps. @@ -3894,3 +3887,10 @@ id: 7941 time: '2025-02-12T00:29:13.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34567 +- author: Nox38 + changes: + - message: Deathsquad agents Matebas now come loaded with AP rounds. + type: Fix + id: 7942 + time: '2025-02-12T00:43:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34910 From 5c98da40cd103ade5a2d4bd6e63e428c1b43a802 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Wed, 12 Feb 2025 13:48:12 +1100 Subject: [PATCH 236/313] Update submodule to 244.0.0 (#35094) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index 1a7e490e4b..fea592e1d5 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 1a7e490e4b00200bfa3ebebc6d9b12cb1ec82adf +Subproject commit fea592e1d53b043bda73a66248576caa6e3f65dc From 75727db3a31cc756d6945e4743be062429992c24 Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Tue, 11 Feb 2025 23:32:18 -0800 Subject: [PATCH 237/313] Add new freezer atmos devices and fix freezer fixgridatmos marker (#34991) --- .../AtmosphereSystem.Commands.cs | 6 ++-- Content.Shared/Atmos/Atmospherics.cs | 15 ++++++++++ .../Prototypes/Atmospherics/thresholds.yml | 11 +++++++ .../Specific/Atmospherics/freezer.yml | 29 +++++++++++++++++++ 4 files changed, 58 insertions(+), 3 deletions(-) create mode 100644 Resources/Prototypes/Entities/Structures/Specific/Atmospherics/freezer.yml diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs index b790493c44..d728ba9164 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs @@ -61,9 +61,9 @@ public sealed partial class AtmosphereSystem mixtures[5].Temperature = 5000f; // 6: (Walk-In) Freezer - mixtures[6].AdjustMoles(Gas.Oxygen, Atmospherics.OxygenMolesStandard); - mixtures[6].AdjustMoles(Gas.Nitrogen, Atmospherics.NitrogenMolesStandard); - mixtures[6].Temperature = 235f; // Little colder than an actual freezer but gives a grace period to get e.g. themomachines set up, should keep warm for a few door openings + mixtures[6].AdjustMoles(Gas.Oxygen, Atmospherics.OxygenMolesFreezer); + mixtures[6].AdjustMoles(Gas.Nitrogen, Atmospherics.NitrogenMolesFreezer); + mixtures[6].Temperature = Atmospherics.FreezerTemp; // Little colder than an actual freezer but gives a grace period to get e.g. themomachines set up, should keep warm for a few door openings // 7: Nitrogen (101kpa) for vox rooms mixtures[7].AdjustMoles(Gas.Nitrogen, Atmospherics.MolesCellStandard); diff --git a/Content.Shared/Atmos/Atmospherics.cs b/Content.Shared/Atmos/Atmospherics.cs index cb89f6c199..749e705a31 100644 --- a/Content.Shared/Atmos/Atmospherics.cs +++ b/Content.Shared/Atmos/Atmospherics.cs @@ -40,6 +40,12 @@ namespace Content.Shared.Atmos /// public const float T20C = 293.15f; + /// + /// -38.15ºC in K. + /// This is used to initialize roundstart freezer rooms. + /// + public const float FreezerTemp = 235f; + /// /// Do not allow any gas mixture temperatures to exceed this number. It is occasionally possible /// to have very small heat capacity (e.g. room that was just unspaced) and for large amounts of @@ -65,6 +71,12 @@ namespace Content.Shared.Atmos /// public const float MolesCellStandard = (OneAtmosphere * CellVolume / (T20C * R)); + /// + /// Moles in a 2.5 m^3 cell at 101.325 kPa and -38.15ºC. + /// This is used in fix atmos freezer markers to ensure the air is at the correct atmospheric pressure while still being cold. + /// + public const float MolesCellFreezer = (OneAtmosphere * CellVolume / (FreezerTemp * R)); + /// /// Moles in a 2.5 m^3 cell at GasMinerDefaultMaxExternalPressure kPa and 20ºC /// @@ -81,6 +93,9 @@ namespace Content.Shared.Atmos public const float OxygenMolesStandard = MolesCellStandard * OxygenStandard; public const float NitrogenMolesStandard = MolesCellStandard * NitrogenStandard; + public const float OxygenMolesFreezer = MolesCellFreezer * OxygenStandard; + public const float NitrogenMolesFreezer = MolesCellFreezer * NitrogenStandard; + #endregion /// diff --git a/Resources/Prototypes/Atmospherics/thresholds.yml b/Resources/Prototypes/Atmospherics/thresholds.yml index 29904e6f24..20d7911bf2 100644 --- a/Resources/Prototypes/Atmospherics/thresholds.yml +++ b/Resources/Prototypes/Atmospherics/thresholds.yml @@ -114,3 +114,14 @@ threshold: 0.8 # danger below 80% nitrogen lowerWarnAround: !type:AlarmThresholdSetting threshold: 1.125 # warning below 90% + +- type: alarmThreshold + id: freezerTemperature + upperBound: !type:AlarmThresholdSetting + threshold: 335.15 # T-38.15C (235) + 100 + lowerBound: !type:AlarmThresholdSetting + threshold: 135.15 # T-38.15C (235) - 100 + upperWarnAround: !type:AlarmThresholdSetting + threshold: 0.8 + lowerWarnAround: !type:AlarmThresholdSetting + threshold: 1.1 diff --git a/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/freezer.yml b/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/freezer.yml new file mode 100644 index 0000000000..f3c75eb737 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/freezer.yml @@ -0,0 +1,29 @@ +- type: entity + abstract: true + parent: AirSensorBase + id: AirSensorFreezerBase + suffix: Freezer Atmosphere + components: + - type: AtmosMonitor + temperatureThresholdId: freezerTemperature + +- type: entity + parent: [AirSensorFreezerBase, AirSensor] + id: AirSensorFreezer + +- type: entity + parent: [AirSensorFreezerBase, GasVentPump] + id: GasVentPumpFreezer + +- type: entity + parent: [AirSensorFreezerBase, GasVentScrubber] + id: GasVentScrubberFreezer + +# air alarm proto with auto: false to prevent the automatic switching of modes overriding the default values +- type: entity + parent: AirAlarm + id: AirAlarmFreezer + suffix: Freezer Atmosphere, auto mode disabled + components: + - type: AirAlarm + autoMode: false From 0d7ff79d235600fc99cd1ae02b6ddca7034c57a5 Mon Sep 17 00:00:00 2001 From: Milon Date: Wed, 12 Feb 2025 09:58:05 +0100 Subject: [PATCH 238/313] update the announce command (#34889) --- .../Announcements/AnnounceCommand.cs | 91 ++++++++++++++----- .../commands/announce-command.ftl | 11 +++ 2 files changed, 77 insertions(+), 25 deletions(-) create mode 100644 Resources/Locale/en-US/administration/commands/announce-command.ftl diff --git a/Content.Server/Announcements/AnnounceCommand.cs b/Content.Server/Announcements/AnnounceCommand.cs index 3249fcc95d..55a0498aa0 100644 --- a/Content.Server/Announcements/AnnounceCommand.cs +++ b/Content.Server/Announcements/AnnounceCommand.cs @@ -1,38 +1,79 @@ using Content.Server.Administration; -using Content.Server.Chat; using Content.Server.Chat.Systems; using Content.Shared.Administration; +using Robust.Shared.Audio; using Robust.Shared.Console; +using Robust.Shared.ContentPack; +using Robust.Shared.Prototypes; -namespace Content.Server.Announcements +namespace Content.Server.Announcements; + +[AdminCommand(AdminFlags.Moderator)] +public sealed class AnnounceCommand : LocalizedEntityCommands { - [AdminCommand(AdminFlags.Moderator)] - public sealed class AnnounceCommand : IConsoleCommand - { - public string Command => "announce"; - public string Description => "Send an in-game announcement."; - public string Help => $"{Command} or {Command} to send announcement as CentCom."; - public void Execute(IConsoleShell shell, string argStr, string[] args) - { - var chat = IoCManager.Resolve().GetEntitySystem(); + [Dependency] private readonly ChatSystem _chat = default!; + [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly IResourceManager _res = default!; - if (args.Length == 0) + public override string Command => "announce"; + public override string Description => Loc.GetString("cmd-announce-desc"); + public override string Help => Loc.GetString("cmd-announce-help", ("command", Command)); + + public override void Execute(IConsoleShell shell, string argStr, string[] args) + { + switch (args.Length) + { + case 0: + shell.WriteError(Loc.GetString("shell-need-minimum-one-argument")); + return; + case > 4: + shell.WriteError(Loc.GetString("shell-wrong-arguments-number")); + return; + } + + var message = args[0]; + var sender = Loc.GetString("cmd-announce-sender"); + var color = Color.Gold; + var sound = new SoundPathSpecifier("/Audio/Announcements/announce.ogg"); + + // Optional sender argument + if (args.Length >= 2) + sender = args[1]; + + // Optional color argument + if (args.Length >= 3) + { + try { - shell.WriteError("Not enough arguments! Need at least 1."); + color = Color.FromHex(args[2]); + } + catch + { + shell.WriteError(Loc.GetString("shell-invalid-color-hex")); return; } - - if (args.Length == 1) - { - chat.DispatchGlobalAnnouncement(args[0], colorOverride: Color.Gold); - } - else - { - // Explicit IEnumerable due to overload ambiguity on .NET 9 - var message = string.Join(' ', (IEnumerable)new ArraySegment(args, 1, args.Length-1)); - chat.DispatchGlobalAnnouncement(message, args[0], colorOverride: Color.Gold); - } - shell.WriteLine("Sent!"); } + + // Optional sound argument + if (args.Length >= 4) + sound = new SoundPathSpecifier(args[3]); + + _chat.DispatchGlobalAnnouncement(message, sender, true, sound, color); + shell.WriteLine(Loc.GetString("shell-command-success")); + } + + public override CompletionResult GetCompletion(IConsoleShell shell, string[] args) + { + return args.Length switch + { + 1 => CompletionResult.FromHint(Loc.GetString("cmd-announce-arg-message")), + 2 => CompletionResult.FromHint(Loc.GetString("cmd-announce-arg-sender")), + 3 => CompletionResult.FromHint(Loc.GetString("cmd-announce-arg-color")), + 4 => CompletionResult.FromHintOptions( + CompletionHelper.AudioFilePath(args[3], _proto, _res), + Loc.GetString("cmd-announce-arg-sound") + ), + _ => CompletionResult.Empty + }; } } diff --git a/Resources/Locale/en-US/administration/commands/announce-command.ftl b/Resources/Locale/en-US/administration/commands/announce-command.ftl new file mode 100644 index 0000000000..8cdc045f8a --- /dev/null +++ b/Resources/Locale/en-US/administration/commands/announce-command.ftl @@ -0,0 +1,11 @@ +cmd-announce-desc = Send an in-game announcement with custom color and sound. +cmd-announce-help = {$command} [sender] [color] [sound] - Send announcement. Sender defaults to CentCom, color to Gold, sound to announce.ogg. The color should be in a #RRGGBB format. + +# The default sender for the announcement +cmd-announce-sender = Central Command + +# Completion hints +cmd-announce-arg-message = +cmd-announce-arg-sender = [sender] +cmd-announce-arg-color = [color] +cmd-announce-arg-sound = [sound] From 107f4729ee7e0b807f5bcc675ccdca1c85542687 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 12 Feb 2025 08:59:14 +0000 Subject: [PATCH 239/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 9064f2cf5f..b255ab12b0 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: august-sun - changes: - - message: Fixed collision properties of gas and volumetric pumps. - type: Fix - id: 7443 - time: '2024-09-27T05:49:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32471 - author: metalgearsloth changes: - message: Fix airlock autoclose mispredicting. @@ -3894,3 +3887,10 @@ id: 7942 time: '2025-02-12T00:43:10.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34910 +- author: MilonPL + changes: + - message: The announce command now takes optional color and sound parameters. + type: Tweak + id: 7943 + time: '2025-02-12T08:58:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34889 From 773159d6db68eadb57c6d2fb46ea4b48c7fa7ef1 Mon Sep 17 00:00:00 2001 From: Partmedia Date: Wed, 12 Feb 2025 01:59:40 -0800 Subject: [PATCH 240/313] Add datafield comments to PlantHolderComponent (#35099) --- .../Botany/Components/PlantHolderComponent.cs | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/Content.Server/Botany/Components/PlantHolderComponent.cs b/Content.Server/Botany/Components/PlantHolderComponent.cs index 235cd3050b..d65e1b702b 100644 --- a/Content.Server/Botany/Components/PlantHolderComponent.cs +++ b/Content.Server/Botany/Components/PlantHolderComponent.cs @@ -7,8 +7,15 @@ namespace Content.Server.Botany.Components; [RegisterComponent] public sealed partial class PlantHolderComponent : Component { + /// + /// Game time for the next plant reagent update. + /// [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] public TimeSpan NextUpdate = TimeSpan.Zero; + + /// + /// Time between plant reagent consumption updates. + /// [DataField] public TimeSpan UpdateDelay = TimeSpan.FromSeconds(3); @@ -18,18 +25,31 @@ public sealed partial class PlantHolderComponent : Component [DataField] public int MissingGas; + /// + /// Time between plant growth updates. + /// [DataField] public TimeSpan CycleDelay = TimeSpan.FromSeconds(15f); + /// + /// Game time when the plant last did a growth update. + /// [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] public TimeSpan LastCycle = TimeSpan.Zero; + /// + /// Sound played when any reagent is transferred into the plant holder. + /// [DataField] public SoundSpecifier? WateringSound; [DataField] public bool UpdateSpriteAfterUpdate; + /// + /// Set to true if the plant holder displays plant warnings (e.g. water low) in the sprite and + /// examine text. Used to differentiate hydroponic trays from simple soil plots. + /// [DataField] public bool DrawWarnings = false; @@ -60,9 +80,16 @@ public sealed partial class PlantHolderComponent : Component [DataField] public bool Harvest; + /// + /// Set to true if this plant has been clipped by seed clippers. Used to prevent a single plant + /// from repeatedly being clipped. + /// [DataField] public bool Sampled; + /// + /// Multiplier for the number of entities produced at harvest. + /// [DataField] public int YieldMod = 1; @@ -81,15 +108,28 @@ public sealed partial class PlantHolderComponent : Component [DataField] public SeedData? Seed; + /// + /// True if the plant is losing health due to too high/low temperature. + /// [DataField] public bool ImproperHeat; + /// + /// True if the plant is losing health due to too high/low pressure. + /// [DataField] public bool ImproperPressure; + /// + /// Not currently used. + /// [DataField] public bool ImproperLight; + /// + /// Set to true to force a plant update (visuals, component, etc.) regardless of the current + /// update cycle time. Typically used when some interaction affects this plant. + /// [DataField] public bool ForceUpdate; From 0d33e6182c4fdbad89f1e3a0806040e42f9da40c Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Wed, 12 Feb 2025 14:21:12 +0300 Subject: [PATCH 241/313] Split ``ReplacementAccentPrototype`` and ``ReplacementAccentComponent`` in different files (#35107) * Split ReplacementAccentPrototype and ReplacementAccentComponent * Fixes * Fixes * inheritdoc --- Content.Server/Chat/Systems/ChatSystem.cs | 2 +- .../Components/AddAccentClothingComponent.cs | 3 +- .../Components/ReplacementAccentComponent.cs | 48 ++++--------------- .../EntitySystems/ReplacementAccentSystem.cs | 1 + .../Prototypes/ReplacementAccentPrototype.cs | 31 ++++++++++++ 5 files changed, 45 insertions(+), 40 deletions(-) create mode 100644 Content.Server/Speech/Prototypes/ReplacementAccentPrototype.cs diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index d834d8304a..674a82053a 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -6,7 +6,7 @@ using Content.Server.Administration.Managers; using Content.Server.Chat.Managers; using Content.Server.GameTicking; using Content.Server.Players.RateLimiting; -using Content.Server.Speech.Components; +using Content.Server.Speech.Prototypes; using Content.Server.Speech.EntitySystems; using Content.Server.Station.Components; using Content.Server.Station.Systems; diff --git a/Content.Server/Speech/Components/AddAccentClothingComponent.cs b/Content.Server/Speech/Components/AddAccentClothingComponent.cs index 9d93b55368..335b436f7c 100644 --- a/Content.Server/Speech/Components/AddAccentClothingComponent.cs +++ b/Content.Server/Speech/Components/AddAccentClothingComponent.cs @@ -1,4 +1,5 @@ -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Content.Server.Speech.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Speech.Components; diff --git a/Content.Server/Speech/Components/ReplacementAccentComponent.cs b/Content.Server/Speech/Components/ReplacementAccentComponent.cs index 037da72029..2a5a700a5e 100644 --- a/Content.Server/Speech/Components/ReplacementAccentComponent.cs +++ b/Content.Server/Speech/Components/ReplacementAccentComponent.cs @@ -1,43 +1,15 @@ -using Robust.Shared.Prototypes; +using Content.Server.Speech.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -namespace Content.Server.Speech.Components +namespace Content.Server.Speech.Components; + +/// +/// Replaces full sentences or words within sentences with new strings. +/// +[RegisterComponent] +public sealed partial class ReplacementAccentComponent : Component { - [Prototype("accent")] - public sealed partial class ReplacementAccentPrototype : IPrototype - { - [ViewVariables] - [IdDataField] - public string ID { get; private set; } = default!; + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer), required: true)] + public string Accent = default!; - /// - /// If this array is non-null, the full text of anything said will be randomly replaced with one of these words. - /// - [DataField("fullReplacements")] - public string[]? FullReplacements; - - /// - /// If this dictionary is non-null and is null, any keys surrounded by spaces - /// (words) will be replaced by the value, attempting to intelligently keep capitalization. - /// - [DataField("wordReplacements")] - public Dictionary? WordReplacements; - - /// - /// Allows you to substitute words, not always, but with some chance - /// - [DataField] - public float ReplacementChance = 1f; - } - - /// - /// Replaces full sentences or words within sentences with new strings. - /// - [RegisterComponent] - public sealed partial class ReplacementAccentComponent : Component - { - [DataField("accent", customTypeSerializer: typeof(PrototypeIdSerializer), required: true)] - public string Accent = default!; - - } } diff --git a/Content.Server/Speech/EntitySystems/ReplacementAccentSystem.cs b/Content.Server/Speech/EntitySystems/ReplacementAccentSystem.cs index d81d913a36..656a72b3f9 100644 --- a/Content.Server/Speech/EntitySystems/ReplacementAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/ReplacementAccentSystem.cs @@ -1,6 +1,7 @@ using System.Linq; using System.Text.RegularExpressions; using Content.Server.Speech.Components; +using Content.Server.Speech.Prototypes; using JetBrains.Annotations; using Robust.Shared.Prototypes; using Robust.Shared.Random; diff --git a/Content.Server/Speech/Prototypes/ReplacementAccentPrototype.cs b/Content.Server/Speech/Prototypes/ReplacementAccentPrototype.cs new file mode 100644 index 0000000000..cde4baeb2f --- /dev/null +++ b/Content.Server/Speech/Prototypes/ReplacementAccentPrototype.cs @@ -0,0 +1,31 @@ +using Robust.Shared.Prototypes; + +namespace Content.Server.Speech.Prototypes; + +[Prototype("accent")] +public sealed partial class ReplacementAccentPrototype : IPrototype +{ + /// + [ViewVariables] + [IdDataField] + public string ID { get; private set; } = default!; + + /// + /// If this array is non-null, the full text of anything said will be randomly replaced with one of these words. + /// + [DataField] + public string[]? FullReplacements; + + /// + /// If this dictionary is non-null and is null, any keys surrounded by spaces + /// (words) will be replaced by the value, attempting to intelligently keep capitalization. + /// + [DataField] + public Dictionary? WordReplacements; + + /// + /// Allows you to substitute words, not always, but with some chance + /// + [DataField] + public float ReplacementChance = 1f; +} From 47cb8a0b087fe7c7f4956d9cb25f68db2e9aff6a Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Wed, 12 Feb 2025 15:47:48 +0300 Subject: [PATCH 242/313] RoomSpawner mask (#33110) * RoolFill can now spaw rooms with any size * tile ignoring * upgrade interior * simplify * Update DungeonSystem.Rooms.cs * center rooms * Update RoomFillComponent.cs * Update RoomFillComponent.cs * Update DungeonSystem.Rooms.cs * Remove roomfillcoponent from integration test * Update EntityTest.cs * remove nullable size, replaced with minsize and maxsize * clear existing logic refactor * delete this one --- Content.IntegrationTests/Tests/EntityTest.cs | 3 + .../Procedural/DungeonSystem.Rooms.cs | 56 +- .../Procedural/RoomFillComponent.cs | 18 +- Content.Server/Procedural/RoomFillSystem.cs | 8 +- .../Procedural/DungeonRoomPrototype.cs | 22 +- Resources/Maps/Dungeon/vgroidinterior.yml | 2107 ++++++++++------- .../Prototypes/Entities/Markers/rooms.yml | 4 +- .../Procedural/Themes/vgroidinterior.yml | 30 + 8 files changed, 1318 insertions(+), 930 deletions(-) diff --git a/Content.IntegrationTests/Tests/EntityTest.cs b/Content.IntegrationTests/Tests/EntityTest.cs index 5dba8ac658..6b8b59a12c 100644 --- a/Content.IntegrationTests/Tests/EntityTest.cs +++ b/Content.IntegrationTests/Tests/EntityTest.cs @@ -39,6 +39,7 @@ namespace Content.IntegrationTests.Tests .Where(p => !p.Abstract) .Where(p => !pair.IsTestPrototype(p)) .Where(p => !p.Components.ContainsKey("MapGrid")) // This will smash stuff otherwise. + .Where(p => !p.Components.ContainsKey("RoomFill")) // This comp can delete all entities, and spawn others .Select(p => p.ID) .ToList(); @@ -101,6 +102,7 @@ namespace Content.IntegrationTests.Tests .Where(p => !p.Abstract) .Where(p => !pair.IsTestPrototype(p)) .Where(p => !p.Components.ContainsKey("MapGrid")) // This will smash stuff otherwise. + .Where(p => !p.Components.ContainsKey("RoomFill")) // This comp can delete all entities, and spawn others .Select(p => p.ID) .ToList(); foreach (var protoId in protoIds) @@ -341,6 +343,7 @@ namespace Content.IntegrationTests.Tests "DebugExceptionInitialize", "DebugExceptionStartup", "GridFill", + "RoomFill", "Map", // We aren't testing a map entity in this test "MapGrid", "Broadphase", diff --git a/Content.Server/Procedural/DungeonSystem.Rooms.cs b/Content.Server/Procedural/DungeonSystem.Rooms.cs index 20d64acff1..f74868bb52 100644 --- a/Content.Server/Procedural/DungeonSystem.Rooms.cs +++ b/Content.Server/Procedural/DungeonSystem.Rooms.cs @@ -17,9 +17,20 @@ public sealed partial class DungeonSystem private readonly List _availableRooms = new(); /// - /// Gets a random dungeon room matching the specified area and whitelist. + /// Gets a random dungeon room matching the specified area, whitelist and size. /// public DungeonRoomPrototype? GetRoomPrototype(Vector2i size, Random random, EntityWhitelist? whitelist = null) + { + return GetRoomPrototype(random, whitelist, minSize: size, maxSize: size); + } + + /// + /// Gets a random dungeon room matching the specified area and whitelist and size range + /// + public DungeonRoomPrototype? GetRoomPrototype(Random random, + EntityWhitelist? whitelist = null, + Vector2i? minSize = null, + Vector2i? maxSize = null) { // Can never be true. if (whitelist is { Tags: null }) @@ -31,7 +42,10 @@ public sealed partial class DungeonSystem foreach (var proto in _prototype.EnumeratePrototypes()) { - if (proto.Size != size) + if (minSize is not null && (proto.Size.X < minSize.Value.X || proto.Size.Y < minSize.Value.Y)) + continue; + + if (maxSize is not null && (proto.Size.X > maxSize.Value.X || proto.Size.Y > maxSize.Value.Y)) continue; if (whitelist == null) @@ -115,29 +129,6 @@ public sealed partial class DungeonSystem var finalRoomRotation = roomTransform.Rotation(); - // go BRRNNTTT on existing stuff - if (clearExisting) - { - var gridBounds = new Box2(Vector2.Transform(-room.Size/2, roomTransform), Vector2.Transform(room.Size/2, roomTransform)); - _entitySet.Clear(); - // Polygon skin moment - gridBounds = gridBounds.Enlarged(-0.05f); - _lookup.GetLocalEntitiesIntersecting(gridUid, gridBounds, _entitySet, LookupFlags.Uncontained); - - foreach (var templateEnt in _entitySet) - { - Del(templateEnt); - } - - if (TryComp(gridUid, out DecalGridComponent? decalGrid)) - { - foreach (var decal in _decals.GetDecalsIntersecting(gridUid, gridBounds, decalGrid)) - { - _decals.RemoveDecal(gridUid, decal.Index, decalGrid); - } - } - } - var roomCenter = (room.Offset + room.Size / 2f) * grid.TileSize; var tileOffset = -roomCenter + grid.TileSizeHalfVector; _tiles.Clear(); @@ -156,7 +147,22 @@ public sealed partial class DungeonSystem if (!clearExisting && reservedTiles?.Contains(rounded) == true) continue; + if (room.IgnoreTile is not null) + { + if (_maps.TryGetTileDef(templateGrid, indices, out var tileDef) && room.IgnoreTile == tileDef.ID) + continue; + } + _tiles.Add((rounded, tileRef.Tile)); + + if (clearExisting) + { + var anchored = _maps.GetAnchoredEntities((gridUid, grid), rounded); + foreach (var ent in anchored) + { + QueueDel(ent); + } + } } } diff --git a/Content.Server/Procedural/RoomFillComponent.cs b/Content.Server/Procedural/RoomFillComponent.cs index 50d0fa7c0a..d4f4078d93 100644 --- a/Content.Server/Procedural/RoomFillComponent.cs +++ b/Content.Server/Procedural/RoomFillComponent.cs @@ -1,6 +1,4 @@ -using Content.Shared.Procedural; using Content.Shared.Whitelist; -using Robust.Shared.Prototypes; namespace Content.Server.Procedural; @@ -18,20 +16,26 @@ public sealed partial class RoomFillComponent : Component public bool Rotation = true; /// - /// Size of the room to fill. + /// Min size of the possible selected room. /// - [DataField(required: true)] - public Vector2i Size; + [DataField] + public Vector2i MinSize = new (3, 3); + + /// + /// Max size of the possible selected room. + /// + [DataField] + public Vector2i MaxSize = new (10, 10); /// /// Rooms allowed for the marker. /// [DataField] public EntityWhitelist? RoomWhitelist; - + /// /// Should any existing entities / decals be bulldozed first. /// [DataField] - public bool ClearExisting; + public bool ClearExisting = true; } diff --git a/Content.Server/Procedural/RoomFillSystem.cs b/Content.Server/Procedural/RoomFillSystem.cs index b539cc9780..f4ccab2367 100644 --- a/Content.Server/Procedural/RoomFillSystem.cs +++ b/Content.Server/Procedural/RoomFillSystem.cs @@ -15,16 +15,12 @@ public sealed class RoomFillSystem : EntitySystem private void OnRoomFillMapInit(EntityUid uid, RoomFillComponent component, MapInitEvent args) { - // Just test things. - if (component.Size == Vector2i.Zero) - return; - var xform = Transform(uid); if (xform.GridUid != null) { var random = new Random(); - var room = _dungeon.GetRoomPrototype(component.Size, random, component.RoomWhitelist); + var room = _dungeon.GetRoomPrototype(random, component.RoomWhitelist, component.MinSize, component.MaxSize); if (room != null) { @@ -32,7 +28,7 @@ public sealed class RoomFillSystem : EntitySystem _dungeon.SpawnRoom( xform.GridUid.Value, mapGrid, - _maps.LocalToTile(xform.GridUid.Value, mapGrid, xform.Coordinates), + _maps.LocalToTile(xform.GridUid.Value, mapGrid, xform.Coordinates) - new Vector2i(room.Size.X/2,room.Size.Y/2), room, random, null, diff --git a/Content.Shared/Procedural/DungeonRoomPrototype.cs b/Content.Shared/Procedural/DungeonRoomPrototype.cs index 74fa4b36e3..418e40f7be 100644 --- a/Content.Shared/Procedural/DungeonRoomPrototype.cs +++ b/Content.Shared/Procedural/DungeonRoomPrototype.cs @@ -1,6 +1,6 @@ +using Content.Shared.Maps; using Content.Shared.Tag; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; using Robust.Shared.Utility; namespace Content.Shared.Procedural; @@ -10,18 +10,28 @@ public sealed partial class DungeonRoomPrototype : IPrototype { [IdDataField] public string ID { get; } = string.Empty; - [ViewVariables(VVAccess.ReadWrite), DataField("tags", customTypeSerializer:typeof(PrototypeIdListSerializer))] - public List Tags = new(); + [ViewVariables(VVAccess.ReadWrite), DataField] + public List> Tags = new(); - [DataField("size", required: true)] public Vector2i Size; + [DataField(required: true)] + public Vector2i Size; /// /// Path to the file to use for the room. /// - [DataField("atlas", required: true)] public ResPath AtlasPath; + [DataField("atlas", required: true)] + public ResPath AtlasPath; /// /// Tile offset into the atlas to use for the room. /// - [DataField("offset", required: true)] public Vector2i Offset; + [DataField(required: true)] + public Vector2i Offset; + + /// + /// These tiles will be ignored when copying from the atlas into the actual game, + /// allowing you to make rooms of irregular shapes that blend seamlessly into their surroundings + /// + [DataField] + public ProtoId? IgnoreTile; } diff --git a/Resources/Maps/Dungeon/vgroidinterior.yml b/Resources/Maps/Dungeon/vgroidinterior.yml index 2287b87e9e..c096471126 100644 --- a/Resources/Maps/Dungeon/vgroidinterior.yml +++ b/Resources/Maps/Dungeon/vgroidinterior.yml @@ -35,11 +35,11 @@ entities: version: 6 0,0: ind: 0,0 - tiles: AgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAABAAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAAAQAAAAAAAwAAAAAABgAAAAAAAwAAAAAABgAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAAwAAAAAABgAAAAAAAQAAAAAABgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAABAAAAAAAAwAAAAAABAAAAAAABgAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAQAAAAAABgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAAABAAAAAAA + tiles: UgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAABAAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAUgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAUgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAUgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAUgAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAUgAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAUgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAAUgAAAAAAAwAAAAAAUgAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAUgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAABAAAAAAAAwAAAAAABAAAAAAAUgAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAQAAAAAAUgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAAABAAAAAAA version: 6 0,1: ind: 0,1 - tiles: BgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAABgAAAAAAAwAAAAAABgAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: UgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAUgAAAAAAAwAAAAAAUgAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAUgAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 0,-1: ind: 0,-1 @@ -59,11 +59,11 @@ entities: version: 6 1,0: ind: 1,0 - tiles: BAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAABwAAAAAACAAAAAAABwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAABwAAAAAABwAAAAAACAAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAACAAAAAAABwAAAAAABwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAABgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAUgAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAABwAAAAAACAAAAAAABwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAABwAAAAAABwAAAAAACAAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAACAAAAAAABwAAAAAABwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAUgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 - tiles: AwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAwAAAAAABwAAAAAABwAAAAAABwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAWQAAAAAAWQAAAAAABwAAAAAABwAAAAAABwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAWQAAAAAAWQAAAAAABwAAAAAABwAAAAAABwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 @@ -172,2190 +172,2531 @@ entities: - type: RadiationGridResistance - proto: AirlockMaintLocked entities: - - uid: 75 + - uid: 2 components: - type: Transform pos: 20.5,6.5 parent: 1 - - uid: 113 + - uid: 3 components: - type: Transform pos: 13.5,1.5 parent: 1 - - uid: 207 + - uid: 4 components: - type: Transform pos: 14.5,8.5 parent: 1 - - uid: 225 + - uid: 5 components: - type: Transform pos: 20.5,12.5 parent: 1 + - uid: 442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,19.5 + parent: 1 + - uid: 444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,21.5 + parent: 1 - proto: AtmosFixInstantPlasmaFireMarker entities: - - uid: 233 + - uid: 6 components: - type: Transform pos: 8.5,14.5 parent: 1 - proto: Bed entities: - - uid: 71 + - uid: 7 components: - type: Transform pos: 21.5,9.5 parent: 1 - proto: BedsheetSpawner entities: - - uid: 89 + - uid: 8 components: - type: Transform pos: 21.5,9.5 parent: 1 - proto: BookshelfFilled entities: - - uid: 90 + - uid: 9 components: - type: Transform pos: 19.5,9.5 parent: 1 - proto: CableHV entities: - - uid: 3 + - uid: 10 components: - type: Transform pos: 8.5,2.5 parent: 1 - - uid: 4 + - uid: 11 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 5 + - uid: 12 components: - type: Transform pos: 8.5,4.5 parent: 1 - - uid: 6 + - uid: 13 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 7 + - uid: 14 components: - type: Transform pos: 9.5,4.5 parent: 1 - proto: ChairWood entities: - - uid: 76 + - uid: 15 components: - type: Transform pos: 19.45475,8.339682 parent: 1 - proto: CrateMaterialPlasma entities: - - uid: 232 + - uid: 16 components: - type: Transform pos: 8.5,14.5 parent: 1 - proto: GeneratorRTG entities: - - uid: 2 + - uid: 17 components: - type: Transform pos: 8.5,2.5 parent: 1 - proto: GeneratorRTGDamaged entities: - - uid: 11 + - uid: 18 components: - type: Transform pos: 20.5,2.5 parent: 1 - proto: Girder entities: - - uid: 231 + - uid: 19 components: - type: Transform pos: 16.5,12.5 parent: 1 - proto: Grille entities: - - uid: 8 + - uid: 20 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 9 + - uid: 21 components: - type: Transform pos: 8.5,4.5 parent: 1 - - uid: 10 + - uid: 22 components: - type: Transform pos: 9.5,4.5 parent: 1 - - uid: 175 + - uid: 23 components: - type: Transform pos: 12.5,15.5 parent: 1 - - uid: 176 + - uid: 24 components: - type: Transform pos: 16.5,15.5 parent: 1 - - uid: 177 + - uid: 25 components: - type: Transform pos: 13.5,16.5 parent: 1 - - uid: 183 + - uid: 26 components: - type: Transform pos: 12.5,13.5 parent: 1 - - uid: 184 + - uid: 27 components: - type: Transform pos: 13.5,12.5 parent: 1 - - uid: 185 + - uid: 28 components: - type: Transform pos: 15.5,16.5 parent: 1 - - uid: 214 + - uid: 29 components: - type: Transform pos: 12.5,14.5 parent: 1 - - uid: 215 + - uid: 30 components: - type: Transform pos: 16.5,14.5 parent: 1 - - uid: 216 + - uid: 31 components: - type: Transform pos: 14.5,16.5 parent: 1 - - uid: 312 + - uid: 32 components: - type: Transform pos: 1.5,15.5 parent: 1 + - uid: 51 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,19.5 + parent: 1 + - uid: 52 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,19.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,21.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,21.5 + parent: 1 + - uid: 470 + components: + - type: Transform + pos: 14.5,19.5 + parent: 1 + - uid: 475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,19.5 + parent: 1 + - uid: 476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,20.5 + parent: 1 + - uid: 477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,21.5 + parent: 1 - proto: GrilleBroken entities: - - uid: 186 + - uid: 33 components: - type: Transform pos: 14.5,12.5 parent: 1 + - uid: 40 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,18.5 + parent: 1 + - uid: 41 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,18.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,18.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 7.5,22.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 8.5,22.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,19.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 3.5,22.5 + parent: 1 + - uid: 69 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,19.5 + parent: 1 + - uid: 70 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,21.5 + parent: 1 + - uid: 445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,22.5 + parent: 1 + - uid: 448 + components: + - type: Transform + pos: 14.5,21.5 + parent: 1 + - uid: 451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,21.5 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: 15.5,21.5 + parent: 1 + - uid: 472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,19.5 + parent: 1 - proto: GrilleSpawner entities: - - uid: 133 + - uid: 34 components: - type: Transform pos: 16.5,13.5 parent: 1 - - uid: 217 + - uid: 35 components: - type: Transform pos: 15.5,12.5 parent: 1 - proto: IronRockDiamond entities: - - uid: 167 + - uid: 36 components: - type: Transform pos: 14.5,14.5 parent: 1 -- proto: IronRockGold - entities: - - uid: 30 - components: - - type: Transform - pos: 13.5,7.5 - parent: 1 - - uid: 78 - components: - - type: Transform - pos: 0.5,6.5 - parent: 1 - - uid: 99 - components: - - type: Transform - pos: 0.5,10.5 - parent: 1 - - uid: 283 - components: - - type: Transform - pos: 4.5,10.5 - parent: 1 - - uid: 284 - components: - - type: Transform - pos: 4.5,8.5 - parent: 1 - - uid: 289 - components: - - type: Transform - pos: 14.5,7.5 - parent: 1 - - uid: 299 - components: - - type: Transform - pos: 15.5,7.5 - parent: 1 - - uid: 301 - components: - - type: Transform - pos: 0.5,8.5 - parent: 1 - - uid: 303 - components: - - type: Transform - pos: 4.5,6.5 - parent: 1 -- proto: IronRockPlasma - entities: - - uid: 100 - components: - - type: Transform - pos: 10.5,15.5 - parent: 1 - - uid: 255 - components: - - type: Transform - pos: 9.5,16.5 - parent: 1 - - uid: 265 - components: - - type: Transform - pos: 7.5,16.5 - parent: 1 - - uid: 266 - components: - - type: Transform - pos: 6.5,13.5 - parent: 1 - - uid: 282 - components: - - type: Transform - pos: 6.5,15.5 - parent: 1 - - uid: 285 - components: - - type: Transform - pos: 18.5,12.5 - parent: 1 - - uid: 286 - components: - - type: Transform - pos: 22.5,12.5 - parent: 1 - - uid: 287 - components: - - type: Transform - pos: 4.5,12.5 - parent: 1 - - uid: 295 - components: - - type: Transform - pos: 7.5,12.5 - parent: 1 - - uid: 305 - components: - - type: Transform - pos: 0.5,16.5 - parent: 1 - - uid: 306 - components: - - type: Transform - pos: 4.5,13.5 - parent: 1 - - uid: 313 - components: - - type: Transform - pos: 9.5,12.5 - parent: 1 - - uid: 314 - components: - - type: Transform - pos: 10.5,13.5 - parent: 1 -- proto: IronRockSilver - entities: - - uid: 81 - components: - - type: Transform - pos: 4.5,4.5 - parent: 1 - - uid: 82 - components: - - type: Transform - pos: 4.5,0.5 - parent: 1 - - uid: 83 - components: - - type: Transform - pos: 0.5,0.5 - parent: 1 - - uid: 84 - components: - - type: Transform - pos: 0.5,4.5 - parent: 1 - - uid: 281 - components: - - type: Transform - pos: 10.5,7.5 - parent: 1 - - uid: 288 - components: - - type: Transform - pos: 10.5,6.5 - parent: 1 - - uid: 298 - components: - - type: Transform - pos: 6.5,6.5 - parent: 1 - - uid: 300 - components: - - type: Transform - pos: 6.5,7.5 - parent: 1 -- proto: IronRockUranium - entities: - - uid: 85 - components: - - type: Transform - pos: 18.5,2.5 - parent: 1 - - uid: 86 - components: - - type: Transform - pos: 20.5,0.5 - parent: 1 - - uid: 87 - components: - - type: Transform - pos: 22.5,2.5 - parent: 1 - - uid: 88 - components: - - type: Transform - pos: 20.5,4.5 - parent: 1 - proto: LandMineExplosive entities: - - uid: 164 + - uid: 71 components: - type: Transform pos: 13.439286,14.473711 parent: 1 - - uid: 166 + - uid: 72 components: - type: Transform pos: 15.486161,14.504961 parent: 1 - - uid: 198 + - uid: 73 components: - type: Transform pos: 14.525224,15.4346485 parent: 1 - - uid: 199 + - uid: 74 components: - type: Transform pos: 14.525224,13.442461 parent: 1 - proto: PoweredLightPostSmallEmpty entities: - - uid: 204 + - uid: 75 components: - type: Transform pos: 16.5,0.5 parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 471 + components: + - type: Transform + pos: 20.5,21.5 + parent: 1 +- proto: PoweredSmallLightEmpty + entities: + - uid: 469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,19.5 + parent: 1 - proto: Rack entities: - - uid: 213 + - uid: 76 components: - type: Transform pos: 13.5,3.5 parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,19.5 + parent: 1 + - uid: 441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,20.5 + parent: 1 + - uid: 453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,21.5 + parent: 1 - proto: SalvageCanisterSpawner entities: - - uid: 239 + - uid: 77 components: - type: Transform pos: 20.5,9.5 parent: 1 - - uid: 302 + - uid: 78 components: - type: Transform pos: 15.5,3.5 parent: 1 - proto: SalvageSpawnerEquipment entities: - - uid: 234 + - uid: 79 components: - type: Transform pos: 21.5,7.5 parent: 1 - - uid: 262 + - uid: 80 components: - type: Transform pos: 21.5,7.5 parent: 1 - - uid: 412 + - uid: 81 components: - type: Transform pos: 21.5,14.5 parent: 1 - - uid: 413 + - uid: 82 components: - type: Transform pos: 20.5,13.5 parent: 1 - proto: SalvageSpawnerEquipmentValuable entities: - - uid: 143 + - uid: 83 components: - type: Transform pos: 9.5,3.5 parent: 1 - - uid: 144 + - uid: 84 components: - type: Transform pos: 9.5,2.5 parent: 1 - - uid: 145 + - uid: 85 components: - type: Transform pos: 9.5,1.5 parent: 1 - - uid: 146 + - uid: 86 components: - type: Transform pos: 8.5,1.5 parent: 1 - - uid: 147 + - uid: 87 components: - type: Transform pos: 7.5,1.5 parent: 1 - - uid: 169 + - uid: 88 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 170 + - uid: 89 components: - type: Transform pos: 7.5,3.5 parent: 1 - - uid: 172 + - uid: 90 components: - type: Transform pos: 8.5,1.5 parent: 1 - - uid: 182 + - uid: 91 components: - type: Transform pos: 9.5,1.5 parent: 1 - - uid: 191 + - uid: 92 components: - type: Transform pos: 13.5,3.5 parent: 1 - - uid: 210 + - uid: 93 components: - type: Transform pos: 7.5,1.5 parent: 1 - - uid: 211 + - uid: 94 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 221 + - uid: 95 components: - type: Transform pos: 13.5,3.5 parent: 1 - - uid: 222 + - uid: 96 components: - type: Transform pos: 13.5,3.5 parent: 1 - - uid: 257 + - uid: 97 components: - type: Transform pos: 21.5,9.5 parent: 1 - - uid: 261 + - uid: 98 components: - type: Transform pos: 21.5,9.5 parent: 1 - - uid: 342 + - uid: 99 components: - type: Transform pos: 13.5,9.5 parent: 1 - - uid: 343 + - uid: 100 components: - type: Transform pos: 13.5,9.5 parent: 1 - - uid: 344 + - uid: 101 components: - type: Transform pos: 15.5,9.5 parent: 1 - - uid: 345 + - uid: 102 components: - type: Transform pos: 15.5,9.5 parent: 1 - - uid: 346 + - uid: 103 components: - type: Transform pos: 15.5,9.5 parent: 1 - - uid: 347 + - uid: 104 components: - type: Transform pos: 13.5,9.5 parent: 1 - - uid: 404 + - uid: 105 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 405 + - uid: 106 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 406 + - uid: 107 components: - type: Transform pos: 19.5,15.5 parent: 1 - - uid: 407 + - uid: 108 components: - type: Transform pos: 20.5,15.5 parent: 1 - - uid: 408 + - uid: 109 components: - type: Transform pos: 21.5,15.5 parent: 1 - - uid: 409 + - uid: 110 components: - type: Transform pos: 21.5,15.5 parent: 1 - - uid: 410 + - uid: 111 components: - type: Transform pos: 20.5,15.5 parent: 1 - - uid: 411 + - uid: 112 components: - type: Transform pos: 19.5,15.5 parent: 1 - proto: SalvageSpawnerScrapCommon entities: + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,20.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,20.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 15.5,2.5 + parent: 1 - uid: 116 + components: + - type: Transform + pos: 13.5,0.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 15.5,0.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1 + - uid: 119 components: - type: Transform pos: 14.5,0.5 parent: 1 - uid: 120 - components: - - type: Transform - pos: 12.5,0.5 - parent: 1 - - uid: 123 - components: - - type: Transform - pos: 15.5,2.5 - parent: 1 - - uid: 129 - components: - - type: Transform - pos: 13.5,0.5 - parent: 1 - - uid: 130 - components: - - type: Transform - pos: 15.5,0.5 - parent: 1 - - uid: 131 - components: - - type: Transform - pos: 14.5,0.5 - parent: 1 - - uid: 132 - components: - - type: Transform - pos: 14.5,0.5 - parent: 1 - - uid: 148 components: - type: Transform pos: 13.5,2.5 parent: 1 - - uid: 149 + - uid: 121 components: - type: Transform pos: 14.5,2.5 parent: 1 - - uid: 150 + - uid: 122 components: - type: Transform pos: 14.5,3.5 parent: 1 - - uid: 212 + - uid: 123 components: - type: Transform pos: 9.5,1.5 parent: 1 - - uid: 219 + - uid: 124 components: - type: Transform pos: 13.5,0.5 parent: 1 - - uid: 220 + - uid: 125 components: - type: Transform pos: 15.5,0.5 parent: 1 - - uid: 236 + - uid: 126 components: - type: Transform pos: 13.5,0.5 parent: 1 - - uid: 238 + - uid: 127 components: - type: Transform pos: 19.5,8.5 parent: 1 - - uid: 241 + - uid: 128 components: - type: Transform pos: 21.5,7.5 parent: 1 - - uid: 256 + - uid: 129 components: - type: Transform pos: 20.5,7.5 parent: 1 - - uid: 258 + - uid: 130 components: - type: Transform pos: 20.5,8.5 parent: 1 - - uid: 259 + - uid: 131 components: - type: Transform pos: 21.5,8.5 parent: 1 - - uid: 260 + - uid: 132 components: - type: Transform pos: 21.5,9.5 parent: 1 - - uid: 263 + - uid: 133 components: - type: Transform pos: 15.5,0.5 parent: 1 - - uid: 264 + - uid: 134 components: - type: Transform pos: 12.5,0.5 parent: 1 - - uid: 280 + - uid: 135 components: - type: Transform pos: 9.5,2.5 parent: 1 - - uid: 315 + - uid: 136 components: - type: Transform pos: 9.5,3.5 parent: 1 - - uid: 316 + - uid: 137 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 317 + - uid: 138 components: - type: Transform pos: 7.5,3.5 parent: 1 - - uid: 318 + - uid: 139 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 319 + - uid: 140 components: - type: Transform pos: 7.5,1.5 parent: 1 - - uid: 320 + - uid: 141 components: - type: Transform pos: 8.5,1.5 parent: 1 - - uid: 321 + - uid: 142 components: - type: Transform pos: 2.5,1.5 parent: 1 - - uid: 322 + - uid: 143 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 323 + - uid: 144 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 324 + - uid: 145 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 325 + - uid: 146 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 326 + - uid: 147 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 351 + - uid: 148 components: - type: Transform pos: 13.5,9.5 parent: 1 - - uid: 352 + - uid: 149 components: - type: Transform pos: 14.5,9.5 parent: 1 - - uid: 353 + - uid: 150 components: - type: Transform pos: 15.5,9.5 parent: 1 - - uid: 363 + - uid: 151 components: - type: Transform pos: 2.5,9.5 parent: 1 - - uid: 364 + - uid: 152 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 365 + - uid: 153 components: - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 366 + - uid: 154 components: - type: Transform pos: 13.5,15.5 parent: 1 - - uid: 367 + - uid: 155 components: - type: Transform pos: 14.5,15.5 parent: 1 - - uid: 368 + - uid: 156 components: - type: Transform pos: 15.5,15.5 parent: 1 - - uid: 369 + - uid: 157 components: - type: Transform pos: 15.5,14.5 parent: 1 - - uid: 370 + - uid: 158 components: - type: Transform pos: 15.5,13.5 parent: 1 - - uid: 371 + - uid: 159 components: - type: Transform pos: 14.5,13.5 parent: 1 - - uid: 372 + - uid: 160 components: - type: Transform pos: 13.5,13.5 parent: 1 - - uid: 373 + - uid: 161 components: - type: Transform pos: 13.5,14.5 parent: 1 - - uid: 374 + - uid: 162 components: - type: Transform pos: 13.5,15.5 parent: 1 - - uid: 375 + - uid: 163 components: - type: Transform pos: 14.5,15.5 parent: 1 - - uid: 376 + - uid: 164 components: - type: Transform pos: 15.5,15.5 parent: 1 - - uid: 377 + - uid: 165 components: - type: Transform pos: 15.5,14.5 parent: 1 - - uid: 378 + - uid: 166 components: - type: Transform pos: 15.5,13.5 parent: 1 - - uid: 379 + - uid: 167 components: - type: Transform pos: 14.5,13.5 parent: 1 - - uid: 380 + - uid: 168 components: - type: Transform pos: 13.5,13.5 parent: 1 - - uid: 381 + - uid: 169 components: - type: Transform pos: 13.5,14.5 parent: 1 - - uid: 417 + - uid: 170 components: - type: Transform pos: 19.5,14.5 parent: 1 - - uid: 418 + - uid: 171 components: - type: Transform pos: 19.5,15.5 parent: 1 - - uid: 419 + - uid: 172 components: - type: Transform pos: 20.5,14.5 parent: 1 - - uid: 420 + - uid: 173 components: - type: Transform pos: 20.5,15.5 parent: 1 - - uid: 421 + - uid: 174 components: - type: Transform pos: 21.5,14.5 parent: 1 - - uid: 422 + - uid: 175 components: - type: Transform pos: 21.5,15.5 parent: 1 - - uid: 423 + - uid: 176 components: - type: Transform pos: 20.5,13.5 parent: 1 + - uid: 424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,20.5 + parent: 1 + - uid: 438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,20.5 + parent: 1 + - uid: 465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,19.5 + parent: 1 + - uid: 468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,21.5 + parent: 1 + - uid: 473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,19.5 + parent: 1 - proto: SalvageSpawnerScrapCommon75 entities: - - uid: 398 + - uid: 177 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 399 + - uid: 178 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 400 + - uid: 179 components: - type: Transform pos: 2.5,15.5 parent: 1 - - uid: 401 + - uid: 180 components: - type: Transform pos: 3.5,15.5 parent: 1 - proto: SalvageSpawnerScrapValuable entities: - - uid: 25 + - uid: 181 components: - type: Transform pos: 21.5,8.5 parent: 1 - - uid: 118 + - uid: 182 components: - type: Transform pos: 20.5,7.5 parent: 1 - - uid: 119 + - uid: 183 components: - type: Transform pos: 21.5,7.5 parent: 1 - - uid: 171 + - uid: 184 components: - type: Transform pos: 9.5,3.5 parent: 1 - - uid: 208 + - uid: 185 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 209 + - uid: 186 components: - type: Transform pos: 7.5,3.5 parent: 1 - - uid: 235 + - uid: 187 components: - type: Transform pos: 19.5,8.5 parent: 1 - - uid: 240 + - uid: 188 components: - type: Transform pos: 20.5,8.5 parent: 1 - - uid: 389 + - uid: 189 components: - type: Transform pos: 8.5,9.5 parent: 1 - - uid: 390 + - uid: 190 components: - type: Transform pos: 8.5,8.5 parent: 1 - - uid: 414 + - uid: 191 components: - type: Transform pos: 19.5,14.5 parent: 1 - - uid: 415 + - uid: 192 components: - type: Transform pos: 20.5,14.5 parent: 1 - - uid: 416 + - uid: 193 components: - type: Transform pos: 21.5,14.5 parent: 1 + - uid: 478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,19.5 + parent: 1 - proto: SalvageSpawnerScrapValuable75 entities: - - uid: 121 + - uid: 42 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,20.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,20.5 + parent: 1 + - uid: 194 components: - type: Transform pos: 13.5,2.5 parent: 1 - - uid: 122 + - uid: 195 components: - type: Transform pos: 14.5,2.5 parent: 1 - - uid: 124 + - uid: 196 components: - type: Transform pos: 14.5,2.5 parent: 1 - - uid: 327 + - uid: 197 components: - type: Transform pos: 2.5,1.5 parent: 1 - - uid: 328 + - uid: 198 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 329 + - uid: 199 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 330 + - uid: 200 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 331 + - uid: 201 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 332 + - uid: 202 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 333 + - uid: 203 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 334 + - uid: 204 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 335 + - uid: 205 components: - type: Transform pos: 2.5,1.5 parent: 1 - - uid: 336 + - uid: 206 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 337 + - uid: 207 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 338 + - uid: 208 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 382 + - uid: 209 components: - type: Transform pos: 8.5,7.5 parent: 1 - - uid: 383 + - uid: 210 components: - type: Transform pos: 8.5,8.5 parent: 1 - - uid: 384 + - uid: 211 components: - type: Transform pos: 8.5,9.5 parent: 1 - - uid: 385 + - uid: 212 components: - type: Transform pos: 7.5,9.5 parent: 1 - - uid: 386 + - uid: 213 components: - type: Transform pos: 8.5,9.5 parent: 1 - - uid: 387 + - uid: 214 components: - type: Transform pos: 9.5,9.5 parent: 1 - - uid: 388 + - uid: 215 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 402 + - uid: 216 components: - type: Transform pos: 3.5,15.5 parent: 1 - - uid: 403 + - uid: 217 components: - type: Transform pos: 3.5,15.5 parent: 1 + - uid: 425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,20.5 + parent: 1 + - uid: 433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,19.5 + parent: 1 + - uid: 436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,19.5 + parent: 1 + - uid: 459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,21.5 + parent: 1 - proto: SalvageSpawnerTreasure entities: - - uid: 188 + - uid: 218 components: - type: Transform pos: 15.5,2.5 parent: 1 - - uid: 348 + - uid: 219 components: - type: Transform pos: 13.5,9.5 parent: 1 - - uid: 349 + - uid: 220 components: - type: Transform pos: 14.5,9.5 parent: 1 - - uid: 350 + - uid: 221 components: - type: Transform pos: 15.5,9.5 parent: 1 - - uid: 360 + - uid: 222 components: - type: Transform pos: 2.5,9.5 parent: 1 - - uid: 361 + - uid: 223 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 362 + - uid: 224 components: - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 393 + - uid: 225 components: - type: Transform pos: 8.5,7.5 parent: 1 - - uid: 394 + - uid: 226 components: - type: Transform pos: 14.5,9.5 parent: 1 - proto: SalvageSpawnerTreasureValuable entities: - - uid: 189 + - uid: 43 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,20.5 + parent: 1 + - uid: 227 components: - type: Transform pos: 14.5,3.5 parent: 1 - - uid: 190 + - uid: 228 components: - type: Transform pos: 14.5,3.5 parent: 1 - - uid: 237 + - uid: 229 components: - type: Transform pos: 19.5,7.5 parent: 1 - - uid: 242 + - uid: 230 components: - type: Transform pos: 20.5,8.5 parent: 1 - - uid: 304 + - uid: 231 components: - type: Transform pos: 19.5,7.5 parent: 1 - - uid: 339 + - uid: 232 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 340 + - uid: 233 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 341 + - uid: 234 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 354 + - uid: 235 components: - type: Transform pos: 2.5,9.5 parent: 1 - - uid: 355 + - uid: 236 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 356 + - uid: 237 components: - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 357 + - uid: 238 components: - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 358 + - uid: 239 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 359 + - uid: 240 components: - type: Transform pos: 2.5,9.5 parent: 1 - - uid: 391 + - uid: 241 components: - type: Transform pos: 8.5,8.5 parent: 1 - - uid: 392 + - uid: 242 components: - type: Transform pos: 8.5,9.5 parent: 1 - - uid: 395 + - uid: 243 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 396 + - uid: 244 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 397 + - uid: 245 components: - type: Transform pos: 1.5,13.5 parent: 1 + - uid: 474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,19.5 + parent: 1 - proto: ShuttersWindow entities: - - uid: 65 + - uid: 246 components: - type: Transform pos: 15.5,1.5 parent: 1 - proto: SignMaterials entities: - - uid: 136 + - uid: 247 components: - type: Transform pos: 14.5,1.5 parent: 1 - proto: SignRadiationMed entities: - - uid: 193 + - uid: 248 components: - type: Transform pos: 19.5,2.5 parent: 1 - - uid: 203 + - uid: 249 components: - type: Transform pos: 20.5,3.5 parent: 1 - - uid: 205 + - uid: 250 components: - type: Transform pos: 21.5,2.5 parent: 1 - - uid: 226 + - uid: 251 components: - type: Transform pos: 20.5,1.5 parent: 1 - proto: SignSecureMedRed entities: - - uid: 178 + - uid: 252 components: - type: Transform pos: 12.5,12.5 parent: 1 - - uid: 187 + - uid: 253 components: - type: Transform pos: 12.5,16.5 parent: 1 - - uid: 218 + - uid: 254 components: - type: Transform pos: 16.5,16.5 parent: 1 +- proto: TableStone + entities: + - uid: 466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,19.5 + parent: 1 + - uid: 467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,19.5 + parent: 1 - proto: TableWood entities: - - uid: 74 + - uid: 255 components: - type: Transform pos: 19.5,7.5 parent: 1 - proto: WallReinforced entities: - - uid: 28 + - uid: 38 components: - type: Transform - pos: 7.5,14.5 - parent: 1 - - uid: 29 - components: - - type: Transform - pos: 8.5,12.5 + pos: 8.5,21.5 parent: 1 - uid: 39 components: - type: Transform - pos: 10.5,4.5 - parent: 1 - - uid: 40 - components: - - type: Transform - pos: 10.5,2.5 - parent: 1 - - uid: 41 - components: - - type: Transform - pos: 8.5,0.5 - parent: 1 - - uid: 42 - components: - - type: Transform - pos: 7.5,0.5 - parent: 1 - - uid: 43 - components: - - type: Transform - pos: 6.5,2.5 + pos: 9.5,20.5 parent: 1 - uid: 44 components: - type: Transform - pos: 6.5,3.5 + pos: 9.5,21.5 parent: 1 - uid: 46 components: - type: Transform - pos: 21.5,0.5 - parent: 1 - - uid: 50 - components: - - type: Transform - pos: 19.5,0.5 - parent: 1 - - uid: 51 - components: - - type: Transform - pos: 18.5,0.5 - parent: 1 - - uid: 52 - components: - - type: Transform - pos: 22.5,0.5 - parent: 1 - - uid: 53 - components: - - type: Transform - pos: 19.5,4.5 - parent: 1 - - uid: 55 - components: - - type: Transform - pos: 22.5,3.5 - parent: 1 - - uid: 56 - components: - - type: Transform - pos: 22.5,4.5 - parent: 1 - - uid: 57 - components: - - type: Transform - pos: 22.5,1.5 - parent: 1 - - uid: 58 - components: - - type: Transform - pos: 21.5,4.5 - parent: 1 - - uid: 59 - components: - - type: Transform - pos: 18.5,3.5 - parent: 1 - - uid: 60 - components: - - type: Transform - pos: 18.5,4.5 - parent: 1 - - uid: 63 - components: - - type: Transform - pos: 18.5,1.5 - parent: 1 - - uid: 67 - components: - - type: Transform - pos: 18.5,14.5 - parent: 1 - - uid: 70 - components: - - type: Transform - pos: 8.5,15.5 - parent: 1 - - uid: 73 - components: - - type: Transform - pos: 0.5,12.5 - parent: 1 - - uid: 77 - components: - - type: Transform - pos: 10.5,12.5 - parent: 1 - - uid: 79 - components: - - type: Transform - pos: 10.5,16.5 - parent: 1 - - uid: 80 - components: - - type: Transform - pos: 6.5,16.5 - parent: 1 - - uid: 92 - components: - - type: Transform - pos: 4.5,16.5 - parent: 1 - - uid: 96 - components: - - type: Transform - pos: 6.5,14.5 - parent: 1 - - uid: 114 - components: - - type: Transform - pos: 8.5,16.5 - parent: 1 - - uid: 115 - components: - - type: Transform - pos: 6.5,12.5 - parent: 1 - - uid: 117 - components: - - type: Transform - pos: 9.5,14.5 - parent: 1 - - uid: 137 - components: - - type: Transform - pos: 16.5,8.5 - parent: 1 - - uid: 138 - components: - - type: Transform - pos: 16.5,7.5 - parent: 1 - - uid: 152 - components: - - type: Transform - pos: 16.5,10.5 - parent: 1 - - uid: 153 - components: - - type: Transform - pos: 13.5,10.5 - parent: 1 - - uid: 154 - components: - - type: Transform - pos: 14.5,10.5 - parent: 1 - - uid: 156 - components: - - type: Transform - pos: 15.5,8.5 - parent: 1 - - uid: 174 - components: - - type: Transform - pos: 16.5,16.5 - parent: 1 - - uid: 192 - components: - - type: Transform - pos: 12.5,7.5 - parent: 1 - - uid: 223 - components: - - type: Transform - pos: 12.5,8.5 - parent: 1 - - uid: 224 - components: - - type: Transform - pos: 12.5,6.5 - parent: 1 - - uid: 229 - components: - - type: Transform - pos: 12.5,16.5 - parent: 1 - - uid: 230 - components: - - type: Transform - pos: 12.5,12.5 - parent: 1 - - uid: 243 - components: - - type: Transform - pos: 9.5,15.5 - parent: 1 - - uid: 244 - components: - - type: Transform - pos: 7.5,15.5 - parent: 1 - - uid: 250 - components: - - type: Transform - pos: 20.5,16.5 - parent: 1 - - uid: 251 - components: - - type: Transform - pos: 21.5,16.5 - parent: 1 - - uid: 252 - components: - - type: Transform - pos: 10.5,14.5 - parent: 1 - - uid: 253 - components: - - type: Transform - pos: 9.5,13.5 - parent: 1 - - uid: 254 - components: - - type: Transform - pos: 7.5,13.5 - parent: 1 - - uid: 267 - components: - - type: Transform - pos: 8.5,13.5 - parent: 1 - - uid: 268 - components: - - type: Transform - pos: 22.5,14.5 - parent: 1 - - uid: 269 - components: - - type: Transform - pos: 22.5,16.5 - parent: 1 - - uid: 270 - components: - - type: Transform - pos: 21.5,12.5 - parent: 1 - - uid: 275 - components: - - type: Transform - pos: 18.5,13.5 - parent: 1 - - uid: 276 - components: - - type: Transform - pos: 19.5,12.5 - parent: 1 - - uid: 278 - components: - - type: Transform - pos: 22.5,13.5 - parent: 1 - - uid: 279 - components: - - type: Transform - pos: 18.5,15.5 - parent: 1 - - uid: 292 - components: - - type: Transform - pos: 3.5,14.5 - parent: 1 - - uid: 293 - components: - - type: Transform - pos: 4.5,14.5 - parent: 1 - - uid: 294 - components: - - type: Transform - pos: 1.5,12.5 - parent: 1 - - uid: 296 - components: - - type: Transform - pos: 1.5,14.5 - parent: 1 - - uid: 309 - components: - - type: Transform - pos: 2.5,12.5 - parent: 1 - - uid: 310 - components: - - type: Transform - pos: 4.5,15.5 - parent: 1 - - uid: 311 - components: - - type: Transform - pos: 1.5,16.5 - parent: 1 -- proto: WallReinforcedRust - entities: - - uid: 32 - components: - - type: Transform - pos: 6.5,1.5 - parent: 1 - - uid: 33 - components: - - type: Transform - pos: 6.5,0.5 - parent: 1 - - uid: 34 - components: - - type: Transform - pos: 10.5,3.5 - parent: 1 - - uid: 35 - components: - - type: Transform - pos: 9.5,0.5 - parent: 1 - - uid: 36 - components: - - type: Transform - pos: 10.5,0.5 - parent: 1 - - uid: 37 - components: - - type: Transform - pos: 10.5,1.5 - parent: 1 - - uid: 38 - components: - - type: Transform - pos: 6.5,4.5 - parent: 1 - - uid: 45 - components: - - type: Transform - pos: 19.5,3.5 + pos: 1.5,19.5 parent: 1 - uid: 47 components: - type: Transform - pos: 20.5,3.5 + pos: 2.5,19.5 parent: 1 - uid: 48 components: - type: Transform - pos: 19.5,2.5 + pos: 3.5,19.5 parent: 1 - uid: 49 components: - type: Transform - pos: 21.5,3.5 + pos: 5.5,19.5 parent: 1 - - uid: 54 + - uid: 50 components: - type: Transform - pos: 21.5,1.5 + pos: 4.5,19.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 9.5,19.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 8.5,19.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 1.5,21.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 1.5,20.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 6.5,21.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 5.5,21.5 parent: 1 - uid: 61 components: - type: Transform - pos: 19.5,1.5 + pos: 4.5,21.5 parent: 1 - uid: 62 components: - type: Transform - pos: 20.5,1.5 + pos: 7.5,21.5 parent: 1 - - uid: 64 + - uid: 256 components: - type: Transform - pos: 21.5,2.5 + pos: 7.5,14.5 parent: 1 - - uid: 68 + - uid: 257 components: - type: Transform - pos: 19.5,16.5 + pos: 8.5,12.5 parent: 1 - - uid: 69 + - uid: 258 components: - type: Transform - pos: 19.5,13.5 + pos: 10.5,4.5 parent: 1 - - uid: 91 + - uid: 259 components: - type: Transform - pos: 0.5,14.5 + pos: 10.5,2.5 parent: 1 - - uid: 95 + - uid: 260 components: - type: Transform - pos: 18.5,16.5 + pos: 8.5,0.5 parent: 1 - - uid: 157 + - uid: 261 components: - type: Transform - pos: 13.5,8.5 + pos: 7.5,0.5 parent: 1 - - uid: 158 + - uid: 262 components: - type: Transform - pos: 12.5,9.5 + pos: 6.5,2.5 parent: 1 - - uid: 194 + - uid: 263 components: - type: Transform - pos: 12.5,10.5 + pos: 6.5,3.5 parent: 1 - - uid: 195 + - uid: 264 components: - type: Transform - pos: 16.5,9.5 + pos: 21.5,0.5 parent: 1 - - uid: 196 + - uid: 265 components: - type: Transform - pos: 15.5,10.5 + pos: 19.5,0.5 parent: 1 - - uid: 206 + - uid: 266 components: - type: Transform - pos: 16.5,6.5 + pos: 18.5,0.5 parent: 1 - - uid: 245 + - uid: 267 components: - type: Transform - pos: 21.5,13.5 + pos: 22.5,0.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: 19.5,4.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 22.5,3.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: 22.5,4.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 22.5,1.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 21.5,4.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: 18.5,3.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: 18.5,4.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 18.5,1.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 18.5,14.5 parent: 1 - uid: 277 components: - type: Transform - pos: 22.5,15.5 + pos: 8.5,15.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: 10.5,12.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 10.5,16.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 6.5,16.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 4.5,16.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: 6.5,14.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: 8.5,16.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: 16.5,8.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: 16.5,7.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: 16.5,10.5 parent: 1 - uid: 290 components: - type: Transform - pos: 3.5,12.5 + pos: 13.5,10.5 parent: 1 - uid: 291 components: - type: Transform - pos: 2.5,16.5 + pos: 14.5,10.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: 16.5,16.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: 12.5,7.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 12.5,6.5 parent: 1 - uid: 297 components: - type: Transform - pos: 3.5,16.5 + pos: 12.5,16.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 12.5,12.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 7.5,15.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 20.5,16.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: 9.5,13.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: 7.5,13.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 8.5,13.5 parent: 1 - uid: 307 components: - type: Transform - pos: 3.5,13.5 + pos: 22.5,14.5 parent: 1 - uid: 308 + components: + - type: Transform + pos: 22.5,16.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 21.5,12.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: 18.5,13.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 19.5,12.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 22.5,13.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: 18.5,15.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: 1.5,14.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1 + - uid: 426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,18.5 + parent: 1 + - uid: 428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,20.5 + parent: 1 + - uid: 429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,18.5 + parent: 1 + - uid: 430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,18.5 + parent: 1 + - uid: 431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,20.5 + parent: 1 + - uid: 432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,18.5 + parent: 1 + - uid: 434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,20.5 + parent: 1 + - uid: 435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,18.5 + parent: 1 + - uid: 437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,20.5 + parent: 1 + - uid: 439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,20.5 + parent: 1 + - uid: 440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,18.5 + parent: 1 + - uid: 443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,22.5 + parent: 1 + - uid: 446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,22.5 + parent: 1 + - uid: 447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,20.5 + parent: 1 + - uid: 449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,22.5 + parent: 1 + - uid: 450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,18.5 + parent: 1 + - uid: 452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,22.5 + parent: 1 + - uid: 455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,22.5 + parent: 1 + - uid: 456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,18.5 + parent: 1 + - uid: 457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,19.5 + parent: 1 + - uid: 458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,18.5 + parent: 1 + - uid: 460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,18.5 + parent: 1 + - uid: 461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,18.5 + parent: 1 + - uid: 462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,22.5 + parent: 1 + - uid: 463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,21.5 + parent: 1 + - uid: 464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,22.5 + parent: 1 +- proto: WallReinforcedRust + entities: + - uid: 321 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: 19.5,3.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: 20.5,3.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: 19.5,2.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: 21.5,3.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: 21.5,1.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: 19.5,1.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: 20.5,1.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: 21.5,2.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: 19.5,13.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: 18.5,16.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: 12.5,9.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: 12.5,10.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: 16.5,9.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: 15.5,10.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: 16.5,6.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: 21.5,13.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: 22.5,15.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: 2.5,16.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: 3.5,16.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 352 components: - type: Transform pos: 0.5,13.5 parent: 1 - proto: WallSolid entities: - - uid: 14 + - uid: 353 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 15 + - uid: 354 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 17 + - uid: 355 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 18 + - uid: 356 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 19 + - uid: 357 components: - type: Transform pos: 2.5,4.5 parent: 1 - - uid: 23 + - uid: 358 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 26 + - uid: 359 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 27 + - uid: 360 components: - type: Transform pos: 2.5,0.5 parent: 1 - - uid: 31 + - uid: 361 components: - type: Transform pos: 21.5,6.5 parent: 1 - - uid: 66 + - uid: 362 components: - type: Transform pos: 20.5,10.5 parent: 1 - - uid: 72 + - uid: 363 components: - type: Transform pos: 22.5,8.5 parent: 1 - - uid: 93 + - uid: 364 components: - type: Transform pos: 18.5,7.5 parent: 1 - - uid: 94 + - uid: 365 components: - type: Transform pos: 18.5,6.5 parent: 1 - - uid: 97 + - uid: 366 components: - type: Transform pos: 22.5,9.5 parent: 1 - - uid: 98 + - uid: 367 components: - type: Transform pos: 21.5,10.5 parent: 1 - - uid: 101 + - uid: 368 components: - type: Transform pos: 12.5,1.5 parent: 1 - - uid: 104 + - uid: 369 components: - type: Transform pos: 12.5,4.5 parent: 1 - - uid: 105 + - uid: 370 components: - type: Transform pos: 13.5,4.5 parent: 1 - - uid: 108 + - uid: 371 components: - type: Transform pos: 16.5,4.5 parent: 1 - - uid: 110 + - uid: 372 components: - type: Transform pos: 16.5,2.5 parent: 1 - - uid: 111 + - uid: 373 components: - type: Transform pos: 16.5,1.5 parent: 1 - - uid: 134 + - uid: 374 components: - type: Transform pos: 6.5,9.5 parent: 1 - - uid: 135 + - uid: 375 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 151 + - uid: 376 components: - type: Transform pos: 7.5,8.5 parent: 1 - - uid: 155 + - uid: 377 components: - type: Transform pos: 7.5,6.5 parent: 1 - - uid: 159 + - uid: 378 components: - type: Transform pos: 9.5,7.5 parent: 1 - - uid: 160 + - uid: 379 components: - type: Transform pos: 10.5,8.5 parent: 1 - - uid: 161 + - uid: 380 components: - type: Transform pos: 9.5,10.5 parent: 1 - - uid: 162 + - uid: 381 components: - type: Transform pos: 8.5,10.5 parent: 1 - - uid: 165 + - uid: 382 components: - type: Transform pos: 2.5,10.5 parent: 1 - - uid: 168 + - uid: 383 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 173 + - uid: 384 components: - type: Transform pos: 1.5,1.5 parent: 1 - - uid: 179 + - uid: 385 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 180 + - uid: 386 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 181 + - uid: 387 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 197 + - uid: 388 components: - type: Transform pos: 3.5,10.5 parent: 1 - - uid: 200 + - uid: 389 components: - type: Transform pos: 2.5,6.5 parent: 1 - - uid: 247 + - uid: 390 components: - type: Transform pos: 18.5,9.5 parent: 1 - proto: WallSolidRust entities: - - uid: 12 + - uid: 391 components: - type: Transform pos: 3.5,1.5 parent: 1 - - uid: 13 + - uid: 392 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 16 + - uid: 393 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 20 + - uid: 394 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 21 + - uid: 395 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 22 + - uid: 396 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 24 + - uid: 397 components: - type: Transform pos: 0.5,1.5 parent: 1 - - uid: 102 + - uid: 398 components: - type: Transform pos: 12.5,3.5 parent: 1 - - uid: 103 + - uid: 399 components: - type: Transform pos: 12.5,2.5 parent: 1 - - uid: 106 + - uid: 400 components: - type: Transform pos: 15.5,4.5 parent: 1 - - uid: 107 + - uid: 401 components: - type: Transform pos: 14.5,4.5 parent: 1 - - uid: 109 + - uid: 402 components: - type: Transform pos: 16.5,3.5 parent: 1 - - uid: 112 + - uid: 403 components: - type: Transform pos: 14.5,1.5 parent: 1 - - uid: 125 + - uid: 404 components: - type: Transform pos: 9.5,6.5 parent: 1 - - uid: 126 + - uid: 405 components: - type: Transform pos: 9.5,8.5 parent: 1 - - uid: 127 + - uid: 406 components: - type: Transform pos: 7.5,10.5 parent: 1 - - uid: 128 + - uid: 407 components: - type: Transform pos: 3.5,9.5 parent: 1 - - uid: 139 + - uid: 408 components: - type: Transform pos: 10.5,9.5 parent: 1 - - uid: 140 + - uid: 409 components: - type: Transform pos: 6.5,10.5 parent: 1 - - uid: 141 + - uid: 410 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 142 + - uid: 411 components: - type: Transform pos: 7.5,7.5 parent: 1 - - uid: 163 + - uid: 412 components: - type: Transform pos: 8.5,6.5 parent: 1 - - uid: 201 + - uid: 413 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 202 + - uid: 414 components: - type: Transform pos: 10.5,10.5 parent: 1 - - uid: 227 + - uid: 415 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 228 + - uid: 416 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 246 + - uid: 417 components: - type: Transform pos: 18.5,10.5 parent: 1 - - uid: 248 + - uid: 418 components: - type: Transform pos: 19.5,10.5 parent: 1 - - uid: 249 + - uid: 419 components: - type: Transform pos: 18.5,8.5 parent: 1 - - uid: 271 + - uid: 420 components: - type: Transform pos: 22.5,6.5 parent: 1 - - uid: 272 + - uid: 421 components: - type: Transform pos: 19.5,6.5 parent: 1 - - uid: 273 + - uid: 422 components: - type: Transform pos: 22.5,10.5 parent: 1 - - uid: 274 + - uid: 423 components: - type: Transform pos: 22.5,7.5 diff --git a/Resources/Prototypes/Entities/Markers/rooms.yml b/Resources/Prototypes/Entities/Markers/rooms.yml index e4f341daf1..5e2761e012 100644 --- a/Resources/Prototypes/Entities/Markers/rooms.yml +++ b/Resources/Prototypes/Entities/Markers/rooms.yml @@ -1,11 +1,9 @@ - type: entity id: BaseRoomMarker - name: Room marker + name: room spawner parent: MarkerBase - suffix: Weh components: - type: RoomFill - size: 5,5 - type: Sprite layers: - state: red diff --git a/Resources/Prototypes/Procedural/Themes/vgroidinterior.yml b/Resources/Prototypes/Procedural/Themes/vgroidinterior.yml index 237c53cbaa..bd51fcb74a 100644 --- a/Resources/Prototypes/Procedural/Themes/vgroidinterior.yml +++ b/Resources/Prototypes/Procedural/Themes/vgroidinterior.yml @@ -3,6 +3,7 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 0,0 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior @@ -11,6 +12,7 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 6,0 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior @@ -19,6 +21,7 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 12,0 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior @@ -27,6 +30,7 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 18,0 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior @@ -35,6 +39,7 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 0,6 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior @@ -43,6 +48,7 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 6,6 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior @@ -51,6 +57,7 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 12,6 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior @@ -59,6 +66,7 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 18,6 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior @@ -67,6 +75,7 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 0,12 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior @@ -75,6 +84,7 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 6,12 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior @@ -83,6 +93,7 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 12,12 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior @@ -91,6 +102,25 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 18,12 + ignoreTile: FloorShuttleOrange + tags: + - VGRoidInterior + +- type: dungeonRoom + id: VGRoidInterior11x5a + size: 11,5 + atlas: /Maps/Dungeon/vgroidinterior.yml + offset: 0,18 + ignoreTile: FloorShuttleOrange + tags: + - VGRoidInterior + +- type: dungeonRoom + id: VGRoidInterior11x5b + size: 11,5 + atlas: /Maps/Dungeon/vgroidinterior.yml + offset: 12,18 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior From 859918f1bd337838a1816ac6d50f95a235930d19 Mon Sep 17 00:00:00 2001 From: Ghagliiarghii <68826635+Ghagliiarghii@users.noreply.github.com> Date: Wed, 12 Feb 2025 13:41:57 -0500 Subject: [PATCH 243/313] light brown fibers (#35111) --- Resources/Locale/en-US/forensics/fibers.ftl | 1 + Resources/Prototypes/Entities/Clothing/Hands/colored.yml | 2 +- Resources/Prototypes/Entities/Clothing/Multiple/towel.yml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Resources/Locale/en-US/forensics/fibers.ftl b/Resources/Locale/en-US/forensics/fibers.ftl index 72eae55e38..5e32131854 100644 --- a/Resources/Locale/en-US/forensics/fibers.ftl +++ b/Resources/Locale/en-US/forensics/fibers.ftl @@ -18,6 +18,7 @@ fibers-black = black fibers-blue = blue fibers-teal = teal fibers-brown = brown +fibers-light-brown = light brown fibers-grey = grey fibers-green = green fibers-orange = orange diff --git a/Resources/Prototypes/Entities/Clothing/Hands/colored.yml b/Resources/Prototypes/Entities/Clothing/Hands/colored.yml index 8abd311b51..98a2a14989 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/colored.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/colored.yml @@ -232,7 +232,7 @@ - state: equipped-HAND color: "#C09F72" - type: Fiber - fiberColor: fibers-brown + fiberColor: fibers-light-brown # Orange Gloves - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Multiple/towel.yml b/Resources/Prototypes/Entities/Clothing/Multiple/towel.yml index 9b811a8a9d..a6b14675ef 100644 --- a/Resources/Prototypes/Entities/Clothing/Multiple/towel.yml +++ b/Resources/Prototypes/Entities/Clothing/Multiple/towel.yml @@ -283,7 +283,7 @@ - state: equipped-BELT color: "#723A02" - type: Fiber - fiberColor: fibers-brown + fiberColor: fibers-light-brown - type: entity id: TowelColorLightBrown From 0bb6f1979de0d7310e59164b8267e49ad050e325 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 12 Feb 2025 18:43:05 +0000 Subject: [PATCH 244/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b255ab12b0..68b4bafdb2 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Fix airlock autoclose mispredicting. - type: Fix - id: 7444 - time: '2024-09-27T06:10:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32477 - author: metalgearsloth changes: - message: Fix storage area pickup sound playing more than once. @@ -3894,3 +3887,11 @@ id: 7943 time: '2025-02-12T08:58:08.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34889 +- author: Xillan + changes: + - message: Changed light brown gloves to have their own unique fiber for detectives, + where previously they were indistinguishable from normal / dark brown gloves. + type: Tweak + id: 7944 + time: '2025-02-12T18:41:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35111 From 9fad86342f91ec427d3e4bce823edb3caa4c6415 Mon Sep 17 00:00:00 2001 From: ActiveMammmoth <140334666+ActiveMammmoth@users.noreply.github.com> Date: Wed, 12 Feb 2025 23:46:02 -0500 Subject: [PATCH 245/313] Wizard Staff of Animation (#34649) --- Content.Client/Actions/ActionsSystem.cs | 1 + Content.Client/Magic/MagicSystem.cs | 2 +- Content.Client/Outline/TargetOutlineSystem.cs | 10 ++- .../Systems/Actions/ActionUIController.cs | 2 +- .../Actions/EntityTargetActionComponent.cs | 10 ++- Content.Shared/Actions/SharedActionsSystem.cs | 6 ++ .../Damage/Components/DamageableComponent.cs | 3 + .../Damage/Systems/DamageableSystem.cs | 5 +- .../Magic/Components/AnimateableComponent.cs | 11 +++ .../Magic/Events/AnimateSpellEvent.cs | 16 ++++ Content.Shared/Magic/SharedMagicSystem.cs | 73 +++++++++++++++---- .../Locale/en-US/store/spellbook-catalog.ftl | 6 ++ .../Prototypes/Catalog/spellbook_catalog.yml | 13 ++++ .../Objects/Weapons/Guns/Basic/staves.yml | 2 +- .../Prototypes/Entities/Objects/base_item.yml | 1 + .../Furniture/Tables/base_structuretables.yml | 1 + .../Entities/Structures/Furniture/chairs.yml | 1 + .../Computers/base_structurecomputers.yml | 1 + .../Machines/base_structuremachines.yml | 2 + .../Storage/Canisters/gas_canisters.yml | 1 + .../Storage/Closets/base_structureclosets.yml | 1 + .../Storage/Crates/base_structurecrates.yml | 1 + .../Storage/Tanks/base_structuretanks.yml | 5 +- Resources/Prototypes/Magic/animate_spell.yml | 70 ++++++++++++++++++ Resources/Prototypes/Magic/staves.yml | 26 ++++++- Resources/Prototypes/ai_factions.yml | 38 +++++++--- 26 files changed, 272 insertions(+), 36 deletions(-) create mode 100644 Content.Shared/Magic/Components/AnimateableComponent.cs create mode 100644 Content.Shared/Magic/Events/AnimateSpellEvent.cs create mode 100644 Resources/Prototypes/Magic/animate_spell.yml diff --git a/Content.Client/Actions/ActionsSystem.cs b/Content.Client/Actions/ActionsSystem.cs index d836c2ed7a..5f0a8e1f2f 100644 --- a/Content.Client/Actions/ActionsSystem.cs +++ b/Content.Client/Actions/ActionsSystem.cs @@ -88,6 +88,7 @@ namespace Content.Client.Actions return; component.Whitelist = state.Whitelist; + component.Blacklist = state.Blacklist; component.CanTargetSelf = state.CanTargetSelf; BaseHandleState(uid, component, state); } diff --git a/Content.Client/Magic/MagicSystem.cs b/Content.Client/Magic/MagicSystem.cs index 086a0f7b42..06af827b59 100644 --- a/Content.Client/Magic/MagicSystem.cs +++ b/Content.Client/Magic/MagicSystem.cs @@ -1,4 +1,4 @@ -using Content.Shared.Magic; +using Content.Shared.Magic; using Content.Shared.Magic.Events; namespace Content.Client.Magic; diff --git a/Content.Client/Outline/TargetOutlineSystem.cs b/Content.Client/Outline/TargetOutlineSystem.cs index c69987fe77..591bfc171e 100644 --- a/Content.Client/Outline/TargetOutlineSystem.cs +++ b/Content.Client/Outline/TargetOutlineSystem.cs @@ -32,6 +32,11 @@ public sealed class TargetOutlineSystem : EntitySystem /// public EntityWhitelist? Whitelist = null; + /// + /// Blacklist that the target must satisfy. + /// + public EntityWhitelist? Blacklist = null; + /// /// Predicate the target must satisfy. /// @@ -93,15 +98,16 @@ public sealed class TargetOutlineSystem : EntitySystem RemoveHighlights(); } - public void Enable(float range, bool checkObstructions, Func? predicate, EntityWhitelist? whitelist, CancellableEntityEventArgs? validationEvent) + public void Enable(float range, bool checkObstructions, Func? predicate, EntityWhitelist? whitelist, EntityWhitelist? blacklist, CancellableEntityEventArgs? validationEvent) { Range = range; CheckObstruction = checkObstructions; Predicate = predicate; Whitelist = whitelist; + Blacklist = blacklist; ValidationEvent = validationEvent; - _enabled = Predicate != null || Whitelist != null || ValidationEvent != null; + _enabled = Predicate != null || Whitelist != null || Blacklist != null || ValidationEvent != null; } public override void Update(float frameTime) diff --git a/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs b/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs index a6c1cfc94f..c2ba35f3c5 100644 --- a/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs +++ b/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs @@ -952,7 +952,7 @@ public sealed class ActionUIController : UIController, IOnStateChanged diff --git a/Content.Shared/Actions/EntityTargetActionComponent.cs b/Content.Shared/Actions/EntityTargetActionComponent.cs index 7217794b23..aa8c0f4a99 100644 --- a/Content.Shared/Actions/EntityTargetActionComponent.cs +++ b/Content.Shared/Actions/EntityTargetActionComponent.cs @@ -1,4 +1,4 @@ -using Content.Shared.Whitelist; +using Content.Shared.Whitelist; using Robust.Shared.GameStates; using Robust.Shared.Serialization; @@ -25,6 +25,12 @@ public sealed partial class EntityTargetActionComponent : BaseTargetActionCompon /// No whitelist check when null. [DataField("whitelist")] public EntityWhitelist? Whitelist; + /// + /// Determines which entities are NOT valid targets for this action. + /// + /// No blacklist check when null. + [DataField] public EntityWhitelist? Blacklist; + /// /// Whether this action considers the user as a valid target entity when using this action. /// @@ -35,11 +41,13 @@ public sealed partial class EntityTargetActionComponent : BaseTargetActionCompon public sealed class EntityTargetActionComponentState : BaseActionComponentState { public EntityWhitelist? Whitelist; + public EntityWhitelist? Blacklist; public bool CanTargetSelf; public EntityTargetActionComponentState(EntityTargetActionComponent component, IEntityManager entManager) : base(component, entManager) { Whitelist = component.Whitelist; + Blacklist = component.Blacklist; CanTargetSelf = component.CanTargetSelf; } } diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index 8079885a5a..30f1af8465 100644 --- a/Content.Shared/Actions/SharedActionsSystem.cs +++ b/Content.Shared/Actions/SharedActionsSystem.cs @@ -538,6 +538,7 @@ public abstract class SharedActionsSystem : EntitySystem if (!ValidateEntityTargetBase(user, target, comp.Whitelist, + comp.Blacklist, comp.CheckCanInteract, comp.CanTargetSelf, comp.CheckCanAccess, @@ -552,6 +553,7 @@ public abstract class SharedActionsSystem : EntitySystem private bool ValidateEntityTargetBase(EntityUid user, EntityUid? targetEntity, EntityWhitelist? whitelist, + EntityWhitelist? blacklist, bool checkCanInteract, bool canTargetSelf, bool checkCanAccess, @@ -563,6 +565,9 @@ public abstract class SharedActionsSystem : EntitySystem if (_whitelistSystem.IsWhitelistFail(whitelist, target)) return false; + if (_whitelistSystem.IsBlacklistPass(blacklist, target)) + return false; + if (checkCanInteract && !_actionBlockerSystem.CanInteract(user, target)) return false; @@ -637,6 +642,7 @@ public abstract class SharedActionsSystem : EntitySystem var entityValidated = ValidateEntityTargetBase(user, entity, comp.Whitelist, + null, comp.CheckCanInteract, comp.CanTargetSelf, comp.CheckCanAccess, diff --git a/Content.Shared/Damage/Components/DamageableComponent.cs b/Content.Shared/Damage/Components/DamageableComponent.cs index a99840e1ae..8ea3567b05 100644 --- a/Content.Shared/Damage/Components/DamageableComponent.cs +++ b/Content.Shared/Damage/Components/DamageableComponent.cs @@ -84,15 +84,18 @@ namespace Content.Shared.Damage public sealed class DamageableComponentState : ComponentState { public readonly Dictionary DamageDict; + public readonly string? DamageContainerId; public readonly string? ModifierSetId; public readonly FixedPoint2? HealthBarThreshold; public DamageableComponentState( Dictionary damageDict, + string? damageContainerId, string? modifierSetId, FixedPoint2? healthBarThreshold) { DamageDict = damageDict; + DamageContainerId = damageContainerId; ModifierSetId = modifierSetId; HealthBarThreshold = healthBarThreshold; } diff --git a/Content.Shared/Damage/Systems/DamageableSystem.cs b/Content.Shared/Damage/Systems/DamageableSystem.cs index 3c3e1b736d..814609444a 100644 --- a/Content.Shared/Damage/Systems/DamageableSystem.cs +++ b/Content.Shared/Damage/Systems/DamageableSystem.cs @@ -228,12 +228,12 @@ namespace Content.Shared.Damage { if (_netMan.IsServer) { - args.State = new DamageableComponentState(component.Damage.DamageDict, component.DamageModifierSetId, component.HealthBarThreshold); + args.State = new DamageableComponentState(component.Damage.DamageDict, component.DamageContainerID, component.DamageModifierSetId, component.HealthBarThreshold); } else { // avoid mispredicting damage on newly spawned entities. - args.State = new DamageableComponentState(component.Damage.DamageDict.ShallowClone(), component.DamageModifierSetId, component.HealthBarThreshold); + args.State = new DamageableComponentState(component.Damage.DamageDict.ShallowClone(), component.DamageContainerID, component.DamageModifierSetId, component.HealthBarThreshold); } } @@ -266,6 +266,7 @@ namespace Content.Shared.Damage return; } + component.DamageContainerID = state.DamageContainerId; component.DamageModifierSetId = state.ModifierSetId; component.HealthBarThreshold = state.HealthBarThreshold; diff --git a/Content.Shared/Magic/Components/AnimateableComponent.cs b/Content.Shared/Magic/Components/AnimateableComponent.cs new file mode 100644 index 0000000000..a0e44d4bb4 --- /dev/null +++ b/Content.Shared/Magic/Components/AnimateableComponent.cs @@ -0,0 +1,11 @@ + +using Robust.Shared.GameStates; + +namespace Content.Shared.Magic.Components; + +// Used on whitelist for animate spell/wand +[RegisterComponent, NetworkedComponent] +public sealed partial class AnimateableComponent : Component +{ + +} diff --git a/Content.Shared/Magic/Events/AnimateSpellEvent.cs b/Content.Shared/Magic/Events/AnimateSpellEvent.cs new file mode 100644 index 0000000000..60331b2804 --- /dev/null +++ b/Content.Shared/Magic/Events/AnimateSpellEvent.cs @@ -0,0 +1,16 @@ +using Content.Shared.Actions; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Magic.Events; + +public sealed partial class AnimateSpellEvent : EntityTargetActionEvent, ISpeakSpell +{ + [DataField] + public string? Speech { get; private set; } + + [DataField] + public ComponentRegistry AddComponents = new(); + + [DataField] + public HashSet RemoveComponents = new(); +} diff --git a/Content.Shared/Magic/SharedMagicSystem.cs b/Content.Shared/Magic/SharedMagicSystem.cs index 878c4bdca4..0be5646f4b 100644 --- a/Content.Shared/Magic/SharedMagicSystem.cs +++ b/Content.Shared/Magic/SharedMagicSystem.cs @@ -1,3 +1,4 @@ +using System.Linq; using System.Numerics; using Content.Shared.Actions; using Content.Shared.Body.Components; @@ -26,7 +27,10 @@ using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Network; +using Robust.Shared.Physics; +using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; +using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Serialization.Manager; using Robust.Shared.Spawners; @@ -80,6 +84,7 @@ public abstract class SharedMagicSystem : EntitySystem SubscribeLocalEvent(OnRandomGlobalSpawnSpell); SubscribeLocalEvent(OnMindSwapSpell); SubscribeLocalEvent(OnVoidApplause); + SubscribeLocalEvent(OnAnimateSpell); } private void OnBeforeCastSpell(Entity ent, ref BeforeCastSpellEvent args) @@ -298,22 +303,8 @@ public abstract class SharedMagicSystem : EntitySystem ev.Handled = true; Speak(ev); - foreach (var toRemove in ev.ToRemove) - { - if (_compFact.TryGetRegistration(toRemove, out var registration)) - RemComp(ev.Target, registration.Type); - } - - foreach (var (name, data) in ev.ToAdd) - { - if (HasComp(ev.Target, data.Component.GetType())) - continue; - - var component = (Component)_compFact.GetComponent(name); - var temp = (object)component; - _seriMan.CopyTo(data.Component, ref temp); - EntityManager.AddComponent(ev.Target, (Component)temp!); - } + RemoveComponents(ev.Target, ev.ToRemove); + AddComponents(ev.Target, ev.ToAdd); } // End Change Component Spells #endregion @@ -370,6 +361,29 @@ public abstract class SharedMagicSystem : EntitySystem comp.Uid = performer; } } + + private void AddComponents(EntityUid target, ComponentRegistry comps) + { + foreach (var (name, data) in comps) + { + if (HasComp(target, data.Component.GetType())) + continue; + + var component = (Component)_compFact.GetComponent(name); + var temp = (object)component; + _seriMan.CopyTo(data.Component, ref temp); + EntityManager.AddComponent(target, (Component)temp!); + } + } + + private void RemoveComponents(EntityUid target, HashSet comps) + { + foreach (var toRemove in comps) + { + if (_compFact.TryGetRegistration(toRemove, out var registration)) + RemComp(target, registration.Type); + } + } // End Spell Helpers #endregion #region Touch Spells @@ -514,6 +528,33 @@ public abstract class SharedMagicSystem : EntitySystem _stun.TryParalyze(ev.Performer, ev.PerformerStunDuration, true); } + #endregion + #region Animation Spells + + private void OnAnimateSpell(AnimateSpellEvent ev) + { + if (ev.Handled || !PassesSpellPrerequisites(ev.Action, ev.Performer) || !TryComp(ev.Target, out var fixtures) || + !TryComp(ev.Target, out var physics)) + return; + + ev.Handled = true; + //Speak(ev); + + RemoveComponents(ev.Target, ev.RemoveComponents); + AddComponents(ev.Target, ev.AddComponents); + + var xform = Transform(ev.Target); + var fixture = fixtures.Fixtures.First(); + + _transform.Unanchor(ev.Target); + _physics.SetCanCollide(ev.Target, true, true, false, fixtures, physics); + _physics.SetCollisionMask(ev.Target, fixture.Key, fixture.Value, (int)CollisionGroup.FlyingMobMask, fixtures, physics); + _physics.SetCollisionLayer(ev.Target, fixture.Key, fixture.Value, (int)CollisionGroup.FlyingMobLayer, fixtures, physics); + _physics.SetBodyType(ev.Target, BodyType.KinematicController, fixtures, physics, xform); + _physics.SetBodyStatus(ev.Target, physics, BodyStatus.InAir, true); + _physics.SetFixedRotation(ev.Target, false, true, fixtures, physics); + } + #endregion // End Spells #endregion diff --git a/Resources/Locale/en-US/store/spellbook-catalog.ftl b/Resources/Locale/en-US/store/spellbook-catalog.ftl index 95a8b25e68..0c650c0d4d 100644 --- a/Resources/Locale/en-US/store/spellbook-catalog.ftl +++ b/Resources/Locale/en-US/store/spellbook-catalog.ftl @@ -26,6 +26,9 @@ spellbook-ethereal-jaunt-description = Slip into the ethereal plane to slip away spellbook-mind-swap-name = Mind Swap spellbook-mind-swap-description = Exchange bodies with another person! +spellbook-animate-name = Animate +spellbook-animate-description = Bring an inanimate object to life! + spellbook-smite-name = Smite spellbook-smite-desc = Don't like them? EXPLODE them into giblets! Requires Wizard Robe & Hat. @@ -49,6 +52,9 @@ spellbook-wand-polymorph-carp-description = For when you need a carp filet quick spellbook-wand-locker-name = Wand of the Locker spellbook-wand-locker-description = Shoot cursed lockers at your enemies and lock em away! +spellbook-staff-animation-name = Staff of Animation +spellbook-staff-animation-description = Bring inanimate objects to life! + # Events spellbook-event-summon-ghosts-name = Summon Ghosts diff --git a/Resources/Prototypes/Catalog/spellbook_catalog.yml b/Resources/Prototypes/Catalog/spellbook_catalog.yml index 3ba3189771..0486330940 100644 --- a/Resources/Prototypes/Catalog/spellbook_catalog.yml +++ b/Resources/Prototypes/Catalog/spellbook_catalog.yml @@ -197,6 +197,19 @@ - !type:ListingLimitedStockCondition stock: 1 +- type: listing + id: SpellbookStaffAnimation + name: spellbook-staff-animation-name + description: spellbook-staff-animation-description + productEntity: AnimationStaff + cost: + WizCoin: 3 + categories: + - SpellbookEquipment + conditions: + - !type:ListingLimitedStockCondition + stock: 1 + # Event - type: listing id: SpellbookEventSummonGhosts diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/staves.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/staves.yml index 9e4e77fdfd..f50c8a6d8d 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/staves.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/staves.yml @@ -1,4 +1,4 @@ -# To be implemented: see #9072 +# To be implemented: see #9072 - type: entity name: staff of healing diff --git a/Resources/Prototypes/Entities/Objects/base_item.yml b/Resources/Prototypes/Entities/Objects/base_item.yml index 61837aa1eb..bb67d3f4cf 100644 --- a/Resources/Prototypes/Entities/Objects/base_item.yml +++ b/Resources/Prototypes/Entities/Objects/base_item.yml @@ -5,6 +5,7 @@ components: - type: Item size: Small + - type: Animateable - type: Clickable - type: InteractionOutline - type: MovedByPressure diff --git a/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml b/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml index 86b17e2584..27cb4d8b68 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml @@ -5,6 +5,7 @@ description: A square piece of metal standing on four metal legs. abstract: true components: + - type: Animateable - type: Damageable damageContainer: StructuralInorganic damageModifierSet: Metallic diff --git a/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml b/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml index 33fd5192fa..3e3d44bbd5 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml @@ -6,6 +6,7 @@ placement: mode: PlaceFree components: + - type: Animateable - type: Clickable - type: InteractionOutline - type: Physics diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml index d79348bfa6..7cccee81c0 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml @@ -5,6 +5,7 @@ placement: mode: SnapgridCenter components: + - type: Animateable - type: MeleeSound soundGroups: Brute: diff --git a/Resources/Prototypes/Entities/Structures/Machines/base_structuremachines.yml b/Resources/Prototypes/Entities/Structures/Machines/base_structuremachines.yml index aab56b455a..5a5d026f0e 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/base_structuremachines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/base_structuremachines.yml @@ -3,6 +3,7 @@ parent: BaseStructure id: BaseMachine components: + - type: Animateable - type: InteractionOutline - type: Anchorable delay: 2 @@ -57,6 +58,7 @@ abstract: true id: ConstructibleMachine components: + - type: Animateable - type: Machine - type: ContainerContainer containers: diff --git a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml index c8c03a95e8..b76791cba6 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml @@ -5,6 +5,7 @@ name: gas canister description: A canister that can contain any type of gas. It can be attached to connector ports using a wrench. components: + - type: Animateable - type: InteractionOutline - type: Transform noRot: true diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml index 6777b0f638..84b25d1351 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml @@ -5,6 +5,7 @@ description: A standard-issue Nanotrasen storage unit. abstract: true components: + - type: Animateable - type: ResistLocker - type: Transform noRot: true diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml index 3e9a09be5a..55f4dee041 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml @@ -5,6 +5,7 @@ name: crate description: A large container for items. components: + - type: Animateable - type: Transform noRot: true - type: Icon diff --git a/Resources/Prototypes/Entities/Structures/Storage/Tanks/base_structuretanks.yml b/Resources/Prototypes/Entities/Structures/Storage/Tanks/base_structuretanks.yml index 7b56e6d36b..dff863f8fa 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Tanks/base_structuretanks.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Tanks/base_structuretanks.yml @@ -1,10 +1,11 @@ -- type: entity +- type: entity id: StorageTank parent: BaseStructureDynamic name: storage tank description: A liquids storage tank. abstract: true components: + - type: Animateable - type: Sprite noRot: true - type: InteractionOutline @@ -82,4 +83,4 @@ mask: - MachineMask layer: - - WallLayer \ No newline at end of file + - WallLayer diff --git a/Resources/Prototypes/Magic/animate_spell.yml b/Resources/Prototypes/Magic/animate_spell.yml new file mode 100644 index 0000000000..b0b322919c --- /dev/null +++ b/Resources/Prototypes/Magic/animate_spell.yml @@ -0,0 +1,70 @@ +- type: entity + id: ActionAnimateSpell + name: Animate + description: Bring an inanimate object to life! + components: + - type: EntityTargetAction + useDelay: 0 + charges: 5 + itemIconStyle: BigAction + whitelist: + components: + - Animateable # Currently on: SeatBase, TableBase, ClosetBase, BaseMachine, ConstructibleMachine, BaseComputer, BaseItem, CrateGeneric, StorageTank, GasCanister + blacklist: + components: + - MindContainer + - NukeDisk + - GravityGenerator + - AnomalyGenerator + canTargetSelf: false + interactOnMiss: false + sound: !type:SoundPathSpecifier + path: /Audio/Magic/staff_animation.ogg + icon: + sprite: Objects/Magic/magicactions.rsi + state: spell_default + event: !type:AnimateSpellEvent + addComponents: + - type: MindContainer + - type: InputMover + - type: MobMover + - type: MovementSpeedModifier + - type: HTN + rootTask: + task: SimpleHostileCompound + - type: CombatMode + - type: MeleeWeapon + animation: WeaponArcPunch + wideAnimation: WeaponArcPunch + altDisarm: false + soundHit: /Audio/Weapons/smash.ogg + range: 1.2 + angle: 0.0 + damage: + types: + Blunt: 10 + - type: NpcFactionMember + factions: + - Wizard + - type: NoSlip + - type: MovementAlwaysTouching + - type: CanMoveInAir + - type: Damageable + damageContainer: ManifestedSpirit + damageModifierSet: ManifestedSpirit + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + - type: Hands + - type: CanEscapeInventory + removeComponents: + - RequireProjectileTarget + speech: action-speech-spell-animate diff --git a/Resources/Prototypes/Magic/staves.yml b/Resources/Prototypes/Magic/staves.yml index ccabb516fd..ea42c47d18 100644 --- a/Resources/Prototypes/Magic/staves.yml +++ b/Resources/Prototypes/Magic/staves.yml @@ -1,4 +1,4 @@ -# non-projectile / "gun" staves +# non-projectile / "gun" staves # wand that gives lights an RGB effect. - type: entity @@ -32,6 +32,30 @@ enabled: true radius: 2 +- type: entity + id: AnimationStaff + parent: BaseItem + name: staff of animation + description: Brings inanimate objects to life! + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Basic/staves.rsi + layers: + - state: animation + - type: ActionOnInteract + actions: + - ActionAnimateSpell + - type: Item + size: Normal + inhandVisuals: + left: + - state: animation-inhand-left + right: + - state: animation-inhand-right + - type: Tag + tags: + - WizardWand + - type: entity id: ActionRgbLight components: diff --git a/Resources/Prototypes/ai_factions.yml b/Resources/Prototypes/ai_factions.yml index c2b62b5bdc..80e12bc166 100644 --- a/Resources/Prototypes/ai_factions.yml +++ b/Resources/Prototypes/ai_factions.yml @@ -1,13 +1,14 @@ - type: npcFaction id: Dragon hostile: - - NanoTrasen - - Syndicate - - Xeno - - PetsNT - - Zombie - - Revolutionary - - AllHostile + - NanoTrasen + - Syndicate + - Xeno + - PetsNT + - Zombie + - Revolutionary + - AllHostile + - Wizard - type: npcFaction id: NanoTrasen @@ -19,12 +20,13 @@ - Revolutionary - Dragon - AllHostile + - Wizard - type: npcFaction id: Mouse hostile: - - PetsNT - - AllHostile + - PetsNT + - AllHostile - type: npcFaction id: Passive @@ -48,6 +50,7 @@ - Zombie - Revolutionary - AllHostile + - Wizard - type: npcFaction id: SimpleNeutral @@ -62,6 +65,7 @@ - Zombie - Dragon - AllHostile + - Wizard - type: npcFaction id: Xeno @@ -73,6 +77,7 @@ - Zombie - Revolutionary - AllHostile + - Wizard - type: npcFaction id: Zombie @@ -85,6 +90,7 @@ - PetsNT - Revolutionary - AllHostile + - Wizard - type: npcFaction id: Revolutionary @@ -94,6 +100,7 @@ - SimpleHostile - Dragon - AllHostile + - Wizard - type: npcFaction id: AllHostile @@ -109,3 +116,16 @@ - Xeno - Zombie - Revolutionary + - Wizard + +- type: npcFaction + id: Wizard + hostile: + - NanoTrasen + - Dragon + - SimpleHostile + - Syndicate + - Xeno + - Zombie + - Revolutionary + - AllHostile From 382cd710a7c734c9c0b9406ade7dcb8561a87826 Mon Sep 17 00:00:00 2001 From: Saphire Lattice Date: Thu, 13 Feb 2025 12:51:28 +0700 Subject: [PATCH 246/313] Use screen local north for buckling/unbuckling layering, plus #31625 (#33447) * Fix sprite layering upon strapping/unstrapping * switch from strap to buckle events * Use screen-local North for the checks instead Build on top of PR #31625, but I'm not wanting to just push to someone's older PR without a warning. --------- Co-authored-by: themias --- Content.Client/Buckle/BuckleSystem.cs | 53 ++++++++++++++++++++++++++- 1 file changed, 51 insertions(+), 2 deletions(-) diff --git a/Content.Client/Buckle/BuckleSystem.cs b/Content.Client/Buckle/BuckleSystem.cs index 035e1300ca..40b2092a26 100644 --- a/Content.Client/Buckle/BuckleSystem.cs +++ b/Content.Client/Buckle/BuckleSystem.cs @@ -3,13 +3,15 @@ using Content.Shared.Buckle; using Content.Shared.Buckle.Components; using Content.Shared.Rotation; using Robust.Client.GameObjects; -using Robust.Shared.GameStates; +using Robust.Client.Graphics; namespace Content.Client.Buckle; internal sealed class BuckleSystem : SharedBuckleSystem { [Dependency] private readonly RotationVisualizerSystem _rotationVisualizerSystem = default!; + [Dependency] private readonly IEyeManager _eye = default!; + [Dependency] private readonly SharedTransformSystem _xformSystem = default!; public override void Initialize() { @@ -17,6 +19,8 @@ internal sealed class BuckleSystem : SharedBuckleSystem SubscribeLocalEvent(OnAppearanceChange); SubscribeLocalEvent(OnStrapMoveEvent); + SubscribeLocalEvent(OnBuckledEvent); + SubscribeLocalEvent(OnUnbuckledEvent); } private void OnStrapMoveEvent(EntityUid uid, StrapComponent component, ref MoveEvent args) @@ -28,13 +32,21 @@ internal sealed class BuckleSystem : SharedBuckleSystem // This code is garbage, it doesn't work with rotated viewports. I need to finally get around to reworking // sprite rendering for entity layers & direction dependent sorting. + // Future notes: + // Right now this doesn't handle: other grids, other grids rotating, the camera rotation changing, and many other fun rotation specific things + // The entire thing should be a concern of the engine, or something engine helps to implement properly. + // Give some of the sprite rotations their own drawdepth, maybe as an offset within the rsi, or something like this + // And we won't ever need to set the draw depth manually + if (args.NewRotation == args.OldRotation) return; if (!TryComp(uid, out var strapSprite)) return; - var isNorth = Transform(uid).LocalRotation.GetCardinalDir() == Direction.North; + var angle = _xformSystem.GetWorldRotation(uid) + _eye.CurrentEye.Rotation; // Get true screen position, or close enough + + var isNorth = angle.GetCardinalDir() == Direction.North; foreach (var buckledEntity in component.BuckledEntities) { if (!TryComp(buckledEntity, out var buckle)) @@ -45,6 +57,7 @@ internal sealed class BuckleSystem : SharedBuckleSystem if (isNorth) { + // This will only assign if empty, it won't get overwritten by new depth on multiple calls, which do happen easily buckle.OriginalDrawDepth ??= buckledSprite.DrawDepth; buckledSprite.DrawDepth = strapSprite.DrawDepth - 1; } @@ -56,6 +69,42 @@ internal sealed class BuckleSystem : SharedBuckleSystem } } + /// + /// Lower the draw depth of the buckled entity without needing for the strap entity to rotate/move. + /// Only do so when the entity is facing screen-local north + /// + private void OnBuckledEvent(Entity ent, ref BuckledEvent args) + { + if (!TryComp(args.Strap, out var strapSprite)) + return; + + if (!TryComp(ent.Owner, out var buckledSprite)) + return; + + var angle = _xformSystem.GetWorldRotation(args.Strap) + _eye.CurrentEye.Rotation; // Get true screen position, or close enough + + if (angle.GetCardinalDir() != Direction.North) + return; + + ent.Comp.OriginalDrawDepth ??= buckledSprite.DrawDepth; + buckledSprite.DrawDepth = strapSprite.DrawDepth - 1; + } + + /// + /// Was the draw depth of the buckled entity lowered? Reset it upon unbuckling. + /// + private void OnUnbuckledEvent(Entity ent, ref UnbuckledEvent args) + { + if (!TryComp(ent.Owner, out var buckledSprite)) + return; + + if (!ent.Comp.OriginalDrawDepth.HasValue) + return; + + buckledSprite.DrawDepth = ent.Comp.OriginalDrawDepth.Value; + ent.Comp.OriginalDrawDepth = null; + } + private void OnAppearanceChange(EntityUid uid, BuckleComponent component, ref AppearanceChangeEvent args) { if (!TryComp(uid, out var rotVisuals)) From 25de99ec999a4f6a17b1a9d147faff03e1270e84 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 13 Feb 2025 05:52:37 +0000 Subject: [PATCH 247/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 68b4bafdb2..7ab73f542b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Fix storage area pickup sound playing more than once. - type: Fix - id: 7445 - time: '2024-09-27T07:09:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32397 - author: metalgearsloth changes: - message: Fix verbs shuffling on mobs. @@ -3895,3 +3888,10 @@ id: 7944 time: '2025-02-12T18:41:58.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35111 +- author: SaphireLattice, themias + changes: + - message: Chair buckle draw depth is slightly less broken + type: Fix + id: 7945 + time: '2025-02-13T05:51:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33447 From f6a1fd5de8fc93ff620b7d72041fc67dd5134bee Mon Sep 17 00:00:00 2001 From: Milon Date: Thu, 13 Feb 2025 07:41:30 +0100 Subject: [PATCH 248/313] add missing base calls to several BUIs (#35124) --- .../Atmos/Consoles/AtmosAlertsComputerBoundUserInterface.cs | 2 ++ Content.Client/Instruments/UI/InstrumentBoundUserInterface.cs | 2 ++ Content.Client/MassMedia/Ui/NewsWriterBoundUserInterface.cs | 2 ++ .../Medical/CrewMonitoring/CrewMonitoringBoundUserInterface.cs | 2 ++ Content.Client/Nuke/NukeBoundUserInterface.cs | 2 ++ .../Power/PowerMonitoringConsoleBoundUserInterface.cs | 2 ++ Content.Client/Store/Ui/StoreBoundUserInterface.cs | 2 ++ .../SurveillanceCamera/UI/SurveillanceCameraSetupBoundUi.cs | 2 ++ 8 files changed, 16 insertions(+) diff --git a/Content.Client/Atmos/Consoles/AtmosAlertsComputerBoundUserInterface.cs b/Content.Client/Atmos/Consoles/AtmosAlertsComputerBoundUserInterface.cs index 6f0e7f80da..8abf0cbd73 100644 --- a/Content.Client/Atmos/Consoles/AtmosAlertsComputerBoundUserInterface.cs +++ b/Content.Client/Atmos/Consoles/AtmosAlertsComputerBoundUserInterface.cs @@ -11,6 +11,8 @@ public sealed class AtmosAlertsComputerBoundUserInterface : BoundUserInterface protected override void Open() { + base.Open(); + _menu = new AtmosAlertsComputerWindow(this, Owner); _menu.OpenCentered(); _menu.OnClose += Close; diff --git a/Content.Client/Instruments/UI/InstrumentBoundUserInterface.cs b/Content.Client/Instruments/UI/InstrumentBoundUserInterface.cs index 13397e2d9f..e511cb8654 100644 --- a/Content.Client/Instruments/UI/InstrumentBoundUserInterface.cs +++ b/Content.Client/Instruments/UI/InstrumentBoundUserInterface.cs @@ -39,6 +39,8 @@ namespace Content.Client.Instruments.UI protected override void Open() { + base.Open(); + _instrumentMenu = this.CreateWindow(); _instrumentMenu.Title = EntMan.GetComponent(Owner).EntityName; diff --git a/Content.Client/MassMedia/Ui/NewsWriterBoundUserInterface.cs b/Content.Client/MassMedia/Ui/NewsWriterBoundUserInterface.cs index 4f21361990..be00e10c2a 100644 --- a/Content.Client/MassMedia/Ui/NewsWriterBoundUserInterface.cs +++ b/Content.Client/MassMedia/Ui/NewsWriterBoundUserInterface.cs @@ -20,6 +20,8 @@ public sealed class NewsWriterBoundUserInterface : BoundUserInterface protected override void Open() { + base.Open(); + _menu = this.CreateWindow(); _menu.ArticleEditorPanel.PublishButtonPressed += OnPublishButtonPressed; diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringBoundUserInterface.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringBoundUserInterface.cs index b1f239cd78..550d0fcdfe 100644 --- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringBoundUserInterface.cs +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringBoundUserInterface.cs @@ -14,6 +14,8 @@ public sealed class CrewMonitoringBoundUserInterface : BoundUserInterface protected override void Open() { + base.Open(); + EntityUid? gridUid = null; var stationName = string.Empty; diff --git a/Content.Client/Nuke/NukeBoundUserInterface.cs b/Content.Client/Nuke/NukeBoundUserInterface.cs index 2e15042373..3cf6a28974 100644 --- a/Content.Client/Nuke/NukeBoundUserInterface.cs +++ b/Content.Client/Nuke/NukeBoundUserInterface.cs @@ -18,6 +18,8 @@ namespace Content.Client.Nuke protected override void Open() { + base.Open(); + _menu = this.CreateWindow(); _menu.OnKeypadButtonPressed += i => diff --git a/Content.Client/Power/PowerMonitoringConsoleBoundUserInterface.cs b/Content.Client/Power/PowerMonitoringConsoleBoundUserInterface.cs index cbc343c06c..2a7c24e96b 100644 --- a/Content.Client/Power/PowerMonitoringConsoleBoundUserInterface.cs +++ b/Content.Client/Power/PowerMonitoringConsoleBoundUserInterface.cs @@ -12,6 +12,8 @@ public sealed class PowerMonitoringConsoleBoundUserInterface : BoundUserInterfac protected override void Open() { + base.Open(); + _menu = this.CreateWindow(); _menu.SetEntity(Owner); _menu.SendPowerMonitoringConsoleMessageAction += SendPowerMonitoringConsoleMessage; diff --git a/Content.Client/Store/Ui/StoreBoundUserInterface.cs b/Content.Client/Store/Ui/StoreBoundUserInterface.cs index 8c48258de0..d8236604bf 100644 --- a/Content.Client/Store/Ui/StoreBoundUserInterface.cs +++ b/Content.Client/Store/Ui/StoreBoundUserInterface.cs @@ -27,6 +27,8 @@ public sealed class StoreBoundUserInterface : BoundUserInterface protected override void Open() { + base.Open(); + _menu = this.CreateWindow(); if (EntMan.TryGetComponent(Owner, out var store)) _menu.Title = Loc.GetString(store.Name); diff --git a/Content.Client/SurveillanceCamera/UI/SurveillanceCameraSetupBoundUi.cs b/Content.Client/SurveillanceCamera/UI/SurveillanceCameraSetupBoundUi.cs index 295724788e..d7125fa1cf 100644 --- a/Content.Client/SurveillanceCamera/UI/SurveillanceCameraSetupBoundUi.cs +++ b/Content.Client/SurveillanceCamera/UI/SurveillanceCameraSetupBoundUi.cs @@ -21,6 +21,8 @@ public sealed class SurveillanceCameraSetupBoundUi : BoundUserInterface protected override void Open() { + base.Open(); + _window = new(); if (_type == SurveillanceCameraSetupUiKey.Router) From 8f96c77de547bcd0a5584eff6928fc08e5362c3f Mon Sep 17 00:00:00 2001 From: Minemoder5000 Date: Thu, 13 Feb 2025 00:55:04 -0700 Subject: [PATCH 249/313] Slime plushie now squishes (#33554) * Slime plushie now squishes * Remove useSound --- .../Prototypes/Entities/Objects/Fun/toys.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index 879f886d91..0dcba73fef 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -738,6 +738,22 @@ components: - type: Sprite state: plushie_slime + - type: EmitSoundOnUse + sound: + path: /Audio/Voice/Slime/slime_squish.ogg + - type: EmitSoundOnLand + sound: + path: /Audio/Voice/Slime/slime_squish.ogg + - type: EmitSoundOnActivate + sound: + path: /Audio/Voice/Slime/slime_squish.ogg + - type: EmitSoundOnTrigger + sound: + path: /Audio/Voice/Slime/slime_squish.ogg + - type: MeleeWeapon + wideAnimationRotation: 180 + soundHit: + path: /Audio/Voice/Slime/slime_squish.ogg - type: entity parent: BasePlushie From d44d48ef96076e20a65b53f8500a55bd5e040fb8 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 13 Feb 2025 07:56:11 +0000 Subject: [PATCH 250/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 7ab73f542b..d6694bbbd5 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,18 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Fix verbs shuffling on mobs. - type: Fix - - message: Stripping is now predicted. - type: Fix - - message: Ensnare interactions are now predicted. - type: Fix - - message: Fix text saying you are freeing yourself from ensnare when freeing someone - else. - type: Fix - id: 7446 - time: '2024-09-27T07:12:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32478 - author: Fildrance, ScarKy0 changes: - message: AI now can electrify doors and set them to emergency access. Setting @@ -3895,3 +3881,10 @@ id: 7945 time: '2025-02-13T05:51:28.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33447 +- author: Minemoder + changes: + - message: Slime plushie now squishes. + type: Tweak + id: 7946 + time: '2025-02-13T07:55:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33554 From 3c8fb2e865dc71a750c06c312e2c2684240db4ca Mon Sep 17 00:00:00 2001 From: Smith <182301147+AgentSmithRadio@users.noreply.github.com> Date: Thu, 13 Feb 2025 03:00:38 -0500 Subject: [PATCH 251/313] Grilled Cheese Sandwich Entity and Recipe (#33807) * Grilled Cheese Prototype * Typos * Removed butter reagent to test flavour changes. * Flavour corrections. * CC-BY-SA-3.0 attribution * Fixing meta.json * I lost an hour of my life to a missing comma in meta.json * Merge Conflict Rebase and Test Fixing * Cook time to 10 seconds. * Sandwich nutritional balance * Grilled cheese sprite fixed, found the actual original source for copyright. --- .../Random/Food_Drinks/food_baked_single.yml | 1 + .../Objects/Consumable/Food/Baked/misc.yml | 25 ++++++++++++++++++ .../Recipes/Cooking/meal_recipes.yml | 11 ++++++++ .../Food/Baked/misc.rsi/grilled-cheese.png | Bin 0 -> 816 bytes .../Consumable/Food/Baked/misc.rsi/meta.json | 9 ++++--- 5 files changed, 43 insertions(+), 3 deletions(-) create mode 100644 Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/grilled-cheese.png diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_single.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_single.yml index fa28567639..052886eadf 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_single.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_single.yml @@ -55,6 +55,7 @@ - FoodBakedCookieOatmeal - FoodBakedCookieRaisin - FoodBakedCookieSugar + - FoodBakedGrilledCheeseSandwich - FoodBakedNugget - FoodBakedPancake - FoodBakedPancakeBb diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml index db8c186856..3999f4c155 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml @@ -835,3 +835,28 @@ Quantity: 2 - ReagentId: Vitamin Quantity: 1 + +- type: entity + name: grilled cheese sandwich + parent: FoodBakedBase + id: FoodBakedGrilledCheeseSandwich + description: Bread and cheese toasted with butter, perfect for a chilly day in space. + components: + - type: FlavorProfile + flavors: + - cheesy + - bread + - type: Sprite + sprite: Objects/Consumable/Food/Baked/misc.rsi + state: grilled-cheese + - type: SolutionContainerManager + solutions: + food: + maxVol: 21 + reagents: + - ReagentId: Nutriment + Quantity: 11 + - ReagentId: Butter + Quantity: 2 + - ReagentId: Vitamin + Quantity: 3 diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index a33f78cac2..8e2e97a746 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -2137,3 +2137,14 @@ time: 5 solids: FoodMeatAnomaly: 1 + +- type: microwaveMealRecipe + id: RecipeGrilledCheeseSandwich + name: grilled cheese sandwich recipe + result: FoodBakedGrilledCheeseSandwich + time: 10 + solids: + FoodBreadPlainSlice: 2 + FoodCheeseSlice: 1 + FoodButterSlice: 1 + diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/grilled-cheese.png b/Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/grilled-cheese.png new file mode 100644 index 0000000000000000000000000000000000000000..172c16cd0f38c0c3f90b6cb9bd496ee69623af81 GIT binary patch literal 816 zcmV-01JC@4P)Px%=t)FDR9Hvtl}$)gQ5c5b$pnXHKr99A&mV|rY!(ifKVU)7&rY(j5QR3j3S0!~ zqE-@AG=WeMwFoMr5>0ARE`ltYGSa{>Do`g91x=G?YKF{iyx(*#XKH4gD}e-aHuv0f z&$;jOz2EoUYr`@R+cN7T4Ul%=|8t;yTdu**35G&34diq%0hdbs}qh0fuh9fydV@_Z{ayScX^>V5lC(yYD&Jf7XlOvjM#K&%u3Q3nCvU z1OyYKvd;PEEB&}|^$9lTFTmR~yXd=VVbV>Jt3mk-Vf zF+V+L@3ON?G;f$4tqruf^L*Fn0r_gdb)bMM&qU>A%G{>hWeVdQR^!` zW}ZcyAexv7LIhKEy;zx0v%4e})HcHBjFK%*;+qP8l0z5i20Gs1H? zcqt%r9i+I_Expe#BLz8b9xlX!JzM6h_O8I#DZhZ784g>k0YYp&*M`v4V-w`^-4RL2 zjv}WiN+62=DNF!IUJY7zcL<4Z7$NL(*-b|X#9FdkgeqEgL(hXUFlvtGljB&kI`&Wa zX~rSXbaB%zAfY(-r1ZnkVP>Wxa$9JNit56gC$d@x(&v@{bP&}EYE5-OBCG!?fT|H* uRUujxRzOQ~AW<|+Sx*C`9Y{Oy3*iZjFrd1|8vp Date: Thu, 13 Feb 2025 08:01:45 +0000 Subject: [PATCH 252/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index d6694bbbd5..554bcf49c3 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,16 +1,4 @@ Entries: -- author: Fildrance, ScarKy0 - changes: - - message: AI now can electrify doors and set them to emergency access. Setting - door to emergency access will now play sound effect for everyone around, while - electrifying door will play sound effect only for AI - type: Add - - message: AI will now be notified when trying to interact with door without power - or when respective wires were messed up with - type: Fix - id: 7447 - time: '2024-09-27T07:22:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32012 - author: LittleNorthStar changes: - message: Noir trenchcoat to detective loadout @@ -3888,3 +3876,10 @@ id: 7946 time: '2025-02-13T07:55:04.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33554 +- author: AgentSmithRadio + changes: + - message: Added grilled cheese sandwich and recipe. + type: Add + id: 7947 + time: '2025-02-13T08:00:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33807 From 2515371c8c0a22ee0e19d30c0d5de4201fb1df68 Mon Sep 17 00:00:00 2001 From: Simon <63975668+Simyon264@users.noreply.github.com> Date: Thu, 13 Feb 2025 09:20:13 +0100 Subject: [PATCH 253/313] Fix "Manage Laws" button appearing with insufficient permissions (#35120) --- Content.Server/Administration/Systems/AdminVerbSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.cs b/Content.Server/Administration/Systems/AdminVerbSystem.cs index 0640537f57..568e498ff0 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.cs @@ -370,7 +370,7 @@ namespace Content.Server.Administration.Systems } - if (lawBoundComponent != null && target != null) + if (lawBoundComponent != null && target != null && _adminManager.HasAdminFlag(player, AdminFlags.Moderator)) { args.Verbs.Add(new Verb() { From 87f2071ba13355abb9dc80e8118e11d9d88b1110 Mon Sep 17 00:00:00 2001 From: themias <89101928+themias@users.noreply.github.com> Date: Thu, 13 Feb 2025 14:26:01 -0500 Subject: [PATCH 254/313] Make experimental welding tool less harmful to eyes (#34792) code --- Resources/Prototypes/Entities/Objects/Tools/welders.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Tools/welders.yml b/Resources/Prototypes/Entities/Objects/Tools/welders.yml index 197dca00ff..43c1019dd6 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/welders.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/welders.yml @@ -171,6 +171,8 @@ reagents: - ReagentId: WeldingFuel Quantity: 1 + - type: RequiresEyeProtection + statusEffectTime: 5 # less harmful; sunglasses can block it - type: entity name: emergency welding tool From eb8b26523818ab3e7d9940ec25fb58a4a88587ca Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 13 Feb 2025 19:27:08 +0000 Subject: [PATCH 255/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 554bcf49c3..ebca989010 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: LittleNorthStar - changes: - - message: Noir trenchcoat to detective loadout - type: Add - id: 7448 - time: '2024-09-27T10:03:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32380 - author: deltanedas changes: - message: Removed the thief figurines objective. @@ -3883,3 +3876,11 @@ id: 7947 time: '2025-02-13T08:00:39.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33807 +- author: themias + changes: + - message: The experimental welding tool now requires only minimal eye protection + (e.g. sunglasses) + type: Tweak + id: 7948 + time: '2025-02-13T19:26:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34792 From 0c4e8f6b86ab09090e3cd8b6619d916d8278bcac Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Thu, 13 Feb 2025 22:27:33 +0300 Subject: [PATCH 256/313] Fix thrusters not dealing damage (#35088) * Fix thrusters not dealing damage * Fixes * Update * Update * Update --- .../Shuttles/Components/ThrusterComponent.cs | 12 +++++++++--- Content.Server/Shuttles/Systems/ThrusterSystem.cs | 9 +++++++-- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/Content.Server/Shuttles/Components/ThrusterComponent.cs b/Content.Server/Shuttles/Components/ThrusterComponent.cs index 3bba9b5a7f..20f020743d 100644 --- a/Content.Server/Shuttles/Components/ThrusterComponent.cs +++ b/Content.Server/Shuttles/Components/ThrusterComponent.cs @@ -6,7 +6,7 @@ using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Server.Shuttles.Components { - [RegisterComponent, NetworkedComponent] + [RegisterComponent, NetworkedComponent, AutoGenerateComponentPause] [Access(typeof(ThrusterSystem))] public sealed partial class ThrusterComponent : Component { @@ -50,11 +50,17 @@ namespace Content.Server.Shuttles.Components public bool Firing = false; + /// + /// How often thruster deals damage. + /// + [DataField] + public TimeSpan FireCooldown = TimeSpan.FromSeconds(2); + /// /// Next time we tick damage for anyone colliding. /// - [ViewVariables(VVAccess.ReadWrite), DataField("nextFire", customTypeSerializer:typeof(TimeOffsetSerializer))] - public TimeSpan NextFire; + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoPausedField] + public TimeSpan NextFire = TimeSpan.Zero; } public enum ThrusterType diff --git a/Content.Server/Shuttles/Systems/ThrusterSystem.cs b/Content.Server/Shuttles/Systems/ThrusterSystem.cs index f5e8f7823e..a75ddc911a 100644 --- a/Content.Server/Shuttles/Systems/ThrusterSystem.cs +++ b/Content.Server/Shuttles/Systems/ThrusterSystem.cs @@ -232,6 +232,8 @@ public sealed class ThrusterSystem : EntitySystem private void OnThrusterInit(EntityUid uid, ThrusterComponent component, ComponentInit args) { + component.NextFire = _timing.CurTime + component.FireCooldown; + _ambient.SetAmbience(uid, false); if (!component.Enabled) @@ -461,10 +463,13 @@ public sealed class ThrusterSystem : EntitySystem while (query.MoveNext(out var comp)) { - if (!comp.Firing || comp.Colliding.Count == 0 || comp.Damage == null || comp.NextFire < curTime) + if (comp.NextFire > curTime) continue; - comp.NextFire += TimeSpan.FromSeconds(1); + comp.NextFire += comp.FireCooldown; + + if (!comp.Firing || comp.Colliding.Count == 0 || comp.Damage == null) + continue; foreach (var uid in comp.Colliding.ToArray()) { From 2caf5944d332f9ee1f9ba1d8d8a6495a8d872077 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 13 Feb 2025 19:28:40 +0000 Subject: [PATCH 257/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index ebca989010..bf0b5b23c7 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: deltanedas - changes: - - message: Removed the thief figurines objective. - type: Remove - id: 7449 - time: '2024-09-27T19:04:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32413 - author: Beck Thompson changes: - message: The appraisal tool verb is now predicted! @@ -3884,3 +3877,10 @@ id: 7948 time: '2025-02-13T19:26:01.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34792 +- author: Winkarst-cpu + changes: + - message: Thrusters now deal heat damage. + type: Fix + id: 7949 + time: '2025-02-13T19:27:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35088 From be8702ef3f68e9630975fbe2ab1fbfd662131839 Mon Sep 17 00:00:00 2001 From: Booblesnoot42 <108703193+Booblesnoot42@users.noreply.github.com> Date: Thu, 13 Feb 2025 14:31:33 -0500 Subject: [PATCH 258/313] Fix intercom key deletion but for real this time (#34911) fixes intercom issues --- .../Prototypes/Entities/Structures/Wallmounts/intercom.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml index bf0624d4b1..7a343ab6ad 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml @@ -80,6 +80,9 @@ - type: Construction graph: Intercom node: intercom + containers: + - board + - key_slots - type: Damageable damageContainer: StructuralInorganic damageModifierSet: StructuralMetallic From ba472d441b974f009e77ea95861df16e0b64e95e Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 13 Feb 2025 19:32:42 +0000 Subject: [PATCH 259/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index bf0b5b23c7..6a8f1020f4 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Beck Thompson - changes: - - message: The appraisal tool verb is now predicted! - type: Fix - id: 7450 - time: '2024-09-28T04:40:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32496 - author: Pyvik changes: - message: Added 2 new hairstyles. @@ -3884,3 +3877,11 @@ id: 7949 time: '2025-02-13T19:27:34.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35088 +- author: Booblesnoot42 + changes: + - message: Removing the security plate from an intercom will no longer delete its + encryption keys. + type: Fix + id: 7950 + time: '2025-02-13T19:31:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34911 From 7495081c4054cdf3cd59572000935f5ccba788c3 Mon Sep 17 00:00:00 2001 From: Velken <8467292+Velken@users.noreply.github.com> Date: Thu, 13 Feb 2025 16:52:21 -0300 Subject: [PATCH 260/313] Paramedic Void Suit update (#34657) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Made paramedic void suit into proper hardsuit (was softsuit before) Added light to the paramedic void suit helmet Added siren with light to the paramedic void suit * Changed paramed helmet flashlight icon and textures * fixed siren action icon * BigAction * updated icon-siren.png * fixed not being able to add it to containers (like when it parented off eva suit) * changed light to cyan, made it less brighter and reduced siren volume * changed ambulancesiren.ogg to a different one (hopefully less hard on the ears) * created ClothingHeadEVAHelmetWithLightBase in base_clothinghead.yml replaced ambulancesiren.ogg (again, this time with better fading on the audio loop) credited myself for the siren icon art reverted parents to original (but kept it in hardsuits yml, since void suits are light hardsuits) - [ the adoption was revoked 😢 ] fixed indentations removed un-used sprite and sprite state * final final siren sound change (for real this time?) * fixed license type * final FINAL final (for real this time, please?) ambulancesiren.ogg change * ContainerContainerContainerContainerContainerContainerContainerContainerContainerContainerContainerContainerContainerContainer * attributions updated (turns out, i have to give myself credit when i make stuff); fixed identation; moved action to Action/types.yml. * hopefully fixed everything this time * sync shenanigans * final final final final final for real final ambulancesiren.ogg change pinky promise this time and if you don't like it, make a new PR yourself and offer a new sound * typo * done the suggested changes * cleaning up some forgotten stuff :p * oops, cleaned up a bit too much * aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa * Update Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml * Update Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml * Update attributions.yml * evil web edit never again --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Co-authored-by: beck-thompson <107373427+beck-thompson@users.noreply.github.com> --- .../Audio/Effects/Vehicle/ambulancesiren.ogg | Bin 0 -> 7697 bytes .../Audio/Effects/Vehicle/attributions.yml | 5 ++ Resources/Prototypes/Actions/types.yml | 13 +++++ .../Clothing/Head/base_clothinghead.yml | 5 +- .../Entities/Clothing/Head/eva-helmets.yml | 54 +++++++++++------- .../Clothing/Head/hardsuit-helmets.yml | 40 ++++++------- .../Clothing/OuterClothing/softsuits.yml | 32 ++++++++++- .../equipped-head-light-vox.png | Bin 0 -> 2343 bytes .../paramedhelm.rsi/equipped-head-light.png | Bin 0 -> 2268 bytes .../paramedhelm.rsi/equipped-head-vox.png} | Bin .../paramedhelm.rsi/equipped-head.png} | Bin .../Hardsuits/paramedhelm.rsi/icon-flash.png | Bin 0 -> 1282 bytes .../Head/Hardsuits/paramedhelm.rsi/icon.png | Bin 0 -> 771 bytes .../paramedhelm.rsi/light-overlay.png | Bin 0 -> 714 bytes .../paramedhelm.rsi/meta.json | 16 ++++-- .../Head/Helmets/paramedhelm.rsi/icon.png | Bin 1724 -> 0 bytes .../Helmets/paramedhelm.rsi/inhand-left.png | Bin 2082 -> 0 bytes .../Helmets/paramedhelm.rsi/inhand-right.png | Bin 2097 -> 0 bytes .../Hardsuits/paramed.rsi/icon-siren.png | Bin 0 -> 637 bytes .../Hardsuits/paramed.rsi/meta.json | 5 +- 20 files changed, 119 insertions(+), 51 deletions(-) create mode 100644 Resources/Audio/Effects/Vehicle/ambulancesiren.ogg create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-head-light-vox.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-head-light.png rename Resources/Textures/Clothing/Head/{Helmets/paramedhelm.rsi/equipped-HELMET-vox.png => Hardsuits/paramedhelm.rsi/equipped-head-vox.png} (100%) rename Resources/Textures/Clothing/Head/{Helmets/paramedhelm.rsi/equipped-HELMET.png => Hardsuits/paramedhelm.rsi/equipped-head.png} (100%) create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/icon-flash.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/light-overlay.png rename Resources/Textures/Clothing/Head/{Helmets => Hardsuits}/paramedhelm.rsi/meta.json (55%) delete mode 100644 Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/icon-siren.png diff --git a/Resources/Audio/Effects/Vehicle/ambulancesiren.ogg b/Resources/Audio/Effects/Vehicle/ambulancesiren.ogg new file mode 100644 index 0000000000000000000000000000000000000000..0f18ac69277c5b608183bc93f3f275326950ef05 GIT binary patch literal 7697 zcmaht2|SeD*LUnBO?IUkyRn5(qi9mznn5uPA^W~(#`5--j4V+|8cVipgRvz=5>m1+ zN!ePcyk&2XdfUGH%xL+)-}n1}*PZJ=_ndpqx#ynkc@B7aSpp8Q(wwZ>6TWwPmrxr~ zVL=pEA1bnh+EclL5{_a`8c+w2oj)706M^I>-+GNc@%=wqHz%8r4ul`{Iqa=*fZ~Pm z_i?pmk;f1)+M3#$np-t>Fv=tk_fR*VKrf7OV3-djC@{byFa(Rx)rY^`K|%foR^C2T z3^fR%c)L(Bt{xtNm;e`d4@@W(*=Fh!82Ts1EYv^5$IQds#|2{<66)>~gyLpPfHm4} zjRJg-mX;}|oi><41^^9!vpiPloF@Uxpcg0~$)xW?X6>2@ne>EqNw-9;jvoU?$6X8n zEvLczcNHL z)f%>Tt8V6TI7S`7P3No({H$|epe#l_QtoIYK7@Qcwj`4RNwJTG0W^3_u=lJe;gV?Y zCF%aV@(13kS%~P~-C}HMWk!ZA)WIgqV>B#uG%Uh4GuFN#!nPsSek|5uIo3roZl!;W zm|R9W>*yF1$d|*VPhksX*A+g)6>`SJRdN7#L?syhR9S3l5uwD>x7sJW-n*hcptn}7 zw^opa0!@Ppkp|@ZWR?7{?rEFu@&9+ccb5vlLtS1NOZkd%EeS{qIfJ{I~?<+5y08Nw)_}cSCKE)bCMrZKwvLRI^d23PdCS zy+yI?1s+5u*E8Lh#r(OQ2^f)m^h<(_1kMren^)P25wsBjG`|-!*;*IQ!(D^Rk~GS^Ky7 z;NiWwj7fInp1?#T^SFx2l*pXh7;;AFT)tKpws>Pw@*hNIv^hyii4k&wb#e>$GMig8cb#UsUXlDJGt54IF~#qSsQTK>-34R?R*ciu=_2rIyTS6kh3ivih+ zY!en>n-Ti(YOKRp=;Ua`!;@c=rl1bpQO7cYIWvB?>FLSU+@pl2^Q@< zE8Tro-lSIEY)GyDt@ghXF<$Rse>K9k ze#K$fZZkO=`kUt@&D~VJ!daP9(L$C#uWMAJf~GldN=f@S~atG z>@ynNg$fNZmiYYw0BB7SG-1UN3zGUUNq3l}PPQ`m?;Zo8!#Za7bf99>0FVMe4qkE$ z`V=L_DA3>_pVkX`?gAW7!EMQyQuG!<+-lj7lwC>&4XL;`!FNwc%3^y=qmvZ2CSz9L zDmg@WzKsutJuYAY08Oh)>$W6ifY6=4XF!WTm)?a_Vw@WyVAazlw_p`Ygx#iciiQZ? z#dJxNQ@O>$ZV6Rz6X1ovRRx17Vko>Q0Iq^00cj+aC{qL zdbD_QqtRG~wB-P{Q#z(^*Ylj{!ClG#U|Lb|XQZs-ZVb>$;K^b6JLhyvL={X#jPHng zjEb0zrs?$S=vr8jdqv2@R^*4`X5@MWGZ8bh_f}*PW3m|eUb-2%F5r%i$G8>wu{e3S z-s7S8ahvqe$t`BK@Non}Lr2pioJIm1GFM2MiLyxPkw@!wEkei^WDi>_vTc}$?K0VB zB*FwjEzQQo$mDwR_=f;;dc@NZvV)Ds_%hj6{J8yS?9-))r;-Te(cw@Cbs6z+xf(jD z?33l=TUb_}rCeUlEUynJudcE$oGC9X@2T}FudeK=y;xE0KM$eRW#zSM<>hJ>wUwXC z)#mHV${VYCYHPBqE9UE8t!h)7Z#-OHU0qSTfIu6o<~xGt8#RxWV0%j{<{Fueje+xx z!F}}s(naNSEh@dYYIT?eyF!T|3 zCrJ7l+;%x|JzVQ}r@GT+TQb8d3rbpEm0eyjUmK{}Ryl8EL5^@p^O)S~U@H+gxi#5- zG^wzBu2H481v1il)Da|oT~pfOp&kU})>f^GaO+y;zvK6?Blxra)KX~CMM3_~Gtf3r zh;4}U;0t6_IcVEZfJbIp)Do@IjtN1N<}k%pT0An;{ls=@x;fEThJIhA17np;=*l@K zO!UUmhe*5y40EDi0eytzcd6vQ>msIDoam!YAF}ghcHFm1Tq4m@sZ^rBdWW68XMGCT!A5JLcCNb?iZ-_Vja<^3SrJ{7q?G_ z%q{(NOGbPVfPH|$NEVe?HFBSn1OaXV&BIwoU;Q|_tFL;;h-($XT;)<)DrElRfn6ew zKI95XrIHfi4txJ=CF#BpkVQIO_u>K7Uw7%gT_wW91ZD{8nQI?lQQ1o41b7<1M?Mll z5VzeGPZ}WjpecPg6@H^WoD!2_YJ|m-`*!gu)D7UU*!B?|p8`YNL`A*b+7F9`r%;D= z2g_}F%o5sB0;_HL!5-+v9T*sQc%>(Swr3qHbteh9tZfhNv6Vtt3^*NJYwRV3#sB z#+;~vjYSg)3Jh2$3rNFy&VP`8P#Oxvjw8;3u7X-|m=G&%m9;UZL?vbv)M!;GGzCU` zpPg^jl`%YDRqTkii2^hQ&#K#*cB%j@K!FxmaYO;6@B+MK5#)>WLc8|iW~6msWR#8( zQt8Nv7Bb=!gJQs3)rW%v+6V$*y;l$o2L^oz0g#BZ7`TRIgdhMqNdN$q!>}T%v2drJ zIGYb+CI>iz#7rWNw}Ac!wgW>?B|&!ZNKA?#)LpwZ0-)P1V4!LE>xQABS#{X$CRVi{ z^sAO(jJQ_njzS}@dy(ZwgaE((YXCgr<^?sJ>y7o4B>7cz+*ya9VW1ilwcI^XTln%L=q`IV3I}Zk3PhqQSW7$YQK z$VH!zapgY3YHZg&EMvs(v^sP-B7AgB)QuxSl=d;#O0D7{67)|=w@Twk&f0}Jt(4eN-cyx0kmTB=7z%}d!Xk^N)nF5^gvkN$uF~$hP zQjQKOv)AatkO!;0qmvMegsMRREK_C8_+=1vv5;lhdy!fYnkXj{h2>`Ci+W`Jb)Meh zH23Zz0-7KI!DGJj*pV(wdrnNcNlXd_?W(bsbPBiklE*%&cFAG77DLpMw_`n z&KT;D4<|s!bP1k~KPV_HQXW<4st*nxa_-`#2__|7IlXE|yOrDFQ79$`!zB~njuK6w zMT-Rf`E2!phMWBQ#tb3$do&7c1R!-aMpiZpmn?K76sPVo<;%qrR*%h}1+|U_0Z{Cew#P4x0r0Pv*56472fuDT^z21;{UaL_ zV*x3^d^Oj*ebbrTp3Sp#-&F_wicSZ7Na|PJruLyBGBNGqk)YCCnw)>dhp^qxjvN#I zM|s&UbJ2d6H{e{m=8@9u=V6gDiF86eI|TlXTQ6LhL>7pi_$qICvR- z0;{OQ zvlUX7>n^mWw-@H>tp*cbk54{kJa)LR^zvP`Tg_&uYaaLm$1bkIxc7`7e^(moB+Qdi zB9sXn8yu)>uzsgPrxrAhh%Kx_&|srYW}}?<`tEO+YiPO@!Fjv^AvlrS4hgP_*%b*a z%wTXs8lJz`T(1p^oY!FR?WsoA*AJa5=oY`SfT<1SN0P689jB4gg;>KLAaShj$L?SB0_owOyxAv`@D-Q^TSoP|%@~ zmh#*Kph+^ZdW+?Jh)i3;vCXGDJDRBoC3CjDgOS-%4oq=HWe<l}Ey;D2VW?OkT6{T3p+e((j2dEGGyJSSWB_mS&B30;VJAqn#P zrG^!K6{H_=U{H?fk9ap7G5qj3+vWD(QQx9QEhk?pqS0+>+t!P5(yj=XyIPB1yX+}6 zZ>8!6no2%p+D7w=r?|hANb9Z}hcCFAiF=>qHuCl`+_|vf zv5fjnLfKpW6W@cplnXA>caX0OwCFr~z^ItkkFohe@(i>&`rW%I(;T?-aK{VmjGPm6 zT7NQ8NOg)Sk`yp~PYL8H<}OzJA(s%pkYBp<$*UU@0KL0U6p2@K{yIZN6KLQK+wwwA zX`({1H|&?2!|Th>=0;v0^SxcR_~?sxE2my2Pz1*_n<*IqVQE=RomB!fGH7XN4$deI|FAtLx04pJVilm}26rnhvW}<@w-`1wzqU`P@@qOl zr8MR5#8hwtJPVIrwwMBSEDRjWno}eQ!wQZ!akzCeYd#)bxy2Ogmc0GQSIpy(iG6o~ zZ&Td0BIPyjdHY0uFsiw`cL#z{*8EnYyIJ0_ZDRJ%*)U7>A_>oNp{MNb4;PO_12O z{p5*nw2N{-;Gf%9BLT>;;qlvy$oX}f4~H2HZaREiZv~EC_k9L_lmru{kJEaaOKyuT zye8}H`yYh2|$_eu&7k`aHo|0FbAEkor_M(Eb%h! zzIxsC<8uwmKS$!QJN$O*Z6=x!)0Nh>UAA>=h|lZSG2~T=JjztI$6u@R6u1+EwdQ+6 z>hGxJ$UP~#`n7ot$`rIL9jaZ^O=V8%Eme2+x4>9F*w+W6)l6pqO^1KkyMDL!)#(ZX zN-Y6*F`#`R#y;FB;Gdj#dQnGih*6@(UjS!rqhhk+^317#1^v(s@3)q$S(L+Qd)@>5 zpe5WvJDeF%KH4$PJb}bO403W%zdeJKZ;$PzlBaiv&Z1}>Fv4jg5%o;e=R@}E7FOjW zJ^|audM0>XUmkBhr$4?ng&lHM!X*;DyxCYZjf=cAtk;)5BZB}|h+Di)pL_P8AzbuR zD?AQ>Uoc?Y9aTrs4lC1-=g#3sUFLMM#griPD~!mzrI%`-nz7nowjNRxr7(9VCOwT#e$ZzD*nX}+%kUN5>{|MDp# zmL(Z0Bj_H!pb@cpi4_PT7G}Uv05EOHd*r^<6{oBaGc?{A9F`Fbv3_Qk?VKQ!q)&9v z$>sPFd@pyx6ohD^jKvRtibhVFb5Gcj+YihCLlZA~5xZkG+O|Kjp!lNISZun#u<#Gr z$A9W!B~NJ@zCZ&_i)7`9Pdi|~`IUnV9Rlyc9E7+ZY|aq}0UtBavN5kg`3Ehi(+M0) z4_s__Y<;r+B+B{oc+1!D79OC(#zXQ8RKzEE-E2|-KT*X6WQWLhx#0oI+&`#6MZD6O z`pqaRgC4>RDpnD4KTsG3ie9Lgq$$;B`)4oMHnN7FYb3`5bL=n^F1eN;|H1dKr`h>3& zy?J&!02%!0(z&+B>Mq4DNDtsGHYphYh?x?)5=AtheuFT_OdYH_3Bzp;&~DCffWcOuNFQ0X(N z2Ue%{**<47{f{S{6RP<327U5qqTj(QyI(8PcsGE&%;vQj6DD89gTovXR6j%0=3}Xc|uqiWT7#noXKo$MKP^qjM|HLbI3}-U}mFYY_@22_(k*HN{Yr9HGOWyQ9z233=;n~HozEuHLXJzM%W{>Yd(IszH*(wdOGYNoWmea$%r&dk{H|G z36nslJS2=XJmJl|c;xQCl^QJcmWC&&=d6Cu`(+s>36}rVydCbli{SA(vND;N@Wm$! z(n%TLXl1P86oO(>n`np(->w=AFP7>isXtOW`72%K4WNL?Qok*%8j)=IFwzeul2_6K z|8U0n{*WP|r{xWtLp`KQ_>hG!$}J73M?)4nCs*8)mi9T*L>%(?O%c=!Fj-|Jz(rOY zyUB+L0TJFx5So3O;*L(YKuwLhuN13bAF3C^Un7ZNZAN&uu*8^B%clIDPu~5^mxNw^ z#6O`J6p4fY;-R*Q@%4k7Uh8)w*ULKcxW_U;9& zKft#PgSX4$TiU&%kDO{XbUw4JFQjXgHqr-!dMTx3YS#YUHph?KUnZSWo0wuGeh>N{ zH@qs@VyT2F8~9IYp1Vgl-SNBajhX#xLmwMhBnI1-)suorhXVB(2MEt!Sv}2*oFgb2 z-=E(Z>a%xm;du0iSwX_Kuye;x-V@t1U-K~A+x`hpfqTS${X?x|m%~%|4V4_WHk|Qd z-htI0{=0Kq?VG%M=Un_eVc`sp@sUEAV}NiSMp}XO+T=mX<)%)XdD~2rW{e z!QhrVv19%d$2g_o!iC4mmei)a3oZqBRA0)ZmY4Nto*jL+rH?z3hind(RDiy=j3}7! z_+pd(eeyPk(BY4V7yl>pE=_s~A}vVKQ!qhF=$!*ZIzlMY`_X$qnsgL62tnyc_h<@)NKrr# zq)11RE(ADw1TJ_tb2s07Z|3dq_sYJv^LBPN!9Y))j+&Di0025o4HZKoDqbojIdQFY z_MRsK$k$LE0n`j}uM-VYCna4a0H{x;`C&^&w5hx_%zOcWKL1id6j?@dL?^qSs;Qrm zr=wqht&am>VC(GRC!wcm%zs-#TH+?*4M`I*r^&%o(@|4X44@<$WB@0K3;+?C7E!tW z;g_co0g?RlgNa-k1O~1U(VVExk4b;}U5NZrSbRai8p*%-KTQE*D2)OjC1y(9yd?#~ z{9X03BN^uJN?AmHDPUq<@Xt)cyRt;~&n{^xsmtiz@?x|tPL>G(C?+&jl#Bzdx6DJ_ zvYmLshf2y;_xF9;nu;AVYaE)|Sdct(JJE_aU01r-vZAS&E~F%c@`5z6;=QywE2hsK zz10%(+(+(;_s^zvVT%Wu*l(2Zl<z9 zqYga&)Vd?{&+x$7w;2+RU*Di#X)Bq>=1H~A+v#fskvxTY+%?tY^AS>Hft83ccK5AKVZo?>iYe-YOBb`vjDhI57{mdAb1u^7j@NE=i)Wx0mBZb~A#C^I z`W+MQP>GBU0mCT%@WW%Ly^?{$R=Z1B3w67<;N`4Ti_ZgaRv8|;+@Otc3 zumiGP9_k&AfGQN$&&NOdC6O(}`s9@{U*Jl*JAoG-`lxmcjfbCj`2yyOkZ*jpTmXhD9G zq@L&Kf(m{uXuoWYUS6vu6eW?;s%xO$Gt`Hkv2VO;>#rG{$4*hl*u{sn;kh82EA#K2No5`9 z)y=l=p+UCtvqI%a7%Z4^*@2f;>SWfO=QTN7fLH00v-EV{WYWYb9X^d-tf@z$CDkJO z*O1mfjVVrN;3K|mG|I|Ll$cHTVwyf3^!q6XtQF0`*tOL^*&IV6m zL)n4CW8xPwEvN7NJv)og;~Q(6&+eBGy+I;Qv6qv$4O&-@`7||CDArfi8NuORi&nuG zUPMnpt$ct|X8z?_EEz2?fonP?zk7FL$xUA1J2Uyy5P->fDzeTqG?cqOQ0oskH+^?c zsI@iv>vr|;#&801L`tr3=DqqURyoI0V2O%fC9Sru6^CFzhix_2RJd9n+jHsY1~aB# z&xI7OuC7Q+-%KgwK5ws% zVF)Ez-iNH>BLnP)(f3Yis-1Se1k1?rGE`PoNyA{&oeQbx0myfk6ZS*=f~Q6qW7fhS zN|F*L1OhqjL1Eq4{LD)VFlf*+FM;K?eB7g8fvs@(_0-CS?=f=tK%Bl zSriqskWP-2E$+VruPeSetaGlQ5PIw}7ViDa9JmGVilgA0jzgw;7{lOxVMf$B{@||o zI`;S@nr2X5k6r7!?vt9$L*>W=Yb@iHw#et@AIY=kJnPE|wU6mvZF=&-QC<(qG9W5? z*=l%F%D3QvxkfX|T9LjsF}n8o3rq2^Zv!@wRi&Uj@=*Uxir+pj<~V}6BW?QY1O;3K zK};=1;DEj;CL#XVu$GFBMHLGaH7IkIc=JJ32 zArAbEIfUT{fXoa>k=UZbl#cB?_Mk3|^>B&+LndKq8Klj_TXo69J-?PO+EV*^)06nYVYiS}Y-crQZ6 zQh$)lvEI)4S;dm1-7p_oRj>gAUe0n&gbCEM?;Eg>pt^;v2oV7_7LE#=#_e1c z5%YsWBxJ0O6!zBWr^q2H2pUR)1C-?%&gfHopg?SKmEzOlxGdT8F&X)F-i+nWtXmk9 zChSqf$&r*oN5jm^x&as8Z&Qn0+i}8D3;~*qma$|FKWMyh}kelLA77^r?umMVk@tJzBd_woE5?FW|7KihVPj zq_J877Yy$-2FVgCGe~l!vx>z14cPn*W!yhrbsxQRRwTKfaKPHmD}2lqsb(_iUeoB( zg1f^x6lvp{ecuE#%M<50pL*KH`Ld=Gcc!mUQ0RK%lr}}q^E#kUNJ!Y*;UPPElxYw( zmvdl!!DoSTRPE`;R^%poR(dB$g;F}w#&>}_eDUH*FG~BPUqhqr_b@JFZb_#!WFQ_@ z2yR=pb0U#QEfcQ+R(=Ddi1L4K{H55FiX-`$vgDCPs<&Wmvf5!XQ`7kJRAF-q3%V&6 tXXlX?+wkRYuc@l1QiFIH{TGLfB|88B literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-head-light.png b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-head-light.png new file mode 100644 index 0000000000000000000000000000000000000000..de6d1bf962df3172abc469d9630737cce69149d8 GIT binary patch literal 2268 zcmZWqc{J4P8~=`NnA^yD?IGL97&F?qiou8>OO~>`BSzLNW62W9o-Em8vJSeI>`RG^ zBEpD>ER%hSh{D*qqkGT!o%6e&bDsC}d6xHip7Z|m#u^!DLm`3?005v^9gH!Z(Z|Nh zLO=g<_L`y-$j4Y)1E}m5UZy)tPU`yV08pLy+X0T5?z4I7Soi<{d(N?ez^Nva^dLV$ z%bZ|x8&B}Zc{>6|IA;$6!a&PZ>^uU6P~2}}Y@pXPIGSVeSnL^qmF_SDf*@u9L|3|W z6Z%&lZvz7{{)#iuH44N4aM0P3ZqCt6zv3=*eGDES5U|AfKmNa=06moi2AJrTNX4^A zP~JaXk0&zc{nIIxu8+Y$@5}J3(pXuEuKvA+LL!f|oAaN;abzVf002M0V$@9oY}YJZ z-Auc9kG7X>+BUey-i%fdnPQc^u$t()n1NzbXT8*7QeNB@7qjzb!)LIeOj6Dg8j@T; zv1U)r)U{$ypMT28d2&cH%tYORshV%LaSN%yccK#%^zzGO(9WHpR$PX({FgvJn)aLE z!Nn{U|NbnW{+z5AnQs6I6-Td83eamV7wS&cS+jxHg$Jnt=VZ!e_c(SB*dxYz$9hX5Yv^e!5rV}VCus|I2 zfNy^d45ID%hCbSxcMttCF_SpUm9foswDySmo#36yMbeb)Dwl1a1EYx)w~~?* z!Fg>`Sk!e-C9n}*{sdeyl%R77Bq4Z%H14QfQFn50j~@`Mz7p`PN<-&zb9l`MbsN`K zt2RqzL#O-gpM5vSX1}4QL{slldALrpWq!tB|A@8X5IXPLvYSw9|-zP-D`8_2NIF2f=&Z zn!P+gr9gdpi1r_-4_`GY?-7Lc5Ft@fSIs4Bg%hZ_`RKLijcena-|PHwOG|7$rwVeC zOp=H84DZ!^c#pchTJU(D5!a8L6*Iw_fhd69e2T;{-b;h zv*pj{;ApFH&+Wn?R)Sx_6gBa7DvO!G1`T;>gN=RtcE>#;7}jd11UoVJ9K49-%^lP?`Gpw*7eWIz_M;UDnTu~il@gN^?Io9E>w=vr8&hA%J4_(qM zDXv1T9_J>L6N`(b1deHf31@m;p+CsR2`)SQn4|3%Y$ z(om?EoJ+culYc1Z52|Q8(a=4zYu-rPbX~P!^LeYmJIgenGB7Mp9L`dpN%ln>?@et~ zk!#?Kh*z!rp5O@Eyth1mgl+D-HMlO?g@YR#%f{I*5l`K^Ygx~E0}-55uV!&*mGhbH zY9CqfV3P#<9d3;-OxxOlKTf0y3s(hSUyWs#tFh%7$M!V&@XN@jjA#-+^r4il3!bk( z50jI>Hut*dvD3ry)7O8H($a^f(XAivFE;-CeNjOlGz>+;!DPHOzb1^UOQF?&F>%#% z%gEbUI4e$+n+r`#Z6F=Y*F0>Oo1l-S@zy`_kc z=}ZWAiMCP>1+``~eHIF=raPh>AGNryAQB)#X{9X|;UaKS@)#+ovZtb!#*y@!x*|A8 zYdDi}aPxx}(M>P0167DhkgtUa?5_5^2ju_Yox1}`U3E+Lb@3C~%5MxpK8}&$NPNR_ z^qqlhGQ?_VAbt)-`U+J_TkEl(59_rz#-EcF*igIQuDYt1Rk!6BF6Wk!Tim`6a#%sh%}IW@fLk??XHd!yA$mYm zRN%8OtJUQ+n*DC6l6r}QAB`;s#Zl0O*ay@ix0xSJasiYK_Y1a7#^x!lvI6;>1s;*b3=Dj8K$wwzO7LBvphSslL`iUdT1k0gQ7S_~VrE{6o}X)of~lUN zp3(0;%-eu!wxvdRrg?g5F>nAmtPE0&tPG4mmKP99L)jqLXfQH^#hHL?Lq;YB0U#X( z#F_0ZVDT&<8w5m(85v$MBWN^B8Gup~*cn)WDh-T`4Hy?dOa|C}r^>C{6UDws8Cz*MEF6=x1|Ln<))~4BcF8ZIE?cZ14|NhhJ{qH9%zOzhz-kmt^ftCRn+3*Ndg&F+h+&?0e{cChj=#%C8lG~IT2 z=-_V6bNEHg3hkDL`@HMp+NPbp_@(he+cw7i>|auOBI_bV#0_*U!#v2du-X)H@})y&9>;STc;U+OyE*a=CNzr%^ubADo(w+?!n9T z_VeeydvT}tYYE%+y4YjAPfV9MCx&QQG2Ois&G-AQ=NIYl2St__w(V+)sF(S;@NY(D z{?QYg*_WqQ`+eE_Vwy<665Ea92Pz#z>?)IzD$BzqX7BX96TQ28>XqC#pWX+RsccSP z|1)Ii*K@g_Id7cESCF~ey)A%!52OA)%jznhY4zf3JBmvE8)mpxsNJ)T_o%mI-hNuu zP3qdyiq7-TgOhE!TAQSzn{+Sm%I>@~|3^~hy1CJd7X7u}u(m;JZ@#be{JE0lGTk;y zci+i-`EGx`t<|8Q^-S8vDXSt*dhQHz+!=BxeEYL2u{VXU->93Y_B%=N zX^7SxXT9A~yc$aSs%=*!dfldabFSDjTCZJroHy?1k!<~>!a~8n zfB$+c4a(|wRhjJhU?f!Z@*qh zXdOQfPeR!@>5}sI8?P;2wydn@egI>0^Wj$<$B*@`*#7*k`>Ow?ID){Hhs5ls>HrusqG)Zgb6VXr%$d^{O_xARV zh=}l>u$x~*v#hMFyu6%WRI9YK)W^rCq@+Yw*T~e=66gdi$@3>cR7sFu@PA?fgVBl) zF+g3M1s;*b3=Dj8K$wwzO7LBvphSslL`iUdT1k0gQ7S_~VrE{6o}X)of~lUNp3(0; z%-eu!wxvdRrg?g5F>nAmtPE0&tPG4mmKP99L)oCv)L>)=i!%Y)hKx)M0zf(nh%?(+ zz~WgzHVB9mGcvpY20DyJvy=fSHG!Rh1*p=%$k>2!0mM|0jjRhGCQSjdL4XNpE)!T~ zkfjBX1=VF}U;vW+^z=bf;vowm5YyAeF~q|E?)k#tLkbdXALe)(xw}ZHvRWS6`{D2Y z1pPx2Rb_wQ7n_^Ue_n3=P2m5@*v9>_++nfT*Bah^b?2$bhmPxQHd7~*<^_vwP~^^V zVU6}mYveDP{hRFz=ama~-$mcBeLGVb$@yGA=fq*2Bde!W$8DbeNta)go8GN#<*MuUKeCoHotJEKZe}3o z!uq0k$1b~HlQ&t?uLesjY~>4Ia`j~VK{Z!$HUjCj9ya~hLIDmPO@YYE#PM~$aP nC7nFHixO`}7g&F1NczJ%*SF_j%={D+P)K;X`njxgN@xNAdR7GQ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/light-overlay.png b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/light-overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..1399b770a351de6498bed8a6f84ccfccd2ef224b GIT binary patch literal 714 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}Ea{HEjtmSN z`?>!lvI6;>1s;*b3=Db-Ak27GMot-iXD}xjxD+42ta>$?tTXbOQolaV@QPi+bJi#m>or2g?o=N3OWj^U#S;x zIl_No>y9tcqT!4FFLx>z@KiXor!g;xLd&5}FWngTD|=p5!Tc_1gZAoQBc zi4}*LW*G9WPdKK$)1$5X=ft%U*MJ@pYcfXH0IJ8u6MvxV`?M z-kZaYJKi0%y3&2lq^dgm>k-McS#PCgZenY?`7Zt7+Gxi9B+WbL8;b*>df%Tl*)6u; z<(h+qIQu$I{|`L*AB5)3Wo=*Sb1h=E`+CW=pE+ggGuY;Qv)<7lY|$KS(JrkabLc}f zHnC>em0Tq!KZyA$|AEn2(wVnLTW-pHJ)0H#Pk4BNz_0XBt@zsy8?P+))Sm&05KmV> Jmvv4FO#s&9>_z|p literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/meta.json similarity index 55% rename from Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/meta.json rename to Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/meta.json index 72965ccfe2..f996b208da 100644 --- a/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise station at commit https://github.com/ParadiseSS13/Paradise/commit/e5e584804b4b0b373a6a69d23afb73fd3c094365, redrawn by Ubaser. vox state by Flareguy", + "copyright": "Taken from paradise station at commit https://github.com/ParadiseSS13/Paradise/commit/e5e584804b4b0b373a6a69d23afb73fd3c094365, redrawn by Ubaser. vox state by Flareguy, icon-flash and light-overlay states by Velken", "size": { "x": 32, "y": 32 @@ -11,19 +11,25 @@ "name": "icon" }, { - "name": "equipped-HELMET", + "name": "icon-flash" + }, + { + "name": "light-overlay" + }, + { + "name": "equipped-head", "directions": 4 }, { - "name": "equipped-HELMET-vox", + "name": "equipped-head-light", "directions": 4 }, { - "name": "inhand-left", + "name": "equipped-head-vox", "directions": 4 }, { - "name": "inhand-right", + "name": "equipped-head-light-vox", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/icon.png deleted file mode 100644 index 0c0dc62be7bef619f0ab1fa38960c09ec58c5eb6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1724 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}e5nzhX}-P; zT0k}j5QD&_;K@Lev%n*=7^q+l2s5%z3BJp~z?_pA5>XQ2>tmIipR1RclAn~SSCLx) z)@4&+1!U%?mLw`v zE(HYzo1&C7s~{IQsCFRFRw<*Tq`*pFzr4I$uiRKKzbIYb(9+UU-@r)U$VeBcLbtdw zuOzWTH?LS3VhGF}m(=3qqRfJl%=|nBkhzIT`K2YcN=hJ$-~i&zlw`O)1*JtfU|Uj> z^;2_Fb5rw5iuDck4E3?;E6GelxG=968XUlY(Fe%@wHaX5=2=jZYyu1^*9xF}p#B3o zG#PAfaY>3kk^+4r0|N_P10!7{OMSTifX=r`NwzA8(5=(PRlCPZql7HiJ{YF!7JC(`n{Yh3atgTyN>>2H$T5$gtOm1Eul@v zVjC7|eE7=8v@Yx8Cwrwd#x|!E!JRRDyVfnvkhl@^S7EJksKWZC4?dSi^=#j^?ZUs* ziRXPYl|^KYNhoj`Gn zRj*FEMe(ZkXja?9yA_1KT-af0c4Ys-1c5I%YMI>UikEHs8MQXtx9r=2YkkE&jZM|% zc?p%3l7IjH^-vL#aZ*XzDDmspuMfY@>Zr%8FP^wtkx5usxW}*FM(+5nTWrUUty7lj z{nRw2;}0`4^Ne|Q?f35KowheM4K=TiWe}B+*>ht3lNT>I-p~8CZ~5{qu3O$2tyfv; zn64G?W zUP)qwZeFo6#1NP{E~&-IMVSR9nfZANAafIw@=Hr>m6Sjh!2!gbDamkq3QCJ|z_z3$ z>!;?V=BDPA6zd!68R}!xSCW~AaA96CG&q0(qYsh+YBRv9&9k5+*#sC;t`$J{K>Y`F zXfoK|;*u17BnA3L1_l&2TID3>rQ0f1=%%EmC6?xtDA{F{<|gLZ=tGpCYK4fRnrNes#c~^vm#rd$Qj7C* zN?N>Ymoihv0VY@ZR-I@~JI z%|h56nwME(2QvUo7)cjW#8^2Nm6YcfWru(x0UClh<)LOkLK7)vLXtf=|?L zo`>wX%#G9R7#LWrJzX3_Dj46+^39NT7difaQ<7(&N_cPY?Pl5SeVIwgleV!7GbtG^ z)m@tTVx>e>mF|?fxmjN4Tdmq-iacMkzdbwMiDOEgL*WVyT~3vis=EsdE^!=HEK_}b zdQ;dXugjH--$ZS@#v7-v=ymTvM%w*7Gb`V3H{N{gGlQQ`1E&F_+5wgs48jRaD4c#V z#_7WEp6T~=KX@_4^4jV2I^kTs&w;)lA6q}{ZTdgc;?GUXhwpf1NnMSRo9OR9#iC#*J{i}b3@8*zPNnl>D}|Em-Y1Ae`8}hY0pK@&4-trYE19%zO(banP=nQ_Bhec z^?w)4srx@gdEaWwTeH$`H7?lweZzuxM>pM@;+eN4_^y`i&yt9Wy>S_{+G_0b)2hDx ztXWXDy3Tr{B~wD?&v>5NFTEdr{n0pbFGOXx{?Tf=@glt_Q&M(cnaI+4 zp_fz^yjv#_v~o(;zcPV}>V^BRa561@w@xo5Kkne!nB`SvkB$p6xUOxQ_tg4C_-YTg zbIOzB9LxRtGvkXgIe+Dd?0#ZY_vTz~@Vy8{%e_yJJ=s+~q3_IG_mUSGwWUj*1!RWY zO1wK!_d?|#Ulk$F6eGzOLQQhB4<_ifiOZc|J!y`*Y-@hHlAFn!- zws}WUsp!ewR$*;YxqF+BU%6MQ|L~ynLXnsv?cTp7CtW`sZH>Pwv-tcRkX%p z*6+O7Ty0>w_1|~5$%}XoPCIr(!rSWS9EIcG-@ZQn^>v{L*Xj?ynV)T5HdUZEuBgP% zy3Fib;S(MMww|MU+RtAYXp3;IxZ3hlSA8z~*~-ItdNVOnAWCxdc@U`h!QpTJzqkwW zKb02c^}hIJYxc8qW!@dFnN7JNGCQSiAFJ6G%KN;RvFiJ`B;R{Z*Dog~iZ?A5S8glx zn||ESzx&vN?kKh8bJoB3q_i!{*+61X`iG-oW?Rp2Wt1d@-ZKs2Vqsd*vv0+#r}OuR zKP{_|Vq(}^csR4DAoX2&MaoRSSjOO8bzjDdot}ps?Wr^SA?_|tY7c{)6BY> z_hyjC)t9xx3|1_fU2hit;|ln}>$u>+YUT6mkIMx4FCWD diff --git a/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/inhand-right.png deleted file mode 100644 index 5c7f8b902b1eb78c508e0a1fd822c019934ec926..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2097 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|_);T0(|mmy zw18|5AO?X;!IOa`XMsm#F;KxA5N2eb5`33|fjKQRB%&n3*T*V3KUXg?B|j-uuOhbq ztjngt3dqb&ElE_U$j!+swyLmI0;{kBvO&W7N(x{lCE2!05xxNm&iO^D3TAo+dIm~% zTnY*bHbp6ERzWUqQ0+jTtx`rwNr9EVetCJhUb(Seeo?xG?W zUP)qwZeFo6#1NP{E~&-IMVSR9nfZANAafIw@=Hr>m6Sjh!2!gbDamkq3QCJ|z_z3$ z>!;?V=BDPA6zd!68R}!xSCW~AaA96CG&q0(qYsh+YBRv9&9k5+*#sC;t`$J{K>Y`F zXfoK|;*u17BnA3L1_l&2TID3>rQ0f1=%%EmC6?xtDA{F{<|gLZ=tGpCYK4fRnrNes#c~^vm#rd$Qj7C* zN?N>Ymoihv0VY@ZR-I@~JI z%|h56nwME(2QvUo7)cjW#8^2Nm6YcfWru(x0UClh<)LOkLK7)vLXtf=|?L zo`>wX%#G9R7#LW*JY5_^Dj46+^39QU6*>N2x;`aXJu}0nMMPTMT#0i>jqIfrldigX zxUP_2)zYHGxK~Lr!_t&pFUFz8SwF_1h9l2XF@&>m!YY>^O+^{Aj+AoxUW!_|+Umy2 z$Lqg--;ghqzt@w0tuU+fJ&)IOD?g__-+TW|-HG>%F*6v16PSD&I1L!p4zQqb{>8J1 z6q%daYFV|ZrOdsxzV_$tjKChX&JU+|*KKz2lKy=B|H;(Emv0PuwAF(-YD$i6uotw@ z-u1`+?)_eqpmF)Z+H=9`C$sgFcrrGeI^ezB<I{vng#n-M~d*W%4$I_rQ~%9?<2wSR;0R zd+2?)-|z35KIsin+?_EsyL;15h3~D)4D2g%lFN@cYh2Sf8NJ~1mFS4bNJpiK4xa4+ zT;~?*OCDM6zvRixIqH^Qk3Z_1^{_X%*G1`s_^C?@yYKcj?Q6_6n{A^v&ra>>mHFpW zFO)vZJzTJpc@O*D9fi;NcgDYPeE2%};l~OAzV@e;wY9R>|M@6yTbbOGx4`SFS@`|J z%J=*BCmo+1Td47Ct<9&`p{-9Q9@V~dd||r1_;vH#`VV#&Sd){Jo96JbiC?(3EGgwk z|H+dKCc5nN*T)}{ke4^_%~W8Mkd+m^T%3K|CyMXyvWofEifwTg4V|6r_pO&?6dikB z9Xa7~J7497Eh27eliLno%-d4D)8^Up^|OxU%wBtvW!d|NgaS7!cmByfYRz7*67PdP zz25(=d8GE^Zq> zKQ7aqcl2h)Tzvg*>cuBn2A{sJXL@$w)8m+m{?gY>0lp?DmR-JdC&!9;qQ|UBT7C6~ zH$?OEzX_f*8Go`=5Nf)_iL-;r_N&Q{&9pgteOl=ZEWrZL#1tY5xCAWu^Pp9ZR0y z4>&Q$>-o!Kjc_ehFRu;ye_2oa+HR?P%(dsc{JiWhD~jJtjf*|c;N`a9%<46K2QR;O zwVS^^NRDr7s7v9G4-9wmzQ_ICu(%W}1zVP(ZNt))N zmCEzWzbJ;hzA;hRo%N}3Kv|^OYDJM*ceiF=KXx8VYRpq>9VYMhoOw8Q-u{$D2l+)cP10IKWGqy4JQV!% z?AkUf1mx?R2OCwblu>aoPHnbp*=Um1tQe3lt!xi8OuMx<1xQJh1o;L3#|{|I3hTWB zs^Ki~h%9Dc;5!1sj8nDwq`?|pBT9nv(@M${i&7Z^5;OBk^!!{y6ioFD^^AV+VcrH* zvn@5kGtJXei-7~kVP%kFWMyCkvb=y;8p;NRf(9cqSeyySHe_UC5CGCqK%Cjm0v68# zvO$2SoRQ%LFtA`WnxzatsR`^1EI^e8M#ct=3m~R~Y-C*kF=+~r4FXI+bD6*@gDfq8 zET}F+0|SukyH~mr$IbwS85p*Bx;Tbd_+LGLo3B|xfaSuX4DoFxOU?iN_qWa#6q)>O zV_{sw+{p~fzbLmet0()k&p2za-Xp*LV^2@>+fN)T7iD+RQAxlw!**&N>y#Ca(XVwK0@g(@Vf-z_u;dF{ X5w|y&A#2!EkY7Aq{an^LB{Ts5MXJ2| literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json index 87d6d0e669..a281023a51 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise station git at commit https://github.com/ParadiseSS13/Paradise/commit/e5e584804b4b0b373a6a69d23afb73fd3c094365, redrawn by Ubaser. Vox state made by Flareguy for SS14", + "copyright": "Taken from paradise station git at commit https://github.com/ParadiseSS13/Paradise/commit/e5e584804b4b0b373a6a69d23afb73fd3c094365, redrawn by Ubaser. Vox state made by Flareguy for SS14. Siren Icon made by Velen based of the helmet's colours", "size": { "x": 32, "y": 32 @@ -10,6 +10,9 @@ { "name": "icon" }, + { + "name": "icon-siren" + }, { "name": "equipped-OUTERCLOTHING", "directions": 4 From 3e179955cb8232b316c6e236cc01fd18f294ca11 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 13 Feb 2025 19:53:28 +0000 Subject: [PATCH 261/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 6a8f1020f4..502a6c1378 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Pyvik - changes: - - message: Added 2 new hairstyles. - type: Add - id: 7451 - time: '2024-09-28T06:07:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31010 - author: metalgearsloth changes: - message: Fix a lot of jankiness around airlocks. @@ -3885,3 +3878,12 @@ id: 7950 time: '2025-02-13T19:31:35.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34911 +- author: Velken + changes: + - message: Paramedic Void Suit now has flashlight and an ambulance siren. + type: Add + - message: Paramedic Void Suit is now restricted to Medical. + type: Tweak + id: 7951 + time: '2025-02-13T19:52:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34657 From fcc668863a57e82d4e1fb315d6c346a930bf8913 Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Thu, 13 Feb 2025 15:01:43 -0500 Subject: [PATCH 262/313] Filter prototypes checked by NoStaticPriceAndStackPrice test and skip spawning (#35136) * Filter NoStaticPriceAndStackPrice ents for StaticPriceComponent * Remove redundant TryComp * Use dependency shortcuts * hol' up * This filter is redundant * Don't need EntityManager now --- Content.IntegrationTests/Tests/CargoTest.cs | 40 +++++++-------------- 1 file changed, 12 insertions(+), 28 deletions(-) diff --git a/Content.IntegrationTests/Tests/CargoTest.cs b/Content.IntegrationTests/Tests/CargoTest.cs index 37fd3a80f9..489054c4bd 100644 --- a/Content.IntegrationTests/Tests/CargoTest.cs +++ b/Content.IntegrationTests/Tests/CargoTest.cs @@ -7,6 +7,7 @@ using Content.Server.Nutrition.Components; using Content.Server.Nutrition.EntitySystems; using Content.Shared.Cargo.Prototypes; using Content.Shared.IdentityManagement; +using Content.Shared.Prototypes; using Content.Shared.Stacks; using Content.Shared.Tag; using Content.Shared.Whitelist; @@ -104,51 +105,34 @@ public sealed class CargoTest await using var pair = await PoolManager.GetServerClient(); var server = pair.Server; - var testMap = await pair.CreateTestMap(); - - var entManager = server.ResolveDependency(); - var mapManager = server.ResolveDependency(); - var protoManager = server.ResolveDependency(); + var protoManager = server.ProtoMan; + var compFact = server.ResolveDependency(); await server.WaitAssertion(() => { - var mapId = testMap.MapId; - var grid = mapManager.CreateGridEntity(mapId); - var coord = new EntityCoordinates(grid.Owner, 0, 0); - var protoIds = protoManager.EnumeratePrototypes() .Where(p => !p.Abstract) .Where(p => !pair.IsTestPrototype(p)) - .Where(p => !p.Components.ContainsKey("MapGrid")) // Grids are not for sale. - .Select(p => p.ID) + .Where(p => p.Components.ContainsKey("StaticPrice")) .ToList(); foreach (var proto in protoIds) { - var ent = entManager.SpawnEntity(proto, coord); + // Sanity check + Assert.That(proto.TryGetComponent(out var staticPriceComp, compFact), Is.True); - if (entManager.TryGetComponent(ent, out var stackpricecomp) - && stackpricecomp.Price > 0) + if (proto.TryGetComponent(out var stackPriceComp, compFact) && stackPriceComp.Price > 0) { - if (entManager.TryGetComponent(ent, out var staticpricecomp)) - { - Assert.That(staticpricecomp.Price, Is.EqualTo(0), - $"The prototype {proto} has a StackPriceComponent and StaticPriceComponent whose values are not compatible with each other."); - } + Assert.That(staticPriceComp.Price, Is.EqualTo(0), + $"The prototype {proto} has a StackPriceComponent and StaticPriceComponent whose values are not compatible with each other."); } - if (entManager.HasComponent(ent)) + if (proto.HasComponent(compFact)) { - if (entManager.TryGetComponent(ent, out var staticpricecomp)) - { - Assert.That(staticpricecomp.Price, Is.EqualTo(0), - $"The prototype {proto} has a StackComponent and StaticPriceComponent whose values are not compatible with each other."); - } + Assert.That(staticPriceComp.Price, Is.EqualTo(0), + $"The prototype {proto} has a StackComponent and StaticPriceComponent whose values are not compatible with each other."); } - - entManager.DeleteEntity(ent); } - mapManager.DeleteMap(mapId); }); await pair.CleanReturnAsync(); From c0dd8edc09806d7830b9f6e418b2d4c4a83daa61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B6=D0=B5=D0=BA=D1=81=D0=BE=D0=BD=20=D0=9C=D0=B8?= =?UTF-8?q?=D1=81=D1=81=D0=B8=D1=81=D1=81=D0=B8=D0=BF=D0=BF=D0=B8?= Date: Thu, 13 Feb 2025 14:09:06 -0600 Subject: [PATCH 263/313] Move the soles of the feet on the backward facing part of the RD's vox hardsuit sprite to the left by 1 pixel (#35134) ok --- .../rd.rsi/equipped-OUTERCLOTHING-vox.png | Bin 2141 -> 2141 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING-vox.png index 629584e995bbf3358b8a12029788cf0a728402b1..d9c02bc41fc1b3a5e8c7808117d08355ed8b8eb0 100644 GIT binary patch delta 1909 zcmV-*2a5RJ5Zw@vNeaRM01m+VQESPi4O*Z$HkL4c}0=LebXMP_$e`OP}3`b6zgWn&pxdc)h+Jn48LHxn) zZ_b*v@ATVefiiRu%fF=oh^IIA-Dgfzj+pVwV>ZDEYacs)(#9M)W$0={d*170Qu4v* zGomO(zrWl*Y+ZiQf@BUjcm7YCQ-)4G?P$+?Azl#V0gr7g+0K8walkzFIE{slm}8=P}w&E?}2vwn;L-8M>$+vVA5gfv7_$jN7_xQ5KF^|QE)Y%cg?M3*2jJo`8GXOsD*3~KF{?Cl06Aso)YFdktP*_( z`^~_^jqw@^-s64Ws6*emhZ=as_0u$gf0ZEwEe+sLa6k-}ES*^o19Hm17Xa)%>K;0T z-Y2{;MEA~~giu4zBaJzro_4g?MBNT;43I1@nqhnQ_gNRq@&M@61KJ}**BgCxS}b^v z_vuIdWqE^dbSY1JVfj=0@2eVL^(3VPo+ zNE*#{f@%I38e~nlc;Bll?rvz4#Xou{xM$zDb-@{Jl#}vyOX?D3=+x6r@ZawQS?|;T zhPRVYRHE$j6+-y8T?PEngUPDZfA`uEw=w1tW$3;Ttwuct>PPWxC*~SYc>sA5?^>3V zcA@;68X&6!e^tQ6_y#8jcEZeNjWAxl;@e8GN3*y6j~wJ0CdbGgR2woJ}5)i8Ol%uz2x{7YH8 zqpOLKWAGvoJO}(=F=+soPgqPEz~vJbO;>@uX6JUR%;YMN1K9Z~#Uj%Htwx0n2S?^4 zN4jQ^(j0x0*a5~GA<6?#o}(w71Yrb@u3UBDkitsbIiR@YLAKa!c;+0?%mXk0d+n)% za~&nQu?0F90sbLGUUPsHe|E+CIi+rc!KFoK>{-Fk&`{9LGzc~T%Ja>A=WpHi-VJd5 z^!#UKdqtK$2+=2LUIs{q9G|{?`)_}-(jbp+kwU)(qC&t|o(o8>p%DN5Fi1` z;3G@cW(YC>raU*0Jg0#GSe;}?;MieTlRxNNqfE+D9yF6R3s>X;tP0%8vjlQBZ;enH z&;3vo&?kMv177fie|Od?asD1q3#Y#xPp+ml+2M-z&Thk_cG=-%SZ-M)-~lgq!W$Wo zMUx|ttRV<80AO>0)foi8c=wm&KPbPQz)1t3KESTr1n vv>J`Yix-=*v9TcKVs~Sq2sLgve`EduYTWGcZkAH000000NkvXXu0mjf&kBt- delta 1909 zcmV-*2a5RJ5Zw@vNeaUN01m?e$8V@)kyAxA_P!Y=!s>1ann{A~U2<1QAB=AIGiSb+ zxrcM_omtP(YWEAnocYb1`Td#SZ)VQSDVb}Gv60Oyf7>gJXGzV~0JU1pluB`3riBjK z3~kx;bj>|BuyXZRrFQ&V87C?PvKRvxleTVNR?jk<LKN z1v9%mf1}Q@%e=L|Vk(tN31hswuGb6?kC@@=m^t*}boP3H zxm-5YYSn!D(Gx-Zv%;XG2f%#B^)t$>zTDvHXKV;MSS*%K_?I{2M?sDo!*KTQ)@e;Gp1)&Twl2gG2>(wU7gAg2s`0l?m)?qQtJ z`-B&U=-%0r5bEf8q&WxF(~kCkvKI>vx9sr$sKzoGfdZVvFiv{oT zKK-b_EN}3QF6C*D-2ULTLR$lD+M2{18y-ekA&}(((5dH{_V&d(5NJH`-&21wf5O0t z({|*U{KzRwdC=eAZ`(`$c4*!zd0-MEo?)VnS6-uLQ?yPMi%@sHjK?%DTkLvThL<)pmblDb40I`y;@{P)L$toP}E z!`n$HDpB_N3L*SEt^)q(!DQ9ye|znS+Zc0+GIU>vcB38x^`m&U6LX!XJb*ljcP-0F zyHNfu4UpA=zbfEje1nq%J7H$by5luO`n^QS5&IFONq1;ys6NjWAxl;@e8GN3*y6xt!!0CdbGgR2woJ}5)i8Ol%u!!zfARvv%>*lSN6 znCmFXjV;i@2=EUf@|pvrf3Pby&M9>p3@$A?W6uf(2M2?0ra`a)P@Zq@JAdo8_ilje zr{_N_+bgp4L5My{^D;m>d&03Ft5cp<+*DVxa!Te-B6wWI{G%MAlG* zg+Sc^S<1I^6Wz=Lm1_1hX4sk z1|M0nwnC5rFy*;Q@|*?&V0Drmfn$eVP5z*7jWQ`qdC*GMEL@QXuqtpT&l1Slyfs2~ zEcZiEK%evt4|u^7f8JTA#QA$bJ)Hh}Jh__IWQQx-JG%{!+GU56VYy|IfCs$b32$UT z7EO*ovW6hY0D#Q}R%a9d41sQD}13_+9u^hL(ZD_58D>-RxgFN`x4j6!M8t+A^jka@+6+lq zfDG~kWQ+BJC=X~@+jDzct_uWh`?f>2?4#4iP%PkK`8y+|!vPs%ydc;BSQe)5ZQS2* zdzKyT$Je~J%lvfgR53&E;qbu861;%;D;$sw8DqR4b68-V2(jd_1DiVKV(HS~(<}{$ zo?eIZ`Wyy~EN6Zk%V`N_ Date: Thu, 13 Feb 2025 15:12:56 -0500 Subject: [PATCH 264/313] Fix fax spamming (#35135) * Fix fax spamming * Also prevent copy spam --- Content.Server/Fax/FaxSystem.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Content.Server/Fax/FaxSystem.cs b/Content.Server/Fax/FaxSystem.cs index b73c101e3f..180689f892 100644 --- a/Content.Server/Fax/FaxSystem.cs +++ b/Content.Server/Fax/FaxSystem.cs @@ -451,6 +451,9 @@ public sealed class FaxSystem : EntitySystem if (!Resolve(uid, ref component)) return; + if (component.SendTimeoutRemaining > 0) + return; + var sendEntity = component.PaperSlot.Item; if (sendEntity == null) return; @@ -495,6 +498,9 @@ public sealed class FaxSystem : EntitySystem if (!Resolve(uid, ref component)) return; + if (component.SendTimeoutRemaining > 0) + return; + var sendEntity = component.PaperSlot.Item; if (sendEntity == null) return; From 35aa544ae483cf2cc55e00cc5501599db29c8046 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 13 Feb 2025 20:14:04 +0000 Subject: [PATCH 265/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 502a6c1378..021b37f5b5 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Fix a lot of jankiness around airlocks. - type: Fix - id: 7452 - time: '2024-09-28T09:02:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32483 - author: ElectroJr changes: - message: Fixed a store currency duplication bug/exploit. @@ -3887,3 +3880,10 @@ id: 7951 time: '2025-02-13T19:52:21.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34657 +- author: themias + changes: + - message: Fixed being able to fax multiple times in quick succession + type: Fix + id: 7952 + time: '2025-02-13T20:12:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35135 From 7056c6051ba59fe4ffa57433fd8b6fae8c29308f Mon Sep 17 00:00:00 2001 From: MossyGreySlope Date: Fri, 14 Feb 2025 09:31:38 +1300 Subject: [PATCH 266/313] Fix dev server crashes caused by putting pills in drinks, depositing spesos, making burgers (#33431) * combine TrySpike into OnInteractUsing * mark spike drink event as handled * mark speso insertion event as handled * mark food sequence event as handled --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Content.Server/Nutrition/EntitySystems/FoodSequenceSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Nutrition/EntitySystems/FoodSequenceSystem.cs b/Content.Server/Nutrition/EntitySystems/FoodSequenceSystem.cs index ae8215ac6a..d5b4a0e2b3 100644 --- a/Content.Server/Nutrition/EntitySystems/FoodSequenceSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/FoodSequenceSystem.cs @@ -39,7 +39,7 @@ public sealed class FoodSequenceSystem : SharedFoodSequenceSystem private void OnInteractUsing(Entity ent, ref InteractUsingEvent args) { if (TryComp(args.Used, out var sequenceElement)) - TryAddFoodElement(ent, (args.Used, sequenceElement), args.User); + args.Handled = TryAddFoodElement(ent, (args.Used, sequenceElement), args.User); } private void OnIngredientAdded(Entity ent, ref FoodSequenceIngredientAddedEvent args) From 562a41c00e43cd30c46dddf805bc4e4268f086a5 Mon Sep 17 00:00:00 2001 From: nikthechampiongr <32041239+nikthechampiongr@users.noreply.github.com> Date: Thu, 13 Feb 2025 14:03:55 -0800 Subject: [PATCH 267/313] Vote kicks now ban the target's ip (#35131) * Make vote kicks ban the target's ip address * Make it stop crashing my game --- .../Voting/Managers/VoteManager.DefaultVotes.cs | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs b/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs index 187295a073..89f4acdef1 100644 --- a/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs +++ b/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs @@ -1,4 +1,6 @@ using System.Linq; +using System.Net; +using System.Net.Sockets; using Content.Server.Administration; using Content.Server.Administration.Managers; using Content.Server.Discord.WebhookMessages; @@ -48,6 +50,8 @@ namespace Content.Server.Voting.Managers else _adminLogger.Add(LogType.Vote, LogImpact.Medium, $"Initiated a {voteType.ToString()} vote"); + _gameTicker = _entityManager.EntitySysManager.GetEntitySystem(); + bool timeoutVote = true; switch (voteType) @@ -68,7 +72,6 @@ namespace Content.Server.Voting.Managers default: throw new ArgumentOutOfRangeException(nameof(voteType), voteType, null); } - _gameTicker = _entityManager.EntitySysManager.GetEntitySystem(); _gameTicker.UpdateInfoText(); if (timeoutVote) TimeoutStandardVote(voteType); @@ -368,6 +371,15 @@ namespace Content.Server.Voting.Managers } var targetUid = located.UserId; var targetHWid = located.LastHWId; + (IPAddress, int)? targetIP = null; + + if (located.LastAddress is not null) + { + targetIP = located.LastAddress.AddressFamily is AddressFamily.InterNetwork + ? (located.LastAddress, 32) // People with ipv4 addresses get a /32 address so we ban that + : (located.LastAddress, 64); // This can only be an ipv6 address. People with ipv6 address should get /64 addresses so we ban that. + } + if (!_playerManager.TryGetSessionById(located.UserId, out ICommonSession? targetSession)) { _logManager.GetSawmill("admin.votekick") @@ -532,7 +544,7 @@ namespace Content.Server.Voting.Managers uint minutes = (uint)_cfg.GetCVar(CCVars.VotekickBanDuration); - _bans.CreateServerBan(targetUid, target, null, null, targetHWid, minutes, severity, reason); + _bans.CreateServerBan(targetUid, target, null, targetIP, targetHWid, minutes, severity, reason); } } else From dcfcd8916c248d29361c67f67f48108e1c957d43 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 13 Feb 2025 22:05:03 +0000 Subject: [PATCH 268/313] Automatic changelog update --- Resources/Changelog/Admin.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 6b380572b0..180d6c03ae 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -752,5 +752,12 @@ Entries: id: 93 time: '2025-02-06T05:10:21.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33426 +- author: nikthechampiongr + changes: + - message: Vote kicks now also ban the ip of the person that gets votekicked. + type: Tweak + id: 94 + time: '2025-02-13T22:03:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35131 Name: Admin Order: 1 From cdf506925482561493011ca67732d38dcd15e370 Mon Sep 17 00:00:00 2001 From: nikthechampiongr <32041239+nikthechampiongr@users.noreply.github.com> Date: Thu, 13 Feb 2025 14:03:55 -0800 Subject: [PATCH 269/313] Vote kicks now ban the target's ip (#35131) * Make vote kicks ban the target's ip address * Make it stop crashing my game --- .../Voting/Managers/VoteManager.DefaultVotes.cs | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs b/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs index 187295a073..89f4acdef1 100644 --- a/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs +++ b/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs @@ -1,4 +1,6 @@ using System.Linq; +using System.Net; +using System.Net.Sockets; using Content.Server.Administration; using Content.Server.Administration.Managers; using Content.Server.Discord.WebhookMessages; @@ -48,6 +50,8 @@ namespace Content.Server.Voting.Managers else _adminLogger.Add(LogType.Vote, LogImpact.Medium, $"Initiated a {voteType.ToString()} vote"); + _gameTicker = _entityManager.EntitySysManager.GetEntitySystem(); + bool timeoutVote = true; switch (voteType) @@ -68,7 +72,6 @@ namespace Content.Server.Voting.Managers default: throw new ArgumentOutOfRangeException(nameof(voteType), voteType, null); } - _gameTicker = _entityManager.EntitySysManager.GetEntitySystem(); _gameTicker.UpdateInfoText(); if (timeoutVote) TimeoutStandardVote(voteType); @@ -368,6 +371,15 @@ namespace Content.Server.Voting.Managers } var targetUid = located.UserId; var targetHWid = located.LastHWId; + (IPAddress, int)? targetIP = null; + + if (located.LastAddress is not null) + { + targetIP = located.LastAddress.AddressFamily is AddressFamily.InterNetwork + ? (located.LastAddress, 32) // People with ipv4 addresses get a /32 address so we ban that + : (located.LastAddress, 64); // This can only be an ipv6 address. People with ipv6 address should get /64 addresses so we ban that. + } + if (!_playerManager.TryGetSessionById(located.UserId, out ICommonSession? targetSession)) { _logManager.GetSawmill("admin.votekick") @@ -532,7 +544,7 @@ namespace Content.Server.Voting.Managers uint minutes = (uint)_cfg.GetCVar(CCVars.VotekickBanDuration); - _bans.CreateServerBan(targetUid, target, null, null, targetHWid, minutes, severity, reason); + _bans.CreateServerBan(targetUid, target, null, targetIP, targetHWid, minutes, severity, reason); } } else From 12105234fec23ca5c0bb3ca6263bc7cd3ef2c504 Mon Sep 17 00:00:00 2001 From: Centronias Date: Thu, 13 Feb 2025 14:35:59 -0800 Subject: [PATCH 270/313] High Heel Boots do the Clicky Clacky (#35083) * click clack * fix quote marks Co-authored-by: Hannah Giovanna Dawson --------- Co-authored-by: Errant <35878406+Errant-4@users.noreply.github.com> Co-authored-by: Hannah Giovanna Dawson --- .../Audio/Effects/Footsteps/attributions.yml | 14 ++++++++++++-- .../Audio/Effects/Footsteps/heelsclack1.ogg | Bin 0 -> 9232 bytes .../Audio/Effects/Footsteps/heelsclack2.ogg | Bin 0 -> 8247 bytes .../Audio/Effects/Footsteps/heelsclack3.ogg | Bin 0 -> 8410 bytes .../Audio/Effects/Footsteps/heelsclack4.ogg | Bin 0 -> 8530 bytes .../Audio/Effects/Footsteps/heelsclack5.ogg | Bin 0 -> 8998 bytes .../Prototypes/Entities/Clothing/Shoes/boots.yml | 5 +++++ .../Prototypes/SoundCollections/footsteps.yml | 13 +++++++++++-- 8 files changed, 28 insertions(+), 4 deletions(-) create mode 100644 Resources/Audio/Effects/Footsteps/heelsclack1.ogg create mode 100644 Resources/Audio/Effects/Footsteps/heelsclack2.ogg create mode 100644 Resources/Audio/Effects/Footsteps/heelsclack3.ogg create mode 100644 Resources/Audio/Effects/Footsteps/heelsclack4.ogg create mode 100644 Resources/Audio/Effects/Footsteps/heelsclack5.ogg diff --git a/Resources/Audio/Effects/Footsteps/attributions.yml b/Resources/Audio/Effects/Footsteps/attributions.yml index 7a56beec38..7af75169b2 100644 --- a/Resources/Audio/Effects/Footsteps/attributions.yml +++ b/Resources/Audio/Effects/Footsteps/attributions.yml @@ -12,7 +12,7 @@ license: "CC-BY-SA-4.0" copyright: "Made by JustInvoke freesound.org" source: "https://freesound.org/people/JustInvoke/sounds/446100/" - + - files: - jesterstep1.ogg - jesterstep2.ogg @@ -63,7 +63,7 @@ license: "CC-BY-SA-3.0" copyright: "Taken from https://github.com/tgstation/tgstation" source: "https://github.com/tgstation/tgstation/blob/34d5ab2e46e3fb4dd9d7475f587d33441df9651c/sound/effects" - + - files: - spurs1.ogg - spurs2.ogg @@ -78,3 +78,13 @@ license: "CC-BY-SA-4.0" copyright: "Taken from IENBA freesound.org and modified by https://github.com/MilenVolf. borgwalk2 clipped my metalgearsloth." source: "https://freesound.org/people/IENBA/sounds/697379/" + +- files: + - heelsclack1.ogg + - heelsclack2.ogg + - heelsclack3.ogg + - heelsclack4.ogg + - heelsclack5.ogg + license: "CC0-1.0" + copyright: "Taken from NachtmahrTV on freesound.org, clipped by Centronias" + source: "https://freesound.org/people/NachtmahrTV/sounds/571801/" diff --git a/Resources/Audio/Effects/Footsteps/heelsclack1.ogg b/Resources/Audio/Effects/Footsteps/heelsclack1.ogg new file mode 100644 index 0000000000000000000000000000000000000000..903f4c19ea34ae237303b30e0d5e8f0d7dcf6cde GIT binary patch literal 9232 zcmaia2Ut_x((aD*A{_)lnzSGYp$7%2Dxpar^bVl}LJ3V!5TpsxgwT5l9TbqRfYN)D zB1J$1LF_d76ump}opZi>?tT7$KP&5*y=JeOH8bz5Ju8X6v$G*^2Kf8(G(07mA>3XN zZiv4p&fe9BI0VtC{`-*t$O+K`(I?LQ_eGpZu zIA>mWS9{|V@w{5RQj$`VlJb%=ydp@nqo0GThcmCHhrcV%(*uk4@P!iPs(>GLeO+Bm zJtIRU7hhj5A4LfXCmb5>gB$WgGcGpQa6t= zs37H8Gco{lvdT@qNERfqvwy%B#SV7ST(|+gvK$<>XnDbXYN-L||?)r?u-{<_@QJvVq3$8_toWqepjglz-0kkv&2Z}m1 zix&t5%>-^dV$rH&8Ls0RofOdjE@r?iJ1MPcXrzk*FFz|2fApNc-<*H2Sw^HqOR!l> zq{V!s)nTL^d(_|UNASuav7MOC3jqo)!qe8FMf~TB-olGWBBH9#0FFeL@KPo7Lz9cO zN}VvZuGvj4RZZC8da>bp+LK2>fRGYb0~EMsmHt1?$t(^1zc&?^0Z~8&^ku&{SHHJ_ zCQ_guCq{AN;Q;`QsR~l87bkPWN2cHBD%fuLY7F9aM)!2+{}lvc*g-hKxO%<020?Ei z#iwzyCO%4YKDu+DD~KNXpRceJynu%A`vSg3W{Yfq*SLp)dW89pzs}U z)cN}-@y8J<^W*QM4aR# z-aZc2pA)X9Ms*tCe`St0OaCLT!AAnx^#Zz6Vx!+>^mk<@nKcb$bPZXpCRzQa+0ce^ zR@1WRX%u?KAN{%sZP6TT*7SG6oTkmnoZmk(hnOP#@Pzf7$)x|uoC1-Aw+aatwUPzQ zl7#}(oMW;oGV``8im3l9b6jG}GGfaf#J+!!AQF@28k1GoTI4=dyVLf+wtr{N4V(bj zz|7Ia3H&2-x?o)DU^dl@>F%D|s5A*W)K~M|KLY>&T}iasC;Ny2QhWv}JA)KQ87ckG z83S@>WOS!xK*y#600#hE1cMyG5Q|Gv^H4ISgl!6t6~f62d)On&7^G?8XZd}TRE3pV zlHuL7yQ@eMRt=r-ctQCD-m@=DEwwfjD8X%y6fgjQP}l&hhaESjHCUiA2BXTw55R>9 zDN|Zd@ica6s9-6R!+K8fl-6Jgo?SaOw}i zO|k~QC<7GQ%m`)Xk2X6*nal=jgIq)1*Q_X16YBLo7L^vf=8Lj2LBBpknX!df%tfvp z1h26ZCC|DTJ@o=qOHwir_Fn$3CmSn`JqE}_~nzK`Y$_e5>Ng33{ZZ{c&l|2&$vegA*L<+r4znP9cHdoCU75vL?H-YNy`gQg`)^ zngJ@GaU9d4B0MEBKvC}tO6b%Ogc25Qgt+kt2;|}^)teP1Oomz&ji4w(37a+o z*2H4r0h{FlXOu8mXhHi}46)*USr_|wK~aN5Hp>T5Gy4h|4>BCE&u6mkeEFB< z_89TLS^FBIa?!ffWKj9$f_WSqKV=V!N=C+kGc4R&OVcnQBMbSkadW}PUH0IWc{Ndo zHu#3{No?IW26vrM5f*h^R( z82Ab7U|a|+4xn$@edyFgIUL4RMW7M45TejX285O%0j!p(xxjkPeFAUF1up1xAF-vi zr-eoF`Wi`zGDheige$^8kJk8sP$2Y=840Qb zO{&1rg1+lDCNl8mA9+D&xXb!8fUxQ_S4Y(Jn!45U5oYbHW#>Q;H*RLRAwY)PXe$6L zkx>9oNH{g+gxRS?WgJh82;~Lc7zc}Dv5$ql&rzp@_GW-JPANOF^Z;M7#QGx+WPrDQ zAOrrMi`eD(B>bl^`42_)|1qKhtg{%6!MAlEJ16C7Reqi6j3$?i}MCXl%sxO6vhXydGXTqEdzaEF++e<(X^P6MoZ zcmbg|pLj>5mNdMaTs?_3A6RUwop_sgFhGK_C?KMRPXhs>iii=u2rvw%V-ZRJ9%E2^ ze+n%SQ14Hl!{1Unffi*UI0n4{f=uLu5(Fu#(*o`Uj1f#=DTfCopN`>~KpiLL9Ue(U zBWF6cr!QT_+Fooz5lJf*?dmh`aE`ErH@8es`I*mn64b1`t3fEdY4WV|Jjk z1H8RC5oy{HNjL`k%Z$ia_>DUBO^#mn89a=@Vu*Cx%CV0#(9d;1z`CpP#t4x|_or~x zjs7FxF_M=OkYwPK4pV`!un&NWB1oY?!IQ2Dm?bIcJ0>Y=TI&7?pD9-ofFWXl_R#}V zS|;Youp)a!z|_)qfFhJOKK|)Lnk}g=GOHy&-Uwb&z6ZS!mZZ>dW{=x%&+50lpi4jp-)fSU3#Z%;%S?x#w64~@q);Uejy(;7#9Buu}>Yh z+rPj3lG?0o-`r_KN8m1EhT%PZZ1$}x9zv%Dqa$>`5`xb13~ zmejS1h#PgJLm>zf+*Ui!}Y^bNMVQn_8&kA$Bco36dVX8Vtvu$`$t5KNe_$_xy z{e|qb3u{uCZ*ET(8&b4&2;Sa1d6qud=M~yI*WbB#?jAnZ_>Em+TesJcBl*0$)ozES zuRqsLq4{E&EPTo7i_B_P52m?YP=>#vwEXO9^H<0oWw5$#YHDskx?x=?jl%3Z!9u-( zf)5l?8Z_<2Db3W7kzVC{p-TV+r@1`@CVrj(OuH6p~6u9zaz~$wET_=Q=wUIJzD86|r+k`5P^t1f<`I0UA@BCub zwu)ZtQwO}CUXo$-NLk4!?yos{HnrM>GBWVwrO`sCE@?E-Nrdc)w0mS8U`eH^X<37# z8C{2H4%-X`!Hj0-3gJ?LePZmGhWs8pD9H24-d0cOc2E3rweYfBG4K)gu#<_FEAv(D zVn>Y@nM>D(`XB5k&epSQ%W*)NMB>%vUmq79nLPSMdk*s<8=1k>9hKK0fqG>_<$G=sh-~Rah${{NrI#@mNj-{UkbFZ*kMtiASr0^pe{#Cc`;pa$p86@U{8afM0X1W^q#Q zTzvbxuwcW(O%su&Mk?O@aIBxr-{ooixL(|A z`Ec!}31L{@kmE+H$#n4N7V?*w_)t-wf+xQI0Sej_w>GYJ##3l0^}N2;g%o@ zb)C~j5m*`;j2=JG|9!<*&N<0j#3#h_p1$FCf2z^!4>`{1xi{|BsK@;77l6tQhFGdb#E;`|~(vd0_6^3yhTu!@E&*WB|49t?M6l^zN>j4hzRcYFZr??7KcU?7X1COjRw zO_X@k8MJDv-B7R9*=f#^8O~%vhrR2vdy(_bj`2M#DkuJz)w$9?Ra@}Qzpj0BKnFuo z=vxMo3DNYl$A2x>7A06W<(D^Lj=b6Bk@E>ti&Tyrtm-jK<9TeCO8eoHb#FKPer0sc zMzNRAjOTB){B*h&1CtW|vR)SBOZR;7@`rxkk3o6CiYu42dsCWS=`Nr9^768EF3i$l z5}h6QmY9xh*57=7Ph#`s_d?KT_f${z>^QhUSepGKQvKbR0*{WRbjkMf4R102-fanv zYfY+LH9xCm|3_pO*i>nuNfV3YNuHb2on3gBUj$>NC2_v@?TuBh?{W`SR}og_(%qNp zk>S`Mn`j_z|6S#_=PJ7R@VCu0q=-=&PcrO%Oa;#pJg2fiQikGD6p7THV`m^2ADyj~ zVJw0qnyp`P3e_eBI^;@RD$Vp&=(+Rq)EwGBEeJ_!>BiO2xu$3W859vs) z;jq^(J8#SNs@(;({%U^;pN91tXAA>lbu&I&X{3`}Z-L)zlm06HF@2LsYnCpJ*TLXY zO8LOdx1wPae3qG=mZjyvBspYqT(*uO25DOPr92}(yw=Q&+&FBcyDXLa8HV%*nTW~a z(Gv)_yiEPM?Cq#1y8064`#fo9T`KRcB*qF5=z;0?_Yw)#E7^Z?H{bpm{Sxi}+Jd7! z(eI}jqUy2%Hbk=e_GEYNX7R#) zY4ra4EOgt-KrMITlOOgeO%CSc_mr*6*>NL9wQER=65pfO6zeQmdxc*gRj^$%5!lhBHKIvVfZ^pfa!5qijpa+RGE5?{jDP>B98xw9U=C!lU(Y>g`BOCR|LDdSrDa64RIQH8zDc&Z-+_dg=1{Ga_ss+5z~hL(k-=+ z)P&f5f?1yIphw;H&YLpMZ{q2WzYOh(-(fbJonyR0<|1%*`)0KsR{)haHC{*9;GyHC zU{khZJXy9oE)*_3dCh2oyi`_&zM7Y;?+Ej?th>}IiS2$#U{h6&W)>Z1;O$5A6>I}%MQ6xz@DrS`U&ZUX z!&)#}jsDO5A6>~eP4V~;InW)hcp>&_WoH)Q6Ou4K(ZEJZ=$wUgd6ruSiLTZk_Qake z6V==`R1hKqMBfIJ|IksE+Y>?yxKEHAS{0Ru7gYW#iA_z{1X>^Z9~{aBKUoeEfl8SF zc45DESs;OSIC_eWzNpzDU^_Ie__3_-6^AU1SHv~s}28TzNsbbB8jw$`m^Zxb#bK2H<w(D2OW-1+f} z(A)a`Kl}uKbSTG7RdY{GO#=KF^mO~Or(kK!{0@gMC$K^s5CAucuZyAZeFB|V)Ky5xreau^Y^Jv)Q@g`#_ z6Xd&mbj!Y0;No#SK|ggqwqtb5(dn6q-p>z%>}R|-XC08tJ`iLT86=`PvlHK>H)Mc` zkQR6s_0`^5zEmPS0x{w5ob#f&Amklq?7XGK&a&%Yv>ItpB$u)K*Re|Yg-AZ<~ z`ka>fdrSK(4Xk&nwx|%=Z?@t+uqF*vw}Sic#XaFx>rm93{VTCEfApd6Fn__%x6P)U z3I-HFi0nw1k{pYBoM}FV>Ic$>P?&fpLhtIhL03~sNIuVn=VP-?BL{B2LEqNqtCB;P zH%8bVj5SX@cw2|#8T*)O7eg1&u`0Sl-;u*Mu35G4^bBM4x35nd#~0Sp48{%@stS?R8jo_hdMatTIu`L4d%-o<2+?6j# z6{gqU{|d!qi~Q8GkM{)>e%b~o>^A6orqZ}mQ#80@Y`?xw-wds5>y#AKHzSdMwwC+> zHaaw1|CmuxbTCZo=}RRxn?|LTkyln%Djvyddd+qW>bYf&Q3TGvK_*TiE~@65UNiPs zPFH=@eJC_aqj-UbrTb34ux>{@KdgK|<+E*Yqc<;~V9U}CoA0U#KkAl4L`3+|`tP_& zkG<4dwd1mBHw&MWYZV3=+w=R66b%~OrelBOsDY!hwmoz8ayci}nYdKrIK4}0bb#@- zw{-&{`q0V!`Cq?+nrv?Dw&$5;jLGc}Kitxs)+~|}Xr^yFr%UOvVLE*)>q^aC_zWL* zN5ZMcEe8_Ki^BBbS~(9&u^DB0JAm|5z|{w-z((E`Q>e8GW9aQSk!#0cB~iTG@&q}Z zW{)X7*M%^2*kn{lYk=Q{!BDGDJ*y?CV>(~E8CADER8Xj>VRpQ+f%w;94swhK83>uU zX|77uGYZ8uz8d&2TUw)S_OmH0!0)dsnbBpAo><*$A;)X|ukZYcj(eJI4a3DKXBA>2 zE?pTH56<+SRH!=Fv8cR^OzX~PxqF4mQ+$mXU>?7`YG5N+vIFIj2a3q~;-UN;OGW#Nq?T)BT;ERJB{H9*d|E#WZ1HxTCPobjKo%2a~HLm3%Ze+ zG%9SoZTDBW7ghbcrKpXQ1W;I!_Ii8<2tijn&l+C6k8W*yEM;XrFq zf}?e*|Fdgk2nV))>9q-E*UKSf2GCR|_TiqX6~ehF`i>2i2T(&8?}}3W=4Z!D*GVzo z1=RrjL8FkO2qU9Gh0E3SZ%b z+w-u;SKf7KW0six0=yf&Vd)r!&y%tmG+q;3_Jd4j)9z9$2IY_5f`2Or?Ii(}(OmsZ zE-K`o+mCWDzc5Yh5q;sv2JvF<_lW6~NFUiq9>rbG9x7kie<3tSVgPnxW8 z)guHw7UHOuf22tLJMKomg34Dq*!sxs@x`s0^ylAL9x^_>&$B7Gz1V99i+h8LUYdd~ z>bIju#3kB-C@LHz=o|(JLfn~3+qFHxq);~dLXY-0IW;@7drN!Io|8!LjKG6t6a}b5 z``d{i;&!r3&nf~!8&=#Xx=cd`ac`kWMWEW9_9uPQgRsH-TZjx-WT zhi^}zwsY(|7e@ zRY_@X<-&mxFBSr=G_zT6*K=4R_R+lsMnYpbVh|wa4DbeR*_T$30VrtqcW8$yuNWUf1l=m)a#7yyw8;(YLy2f4firA**ryiH7cSCc0s^xBIa{Y*YrXE372RPeRBGF}k z$N``O{p(A)CqozMCInNN5t<49aFJIVoYOwUWhfEh7;_C+(i*;c1w#7URCvRUy*uue z)RCa9Htw=Q?A7&b%fx}pn{1rLaSwm#E!8(AUS(5fUSeyEpm^#7>}e-_CIkE>R^>Rq JmRXyh`9F<{D53xW literal 0 HcmV?d00001 diff --git a/Resources/Audio/Effects/Footsteps/heelsclack2.ogg b/Resources/Audio/Effects/Footsteps/heelsclack2.ogg new file mode 100644 index 0000000000000000000000000000000000000000..c81c36100f54a3ee5975a2a7be1b1d2754fcd06c GIT binary patch literal 8247 zcmaiX2{@Er`~NfcoorE~#ug)DY#Bw_l3~O!#E>jQjD4#_k)`b0khPE@ld)y2C6RsK zi6RPxlq~h8{GZ|bzVG+{{(jf{d#>}G>pbT^=UzYedG2$`#l;Mu1O9rv%nk;%kYnDE zV~{{EUk6t|+7v{$^sgn?A^U?m$R*m&e?7FFG>XQ@gmRwyd;j0lMSs9Z8Khr!^}crM zlCKNQ-POTjpFPX~rl_E(pm172877UvI|Vqpdb+^$JOf>Qy*xeep8jwe-}B(Ba|w;s zGd4HVxaRNg?WZm;@9c}m`*{U;I-TbRdwIL#<&Etfulak}U-LD$kl!cz$*Y`3 zs3{=iA&dulz_oQOAOH)<5n%*t3mr_t0ss#HT$O-xr8*nHNyL2Vn;FE5v{9QvbOtfH zO~^40(f-d4rtBmD01QB=G;6}+MFY2fq>GSLf^Qzu)mW_<#vEfhhh%NpI^pP9R9!^y z?1xLTa9S|}pp(yE6piG^&^m|vqESL%cMs~@DO#N4%O>+A?=G8SCoJ4Z@l#={vHGVc zj}z2COIHtSv&&Tvql^$^7LH{vm~4an`jJaHe|4<;cECVgw3&pRc(hq)?C-;iGJHW+ z2WG*5P|!?3Kbha4lE0@C+BYO|X+zeOPi06+&&(W+1)l(0%Ru}@V8BFRh*d@;t}eu? zE)q8xX}c3?FBJ7x`w=p`Lu>n{!yrJOI5K?!ULba)U>;dO9}!hb2RPAO0%J`PgQq+; zC~|fybIq=~_O!;Mr%JY`ierBX2oMIEHb9X6qrOce?tcb>7IqL$2xyxRv!Vf(Gx`O7B|NeyS;{`NCG}k%ZEtEwm$$sB0p&(nKd=?#!14-b5`}rSW zS%X>M`;c5&AM;B1vqxS;E^s&V1%Ve{&)8+hXFtY&pwL(+3iF50L6tVF*4oK&w3SmWNBS#YrpzRMJtaE2LeQ~ ztO|(YcQ?`cGi}D{}xaX(IM> zlIReJ=*S5-)@D5j@IN!hhrc5k+LbI}SS5iTmhIb6zVuyrh)>T{8EqzDJ0uV=B8WFr zwH;Bxk6`g*f%vH!Jgzpxs^+hRIY^t?iGaUl4lPB*kO>PHQyBi8IeF3v^J)p=1}PF& zDJO2GyF_P|WIp^*XS&AeSv#-*-FFz+5VL|`o0oi z12ad@SK@D((~N-XfZ0?fi~fFKqs9>EP=CF{e-8ivG$(Nw?w=#37`ZWw${0otYp(I% zGX|uNDWgY}LC2;6fG_}vgF%kqiSbR+_SCq{f>@Mb%ttcizZQxp=27B6a*FvUX-R3+ zr65~5zRzK#1$2$V<0Vfgz&KlqYz#iCv4F=O17HdOp@>ezYa!o$gRVT?egtbSu@fmp zN*y+U%cTn`!6l1$9T##Q4;yq95`_$7atnDKqbcAffEj$*^9PdzAm{l3z<~q929G3S z`r(U7m~O;JCId6%9RAobcNkcxp0e<`hA9^B9xldWe)EwKxhaEG=P79*3HIisPGcJ&u~d%%W&D&m_N^dxtOh?Vc-t~PU{(oj1%8f$)PRZf5W8^?+l;?hq51b&sbVK; zR80M`rdYg{Io2u=Z?%K991k%Bsb=UY0W7u#JGJG3O%HkRkF~YLPwil>1aIReBHwR^ zyceQzo)`-NsrKV|``Un6Y1b@Qw}L0+ENL>igk0l6E~DTImdOR=?kX2@S!s7w`O`A@ z6_8r?gj^*{Cd)ppD*Z*4U8#9OZlH8mRb-bvU8z}TZINAM|3D6SLF>V7&peNUbM4fY7kP*L^-;^dw!V8U$bxUE(+6k!geZ^I$&13e6ErqJGAxHYm{q zt|Xr+x!gQZ;O+co9&+tj;_WbyRToY8zKo9=A_bCg(sj4;58{I zBTy?8sxlH|?T#4F!MLk{T7j%mQ0{W=);J?-0FO2MzE%{f1;LHd4hokf2^pd)se%Mg z#NrW@D}^S!q)iZ)017uFs1%L6(FiyXjqxl$6lHuA6Auy`Jzk7u-CF;rx-m8A8{Z7{A>pa$R#MP%kfM2 zcVY7H5$peALqRv999;Jzz)Vc^Kja$dcfhmUqKON#!qA=i+ zwn>LlMBy+7%ugZ5QZRw6383l(IXHFPA&v_AA3Pz(9b#3+t=WM&Pj4XfVuepsTH&*n zp}GB7i-N_r_P)1i7Xu6!i#!@yM0HUhs%RJyjR3=NFc*>ZuQ?v|r2}YzfLc0OM>Nsi zhZajdI0qL2K_8&aM|W+ zCvzxAe0+5*`?6v)qwP!pECR+LdcO_ApA;I-=XqnE^HSX_R&_lR*THQX0vrQ?6i%3! zSQavYE0H^iC;3ncZz>-Vgf9ThK|;BKPzlES_wPF=JZ@c}m(X>JD17~aL2{o=>sVM0 zt||=s4Vm)PIb|DU=SGGzHD9dDxD|_mY|S>l_>IHhFe~TOinb`fF4I-1=(_C1%MD5N z#yvcB^5M;z4@0?LN-PuA4wx%^onk;-e?(-Q&1oh$DmIR_ z;ag+>K?zUNUrnWd^M3hV*mz6pD-vuCXH5`)=@wR=ecTxDux#Ugj)Qr4X98+GV{*&6 z4bWD_YxtNo^qO<=^elWmo|%ze8nkokl1#~SFG9$&i6=T^4^|DoH}+($GC?bP3mX6> z2Q9~Mp@e_f`~TzB;S_v^=qA4~J&XZpPYKQ_o6FXR{=yZX$cz_pd&CI=+e80ZY}U zEYfvFG@_Wfm_GK;T$0(tOYswuV{7NW)?w>1KXMt`1Z~OJcZ$rgoN3a0IuP}0=+d6k z$8qnf+_TJPL+2=a6@oa+vKl?C5|XOQ?zb0+~+eF^t~QLf27NWH!`;pH!hh3vJ6U*D9O+#JTIi{AO)|?vjr8~pgsi*uvk2 z_dN5@%#XG|@`SwcTY{}%lQ}eH$>Uk&))sPBbC!GHUDI0RY@gbr`j)F{rakeos%M`X z-WmDrSeEq7h$nh>X&}2ft}JuyklH)dX&o-(!e%osdo$ux9cnYC(_~{g?L;g3TI~gg zBXSRRb2RB@_==Ce6FcgQWIz11!&c2PHoyIfg+$NM?6-!4pN#Uw8ERY6JC|#S7ZtTD zLMuDdzG0{I4NHY;o0{)@KhDs%YSE462@Koow|GTIKe?LzW7=PYPV=;R9WKiGTHF<} zsApqhO;q$V%RI8o3FBY41tC|TZ+}A+uQjc0M3$dBajLKCxWf0nz0;-%@(qhE@%J9( zddFRE|XiL_0VKB^OQ3u5GvCbLUp2_ulk=f?n@l9|>knKqGg1Y+t@Rld9+E zlp}V9vFX;C7oT&-&DUKuMyuTYIg0*MZggaFYEoO5-j+~fxrtHwEX$tspm?sFdN#BY10uOb|OKJ`N@-d#kI)}sZ@|#6;IeCL%lD-5|_Q@vh0%X@*7hh z;{-lLWjT#+ zOS1@$eiZMUwMVWVO}Yg`adTTS_N*P&g5JsAtTK3T@_`5Iif-&{g$Q{`gJEfm*$pnm z#>~Sn{w%THZtMvXbc~%5XaBJ#I2y3=E4|_2vG|a0)WaLA%1<}9YTRy`WKL+j+QMmy z&sU`9l%`)i*SzxH_-?O0lvVgf^IZVR&9C;>&vA!fBMG^3nm>qqSdOFC37&kfxPz59 zSN&?K+wa%U+SwtYjdAx(eLSZaJlcLnL$jt8$0tr{-cr3xZA*TTF%nQa_{TCN?gBr2 zv#VLWmF^XpWhRnkCB!jdX@mUMkK@YJ`V%)|{vR#Psed@1B?Kprhcb|vt*vD*meP$5 zeQr;m5%~V(Rc2)&%5Lr3Er_{I^!zV>8=2>(Lz_n*v>kgJQnAC_1>?5jL`*I9rj)zJolqnv{%?z6V-bnZ(iNOz*E zmPeYt-d?laXiCHIExiQ@6PWqAF6TFy+i31>qeGp z5w_0+z0PTldwc8k(su7I0G|4L8DN|)^VmluuVVM71v{|sV zTyG-K;nQ8kn?aE1qaB3`8wxTGS6Up6-o?A@O39tpGSq%b*;(vbFlUxlu->BU$B9R} zps8`PhuT=?Hgk4;Kk{*VUq3N7U9JNFg3b)oasqV|H!QyOHTcLa*4&yUJi2)@?fA)P zRJtaR_~6s}-o`bu2F3PetY%~9@6-oKuO`jrHpx#>*Kgu#>+vYXE4~8WQS!^u3YXd5 z-w^mB-JJ%RRj52#+n6DS=vF@u+eG?Y?9j~sI#by4RP1Z!DBd~vVfWZd2dO>8-kHm>Y zE*bQ7N$^d&8a5^hneS003fTbvZ~lT#fRWNWhJ<@nI=+}oQ}TD_PmL5cioCtDCE6j5 z;vW%~hD7|XW`dRKx~w~py?}6zk%^M__Cv=dNB!2*=5gPiooblb39IT$X0n02U=tF# z*V^}iYp(PBOP!vye#@fzhp8Vmhg~EIt_BA6?!4>tHV_TAC!WNzmVO3$7Ewv{AD!o_ zh?JzYH0-T8eC>R)Qs)nP?Zk`8SJ&j|&;Hyst_1cJ9=WL~bbcLp1Q#x%NZ|>K{P&Jq z`UQzl+uj7vcd-Ee5Migs@E51nZN9?+eJ0iI1Uw$zVaefbwVPAzk($xE%xca^l|BZz zGqMZfdfdxiGub^Fy~`F(|3ydFnS4RAfp7ZH%TsIdKT_211re_HO~3ryaAxJ*1;Cu~ zda3GNCxjkOCWI@RX`vznE@jkc_9nj);i_**t|d)|wo;#oR$E3|+9u+yPxz5lAk zeB9ov;*Eq6U5Ov_x$!l<3&}T`;I4D!+>yB=$$EohitRpc{F>rr*^2L_qq(~RFIo=B zL~`8GY98f2b)i$H63Vo#VEWaAtyL_e;c;-wmU8T%QqrUMv0!0+#knv*PTrLR=s$0B z+&t6(Ib5#zP)a1U>Uof;kNuy|o(pZ|6s4YVIqpC8w}Q6ovfVa3kiiy8^hRDa-U~NI zHb1!OdYLEUb!u2@pA{HnM>G$|fKvF;?70Bh_jG#1L09P_@W zHB*(*qi*;-QQ=N~w&du>)D6z5tw)RO89RcMLG;^h?QKEQ9OX(biLOGg8hQU@W0b5M z9s7$!Iw8St7g*qONl&$&Sw&UI0e|p?TTimDF|rn(wWX6?0R+-*OEaY9V}aFyn?u2; zGYaMFV*TcC{t0pINqhFwE?YY;J}~;~@+011F;eh?WhUWv3bK3X=?cB>^^eDDII~l8 z2bR7>6ef!jUY@pFpZ|3J?tsa|1pTJ_9c0$6Bli08UuAIr@Kjauu=_A4DUz#IpI9Di zFQ}G#A%fw>eK~94Q&{G6kNUd%)ASw*P2tjNV!Bl)ex|<)P!WBya6QL!8%}!DJoiN5 zMcVvP;D;bUVgW7i|88?n2AD&H30K(Ax64d*k@yXno1M3RGfyjh3@vh0q_)Z)9}K_8 z-QIBZ)>Vo6ex?Y0*O^^a<&IKG*?{0LCc+4v4g9BztbM54Cfr_hU3-f+{#@gtcVcem zVZj_`Qyk*RUQZH0Nu2SnyOfzqBn6VMP6aMU%>+HZoi4t=w&ZXhuLzy~iJe~qGI9-ZB z*k_9mnb%$W9@AUjfO{DjKn{Jw9I~^{oWDUW&dPki>V-DQvp)HD7Th!t@yBp)mJi&erg{6<$j@svpbB+A)llNLR4@ywMU{pLFa@IJpTNn*aeffpf zXB%ujya`?`6&?Y=*DqO&Al}dRACU&;++UWxlw&n_wX(d~YsFwv%p7%L!>4imV@=Vl zV*QpTy1h|rVDh47UGI|8;#%#75rIqzrVQxRl|2gf<}FQ7o*bFXDY7b8>onlMH_Q2m zMXTO(>W_hHpZsm!ZmD>+a5@z3?Qf@>`5Kdmm&bmKg$!Kyq&18|)+Z?l&7c78E7I1= zDMaJdYq$+wx8bw$jhVu?9IDsV9xZY__X!Pbd?hP2_Y}xunNx>6bPk5XO@QX#pT)i3 zzP^n8Sm1m~9atXQJMkEKxhyz$<73;M;^~!|y<>tD9u-4=GszP^7ZME; zdpQ&BJQ7x~Hu0{c*%!;uWwM^-B{UsiPD&^zO^=)*t&Ow&(^jR)z|akeF{6^ekCgOmxP>lm%f0;V>;l* zA=5kfj#REp}mgvT7wfBwHRKzqPQ0i<7c^L0IG zhln%eK&3D^r$9$HZx^VR_f7)YGCCtd)c1Hz=35(<}f+(%I^{E`XyJd~S(atV|n*7!Awsb~9yqjzzAv4{64 zOoEZk;t&8TS?!W&BoBt#I7Ev^@q^7>VSK-6Ne-S_`cd8;X8C?-xSsr4QL2H;+M~h* zm3685aSawk{RCPMIc?@x^@QFg*nbqYlJi%?w0{mLxEBq20VfU(Mk@PgSaAj(WOZ;X zC=do76VOiP(W&7Xsu3P}CT{o@Zp^Lt?39*?sXi7gfi~t>aWhu~XRd}=WJFpuhgdX6 zT0M`n`4(xdEz)rRcU5!kmj={8UH172_xXuy zVZ{6JaE5&i_XD6!)i7`pUP0Smq0j#;ShWK#3=s52w)77FZ3L>>K{z3WNq)iupf)gw zNxY)Dzv_&?{tT!Jsz&~MxxJ4U@F1cOoYUOH7*8eH@2e#YWXqq=sL6UD37im}zXZ)1 z&)OV8v1h%@E9J?a?2a+bmTW1_$lkZ0=cvG2(3Y^lOj2Ivc$WXD4r>nLSdmD4!bNmx zxDiG`k{EDj|Kv~rh~U^q@!!opln+o`loBgFC{;HsKLn>X6}_V>8`ZrWnyg3=#c)Ls z#qkZxx&BqCOCH1qilq#ZfI-8E2Ob3)73!3vPA{4xFz=fHRg_-y(N22}{SpV`I0Cbv&eV-&a z#3B1~!VNT-4h;Oa=lJpTB?}KEi|f{k>rcQ(zA6}QDm>%XGFH$x;k9|j8#u{_Gf}dc zRK!hUano0EvyC{brVxw9zZ~YkZ5Cz%|KT}Q7ZF1xyuFk{_ixY1lS+7_oN!zxMcg9g z#Pu|nn5@#w+_lmI=Kt^<*VvMb*plejmFNVim^8PTtg@B@&%vsV*8j8q%X75x;$Q_m zM+-0h56|gB3TuMiR14SNJUFB3Gf<%cT1WnA008JpV%6P`BgPoSG)8e6gTR`q{&$Z7 zsnZJjlM0|>?*o7U02~L69KjKbPtx#Kz08PQ7C)4aqR)TIA5p?_iWS8s7LcSasoI=^ z>Sf)0jgjKLpcfu5aXJCY)>CY)^G=x&4108dF#v=i`;kxi@uNBec^5{JOb-bCC`n@K zgboam#(xSXQOxD|Hm7hxXP}6{uN(WIh|4ji5?ll@fDcRlcoHu}jRyc6STW47NCIXQ zww#0+M7|Topiw0`CZj0EqY;Bh`Ul}0Fru)@D6CI7Vp#oMPWZUG6aYZGAmF1RrQoCm za7Y5LeZ|L86?Azdbh)+0cyKe^`ZMakJmB7JQ*rGm(os zA&dM}&NI`2Al06Nvu_GqkaEj%b1!&QmL*kIR$A8RRaRALRj^uCP&QcWQdU(lSo^rV z%5wvxRy``Kg_o7V%WEt4%HSJ~kIGsr2WzXdtI9VTKe6<}H(Gtms;bIs-&3irl^bNg zjaIqfV%Sh|`Fd+=mvCX(dWZB-PxWB!r;S$G`an@*Y~V|R&0BNu99~y~ za;?5a)_R@ktlS#}8BBafjrj<-fXnKCZ{!Lc78U6Bvekq7m97pFqKQ)D%xSe1I15q1_OK2}}1<@|0y9 zrz3~_N|Dp34imASN&s1{S+$5@YF!q~u^c6~SGBtWwaP2(qP>UPB;q;n0xp1FOooDShhBilA3n}s#N)^zM&t+W zLgaA-b<6M1t|2YpII1oMi!ee&_hd>-Uc;V83;mwNE)_uudIKr##k9ik=K;~q2OHkG{aH`0N#TedcPk>B!DCa zK#ji;l#6oVa2Q6d3M+t-Q8Ah2jhd;)dlc4>U;d7-<23`9lmqHLZ}A zk|aNqw1U(AA;O@b8sm^rJPxtQl^jh*7%2nHafzDpn38&(I_bi5G61e2p`a+ z36|(ge+))if|y1P9aENQ1jw5~f=I!*gHlu&iS<)dQP0&c!H5*gdkE0w(BP{>oMIFP zoI-l;P=PF(z<~bA?^ppkkfjH>bq@rrf#ML?0O}u%5EO@diWEy0;I+3e5O%5BFY10# zUC*=E`?eMZlWmQCZBs7>7|<4ZRJ4d*K!d2FVnj3oG{eDIMAE;;I8;^+palYI?jB_sr{Y=*kd|K;P$~7!3Cyr1d#K=7=a6vv7g=%FjPc>s-Y70p}OB= z5~ZqZf3oPoT52u`LX?&og^#a_7Y>SfDlGQU8oBnPfiPA8@O$pQ0i*OoNjVW|x)Diu z4u_MRm{^o{4epWviGP}aB=VSGJXUiY;*1R+IHHlg6$CT1RPvn(d_}|6VelFWWd!6n zL{HsTgYfY8gMuRHU_f4V*ErIej&6xdo|%=oFT#JqjTYdD=x0rizRb$SU3R;`K?S&M zZP(8b#u^`Ae~)EVzUz?9d>}LeN+%jkg774Tg>!pfd&6ef+|8t-MPxs?O+x??07zkj ziiu^R64(`t!ZEZ8(46vECNVpH=iK0XAME7q4{o*s!5vy}WlTm&%+A^HRk^>t zb_GSVSv1aE8}sSKX1SS77)B$RHg|M8(4TNG@mT5`>*l>ro9&QrMH$Nm5B*DJnZ!vN z`%|6QQ{`Dp`$GE6eqqj}KD&l-T^Ow$HhJ?C2hZVbXxK~bcTxE5Ha3kzU%>rb_9x|^!Q6dz2Ra(koSyU6gbuRYR6uAQQhn?61w0da0L29?j6O zqr4Q`n@JDNqqz;-3F$1ed-$%({FCcte*}Ik{ilrYJ=*tDogITE#bE)QvtB7fUz~lr z-x>mW9c(}&E~jx#b%J~-Y*SZy<3}S2QWlWaZ^#@>3beQ z4trVI=*>pMD}Ga46_ot%n8CcJ1>dPAZ~;GgA{mQvRNmQnT=W%g|MA1zq+HG5#(6<= z6TznBHMF?Gi}mb>z!tw^-)lRvQ9yYle|Xj4`qIB|J=UfJNHu!xNz}a==C|% zCww`@kD)9di_X>9l<1`#>mIb-Z1g&QXQi)tgQ(3`ZL%blr~7*E7dMclIKQ-bMIe`k z9DB-eS#F-ZCm**V0^hWQcRI;l)JGo+Q%JnE8@NM(S~y=-l5F(9M(Q3${0_Rcar>vV zh$d@Gf-_D%y}CO1Qor&o( zQyb#Xqw>B6xSaAw(QXg3AFwkE_Zle*ghlO?q8WE{^Ufy5kBM=JZ%XGB40DC$?kL-9 zU!1M%f8#={R&E)*R34?mb&DyiZs$w7_sS5UkmspF>zdz22~SfIaT$JRt8<0c?DbUE zHBHEr)Xiryh_h=zb?~n)?H1q0%&Yx7la(%|ZR!I-h{@JlvMsX7$`rPxQJc*Zi5-vi+&X(@wY75V_jKQ_&5uVHes0#`Iw&VsCDI0u?8Nps*-ZBaH8&EW!^Jc1wOV97 zam|zJ&Rg&M#^x=uoU9ZTa}vFdcAoFgfV_BfyMn(OQD(&{vvDl_@ecQ+JT*S4l_H+f z%#Wcm*!f-kB44>Fo1RsT!)q4J!M%L#`C31e!%^%8&Du*Q!)0;sn@U=nVgbk>|6=+ej5 z(TBQ3EHzXcLV$0yMs+H#k7@?Xr594!)%2rwcI&pcNS#+kQB4*Gh9wM|oppX)%9E3X zdj1aP>Y&p_EzPt6Cvdh`(q8Aj3aVh>P5wAOVY8lteq`Q!_L;aq&=9oLth_8R7fgw}qmnH}}XYRL$`_M=Dd&1(a;^G(}- zYFg=6Ti*nU)Oz}@1}JMZCv>)F3~e#a7~n4+X1;C_$wPKHfA+x{{lE#N?yy}R`A0?P z_@u-w0j9pl_iL*y3Jl3=oop%J6}j-T9Fa8FpWc4bmU=sx?eGJQ+Vh;niq)ms&-;xS zD+w(X~ETboiDWlbB!fe4n>f%O73Eh%4SL>NnPuT1U~Z>#Q#=er(=j zb&)B0aPC||XV8Xb!vf)zYxSfO$@6zowpVSKtC79Ms~6C0eoL>->#-vPBHs!5?UGfz zgspWeYgl!O&~_|er~bfo(Q!1R!bUmi53T;WM! z^zn8T6QR47*DdHix2o&R>85V*g?==wY=6>Jjfg7O##kRyW<)qU()( z2N$2PyUggg)`ZL3UfzZ<7-$#HCO&D|RI9Rq3<&t#@Kt`6uTaw>mL-GCIIC@#i}Fsh zRQB@tj@6+{JR#P1FZW7u4+lx6-c8BOtXg>JTgTt(fsm?&2woI=)gU7jXSIBWO=B2bEY6!ho|c@79Uq}X$@#s z+L}*uSZP<7Z(3?7Y-Kq59PjTIhM{6{N5NTP5 zexwdB#-P#z6837*Aw&At2(w*-4T3Qr4BdmcoHqP~rbZiY)gPz3@E+iGeb19!vi0H+ zC#rqjuOK66uX)h@dY1aF&RGP(LwzX6`1Hq|&cQdqLUPcH3ehB7!MxhY>veKN3*9w! zFWX@*fmgj1G{13Mp3-#|^uSp|jXSg5w~bFO_Tk@Q8~bdqdcJ(Sx!~2^xkZ{&1!8-JZ(_@Q z`;uHfq_=tjeLe7H2`*7OffrwB(M{~P@>b_e$~{aJ_CADvKc~ty6Z8H>Vb^`bI#b&! zvEzn?AC>#R1s@GpKQyrv*xlW`abrp?rpok;;8{m;TH3q*8_THZFT_nC(fxZKbWtnb z1V;M`2d{EECFBbkGtszX`|@^u+29Y$YZH*JUo55hCobBsHHQ9tJY+tBDBYO+oyNO+ zqC_73^VAd1Cp;#_Ix&i04eHBX9~$JJ?&+6mPwlUkG}e+;*p02ewte}yP|9T&@uyS3 z4_W%9yXQx$?^AdcNIQ^JjnCWe$Ua#?aqUL)u ziDC&$L9PzNuXU^}9$4n=g}6+wNw&B|ZwLH*v9jNxEZ(dvpxTCwhv5~jqBznb?9jEV zte%DH>br|I0Sb4Bv|)Q`HDq2W19g=M9)R~qLsQX|C05I8|Imvb0jM8g#zd=;B?~k2sI`8N1jP~dfG;bih zZaQNfmR<4T3E!DFGb)u-MTk5oX|t zeUcQ)KuFWAx+`UDQz(_|j^r9Ab<$n#He*$V5=IWd6!e*x_|#btl`D_;}Svci(9(eq`R5iCg)T@%j7x0M|66 z*l+J&ZcV6uMfFckS>CDGk^3Qwj%*%J=Lm=4MtYBIbuTCAsifcJQ#r*WHT&bz-EK%B z+~cUt7{|1T>^6zELm)!kQ}?U(@9`Lkw`?nhP)nHqkZfA#Aoxt z&iIqv?a&uDZpNd`l|H2L1wZy2lfN?4EQUFsQoZ!mId^sPnFHpABwa#%MKz>6qdIxI z;Le!ff@1ulM_`^ri?3KjT$AVQo|r)VujF<5!cRjsLBt!d&cRPTThgy-vV2W$JhEV#x-+W zE8UB}o`Sq(tGyP0&N!h)zc$9qJQqajm~+2ep0RF(=F8}9xb}5#ZH|Xl@;q8|uJHcS zMTxujF1Q)a1Hd~c4?qgAJ_hXnVxT(@{#u|G>MsT`F$Khveo!EF9k^hhlAy@E{8Dlg z-O2KaSl&t_z^MHFONP$iYbOjkg1>*>csSZAwlKDZ-@D@JpFzHdaW#H-YrCPKF(c^D zNqXiJTd(Ujtmr?VLW{s**Dnq{O@kjfQo@ZjqczzM2-&rM_B2J0X&WG=OvV&63Rc?< zmOidCk^gL6Y#YA1S^@huC1#l`#T7gG1oMN4_#DTqH!wE0d4v9Q39+Eqr1zYG!^($N SZ&rD^@9JvF4BiEs&I+md&!HSVC>-J=I8C;Ml`oj*kO_s zRMpWMif9E0^X@)SI;Sik02?R~eHPgoGLVP|0A2vND30PzaWOzq$$3)O(#dBSRI6fC zIytHp?i7n|`@2J`I12#)6bO-m#TU#Oc=Tah;ga#hT#UQ1#(gAfwCOYk_I&M#lTT4i zk*7}|N`j5cni&9{taU~#ToA|T93#ad;9z$LLF^E_Pa(2P7w6t)SL#59o>f{XOff#X zP+SmybWy5iK!-!FW(a#0J!;`p{+Pu+kkp5nr~K8ycI-fcd(mMLapu)wV~CGL6{QnF zQM+a#fe_G4KtD;)ph~d23eh_#Zn7e4Dxf;3tZQa&gaaAc!2+SK#+BMxb4Fr z>xbdC6XEt7;STVKzuJ$Ww;PPMV>%K7J7KnwI``(;G? zWpQ1ccso&+b;rXU02os(oNOymMW3Y7PC5=YeZSM4ls&+_~o1V-3FIH3`(ml2(y zH*j*pL{&?Y<~Ye{9CQW4Bme!nwSyPX5V35RG>;HAwsnICdX1ha;pMVV(wHk71i?L^S4Ph=L1C8{fBcf5D>UJf-g$W(Hgl z^)kz|0cH@ZdJ1G9U+kx^fiVKsYrMsja^eA=9GP<&szN1T(Exe~V(IARt zRY4TT)y~}`m1E9$QftR-WT<2u7De67C@`o<=R|E5k)0%oNGEoo?t@wJ&%k{Z@8>%( z_>b2A4PnYJ0k%OUIWuKVygA-7z}xz+|Ev0N`w9QI<3Vr7<1Xxt_)lQ{D{}xaX~K4L zlI$3ZZl{DA>%evc{CDPD7Hm&KbS8-#R*M@A$@Z?On5?P{3h0`u7?}y#4+{AY3lq%L z?1xne!+64I0AaF@U|Sz#UH4bQ?554zasPj04kJYlVd7`cBt!q5Ik{5t?=<2M8zhTc zCm*?%<{Fh*l5uaLB%l31GRH0YetPu%$msdVc&Vr~_oz%-L%vs6`BLNm+5VL|`b2TC zftjOA6#qx&G@}uxz-+3PHCo-ZQF9PmniDw@{O2t_h z;FScXFNyc3s2B=L7z*h23lhc!jK)({dR0_S&GFp=_)&BGD`6viorIBqkUS0h*HCk z*QuKN;Z5-bYjeDH0Ks|#Z#foZ2y)GgCWY|$I{f6CH$E+B#t(0ANtoQgTMOT`9S@&b z51N59B#)2!gItF(fwDPj9>Wb2G zuO*OMUQDZ&rO{+dtIK}TWS8oSX^r%*>dLJ0(xtjD94)d-jhATU<)zi17~DqsQrqRF zM#aD)RCiJ7Vq-~Tqt8;~<(@ikL;-E_iFEh#%C71!ON|OO{$i$h|JP*uSxe9k?+aJ% z*=~eadmnpB|J4Nw82W+f_eC^-%O3db2gll0WllP1#8X`}!JX3RS+vrnY9E=FvLzi; ze2{%A;jOy8^hZSYarv~xM(OS+pd$2Cn=hhC5n=yI4P<0j(>a2iIyPYap0C<2 z|2jIm?q5*B32RRPu>oOVL!e75PfTV{hz0~;5t|n@ zhxHI6k4U#6&EpL^C@K6{HxzjY$C^hyhxN=OkKsJ4ibfniBMXJG?sDWI8;_E<5t~>( zCtjubLgzjM7`2AM07cE`7IN!gsfB`uSUHOx5Xc2X+Gk1%`OOSUYC%!dLSaKJx=zs6 z2R()WR}}Kw8lc()&AjE>G7q;QK~bFy^hGhVqhDVcU36xtXVG(U=E=Ve73qmPx|W$3}2*Aj8S~@o46aFMnI^=polO z=16BKm##`p29?jfw28%#ha5ps$+%c>g{@aZQJM$H$i&6e&b=ggsjiRMlreM|f^P^? zLc^K`cu&wwaktH>p8ChvK0c{(C#^Mk<*bA9f9;S zSCZxnJByVpxdnQZ?hitN+S+5|L9dz6VxxzTDH%$DP;jBYNVkyzfKT9tKJA<%59>#zxd+W_BHJs7a#)d3k`y_XjXc2x2ZgMq^? zAi*&d)sMj-FEJ+UCev$p{NrkGiQN~Zm~ zYLal6w2JeN5g|y>jj`wmLC0wHJmnM{sx=*~af;xK(gS?SGU|_5kO4lnfeg$%g3(b( z@&7JN{!PLD7b8l*I*ZQ&d|S7{_p|L*<$C-(k4|2H73t}_kN>FI|6RTRH_FzN4nppq z9ia7;ofY`Qy5B-y1GSGsmSH0=H(2Pkq=P$VIS>|s`dAnSh9~b779%AAq6CEk;R9wg z*#?_I!r`PPsA-I&W5fn42g+uZppM}@KrKhvs5K)DRTJ80P}DJ-7&$QIu;8O(tZD=f zoYFesScWbf!h!h-cPaxD$i@@gx~CkfcFZxh7W6-OLX0`asE*li0MkB~fRHnlmm^XO zA3PtN-ifssSZwR;c$@KIfCFQZ%Rr0RX)K5;21dlfz%cBNg(d!LjQ8mLF0?>E&F{`5 zpVQfa7F!-ThB^R(OlpUc04dmR0k;FjFn+LC1JxZ0 zCdP2r&SbIOwTxO2geVi^6h8b>yrAolm&(j@rgLr`SRjNG04`5>ETP6akgb%kG{dk& zBCn%7A1)fBUqv`0(h46Xqp5;sIM0t1$5>O7Y$q(brHpKWl}frjL@cWf=m9??k!*k> zubA>JEr=kz15^|SMFF{$%>!sVDD*wQ5<4e*dl+fRoeAI#>)=d^wBqC!pxw%MJPKIZ zUF={D;f#x`iQ)LD)XZ!@<&O+QLd7CmA%ck^p#nZv-*K5ddPf*da4S|^BkVS4?qpmxmT%Xv|T;)kQR*9#B04!-5}`IvTk)A50eKafcfH2Y&p z&xIWSWY@R37+EvJav~OAZJC;W`Y2FI32^Aqzr5L-F|Mu_P=E8~dLw6a&WXjhB%V;N zeZsvWF-lQr74gPn()oK~$@it^3U7qgU;5m=@1mNXLR&|=y8UMtund7M89P6+s=2jz z@^gvCe3ks-4Ee~(DIRsaesbw!Y5cKDPM?KyUu!p}?+v|cYH4t$UVJMAQx)Gsto-Hj zM%^m%Y9~=6;U?Dy)c$&S5g?^^G+eUT)Y7r6Gr)#S?1)kO+M)pfbp%2EKk+rF5a`!P z^+!JX?TI+ZOKi=2_Xp-eCV)-UgGok{bU)`Qx`!6HR=xGRBD!4b4vsso9!zaCS1Ok|nWH!((smsvG~V%1zLV zYuIRdF<#MBtE!SP_kC5J{#1mf_hRt$UMh`jSi07|_f|t#Xz`=Z=Tv@pHePJd92wJC ziO)ZjovIV+#%}BD3ph;Q&C`Gda(J8o0L2@t=Q9bwCumGcL`uHCS9p&LX*#lUv(M#K zGWF_-6-Vm`9o^`$Z}ApHBk2v`JHR3L7P=vlARJjF$-=s1ZYZH2-d16m_(kwMtCIWG zz{x%Cy{eyhIXDenolNURVHXp{0%|c|5t0iHsRj=G??wEB9w(|#QD!%yAe^umB_pBl z5yL$KA%}%7>fUG}Lv-BM+21pbJ~cPP-qut^H2Uap2y#^*;0oSy4}1C%AzZm3@7A#A zDD*q;X5W}FZ~6yUe#}|iQn(}g#Lwrbdd~204%-y|%2Oy0uKYr#z{Ba7pvt5w*wuUA zFn>m_*H>2^*2~rZbG|Nb?8i^S^{mly$JlydVMCpA?$a(o{ZSWibFCJS~rX5(LM>L2bid}3#(x57ME$F-NDlhL04=>U)!G4=4)tBF26Cs~~G_3KZFzjfp9 zkQ)t!;IGb)7>p1Jd|EcIo=L2c4Z8??z+ zMKrR=Z)^4o_|0&s7<4zf+o((f#Zb1MV_=v z9BCQxI?E7WjME#J@J7zby@(p6n_rg!!|VPoOnq5aqV-~M2o}-5eu7Y z=372pWbU*wEg!-Xg&|+J2Gjc~*WFxF5Diw>hIuBJsvb?=*;j_fNP|gCh*;q|S`Nq|cxc+Uug0H%XU#~sZIxjC4*d@6y zZ+(;N`M#_*DMvN&y}7CPQR45DT2FYB5@3j`X~og8r0TR=nd7GoEpA0Y`NOteb^U^z zDChZc{>=6EsmAfC`%b@~S4>=jj!wSMM8`g!n$xTNEc?=#0y{XZyb2vt<9s%@Cs%06 zWqtbFg6QzIgGvt`kmNKkmeD?9WvU?qJ`<62PmQL2&C)j6FN-TNcWXBnT5ja5Qcy~U zYOf4b*7~9daM!NiJ~o7^l+x@byZqXGW04awjkn$ewnXn}%q#nywFGNxRX-7WckgCplSU7OgNJZtu5vp1 zB&${FL#bG$2@%`T$)ClWGtp08MY!4>S}y4AFdlmLxK&x4<) z@aMnd&vj(O_UgMc``qN&WX~C2kWzwf6=^s@WUWbNQS*MmkeC*B73$Gjmnw>6vx-1SHRDVBB zc1X+13q?#{3xV!`<;GFmWlZCzJ1;PulaIUoXvS!*BQwkBWl>Uv=%Z});}?6{i(GuH z^>jXaQI|IRu=UhQ(ffD&m?Csns!f7VZn5g)>zXp$UxdoEDkF~_+keRH zz0O-_PkCvWa*bPm_BLDN6R{Rlr)<)b!+ehqi@Yv{YUhXxH0r+2xwY_uPe4TSCdXNk z-_8dfJWjb9BVO#&J1IApmExm$U{5lO^<>vX!Wzc@xGAjW{PA?;M2XpzQ(o_iUM~^3 zE4fdohj|&R2~>u3-#C{x^<3rLXluGkW|TFw^7s=@QPaj;&b!e(K@L z@|WgQ#l@mL%?f{Rwe0_#`?h0KTYj%&AGu0Nx+`|C6%7HYJ&zc49@yGnLHqO|xvD>1 z@BBi-%EI)mnCyYJea6}zVsfkRPUekP==87Jm1$l(1pHpnYCZ-$Q7iQ7DPrDd z0lz0{ka%&H6P|)C&6h}#-2+c;u%_p}wQ{vkj=^Mn_`ErJgC~95-XlfJ%dACDR24m+ zT*em^nC(hcd%E>L4-Iu1kCf0#{${S14W3dptOC_2XPaqxe&7jsSK*IM&)G?P{dTg|L*O7W?+`|}FCFE4g> zl}2^jWXlVcon=FE_X<=hEFI>2_50ktnt23vwVM^N<647g#2I6rG&F^jLYyuyYJJa7 z|L(9sqkbuh5kGMwc92%Ff~La&XORUDCdEADS0P|ObDy4xjckV<3 z!Rmtp&(pO(0)R7&WA86*!erE)*N`b4=7G&^7j+34ecilFOTyA%O6eD=`4Uy3n@!Py ze2|Hj9A2Q2@P6%0yBibJbcW2GXNv7!cL!99Rjw29o|^2_wU_hsFE(4QTUGWfvsv8T zIJpw+`zR-!XIUTLmZa9qr!&*AD0(8$!->x;!M!D`6dp7}QEoA@8~^EZ?4pn)UHGt0 zYp(g17U8Ohb?B*pUi0Q&rzEO$W2d%2D<>$62&+0^0=W zcE*2HaHfpNWU@5XRJI@ zlSA8ga%0~n-|F>&ukQzD43Gaf*|ij3ZRrvcV{%xzY&x#%#eH2@`=3IagQrj4@SB3% zRQpbly`wlR?x%72uAuF{W~-a2Wpcm7fSTag`3t_H-#w-Mx7KH771IiXl#&YWzNs(y zt(z8=XD}sdKysQ@l3z>6(BGe>r(siUxXjXhBk~vYnu4x}OuRux&`R5%M(N?^7yFcT z{zOMm1{4-+uGTYGE`=T$&U~pRE0BB(ud>REt?TNi@nr2wFFs$=C^BT4-T&g;HA^kT zfhcCQt9VLg12H81=Z7ou{3>_WI6fpDNXpO24LQs~`24DCAg0z>r6vIeoKP!!B6N}E zWAg`+Dj-+E0WbLGn98U36X*yX4kHN<24juIj|HVP{8~)*i5+V%g~#2aXJi_+KVfUK zubEsnMY;38Hn2^FZW|NZQhrB!N#}`(iCk9k->=55KKF}=HS7HLx;NmDTc3nc)r|w0 zx1Ki@J&g=3lk|61k#-yozdlf}L}hPVk(sbC&^8aGTPoS=r6%iM`+ok#@$jdX?#}Za ztp|R^e-`K(^0;PY{Yb48DDsuq7OwDjCH&y=^1lOYtA5g4=Nr|sWa-BPCH?{DA=#_7 zvUe5vhggxF5y$Cb7ENs&=T((Sz9Q=xCyn0@s}Ji1c)i#*-{Pmcw5^CZ#F>x|f5vKr zKgG{Ha*EFGyzAbam_dRj|Fo4Fxy*Z}Hf#?|$r|PUQp!d*UA5drTm*NVi4vcpR|UTE?wktEsZpyJH*8>)#&N!Cswa%pzgkx6 z+!_7S)K;rJ&Pn+K;%1LiqdC(%!%oZCdToE%_j+P^dbbPe`ro&X@|k;Hu%XbDOIPks z6bmfY?B72rFVTG}CQ;#Y(zePSLyD+<(oidj`AB&3G~T({qW6di&j89!>#%_*tH0Z_ zhXj#b#xgkl$f&jupWJ82vu>#ZDS!T_0eStNK;_G%#^WKs28*A-f*0a}i@(%>gD!UK zIIWkttjjWwnK-zl2YwRI*31+5fZ;zbZ?0!3Y}Ey+$Or%a6Ek_E{{%&|UsSfPH`y~K ztTaJLR%80u1+BoCdtZy}#jsowM9i`)E%ULRv#Ocl{B>`G1<`VM-wb5xmriuy1$PfC zuLJ#>LDzi`y(ujIA$ZU-k*AS=h(pyt@5JNV?!^x0VdnbL|sO-jKtsXfULy^=?% zM%ov)7oN8+d&F!k2F~St`?Q6-fK!r_uMWmTDxFe^ErJ8E8#TD7`Ces3^gswCwuX`UaO$(b;>qr@jkyui34i9 l=2pDOe(sw6Z@|Ypx=Q8h#)JJYox2jA@ziH7F$KQ{{vQpV^qv3! literal 0 HcmV?d00001 diff --git a/Resources/Audio/Effects/Footsteps/heelsclack5.ogg b/Resources/Audio/Effects/Footsteps/heelsclack5.ogg new file mode 100644 index 0000000000000000000000000000000000000000..6b9f0763fbb59dbcaaffe5a187ad7fb8fda79a12 GIT binary patch literal 8998 zcmaiY2Ut_h(*Fs)iAW6)As`5$NG}0VKoJs}gx-`EdXuUkh|;T+fHajBqy+&9O%W97 zy@NBUA4FozLm} zIKkar>`ac>!%=W)Noh$*1xZ=BFb3=3Z|~yi1lRBkaPjf-^uT)hAxL~x!QUl)U0n@5 zBSRHuKR<6@B?$>fA1v0_%iq)CoR^Q2gg4g9+Z`*RXKU~5=V9yYV`L(6MD&%AQ;<@W zl#+l@9-jlDe#ry^(10AJbl~k_L&?Sfzyts`0tm)5M-&2&%NM?tiPIvD+9hK%ak1@C z`vj?uzdN|B0~-KP0Aa$kNrlTO*8!vxR4BC;$@QTVDapG>C*1`P*O6W;O4CzXD=AD; zS{JSzQl}TM9YO0zjhon4Hd9&O_8ma3A<8;Lt-C;D9-c&Sskkd z2f{!#0nHRvR5fdFHLQPFK>wSV0gK$QjE13+t}*!dTbl-8Cj~sYLqG!~ z(CH&aePrP-0Q9LUMy%aOR?}Cu)Au~sH2p4j<8=CWbWZ;51d`i9I7z|UZ@{`iYhc7j zedJ7iRVICPCqYw?Eb`x`x`HkZ zzlz}$!u#Dj(i{!|5llxY{<}MZ@-d2wQsYE=grD_E_ll9ainalzjjA@LOAJyVipAtW z6ekjwANf`ywcPN;2@6p?4ueMEk0T0nD%>Gijf(RqNTM=*dJs>*sQ9Pjz6cDSIz9Z4 zHux20z$^&1VQFzg85LtAW77Z+^9TMj^^w+7{_~R|^OK3!Iimg(SpSL~01TRlqnO0m zB}jGVhU=-*9y|E&$hpDVnF8xh5zwv?&>a!$|0b)yEj!GjVIZq($Ywpv=0D1gHI%m= zmBWr2W5)xq({)(O`VjNFzXIksZ00BZ{}DN)5aCBAebh>&_;=*w2`7C}Oge)~6);ad zdn>~!HoG+I(OPK%-G4-mbKH~6xF<1jD=|sJu^BG0*=3Cd?md+oP5)>6SLA5=2!IWY z91S0Ve?(5J6zmchO*LY=+s8Vp41)&s)8P200|1~knL+y~j~HOY$1!r_7;$4GmH!?w zAaz_;cT^TMY&rmN0>By2$q`I(KFR8yDrPiN%L0`7NUHod(1<5YG7QKQ{C>%5LMjcZ z$To)U1&lD;Wu5RuL4_pviPyzes3k=jFzrzQ1^^Hy)g|=?>N9}q&bvGyMf(ufg%rZ4 zji34SMmUYko zn1p}@Z-K!yS#4H9Z5E9|R_r8;?qs@bzpR{rk#R4J@wk!k47;vzouDp@uI`SJF^h&V zoAGFdt})SLP!>CFWIW4mJYI*LVGlLU@Sm5_H3wfOK&t;_M#%LE59`doSn0AJv645Q ztdleFGd3{Bnj0CL2Vl+jjZG&)v_Yz&?lhaRah>t>u7`0($a_CyYg6p>zOgxbsO4nj z`@N9&P!i|Kaet6%JAt*W_n#Mb$#!uqC@ISpE-Nc7tMe$UBv=-#mKBus)Hsz@R`k?7 zEw6On0I8KFWi?`DWn$$u6$fQv8+9dRO@yABs+`L5jk?eDZDJcu-er}Q1x;JvE;fmBP;Ma{^neUTz9R>{V2$9mXP(^PT*tQPMO(!ryi+!K(lSC$S@}kdr)XQn zhPr`qh;=%4UcuU&!*gCC$#OEWplrQKr1vE#Na|gO7wowt%z8#1Bs{Dk(1+M}?b8mr z&2-#2Q2My%U-*=Pw(~xS4G0MvEIq3Ee4=DwiV%Q`Z-v#6Nu(X_$Anpj7a2)W@%ieZ z+hMq?XjeYmm`DfQC<)b-o5qZGM&L#;)cN?UXt#Xa1jenpc+74KUc`=e5yy>KxR!Q| zStOjYXOdniau`6-;%i9+kkv|F5u-X9U&N}77B}ewfm}GErd3+RY=|l)f~@dG?AmCl zI#x?hsRI| z3*mdean}UQI$`91Y8WjxkCZ}4VXGE{89=!(`Sc-0Xx00WLZv=B>Ij5!pBjxIaR7-x zv`-*u1o7Y3BMB$hg^lpf|(H(!6?#^8_uXs!v-D${8sfL!H!8CB!Kl^emL0SaU&!G z2E7Ic=MZ>55&?&y0{{_kup+85aPYmCk_YBYGT;^|XQGkR`M4{H4md6q1BwGxD)nIi zZP#u>BH%1G;UF~J6yo`|ESsjUA_Oek);~} zgxo(nK(&RA8u&xaZKA1&;G!2J>Bz(g7J6-&;EAbDM?@i3iy}bxu{L68X_jRe6F?QsEj1jYzvu$04roR8;l%%F^;@(za~ArdqViEsqf zqY*71$y`T^`HuIJYC#a9uiDhu>ZH{cG~8&Ru9Ai~#^{Ou23#Cc5D5xe*!K z5y?JGcIQrE;*grvSS`+W=r~Ra&uWNqTg|mgFwlQ!kCtkyz?qqf+8poKweerkdze##Uisb9Rpowgztz8IlvUr#gGzX#=y){cDKMz z2{5y=>7ou}NKCAar(czBrL=zM508LT@Wr%4Sd+uTSv+rkIHBM0idIPj&v<;Bh5$SO zka_~n&!3Gl?lgf#HArZ{^*`fY3Nsi%Z&G{`~pVg#L5rU zfgq^L?8csb7yN!ci)03lw~+lT`VLUEbvo(LQw)~Nam7VJ?{>%NJIjvSTEF|ZhyD5U zMP3DYc$a+$u-W0X%PYz`$1#my#)b^5XBoGd<}S(c(ntjVC# z7v{_0d%$0nz%J%xE2%E{`&_?3)zf&#mj(iDr!pD82D2Q#%-{+9-aUGTbFE=u`-u$C z0R$&lq^IzHSD*9lTV2AYgAA7qwd<~hh1q8f8Or^H35!uE1F!=$k1W>Rk}O}Nm%Lf> zxGJDV;faFENZ8}`~ONL>-udUZ|5fnT?NDboCMOad9O3DBSBdty@fezPCWAbmUN z&_boOntu;!8uzLE#aKbco_izth!Z1VbwYdpQ6g_9ZH#X=Qi5U%2&!)+lwqzvFEuS9zWIw@Viap4%)j zneG-Ju<_Oy3X%ULzWaXSLSV2E@a6kJeD~czV)POcW`OkfcPqAj9+!@ik{Z#eVNd+egDkhd*@xdv4Ax#K9jom zJ#_-Ne^KKpwm{XSU6U5+xGUqM%F0aL54f)MQx)z6D<14$bLtJ!?66ex@Ta{v@G+9w zUQk2!N!@fo*%u1|^t(|}ABqGvYLO+e^pXXa_P9mfuD3$!(joa+uR{d9l_%wwa<`uB z1KK^)@?FWv7!C&gFYVvR^7b*z24uhG`fZ)8BJ#k?dkZNKT2a zGF9JtaJ6$e-5qGhyt1Eeu?BO)bor1!>P`EZvs-HRMRxE)fn*zv5qK}}VxM5pYfb^@ znI;R}S`Pa4;o|Bq1;5{iir)w8K*w(Pa@0(pl^`#Uc5OP{{hZ;APy4DCEJ*q^_flDy z^C@N6C((8W%|A?A@v_?F{C_nw!uC*g^1^yJzp|I=_pWbu*K5D>p=+!u!~`cjg|xD!9uQAu8M7FgUxY zPEp;5dfUdXS|0Tg{dSI@jH3dLd>$IYPMu3huQ14*MDMsiLnjI0`96P|>FgWjWPQ4; z%IdCVVMfh4eL584#RlE=dO&(Vz7e7|rk+)VOZg{ToN>ai0?y zdGbS(OzS*D3zv^|!J=7fl02ep?{Lle{Tx?g?;%Y+e-Wg2Yip#xEZUsQ?`Lusl=@nT zbCCAZx#tu;f8?(6o>6?6yUm|t-8<%|w-=(Rbo#_?$|8t%8MUF^>n4fY7zjm!_xV?w zRkn$Z{`2R^n#1jLsUI%X?&}1Um@7uk%y?}-X3v&`Ee2ER=2<5TUbK{QcR1-Hyz5Dk z;FA9Mr$P4!FVHym<;q8L?h54<*_5u?iG7ZwsbyQ4Uk;9Q80`a#Ec%Eh|0YWQOmRzC*|vHi2Jo95U~-m7Pgt_vH7H!qp_HBqu43`f)LVbgIL zKl3BsU0)7b%2}N^I7E!*cE0L3_Z&0t<8tzF20vuEy!&JuxoY{15UO)VD{3e81>DMk zrcBe>Kg~f#!%}`gwAa;Lqj9-wHzVD1fDe#SGfqN&1R{oQGrmlgF3Lbc<&EA$O~M@H zQpjh8rf1~sPZ%j9S_%x`z<>{}#Q51NqVoBwU(2o5Gl}Ux=Erm2>8vzABw9K9J`Tq; zp7FV%IWu;JTEvh{-}2k+H{rIPhZuXxZ#(_r+tCY1t9!#!8%yqXuZ2$%u2`dBsY46D zYaZF%sNZ3r4Q%oTFN|%TvjGB4WtnDNUKp z4I#Uxj=mYX&*vR~K8}g^hL_WHMDMlmj#+sm{-(Tp)>-VOQ1cpUsp*YHQ5_GRMeI=J zSxADipK^|{5>liA&rKA)p77CQ2eLBsVx{v>VeOs+@oQ7*L$=4#zfs$2B_Tm?=1rN< zg`vDqds){-^`))F_r`E!=~_VK3k4)K)u*2rpVgP4w7_pU3b6?z{9T^&=T8DDvXBnC z=Wq6jXMKU8FR7;@>9>~*2lCgVZ-tly=qI^-LdiVXG>V({##NTo^-bQ>PFo$vIMJQl zd-E}^-4ynd-`?1#F-E+o`PP2F3z!7GukX!rtCC+e{=|&i4e1F;=|qjPUJ4EkqTvXzU4Q3c#Gz7 z%r>DaJg+#BL$j`%;IS4cEq^ntt-Sb9k8vQF449KEs-dzXr}uuG?ZPmWG48|QlA}eP z$DFPG_=WYYRSl@wd~@hpsHgP)h7&LEih|{n&x_Vwm!rqKn16USS4F5k*ogQ(tjRYD zo3rbKmwxJwDX#l54Hnt-=_XID%VSttTYOGE&8L?3oT;51{>c6*^<}Aei&pf;xnciG zi}l65mmY0{>27_vj(f`WnFoQ5#Ach(Md}!76KxmQ((gjmV?YO_sFVc|*aZdMQt2*Ge#vql+I;;GHn;T=0`Y}8Yn zBY(%`r{AvpLe6?p0zx%=sbBQ^Lq!kr(TrnqYj;+dmM5z(SpouSMA7F!@XF5 zJ#zx{7urYIF(O;ILh?f9^Th;osw7oekHmD)2*l>*R@INN=9$CXIjw`AN^Oqu?%MDA z-kuP7feYUhw_X0^;rrY#c0BeAd}DJCI$kk^puUfYPN&gA@lai_NGm3&MxGZ&uVZS`XA)2rLQTEN-6*k-%>q06Z z6e~+)bfyFziKf_eJF_Ibe4<@Bu`dkx8L2#jj!GZwI=%cQ;CriF;`gYMNIqUH$umyD z{#}xyb5nr&%8IDs2`#%H$j|-oU*T5j+p>6pW_MeK>0rICS3Gl(5F$%p8==srWV&|b z-uX0zui`UWDq%5Wkv->_3)s@;Ia5B$JM-@fntko8+3+3BzKKj(cfTp*aJ}8-ocFrK!DvbH7-`$}+71 zUb&xdboQ73Fw2Q?qxe#I_JD@t#?OPmwHp@(t*|oi^-Q9@$(~l~WxLg1R|95XGwNF^ zR?1z&<5{(QpqLVJApqHrA2okpQlnyk0h2aTVz?*}Mt5raJ%T$LIJo!6^DDlx}D{qU(`x!P> zkdM6lr(VbfhcZY!E|Ql;%&CVvzAC~}e6{7VOJ{D=XuY6&*PQ9nVR~?_gDj;2-Djz% zrkl_Jv({fkgEjL_k4@M3jh>PQ_WIusCdbCkjk(2~+6~u$Kl=UpwSNmA9+HQZB2lMIAOh8Q7*DP~86@{`&Lnot8ch>g#j$V&YkMYAU#i?H1x| zH*wOtA{lqG&0D;cSQsLI@V4#o8MSNY+D47_aJ?5fd{(7=r+0JQ;%kcN3%~cR*{gGj zI?9O(A25GbdiaPoBf^Z`{quLGEv*$DzDn}u$BG38TynXeL~c=}yusI_fPQPe*4Sc3 z$AWbyT$6WZ`_^bi4c?2HsB!iflCj-L#-?+7=WbK6dU#oMS&R&R=l7XTi9sHRTjKW1 zFZE}GZ!`E_xF$Jp+c0bV?bI!osIeUfaa!(({h#GRlpL=cTtrIR2LUAMBjCpDmja#on|K&Kb!?4e+ePzK*)c?!*jg zwh!Y)Cw63saT?c8jZV=JH+a(TO~0Xb98eJa`W_&Ztp#yeb0^h*y+lsIAU*N0_jX`K zpzlP5bJ@kU-EbMl?y_%6H*XFObM^7hn0=^r^BDEY*RFj*clM=tZ^eYq(oj58`i-te zwH|WKFx8psf^z`-8!Z( zQd*LQCs*xzyub0|&Oxc=*}){wYqQ-tgje@zyT3nlMP{-@dRr+kFN1#!pRVrT1`^^} zjRz!D#oatI=qxW!N3`LWddF`pkHin1Kx~JPicM5@4Xv=UcuMiaE*}KGi!X_#{K#MA z^}=r**%Xjf?}rvp--x(~MrOB1t*S~l@r#}=+Q)lQWjXFzeIIzrc48eyaYjMCgdiUn ztQS4iPv%|JYMn`Y;X5S=A6O?B9tt!B?p%VTL5cChl8Dnl#zEV&2h-OBJ=|v zHA!{nkSM-YzU91O;O3uy`QclpMd~P9Iq9$KCfUyvg4ql`E(z7WV$dvis(hxhE&V#5 z>UDJl274-%bCLP??&@}e>b0EF`JWB$lPN8!qI6r9MvYs>#j$IY4zX8in;sYeFD4WM zp9hRb_HC`q!sQ0As1^f>a?9BtOxeisv^Wu{*~zd|hZ7VxQCzz8q1a8g69RxY@6=Ql zbq9K}L>rmG7{)uDP@NKBSx>xhh$JXH&wAwbvx0y#Ho9%hn$Ee*BV1DSC(C z?UbL_^&K|59TX@s^~XTxGl*#YXl#UeEZ3s=EUIZ z)0UG_^8G;{FKpqnX8OY6eKFiZ%bfLHd##+eazNS-8OiBc)f6J$wrfL4u*c^BA}~lE b?#Y$p+ot&exlca$ Date: Thu, 13 Feb 2025 22:37:06 +0000 Subject: [PATCH 271/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 021b37f5b5..f99dca0583 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: ElectroJr - changes: - - message: Fixed a store currency duplication bug/exploit. - type: Fix - id: 7453 - time: '2024-09-29T12:13:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32524 - author: ElectroJr changes: - message: There is now a rate limit for most interactions. It should not be noticeable @@ -3887,3 +3880,10 @@ id: 7952 time: '2025-02-13T20:12:57.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35135 +- author: Centronias + changes: + - message: High-heeled Boots now click and clack when walking + type: Tweak + id: 7953 + time: '2025-02-13T22:35:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35083 From 3b142890cd904456376c84f7fb87ba16d7648f03 Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Fri, 14 Feb 2025 00:44:27 +0100 Subject: [PATCH 272/313] minor thruster system cleanup (#35143) --- Content.Server/Shuttles/Systems/ThrusterSystem.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Content.Server/Shuttles/Systems/ThrusterSystem.cs b/Content.Server/Shuttles/Systems/ThrusterSystem.cs index a75ddc911a..74008a6af7 100644 --- a/Content.Server/Shuttles/Systems/ThrusterSystem.cs +++ b/Content.Server/Shuttles/Systems/ThrusterSystem.cs @@ -44,6 +44,7 @@ public sealed class ThrusterSystem : EntitySystem base.Initialize(); SubscribeLocalEvent(OnActivateThruster); SubscribeLocalEvent(OnThrusterInit); + SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnThrusterShutdown); SubscribeLocalEvent(OnPowerChange); SubscribeLocalEvent(OnAnchorChange); @@ -232,8 +233,6 @@ public sealed class ThrusterSystem : EntitySystem private void OnThrusterInit(EntityUid uid, ThrusterComponent component, ComponentInit args) { - component.NextFire = _timing.CurTime + component.FireCooldown; - _ambient.SetAmbience(uid, false); if (!component.Enabled) @@ -247,6 +246,11 @@ public sealed class ThrusterSystem : EntitySystem } } + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + ent.Comp.NextFire = _timing.CurTime + ent.Comp.FireCooldown; + } + private void OnThrusterShutdown(EntityUid uid, ThrusterComponent component, ComponentShutdown args) { DisableThruster(uid, component); From 26deb4cdf9909b19425bb771bbb8ed7ceff238b6 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Fri, 14 Feb 2025 14:14:43 +1100 Subject: [PATCH 273/313] Update engine to v245.0.0 (#35146) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index fea592e1d5..55571ef5b1 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit fea592e1d53b043bda73a66248576caa6e3f65dc +Subproject commit 55571ef5b131dfa6f00a38e71a356ded34ca5911 From 782b9798af6a400672dc1bda26099a74887a83f5 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Fri, 14 Feb 2025 14:41:40 +1100 Subject: [PATCH 274/313] Update staging engine to v245.0.0 (#35147) Update engine to v245.0.0 --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index fea592e1d5..55571ef5b1 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit fea592e1d53b043bda73a66248576caa6e3f65dc +Subproject commit 55571ef5b131dfa6f00a38e71a356ded34ca5911 From 0227afec4cd9061c17336db37c858d2cb09bc35b Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Fri, 14 Feb 2025 15:23:27 +0300 Subject: [PATCH 275/313] Fix: showfluids command activates for everyone (#35155) Fix --- .../Fluids/EntitySystems/PuddleDebugDebugOverlaySystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Fluids/EntitySystems/PuddleDebugDebugOverlaySystem.cs b/Content.Server/Fluids/EntitySystems/PuddleDebugDebugOverlaySystem.cs index 859f2d80a6..88acf4b703 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleDebugDebugOverlaySystem.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleDebugDebugOverlaySystem.cs @@ -84,7 +84,7 @@ public sealed class PuddleDebugDebugOverlaySystem : SharedPuddleDebugOverlaySyst data.Add(new PuddleDebugOverlayData(pos, vol)); } - RaiseNetworkEvent(new PuddleOverlayDebugMessage(GetNetEntity(gridUid), data.ToArray())); + RaiseNetworkEvent(new PuddleOverlayDebugMessage(GetNetEntity(gridUid), data.ToArray()), session); } } From 244d7a629e05a1397d9c2254a77001d2a50cc8fd Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Fri, 14 Feb 2025 17:23:35 +0300 Subject: [PATCH 276/313] Fix embeddable projectiles dissapearing (reopening) (#35153) --- .../ItemRecall/SharedItemRecallSystem.cs | 2 +- .../Projectiles/EmbeddedContainerComponent.cs | 13 +++ .../Projectiles/SharedProjectileSystem.cs | 92 +++++++++++++------ 3 files changed, 78 insertions(+), 29 deletions(-) create mode 100644 Content.Shared/Projectiles/EmbeddedContainerComponent.cs diff --git a/Content.Shared/ItemRecall/SharedItemRecallSystem.cs b/Content.Shared/ItemRecall/SharedItemRecallSystem.cs index 63d38203c6..a4a49e9708 100644 --- a/Content.Shared/ItemRecall/SharedItemRecallSystem.cs +++ b/Content.Shared/ItemRecall/SharedItemRecallSystem.cs @@ -81,7 +81,7 @@ public abstract partial class SharedItemRecallSystem : EntitySystem return; if (TryComp(ent, out var projectile)) - _proj.UnEmbed(ent, projectile, actionOwner.Value); + _proj.EmbedDetach(ent, projectile, actionOwner.Value); _popups.PopupPredicted(Loc.GetString("item-recall-item-summon", ("item", ent)), actionOwner.Value, actionOwner.Value); diff --git a/Content.Shared/Projectiles/EmbeddedContainerComponent.cs b/Content.Shared/Projectiles/EmbeddedContainerComponent.cs new file mode 100644 index 0000000000..19dd93bfbd --- /dev/null +++ b/Content.Shared/Projectiles/EmbeddedContainerComponent.cs @@ -0,0 +1,13 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Projectiles; + +/// +/// Stores a list of all stuck entities to release when this entity is deleted. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class EmbeddedContainerComponent : Component +{ + [DataField, AutoNetworkedField] + public HashSet EmbeddedObjects = new(); +} diff --git a/Content.Shared/Projectiles/SharedProjectileSystem.cs b/Content.Shared/Projectiles/SharedProjectileSystem.cs index 1d0fc16cbd..be86fd1af2 100644 --- a/Content.Shared/Projectiles/SharedProjectileSystem.cs +++ b/Content.Shared/Projectiles/SharedProjectileSystem.cs @@ -15,6 +15,7 @@ using Robust.Shared.Physics.Dynamics; using Robust.Shared.Physics.Events; using Robust.Shared.Physics.Systems; using Robust.Shared.Serialization; +using Robust.Shared.Utility; namespace Content.Shared.Projectiles; @@ -22,7 +23,7 @@ public abstract partial class SharedProjectileSystem : EntitySystem { public const string ProjectileFixture = "projectile"; - [Dependency] private readonly INetManager _netManager = default!; + [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; [Dependency] private readonly SharedHandsSystem _hands = default!; @@ -38,62 +39,63 @@ public abstract partial class SharedProjectileSystem : EntitySystem SubscribeLocalEvent(OnEmbedThrowDoHit); SubscribeLocalEvent(OnEmbedActivate); SubscribeLocalEvent(OnEmbedRemove); + + SubscribeLocalEvent(OnEmbeddableTermination); } - private void OnEmbedActivate(EntityUid uid, EmbeddableProjectileComponent component, ActivateInWorldEvent args) + private void OnEmbedActivate(Entity embeddable, ref ActivateInWorldEvent args) { - // Nuh uh - if (component.RemovalTime == null) + // Unremovable embeddables moment + if (embeddable.Comp.RemovalTime == null) return; - if (args.Handled || !args.Complex || !TryComp(uid, out var physics) || physics.BodyType != BodyType.Static) + if (args.Handled || !args.Complex || !TryComp(embeddable, out var physics) || + physics.BodyType != BodyType.Static) return; args.Handled = true; - _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, component.RemovalTime.Value, - new RemoveEmbeddedProjectileEvent(), eventTarget: uid, target: uid)); + _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, + args.User, + embeddable.Comp.RemovalTime.Value, + new RemoveEmbeddedProjectileEvent(), + eventTarget: embeddable, + target: embeddable)); } - private void OnEmbedRemove(EntityUid uid, EmbeddableProjectileComponent component, RemoveEmbeddedProjectileEvent args) + private void OnEmbedRemove(Entity embeddable, ref RemoveEmbeddedProjectileEvent args) { // Whacky prediction issues. - if (args.Cancelled || _netManager.IsClient) + if (args.Cancelled || _net.IsClient) return; - if (component.DeleteOnRemove) - { - QueueDel(uid); - return; - } - - UnEmbed(uid, component, args.User); + EmbedDetach(embeddable, embeddable.Comp, args.User); // try place it in the user's hand - _hands.TryPickupAnyHand(args.User, uid); + _hands.TryPickupAnyHand(args.User, embeddable); } - private void OnEmbedThrowDoHit(EntityUid uid, EmbeddableProjectileComponent component, ThrowDoHitEvent args) + private void OnEmbedThrowDoHit(Entity embeddable, ref ThrowDoHitEvent args) { - if (!component.EmbedOnThrow) + if (!embeddable.Comp.EmbedOnThrow) return; - Embed(uid, args.Target, null, component); + EmbedAttach(embeddable, args.Target, null, embeddable.Comp); } - private void OnEmbedProjectileHit(EntityUid uid, EmbeddableProjectileComponent component, ref ProjectileHitEvent args) + private void OnEmbedProjectileHit(Entity embeddable, ref ProjectileHitEvent args) { - Embed(uid, args.Target, args.Shooter, component); + EmbedAttach(embeddable, args.Target, args.Shooter, embeddable.Comp); // Raise a specific event for projectiles. - if (TryComp(uid, out ProjectileComponent? projectile)) + if (TryComp(embeddable, out ProjectileComponent? projectile)) { var ev = new ProjectileEmbedEvent(projectile.Shooter!.Value, projectile.Weapon!.Value, args.Target); - RaiseLocalEvent(uid, ref ev); + RaiseLocalEvent(embeddable, ref ev); } } - private void Embed(EntityUid uid, EntityUid target, EntityUid? user, EmbeddableProjectileComponent component) + private void EmbedAttach(EntityUid uid, EntityUid target, EntityUid? user, EmbeddableProjectileComponent component) { TryComp(uid, out var physics); _physics.SetLinearVelocity(uid, Vector2.Zero, body: physics); @@ -106,8 +108,7 @@ public abstract partial class SharedProjectileSystem : EntitySystem var rotation = xform.LocalRotation; if (TryComp(uid, out var throwingAngleComp)) rotation += throwingAngleComp.Angle; - _transform.SetLocalPosition(uid, xform.LocalPosition + rotation.RotateVec(component.Offset), - xform); + _transform.SetLocalPosition(uid, xform.LocalPosition + rotation.RotateVec(component.Offset), xform); } _audio.PlayPredicted(component.Sound, uid, null); @@ -115,13 +116,32 @@ public abstract partial class SharedProjectileSystem : EntitySystem var ev = new EmbedEvent(user, target); RaiseLocalEvent(uid, ref ev); Dirty(uid, component); + + EnsureComp(target, out var embeddedContainer); + + //Assert that this entity not embed + DebugTools.AssertEqual(embeddedContainer.EmbeddedObjects.Contains(uid), false); + + embeddedContainer.EmbeddedObjects.Add(uid); } - public void UnEmbed(EntityUid uid, EmbeddableProjectileComponent? component, EntityUid? user = null) + public void EmbedDetach(EntityUid uid, EmbeddableProjectileComponent? component, EntityUid? user = null) { if (!Resolve(uid, ref component)) return; + if (component.DeleteOnRemove) + { + QueueDel(uid); + return; + } + + if (component.EmbeddedIntoUid is not null) + { + if (TryComp(component.EmbeddedIntoUid.Value, out var embeddedContainer)) + embeddedContainer.EmbeddedObjects.Remove(uid); + } + var xform = Transform(uid); TryComp(uid, out var physics); _physics.SetBodyType(uid, BodyType.Dynamic, body: physics, xform: xform); @@ -149,6 +169,22 @@ public abstract partial class SharedProjectileSystem : EntitySystem _physics.WakeBody(uid, body: physics); } + private void OnEmbeddableTermination(Entity container, ref EntityTerminatingEvent args) + { + DetachAllEmbedded(container); + } + + public void DetachAllEmbedded(Entity container) + { + foreach (var embedded in container.Comp.EmbeddedObjects) + { + if (!TryComp(embedded, out var embeddedComp)) + continue; + + EmbedDetach(embedded, embeddedComp); + } + } + private void PreventCollision(EntityUid uid, ProjectileComponent component, ref PreventCollideEvent args) { if (component.IgnoreShooter && (args.OtherEntity == component.Shooter || args.OtherEntity == component.Weapon)) From 498440d369480bd5c75293813b13cd8414bbb4cd Mon Sep 17 00:00:00 2001 From: Milon Date: Fri, 14 Feb 2025 15:35:27 +0100 Subject: [PATCH 277/313] make chameleon verb predicted (#35156) * ok but what if we just predicted EVERYTHING * cleanup --- .../Systems/ChameleonClothingSystem.cs | 30 +------------------ .../SharedChameleonClothingSystem.cs | 22 ++++++++++++-- 2 files changed, 21 insertions(+), 31 deletions(-) diff --git a/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs b/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs index 3700aeb549..5c8954cc69 100644 --- a/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs +++ b/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs @@ -3,18 +3,13 @@ using Content.Shared.Clothing.Components; using Content.Shared.Clothing.EntitySystems; using Content.Shared.IdentityManagement.Components; using Content.Shared.Prototypes; -using Content.Shared.Verbs; -using Robust.Server.GameObjects; -using Robust.Shared.Player; using Robust.Shared.Prototypes; -using Robust.Shared.Utility; namespace Content.Server.Clothing.Systems; public sealed class ChameleonClothingSystem : SharedChameleonClothingSystem { [Dependency] private readonly IPrototypeManager _proto = default!; - [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; [Dependency] private readonly IComponentFactory _factory = default!; [Dependency] private readonly IdentitySystem _identity = default!; @@ -22,7 +17,6 @@ public sealed class ChameleonClothingSystem : SharedChameleonClothingSystem { base.Initialize(); SubscribeLocalEvent(OnMapInit); - SubscribeLocalEvent>(OnVerb); SubscribeLocalEvent(OnSelected); } @@ -31,40 +25,18 @@ public sealed class ChameleonClothingSystem : SharedChameleonClothingSystem SetSelectedPrototype(uid, component.Default, true, component); } - private void OnVerb(EntityUid uid, ChameleonClothingComponent component, GetVerbsEvent args) - { - if (!args.CanAccess || !args.CanInteract || component.User != args.User) - return; - - args.Verbs.Add(new InteractionVerb() - { - Text = Loc.GetString("chameleon-component-verb-text"), - Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/settings.svg.192dpi.png")), - Act = () => TryOpenUi(uid, args.User, component) - }); - } - private void OnSelected(EntityUid uid, ChameleonClothingComponent component, ChameleonPrototypeSelectedMessage args) { SetSelectedPrototype(uid, args.SelectedId, component: component); } - private void TryOpenUi(EntityUid uid, EntityUid user, ChameleonClothingComponent? component = null) - { - if (!Resolve(uid, ref component)) - return; - if (!TryComp(user, out ActorComponent? actor)) - return; - _uiSystem.TryToggleUi(uid, ChameleonUiKey.Key, actor.PlayerSession); - } - private void UpdateUi(EntityUid uid, ChameleonClothingComponent? component = null) { if (!Resolve(uid, ref component)) return; var state = new ChameleonBoundUserInterfaceState(component.Slot, component.Default, component.RequireTag); - _uiSystem.SetUiState(uid, ChameleonUiKey.Key, state); + UI.SetUiState(uid, ChameleonUiKey.Key, state); } /// diff --git a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs index 488b7a5b64..725b034766 100644 --- a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs @@ -5,8 +5,9 @@ using Content.Shared.Inventory; using Content.Shared.Inventory.Events; using Content.Shared.Item; using Content.Shared.Tag; +using Content.Shared.Verbs; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.Manager; +using Robust.Shared.Utility; namespace Content.Shared.Clothing.EntitySystems; @@ -14,19 +15,20 @@ public abstract class SharedChameleonClothingSystem : EntitySystem { [Dependency] private readonly IComponentFactory _factory = default!; [Dependency] private readonly IPrototypeManager _proto = default!; - [Dependency] private readonly ISerializationManager _serialization = default!; [Dependency] private readonly ClothingSystem _clothingSystem = default!; [Dependency] private readonly ContrabandSystem _contraband = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly SharedItemSystem _itemSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly TagSystem _tag = default!; + [Dependency] protected readonly SharedUserInterfaceSystem UI = default!; public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnGotEquipped); SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent>(OnVerb); } private void OnGotEquipped(EntityUid uid, ChameleonClothingComponent component, GotEquippedEvent args) @@ -94,6 +96,22 @@ public abstract class SharedChameleonClothingSystem : EntitySystem } } + private void OnVerb(Entity ent, ref GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || ent.Comp.User != args.User) + return; + + // Can't pass args from a ref event inside of lambdas + var user = args.User; + + args.Verbs.Add(new InteractionVerb() + { + Text = Loc.GetString("chameleon-component-verb-text"), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/settings.svg.192dpi.png")), + Act = () => UI.TryToggleUi(ent.Owner, ChameleonUiKey.Key, user) + }); + } + protected virtual void UpdateSprite(EntityUid uid, EntityPrototype proto) { } /// From db732a25810a2d96cdf5d51f5d95d906695bb21a Mon Sep 17 00:00:00 2001 From: keronshb <54602815+keronshb@users.noreply.github.com> Date: Fri, 14 Feb 2025 10:01:40 -0500 Subject: [PATCH 278/313] Supermatter Grenade Rework (#35122) * Renames Supermatter grenade to singularity grenade. Removes explosion from Singularity Grenade. * Adjusts Singularity Grenade to account for engine changes, small buff to max range * Adjusts further * fix order --------- Co-authored-by: Milon --- .../Locale/en-US/store/uplink-catalog.ftl | 4 +-- .../Prototypes/Catalog/uplink_catalog.yml | 8 +++--- .../Objects/Weapons/Throwable/grenades.yml | 27 +++++++----------- .../icon.png | Bin .../meta.json | 0 .../primed.png | Bin 6 files changed, 17 insertions(+), 22 deletions(-) rename Resources/Textures/Objects/Weapons/Grenades/{supermattergrenade.rsi => singularitygrenade.rsi}/icon.png (100%) rename Resources/Textures/Objects/Weapons/Grenades/{supermattergrenade.rsi => singularitygrenade.rsi}/meta.json (100%) rename Resources/Textures/Objects/Weapons/Grenades/{supermattergrenade.rsi => singularitygrenade.rsi}/primed.png (100%) diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index 907e47a126..2ff6c16f5a 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -42,8 +42,8 @@ uplink-smoke-grenade-desc = A grenade that releases a huge cloud of smoke, perfe uplink-mini-bomb-name = Minibomb uplink-mini-bomb-desc = A low-yield, high-impact precision sabotage explosive with a 5 second long fuse. Perfect for quickly destroying a machine, dead body, or whatever else needs to go. -uplink-supermatter-grenade-name = Supermatter Grenade -uplink-supermatter-grenade-desc = Grenade that simulates delamination of a suppermatter engine, generates powerful gravity well. Explosion comparable to a Mini Bomb. +uplink-singularity-grenade-name = Singularity Grenade +uplink-singularity-grenade-desc = Grenade that simulates the power of a singularity, generates powerful gravity well. uplink-whitehole-grenade-name = Whitehole Grenade uplink-whitehole-grenade-desc = Grenade that repulses everything around for about 10 seconds. Very useful in small rooms and for chasing someone. diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index 7e3b939781..7f0f668cb7 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -263,10 +263,10 @@ - UplinkExplosives - type: listing - id: UplinkSupermatterGrenade - name: uplink-supermatter-grenade-name - description: uplink-supermatter-grenade-desc - productEntity: SupermatterGrenade + id: UplinkSingularityGrenade + name: uplink-singularity-grenade-name + description: uplink-singularity-grenade-desc + productEntity: SingularityGrenade discountCategory: usualDiscounts discountDownTo: Telecrystal: 3 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml index 08d6d855a8..d3a714445e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml @@ -165,13 +165,13 @@ - type: entity - name: supermatter grenade - description: Grenade that simulates delamination of the supermatter engine, pulling things in a heap and exploding after some time. - parent: [GrenadeBase, BaseSyndicateContraband] - id: SupermatterGrenade + parent: [ GrenadeBase, BaseSyndicateContraband ] + id: SingularityGrenade + name: singularity grenade + description: Grenade that simulates the power of a singularity, pulling things in a heap. components: - type: Sprite - sprite: Objects/Weapons/Grenades/supermattergrenade.rsi + sprite: Objects/Weapons/Grenades/singularitygrenade.rsi - type: OnUseTimerTrigger delay: 3 beepInterval: 0.46 @@ -184,11 +184,6 @@ path: /Audio/Effects/Grenades/Supermatter/smbeep.ogg params: volume: -5 - - type: Explosive - explosionType: Default - totalIntensity: 200 - intensitySlope: 30 - maxIntensity: 120 - type: SoundOnTrigger removeOnTrigger: true sound: @@ -206,10 +201,10 @@ sound: path: /Audio/Effects/Grenades/Supermatter/supermatter_loop.ogg - type: GravityWell - maxRange: 8 - baseRadialAcceleration: 145 - baseTangentialAcceleration: 5 - gravPulsePeriod: 0.01 + maxRange: 10 + baseRadialAcceleration: 5 + baseTangentialAcceleration: .5 + gravPulsePeriod: 0.03 - type: SingularityDistortion intensity: 150 falloffPower: 1.5 @@ -225,12 +220,12 @@ path: /Audio/Effects/Grenades/Supermatter/supermatter_end.ogg params: volume: 5 - - type: ExplodeOnTrigger + - type: DeleteOnTrigger - type: entity name: whitehole grenade description: Grenade that repulses everything around for some time. - parent: SupermatterGrenade + parent: SingularityGrenade id: WhiteholeGrenade components: - type: Sprite diff --git a/Resources/Textures/Objects/Weapons/Grenades/supermattergrenade.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/singularitygrenade.rsi/icon.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Grenades/supermattergrenade.rsi/icon.png rename to Resources/Textures/Objects/Weapons/Grenades/singularitygrenade.rsi/icon.png diff --git a/Resources/Textures/Objects/Weapons/Grenades/supermattergrenade.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/singularitygrenade.rsi/meta.json similarity index 100% rename from Resources/Textures/Objects/Weapons/Grenades/supermattergrenade.rsi/meta.json rename to Resources/Textures/Objects/Weapons/Grenades/singularitygrenade.rsi/meta.json diff --git a/Resources/Textures/Objects/Weapons/Grenades/supermattergrenade.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/singularitygrenade.rsi/primed.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Grenades/supermattergrenade.rsi/primed.png rename to Resources/Textures/Objects/Weapons/Grenades/singularitygrenade.rsi/primed.png From 63b9255e71bb82b9b34286f33d4c41ac69beeac2 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 14 Feb 2025 15:02:50 +0000 Subject: [PATCH 279/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f99dca0583..87f34230f6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: ElectroJr - changes: - - message: There is now a rate limit for most interactions. It should not be noticeable - most of the time, but may lead to mispredicts when spam-clicking. - type: Tweak - id: 7454 - time: '2024-09-29T12:19:00.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32527 - author: ArtisticRoomba changes: - message: HoS's energy shotgun is now correctly marked as grand theft contraband. @@ -3887,3 +3879,12 @@ id: 7953 time: '2025-02-13T22:35:59.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35083 +- author: keronshb + changes: + - message: The Supermatter Grenade has been renamed to Singularity Grenade. + type: Tweak + - message: The Singularity Grenade no longer has an explosion. + type: Remove + id: 7954 + time: '2025-02-14T15:01:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35122 From 862a2a744e1a8cb2643851b0f85c1372b1feadb6 Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Fri, 14 Feb 2025 07:46:25 -0800 Subject: [PATCH 280/313] Predicted dice rolls (#34863) * Predicted dice rolls * Removed server-side dice system, make Shared no longer abstract, move visual code to client-side system * cleanup --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Content.Client/Dice/DiceSystem.cs | 15 ++++-- Content.Server/Dice/DiceSystem.cs | 25 +-------- Content.Shared/Dice/DiceComponent.cs | 1 - Content.Shared/Dice/SharedDiceSystem.cs | 69 ++++++++++++------------- 4 files changed, 45 insertions(+), 65 deletions(-) diff --git a/Content.Client/Dice/DiceSystem.cs b/Content.Client/Dice/DiceSystem.cs index 2d36488257..2890de5f2f 100644 --- a/Content.Client/Dice/DiceSystem.cs +++ b/Content.Client/Dice/DiceSystem.cs @@ -5,17 +5,24 @@ namespace Content.Client.Dice; public sealed class DiceSystem : SharedDiceSystem { - protected override void UpdateVisuals(EntityUid uid, DiceComponent? die = null) + public override void Initialize() { - if (!Resolve(uid, ref die) || !TryComp(uid, out SpriteComponent? sprite)) + base.Initialize(); + + SubscribeLocalEvent(OnDiceAfterHandleState); + } + + private void OnDiceAfterHandleState(Entity entity, ref AfterAutoHandleStateEvent args) + { + if (!TryComp(entity, out var sprite)) return; - // TODO maybe just move each diue to its own RSI? + // TODO maybe just move each die to its own RSI? var state = sprite.LayerGetState(0).Name; if (state == null) return; var prefix = state.Substring(0, state.IndexOf('_')); - sprite.LayerSetState(0, $"{prefix}_{die.CurrentValue}"); + sprite.LayerSetState(0, $"{prefix}_{entity.Comp.CurrentValue}"); } } diff --git a/Content.Server/Dice/DiceSystem.cs b/Content.Server/Dice/DiceSystem.cs index 2d13679bd0..c2cb62a250 100644 --- a/Content.Server/Dice/DiceSystem.cs +++ b/Content.Server/Dice/DiceSystem.cs @@ -1,28 +1,5 @@ using Content.Shared.Dice; -using Content.Shared.Popups; -using JetBrains.Annotations; -using Robust.Shared.Audio; -using Robust.Shared.Audio.Systems; -using Robust.Shared.Random; namespace Content.Server.Dice; -[UsedImplicitly] -public sealed class DiceSystem : SharedDiceSystem -{ - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SharedPopupSystem _popup = default!; - - public override void Roll(EntityUid uid, DiceComponent? die = null) - { - if (!Resolve(uid, ref die)) - return; - - var roll = _random.Next(1, die.Sides + 1); - SetCurrentSide(uid, roll, die); - - _popup.PopupEntity(Loc.GetString("dice-component-on-roll-land", ("die", uid), ("currentSide", die.CurrentValue)), uid); - _audio.PlayPvs(die.Sound, uid); - } -} +public sealed class DiceSystem : SharedDiceSystem; diff --git a/Content.Shared/Dice/DiceComponent.cs b/Content.Shared/Dice/DiceComponent.cs index c01ad3c451..27f7bd70e0 100644 --- a/Content.Shared/Dice/DiceComponent.cs +++ b/Content.Shared/Dice/DiceComponent.cs @@ -1,6 +1,5 @@ using Robust.Shared.Audio; using Robust.Shared.GameStates; -using Robust.Shared.Serialization; namespace Content.Shared.Dice; diff --git a/Content.Shared/Dice/SharedDiceSystem.cs b/Content.Shared/Dice/SharedDiceSystem.cs index 8e2868e791..71a51584d3 100644 --- a/Content.Shared/Dice/SharedDiceSystem.cs +++ b/Content.Shared/Dice/SharedDiceSystem.cs @@ -1,12 +1,18 @@ using Content.Shared.Examine; using Content.Shared.Interaction.Events; +using Content.Shared.Popups; using Content.Shared.Throwing; -using Robust.Shared.GameStates; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Timing; namespace Content.Shared.Dice; public abstract class SharedDiceSystem : EntitySystem { + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + public override void Initialize() { base.Initialize(); @@ -14,76 +20,67 @@ public abstract class SharedDiceSystem : EntitySystem SubscribeLocalEvent(OnUseInHand); SubscribeLocalEvent(OnLand); SubscribeLocalEvent(OnExamined); - SubscribeLocalEvent(OnDiceAfterHandleState); } - private void OnDiceAfterHandleState(EntityUid uid, DiceComponent component, ref AfterAutoHandleStateEvent args) - { - UpdateVisuals(uid, component); - } - - private void OnUseInHand(EntityUid uid, DiceComponent component, UseInHandEvent args) + private void OnUseInHand(Entity entity, ref UseInHandEvent args) { if (args.Handled) return; + Roll(entity, args.User); args.Handled = true; - Roll(uid, component); } - private void OnLand(EntityUid uid, DiceComponent component, ref LandEvent args) + private void OnLand(Entity entity, ref LandEvent args) { - Roll(uid, component); + Roll(entity); } - private void OnExamined(EntityUid uid, DiceComponent dice, ExaminedEvent args) + private void OnExamined(Entity entity, ref ExaminedEvent args) { //No details check, since the sprite updates to show the side. using (args.PushGroup(nameof(DiceComponent))) { - args.PushMarkup(Loc.GetString("dice-component-on-examine-message-part-1", ("sidesAmount", dice.Sides))); + args.PushMarkup(Loc.GetString("dice-component-on-examine-message-part-1", ("sidesAmount", entity.Comp.Sides))); args.PushMarkup(Loc.GetString("dice-component-on-examine-message-part-2", - ("currentSide", dice.CurrentValue))); + ("currentSide", entity.Comp.CurrentValue))); } } - public void SetCurrentSide(EntityUid uid, int side, DiceComponent? die = null) + private void SetCurrentSide(Entity entity, int side) { - if (!Resolve(uid, ref die)) - return; - - if (side < 1 || side > die.Sides) + if (side < 1 || side > entity.Comp.Sides) { - Log.Error($"Attempted to set die {ToPrettyString(uid)} to an invalid side ({side})."); + Log.Error($"Attempted to set die {ToPrettyString(entity)} to an invalid side ({side})."); return; } - die.CurrentValue = (side - die.Offset) * die.Multiplier; - Dirty(uid, die); - UpdateVisuals(uid, die); + entity.Comp.CurrentValue = (side - entity.Comp.Offset) * entity.Comp.Multiplier; + Dirty(entity); } - public void SetCurrentValue(EntityUid uid, int value, DiceComponent? die = null) + public void SetCurrentValue(Entity entity, int value) { - if (!Resolve(uid, ref die)) - return; - - if (value % die.Multiplier != 0 || value/ die.Multiplier + die.Offset < 1) + if (value % entity.Comp.Multiplier != 0 || value / entity.Comp.Multiplier + entity.Comp.Offset < 1) { - Log.Error($"Attempted to set die {ToPrettyString(uid)} to an invalid value ({value})."); + Log.Error($"Attempted to set die {ToPrettyString(entity)} to an invalid value ({value})."); return; } - SetCurrentSide(uid, value / die.Multiplier + die.Offset, die); + SetCurrentSide(entity, value / entity.Comp.Multiplier + entity.Comp.Offset); } - protected virtual void UpdateVisuals(EntityUid uid, DiceComponent? die = null) + private void Roll(Entity entity, EntityUid? user = null) { - // See client system. - } + var rand = new System.Random((int)_timing.CurTick.Value); - public virtual void Roll(EntityUid uid, DiceComponent? die = null) - { - // See the server system, client cannot predict rolling. + var roll = rand.Next(1, entity.Comp.Sides + 1); + SetCurrentSide(entity, roll); + + var popupString = Loc.GetString("dice-component-on-roll-land", + ("die", entity), + ("currentSide", entity.Comp.CurrentValue)); + _popup.PopupPredicted(popupString, entity, user); + _audio.PlayPredicted(entity.Comp.Sound, entity, user); } } From ef4f5cf0a1acb338e101ac1a99a585c9c738bde4 Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Fri, 14 Feb 2025 19:59:19 -0800 Subject: [PATCH 281/313] Engineering guidebook improvements (#34695) * engineering guidebook improvements * whoops * Changes * this game is en-US, so it shall be gasses, not gases * make changes to AccessConfigurator.xml, SolarPanels.xml, TeslaEngine.xml --------- Co-authored-by: ScarKy0 --- .../Solar/Components/SolarPanelComponent.cs | 2 + .../Entities/Objects/Devices/flatpack.yml | 4 +- .../Power/Generation/PA/particles.yml | 4 +- .../Structures/Power/Generation/ame.yml | 4 +- .../Structures/Power/Generation/teg.yml | 8 ++-- .../Engineering/AccessConfigurator.xml | 22 ++++++++-- .../Guidebook/Engineering/AirInjector.xml | 3 +- .../Guidebook/Engineering/AirVent.xml | 4 +- .../Guidebook/Engineering/Fires.xml | 2 +- .../Engineering/MixingAndFiltering.xml | 12 +++--- .../Engineering/PortableGenerator.xml | 4 +- .../Engineering/PortableScrubber.xml | 8 ++-- .../Guidebook/Engineering/PowerStorage.xml | 8 ++-- .../Guidebook/Engineering/Pumps.xml | 4 +- .../ServerInfo/Guidebook/Engineering/RTG.xml | 2 +- .../Guidebook/Engineering/Radiators.xml | 2 + .../Guidebook/Engineering/Ramping.xml | 4 +- .../Guidebook/Engineering/Shuttlecraft.xml | 4 +- .../Guidebook/Engineering/SignalValve.xml | 4 +- .../Engineering/SingularityEngine.xml | 10 ++--- .../Guidebook/Engineering/SolarPanels.xml | 19 +++++++- .../Guidebook/Engineering/Spacing.xml | 4 +- .../ServerInfo/Guidebook/Engineering/TEG.xml | 22 +++++----- .../Guidebook/Engineering/TeslaEngine.xml | 43 ++++++++++--------- .../Guidebook/Engineering/Thermomachines.xml | 14 +++--- .../Guidebook/Engineering/WirePanels.xml | 6 +-- 26 files changed, 129 insertions(+), 94 deletions(-) diff --git a/Content.Server/Solar/Components/SolarPanelComponent.cs b/Content.Server/Solar/Components/SolarPanelComponent.cs index 870b4c78ef..edf622d06f 100644 --- a/Content.Server/Solar/Components/SolarPanelComponent.cs +++ b/Content.Server/Solar/Components/SolarPanelComponent.cs @@ -1,4 +1,5 @@ using Content.Server.Solar.EntitySystems; +using Content.Shared.Guidebook; namespace Content.Server.Solar.Components { @@ -15,6 +16,7 @@ namespace Content.Server.Solar.Components /// Maximum supply output by this panel (coverage = 1) /// [DataField("maxSupply")] + [GuidebookData] public int MaxSupply = 750; /// diff --git a/Resources/Prototypes/Entities/Objects/Devices/flatpack.yml b/Resources/Prototypes/Entities/Objects/Devices/flatpack.yml index 4facfd91b3..fa23947c5c 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/flatpack.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/flatpack.yml @@ -83,8 +83,8 @@ - state: singularity-generator - type: GuideHelp guides: - - SingularityEngine - - Power + - SingularityEngine + - Power - type: entity parent: BaseFlatpack diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml index 0a36d91e38..6e55bfec5e 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml @@ -48,8 +48,8 @@ Level3: {state: particle3} - type: GuideHelp # why does this even have a guidebook link in the first place guides: - - SingularityTeslaEngine - - Power + - SingularityTeslaEngine + - Power - type: entity name: anti particles diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml index 550dddc847..b3723252d3 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml @@ -204,8 +204,8 @@ node: ameShielding - type: GuideHelp guides: - - AME - - Power + - AME + - Power - type: Electrified onHandInteract: false onInteractUsing: false diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml index 860462788b..e6e4b6b72b 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml @@ -98,8 +98,8 @@ path: /Audio/Ambience/Objects/vending_machine_hum.ogg - type: GuideHelp guides: - - TEG - - Power + - TEG + - Power - type: StealTarget stealGroup: Teg @@ -159,8 +159,8 @@ - type: Pullable - type: GuideHelp guides: - - TEG - - Power + - TEG + - Power # functionality - type: NodeContainer diff --git a/Resources/ServerInfo/Guidebook/Engineering/AccessConfigurator.xml b/Resources/ServerInfo/Guidebook/Engineering/AccessConfigurator.xml index fea8104a5b..a73bdde959 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/AccessConfigurator.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/AccessConfigurator.xml @@ -27,8 +27,24 @@ A device with no access requirements set, like a public access airlock, can be modified using any valid station ID card. - ## Repairing damaged ID card readers - Syndicate agents may attempt to hack access-restricted devices through the use of a [color=#a4885c]Cryptographic Sequencer (EMAG)[/color]. This nefarious tool will completely short out any ID card readers that are attached to the device. + ## Repairing access-broken ID card readers + Syndicate agents may attempt to hack access-restricted devices through the use of an [color=#a4885c]Authentication Disruptor[/color]. + This nefarious tool will completely short out any ID card readers that are attached to the device, making it all-access. + + + + + + To repair the damage, you'll commonly need to partially deconstruct the device and reconstruct it. + This will reset the access requirements to defaults, allowing you to reconfigure the device as needed. + + ## Repairing access-broken Airlocks + Airlocks can be repaired multiple ways if their access requirements have been tampered with. + + If you have an Access Configurator, you can use a [color=#a4885c]Screwdriver[/color] to remove the airlock's maintenance panel, and then use the Access Configurator to reconfigure the airlock's access requirements. + No partial deconstruction is needed. + + If you don't have an Access Configurator, you can still fix the airlock by partially deconstructing it until you remove the door electronics, and then reconstructing it. + This will reset the airlock to the default access requirements it had at the start of the shift. - Engineers will need to partially de/reconstruct affected devices, and then set appropriate access permissions afterwards using the access configurator (or network configurator, for airlocks), to re-establish access restrictions. diff --git a/Resources/ServerInfo/Guidebook/Engineering/AirInjector.xml b/Resources/ServerInfo/Guidebook/Engineering/AirInjector.xml index 3c4027dcb3..54b9cccba8 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/AirInjector.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/AirInjector.xml @@ -4,12 +4,11 @@ - It is primarily used to force gasses into high-pressure rooms like the station's [textlink="gas storage rooms" link="GasMiningAndStorage"], or a burn chamber. + It is primarily used to force gasses into high-pressure rooms like the station's [textlink="gas storage rooms" link="GasMiningAndStorage"] or a burn chamber. The air injector does not require [textlink="power" link="Power"] to function. The air injector will inject gasses into the atmosphere it's exposed to until the atmosphere reaches [color=orange][protodata="GasOutletInjector" comp="GasOutletInjector" member="MaxPressure"/] kPa[/color]. The air injector's speed is proportional to the amount of gas in the injector. - The more gas in the injector, the faster it will inject gas into the exposed atmosphere. diff --git a/Resources/ServerInfo/Guidebook/Engineering/AirVent.xml b/Resources/ServerInfo/Guidebook/Engineering/AirVent.xml index d6b81fa19b..bbdd1a530a 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/AirVent.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/AirVent.xml @@ -53,8 +53,8 @@ - If the Internal bound pressure is set to 50 kPa, the air vent will not draw gas from the connected pipe if its pressure is below 50 kPa. When the vent is in siphoning mode: - - If the External bound pressure is set to 101.3 kPa, the air vent will siphon gases until the atmosphere reaches 101.3 kPa. - - If the Internal bound pressure is set to 50 kPa, the air vent will not push gases into the pipenet if its pressure is above 50 kPa. + - If the External bound pressure is set to 101.3 kPa, the air vent will siphon gasses until the atmosphere reaches 101.3 kPa. + - If the Internal bound pressure is set to 50 kPa, the air vent will not push gasses into the pipenet if its pressure is above 50 kPa. If you're still confused about PressureBounds, here's a simple way to think about it: - You can think of the External bound as the upper limit for the exposed atmosphere. "I will not pressurize the exposed atmosphere past this pressure, or draw from the atmosphere below this pressure." diff --git a/Resources/ServerInfo/Guidebook/Engineering/Fires.xml b/Resources/ServerInfo/Guidebook/Engineering/Fires.xml index ca728f1e8d..1afcca89f7 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Fires.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Fires.xml @@ -7,7 +7,7 @@ - They often make high-pressure and high-temperature gases, which can quickly spread throughout the station if firelocks or doors are opened carelessly, even if only for a moment. + They often make high-pressure and high-temperature gasses, which can quickly spread throughout the station if firelocks or doors are opened carelessly, even if only for a moment. If people are caught in a fire, they can quickly become incapacitated, die, and even ash, rendering them unrevivable. diff --git a/Resources/ServerInfo/Guidebook/Engineering/MixingAndFiltering.xml b/Resources/ServerInfo/Guidebook/Engineering/MixingAndFiltering.xml index 5814dd4b08..d38dd1bd99 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/MixingAndFiltering.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/MixingAndFiltering.xml @@ -1,13 +1,13 @@ # Mixing and Filtering - Gas mixers and filters are essential tools for manipulating the composition of gases within a [textlink="pipe network" link="PipeNetworks"]. + Gas mixers and filters are essential tools for manipulating the composition of gasses within a [textlink="pipe network" link="PipeNetworks"]. ## Gas Mixer - Gas mixers are used to combine gases in specific ratios within a [textlink="pipe network." link="PipeNetworks"] + Gas mixers are used to combine gasses in specific ratios within a [textlink="pipe network." link="PipeNetworks"] They are essential for creating controlled gas mixtures for various applications. Gas mixers have 3 connections: 2 inputs and 1 output, as shown below: @@ -20,7 +20,7 @@ - Gas mixers will still respect the requested gas mixture even if one of the input gases is not available. For example: + Gas mixers will still respect the requested gas mixture even if one of the input gasses is not available. For example: - If the requested mixture is 22% oxygen and 78% nitrogen, but there is no available oxygen, the mixer will not work until oxygen is available. - If oxygen is available, but at a pressure lower than required to create the proper mixture at the requested pressure, the mixer will still create the mixture, but the output will be at a lower pressure than requested. @@ -36,7 +36,7 @@ - Mixing oxygen and plasma for plasma burning to create Tritium ## Gas Filter - Gas filters are used to separate gases from a mixture within a [textlink="pipe network." link="PipeNetworks"] + Gas filters are used to separate gasses from a mixture within a [textlink="pipe network." link="PipeNetworks"] @@ -50,6 +50,6 @@ Gas filters will become blocked and will not filter gas if either output is blocked. Gas filters can be used in a variety of applications, for example: - - Filtering out unwanted gases from a [textlink="pipe network" link="PipeNetworks"] - - Separating specific gases for storage in a station's recyclernet + - Filtering out unwanted gasses from a [textlink="pipe network" link="PipeNetworks"] + - Separating specific gasses for storage in a station's recyclernet diff --git a/Resources/ServerInfo/Guidebook/Engineering/PortableGenerator.xml b/Resources/ServerInfo/Guidebook/Engineering/PortableGenerator.xml index 55a1e7fde5..d4eee0f597 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/PortableGenerator.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/PortableGenerator.xml @@ -22,7 +22,7 @@ Setup is incredibly easy: wrench it down above an [color=green]LV[/color] power cable, give it some welding fuel, and start it up. - Welding fuel is the only fuel source the J.R.P.A.C.M.A.N. can use, and it can be found in welding fuel tanks across the station, commonly in maintenance areas. + Welding fuel is the only fuel source the J.R.P.A.C.M.A.N. can use and it can be found in welding fuel tanks across the station, commonly in maintenance areas. # The Big Ones @@ -41,7 +41,7 @@ The S.U.P.E.R.P.A.C.M.A.N. boasts a larger power output (up to [color=orange][protodata="PortableGeneratorSuperPacman" comp="FuelGenerator" member="MaxTargetPower" format="N0"/] W[/color]) and longer runtime at maximum output, but scales down to lower outputs less efficiently. - They connect directly to [color=yellow]MV[/color] or [color=orange]HV[/color] [textlink="power cables" link="VoltageNetworks"], and are able to switch between them for flexibility. + They connect directly to [color=yellow]MV[/color] or [color=orange]HV[/color] [textlink="power cables" link="VoltageNetworks"] and are able to switch between them for flexibility. The S.U.P.E.R.P.A.C.M.A.N and P.A.C.M.A.N require uranium sheets and plasma sheets as fuel, respectively. diff --git a/Resources/ServerInfo/Guidebook/Engineering/PortableScrubber.xml b/Resources/ServerInfo/Guidebook/Engineering/PortableScrubber.xml index 287e591ff3..cfc82b9d72 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/PortableScrubber.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/PortableScrubber.xml @@ -5,16 +5,16 @@ - It is invaluable for quickly scrubbing unwanted gasses from a room when regular [textlink="scrubbers" link="AirScrubber"] are working too slow, or when a [textlink="scrubber" link="AirScrubber"] is not present. + It is invaluable for quickly removing unwanted gasses from a room when regular [textlink="scrubbers" link="AirScrubber"] are working too slow, or when a [textlink="scrubber" link="AirScrubber"] is not present. The portable scrubber requires [textlink="power" link="Power"] through a nearby [textlink="LV cable" link="VoltageNetworks"] to function. - The portable scrubber automatically starts scrubbing all non-breathable gasses from the room when it is bolted (wrenched) to the floor. + The portable scrubber automatically starts removing all non-breathable gasses from the room when it is bolted (wrenched) to the floor. - It will stop scrubbing when unbolted (unwrenched) from the floor, or when its internal volume is full. The scrubber has an internal capacity of [color=orange][protodata="PortableScrubber" comp="PortableScrubber" member="Volume"/] liters[/color]. + It will stop scrubbing when unbolted (unwrenched) from the floor or when its internal volume is full. The scrubber has an internal capacity of [color=orange][protodata="PortableScrubber" comp="PortableScrubber" member="Volume"/] liters[/color]. ## Dumping Waste and Storage - The scrubber's internal volume can be emptied by bolting (wrenching it) onto a [textlink="connector" link="GasCanisters"]. + The scrubber's internal volume can be emptied by anchoring (wrenching) onto a [textlink="connector" link="GasCanisters"]. Stations commonly have a dedicated emptying point to quickly transfer the waste from the scrubber to the station's wastenet. diff --git a/Resources/ServerInfo/Guidebook/Engineering/PowerStorage.xml b/Resources/ServerInfo/Guidebook/Engineering/PowerStorage.xml index efd0167eb1..729e1720e1 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/PowerStorage.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/PowerStorage.xml @@ -29,7 +29,7 @@ - SMESes can store [color=orange][protodata="SMESBasic" comp="Battery" member="MaxCharge" format="N0"/] J[/color] of energy, and can output a maximum [color=orange][protodata="SMESBasic" comp="PowerNetworkBattery" member="MaxSupply" format="N0"/] W[/color] of power. + SMESes can store [color=orange][protodata="SMESBasic" comp="Battery" member="MaxCharge" format="N0"/] J[/color] of energy and can output a maximum [color=orange][protodata="SMESBasic" comp="PowerNetworkBattery" member="MaxSupply" format="N0"/] W[/color] of power. If the battery is full, the SMES will pass through the power it receives from the input cable to the output cable. In the event of a power deficit, the SMES will ramp up to supplement the power draw. @@ -41,10 +41,10 @@ They're primarily used in station SMES arrays to store large amounts of power for the station's power grid. - They help to buy engineers time to setup power at roundstart, or to provide power in the event of a power deficit for extended periods of time. + They help to buy engineers time to setup power at roundstart or to provide power in the event of a power deficit for extended periods of time. - Advanced SMESes can store [color=orange][protodata="SMESAdvanced" comp="Battery" member="MaxCharge" format="N0"/] J[/color] of energy, and can output a maximum [color=orange][protodata="SMESAdvanced" comp="PowerNetworkBattery" member="MaxSupply" format="N0"/] W[/color] of power. + Advanced SMESes can store [color=orange][protodata="SMESAdvanced" comp="Battery" member="MaxCharge" format="N0"/] J[/color] of energy and can output a maximum [color=orange][protodata="SMESAdvanced" comp="PowerNetworkBattery" member="MaxSupply" format="N0"/] W[/color] of power. - Keep in mind that these aren't a magic solution to power deficits, and they can't store infinite energy. + Keep in mind that these aren't a magic solution to power deficits and they can't store infinite energy. A station load will drain these battries quickly if there is no power source partially supporting them. diff --git a/Resources/ServerInfo/Guidebook/Engineering/Pumps.xml b/Resources/ServerInfo/Guidebook/Engineering/Pumps.xml index 7b399b0e5a..3574e34a82 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Pumps.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Pumps.xml @@ -1,7 +1,7 @@  # Pumps Pumps are the primary way of actively moving gasses through a [textlink="pipenet." link="PipeNetworks"] - They take gas from one side, and push it to the other. + They take gas from one side and push it to the other. There are two different types of pumps: @@ -16,7 +16,7 @@ - Pumps cannot move gasses into pipes with pressures or volumes exceeding their [color=#a4885c]limit[/color]. This causes them to be [color=red]blocked[/color]. Pumps will show a colorful animation when they are doing work. - If they have no gas to pump, or they are blocked, they will show a blinking [color=red]red[/color] animation. + If they have no gas to pump or they are blocked, they will show a blinking [color=red]red[/color] animation. Pumps that are off, have no power, or are unanchored will show no animation. ## Pressure Pumps diff --git a/Resources/ServerInfo/Guidebook/Engineering/RTG.xml b/Resources/ServerInfo/Guidebook/Engineering/RTG.xml index 06280d5eef..d412251e24 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/RTG.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/RTG.xml @@ -9,7 +9,7 @@ They require no maintenance and are a reliable source of power, making them ideal for powering essential systems that need to be online at all times, like Telecoms, the AI, or the Crew Monitoring Server. - RTGs always generate [color=orange][protodata="GeneratorRTG" comp="PowerSupplier" member="MaxSupply" format="N0"/] W[/color] of power, and must be connected to an [color=orange]HV power[/color] [textlink="network" link="VoltageNetworks"] to function. + RTGs always generate [color=orange][protodata="GeneratorRTG" comp="PowerSupplier" member="MaxSupply" format="N0"/] W[/color] of power and must be connected to an [color=orange]HV power[/color] [textlink="network" link="VoltageNetworks"] to function. However, they're only accessible through salvage finding one on an expedition. Should they bring some in, make sure to thank them! diff --git a/Resources/ServerInfo/Guidebook/Engineering/Radiators.xml b/Resources/ServerInfo/Guidebook/Engineering/Radiators.xml index 0d3ec5f8f6..5471142270 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Radiators.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Radiators.xml @@ -21,6 +21,8 @@ If you're exchanging heat with space, you can only get as cold as space. To increase the efficiency of radiation, you can build radiators on lattice, which will allow the radiator to radiate more heat, compared to being directly attached to hull tile. + Gas will flow naturally through the radiator via differences in pressure, but you can use a gas pump to increase the flow rate. + Increasing the flow rate of gas through the radiator will increase the rate of heat exchange. diff --git a/Resources/ServerInfo/Guidebook/Engineering/Ramping.xml b/Resources/ServerInfo/Guidebook/Engineering/Ramping.xml index 6799353143..b7ef39c2a4 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Ramping.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Ramping.xml @@ -12,9 +12,9 @@ - After some seconds have passed, the generator will have ramped up to 100 kW of power, and the brownout will end. All devices are now satisfied with the power they are receiving. During a shift, this is most commonly observed when a generator runs out of fuel and suddenly stops producing power. - Suddenly, the grid is hit with a large deficit of power (as supply has fallen below demand), and all devices will experience a brownout until SMESes or other generators can ramp up to match the new demand. + Suddenly the grid is hit with a large deficit of power (as supply has fallen below demand), and all devices will experience a brownout until SMESes or other generators can ramp up to match the new demand. - This can also happen when a large power consuming device, or department, is reconnected to the grid. + This can also happen when a large power consuming device or department is reconnected to the grid. The sudden increase in power draw will cause a brownout until the generators can ramp up to match the new demand. diff --git a/Resources/ServerInfo/Guidebook/Engineering/Shuttlecraft.xml b/Resources/ServerInfo/Guidebook/Engineering/Shuttlecraft.xml index 8dc7cdf57d..27151a7565 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Shuttlecraft.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Shuttlecraft.xml @@ -46,7 +46,7 @@ - Head out into space with steel sheets and metal rods in hand, and click on the edge of the station to place lattice. + Head out into space with steel sheets and metal rods in hand and click on the edge of the station to place lattice. Place a line of lattice about 3-4 tiles away from the station, then start building a platform with lattice. @@ -54,7 +54,7 @@ Once you're finished constructing the base of your shuttle, you can use wirecutters to snip the connecting lattice that joins your new ship and the station. - This platform is considered a different grid from the station, and thus will not have any gravity or be held in place by a station anchor — it can move around freely. + This platform is considered a different grid from the station and thus will not have any gravity or be held in place by a station anchor — it can move around freely. You can expand your lattice platform further by clicking just off the edge with some rods in hand. diff --git a/Resources/ServerInfo/Guidebook/Engineering/SignalValve.xml b/Resources/ServerInfo/Guidebook/Engineering/SignalValve.xml index dd2991e56d..2b6b11dd58 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/SignalValve.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/SignalValve.xml @@ -5,13 +5,13 @@ - The signal valve is similar to the manual valve. Gas can flow unrestricted in both directions, and it can be operated manually. + The signal valve is similar to the manual valve. Gas can flow unrestricted in both directions and it can be operated manually. The signal valve has 3 [textlink="signal" link="Networking"] inputs, which can open, close, or toggle the valve. Signal valves can be used in a variety of applications, for example: - Remote control of valves in hazardous areas or areas inaccessible to crew - Convenient control over a valve in a hard-to-reach area - - Automation with other [textlink="signal-enabled" link="Networking"] machines and equipment such as [textlink="air alarms" link="AirAlarms"] and remote signallers + - Automation with other [textlink="signal-enabled" link="Networking"] machines and equipment such as [textlink="air alarms" link="AirAlarms"] and remote signalers diff --git a/Resources/ServerInfo/Guidebook/Engineering/SingularityEngine.xml b/Resources/ServerInfo/Guidebook/Engineering/SingularityEngine.xml index 6b4bb1780a..cca2bd2479 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/SingularityEngine.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/SingularityEngine.xml @@ -28,7 +28,7 @@ It is suggested to use a max size containment field for the singularity. Any smaller and the singularity may outgrow its field and escape. - Containment pylons should be arranged in a square, with 7 tiles of spacing between each pylon. + Containment field generators should be arranged in a square, with 7 tiles of spacing between each field generator. @@ -62,11 +62,11 @@ From here, you can refill the tank with plasma using a plasma canister and reinsert it into the collector. The maximum power the radiation collector can produce is determined by: - - The amount of radiation it is capturing (which is effectively the Singularity's power level), - - and the amount of plasma it has in its connected tank. + - The amount of radiation it is capturing (which is effectively the Singularity's power level) + - The amount of plasma it has in its connected tank - Over time, the collector will drain the tank of plasma, which reduces it's effective power output. - Eventually, the tank will be empty, and the collector will stop producing power. Be sure to refill the tank often! + Over time the collector will drain the tank of plasma, which reduces it's effective power output. + Eventually the tank will be empty, and the collector will stop producing power. Be sure to refill the tank often! ## Radiation Protection The singularity emits a massive amount of radiation, which can kill crew members who are not wearing proper protection. diff --git a/Resources/ServerInfo/Guidebook/Engineering/SolarPanels.xml b/Resources/ServerInfo/Guidebook/Engineering/SolarPanels.xml index d97d2a78d7..2873e0ae10 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/SolarPanels.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/SolarPanels.xml @@ -18,6 +18,8 @@ This is because the station is occluding some panels, so don't worry about it too much. Most stations have solar arrays placed at all sides of the station, so there's always some power being generated. + When directly facing the sun with no object occlusion, regular solar panels can generate [color=orange][protodata="SolarPanel" comp="SolarPanel" member="MaxSupply" format="N0"] W[/color] of power. + Solar panels generate [color=orange]HV power[/color], and as such require an [color=orange]HV wire[/color] running underneath them to connect to the station's power grid. ## Power Bridge @@ -81,17 +83,30 @@ ## Setting Up Solar Panel Arrays Solar panel arrays are commonly found on the exterior of the station, and are used to generate large amounts of free power for the station. - You can either spacewalk to them from the outside, or you can run a loop through the station's maintenance tunnels to reach them. + You can either spacewalk to them from the outside or you can run a loop through the station's maintenance tunnels to reach them. Solar array machine rooms are often marked with signs, and locked behind engineering access. - At the start of the shift, solar panels are misaligned and disconnected from the grid. + At the start of the shift solar panels are misaligned and disconnected from the grid. You will need to align them and connect them to the station's power grid to start generating power. This usually involves running a line of [color=orange]HV wire[/color] to the pannels from the solar array machine room, and then using a Solar Control Computer to align the panels. Solar array machine rooms frequently have a Solar Control Computer nearby, as well as an [textlink="SMES" link="PowerStorage"] to store the power generated by the panels for later use. + + ## Upgrading Solar Panels + Solar panels can be upgraded to increase their power output. + + + + + + + This can be done by replacing the glass sheets in the solar assembly with plasma or uranium glass sheets. + + Plasma and Uranium solar panels generate [color=orange][protodata="SolarPanelPlasma" comp="SolarPanel" member="MaxSupply" format="N0"] W[/color] and [color=orange][protodata="SolarPanelUranium" comp="SolarPanel" member="MaxSupply" format="N0"] W[/color] of power respectively. + They also are much tougher than regular solar panels. diff --git a/Resources/ServerInfo/Guidebook/Engineering/Spacing.xml b/Resources/ServerInfo/Guidebook/Engineering/Spacing.xml index 01097c10e2..6fb9565ad3 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Spacing.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Spacing.xml @@ -6,14 +6,14 @@ Fixing spacing generally follows two simple steps: - 1. Identify the area that has been spaced, and [textlink="seal the hole." link="ExpandingRepairingStation"] + 1. Identify the area that has been spaced and [textlink="seal the hole." link="ExpandingRepairingStation"] - If you're having trouble finding the hole, you can carefully listen for the flow of air rushing by you, if air is currently leaking to space. - Look for any holes underneath girders that may be hard to see. 2. Repressurize the area. - - [textlink="Air vents" link="AirVent"] enter pressure lockout when a room is spaced, so you'll need to override the vents to repressurize the area. You can do this by setting the connected [textlink="air alarm" link="AirAlarms"] to fill, or by using a screwdriver on a vent to manually override it temporarily. + - [textlink="Air vents" link="AirVent"] enter pressure lockout in order not to lose more air to spacing, so you'll need to override the vents to repressurize the area. You can do this by setting the connected [textlink="air alarm" link="AirAlarms"] to fill, or by using a screwdriver on a vent to manually override it temporarily. ## Things to Avoid - Keep in mind that while you have an infinite supply of [textlink="mined gas" link="GasMiningAndStorage"], it is not quick enough to fill up multiple rooms at once. Setting [textlink="air alarms" link="AirAlarms"] to fill first [italic]before[/italic] fixing the root problem will often lead to wasted time and gas. diff --git a/Resources/ServerInfo/Guidebook/Engineering/TEG.xml b/Resources/ServerInfo/Guidebook/Engineering/TEG.xml index f79ad044ce..04268e2db3 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/TEG.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/TEG.xml @@ -1,8 +1,8 @@ # Thermo-electric Engine (TEG) - The TEG generates power by exchanging heat between hot and cold gases. - On the station, hot gas is usually created by burning plasma, and an array of [textlink="heat-exchanging" link="Radiators"] pipes in space radiates away heat to cool down circulated gases. + The TEG generates power by exchanging heat between hot and cold gasses. + On the station, hot gas is usually created by burning plasma, and an array of [textlink="heat-exchanging" link="Radiators"] pipes in space radiates away heat to cool down circulated gasses. The TEG relies heavily on [textlink="atmospherics" link="Atmospherics"] [textlink="piping." link="Pipes"] The only truly special component about it is the generator core and circulators; the rest is all off-the-shelf atmospherics equipment. @@ -26,7 +26,7 @@ A pressure difference is required across the input and output, so pumps are generally provided and must be turned on. There is no preference for which side must be hot or cold, there need only be a difference in temperature between them. - The gases in the two "loops" are never mixed, [color=#a4885c]only energy is exchanged between them[/color]. + The gasses in the two "loops" are never mixed, [color=#a4885c]only energy is exchanged between them[/color]. The hot side will cool down, the cold side will heat up. ## The Pipes @@ -39,14 +39,14 @@ As I'm sure a wise person once said: the best way to make something hot is to light it on fire. Well, depending on context, that may not be very wise, but luckily your engineering department has just what's needed to do it wisely after all. - As stated above, there are many different layouts one can follow to heat up (or cool down) gases; this part of the guide will cover some common methods one will often see for the hot loop, involving [color=red]the Burn Chamber[/color]. + As stated above, there are many different layouts one can follow to heat up (or cool down) gasses; this part of the guide will cover some common methods one will often see for the hot loop, involving [color=red]the Burn Chamber[/color]. Side note: Plasma fires burn relatively cool compared to, for example, Tritium fires. It may be viable to extract Tritium from an extraction setup and react it with Oxygen to get truly hellish temperatures for power. ## The Burn Chamber - The burn chamber is the preferred method for heating up gases, and it is commonly used for other purposes too. (see: Tritium production) + The burn chamber is the preferred method for heating up gasses, and it is commonly used for other purposes too. (see: Tritium production) Most (if not all) stations have the burn chamber separated from the main atmospherics block by a 1-wide spaced grid, to prevent the flow of scalding hot gas to Atmos if there was a breach. The chambers consist of 3 important parts: - The [textlink="Air Injector" link="AirInjector"]/[textlink="Passive Vent" link="PassiveVent"] @@ -89,7 +89,7 @@ There is a notable difference between the [textlink="passive vent" link="PassiveVent"] and the [textlink="air injector" link="AirInjector"]; the [textlink="air injector" link="AirInjector"] can only keep injecting air up to [color=#a4885c]9MPa[/color], which can be reached very easily with a good burn. Ideally, switch out the [textlink="air injector" link="AirInjector"] for a [textlink="passive vent" link="PassiveVent"] connected to a volume pump. - The space vent (designated as a blast door to space on one side of the burn chamber) allows waste gases to be expelled and destroyed. + The space vent (designated as a blast door to space on one side of the burn chamber) allows waste gasses to be expelled and destroyed. Open this occasionally to keep the pressure under control, or to space excess input gas. You even might find the pneumatic valve useful for occasionally spacing the gas. @@ -221,14 +221,14 @@ ## In the Pursuit of Greater Efficiency Remember, Atmospherics is a science, and as such, it is always evolving. - The setups above are just the tip of the iceberg; there are many ways to setup the TEG, and many ways to improve upon the setups above. + The setups above are just the tip of the iceberg; there are many ways to setup the TEG and many ways to improve upon the setups above. [color=#a4885c]Experiment![/color] - Always seek to improve upon the designs you see, and always seek to improve upon the designs you make. - The TEG is a powerful tool, and with great power comes great responsibility. - Make sure to use it wisely, and make sure to use it well. + Always seek to improve upon the designs you see and always seek to improve upon the designs you make. + The TEG is a powerful tool and with great power comes great responsibility. + Make sure to use it wisely and make sure to use it well. - Space Station 14 atmospherics is a complex system, and the TEG is just one part of it. + Space Station 14 atmospherics is a complex system and the TEG is just one part of it. [bold]It's like a giant puzzle, so go out and solve it![/bold] diff --git a/Resources/ServerInfo/Guidebook/Engineering/TeslaEngine.xml b/Resources/ServerInfo/Guidebook/Engineering/TeslaEngine.xml index 859ec8317e..168f6253a8 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/TeslaEngine.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/TeslaEngine.xml @@ -37,30 +37,13 @@ The Tesla prefers to strike some objects more than others, such as Tesla Coils and Grounding Rods. - - - - - - - - - - - Because of this, strategically placing Tesla Coils and Grounding Rods around the lightning ball can help protect sensitive equipment from being struck, and prevent a loosed tesla (tesloose). - If the tesla can't find any Tesla Coils or Grounding Rods to strike first, it will strike almost any station object capable of being powered, such as Substations, APCs, and general machinery. Certain objects aren't struck by the tesla, such as batteries, lights, PDAs, and other handheld items. It will also strike mobs and crew members, shocking them. Make sure to wear insulated gloves before approaching it. - Note that only placing Tesla Coils won't be enough to prevent the tesla from striking sensitive equipment. - Grounding Rods should also be placed to help protect nearby Emitters from being struck. - - Engineers can also use grounding rods to protect sensitive equipment from lightning strikes, such as the Emitters powering the containment field generators. - - ## Power Generation + ## Tesla Coils Lightning strikes can be harnessed using Tesla Coils, which convert the lightning strikes into power for the station. @@ -69,16 +52,34 @@ - Tesla Coils should be placed around the lightning ball to capture the lightning strikes, as well as to prevent the lightning from striking sensitive equipment further away. + Tesla Coils should be placed around the lightning ball to capture the energy from lightning strikes, as well as to prevent the lightning from striking sensitive equipment further away. Tesla Coils take damage every time they are struck by lightning, and will eventually break if not repaired. Be sure to monitor the condition of the Tesla Coils and repair them as needed. - Grounding rods, in contrast, do not take damage from lightning strikes. - When lightning strikes Tesla Coils, they fill an internal battery, which is rapidly discharged to the grid. It will discharge this power even if there is no consumer to take it, so it's a good idea to have an SMES nearby to store the power and discharge it smoothly. + ## Grounding Rods + Grounding Rods help protect sensitive equipment from being struck and prevent a loosed tesla (tesloose). + + + + + + + + + + + + + + Grounding rods do not take damage from lightning strikes. + This makes them beneficial for forming a saftey net of grounding rods to rely on in case the tesla coils are damaged or destroyed. + + Engineers should use grounding rods to protect sensitive equipment from lightning strikes, such as the Emitters powering the containment field generators. + ## Loosed Tesla (Tesloose) If the lightning ball escapes the containment field, it is referred to as a loosed tesla, or tesloose. diff --git a/Resources/ServerInfo/Guidebook/Engineering/Thermomachines.xml b/Resources/ServerInfo/Guidebook/Engineering/Thermomachines.xml index 64035cde19..7d449f33ed 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Thermomachines.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Thermomachines.xml @@ -1,6 +1,6 @@  # Thermomachines - Thermomachines are devices that manipulate the temperature of gases within a [textlink="pipe network" link="PipeNetworks"] or exposed atmosphere. + Thermomachines are devices that manipulate the temperature of gasses within a [textlink="pipe network" link="PipeNetworks"] or exposed atmosphere. @@ -8,10 +8,10 @@ They are essential for maintaining the temperature of gasses for various applications. - All thermomachines work by using [textlink="electrical power" link="Power"] to preform work on the atmosphere to either heat or cool it. - The amount of work they do is directly related to the amount of power they consume. + All thermomachines work by using [textlink="electrical power" link="Power"] to heat or cool the atmosphere. + How much they heat/cool the atmosphere is directly related to the amount of power they consume. - Thermomachines also have an efficiency coefficient, which determines how much work they can do per unit of power consumed. + Thermomachines also have an efficiency coefficient, which determines how much they can heat or cool the atmosphere per unit of power consumed. To prevent overshooting their target value, thermomachines will scale back their heating/cooling power as they approach the target temperature. However, they will still consume the same amount of electrical power, even when idle. @@ -19,7 +19,7 @@ All thermomachines have a target temperature tolerance of [color=orange][protodata="GasThermoMachineFreezer" comp="GasThermoMachine" member="TemperatureTolerance"/] K[/color], meaning they will stop heating or cooling when the temperature is within [color=orange][protodata="GasThermoMachineFreezer" comp="GasThermoMachine" member="TemperatureTolerance"/] K[/color] of the target temperature. ## Space Heater - The space heater is a portable temperature control unit that preforms work to heat or cool gas in the atmosphere it's exposed to. + The space heater is a portable temperature control unit that heats or cools gas in the atmosphere it's exposed to. It's a simple and effective way to maintain the temperature of a room, without having to build a pipenet or other system. @@ -30,7 +30,7 @@ The space heater can cool to as low as [color=orange][protodata="SpaceHeater" comp="SpaceHeater" member="MinTemperature"/] K[/color] and heat to as high as [color=orange][protodata="SpaceHeater" comp="SpaceHeater" member="MaxTemperature"/] K[/color]. - It also has three power settings, which determine how much power it consumes and how much work it does. + It also has three power settings which determine how fast it heats or cools the atmosphere. Botany or science will often request these to maintain the temperature of their plants or department. @@ -44,7 +44,7 @@ They draw [color=orange][protodata="GasThermoMachineFreezer" comp="GasThermoMachine" member="HeatCapacity" format="N0"/] W[/color] of power and can heat or cool gas in a pipenet to as high as [color=orange][protodata="GasThermoMachineFreezer" comp="GasThermoMachine" member="MaxTemperature"/] K[/color] or as low as [color=orange][protodata="GasThermoMachineFreezer" comp="GasThermoMachine" member="MinTemperature"/] K[/color]. - You can swap the mode of the thermomachine by deconstructing it and using a screwdriver on its board. + You can swap the mode of the thermomachine by deconstructing it and using a screwdriver on its circuit board. The board can be printed at a circuit imprinter, commonly found in Science. diff --git a/Resources/ServerInfo/Guidebook/Engineering/WirePanels.xml b/Resources/ServerInfo/Guidebook/Engineering/WirePanels.xml index 6ac749120b..aa86e6e9b3 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/WirePanels.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/WirePanels.xml @@ -10,16 +10,16 @@ - From here, you can use wirecutters and a multitool to interact with the wiring. Note that interacting with the wiring often requires insulated gloves, as if the wire is live, you can get shocked. + From here you can use wirecutters and a multitool to interact with the wiring. Note that interacting with the wiring often requires insulated gloves, as if the wire is live, you can get shocked. - You can cut and mend wires using the wirecutters, and pulse wires using the multitool. + You can cut and mend wires using the wirecutters and pulse wires using the multitool. Cutting wires often completely disables or restores functionality to a device. - It may also trigger unintended functionality, like shocking people, dropping door bolts, or exploding. + It may also trigger unintended functionality like shocking people, dropping door bolts, or exploding. Pulsing wires can have a variety of effects, but oftentimes it either temporarily disables or enables functionality. From b45613ad3395e3e6c1ee079fc0c3ba3037f6d8ee Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 15 Feb 2025 04:00:27 +0000 Subject: [PATCH 282/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 87f34230f6..a8f0fd717a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: ArtisticRoomba - changes: - - message: HoS's energy shotgun is now correctly marked as grand theft contraband. - type: Tweak - id: 7455 - time: '2024-09-29T12:22:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32521 - author: Ilya246 changes: - message: Steel cost of conveyor belt assemblies halved. @@ -3888,3 +3881,20 @@ id: 7954 time: '2025-02-14T15:01:41.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35122 +- author: ArtisticRoomba + changes: + - message: The Solar Panels section of the Engineering Guidebook has been updated + to include information on upgrading solar panels, as well as how much each variant + produces. + type: Add + - message: The Tesla Engine section of the Engineering Guidebook has been slightly + reorganized to better outline the differences between Grounding Rods and Tesla + Coils, as well as tips on how to use them. + type: Tweak + - message: The Access Configurator section of the Engineering Guidebook has been + updated to reflect the recent addition of the Authentication Disruptor, as well + as how to fix access-broken doors and equipment the easy way. + type: Add + id: 7955 + time: '2025-02-15T03:59:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34695 From 51a56e013c1a1a14b44edde50bc0ce579085419e Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Fri, 14 Feb 2025 23:29:40 -0500 Subject: [PATCH 283/313] Separate Udder examine into ExamineableHunger (#35164) * Separate udder hunger examine into ExamineableHunger * Fluent grammar improvements * Add ExamineableHunger to chickens and ducks. * Use starving message as "dead" message --- Content.Shared/Animals/UdderSystem.cs | 48 ------------------- .../Components/ExamineableHungerComponent.cs | 31 ++++++++++++ .../EntitySystems/ExamineableHungerSystem.cs | 41 ++++++++++++++++ .../en-US/animals/udder/udder-system.ftl | 6 --- .../examineable-hunger-component.ftl | 5 ++ .../Prototypes/Entities/Mobs/NPCs/animals.yml | 4 ++ 6 files changed, 81 insertions(+), 54 deletions(-) create mode 100644 Content.Shared/Nutrition/Components/ExamineableHungerComponent.cs create mode 100644 Content.Shared/Nutrition/EntitySystems/ExamineableHungerSystem.cs create mode 100644 Resources/Locale/en-US/nutrition/components/examineable-hunger-component.ftl diff --git a/Content.Shared/Animals/UdderSystem.cs b/Content.Shared/Animals/UdderSystem.cs index cb6e5b307f..177fbab2f2 100644 --- a/Content.Shared/Animals/UdderSystem.cs +++ b/Content.Shared/Animals/UdderSystem.cs @@ -1,7 +1,6 @@ using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.DoAfter; -using Content.Shared.Examine; using Content.Shared.IdentityManagement; using Content.Shared.Mobs.Systems; using Content.Shared.Nutrition.Components; @@ -32,7 +31,6 @@ public sealed class UdderSystem : EntitySystem SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent>(AddMilkVerb); SubscribeLocalEvent(OnDoAfter); - SubscribeLocalEvent(OnExamine); } private void OnMapInit(EntityUid uid, UdderComponent component, MapInitEvent args) @@ -140,50 +138,4 @@ public sealed class UdderSystem : EntitySystem }; args.Verbs.Add(verb); } - - /// - /// Defines the text provided on examine. - /// Changes depending on the amount of hunger the target has. - /// - private void OnExamine(Entity entity, ref ExaminedEvent args) - { - - var entityIdentity = Identity.Entity(args.Examined, EntityManager); - - string message; - - // Check if the target has hunger, otherwise return not hungry. - if (!TryComp(entity, out var hunger)) - { - message = Loc.GetString("udder-system-examine-none", ("entity", entityIdentity)); - args.PushMarkup(message); - return; - } - - // Choose the correct examine string based on HungerThreshold. - switch (_hunger.GetHungerThreshold(hunger)) - { - case >= HungerThreshold.Overfed: - message = Loc.GetString("udder-system-examine-overfed", ("entity", entityIdentity)); - break; - - case HungerThreshold.Okay: - message = Loc.GetString("udder-system-examine-okay", ("entity", entityIdentity)); - break; - - case HungerThreshold.Peckish: - message = Loc.GetString("udder-system-examine-hungry", ("entity", entityIdentity)); - break; - - // There's a final hunger threshold called "dead" but animals don't actually die so we'll re-use this. - case <= HungerThreshold.Starving: - message = Loc.GetString("udder-system-examine-starved", ("entity", entityIdentity)); - break; - - default: - return; - } - - args.PushMarkup(message); - } } diff --git a/Content.Shared/Nutrition/Components/ExamineableHungerComponent.cs b/Content.Shared/Nutrition/Components/ExamineableHungerComponent.cs new file mode 100644 index 0000000000..00aba82e58 --- /dev/null +++ b/Content.Shared/Nutrition/Components/ExamineableHungerComponent.cs @@ -0,0 +1,31 @@ +using Content.Shared.Nutrition.EntitySystems; +using Robust.Shared.GameStates; + +namespace Content.Shared.Nutrition.Components; + +/// +/// Adds text to the entity's description box based on its current hunger threshold. +/// +[RegisterComponent, NetworkedComponent] +[Access(typeof(ExamineableHungerSystem))] +public sealed partial class ExamineableHungerComponent : Component +{ + /// + /// Dictionary of hunger thresholds to LocIds of the messages to display. + /// + [DataField] + public Dictionary Descriptions = new() + { + { HungerThreshold.Overfed, "examineable-hunger-component-examine-overfed"}, + { HungerThreshold.Okay, "examineable-hunger-component-examine-okay"}, + { HungerThreshold.Peckish, "examineable-hunger-component-examine-peckish"}, + { HungerThreshold.Starving, "examineable-hunger-component-examine-starving"}, + { HungerThreshold.Dead, "examineable-hunger-component-examine-starving"} + }; + + /// + /// LocId of a fallback message to display if the entity has no + /// or does not have a value in for the current threshold. + /// + public LocId NoHungerDescription = "examineable-hunger-component-examine-none"; +} diff --git a/Content.Shared/Nutrition/EntitySystems/ExamineableHungerSystem.cs b/Content.Shared/Nutrition/EntitySystems/ExamineableHungerSystem.cs new file mode 100644 index 0000000000..e0ac767bcf --- /dev/null +++ b/Content.Shared/Nutrition/EntitySystems/ExamineableHungerSystem.cs @@ -0,0 +1,41 @@ +using Content.Shared.Examine; +using Content.Shared.IdentityManagement; +using Content.Shared.Nutrition.Components; + +namespace Content.Shared.Nutrition.EntitySystems; + +/// +public sealed class ExamineableHungerSystem : EntitySystem +{ + [Dependency] private readonly HungerSystem _hunger = default!; + private EntityQuery _hungerQuery; + + public override void Initialize() + { + base.Initialize(); + + _hungerQuery = GetEntityQuery(); + + SubscribeLocalEvent(OnExamine); + } + + /// + /// Defines the text provided on examine. + /// Changes depending on the amount of hunger the target has. + /// + private void OnExamine(Entity entity, ref ExaminedEvent args) + { + var identity = Identity.Entity(entity, EntityManager); + + if (!_hungerQuery.TryComp(entity, out var hungerComp) + || !entity.Comp.Descriptions.TryGetValue(_hunger.GetHungerThreshold(hungerComp), out var locId)) + { + // Use a fallback message if the entity has no HungerComponent + // or is missing a description for the current threshold + locId = entity.Comp.NoHungerDescription; + } + + var msg = Loc.GetString(locId, ("entity", identity)); + args.PushMarkup(msg); + } +} diff --git a/Resources/Locale/en-US/animals/udder/udder-system.ftl b/Resources/Locale/en-US/animals/udder/udder-system.ftl index 959a4fef59..8479ae08bf 100644 --- a/Resources/Locale/en-US/animals/udder/udder-system.ftl +++ b/Resources/Locale/en-US/animals/udder/udder-system.ftl @@ -5,9 +5,3 @@ udder-system-success = You fill {THE($target)} with {$amount}u from the udder. udder-system-dry = The udder is dry. udder-system-verb-milk = Milk - -udder-system-examine-overfed = {CAPITALIZE(SUBJECT($entity))} looks stuffed! -udder-system-examine-okay = {CAPITALIZE(SUBJECT($entity))} looks content. -udder-system-examine-hungry = {CAPITALIZE(SUBJECT($entity))} looks hungry. -udder-system-examine-starved = {CAPITALIZE(SUBJECT($entity))} looks starved! -udder-system-examine-none = {CAPITALIZE(SUBJECT($entity))} seems not to get hungry. diff --git a/Resources/Locale/en-US/nutrition/components/examineable-hunger-component.ftl b/Resources/Locale/en-US/nutrition/components/examineable-hunger-component.ftl new file mode 100644 index 0000000000..d8d9963908 --- /dev/null +++ b/Resources/Locale/en-US/nutrition/components/examineable-hunger-component.ftl @@ -0,0 +1,5 @@ +examineable-hunger-component-examine-overfed = {CAPITALIZE(SUBJECT($entity))} {CONJUGATE-BASIC($entity, "look", "looks")} stuffed! +examineable-hunger-component-examine-okay = {CAPITALIZE(SUBJECT($entity))} {CONJUGATE-BASIC($entity, "look", "looks")} content. +examineable-hunger-component-examine-peckish = {CAPITALIZE(SUBJECT($entity))} {CONJUGATE-BASIC($entity, "look", "looks")} hungry. +examineable-hunger-component-examine-starving = {CAPITALIZE(SUBJECT($entity))} {CONJUGATE-BASIC($entity, "look", "looks")} starved! +examineable-hunger-component-examine-none = {CAPITALIZE(SUBJECT($entity))} {CONJUGATE-BASIC($entity, "seem", "seems")} not to get hungry. diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index e71902db6b..a33529cc48 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -229,6 +229,7 @@ - type: EggLayer eggSpawn: - id: FoodEgg + - type: ExamineableHunger - type: ReplacementAccent accent: chicken - type: SentienceTarget @@ -663,6 +664,7 @@ - type: EggLayer eggSpawn: - id: FoodEgg + - type: ExamineableHunger - type: ReplacementAccent accent: duck - type: SentienceTarget @@ -828,6 +830,7 @@ reagentId: Milk quantityPerUpdate: 25 growthDelay: 30 + - type: ExamineableHunger - type: Butcherable spawned: - id: FoodMeat @@ -984,6 +987,7 @@ reagentId: MilkGoat quantityPerUpdate: 25 growthDelay: 20 + - type: ExamineableHunger - type: Wooly - type: Food solution: wool From 9042827d45ac9255ea9797957f6f3b6f79856651 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 15 Feb 2025 04:30:47 +0000 Subject: [PATCH 284/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a8f0fd717a..1c74b7f64c 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Ilya246 - changes: - - message: Steel cost of conveyor belt assemblies halved. - type: Tweak - id: 7456 - time: '2024-09-29T15:18:09.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32444 - author: CuteMoonGod changes: - message: Fixed execution system showing character name instead of their identity @@ -3898,3 +3891,10 @@ id: 7955 time: '2025-02-15T03:59:19.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34695 +- author: Tayrtahn + changes: + - message: Chickens and ducks now report hunger levels when examined. + type: Add + id: 7956 + time: '2025-02-15T04:29:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35164 From 44747278869ef8b084ee5c15e05f43a62d9f6fc0 Mon Sep 17 00:00:00 2001 From: Kyle Tyo <36606155+VerinSenpai@users.noreply.github.com> Date: Sat, 15 Feb 2025 01:07:15 -0500 Subject: [PATCH 285/313] Fix air devices ignoring settings after power cycle (#34887) * add powered variable to vent components * add checks for powered to vent systems also corrected onpowerchanged methods to update powered arg. * removed powered from components * Use ApcPowerReceieverComponent for power state. * removed unneeded code from OnPowerChanged * document what enabled is used for in components * only you can prevent oopsie daisies. * add check for powered in OnGasVentPumpUpdated * apcPowerReceiverComponent BEGONE * CODE RED EVERYTHINGS ON FIRE wait we're fine now. --- .../Piping/Unary/Components/GasVentPumpComponent.cs | 6 +++++- .../Unary/Components/GasVentScrubberComponent.cs | 6 +++++- .../Piping/Unary/EntitySystems/GasVentPumpSystem.cs | 11 +++++++---- .../Unary/EntitySystems/GasVentScrubberSystem.cs | 8 ++++++-- 4 files changed, 23 insertions(+), 8 deletions(-) diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs index 25b15f0ed5..a9aa40611d 100644 --- a/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs +++ b/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs @@ -11,8 +11,12 @@ namespace Content.Server.Atmos.Piping.Unary.Components [RegisterComponent] public sealed partial class GasVentPumpComponent : Component { + /// + /// Identifies if the device is enabled by an air alarm. Does not indicate if the device is powered. + /// By default, all air vents start enabled, whether linked to an alarm or not. + /// [ViewVariables(VVAccess.ReadWrite)] - public bool Enabled { get; set; } = false; + public bool Enabled { get; set; } = true; [ViewVariables] public bool IsDirty { get; set; } = false; diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs index b2143283f7..4a9437bc1f 100644 --- a/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs +++ b/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs @@ -9,8 +9,12 @@ namespace Content.Server.Atmos.Piping.Unary.Components [Access(typeof(GasVentScrubberSystem))] public sealed partial class GasVentScrubberComponent : Component { + /// + /// Identifies if the device is enabled by an air alarm. Does not indicate if the device is powered. + /// By default, all air scrubbers start enabled, whether linked to an alarm or not. + /// [DataField] - public bool Enabled { get; set; } = false; + public bool Enabled { get; set; } = true; [DataField] public bool IsDirty { get; set; } = false; diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs index c58d6eb14b..93f7dcf111 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs @@ -9,6 +9,8 @@ using Content.Server.DeviceNetwork.Components; using Content.Server.DeviceNetwork.Systems; using Content.Server.NodeContainer.EntitySystems; using Content.Server.NodeContainer.Nodes; +using Content.Server.Power.Components; +using Content.Server.Power.EntitySystems; using Content.Shared.Administration.Logs; using Content.Shared.Atmos; using Content.Shared.Atmos.Monitor; @@ -43,6 +45,7 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems [Dependency] private readonly SharedToolSystem _toolSystem = default!; [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly PowerReceiverSystem _powerReceiverSystem = default!; public override void Initialize() { base.Initialize(); @@ -66,9 +69,10 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems { //Bingo waz here if (_weldable.IsWelded(uid)) - { return; - } + + if (!_powerReceiverSystem.IsPowered(uid)) + return; var nodeName = vent.PumpDirection switch { @@ -210,7 +214,6 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems private void OnPowerChanged(EntityUid uid, GasVentPumpComponent component, ref PowerChangedEvent args) { - component.Enabled = args.Powered; UpdateState(uid, component); } @@ -318,7 +321,7 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems _ambientSoundSystem.SetAmbience(uid, false); _appearance.SetData(uid, VentPumpVisuals.State, VentPumpState.Welded, appearance); } - else if (!vent.Enabled) + else if (!_powerReceiverSystem.IsPowered(uid) || !vent.Enabled) { _ambientSoundSystem.SetAmbience(uid, false); _appearance.SetData(uid, VentPumpVisuals.State, VentPumpState.Off, appearance); diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs index 0207535398..38d75701d7 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs @@ -10,6 +10,7 @@ using Content.Server.NodeContainer; using Content.Server.NodeContainer.EntitySystems; using Content.Server.NodeContainer.Nodes; using Content.Server.Power.Components; +using Content.Server.Power.EntitySystems; using Content.Shared.Administration.Logs; using Content.Shared.Atmos; using Content.Shared.Atmos.Piping.Unary.Visuals; @@ -37,6 +38,7 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems [Dependency] private readonly TransformSystem _transformSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly WeldableSystem _weldable = default!; + [Dependency] private readonly PowerReceiverSystem _powerReceiverSystem = default!; public override void Initialize() { @@ -58,6 +60,9 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems var timeDelta = args.dt; + if (!_powerReceiverSystem.IsPowered(uid)) + return; + if (!scrubber.Enabled || !_nodeContainer.TryGetNode(uid, scrubber.OutletName, out PipeNode? outlet)) return; @@ -141,7 +146,6 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems private void OnPowerChanged(EntityUid uid, GasVentScrubberComponent component, ref PowerChangedEvent args) { - component.Enabled = args.Powered; UpdateState(uid, component); } @@ -225,7 +229,7 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems _ambientSoundSystem.SetAmbience(uid, false); _appearance.SetData(uid, ScrubberVisuals.State, ScrubberState.Welded, appearance); } - else if (!scrubber.Enabled) + else if (!_powerReceiverSystem.IsPowered(uid) || !scrubber.Enabled) { _ambientSoundSystem.SetAmbience(uid, false); _appearance.SetData(uid, ScrubberVisuals.State, ScrubberState.Off, appearance); From 97d6111614582f8e86352cc85ab8cdd2d888bdda Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 15 Feb 2025 06:08:21 +0000 Subject: [PATCH 286/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1c74b7f64c..7423194135 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: CuteMoonGod - changes: - - message: Fixed execution system showing character name instead of their identity - type: Fix - id: 7457 - time: '2024-09-29T22:36:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32536 - author: drakewill-CRL changes: - message: Fix error in gas exchange processing order. @@ -3898,3 +3891,11 @@ id: 7956 time: '2025-02-15T04:29:41.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35164 +- author: VerinSenpai + changes: + - message: Air alarm devices now return to their previous settings after a power + cycle. + type: Fix + id: 7957 + time: '2025-02-15T06:07:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34887 From 71b5133a5395b3ebe0d2af31055d6dcaa65a1b78 Mon Sep 17 00:00:00 2001 From: Simon <63975668+Simyon264@users.noreply.github.com> Date: Sat, 15 Feb 2025 10:01:46 +0100 Subject: [PATCH 287/313] Fix colornetwork command not checking for correct permissions (#35180) Fix colornetwork command not checking for correct permissions. What is shell.IsClient even?? --- Content.Server/Sandbox/Commands/ColorNetworkCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Sandbox/Commands/ColorNetworkCommand.cs b/Content.Server/Sandbox/Commands/ColorNetworkCommand.cs index 1fc207058d..0a778f5880 100644 --- a/Content.Server/Sandbox/Commands/ColorNetworkCommand.cs +++ b/Content.Server/Sandbox/Commands/ColorNetworkCommand.cs @@ -19,7 +19,7 @@ namespace Content.Server.Sandbox.Commands { var sandboxManager = _entManager.System(); var adminManager = IoCManager.Resolve(); - if (shell.IsClient && (!sandboxManager.IsSandboxEnabled && !adminManager.HasAdminFlag(shell.Player!, AdminFlags.Mapping))) + if (shell.IsClient || (!sandboxManager.IsSandboxEnabled && !adminManager.HasAdminFlag(shell.Player!, AdminFlags.Mapping))) { shell.WriteError(Loc.GetString("cmd-colornetwork-no-access")); } From 0cb11241d79c8e51f5a1391c1fc49bc063144ccc Mon Sep 17 00:00:00 2001 From: keronshb <54602815+keronshb@users.noreply.github.com> Date: Sat, 15 Feb 2025 11:17:29 -0500 Subject: [PATCH 288/313] Store Refund - Add more disable scenerios & time to disable refund. (#34671) * Puts disable refund logic into a helper method. Removes action check. Disables refund on action use. * Adds check if refund is disabled for the store already * Adds a way to disable refunds based on time * Checks if the ent is on the starting map and the end time is below the current time before disabling refund * Replaces instances of component.RefundAllowed = false with DisableRefund for more consistency and easier tracking * Adds methods to handle inhand and shooting events * Removes gamestates --------- Co-authored-by: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> --- Content.Server/Store/StoreRefundComponent.cs | 21 +++++++- .../Store/Systems/StoreSystem.Refund.cs | 51 ++++++++++++++++--- .../Store/Systems/StoreSystem.Ui.cs | 5 +- Content.Server/Store/Systems/StoreSystem.cs | 2 + 4 files changed, 68 insertions(+), 11 deletions(-) diff --git a/Content.Server/Store/StoreRefundComponent.cs b/Content.Server/Store/StoreRefundComponent.cs index 1a6b17c5ea..df35afdf53 100644 --- a/Content.Server/Store/StoreRefundComponent.cs +++ b/Content.Server/Store/StoreRefundComponent.cs @@ -2,12 +2,31 @@ namespace Content.Server.Store.Components; +// TODO: Refund on a per-item/action level. +// Requires a refund button next to each purchase (disabled/invis by default) +// Interactions with ActionUpgrades would need to be modified to reset all upgrade progress and return the original action purchase to the store. + /// /// Keeps track of entities bought from stores for refunds, especially useful if entities get deleted before they can be refunded. /// [RegisterComponent, Access(typeof(StoreSystem))] public sealed partial class StoreRefundComponent : Component { - [ViewVariables, DataField] + /// + /// The store this entity was bought from + /// + [DataField] public EntityUid? StoreEntity; + + /// + /// The time this entity was bought + /// + [DataField] + public TimeSpan? BoughtTime; + + /// + /// How long until this entity disables refund purchase? + /// + [DataField] + public TimeSpan DisableTime = TimeSpan.FromSeconds(300); } diff --git a/Content.Server/Store/Systems/StoreSystem.Refund.cs b/Content.Server/Store/Systems/StoreSystem.Refund.cs index 04bd585ffc..e9d801f9e1 100644 --- a/Content.Server/Store/Systems/StoreSystem.Refund.cs +++ b/Content.Server/Store/Systems/StoreSystem.Refund.cs @@ -1,5 +1,8 @@ using Content.Server.Store.Components; +using Content.Shared.Actions.Events; +using Content.Shared.Interaction.Events; using Content.Shared.Store.Components; +using Content.Shared.Weapons.Ranged.Systems; using Robust.Shared.Containers; namespace Content.Server.Store.Systems; @@ -12,22 +15,39 @@ public sealed partial class StoreSystem SubscribeLocalEvent(OnRefundTerminating); SubscribeLocalEvent(OnEntityRemoved); SubscribeLocalEvent(OnEntityInserted); + SubscribeLocalEvent(OnActionPerformed); + SubscribeLocalEvent(OnUseInHand); + SubscribeLocalEvent(OnShootAttempt); + // TODO: Handle guardian refund disabling when guardians support refunds. } - private void OnEntityRemoved(EntityUid uid, StoreRefundComponent component, EntRemovedFromContainerMessage args) + private void OnEntityRemoved(Entity ent, ref EntRemovedFromContainerMessage args) { - if (component.StoreEntity == null || _actions.TryGetActionData(uid, out _, false) || !TryComp(component.StoreEntity.Value, out var storeComp)) - return; - - DisableRefund(component.StoreEntity.Value, storeComp); + CheckDisableRefund(ent); } - private void OnEntityInserted(EntityUid uid, StoreRefundComponent component, EntInsertedIntoContainerMessage args) + private void OnEntityInserted(Entity ent, ref EntInsertedIntoContainerMessage args) { - if (component.StoreEntity == null || _actions.TryGetActionData(uid, out _) || !TryComp(component.StoreEntity.Value, out var storeComp)) + CheckDisableRefund(ent); + } + + private void OnActionPerformed(Entity ent, ref ActionPerformedEvent args) + { + CheckDisableRefund(ent); + } + + private void OnUseInHand(Entity ent, ref UseInHandEvent args) + { + args.Handled = true; + CheckDisableRefund(ent); + } + + private void OnShootAttempt(Entity ent, ref AttemptShootEvent args) + { + if (args.Cancelled) return; - DisableRefund(component.StoreEntity.Value, storeComp); + CheckDisableRefund(ent); } private void OnStoreTerminating(Entity ent, ref EntityTerminatingEvent args) @@ -52,4 +72,19 @@ public sealed partial class StoreSystem var ev = new RefundEntityDeletedEvent(ent); RaiseLocalEvent(ent.Comp.StoreEntity.Value, ref ev); } + + private void CheckDisableRefund(Entity ent) + { + var component = ent.Comp; + + if (component.StoreEntity == null || !TryComp(component.StoreEntity.Value, out var storeComp) || !storeComp.RefundAllowed) + return; + + var endTime = component.BoughtTime + component.DisableTime; + + if (IsOnStartingMap(component.StoreEntity.Value, storeComp) && _timing.CurTime < endTime) + return; + + DisableRefund(component.StoreEntity.Value, storeComp); + } } diff --git a/Content.Server/Store/Systems/StoreSystem.Ui.cs b/Content.Server/Store/Systems/StoreSystem.Ui.cs index 5af6ce1c97..3f4ccf696d 100644 --- a/Content.Server/Store/Systems/StoreSystem.Ui.cs +++ b/Content.Server/Store/Systems/StoreSystem.Ui.cs @@ -164,7 +164,7 @@ public sealed partial class StoreSystem } if (!IsOnStartingMap(uid, component)) - component.RefundAllowed = false; + DisableRefund(uid, component); //subtract the cash foreach (var (currency, amount) in cost) @@ -332,7 +332,7 @@ public sealed partial class StoreSystem if (!IsOnStartingMap(uid, component)) { - component.RefundAllowed = false; + DisableRefund(uid, component); UpdateUserInterface(buyer, uid, component); } @@ -376,6 +376,7 @@ public sealed partial class StoreSystem component.BoughtEntities.Add(purchase); var refundComp = EnsureComp(purchase); refundComp.StoreEntity = uid; + refundComp.BoughtTime = _timing.CurTime; } private bool IsOnStartingMap(EntityUid store, StoreComponent component) diff --git a/Content.Server/Store/Systems/StoreSystem.cs b/Content.Server/Store/Systems/StoreSystem.cs index a57895364d..0625ced087 100644 --- a/Content.Server/Store/Systems/StoreSystem.cs +++ b/Content.Server/Store/Systems/StoreSystem.cs @@ -10,6 +10,7 @@ using JetBrains.Annotations; using Robust.Shared.Prototypes; using Robust.Shared.Utility; using System.Linq; +using Robust.Shared.Timing; using Content.Shared.Mind; namespace Content.Server.Store.Systems; @@ -22,6 +23,7 @@ public sealed partial class StoreSystem : EntitySystem { [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly IGameTiming _timing = default!; public override void Initialize() { From d798d4d3f567ee5311105950f2cd5a59d6c9fcf2 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sun, 16 Feb 2025 06:52:47 +1100 Subject: [PATCH 289/313] Update StaticFieldValidationTest (#34287) --- .../Tests/Linter/StaticFieldValidationTest.cs | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/Content.IntegrationTests/Tests/Linter/StaticFieldValidationTest.cs b/Content.IntegrationTests/Tests/Linter/StaticFieldValidationTest.cs index 0632fe1347..90bf82e8f1 100644 --- a/Content.IntegrationTests/Tests/Linter/StaticFieldValidationTest.cs +++ b/Content.IntegrationTests/Tests/Linter/StaticFieldValidationTest.cs @@ -1,6 +1,7 @@ using System.Collections.Generic; using System.Linq; using Content.Shared.Tag; +using Robust.Shared.GameObjects; using Robust.Shared.Prototypes; using Robust.Shared.Reflection; using Robust.Shared.Serialization.Manager.Attributes; @@ -29,7 +30,9 @@ public sealed class StaticFieldValidationTest Assert.That(protoMan.ValidateStaticFields(typeof(StringValid), protos), Is.Empty); Assert.That(protoMan.ValidateStaticFields(typeof(StringArrayValid), protos), Is.Empty); Assert.That(protoMan.ValidateStaticFields(typeof(EntProtoIdValid), protos), Is.Empty); + Assert.That(protoMan.ValidateStaticFields(typeof(EntProtoIdTValid), protos), Is.Empty); Assert.That(protoMan.ValidateStaticFields(typeof(EntProtoIdArrayValid), protos), Is.Empty); + Assert.That(protoMan.ValidateStaticFields(typeof(EntProtoIdTArrayValid), protos), Is.Empty); Assert.That(protoMan.ValidateStaticFields(typeof(ProtoIdTestValid), protos), Is.Empty); Assert.That(protoMan.ValidateStaticFields(typeof(ProtoIdArrayValid), protos), Is.Empty); Assert.That(protoMan.ValidateStaticFields(typeof(ProtoIdListValid), protos), Is.Empty); @@ -39,7 +42,9 @@ public sealed class StaticFieldValidationTest Assert.That(protoMan.ValidateStaticFields(typeof(StringInvalid), protos), Has.Count.EqualTo(1)); Assert.That(protoMan.ValidateStaticFields(typeof(StringArrayInvalid), protos), Has.Count.EqualTo(2)); Assert.That(protoMan.ValidateStaticFields(typeof(EntProtoIdInvalid), protos), Has.Count.EqualTo(1)); + Assert.That(protoMan.ValidateStaticFields(typeof(EntProtoIdTInvalid), protos), Has.Count.EqualTo(1)); Assert.That(protoMan.ValidateStaticFields(typeof(EntProtoIdArrayInvalid), protos), Has.Count.EqualTo(2)); + Assert.That(protoMan.ValidateStaticFields(typeof(EntProtoIdTArrayInvalid), protos), Has.Count.EqualTo(2)); Assert.That(protoMan.ValidateStaticFields(typeof(ProtoIdTestInvalid), protos), Has.Count.EqualTo(1)); Assert.That(protoMan.ValidateStaticFields(typeof(ProtoIdArrayInvalid), protos), Has.Count.EqualTo(2)); Assert.That(protoMan.ValidateStaticFields(typeof(ProtoIdListInvalid), protos), Has.Count.EqualTo(2)); @@ -88,24 +93,48 @@ public sealed class StaticFieldValidationTest public static EntProtoId Tag = "StaticFieldTestEnt"; } + [Reflect(false)] + private sealed class EntProtoIdTValid + { + public static EntProtoId Tag = "StaticFieldTestEnt"; + } + [Reflect(false)] private sealed class EntProtoIdInvalid { public static EntProtoId Tag = string.Empty; } + [Reflect(false)] + private sealed class EntProtoIdTInvalid + { + public static EntProtoId Tag = string.Empty; + } + [Reflect(false)] private sealed class EntProtoIdArrayValid { public static EntProtoId[] Tag = ["StaticFieldTestEnt", "StaticFieldTestEnt"]; } + [Reflect(false)] + private sealed class EntProtoIdTArrayValid + { + public static EntProtoId[] Tag = ["StaticFieldTestEnt", "StaticFieldTestEnt"]; + } + [Reflect(false)] private sealed class EntProtoIdArrayInvalid { public static EntProtoId[] Tag = [string.Empty, "StaticFieldTestEnt", string.Empty]; } + [Reflect(false)] + private sealed class EntProtoIdTArrayInvalid + { + public static EntProtoId[] Tag = [string.Empty, "StaticFieldTestEnt", string.Empty]; + } + [Reflect(false)] private sealed class ProtoIdTestValid { From 831dbef591d45f606f1e0f063304622306ebb5e8 Mon Sep 17 00:00:00 2001 From: Kyle Tyo <36606155+VerinSenpai@users.noreply.github.com> Date: Sat, 15 Feb 2025 21:01:58 -0500 Subject: [PATCH 290/313] move a colon to the localization string (#35192) * move the colon to the localization string * remove a redundancy * beck suggested this per how its done elsewhere. * comply with requested changes. --- .../CriminalRecords/CriminalRecordsConsoleWindow.xaml | 4 +--- .../en-US/medical/components/crew-monitoring-component.ftl | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml b/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml index d36718cf08..179304a978 100644 --- a/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml +++ b/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml @@ -58,9 +58,7 @@ StyleClasses="LabelBig" /> - From 0cfcbdeccd1950de77aa9754c66bd8d231632584 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 11 Feb 2025 02:53:33 +0000 Subject: [PATCH 194/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 6c84efea98..f48504e99b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: Freezer electronics added to autolathe, with which you can craft locker - freezer or crate freezer. - type: Add - id: 7430 - time: '2024-09-24T15:19:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32277 - author: MilonPL changes: - message: Paper will no longer stay on fire indefinitely. @@ -3897,3 +3889,11 @@ id: 7929 time: '2025-02-11T02:36:58.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35046 +- author: themias + changes: + - message: Fixed an exploit using multiple R&D computers to research multiple discipline + tier 3 technologies + type: Fix + id: 7930 + time: '2025-02-11T02:52:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34334 From 976172b85e6e9b6b85a49af85ed7467e648bd622 Mon Sep 17 00:00:00 2001 From: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Date: Mon, 10 Feb 2025 18:54:35 -0800 Subject: [PATCH 195/313] Replace DoorVisuals.Powered with PowerDeviceVisuals.Powered (#34646) --- Content.Client/Doors/AirlockSystem.cs | 4 +++- Content.Server/Doors/Systems/AirlockSystem.cs | 14 -------------- Content.Server/Doors/Systems/FirelockSystem.cs | 2 -- Content.Shared/Doors/Components/DoorComponent.cs | 1 - 4 files changed, 3 insertions(+), 18 deletions(-) diff --git a/Content.Client/Doors/AirlockSystem.cs b/Content.Client/Doors/AirlockSystem.cs index 58c8730643..712bdd1bec 100644 --- a/Content.Client/Doors/AirlockSystem.cs +++ b/Content.Client/Doors/AirlockSystem.cs @@ -1,6 +1,7 @@ using Content.Client.Wires.Visualizers; using Content.Shared.Doors.Components; using Content.Shared.Doors.Systems; +using Content.Shared.Power; using Robust.Client.Animations; using Robust.Client.GameObjects; @@ -84,7 +85,8 @@ public sealed class AirlockSystem : SharedAirlockSystem if (!_appearanceSystem.TryGetData(uid, DoorVisuals.State, out var state, args.Component)) state = DoorState.Closed; - if (_appearanceSystem.TryGetData(uid, DoorVisuals.Powered, out var powered, args.Component) && powered) + if (_appearanceSystem.TryGetData(uid, PowerDeviceVisuals.Powered, out var powered, args.Component) + && powered) { boltedVisible = _appearanceSystem.TryGetData(uid, DoorVisuals.BoltLights, out var lights, args.Component) && lights && (state == DoorState.Closed || state == DoorState.Welded); diff --git a/Content.Server/Doors/Systems/AirlockSystem.cs b/Content.Server/Doors/Systems/AirlockSystem.cs index ca3d133bd0..b731626ff7 100644 --- a/Content.Server/Doors/Systems/AirlockSystem.cs +++ b/Content.Server/Doors/Systems/AirlockSystem.cs @@ -18,21 +18,12 @@ public sealed class AirlockSystem : SharedAirlockSystem { base.Initialize(); - SubscribeLocalEvent(OnAirlockInit); SubscribeLocalEvent(OnSignalReceived); SubscribeLocalEvent(OnPowerChanged); SubscribeLocalEvent(OnActivate, before: new[] { typeof(DoorSystem) }); } - private void OnAirlockInit(EntityUid uid, AirlockComponent component, ComponentInit args) - { - if (TryComp(uid, out var receiverComponent)) - { - Appearance.SetData(uid, DoorVisuals.Powered, receiverComponent.Powered); - } - } - private void OnSignalReceived(EntityUid uid, AirlockComponent component, ref SignalReceivedEvent args) { if (args.Port == component.AutoClosePort && component.AutoClose) @@ -47,11 +38,6 @@ public sealed class AirlockSystem : SharedAirlockSystem component.Powered = args.Powered; Dirty(uid, component); - if (TryComp(uid, out var appearanceComponent)) - { - Appearance.SetData(uid, DoorVisuals.Powered, args.Powered, appearanceComponent); - } - if (!TryComp(uid, out DoorComponent? door)) return; diff --git a/Content.Server/Doors/Systems/FirelockSystem.cs b/Content.Server/Doors/Systems/FirelockSystem.cs index 6bb1972b6e..375e5c745e 100644 --- a/Content.Server/Doors/Systems/FirelockSystem.cs +++ b/Content.Server/Doors/Systems/FirelockSystem.cs @@ -37,8 +37,6 @@ namespace Content.Server.Doors.Systems private void PowerChanged(EntityUid uid, FirelockComponent component, ref PowerChangedEvent args) { - // TODO this should REALLLLY not be door specific appearance thing. - _appearance.SetData(uid, DoorVisuals.Powered, args.Powered); component.Powered = args.Powered; Dirty(uid, component); } diff --git a/Content.Shared/Doors/Components/DoorComponent.cs b/Content.Shared/Doors/Components/DoorComponent.cs index 5e35045b10..a8cb25782e 100644 --- a/Content.Shared/Doors/Components/DoorComponent.cs +++ b/Content.Shared/Doors/Components/DoorComponent.cs @@ -314,7 +314,6 @@ public enum DoorState : byte public enum DoorVisuals : byte { State, - Powered, BoltLights, EmergencyLights, ClosedLights, From 08e5362f43bf0533888a3005dec2bea290aa8579 Mon Sep 17 00:00:00 2001 From: TemporalOroboros Date: Mon, 10 Feb 2025 19:16:20 -0800 Subject: [PATCH 196/313] Purges uses of TransformComponent.WorldRotation (#34946) --- Content.Client/Interaction/DragDropSystem.cs | 2 +- Content.Client/Maps/GridDraggingSystem.cs | 2 +- .../Administration/Systems/AdminVerbSystem.Smites.cs | 2 +- .../EntitySystems/AtmosphereSystem.HighPressureDelta.cs | 2 +- .../Explosion/EntitySystems/ExplosionGridTileFlood.cs | 7 +++++-- .../Explosion/EntitySystems/ExplosionSystem.GridMap.cs | 2 +- .../Explosion/EntitySystems/ExplosionSystem.TileFill.cs | 2 +- Content.Server/Standing/StandingStateSystem.cs | 3 ++- Content.Shared/Maps/TurfHelpers.cs | 3 ++- 9 files changed, 15 insertions(+), 10 deletions(-) diff --git a/Content.Client/Interaction/DragDropSystem.cs b/Content.Client/Interaction/DragDropSystem.cs index 4145999579..969aaffe07 100644 --- a/Content.Client/Interaction/DragDropSystem.cs +++ b/Content.Client/Interaction/DragDropSystem.cs @@ -256,7 +256,7 @@ public sealed class DragDropSystem : SharedDragDropSystem dragSprite.DrawDepth = (int) DrawDepth.Overlays; if (!dragSprite.NoRotation) { - Transform(_dragShadow.Value).WorldRotation = Transform(_draggedEntity.Value).WorldRotation; + _transformSystem.SetWorldRotationNoLerp(_dragShadow.Value, _transformSystem.GetWorldRotation(_draggedEntity.Value)); } // drag initiated diff --git a/Content.Client/Maps/GridDraggingSystem.cs b/Content.Client/Maps/GridDraggingSystem.cs index 5bbf5ff500..a4883f73cf 100644 --- a/Content.Client/Maps/GridDraggingSystem.cs +++ b/Content.Client/Maps/GridDraggingSystem.cs @@ -121,7 +121,7 @@ public sealed class GridDraggingSystem : SharedGridDraggingSystem if (localToWorld.EqualsApprox(mousePos.Position, 0.01f)) return; - var requestedGridOrigin = mousePos.Position - xform.WorldRotation.RotateVec(_localPosition); + var requestedGridOrigin = mousePos.Position - _transformSystem.GetWorldRotation(xform).RotateVec(_localPosition); _lastMousePosition = new MapCoordinates(requestedGridOrigin, mousePos.MapId); RaiseNetworkEvent(new GridDragRequestPosition() diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs index 57a312c304..08e86ff400 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs @@ -137,7 +137,7 @@ public sealed partial class AdminVerbSystem var board = Spawn("ChessBoard", xform.Coordinates); var session = _tabletopSystem.EnsureSession(Comp(board)); xform.Coordinates = EntityCoordinates.FromMap(_mapManager, session.Position); - xform.WorldRotation = Angle.Zero; + _transformSystem.SetWorldRotationNoLerp((args.Target, xform), Angle.Zero); }, Impact = LogImpact.Extreme, Message = string.Join(": ", chessName, Loc.GetString("admin-smite-chess-dimension-description")) diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.HighPressureDelta.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.HighPressureDelta.cs index 0b43c92414..6a5b07bb17 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.HighPressureDelta.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.HighPressureDelta.cs @@ -118,7 +118,7 @@ namespace Content.Server.Atmos.EntitySystems return; // Used by ExperiencePressureDifference to correct push/throw directions from tile-relative to physics world. - var gridWorldRotation = xforms.GetComponent(gridAtmosphere).WorldRotation; + var gridWorldRotation = _transformSystem.GetWorldRotation(gridAtmosphere); // If we're using monstermos, smooth out the yeet direction to follow the flow if (MonstermosEqualization) diff --git a/Content.Server/Explosion/EntitySystems/ExplosionGridTileFlood.cs b/Content.Server/Explosion/EntitySystems/ExplosionGridTileFlood.cs index 2ddcc052d8..556e3771d2 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionGridTileFlood.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionGridTileFlood.cs @@ -69,14 +69,17 @@ public sealed class ExplosionGridTileFlood : ExplosionTileFlood return; _needToTransform = true; - var transform = IoCManager.Resolve().GetComponent(Grid.Owner); + var entityManager = IoCManager.Resolve(); + + var transformSystem = entityManager.System(); + var transform = entityManager.GetComponent(Grid.Owner); var size = (float) Grid.TileSize; _matrix.M31 = size / 2; _matrix.M32 = size / 2; Matrix3x2.Invert(spaceMatrix, out var invSpace); _matrix *= transform.WorldMatrix * invSpace; - var relativeAngle = transform.WorldRotation - spaceAngle; + var relativeAngle = transformSystem.GetWorldRotation(transform) - spaceAngle; _offset = relativeAngle.RotateVec(new Vector2(size / 4, size / 4)); } diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs index b08b66474b..be6b9148a4 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs @@ -71,7 +71,7 @@ public sealed partial class ExplosionSystem { var targetGrid = Comp(referenceGrid.Value); var xform = Transform(referenceGrid.Value); - targetAngle = xform.WorldRotation; + targetAngle = _transformSystem.GetWorldRotation(xform); targetMatrix = xform.InvWorldMatrix; tileSize = targetGrid.TileSize; } diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs index 7b73490d94..2946748e5d 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs @@ -90,7 +90,7 @@ public sealed partial class ExplosionSystem { var xform = Transform(Comp(referenceGrid.Value).Owner); spaceMatrix = xform.WorldMatrix; - spaceAngle = xform.WorldRotation; + spaceAngle = _transformSystem.GetWorldRotation(xform); } // is the explosion starting on a grid? diff --git a/Content.Server/Standing/StandingStateSystem.cs b/Content.Server/Standing/StandingStateSystem.cs index e2b6495844..bf9a4e4bea 100644 --- a/Content.Server/Standing/StandingStateSystem.cs +++ b/Content.Server/Standing/StandingStateSystem.cs @@ -13,6 +13,7 @@ public sealed class StandingStateSystem : EntitySystem [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly SharedHandsSystem _handsSystem = default!; [Dependency] private readonly ThrowingSystem _throwingSystem = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; private void FallOver(EntityUid uid, StandingStateComponent component, DropHandItemsEvent args) { @@ -25,7 +26,7 @@ public sealed class StandingStateSystem : EntitySystem if (!TryComp(uid, out HandsComponent? handsComp)) return; - var worldRotation = EntityManager.GetComponent(uid).WorldRotation.ToVec(); + var worldRotation = _transformSystem.GetWorldRotation(uid).ToVec(); foreach (var hand in handsComp.Hands.Values) { if (hand.HeldEntity is not EntityUid held) diff --git a/Content.Shared/Maps/TurfHelpers.cs b/Content.Shared/Maps/TurfHelpers.cs index 9a0b273c29..71bbb35db7 100644 --- a/Content.Shared/Maps/TurfHelpers.cs +++ b/Content.Shared/Maps/TurfHelpers.cs @@ -120,10 +120,11 @@ namespace Content.Shared.Maps private static bool GetWorldTileBox(TileRef turf, out Box2Rotated res) { var entManager = IoCManager.Resolve(); + var xformSystem = entManager.System(); if (entManager.TryGetComponent(turf.GridUid, out var tileGrid)) { - var gridRot = entManager.GetComponent(turf.GridUid).WorldRotation; + var gridRot = xformSystem.GetWorldRotation(turf.GridUid); // This is scaled to 90 % so it doesn't encompass walls on other tiles. var tileBox = Box2.UnitCentered.Scale(0.9f); From a30fe603c376a536a6f93d2ef8fa298506354b16 Mon Sep 17 00:00:00 2001 From: TemporalOroboros Date: Mon, 10 Feb 2025 19:22:41 -0800 Subject: [PATCH 197/313] Purge uses of TransformComponent.GetWorldPositionRotation... variants (#34942) --- .../Atmos/EntitySystems/GasTileOverlaySystem.cs | 3 ++- Content.Client/Atmos/Overlays/GasTileOverlay.cs | 12 ++++++++---- .../Interaction/SharedInteractionSystem.cs | 4 ++-- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/Content.Client/Atmos/EntitySystems/GasTileOverlaySystem.cs b/Content.Client/Atmos/EntitySystems/GasTileOverlaySystem.cs index 86cf0a9eb8..ad26436946 100644 --- a/Content.Client/Atmos/EntitySystems/GasTileOverlaySystem.cs +++ b/Content.Client/Atmos/EntitySystems/GasTileOverlaySystem.cs @@ -16,6 +16,7 @@ namespace Content.Client.Atmos.EntitySystems [Dependency] private readonly IResourceCache _resourceCache = default!; [Dependency] private readonly IOverlayManager _overlayMan = default!; [Dependency] private readonly SpriteSystem _spriteSys = default!; + [Dependency] private readonly SharedTransformSystem _xformSys = default!; private GasTileOverlay _overlay = default!; @@ -25,7 +26,7 @@ namespace Content.Client.Atmos.EntitySystems SubscribeNetworkEvent(HandleGasOverlayUpdate); SubscribeLocalEvent(OnHandleState); - _overlay = new GasTileOverlay(this, EntityManager, _resourceCache, ProtoMan, _spriteSys); + _overlay = new GasTileOverlay(this, EntityManager, _resourceCache, ProtoMan, _spriteSys, _xformSys); _overlayMan.AddOverlay(_overlay); } diff --git a/Content.Client/Atmos/Overlays/GasTileOverlay.cs b/Content.Client/Atmos/Overlays/GasTileOverlay.cs index 17027525e5..55aeaa12af 100644 --- a/Content.Client/Atmos/Overlays/GasTileOverlay.cs +++ b/Content.Client/Atmos/Overlays/GasTileOverlay.cs @@ -21,6 +21,7 @@ namespace Content.Client.Atmos.Overlays { private readonly IEntityManager _entManager; private readonly IMapManager _mapManager; + private readonly SharedTransformSystem _xformSys; public override OverlaySpace Space => OverlaySpace.WorldSpaceEntities | OverlaySpace.WorldSpaceBelowWorld; private readonly ShaderInstance _shader; @@ -46,10 +47,11 @@ namespace Content.Client.Atmos.Overlays public const int GasOverlayZIndex = (int) Shared.DrawDepth.DrawDepth.Effects; // Under ghosts, above mostly everything else - public GasTileOverlay(GasTileOverlaySystem system, IEntityManager entManager, IResourceCache resourceCache, IPrototypeManager protoMan, SpriteSystem spriteSys) + public GasTileOverlay(GasTileOverlaySystem system, IEntityManager entManager, IResourceCache resourceCache, IPrototypeManager protoMan, SpriteSystem spriteSys, SharedTransformSystem xformSys) { _entManager = entManager; _mapManager = IoCManager.Resolve(); + _xformSys = xformSys; _shader = protoMan.Index("unshaded").Instance(); ZIndex = GasOverlayZIndex; @@ -158,7 +160,8 @@ namespace Content.Client.Atmos.Overlays _fireFrameCounter, _shader, overlayQuery, - xformQuery); + xformQuery, + _xformSys); var mapUid = _mapManager.GetMapEntityId(args.MapId); @@ -180,7 +183,8 @@ namespace Content.Client.Atmos.Overlays int[] fireFrameCounter, ShaderInstance shader, EntityQuery overlayQuery, - EntityQuery xformQuery) state) => + EntityQuery xformQuery, + SharedTransformSystem xformSys) state) => { if (!state.overlayQuery.TryGetComponent(uid, out var comp) || !state.xformQuery.TryGetComponent(uid, out var gridXform)) @@ -188,7 +192,7 @@ namespace Content.Client.Atmos.Overlays return true; } - var (_, _, worldMatrix, invMatrix) = gridXform.GetWorldPositionRotationMatrixWithInv(); + var (_, _, worldMatrix, invMatrix) = state.xformSys.GetWorldPositionRotationMatrixWithInv(gridXform); state.drawHandle.SetTransform(worldMatrix); var floatBounds = invMatrix.TransformBox(state.WorldBounds).Enlarged(grid.TileSize); var localBounds = new Box2i( diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index a88f673cac..f53895cf8d 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -752,7 +752,7 @@ namespace Content.Shared.Interaction fixtureB.FixtureCount > 0 && Resolve(origin, ref origin.Comp)) { - var (worldPosA, worldRotA) = origin.Comp.GetWorldPositionRotation(); + var (worldPosA, worldRotA) = _transform.GetWorldPositionRotation(origin.Comp); var xfA = new Transform(worldPosA, worldRotA); var parentRotB = _transform.GetWorldRotation(otherCoordinates.EntityId); var xfB = new Transform(targetPos.Position, parentRotB + otherAngle); @@ -825,7 +825,7 @@ namespace Content.Shared.Interaction Ignored? predicate = null) { var transform = Transform(target); - var (position, rotation) = transform.GetWorldPositionRotation(); + var (position, rotation) = _transform.GetWorldPositionRotation(transform); var mapPos = new MapCoordinates(position, transform.MapID); var combinedPredicate = GetPredicate(origin, target, mapPos, rotation, collisionMask, predicate); From 1f0d68c24e849e802f6b9fa4f09734d155a22974 Mon Sep 17 00:00:00 2001 From: K-Dynamic <20566341+K-Dynamic@users.noreply.github.com> Date: Tue, 11 Feb 2025 15:23:11 +1200 Subject: [PATCH 198/313] Grenade resprites part 1, stinger sound change, projectile grenade animation fix (#34421) * flashbang resprite * emp grenade resprite * smoke grenade resprite * tear gas resprite * stinger grenade resprite * adds missing animations for projectile grenades --- .../Weapons/Throwable/projectile_grenades.yml | 11 +++++++---- .../Weapons/Grenades/empgrenade.rsi/icon.png | Bin 288 -> 263 bytes .../Weapons/Grenades/empgrenade.rsi/meta.json | 2 +- .../Weapons/Grenades/empgrenade.rsi/primed.png | Bin 445 -> 315 bytes .../Grenades/flashbang.rsi/equipped-BELT.png | Bin 255 -> 287 bytes .../Weapons/Grenades/flashbang.rsi/icon.png | Bin 280 -> 277 bytes .../Weapons/Grenades/flashbang.rsi/meta.json | 2 +- .../Weapons/Grenades/flashbang.rsi/primed.png | Bin 363 -> 294 bytes .../Grenades/smoke.rsi/equipped-BELT.png | Bin 0 -> 802 bytes .../Objects/Weapons/Grenades/smoke.rsi/icon.png | Bin 419 -> 277 bytes .../Weapons/Grenades/smoke.rsi/meta.json | 6 +++++- .../Weapons/Grenades/smoke.rsi/primed.png | Bin 758 -> 619 bytes .../stingergrenade.rsi/equipped-BELT.png | Bin 254 -> 288 bytes .../Grenades/stingergrenade.rsi/icon.png | Bin 312 -> 277 bytes .../Grenades/stingergrenade.rsi/meta.json | 2 +- .../Grenades/stingergrenade.rsi/primed.png | Bin 377 -> 304 bytes .../Weapons/Grenades/tear_gas.rsi/icon.png | Bin 768 -> 623 bytes .../Weapons/Grenades/tear_gas.rsi/meta.json | 2 +- .../Weapons/Grenades/tear_gas.rsi/primed.png | Bin 765 -> 603 bytes 19 files changed, 16 insertions(+), 9 deletions(-) create mode 100644 Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/equipped-BELT.png diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/projectile_grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/projectile_grenades.yml index 07c2a7ad3c..375d24c29e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/projectile_grenades.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/projectile_grenades.yml @@ -18,6 +18,13 @@ containers: cluster-payload: !type:Container - type: ProjectileGrenade + - type: AnimationPlayer + - type: GenericVisualizer + visuals: + enum.Trigger.TriggerVisuals.VisualState: + enum.ConstructionVisuals.Layer: + Primed: { state: primed } + Unprimed: { state: icon } - type: entity parent: [ProjectileGrenadeBase, BaseRestrictedContraband] @@ -41,10 +48,6 @@ - type: SpawnOnTrigger proto: GrenadeFlashEffect - type: OnUseTimerTrigger - beepSound: - path: "/Audio/Effects/beep1.ogg" - params: - volume: 5 initialBeepDelay: 0 beepInterval: 2 delay: 3.5 diff --git a/Resources/Textures/Objects/Weapons/Grenades/empgrenade.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/empgrenade.rsi/icon.png index 5f43e51ee0637a48a0eeae727eeed3ba37ffaffd..4251b56a0f0a35103178ad4ad45280ed7a5eaf6e 100644 GIT binary patch delta 225 zcmZ3$)Xp?PGLe~qfx%@-*D)Z)SRCZ;#IWw1%u67LCEd~2k%3`jKlh(RRv=$Gz$e62 zPEM}9y*(u*#naRCz<~oQlm0U_{Ac(Nlx8T|nEoC}ah3%61^#w=wyX7@vem@!(R52vXkmcTd RH^ds`5>Hn@mvv4FO#oCIY^ZmG6NpMJrghk6VRn#2-DLr0aZkU#1d(oAlZ@PRB*&362G#p z@I7Pf;|Pt@0Ugi*9Z&=ygv{%82;s0RAT?)Q82F7GvRJ?#gmoov8a4{&e!3OMIK{TY7u zPq>YqG|+)!Zh-?}n->AbafF)50;GYnorY-xVn%ZI3Z!PwY1r;OP@^dtP%|CS0T1(F WRj2;iy>I{k00{s|MNUMnLSTZdC~X@6 diff --git a/Resources/Textures/Objects/Weapons/Grenades/empgrenade.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/empgrenade.rsi/meta.json index 889ac5cb4c..b5584b9e38 100644 --- a/Resources/Textures/Objects/Weapons/Grenades/empgrenade.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Grenades/empgrenade.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e52683d3872347af447bb0ff74c420d4a4e91ea8", + "copyright": "Derived from /tg/station 13 at https://github.com/tgstation/tgstation/blob/8231234a64b80635369e8da43011ad20bde631ce/icons/obj/grenade.dmi, created by K-Dynamic (github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Grenades/empgrenade.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/empgrenade.rsi/primed.png index a11f70171fb12c11e8743cfe80ccc3becd152252..4e964288827625338cb6519edd667d8038c5b278 100644 GIT binary patch delta 279 zcmdnXyqjr)WF|8M1A|XM>l`4(SRCZ;#IWw1%u67LCEd~2k%3`jKlh(RRv=$7z$e62 zPEM}9y*(u*#naQ1p`n3c`}P9|4m1E||Ns9FBpDdA0|V`V6n9CGUocP%3K+cn89z-_ z6t8FK@pN$v@$h~-8b%*O1I;d-3eY|=uUUJ`S^=L*eb?JqhJI)kOcWxA32Z9djc7SUO^d)2wlJrUd= z@IrS%+=0BJo{6ckJ5`=^?)m>{4)=#o&$N6F8NWZQoO64j!o&qm#k=qSvRkr+;lVGD U%H5h#q9B)hy85}Sb4q9e0C75ShyVZp delta 430 zcmV;f0a5o3sc8@ga7ly2Iath!BumoR zV_*q>k|ktI`18+g949ZyA82yGb46tR0jlPA2R;tq Y2N$`#T1^r`od5s;07*qoM6N<$f-`xv@Bjb+ diff --git a/Resources/Textures/Objects/Weapons/Grenades/flashbang.rsi/equipped-BELT.png b/Resources/Textures/Objects/Weapons/Grenades/flashbang.rsi/equipped-BELT.png index 6fc92446678a0433900d2030d5e39e5aa8539cee..28006d22b05ced0416a7b39c4e8d8569f3fc49f5 100644 GIT binary patch delta 271 zcmey*IG<^PWIZzj1H;_yjcNS%G}H0G|+7 zASfs(NJvQd|AZkqIoZ?GGbAL0;Xi|eg9A`W!|OdZK#Hp*$S?Rm3@~guqjMf8%30tM zS|)_KDcNw&0t`>cl&^ZxZ{WZ;EzqVd_V^~bXMFKd;W03r*5UqO>!m0Ey*;e{qLW5 zOnP<9%Z|GVek$F4XRVHR_U$mynM<6@g75tf2%T!%ciu96yTyu0kIPQ{Ybcai``YSu z?DkbB_Lu00#qHPs&Id6SNG7<7>}CqQ_c1u&E!T;-_Tb>RTq)KKe^1^v;Q3}(FZLA3 i(J5mEDr}f)w3&0wmH@uz4kCX++C5$UT-G@yGywosd}Hwd diff --git a/Resources/Textures/Objects/Weapons/Grenades/flashbang.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/flashbang.rsi/icon.png index aec9818274f64e56a647a4a539048b4731ff0d84..6151b7f44ce3b89d0d154eb9c326b3a6c6ae3fe5 100644 GIT binary patch delta 260 zcmbQiG?i(BWIZzj1B1(wu46!ou{g-xiDBJ2nU_EgOS+@4BLl<6e(pbstU$hWfKQ04 zoSa-rN{Xka=YazU+S}XzKVkU4g@NHeP@3V)PQNlB#aR;M7yKUz7=ryPgg}A?9+AZi z41D`Rn9+hYSOqAU=jq}YVo~e=bfP0)g8>H%uv@5>U9z0Bmp) z8NwY63wRhh4-uqPksFJSCL?49%A`OJM9`ca*$VPimL=<+Pp7kswr!CzHc7K*Kn7$0 zfUVCVDdphSTI(VNz^;HxPDCK0872zg^TvJO&rneSE?Ltw=zqFyLir+CJs_nVhzP*@ z_HN%HxIMvcLLtN#ASBoTW6V@~04U2cE}*{NfX8cnxa@I@^C=_ diff --git a/Resources/Textures/Objects/Weapons/Grenades/flashbang.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/flashbang.rsi/meta.json index 28d3e6969a..b5584b9e38 100644 --- a/Resources/Textures/Objects/Weapons/Grenades/flashbang.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Grenades/flashbang.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/b13d244d761a07e200a9a41730bd446e776020d5", + "copyright": "Derived from /tg/station 13 at https://github.com/tgstation/tgstation/blob/8231234a64b80635369e8da43011ad20bde631ce/icons/obj/grenade.dmi, created by K-Dynamic (github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Grenades/flashbang.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/flashbang.rsi/primed.png index 596bfb6a15c14918271fb488990f29baac30b05f..d396f4226181690efddba064bfdcc74fa2c0894d 100644 GIT binary patch delta 278 zcmaFOw2WzjWIZzj1H)A3zHLB?u{g-xiDBJ2nU_EgOS+@4BLl<6e(pbstU$hEfKQ04 zoSa-rN{Xka=YazU+S}XzKVkU4h2eji@qY&62A~=ShE;CQHvlQ_k|4j}|8T(I<0_y^h8Gi-<005$$euMx30WwKMK~#90?UylbgD@C{A62iAY^4Ju_plTW z;Vnxqz+t*^2#}bN7uGI5LB*0BA{nC4qIUW5A3rJhOzaqGwU_(4X_`zACw{+p0`BF;7#L#~Fn=+k-7gmK+xRq13#b^; z?q59tec!`-KSRZmpxvKI?gG}@i!lbkk9`2}-p>$^+!G$rFWv-;qWA+4Gur)P0nWL3 z^Z=kNOBE1SzgR%~*#Td-_4`L2RK6zd+X?7)xBmPb{64XO>Udauf!L|O_wc!1zgR$B z*BHkU&N(#*W>o*?kHV?~7{}t!{xkt054YV(i-Xo5B%nI%g8|t6qN6bI|HUKbzpvdd t7VvCIn;;v2og{z_z)ljt24H9N0V*`wfq18002ovPDHLkV1h~mpj7|> diff --git a/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/equipped-BELT.png b/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/equipped-BELT.png new file mode 100644 index 0000000000000000000000000000000000000000..d3eca30e751811c55189c4e842c5e59de11a4778 GIT binary patch literal 802 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+yeRz*w5;>>S|f?5q$_l%JNFlghxL zaenH=-QI@-M2^*O^E%2dD%NFc>F166Ld6yt z?)>TTVxq!VlS_^fmu0hUCU$&&UbTCf-__NOSG)hOeYUh`v2*O=4;^_o*KP1|t~t6@ zB%fpZ>&jfu3jZDVr!lskpE~c`PshS@&&7|HX;~_k2iq#|l=8d2VcvG$hjtHF1Zupz z|9QpiEh%SaX0D9gw7by5$g_td(@Q7#K&rzk&6$7SN&ore8z|DRm)~u)&7$bZ(cAi2 zp1abPq`96y5xihc(f^stC(Fux+P(eAf`|7$&#PA0!YMC$zWV<6J^joa_YSU%{3@=x z{9^b;?NHra+z(AH>{e&J)U}9gKNs!2d8@vrhV_KAhb{|lIp=s=)kOD4WbORo3g(re zKV8K)>}B5jskY*y@G{->2fvpIXanOxD8MJg)y>y#=FFK12?_Ce?m@9mK;e1!j~M_d zwvr&f;Qt`NuzCNI{Xh}U0*}aI1_o|H5N51TiJu4*lqhkHC<)F_D=AMbN@WO0%*-p% z^K%VRFx4~EGy1)Uc^gnoPill`ny0500|$`9${@wa%D@O@c>%FBlnqKD8jQ?faV8+! zkdcW&07ypxab`OUSUd~J1_6CZMur!_gao6}EM)-dpTN$*0#s>WWNg5=0Aec8A7H?8 ze##lUC1N{)oODkY$B+p3x7QAGH8^m%2G0KUzur=Ai&yK!6&mkiSx+5|O|CNpy7)u% z0vGk^(+&I92ftKcytdXtQT9$@V`QPDl}6cfW`+O;1}+ANT7Hh-z6$>q%yy_zvZ-~f iQ8H$nWWT4YpUXO@geCxN(kOla literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/icon.png index c6365e6404e75ccc4863b7ea3cdba4089d6ecade..54cdd4064048499ef2ca79c105d3a1e6ae0f1dcf 100644 GIT binary patch delta 241 zcmZ3?Je6sJWGXWQ1B1(wu46!ou{g-xiDBJ2nU_EgOS+@4BLl<6e(pbstU$h8fKP~P zT3VWcp|+l$W>Bn?o3EXozSic=n`h3P8K374R8skis|rYQl?3?(|AzsFO=on@PgE4I zXUOt&aSXBWf7+HU3tk&=VztQ_2{-J~C{`5DKxn i#y{u75q*}c-1oL9wlexUTn4&^!PC{xWt~$3V-od&Nkl=q;N$0)!&Gv^1OS)e$IPH=GRsA-sDV(}Fiod;3k=+T77Te-=Qc z>Pv*3ogb+h-AHQ=1gitC>#DGP4FTftpoQ(o5ZVA}dFQl6yNzb%p@xr(nH-0@jH8Ox z0fb*%pZuwhqqf@L-#v=tn;by@r){soH`cZ@4>f#_*i(@2z&O$d_;~#yuRJ%@Hv-@| zg5F-f)jN<1HGCrggMrLKhxro+c<4R}$MGe`E)^al_(lLAj9P_!nXic{_7sd0S_nW< evH%uf>Hxpm>SsHg(o%L$P3Ff1lIGq;%(tREgg*u9}0U68Bq92 z>9Hz5D^6AUU9k}k&C1C&sJY zojz!JvaGiuXxo8u$+EtVEUSDB_D8tL)%|Od)6|FPrMl)mfbLB=yR2)mT{z!@{s%p3 zL@SbAc2hD5ucy!%f!-T%ELXFtopW*z;SKpk*RZz_!+-L9_sTcxzi0p_#^qfA0016P zOjJcMF)J=EDNEM`b`2~*#fvBI5vdidx}-5}g|vnwMT)E7;!to9U3?Ax2f7Nb3WA^rB5v-!7Lj>eCqLG7Dt+lcn3wzOIJf`N_0aWlY+|qZ=OzSbfnb1ISjRrp7+`d z_1o}O^t{hQ&-*%pzyqA;%KlZ!Y5ZOEVp$9AL)!+NUX-=u4xDX5*S)3L+K&{F?N6oP z0i7&pEz>_`3X}E7;wGKDpnv^bPC3Xnz17j}#OD000SaNLh0L01m_e z01m_fl`9S#0003lNkl+6f+5K;gWH5~Bx$vyh| z*v;4OKa4go)cz0jHHbzD31R^YISzRB{qvWhAgcl{Hep%^12YRV!>-MT7(pQISnfoWIHl#I%b7kncg3hq&gz#Xx+JI5~iY++tjS90HU8l5@f9XYWZ8r@8}}m>3zJ z-~Wyx2I7On=@JG1{{4qricOs6A#my9HAYb3gI+X)#L000Be{tOl;2@&P}Uo55siXT bFk}G$CDebX&-8@Z00000NkvXXu0mjfTvl6y diff --git a/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/equipped-BELT.png b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/equipped-BELT.png index 85a06f2d4d8362e5da14ef191ad065e22cfce242..cfc9b2a94fc2ee7be035f2a7ac6cf6888e3b67a5 100644 GIT binary patch literal 288 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1k1^9%x0zpARK|(@;uEpWx4h}#iAM|(M0#aNhL4Lvi zVSr)N8J+V$QO*L7$YKTtzQZ8Qcszea3Q(}r)5S3)!u{>F(_9S(JT8H`wM+j0KP+@Y z%b2y9JMh^$Ce8GVq0>GZFf!RN?q^;0;_UJ4Y{R85niy(dgQ?$z$EGaeW||S{qq!^L ze~?!LgFhI(uV&bz&s3o#!e}Gd#W0Vu-|_T+S0e<}%D`}d>)vmxsN)B< zGG;BC6*NiZ?B|?mw|70x5LEJ<|K9hUWvjp%rQIbnWFOR|RcSn5bN%nyT@g#Sy*IFS z&~!C)i=8jN`h>4l*y`?CdmHA-f=vXQ+82?-I_uBl?+IH)4SvhMJDa6#@P_fITJaOdyNv{xWRO58J)STIrf%Q~loCIC+iVle;! diff --git a/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/icon.png index 1fae8574536ff08bf95e04ac20e0fcb91328959c..ca4383378ba59c7efeec64b99e93f839a6a02124 100644 GIT binary patch delta 260 zcmdnNG?i(BWIZzj1B1(wu46!ou{g-xiDBJ2nU_EgOS+@4BLl<6e(pbstU$hWfKQ04 zoSa-rN{Xka=YazU+S}U$qps;%9A@|rlx8?6^Zz)I;w%aB3;quU48i^tLLk8ckH}&M z2EKzJ%(!D>_FJG}o~Mgrh()dc+X;?*4F()6(^pOXzdu5%vr+X{v%2u}OANsZ4(c^Q z4xT?=M?@GiMl`E4PH-!Ir*OzSpxsK@Eg~$_Ou7D3xq6IE9z!A)K2o!~^sKB)A#Fq#I5spow`DaG+n(p)W75 z-%HyEcs!n|6L6BX)&Kx0Wm(0PQjHpM9J2&wtnAw1L}f%OK25G4@-cy|u~)>c diff --git a/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/meta.json index 28d3e6969a..2f3dee4f0a 100644 --- a/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/b13d244d761a07e200a9a41730bd446e776020d5", + "copyright": "Derived from Arendian (https://github.com/space-wizards/space-station-14/commit/3e766402b9d6c17f41f9e7e814b70eef83a95568), created by K-Dynamic", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/primed.png index 32d39cb89f66efbf046e39041247ad7a3bb9031e..dd9542f61f6db71b529d45476f244e51d571b373 100644 GIT binary patch delta 288 zcmey#w1H`YWIZzj1H)A3zHLB?u{g-xiDBJ2nU_EgOS+@4BLl<6e(pbstU$hEfKQ04 zoSa-rN{Xka=YazU+S}U$qps;%9R8nX{GY+N0jP$7K}D)&0g&P@3Gxg64+jih{*0f1 z!kh&jk;M!QdeL_t(&f$f(uPQx%1 zhJPvsHq?O*NSGmGE|KX;^a@D61Vc{2C31*X$`pCY34DQ6=}?4FH?}ens6a$7ezhg~ zzAR#g>i4hjD97k@>;nrk*yPDCK0qcAa$ z_OlE4-gw{lN1bi#aeh3w-1Zh8O{~BWsLAR1>)^6!Ta>rU&e#_K8Ju4i&Y+gSzc_!ZHnsWzSZ;F5If;(+k3T!o7|RD15GT zE#L>mxqx33JCmtVxtr=4&3$9-8|!(;6z&o3G>w8@nn&HFA!AKVNNtzhflG=p;zZFX zu!w<2OsXZB{eSN3`|^#mBpzMfHboq9HX0z~g1dTJ$atU>FK~|-64sT#`MSjr*Z0|s~e19LA{{*@sXX)gN*QWpg02okA zR7IASmLnr0x3{1?w22hvW9z&q z?(ANjq*@a`DNs7_)v+<3bO0y?0uy|HF(fdfO0b61(NAcbhzv#$b|$h*JPVCQO5sgH vEld;U73VVpYl2q%B&fpEz05;00000NkvXXu0mjfkarsT delta 755 zcmVK zB|?HEZ+LS*&U@!_=M1<)X)R+l&p;+?n~`9^x4g3I^SsecH-BDwXpL%?F&hqtXt=%~ zXj1ilO!aDfukPxICoBz`+JvVx!?cBE8bX`4p?FugPfJDP!pFjXQw9{iQF^SxuZoiu z{#0x(M&`h!dis(z9IIh1WoCp&g@-cfy!JPb`jXB>c4h8-WhE_wV0uORTNyz`F?!Jq5+}z2WNCtx lh)8U*%^3xwU=$2E002glhVHe^rAR1>)^6!Ta>rU&e#_K8Ju4i&Y+gSzc_!ZHnsWzSZ;F5If;(+k3T!o7|RD15GT zE#L>mxqx33JCmtVxtr=4&3$9-8|!(;6z&o3G>w8@nn&HFA!AKVNNtzhflG=p;zZFX zu!w<2OsXZB{eSN3`|^#mBpzMfHboq9HX0z~g1dTJ$atU>FK~|-64sT#`MSjr*Z0|s~e19LA{{*@sXX)gN*QWpg02okA zR7E2rBe%D=mX?;}FE7b7G@vmt*V)tn004HfEgAp-00?waPE-H?|NsC0{{Y^Dy;%SN z010qNS#tmY4#WTe4#WYKD-Ig~002};L_t(IPvy}&4!|G`1JESk=KeQ^v6w2Z#7H)z zht0=Q%tn>KY}-JIrL6C5bPpM)C71YM!7dHxOx$iMiU bD?sJ|#(WwDAZ2Jp00000NkvXXu0mjfi^>y+ delta 752 zcmVK zB|?HEZ+LS*&U@!_=M1<)X)R+l&p;+?n~`9^x4g3I^SsecH-BDwXpL%?F&hqtXt=%~ zXj1ilO!aDfukPxICoBz`+JvVx!?cBE8bX`4p?FugPfJDP!pFjXQw9{iQF^SxuZoiu z{#0x(M&`h!dis(z9IIh1WoCp&g@-cfy!JPb`jXB>c4h8-Wh2$` zpE!BqKa94rvicA7HHbzD37Uq$j_o_Zmh%hnFu1w7fi3>><;(xOckhyH77Mwd0J41L z@-++|o_`)-KF|T6`2Ty}a7(d?(>w%PTU!}HMKOBO3=${D0c2@{m54}e ivdtL Date: Tue, 11 Feb 2025 03:24:18 +0000 Subject: [PATCH 199/313] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f48504e99b..f1d5fa7181 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: MilonPL - changes: - - message: Paper will no longer stay on fire indefinitely. - type: Fix - id: 7431 - time: '2024-09-24T15:48:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32412 - author: ArchRBX changes: - message: The AstroNav PDA cartridge has now been added, which turns your PDA into @@ -3897,3 +3890,14 @@ id: 7930 time: '2025-02-11T02:52:26.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34334 +- author: K-Dynamic + changes: + - message: Flashbangs, stinger grenades, EMP grenades, smoke grenades, and tear + gas grenades have new appearances. + type: Tweak + - message: Projectile grenades (including stinger and shrapnel grenades) should + now play animations when triggered. + type: Fix + id: 7931 + time: '2025-02-11T03:23:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34421 From eb1f84600def1490596933ce7c798024d949eb90 Mon Sep 17 00:00:00 2001 From: themias <89101928+themias@users.noreply.github.com> Date: Mon, 10 Feb 2025 22:29:37 -0500 Subject: [PATCH 200/313] Pulled item interaction fix (#34587) --- .../SharedHandsSystem.Interactions.cs | 12 +++++++----- .../Interaction/SharedInteractionSystem.cs | 5 +++-- .../VirtualItem/SharedVirtualItemSystem.cs | 19 +++++++++++++++++++ 3 files changed, 29 insertions(+), 7 deletions(-) diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs index fc5adfaf15..3b22917fe8 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs @@ -188,11 +188,13 @@ public abstract partial class SharedHandsSystem : EntitySystem if (args.Handled) return; - // TODO: this pattern is super uncommon, but it might be worth changing GetUsedEntityEvent to be recursive. - if (TryComp(component.ActiveHandEntity, out var virtualItem)) - args.Used = virtualItem.BlockingEntity; - else - args.Used = component.ActiveHandEntity; + if (component.ActiveHandEntity.HasValue) + { + // allow for the item to return a different entity, e.g. virtual items + RaiseLocalEvent(component.ActiveHandEntity.Value, ref args); + } + + args.Used ??= component.ActiveHandEntity; } //TODO: Actually shows all items/clothing/etc. diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index f53895cf8d..1eb7bd112d 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -1413,7 +1413,7 @@ namespace Content.Shared.Interaction /// If there is an entity being used. public bool TryGetUsedEntity(EntityUid user, [NotNullWhen(true)] out EntityUid? used, bool checkCanUse = true) { - var ev = new GetUsedEntityEvent(); + var ev = new GetUsedEntityEvent(user); RaiseLocalEvent(user, ref ev); used = ev.Used; @@ -1464,8 +1464,9 @@ namespace Content.Shared.Interaction /// Raised directed by-ref on an entity to determine what item will be used in interactions. ///